diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f19f3e4..fda71c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,5 +25,5 @@ jobs: make prerequisites-up; sed -e '/SEI_CHAVE_ACESSO/ s/^#*/#/' -i .env; sed -e '/SIP_CHAVE_ACESSO/ s/^#*/#/' -i .env echo SEI_CHAVE_ACESSO=7babf8620a7056b96b13ad057eddf544e6450a62152bb6d7c5468d0f5ef546fb121e8dd2 >> .env echo SIP_CHAVE_ACESSO=d27791b8128bb1c95c094b99261d1abc16bc6169ccd17011f356201d1648d69862a355a6 >> .env - make up; cat tests/dumpWssei4.0.3.3.PreLoaded.dmp | docker exec -i mod-wssei_database_1 /usr/bin/mysql -u root --password=root + make up; make tests-api diff --git a/Makefile b/Makefile index e90df07..25a398b 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ -include .modulo.env # Parâmetros de configuração +# Opções possíveis para dump: 4.0.3.3 e 4.1.1 +versao_dump=4.0.3.3 base = mysql ifndef SEI_HOST @@ -38,7 +40,7 @@ MENSAGEM_AVISO_MODULO = $(RED)[ATENÇÃO]:$(NC)$(YELLOW) Necessário configurar MENSAGEM_AVISO_ENV = $(RED)[ATENÇÃO]:$(NC)$(YELLOW) Configurar parâmetros de autenticação do ambiente de testes do módulo de WSSEI no arquivo .modulo.env $(NC) MENSAGEM_AVISO_FONTES = $(RED)[ATENÇÃO]:$(NC)$(YELLOW) Nao foi possivel localizar o fonte do Super. Verifique o valor SEI_PATH no arquivo .env $(NC) -CMD_CURL_SUPER_LOGIN = curl -s -L $(SEI_HOST)/sei | grep -q "" +CMD_CURL_SUPER_LOGIN = curl -s -L $(SEI_HOST)/sei | grep -q "input.*txtUsuario.*" define TESTS_MENSAGEM_ORIENTACAO Leia o arquivo README relacionado aos testes. @@ -129,8 +131,8 @@ check-module-config: check-super-isalive: ## Target de apoio. Acessa o Super e verifica se esta respondendo a tela de login @echo "" @echo "$(WARNING)Aguardando inicialização do ambiente de desenvolvimento...$(NC)" - @for i in `seq 1 20`; do \ - echo "Tentativa $$i/10"; \ + @for i in `seq 1 5`; do \ + echo "Tentativa $$i/5"; \ if $(CMD_CURL_SUPER_LOGIN); then \ echo 'Página de login carregada!' ; \ break ; \ @@ -199,6 +201,9 @@ tests-functional-validar: tests-functional-orientations tests-functional-prerequisites: .testselenium.env tests-functional-validar +restore: + @cat tests/dumpWssei$(versao_dump).PreLoaded.dmp | docker exec -i $(shell docker ps --format "{{.Names}}" | grep database) /usr/bin/mysql -u root --password=root + # roda apenas os testes, o ajuste de data inicial e a criacao do ambiente ja devem ter sido realizados tests-functional: tests-functional-prerequisites check-super-isalive @@ -215,7 +220,7 @@ tests-functional-loop: tests-functional-prerequisites # Executa testes no postman. Necessário a variável NEWMAN_BASEURL apontando # para ambiente correto exemplo: # export NEWMAN_BASEURL=https://sei.economia.gov.br ; make tests-api -tests-api: +tests-api: restore update install @echo "Substituindo as envs para o Newman" @envsubst < tests/Postman/SEI.postman_environment.json > tests/Postman/SEI.postman_environment_substituido.json @echo "Vamos iniciar a execução do postman/newman" diff --git a/src/MdWsSeiRest.php b/src/MdWsSeiRest.php index a95a0b4..85f8733 100644 --- a/src/MdWsSeiRest.php +++ b/src/MdWsSeiRest.php @@ -11,6 +11,17 @@ class MdWsSeiRest extends SeiIntegracao const NOME_MODULO = "MdWsSeiRest"; const VERSAO_MODULO = "2.1.2"; + // A partir da verso 2.0.0, o mdulo de integrao do SEI com o PEN no ser mais compatvel com o SEI 3.0.X + const COMPATIBILIDADE_MODULO_SEI = array( + // Verses SEI + '3.1.0', '3.1.1', '3.1.2', '3.1.3', '3.1.4', '3.1.5', '3.1.6', '3.1.7', + '4.0.0', '4.0.1' , '4.0.2' , '4.0.3', '4.0.4', '4.0.5', '4.0.6', '4.0.7', + '4.0.8', '4.0.9', '4.0.10', '4.0.11', '4.0.12', '4.1.1', '4.1.2', '5.0.0', + // Verses SUPER + '4.0.3.1', '4.0.3.2', '4.0.3.3', '4.0.3.4', '4.0.3.5', '4.0.4.6', '4.0.5.7', + '4.0.6.8', '4.0.7.9', '4.0.8.10', '4.0.9.11', '4.0.9.12', '4.0.9.13', '4.0.9.14', '4.0.12.15' + ); + public function getNome() { return 'Mdulo de servios REST'; @@ -154,9 +165,9 @@ public static function moduloAtivo() */ public function verificaCompatibilidade($strVersaoSEI) { - if (substr($strVersaoSEI, 0, 3) != '4.0') { - return false; - } + if(!in_array($strVersaoSEI, self::COMPATIBILIDADE_MODULO_SEI)) { + return false; + } return true; } diff --git a/src/controlador_ws.php b/src/controlador_ws.php index 1369a1a..f96905a 100644 --- a/src/controlador_ws.php +++ b/src/controlador_ws.php @@ -50,7 +50,8 @@ public function __invoke($request, $response, $next) ); } - if(!MdWsSeiRest::verificaCompatibilidade(SEI_VERSAO)){ + $objMdWsSeiRest = new MdWsSeiRest(); + if(!$objMdWsSeiRest->verificaCompatibilidade(SEI_VERSAO)){ return $response->withJson( array( "sucesso" => false, diff --git a/src/rn/MdWsSeiDocumentoRN.php b/src/rn/MdWsSeiDocumentoRN.php index 2e93010..f456376 100644 --- a/src/rn/MdWsSeiDocumentoRN.php +++ b/src/rn/MdWsSeiDocumentoRN.php @@ -529,6 +529,7 @@ protected function listarDocumentosProcessoConectado(DocumentoDTO $documentoDTOP $bolFlagLinhaDireta = false; $bolErro = false; $numCodigoAcesso = 0; + $bolFlagEliminado = false; /** Acessando componente SEI para retorno de validao de permisses **/ $procedimentoDTOAcoes = ProcedimentoINT::montarAcoesArvore($documentoDTOParam->getDblIdProcedimento(), @@ -541,6 +542,7 @@ protected function listarDocumentosProcessoConectado(DocumentoDTO $documentoDTOP $bolFlagTramitacao, $bolFlagSobrestado, $bolFlagBloqueado, + $bolFlagEliminado, $bolFlagLinhaDireta, $numCodigoAcesso, $numNo, $strNos, diff --git a/tests/dumpWssei4.1.1.PreLoaded.dmp b/tests/dumpWssei4.1.1.PreLoaded.dmp new file mode 100644 index 0000000..1ca5487 --- /dev/null +++ b/tests/dumpWssei4.1.1.PreLoaded.dmp @@ -0,0 +1,9872 @@ +-- MySQL dump 10.13 Distrib 5.7.33, for Linux (x86_64) +-- +-- Host: localhost Database: +-- ------------------------------------------------------ +-- Server version 5.7.33 + +/*!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(32) 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(32) 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 ('localhost','performance_schema','mysql.session','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N'),('localhost','sys','mysql.sys','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y'),('%','sei','sei_user','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'),('%','sip','sip_user','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 `engine_cost` +-- + +DROP TABLE IF EXISTS `engine_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `engine_cost` ( + `engine_name` varchar(64) NOT NULL, + `device_type` int(11) NOT NULL, + `cost_name` varchar(64) NOT NULL, + `cost_value` float DEFAULT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `comment` varchar(1024) DEFAULT NULL, + PRIMARY KEY (`cost_name`,`engine_name`,`device_type`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `engine_cost` +-- + +LOCK TABLES `engine_cost` WRITE; +/*!40000 ALTER TABLE `engine_cost` DISABLE KEYS */; +INSERT INTO `engine_cost` VALUES ('default',0,'io_block_read_cost',NULL,'2021-04-16 23:37:19',NULL),('default',0,'memory_block_read_cost',NULL,'2021-04-16 23:37:19',NULL); +/*!40000 ALTER TABLE `engine_cost` 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(93) 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 `gtid_executed` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `gtid_executed` ( + `source_uuid` char(36) NOT NULL COMMENT 'uuid of the source where the transaction was originally executed.', + `interval_start` bigint(20) NOT NULL COMMENT 'First number of interval.', + `interval_end` bigint(20) NOT NULL COMMENT 'Last number of interval.', + PRIMARY KEY (`source_uuid`,`interval_start`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- 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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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 (0,'Contents',0,''),(1,'Help Metadata',0,''),(2,'Data Types',0,''),(3,'Administration',0,''),(4,'Functions',0,''),(5,'Enterprise Encryption Functions',4,''),(6,'Procedures',0,''),(7,'Language Structure',0,''),(8,'Geographic Features',0,''),(9,'MBR',8,''),(10,'WKT',8,''),(11,'Comparison Operators',4,''),(12,'Logical Operators',4,''),(13,'Flow Control Functions',4,''),(14,'Numeric Functions',4,''),(15,'Date and Time Functions',4,''),(16,'String Functions',4,''),(17,'Cast Functions and Operators',4,''),(18,'XML',4,''),(19,'Bit Functions',4,''),(20,'Encryption Functions',4,''),(21,'Locking Functions',4,''),(22,'Information Functions',4,''),(23,'Spatial Functions',4,''),(24,'WKT Functions',23,''),(25,'WKB Functions',23,''),(26,'Geometry Constructors',23,''),(27,'Geometry Property Functions',23,''),(28,'Point Property Functions',23,''),(29,'LineString Property Functions',23,''),(30,'Polygon Property Functions',23,''),(31,'GeometryCollection Property Functions',23,''),(32,'Geometry Relation Functions',23,''),(33,'MBR Functions',23,''),(34,'GTID',4,''),(35,'Aggregate Functions and Modifiers',4,''),(36,'GROUP BY Functions and Modifiers',4,''),(37,'Miscellaneous Functions',4,''),(38,'Data Definition',0,''),(39,'Data Manipulation',0,''),(40,'Transactions',0,''),(41,'Compound Statements',0,''),(42,'Account Management',0,''),(43,'Table Maintenance',0,''),(44,'User-Defined Functions',0,''),(45,'Plugins',0,''),(46,'Utility',0,''),(47,'Storage Engines',0,''); +/*!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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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 (114,'%'),(263,'&'),(478,'(JSON'),(92,'*'),(90,'+'),(91,'-'),(479,'->'),(481,'->>'),(93,'/'),(81,':='),(65,'<'),(265,'<<'),(64,'<='),(62,'<=>'),(63,'<>'),(61,'='),(67,'>'),(66,'>='),(266,'>>'),(96,'ABS'),(831,'ACCOUNT'),(97,'ACOS'),(633,'ACTION'),(55,'ADD'),(126,'ADDDATE'),(127,'ADDTIME'),(269,'AES_DECRYPT'),(270,'AES_ENCRYPT'),(569,'AFTER'),(249,'AGAINST'),(863,'AGGREGATE'),(570,'ALGORITHM'),(698,'ALL'),(56,'ALTER'),(15,'ANALYSE'),(571,'ANALYZE'),(68,'AND'),(531,'ANY_VALUE'),(634,'ARCHIVE'),(409,'AREA'),(699,'AS'),(373,'ASBINARY'),(513,'ASC'),(191,'ASCII'),(98,'ASIN'),(375,'ASTEXT'),(374,'ASWKB'),(376,'ASWKT'),(6,'ASYMMETRIC_DECRYPT'),(7,'ASYMMETRIC_DERIVE'),(8,'ASYMMETRIC_ENCRYPT'),(9,'ASYMMETRIC_SIGN'),(10,'ASYMMETRIC_VERIFY'),(623,'AT'),(99,'ATAN'),(100,'ATAN2'),(722,'AUTOCOMMIT'),(658,'AUTOEXTEND_SIZE'),(572,'AUTO_INCREMENT'),(507,'AVG'),(573,'AVG_ROW_LENGTH'),(750,'BEFORE'),(723,'BEGIN'),(291,'BENCHMARK'),(69,'BETWEEN'),(192,'BIN'),(254,'BINARY'),(886,'BINLOG'),(509,'BIT_AND'),(268,'BIT_COUNT'),(193,'BIT_LENGTH'),(510,'BIT_OR'),(511,'BIT_XOR'),(23,'BOOL'),(24,'BOOLEAN'),(236,'BOTH'),(627,'BTREE'),(424,'BUFFER'),(514,'BY'),(48,'BYTE'),(17,'CACHE'),(666,'CALL'),(635,'CASCADE'),(82,'CASE'),(255,'CAST'),(812,'CATALOG_NAME'),(101,'CEIL'),(102,'CEILING'),(410,'CENTROID'),(724,'CHAIN'),(574,'CHANGE'),(755,'CHANNEL'),(49,'CHAR'),(45,'CHARACTER'),(195,'CHARACTER_LENGTH'),(292,'CHARSET'),(194,'CHAR_LENGTH'),(575,'CHECK'),(576,'CHECKSUM'),(832,'CIPHER'),(813,'CLASS_ORIGIN'),(844,'CLIENT'),(672,'CLOSE'),(71,'COALESCE'),(889,'CODE'),(293,'COERCIBILITY'),(546,'COLLATE'),(294,'COLLATION'),(577,'COLUMN'),(578,'COLUMNS'),(814,'COLUMN_NAME'),(552,'COMMENT'),(725,'COMMIT'),(739,'COMMITTED'),(636,'COMPACT'),(553,'COMPLETION'),(271,'COMPRESS'),(637,'COMPRESSED'),(579,'COMPRESSION'),(196,'CONCAT'),(197,'CONCAT_WS'),(685,'CONCURRENT'),(808,'CONDITION'),(580,'CONNECTION'),(295,'CONNECTION_ID'),(726,'CONSISTENT'),(581,'CONSTRAINT'),(815,'CONSTRAINT_CATALOG'),(816,'CONSTRAINT_NAME'),(817,'CONSTRAINT_SCHEMA'),(455,'CONTAINS'),(809,'CONTINUE'),(103,'CONV'),(256,'CONVERT'),(128,'CONVERT_TZ'),(425,'CONVEXHULL'),(104,'COS'),(105,'COT'),(512,'COUNT'),(106,'CRC32'),(57,'CREATE'),(11,'CREATE_ASYMMETRIC_PRIV_KEY'),(12,'CREATE_ASYMMETRIC_PUB_KEY'),(13,'CREATE_DH_PARAMETERS'),(14,'CREATE_DIGEST'),(717,'CROSS'),(433,'CROSSES'),(638,'CSV'),(129,'CURDATE'),(130,'CURRENT_DATE'),(131,'CURRENT_TIME'),(132,'CURRENT_TIMESTAMP'),(296,'CURRENT_USER'),(806,'CURSOR'),(818,'CURSOR_NAME'),(133,'CURTIME'),(547,'DATA'),(297,'DATABASE'),(872,'DATABASES'),(618,'DATAFILE'),(42,'DATE'),(134,'DATEDIFF'),(257,'DATETIME'),(135,'DATE_ADD'),(150,'DATE_FORMAT'),(136,'DATE_SUB'),(137,'DAY'),(151,'DAYNAME'),(152,'DAYOFMONTH'),(153,'DAYOFWEEK'),(154,'DAYOFYEAR'),(138,'DAY_HOUR'),(139,'DAY_MINUTE'),(140,'DAY_SECOND'),(797,'DEALLOCATE'),(34,'DEC'),(37,'DECIMAL'),(798,'DECLARE'),(272,'DECODE'),(2,'DEFAULT'),(788,'DEFAULT_AUTH'),(554,'DEFINER'),(107,'DEGREES'),(679,'DELAYED'),(582,'DELAY_KEY_WRITE'),(639,'DELETE'),(515,'DESC'),(904,'DESCRIBE'),(273,'DES_DECRYPT'),(274,'DES_ENCRYPT'),(894,'DES_KEY_FILE'),(819,'DIAGNOSTICS'),(381,'DIMENSION'),(548,'DIRECTORY'),(555,'DISABLE'),(583,'DISCARD'),(456,'DISJOINT'),(434,'DISTANCE'),(508,'DISTINCT'),(700,'DISTINCTROW'),(94,'DIV'),(556,'DO'),(584,'DROP'),(716,'DUAL'),(701,'DUMPFILE'),(680,'DUPLICATE'),(640,'DYNAMIC'),(83,'ELSE'),(799,'ELSEIF'),(198,'ELT'),(557,'ENABLE'),(686,'ENCLOSED'),(275,'ENCODE'),(276,'ENCRYPT'),(585,'ENCRYPTION'),(84,'END'),(397,'ENDPOINT'),(624,'ENDS'),(586,'ENGINE'),(873,'ENGINES'),(382,'ENVELOPE'),(457,'EQUALS'),(895,'ERROR'),(874,'ERRORS'),(245,'ESCAPE'),(687,'ESCAPED'),(558,'EVENT'),(887,'EVENTS'),(625,'EVERY'),(587,'EXCHANGE'),(796,'EXECUTE'),(622,'EXISTS'),(810,'EXIT'),(108,'EXP'),(250,'EXPANSION'),(833,'EXPIRE'),(905,'EXPLAIN'),(896,'EXPORT'),(199,'EXPORT_SET'),(861,'EXTENDED'),(659,'EXTENT_SIZE'),(411,'EXTERIORRING'),(155,'EXTRACT'),(480,'EXTRACTION)'),(260,'EXTRACTVALUE'),(21,'FALSE'),(859,'FAST'),(641,'FEDERATED'),(807,'FETCH'),(200,'FIELD'),(688,'FIELDS'),(845,'FILE'),(660,'FILE_BLOCK_SIZE'),(779,'FILTER'),(201,'FIND_IN_SET'),(588,'FIRST'),(35,'FIXED'),(38,'FLOAT4'),(39,'FLOAT8'),(109,'FLOOR'),(18,'FLUSH'),(702,'FOR'),(718,'FORCE'),(589,'FOREIGN'),(202,'FORMAT'),(298,'FOUND_ROWS'),(237,'FROM'),(203,'FROM_BASE64'),(156,'FROM_DAYS'),(157,'FROM_UNIXTIME'),(642,'FULL'),(590,'FULLTEXT'),(175,'FUNCTION'),(897,'GENERAL'),(306,'GEOMCOLLFROMTEXT'),(336,'GEOMCOLLFROMWKB'),(366,'GEOMETRYCOLLECTION'),(307,'GEOMETRYCOLLECTIONFROMTEXT'),(337,'GEOMETRYCOLLECTIONFROMWKB'),(308,'GEOMETRYFROMTEXT'),(338,'GEOMETRYFROMWKB'),(420,'GEOMETRYN'),(383,'GEOMETRYTYPE'),(309,'GEOMFROMTEXT'),(339,'GEOMFROMWKB'),(820,'GET'),(158,'GET_FORMAT'),(286,'GET_LOCK'),(398,'GLENGTH'),(740,'GLOBAL'),(846,'GRANT'),(875,'GRANTS'),(72,'GREATEST'),(565,'GROUP'),(516,'GROUP_CONCAT'),(503,'GTID_SUBSET'),(504,'GTID_SUBTRACT'),(673,'HANDLER'),(703,'HAVING'),(643,'HEAP'),(5,'HELP'),(0,'HELP_DATE'),(1,'HELP_VERSION'),(204,'HEX'),(681,'HIGH_PRIORITY'),(628,'HOST'),(876,'HOSTS'),(141,'HOUR'),(142,'HOUR_MINUTE'),(143,'HOUR_SECOND'),(696,'IDENTIFIED'),(87,'IF'),(88,'IFNULL'),(682,'IGNORE'),(756,'IGNORE_SERVER_IDS'),(591,'IMPORT'),(73,'IN'),(58,'INDEX'),(877,'INDEXES'),(534,'INET6_ATON'),(535,'INET6_NTOA'),(532,'INET_ATON'),(533,'INET_NTOA'),(689,'INFILE'),(619,'INITIAL_SIZE'),(482,'INLINE'),(719,'INNER'),(644,'INNODB'),(205,'INSERT'),(592,'INSERT_METHOD'),(867,'INSTALL'),(564,'INSTANCE'),(206,'INSTR'),(25,'INT1'),(28,'INT2'),(29,'INT3'),(31,'INT4'),(33,'INT8'),(32,'INTEGER'),(412,'INTERIORRINGN'),(458,'INTERSECTS'),(74,'INTERVAL'),(683,'INTO'),(789,'IO_THREAD'),(75,'IS'),(399,'ISCLOSED'),(384,'ISEMPTY'),(77,'ISNULL'),(741,'ISOLATION'),(385,'ISSIMPLE'),(834,'ISSUER'),(287,'IS_FREE_LOCK'),(536,'IS_IPV4'),(537,'IS_IPV4_COMPAT'),(538,'IS_IPV4_MAPPED'),(539,'IS_IPV6'),(288,'IS_USED_LOCK'),(800,'ITERATE'),(704,'JOIN'),(258,'JSON'),(486,'JSON_APPEND'),(472,'JSON_ARRAY'),(519,'JSON_ARRAYAGG'),(487,'JSON_ARRAY_APPEND'),(488,'JSON_ARRAY_INSERT'),(475,'JSON_CONTAINS'),(476,'JSON_CONTAINS_PATH'),(497,'JSON_DEPTH'),(477,'JSON_EXTRACT'),(489,'JSON_INSERT'),(484,'JSON_KEYS'),(498,'JSON_LENGTH'),(490,'JSON_MERGE'),(491,'JSON_MERGE_PATCH'),(492,'JSON_MERGE_PRESERVE'),(473,'JSON_OBJECT'),(520,'JSON_OBJECTAGG'),(501,'JSON_PRETTY'),(474,'JSON_QUOTE'),(493,'JSON_REMOVE'),(494,'JSON_REPLACE'),(485,'JSON_SEARCH'),(495,'JSON_SET'),(502,'JSON_STORAGE_SIZE'),(499,'JSON_TYPE'),(496,'JSON_UNQUOTE'),(500,'JSON_VALID'),(59,'KEY'),(593,'KEYS'),(594,'KEY_BLOCK_SIZE'),(902,'KILL'),(674,'LAST'),(159,'LAST_DAY'),(299,'LAST_INSERT_ID'),(207,'LCASE'),(238,'LEADING'),(78,'LEAST'),(801,'LEAVE'),(903,'LEAVES'),(208,'LEFT'),(209,'LENGTH'),(742,'LEVEL'),(229,'LIKE'),(667,'LIMIT'),(310,'LINEFROMTEXT'),(340,'LINEFROMWKB'),(690,'LINES'),(367,'LINESTRING'),(311,'LINESTRINGFROMTEXT'),(341,'LINESTRINGFROMWKB'),(110,'LN'),(691,'LOAD'),(210,'LOAD_FILE'),(692,'LOCAL'),(160,'LOCALTIME'),(161,'LOCALTIMESTAMP'),(211,'LOCATE'),(595,'LOCK'),(111,'LOG'),(113,'LOG10'),(112,'LOG2'),(566,'LOGFILE'),(751,'LOGS'),(53,'LONG'),(54,'LONGBINARY'),(802,'LOOP'),(212,'LOWER'),(668,'LOW_PRIORITY'),(213,'LPAD'),(214,'LTRIM'),(162,'MAKEDATE'),(163,'MAKETIME'),(215,'MAKE_SET'),(752,'MASTER'),(757,'MASTER_AUTO_POSITION'),(758,'MASTER_BIND'),(759,'MASTER_CONNECT_RETRY'),(760,'MASTER_HEARTBEAT_PERIOD'),(761,'MASTER_HOST'),(762,'MASTER_LOG_FILE'),(763,'MASTER_LOG_POS'),(764,'MASTER_PASSWORD'),(765,'MASTER_PORT'),(540,'MASTER_POS_WAIT'),(766,'MASTER_RETRY_COUNT'),(767,'MASTER_SSL'),(768,'MASTER_SSL_CA'),(769,'MASTER_SSL_CERT'),(770,'MASTER_SSL_CIPHER'),(771,'MASTER_SSL_CRL'),(772,'MASTER_SSL_CRLPATH'),(773,'MASTER_SSL_KEY'),(774,'MASTER_SSL_VERIFY_SERVER_CERT'),(775,'MASTER_TLS_VERSION'),(776,'MASTER_USER'),(251,'MATCH'),(521,'MAX'),(835,'MAX_CONNECTIONS_PER_HOUR'),(836,'MAX_QUERIES_PER_HOUR'),(596,'MAX_ROWS'),(661,'MAX_SIZE'),(837,'MAX_UPDATES_PER_HOUR'),(838,'MAX_USER_CONNECTIONS'),(445,'MBRCONTAINS'),(446,'MBRCOVEREDBY'),(447,'MBRCOVERS'),(448,'MBRDISJOINT'),(449,'MBREQUAL'),(450,'MBREQUALS'),(451,'MBRINTERSECTS'),(452,'MBROVERLAPS'),(453,'MBRTOUCHES'),(454,'MBRWITHIN'),(277,'MD5'),(860,'MEDIUM'),(705,'MEMORY'),(645,'MERGE'),(821,'MESSAGE_TEXT'),(164,'MICROSECOND'),(216,'MID'),(30,'MIDDLEINT'),(522,'MIN'),(144,'MINUTE'),(145,'MINUTE_SECOND'),(597,'MIN_ROWS'),(312,'MLINEFROMTEXT'),(342,'MLINEFROMWKB'),(95,'MOD'),(252,'MODE'),(598,'MODIFY'),(146,'MONTH'),(165,'MONTHNAME'),(314,'MPOINTFROMTEXT'),(344,'MPOINTFROMWKB'),(316,'MPOLYFROMTEXT'),(346,'MPOLYFROMWKB'),(646,'MRG_MYISAM'),(368,'MULTILINESTRING'),(313,'MULTILINESTRINGFROMTEXT'),(343,'MULTILINESTRINGFROMWKB'),(369,'MULTIPOINT'),(315,'MULTIPOINTFROMTEXT'),(345,'MULTIPOINTFROMWKB'),(370,'MULTIPOLYGON'),(317,'MULTIPOLYGONFROMTEXT'),(347,'MULTIPOLYGONFROMWKB'),(878,'MUTEX'),(647,'MYISAM'),(822,'MYSQL_ERRNO'),(549,'NAME'),(871,'NAMES'),(541,'NAME_CONST'),(46,'NATIONAL'),(720,'NATURAL'),(47,'NCHAR'),(648,'NDB'),(649,'NDBCLUSTER'),(839,'NEVER'),(675,'NEXT'),(650,'NO'),(662,'NODEGROUP'),(847,'NONE'),(70,'NOT'),(166,'NOW'),(858,'NO_WRITE_TO_BINLOG'),(76,'NULL'),(89,'NULLIF'),(823,'NUMBER'),(36,'NUMERIC'),(421,'NUMGEOMETRIES'),(413,'NUMINTERIORRINGS'),(400,'NUMPOINTS'),(50,'NVARCHAR'),(217,'OCT'),(218,'OCTET_LENGTH'),(706,'OFFSET'),(559,'ON'),(727,'ONLY'),(676,'OPEN'),(599,'OPTIMIZE'),(898,'OPTIMIZER_COSTS'),(848,'OPTION'),(693,'OPTIONALLY'),(567,'OPTIONS'),(79,'OR'),(219,'ORD'),(517,'ORDER'),(721,'OUTER'),(707,'OUTFILE'),(459,'OVERLAPS'),(629,'OWNER'),(600,'PACK_KEYS'),(601,'PARSER'),(651,'PARTIAL'),(602,'PARTITION'),(603,'PARTITIONING'),(906,'PARTITIONS'),(278,'PASSWORD'),(483,'PATH)'),(167,'PERIOD_ADD'),(168,'PERIOD_DIFF'),(115,'PI'),(868,'PLUGIN'),(890,'PLUGINS'),(790,'PLUGIN_DIR'),(371,'POINT'),(318,'POINTFROMTEXT'),(348,'POINTFROMWKB'),(401,'POINTN'),(319,'POLYFROMTEXT'),(349,'POLYFROMWKB'),(372,'POLYGON'),(320,'POLYGONFROMTEXT'),(350,'POLYGONFROMWKB'),(630,'PORT'),(220,'POSITION'),(116,'POW'),(117,'POWER'),(40,'PRECISION'),(747,'PREPARE'),(560,'PRESERVE'),(677,'PREV'),(604,'PRIMARY'),(849,'PRIVILEGES'),(16,'PROCEDURE'),(850,'PROCESS'),(879,'PROCESSLIST'),(891,'PROFILE'),(892,'PROFILES'),(856,'PROXY'),(753,'PURGE'),(169,'QUARTER'),(19,'QUERY'),(669,'QUICK'),(221,'QUOTE'),(118,'RADIANS'),(119,'RAND'),(279,'RANDOM_BYTES'),(678,'READ'),(41,'REAL'),(605,'REBUILD'),(748,'RECOVER'),(652,'REDUNDANT'),(653,'REFERENCES'),(247,'REGEXP'),(899,'RELAY'),(893,'RELAYLOG'),(777,'RELAY_LOG_FILE'),(778,'RELAY_LOG_POS'),(728,'RELEASE'),(289,'RELEASE_ALL_LOCKS'),(290,'RELEASE_LOCK'),(851,'RELOAD'),(606,'REMOVE'),(561,'RENAME'),(607,'REORGANIZE'),(608,'REPAIR'),(222,'REPEAT'),(743,'REPEATABLE'),(223,'REPLACE'),(780,'REPLICATE_DO_DB'),(781,'REPLICATE_DO_TABLE'),(782,'REPLICATE_IGNORE_DB'),(783,'REPLICATE_IGNORE_TABLE'),(784,'REPLICATE_REWRITE_DB'),(785,'REPLICATE_WILD_DO_TABLE'),(786,'REPLICATE_WILD_IGNORE_TABLE'),(787,'REPLICATION'),(840,'REQUIRE'),(20,'RESET'),(828,'RESIGNAL'),(656,'RESTRICT'),(804,'RETURN'),(824,'RETURNED_SQLSTATE'),(864,'RETURNS'),(224,'REVERSE'),(857,'REVOKE'),(225,'RIGHT'),(248,'RLIKE'),(729,'ROLLBACK'),(120,'ROUND'),(697,'ROWS'),(300,'ROW_COUNT'),(609,'ROW_FORMAT'),(226,'RPAD'),(227,'RTRIM'),(735,'SAVEPOINT'),(562,'SCHEDULE'),(301,'SCHEMA'),(880,'SCHEMAS'),(825,'SCHEMA_NAME'),(147,'SECOND'),(852,'SECURITY'),(170,'SEC_TO_TIME'),(684,'SELECT'),(518,'SEPARATOR'),(3,'SERIAL'),(744,'SERIALIZABLE'),(568,'SERVER'),(745,'SESSION'),(302,'SESSION_USER'),(550,'SET'),(280,'SHA'),(281,'SHA1'),(282,'SHA2'),(708,'SHARE'),(881,'SHOW'),(853,'SHUTDOWN'),(121,'SIGN'),(830,'SIGNAL'),(259,'SIGNED'),(122,'SIN'),(563,'SLAVE'),(542,'SLEEP'),(900,'SLOW'),(730,'SNAPSHOT'),(631,'SOCKET'),(865,'SONAME'),(228,'SOUNDEX'),(230,'SOUNDS'),(231,'SPACE'),(610,'SPATIAL'),(829,'SQLSTATE'),(791,'SQL_AFTER_GTIDS'),(792,'SQL_AFTER_MTS_GAPS'),(793,'SQL_BEFORE_GTIDS'),(709,'SQL_BIG_RESULT'),(710,'SQL_BUFFER_RESULT'),(711,'SQL_CACHE'),(712,'SQL_CALC_FOUND_ROWS'),(754,'SQL_LOG_BIN'),(713,'SQL_NO_CACHE'),(714,'SQL_SMALL_RESULT'),(794,'SQL_THREAD'),(123,'SQRT'),(386,'SRID'),(841,'SSL'),(731,'START'),(694,'STARTING'),(408,'STARTPOINT'),(626,'STARTS'),(611,'STATS_AUTO_RECALC'),(612,'STATS_PERSISTENT'),(613,'STATS_SAMPLE_PAGES'),(882,'STATUS'),(523,'STD'),(524,'STDDEV'),(525,'STDDEV_POP'),(526,'STDDEV_SAMP'),(795,'STOP'),(888,'STORAGE'),(654,'STORED'),(715,'STRAIGHT_JOIN'),(246,'STRCMP'),(866,'STRING'),(171,'STR_TO_DATE'),(414,'ST_AREA'),(377,'ST_ASBINARY'),(465,'ST_ASGEOJSON'),(379,'ST_ASTEXT'),(378,'ST_ASWKB'),(380,'ST_ASWKT'),(426,'ST_BUFFER'),(427,'ST_BUFFER_STRATEGY'),(415,'ST_CENTROID'),(435,'ST_CONTAINS'),(428,'ST_CONVEXHULL'),(436,'ST_CROSSES'),(429,'ST_DIFFERENCE'),(387,'ST_DIMENSION'),(437,'ST_DISJOINT'),(438,'ST_DISTANCE'),(467,'ST_DISTANCE_SPHERE'),(402,'ST_ENDPOINT'),(388,'ST_ENVELOPE'),(439,'ST_EQUALS'),(416,'ST_EXTERIORRING'),(461,'ST_GEOHASH'),(321,'ST_GEOMCOLLFROMTEXT'),(351,'ST_GEOMCOLLFROMWKB'),(322,'ST_GEOMETRYCOLLECTIONFROMTEXT'),(352,'ST_GEOMETRYCOLLECTIONFROMWKB'),(323,'ST_GEOMETRYFROMTEXT'),(353,'ST_GEOMETRYFROMWKB'),(422,'ST_GEOMETRYN'),(389,'ST_GEOMETRYTYPE'),(466,'ST_GEOMFROMGEOJSON'),(324,'ST_GEOMFROMTEXT'),(354,'ST_GEOMFROMWKB'),(417,'ST_INTERIORRINGN'),(430,'ST_INTERSECTION'),(440,'ST_INTERSECTS'),(403,'ST_ISCLOSED'),(390,'ST_ISEMPTY'),(391,'ST_ISSIMPLE'),(468,'ST_ISVALID'),(462,'ST_LATFROMGEOHASH'),(404,'ST_LENGTH'),(325,'ST_LINEFROMTEXT'),(355,'ST_LINEFROMWKB'),(326,'ST_LINESTRINGFROMTEXT'),(356,'ST_LINESTRINGFROMWKB'),(463,'ST_LONGFROMGEOHASH'),(469,'ST_MAKEENVELOPE'),(327,'ST_MLINEFROMTEXT'),(357,'ST_MLINEFROMWKB'),(329,'ST_MPOINTFROMTEXT'),(359,'ST_MPOINTFROMWKB'),(331,'ST_MPOLYFROMTEXT'),(361,'ST_MPOLYFROMWKB'),(328,'ST_MULTILINESTRINGFROMTEXT'),(358,'ST_MULTILINESTRINGFROMWKB'),(330,'ST_MULTIPOINTFROMTEXT'),(360,'ST_MULTIPOINTFROMWKB'),(332,'ST_MULTIPOLYGONFROMTEXT'),(362,'ST_MULTIPOLYGONFROMWKB'),(423,'ST_NUMGEOMETRIES'),(418,'ST_NUMINTERIORRING'),(419,'ST_NUMINTERIORRINGS'),(405,'ST_NUMPOINTS'),(441,'ST_OVERLAPS'),(464,'ST_POINTFROMGEOHASH'),(333,'ST_POINTFROMTEXT'),(363,'ST_POINTFROMWKB'),(406,'ST_POINTN'),(334,'ST_POLYFROMTEXT'),(364,'ST_POLYFROMWKB'),(335,'ST_POLYGONFROMTEXT'),(365,'ST_POLYGONFROMWKB'),(470,'ST_SIMPLIFY'),(392,'ST_SRID'),(407,'ST_STARTPOINT'),(431,'ST_SYMDIFFERENCE'),(442,'ST_TOUCHES'),(432,'ST_UNION'),(471,'ST_VALIDATE'),(443,'ST_WITHIN'),(393,'ST_X'),(394,'ST_Y'),(826,'SUBCLASS_ORIGIN'),(172,'SUBDATE'),(842,'SUBJECT'),(232,'SUBSTR'),(233,'SUBSTRING'),(234,'SUBSTRING_INDEX'),(173,'SUBTIME'),(527,'SUM'),(854,'SUPER'),(174,'SYSDATE'),(303,'SYSTEM_USER'),(60,'TABLE'),(737,'TABLES'),(614,'TABLESPACE'),(827,'TABLE_NAME'),(124,'TAN'),(665,'TEMPORARY'),(695,'TERMINATED'),(85,'THEN'),(44,'TIME'),(176,'TIMEDIFF'),(43,'TIMESTAMP'),(177,'TIMESTAMPADD'),(178,'TIMESTAMPDIFF'),(179,'TIME_FORMAT'),(180,'TIME_TO_SEC'),(736,'TO'),(444,'TOUCHES'),(235,'TO_BASE64'),(181,'TO_DAYS'),(182,'TO_SECONDS'),(907,'TRADITIONAL'),(239,'TRAILING'),(732,'TRANSACTION'),(664,'TRIGGER'),(883,'TRIGGERS'),(240,'TRIM'),(22,'TRUE'),(125,'TRUNCATE'),(615,'TYPE'),(241,'UCASE'),(746,'UNCOMMITTED'),(283,'UNCOMPRESS'),(284,'UNCOMPRESSED_LENGTH'),(811,'UNDO'),(242,'UNHEX'),(869,'UNINSTALL'),(616,'UNION'),(617,'UNIQUE'),(183,'UNIX_TIMESTAMP'),(738,'UNLOCK'),(26,'UNSIGNED'),(803,'UNTIL'),(657,'UPDATE'),(261,'UPDATEXML'),(551,'UPGRADE'),(243,'UPPER'),(855,'USAGE'),(663,'USE'),(304,'USER'),(901,'USER_RESOURCES'),(862,'USE_FRM'),(670,'USING'),(184,'UTC_DATE'),(185,'UTC_TIME'),(186,'UTC_TIMESTAMP'),(543,'UUID'),(544,'UUID_SHORT'),(285,'VALIDATE_PASSWORD_STRENGTH'),(4,'VALUE'),(545,'VALUES'),(51,'VARCHARACTER'),(870,'VARIABLE'),(884,'VARIABLES'),(530,'VARIANCE'),(52,'VARYING'),(528,'VAR_POP'),(529,'VAR_SAMP'),(305,'VERSION'),(621,'VIEW'),(655,'VIRTUAL'),(620,'WAIT'),(505,'WAIT_FOR_EXECUTED_GTID_SET'),(506,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS'),(885,'WARNINGS'),(187,'WEEK'),(188,'WEEKDAY'),(189,'WEEKOFYEAR'),(244,'WEIGHT_STRING'),(86,'WHEN'),(671,'WHERE'),(805,'WHILE'),(253,'WITH'),(460,'WITHIN'),(733,'WORK'),(632,'WRAPPER'),(734,'WRITE'),(395,'X'),(843,'X509'),(749,'XA'),(80,'XOR'),(396,'Y'),(148,'YEAR'),(190,'YEARWEEK'),(149,'YEAR_MONTH'),(27,'ZEROFILL'),(264,'^'),(262,'|'),(267,'~'); +/*!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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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),(1,1),(2,2),(471,2),(486,2),(487,2),(494,2),(497,2),(498,2),(505,2),(506,2),(527,2),(532,2),(563,2),(581,2),(582,2),(2,3),(505,3),(2,4),(527,4),(532,4),(579,4),(580,4),(3,5),(656,5),(4,6),(5,7),(6,8),(7,9),(8,10),(9,11),(10,12),(11,13),(12,14),(13,15),(13,16),(492,16),(502,16),(503,16),(514,16),(515,16),(533,16),(601,16),(613,16),(632,16),(633,16),(14,17),(647,17),(648,17),(650,17),(651,17),(14,18),(648,18),(14,19),(238,19),(648,19),(649,19),(651,19),(14,20),(550,20),(554,20),(651,20),(15,21),(16,21),(15,22),(16,22),(18,23),(19,23),(18,24),(238,24),(18,25),(18,26),(22,26),(24,26),(25,26),(27,26),(28,26),(241,26),(18,27),(22,27),(24,27),(25,27),(27,27),(28,27),(20,28),(21,29),(21,30),(22,31),(22,32),(241,32),(593,32),(24,33),(25,34),(25,35),(505,35),(25,36),(26,37),(241,37),(593,37),(27,38),(28,39),(28,40),(28,41),(593,41),(30,42),(131,42),(133,42),(241,42),(32,43),(167,43),(33,44),(165,44),(241,44),(35,45),(37,45),(486,45),(487,45),(494,45),(497,45),(498,45),(505,45),(530,45),(531,45),(533,45),(598,45),(599,45),(601,45),(605,45),(35,46),(37,46),(35,47),(36,48),(36,49),(186,49),(241,49),(37,50),(37,51),(37,52),(46,53),(46,54),(55,55),(494,55),(495,55),(507,55),(55,56),(486,56),(487,56),(488,56),(489,56),(490,56),(491,56),(492,56),(493,56),(494,56),(495,56),(496,56),(581,56),(584,56),(55,57),(497,57),(498,57),(499,57),(500,57),(501,57),(502,57),(503,57),(504,57),(505,57),(507,57),(508,57),(509,57),(582,57),(593,57),(601,57),(609,57),(610,57),(611,57),(612,57),(613,57),(614,57),(616,57),(55,58),(494,58),(500,58),(505,58),(513,58),(535,58),(601,58),(627,58),(647,58),(650,58),(55,59),(494,59),(505,59),(506,59),(527,59),(55,60),(494,60),(505,60),(517,60),(521,60),(522,60),(588,60),(589,60),(590,60),(591,60),(592,60),(601,60),(614,60),(641,60),(56,61),(81,61),(57,62),(58,63),(59,64),(60,65),(61,66),(62,67),(63,68),(77,68),(63,69),(64,69),(64,70),(68,70),(71,70),(73,70),(76,70),(234,70),(236,70),(497,70),(498,70),(499,70),(582,70),(65,71),(494,71),(66,72),(67,73),(68,73),(238,73),(533,73),(604,73),(607,73),(608,73),(627,73),(637,73),(69,74),(133,74),(499,74),(581,74),(582,74),(70,75),(71,75),(72,75),(73,75),(72,76),(73,76),(506,76),(74,77),(75,78),(78,79),(79,80),(80,81),(82,82),(564,82),(82,83),(564,83),(82,84),(547,84),(561,84),(564,84),(565,84),(568,84),(569,84),(571,84),(82,85),(564,85),(565,85),(82,86),(564,86),(83,87),(497,87),(498,87),(499,87),(510,87),(511,87),(512,87),(516,87),(517,87),(520,87),(565,87),(581,87),(582,87),(583,87),(594,87),(84,88),(85,89),(86,90),(87,91),(88,91),(89,92),(90,93),(91,94),(92,95),(111,95),(93,96),(94,97),(95,98),(96,99),(97,100),(98,101),(99,102),(100,103),(101,104),(102,105),(103,106),(104,107),(105,108),(106,109),(107,110),(108,111),(109,112),(110,113),(111,114),(112,115),(113,116),(114,117),(115,118),(116,119),(117,120),(118,121),(119,122),(120,123),(121,124),(122,125),(494,125),(522,125),(123,126),(124,127),(125,128),(126,129),(127,130),(128,131),(129,132),(130,133),(132,134),(133,135),(133,136),(135,136),(133,137),(136,137),(133,138),(133,139),(133,140),(133,141),(145,141),(133,142),(133,143),(133,144),(152,144),(133,145),(133,146),(153,146),(133,147),(159,147),(133,148),(181,148),(133,149),(134,150),(137,151),(138,152),(139,153),(140,154),(141,155),(142,156),(143,157),(144,158),(146,159),(147,160),(148,161),(149,162),(150,163),(151,164),(154,165),(155,166),(156,167),(157,168),(158,169),(160,170),(161,171),(162,172),(163,173),(164,174),(165,175),(167,175),(216,175),(489,175),(502,175),(503,175),(514,175),(515,175),(593,175),(594,175),(601,175),(612,175),(624,175),(625,175),(166,176),(168,177),(169,178),(170,179),(171,180),(172,181),(173,182),(174,183),(175,184),(176,185),(177,186),(178,187),(179,188),(180,189),(182,190),(183,191),(184,192),(185,193),(187,194),(188,195),(189,196),(190,197),(191,198),(192,199),(193,200),(194,201),(195,202),(653,202),(654,202),(655,202),(196,203),(197,204),(198,205),(527,205),(528,205),(529,205),(199,206),(200,207),(201,208),(535,208),(202,209),(203,210),(204,211),(205,212),(206,213),(207,214),(208,215),(209,216),(210,217),(211,218),(212,219),(213,220),(214,221),(215,222),(569,222),(216,223),(530,223),(531,223),(532,223),(217,224),(218,225),(535,225),(219,226),(220,227),(221,228),(222,229),(234,229),(601,229),(607,229),(608,229),(222,230),(223,231),(224,232),(225,233),(226,234),(227,235),(228,236),(228,237),(524,237),(533,237),(601,237),(604,237),(607,237),(608,237),(627,237),(637,237),(228,238),(228,239),(228,240),(229,241),(230,242),(231,243),(232,244),(233,245),(235,246),(236,247),(237,248),(238,249),(238,250),(238,251),(238,252),(533,252),(238,253),(494,253),(500,253),(505,253),(581,253),(582,253),(584,253),(648,253),(239,254),(241,254),(548,254),(549,254),(602,254),(603,254),(648,254),(240,255),(240,256),(241,256),(241,257),(241,258),(653,258),(654,258),(655,258),(241,259),(242,260),(243,261),(244,262),(245,263),(246,264),(247,265),(248,266),(249,267),(250,268),(251,269),(252,270),(253,271),(254,272),(255,273),(256,274),(257,275),(258,276),(259,277),(260,278),(494,278),(504,278),(555,278),(581,278),(582,278),(584,278),(587,278),(261,279),(262,280),(262,281),(263,282),(264,283),(265,284),(266,285),(267,286),(268,287),(269,288),(270,289),(271,290),(272,291),(273,292),(598,292),(599,292),(274,293),(275,294),(601,294),(606,294),(276,295),(277,296),(488,296),(499,296),(278,297),(486,297),(487,297),(497,297),(498,297),(504,297),(510,297),(511,297),(601,297),(609,297),(610,297),(279,298),(280,299),(281,300),(578,300),(282,301),(486,301),(487,301),(497,301),(498,301),(510,301),(511,301),(601,301),(609,301),(610,301),(283,302),(284,303),(285,304),(504,304),(555,304),(581,304),(582,304),(583,304),(585,304),(616,304),(286,305),(287,306),(287,307),(288,308),(288,309),(289,310),(289,311),(290,312),(290,313),(291,314),(291,315),(292,316),(292,317),(293,318),(294,319),(294,320),(295,321),(295,322),(296,323),(296,324),(297,325),(297,326),(298,327),(298,328),(299,329),(299,330),(300,331),(300,332),(301,333),(302,334),(302,335),(303,336),(303,337),(304,338),(304,339),(305,340),(305,341),(306,342),(306,343),(307,344),(307,345),(308,346),(308,347),(309,348),(310,349),(310,350),(311,351),(311,352),(312,353),(312,354),(313,355),(313,356),(314,357),(314,358),(315,359),(315,360),(316,361),(316,362),(317,363),(318,364),(318,365),(319,366),(320,367),(321,368),(322,369),(323,370),(324,371),(325,372),(326,373),(326,374),(327,375),(327,376),(328,377),(328,378),(329,379),(329,380),(330,381),(331,382),(332,383),(333,384),(334,385),(335,386),(336,387),(337,388),(338,389),(339,390),(340,391),(341,392),(342,393),(343,394),(344,395),(345,396),(346,397),(347,398),(348,399),(349,400),(350,401),(351,402),(352,403),(353,404),(354,405),(355,406),(356,407),(357,408),(358,409),(359,410),(360,411),(361,412),(362,413),(363,414),(364,415),(365,416),(366,417),(367,418),(367,419),(368,420),(369,421),(370,422),(371,423),(372,424),(373,425),(374,426),(375,427),(376,428),(377,429),(378,430),(379,431),(380,432),(381,433),(382,434),(383,435),(384,436),(385,437),(386,438),(387,439),(388,440),(389,441),(390,442),(391,443),(392,444),(393,445),(394,446),(395,447),(396,448),(397,449),(398,450),(399,451),(400,452),(401,453),(402,454),(403,455),(404,456),(405,457),(406,458),(407,459),(408,460),(409,461),(410,462),(411,463),(412,464),(413,465),(414,466),(415,467),(416,468),(417,469),(418,470),(419,471),(420,472),(421,473),(422,474),(423,475),(424,476),(425,477),(426,478),(427,478),(426,479),(426,480),(427,481),(427,482),(427,483),(428,484),(429,485),(430,486),(431,487),(432,488),(433,489),(434,490),(435,491),(436,492),(437,493),(438,494),(439,495),(440,496),(441,497),(442,498),(443,499),(444,500),(445,501),(446,502),(447,503),(448,504),(449,505),(450,506),(451,507),(451,508),(456,508),(457,508),(460,508),(461,508),(466,508),(533,508),(536,508),(452,509),(453,510),(454,511),(455,512),(456,512),(622,512),(645,512),(457,513),(533,513),(457,514),(494,514),(505,514),(524,514),(530,514),(531,514),(533,514),(537,514),(581,514),(582,514),(584,514),(457,515),(533,515),(653,515),(654,515),(655,515),(457,516),(457,517),(494,517),(524,517),(533,517),(537,517),(457,518),(458,519),(459,520),(460,521),(461,522),(462,523),(463,524),(464,525),(465,526),(466,527),(467,528),(468,529),(469,530),(470,531),(472,532),(473,533),(474,534),(475,535),(476,536),(477,537),(478,538),(479,539),(480,540),(481,541),(482,542),(483,543),(484,544),(485,545),(527,545),(532,545),(486,546),(487,546),(494,546),(497,546),(498,546),(505,546),(486,547),(487,547),(494,547),(504,547),(505,547),(530,547),(486,548),(487,548),(494,548),(505,548),(486,549),(487,549),(486,550),(487,550),(494,550),(497,550),(498,550),(505,550),(506,550),(527,550),(530,550),(531,550),(532,550),(533,550),(537,550),(538,550),(539,550),(540,550),(541,550),(551,550),(579,550),(580,550),(587,550),(597,550),(598,550),(599,550),(600,550),(601,550),(605,550),(486,551),(487,551),(494,551),(589,551),(488,552),(494,552),(499,552),(500,552),(505,552),(507,552),(488,553),(499,553),(488,554),(499,554),(488,555),(494,555),(499,555),(488,556),(499,556),(525,556),(571,556),(488,557),(494,557),(499,557),(488,558),(499,558),(512,558),(611,558),(488,559),(499,559),(506,559),(535,559),(488,560),(499,560),(488,561),(494,561),(521,561),(585,561),(488,562),(499,562),(488,563),(499,563),(554,563),(555,563),(556,563),(638,563),(639,563),(651,563),(490,564),(491,565),(501,565),(507,565),(533,565),(491,566),(501,566),(507,566),(493,567),(504,567),(493,568),(504,568),(516,568),(494,569),(494,570),(494,571),(588,571),(494,572),(494,573),(505,573),(494,574),(552,574),(553,574),(494,575),(505,575),(589,575),(494,576),(505,576),(590,576),(494,577),(494,578),(505,578),(530,578),(601,578),(607,578),(608,578),(494,579),(494,580),(505,580),(649,580),(653,580),(654,580),(655,580),(494,581),(505,581),(494,582),(505,582),(494,583),(494,584),(495,584),(510,584),(511,584),(512,584),(513,584),(514,584),(515,584),(516,584),(517,584),(518,584),(519,584),(520,584),(559,584),(560,584),(583,584),(594,584),(494,585),(494,586),(495,586),(505,586),(507,586),(518,586),(601,586),(620,586),(648,586),(494,587),(494,588),(505,588),(526,588),(494,589),(504,589),(505,589),(506,589),(494,590),(500,590),(505,590),(494,591),(530,591),(494,592),(505,592),(494,593),(601,593),(627,593),(494,594),(505,594),(494,595),(533,595),(545,595),(581,595),(582,595),(648,595),(494,596),(505,596),(494,597),(505,597),(494,598),(494,599),(591,599),(494,600),(505,600),(494,601),(500,601),(505,601),(494,602),(505,602),(524,602),(527,602),(530,602),(532,602),(533,602),(535,602),(647,602),(650,602),(494,603),(494,604),(494,605),(494,606),(494,607),(494,608),(592,608),(494,609),(505,609),(494,610),(500,610),(494,611),(505,611),(494,612),(505,612),(494,613),(505,613),(494,614),(495,614),(507,614),(518,614),(494,615),(494,616),(536,616),(494,617),(495,618),(507,618),(495,619),(507,619),(495,620),(507,620),(496,621),(509,621),(520,621),(497,622),(498,622),(499,622),(510,622),(511,622),(512,622),(516,622),(517,622),(520,622),(581,622),(582,622),(583,622),(594,622),(499,623),(499,624),(499,625),(499,626),(500,627),(504,628),(504,629),(504,630),(504,631),(504,632),(505,633),(506,633),(505,634),(505,635),(506,635),(517,635),(520,635),(505,636),(505,637),(505,638),(530,638),(505,639),(506,639),(524,639),(505,640),(505,641),(505,642),(601,642),(607,642),(608,642),(634,642),(642,642),(505,643),(505,644),(601,644),(505,645),(505,646),(505,647),(505,648),(505,649),(505,650),(506,650),(505,651),(505,652),(505,653),(506,653),(584,653),(505,654),(505,655),(506,656),(517,656),(520,656),(506,657),(527,657),(533,657),(537,657),(507,658),(507,659),(507,660),(507,661),(507,662),(507,663),(535,663),(657,663),(508,664),(519,664),(601,664),(517,665),(523,666),(524,667),(526,667),(533,667),(537,667),(604,667),(637,667),(524,668),(527,668),(530,668),(531,668),(532,668),(537,668),(545,668),(524,669),(589,669),(592,669),(524,670),(535,670),(558,670),(524,671),(526,671),(537,671),(607,671),(608,671),(627,671),(526,672),(572,672),(526,673),(577,673),(526,674),(526,675),(526,676),(575,676),(601,676),(629,676),(526,677),(526,678),(538,678),(539,678),(540,678),(541,678),(545,678),(546,678),(547,678),(648,678),(527,679),(529,679),(532,679),(527,680),(527,681),(533,681),(527,682),(530,682),(531,682),(533,682),(535,682),(537,682),(650,682),(527,683),(532,683),(533,683),(650,683),(527,684),(528,684),(532,684),(533,684),(653,684),(654,684),(655,684),(530,685),(531,685),(530,686),(530,687),(530,688),(601,688),(607,688),(608,688),(530,689),(531,689),(530,690),(531,690),(530,691),(650,691),(530,692),(531,692),(545,692),(588,692),(591,692),(592,692),(648,692),(530,693),(530,694),(530,695),(531,696),(581,696),(582,696),(584,696),(531,697),(533,698),(536,698),(554,698),(584,698),(586,698),(647,698),(650,698),(533,699),(535,699),(545,699),(581,699),(582,699),(533,700),(533,701),(533,702),(552,702),(554,702),(555,702),(556,702),(573,702),(576,702),(577,702),(587,702),(601,702),(637,702),(639,702),(648,702),(653,702),(654,702),(655,702),(533,703),(533,704),(535,704),(533,705),(533,706),(533,707),(533,708),(533,709),(533,710),(533,711),(533,712),(533,713),(533,714),(533,715),(535,715),(534,716),(535,717),(535,718),(535,719),(535,720),(535,721),(538,722),(539,722),(540,722),(541,722),(538,723),(539,723),(540,723),(541,723),(547,723),(561,723),(538,724),(539,724),(540,724),(541,724),(538,725),(539,725),(540,725),(541,725),(547,725),(538,726),(539,726),(540,726),(541,726),(547,726),(538,727),(539,727),(540,727),(541,727),(546,727),(547,727),(538,728),(539,728),(540,728),(541,728),(542,728),(543,728),(544,728),(547,728),(538,729),(539,729),(540,729),(541,729),(542,729),(543,729),(544,729),(547,729),(538,730),(539,730),(540,730),(541,730),(547,730),(538,731),(539,731),(540,731),(541,731),(547,731),(555,731),(538,732),(539,732),(540,732),(541,732),(546,732),(538,733),(539,733),(540,733),(541,733),(538,734),(539,734),(540,734),(541,734),(545,734),(546,734),(547,734),(542,735),(543,735),(544,735),(542,736),(543,736),(544,736),(548,736),(549,736),(552,736),(545,737),(601,737),(629,737),(642,737),(648,737),(545,738),(581,738),(582,738),(546,739),(546,740),(597,740),(640,740),(644,740),(546,741),(546,742),(546,743),(546,744),(546,745),(597,745),(640,745),(644,745),(546,746),(547,747),(557,747),(559,747),(560,747),(547,748),(547,749),(548,750),(549,750),(548,751),(549,751),(601,751),(602,751),(603,751),(648,751),(548,752),(549,752),(550,752),(552,752),(602,752),(603,752),(628,752),(651,752),(548,753),(549,753),(551,754),(552,755),(554,755),(555,755),(556,755),(637,755),(639,755),(648,755),(552,756),(552,757),(552,758),(552,759),(552,760),(552,761),(552,762),(552,763),(552,764),(552,765),(552,766),(552,767),(552,768),(552,769),(552,770),(552,771),(552,772),(552,773),(552,774),(552,775),(552,776),(552,777),(552,778),(553,779),(553,780),(553,781),(553,782),(553,783),(553,784),(553,785),(553,786),(553,787),(584,787),(555,788),(555,789),(556,789),(555,790),(555,791),(555,792),(555,793),(555,794),(556,794),(556,795),(558,796),(584,796),(559,797),(560,797),(563,798),(573,798),(576,798),(577,798),(565,799),(566,800),(567,801),(568,802),(569,803),(570,804),(571,805),(573,806),(574,807),(576,808),(577,809),(577,810),(577,811),(578,812),(579,812),(580,812),(578,813),(579,813),(580,813),(578,814),(579,814),(580,814),(578,815),(579,815),(580,815),(578,816),(579,816),(580,816),(578,817),(579,817),(580,817),(578,818),(579,818),(580,818),(578,819),(578,820),(578,821),(579,821),(580,821),(578,822),(579,822),(580,822),(578,823),(578,824),(578,825),(579,825),(580,825),(578,826),(579,826),(580,826),(578,827),(579,827),(580,827),(579,828),(579,829),(580,829),(580,830),(581,831),(582,831),(581,832),(582,832),(584,832),(581,833),(582,833),(581,834),(582,834),(584,834),(581,835),(582,835),(584,835),(581,836),(582,836),(584,836),(581,837),(582,837),(584,837),(581,838),(582,838),(584,838),(581,839),(582,839),(581,840),(582,840),(584,840),(581,841),(582,841),(584,841),(581,842),(582,842),(584,842),(581,843),(582,843),(584,843),(584,844),(584,845),(584,846),(586,846),(584,847),(584,848),(586,848),(584,849),(586,849),(631,849),(648,849),(584,850),(584,851),(584,852),(584,853),(652,853),(584,854),(584,855),(586,856),(586,857),(588,858),(591,858),(592,858),(648,858),(589,859),(589,860),(592,861),(653,861),(654,861),(655,861),(592,862),(593,863),(593,864),(593,865),(593,866),(595,867),(595,868),(596,868),(601,868),(596,869),(597,870),(600,871),(601,872),(618,872),(619,872),(601,873),(621,873),(601,874),(622,874),(601,875),(626,875),(601,876),(638,876),(648,876),(601,877),(601,878),(620,878),(601,879),(634,879),(601,880),(618,880),(619,880),(601,881),(602,881),(603,881),(604,881),(605,881),(606,881),(607,881),(608,881),(609,881),(610,881),(611,881),(612,881),(613,881),(614,881),(616,881),(618,881),(619,881),(620,881),(621,881),(622,881),(623,881),(624,881),(625,881),(626,881),(627,881),(628,881),(629,881),(630,881),(631,881),(632,881),(633,881),(634,881),(635,881),(636,881),(637,881),(638,881),(639,881),(640,881),(641,881),(642,881),(643,881),(644,881),(645,881),(601,882),(620,882),(625,882),(628,882),(633,882),(639,882),(640,882),(641,882),(648,882),(601,883),(643,883),(601,884),(644,884),(601,885),(645,885),(604,886),(646,886),(604,887),(623,887),(637,887),(621,888),(624,889),(632,889),(630,890),(635,891),(636,892),(637,893),(648,894),(648,895),(648,896),(648,897),(648,898),(648,899),(648,900),(648,901),(649,902),(650,903),(653,904),(654,904),(655,904),(653,905),(654,905),(655,905),(653,906),(654,906),(655,906),(653,907),(654,907),(655,907); +/*!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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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,'HELP_DATE',1,'This help information was generated from the MySQL 5.7 Reference Manual\non: 2020-12-10\n','',''),(1,'HELP_VERSION',1,'This help information was generated from the MySQL 5.7 Reference Manual\non: 2020-12-10 (revision: 68248)\n\nThis information applies to MySQL 5.7 through 5.7.34.\n','',''),(2,'AUTO_INCREMENT',2,'The AUTO_INCREMENT attribute can be used to generate a unique identity\nfor new rows:\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/example-auto-increment.html'),(3,'HELP COMMAND',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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 \', where 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 \',\nwhere 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 \',\nwhere is one of the following\ntopics:\n REPAIR TABLE\n REPEAT FUNCTION\n REPEAT LOOP\n REPLACE\n REPLACE FUNCTION\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mysql-server-side-help.html'),(4,'ASYMMETRIC_DECRYPT',5,'Syntax:\nasymmetric_decrypt(algorithm, crypt_str, key_str)\n\nDecrypts an encrypted string using the given algorithm and key string,\nand returns the resulting plaintext 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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(5,'ASYMMETRIC_DERIVE',5,'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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(6,'ASYMMETRIC_ENCRYPT',5,'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: https://dev.mysql.com/doc/refman/5.7/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 @plaintext = 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 @plaintext = asymmetric_decrypt(\'RSA\', @ciphertext, @priv);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(7,'ASYMMETRIC_SIGN',5,'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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(8,'ASYMMETRIC_VERIFY',5,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(9,'CREATE_ASYMMETRIC_PRIV_KEY',5,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.htm\nl.\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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @priv = create_asymmetric_priv_key(\'DSA\', 2048);\nSET @pub = create_asymmetric_pub_key(\'DSA\', @priv);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(10,'CREATE_ASYMMETRIC_PUB_KEY',5,'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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(11,'CREATE_DH_PARAMETERS',5,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-usage.htm\nl.\n\nFor an example showing how to use the return value for generating\nsymmetric keys, see the description of asymmetric_derive().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @dhp = create_dh_parameters(1024);\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(12,'CREATE_DIGEST',5,'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: https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html\n\n','SET @dig = create_digest(\'SHA512\', The quick brown fox\');\n','https://dev.mysql.com/doc/refman/5.7/en/enterprise-encryption-functions.html'),(13,'PROCEDURE ANALYSE',6,'Syntax:\nANALYSE([max_elements[,max_memory]])\n\n*Note*:\n\nPROCEDURE ANALYSE() is deprecated as of MySQL 5.7.18, and is removed in\nMySQL 8.0.\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: https://dev.mysql.com/doc/refman/5.7/en/procedure-analyse.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/procedure-analyse.html'),(14,'FLUSH QUERY CACHE',3,'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: https://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/query-cache-status-and-maintenance.html'),(15,'TRUE',7,'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: https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html'),(16,'FALSE',7,'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: https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/boolean-literals.html'),(17,'BIT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(18,'TINYINT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(19,'BOOLEAN',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(20,'SMALLINT',2,'SMALLINT[(M)] [UNSIGNED] [ZEROFILL]\n\nA small integer. The signed range is -32768 to 32767. The unsigned\nrange is 0 to 65535.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(21,'MEDIUMINT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(22,'INT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(23,'INTEGER',2,'INTEGER[(M)] [UNSIGNED] [ZEROFILL]\n\nThis type is a synonym for INT.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(24,'BIGINT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(25,'DECIMAL',2,'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. (There is also a\nlimit on how long the text of DECIMAL literals can be; see\nhttps://dev.mysql.com/doc/refman/5.7/en/precision-math-expressions.html\n.)\n\nUNSIGNED, if specified, disallows negative values.\n\nAll basic calculations (+, -, *, /) with DECIMAL columns are done with\na precision of 65 digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(26,'DEC',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(27,'FLOAT',2,'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\nFLOAT(M,D) is a nonstandard MySQL extension.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/no-matching-rows.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(28,'DOUBLE',2,'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\nDOUBLE(M,D) is a nonstandard MySQL extension.\n\nUNSIGNED, if specified, disallows negative values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(29,'DOUBLE PRECISION',2,'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: https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/numeric-type-syntax.html'),(30,'DATE',2,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(31,'DATETIME',2,'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\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nAutomatic initialization and updating to the current date and time for\nDATETIME columns can be specified using DEFAULT and ON UPDATE column\ndefinition clauses, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/timestamp-initialization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(32,'TIMESTAMP',2,'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\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nThe way the server handles TIMESTAMP definitions depends on the value\nof the explicit_defaults_for_timestamp system variable (see\nhttps://dev.mysql.com/doc/refman/5.7/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. However,\nany TIMESTAMP column in a table can be defined to have these\nproperties.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(33,'TIME',2,'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\nAn optional fsp value in the range from 0 to 6 may be given to specify\nfractional seconds precision. A value of 0 signifies that there is no\nfractional part. If omitted, the default precision is 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(34,'YEAR DATA TYPE',2,'YEAR[(4)]\n\nA year in 4-digit format. MySQL displays YEAR values in YYYY format,\nbut permits assignment of values to YEAR columns using either strings\nor numbers. Values display as 1901 to 2155, or 0000.\n\n*Note*:\n\nThe YEAR(2) data type is deprecated and support for it is removed in\nMySQL 5.7.5. To convert 2-digit YEAR(2) columns to 4-digit YEAR\ncolumns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/migrating-from-year2.html.\n\nFor additional information about YEAR display format and interpretation\nof input values, see https://dev.mysql.com/doc/refman/5.7/en/year.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-type-syntax.html'),(35,'CHAR',2,'[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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(36,'CHAR BYTE',2,'The CHAR BYTE data type is an alias for the BINARY data type. This is a\ncompatibility feature.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(37,'VARCHAR',2,'[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\nhttps://dev.mysql.com/doc/refman/5.7/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. https://dev.mysql.com/doc/refman/5.7/en/charset-national.html.\nNVARCHAR is shorthand for NATIONAL VARCHAR.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(38,'BINARY',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(39,'VARBINARY',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(40,'TINYBLOB',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(41,'TINYTEXT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(42,'BLOB',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(43,'TEXT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(44,'MEDIUMBLOB',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(45,'MEDIUMTEXT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(46,'LONGBLOB',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(47,'LONGTEXT',2,'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: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(48,'ENUM',2,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(49,'SET DATA TYPE',2,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html#limits-\nfrm-file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-type-syntax.html'),(50,'BLOB DATA TYPE',2,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/storage-requirements.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/blob.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/blob.html'),(51,'GEOMETRY HIERARCHY',8,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-geometry-class-hierarchy.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometry-class-hierarchy.html'),(52,'MBR DEFINITION',9,'Its MBR (minimum bounding rectangle), or envelope. This is the bounding\ngeometry, formed by the minimum and maximum (X,Y) coordinates:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html\n\n','((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY))\n','https://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html'),(53,'WKT DEFINITION',10,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/spatial-types.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-data-formats.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-data-formats.html'),(54,'SPATIAL COLUMNS',8,'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 indexes].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html\n\n','CREATE TABLE geom (g GEOMETRY);\n','https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-columns.html'),(55,'SPATIAL INDEXES',8,'For InnoDB and MyISAM tables, MySQL can create spatial indexes using\nsyntax similar to that for creating regular indexes, but using the\nSPATIAL keyword. Columns in spatial indexes must be declared NOT NULL.\nThe following examples demonstrate how to create spatial indexes:\n\no With CREATE TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g));\n\no With ALTER TABLE:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL);\nALTER TABLE geom ADD SPATIAL INDEX(g);\n\no With CREATE INDEX:\n\nCREATE TABLE geom (g GEOMETRY NOT NULL);\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: https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-indexes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/creating-spatial-indexes.html'),(56,'=',11,'=\n\nEqual:\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(57,'<=>',11,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(58,'!=',11,'Syntax:\n<>, !=\n\nNot equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(59,'<=',11,'Syntax:\n<=\n\nLess than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 0.1 <= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(60,'<',11,'Syntax:\n<\n\nLess than:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 < 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(61,'>=',11,'Syntax:\n>=\n\nGreater than or equal:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 >= 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(62,'>',11,'Syntax:\n>\n\nGreater than:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 2 > 2;\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(63,'BETWEEN AND',11,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/type-conversion.html, but\napplied to all the three arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(64,'NOT BETWEEN',11,'Syntax:\nexpr NOT BETWEEN min AND max\n\nThis is the same as NOT (expr BETWEEN min AND max).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(65,'COALESCE',11,'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: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT COALESCE(NULL,1);\n -> 1\nmysql> SELECT COALESCE(NULL,NULL,NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(66,'GREATEST',11,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(67,'IN',11,'Syntax:\nexpr IN (value,...)\n\nReturns 1 (true) if expr is equal to any of the values in the IN()\nlist, else returns 0 (false).\n\nType conversion takes place according to the rules described in\nhttps://dev.mysql.com/doc/refman/5.7/en/type-conversion.html, applied\nto all the arguments. If no type conversion is needed for the values in\nthe IN() list, they are all constants of the same type, and expr can be\ncompared to each of them as a value of the same type (possibly after\ntype conversion), an optimization takes place. The values the list are\nsorted and the search for expr is done using a binary search, which\nmakes the IN() operation very quick.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(68,'NOT IN',11,'Syntax:\nexpr NOT IN (value,...)\n\nThis is the same as NOT (expr IN (value,...)).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(69,'INTERVAL',11,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(70,'IS',11,'Syntax:\nIS boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN;\n -> 1, 1, 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(71,'IS NOT',11,'Syntax:\nIS NOT boolean_value\n\nTests a value against a boolean value, where boolean_value can be TRUE,\nFALSE, or UNKNOWN.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(72,'IS NULL',11,'Syntax:\nIS NULL\n\nTests whether a value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL;\n -> 0, 0, 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(73,'IS NOT NULL',11,'Syntax:\nIS NOT NULL\n\nTests whether a value is not NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(74,'ISNULL',11,'Syntax:\nISNULL(expr)\n\nIf expr is NULL, ISNULL() returns 1, otherwise it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html\n\n','mysql> SELECT ISNULL(1+1);\n -> 0\nmysql> SELECT ISNULL(1/0);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(75,'LEAST',11,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html'),(76,'!',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(77,'AND',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(78,'OR',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(79,'XOR',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/logical-operators.html'),(80,'ASSIGN-VALUE',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html'),(81,'ASSIGN-EQUAL',12,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/assignment-operators.html'),(82,'CASE OPERATOR',13,'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 ...] [ELSE\nresult] 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 operator 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: https://dev.mysql.com/doc/refman/5.7/en/flow-control-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','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(83,'IF FUNCTION',13,'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: https://dev.mysql.com/doc/refman/5.7/en/flow-control-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','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(84,'IFNULL',13,'Syntax:\nIFNULL(expr1,expr2)\n\nIf expr1 is not NULL, IFNULL() returns expr1; otherwise it returns\nexpr2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flow-control-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','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(85,'NULLIF',13,'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: https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html\n\n','mysql> SELECT NULLIF(1,1);\n -> NULL\nmysql> SELECT NULLIF(1,2);\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html'),(86,'+',14,'Syntax:\n+\n\nAddition:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3+5;\n -> 8\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(87,'- BINARY',14,'Syntax:\n-\n\nSubtraction:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3-5;\n -> -2\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(88,'- UNARY',14,'Syntax:\n-\n\nUnary minus. This operator changes the sign of the operand.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT - 2;\n -> -2\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(89,'*',14,'Syntax:\n*\n\nMultiplication:\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(90,'/',14,'Syntax:\n/\n\nDivision:\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','mysql> SELECT 3/5;\n -> 0.60\n','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(91,'DIV',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(92,'%',14,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/arithmetic-functions.html'),(93,'ABS',14,'Syntax:\nABS(X)\n\nReturns the absolute value of X, or NULL if X is NULL.\n\nThe result type is derived from the argument type. An implication of\nthis is that ABS(-9223372036854775808) produces an error because the\nresult cannot be stored in a signed BIGINT value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ABS(2);\n -> 2\nmysql> SELECT ABS(-32);\n -> 32\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(94,'ACOS',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(95,'ASIN',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(96,'ATAN',14,'Syntax:\nATAN(X)\n\nReturns the arc tangent of X, that is, the value whose tangent is X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(2);\n -> 1.1071487177941\nmysql> SELECT ATAN(-2);\n -> -1.1071487177941\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(97,'ATAN2',14,'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: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT ATAN(-2,2);\n -> -0.78539816339745\nmysql> SELECT ATAN2(PI(),0);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(98,'CEIL',14,'Syntax:\nCEIL(X)\n\nCEIL() is a synonym for CEILING().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(99,'CEILING',14,'Syntax:\nCEILING(X)\n\nReturns the smallest integer value not less than X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CEILING(1.23);\n -> 2\nmysql> SELECT CEILING(-1.23);\n -> -1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(100,'CONV',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(101,'COS',14,'Syntax:\nCOS(X)\n\nReturns the cosine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT COS(PI());\n -> -1\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(102,'COT',14,'Syntax:\nCOT(X)\n\nReturns the cotangent of X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT COT(12);\n -> -1.5726734063977\nmysql> SELECT COT(0);\n -> out-of-range error\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(103,'CRC32',14,'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: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT CRC32(\'MySQL\');\n -> 3259397556\nmysql> SELECT CRC32(\'mysql\');\n -> 2501908538\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(104,'DEGREES',14,'Syntax:\nDEGREES(X)\n\nReturns the argument X, converted from radians to degrees.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT DEGREES(PI());\n -> 180\nmysql> SELECT DEGREES(PI() / 2);\n -> 90\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(105,'EXP',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(106,'FLOOR',14,'Syntax:\nFLOOR(X)\n\nReturns the largest integer value not greater than X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT FLOOR(1.23), FLOOR(-1.23);\n -> 1, -2\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(107,'LN',14,'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.0E0, the function returns NULL and a\nwarning \"Invalid argument for logarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LN(2);\n -> 0.69314718055995\nmysql> SELECT LN(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(108,'LOG',14,'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.0E0, the function\nreturns NULL and a warning \"Invalid argument for logarithm\" is\nreported.\n\nThe inverse of this function (when called with a single argument) is\nthe EXP() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LOG(2);\n -> 0.69314718055995\nmysql> SELECT LOG(-2);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(109,'LOG2',14,'Syntax:\nLOG2(X)\n\nReturns the base-2 logarithm of X. If X is less than or equal to 0.0E0,\nthe function returns NULL and a warning \"Invalid argument for\nlogarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT LOG2(65536);\n -> 16\nmysql> SELECT LOG2(-100);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(110,'LOG10',14,'Syntax:\nLOG10(X)\n\nReturns the base-10 logarithm of X. If X is less than or equal to\n0.0E0, the function returns NULL and a warning \"Invalid argument for\nlogarithm\" is reported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(111,'MOD',14,'Syntax:\nMOD(N,M), N % M, N MOD M\n\nModulo operation. Returns the remainder of N divided by M.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(112,'PI',14,'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: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT PI();\n -> 3.141593\nmysql> SELECT PI()+0.000000000000000000;\n -> 3.141592653589793116\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(113,'POW',14,'Syntax:\nPOW(X,Y)\n\nReturns the value of X raised to the power of Y.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT POW(2,2);\n -> 4\nmysql> SELECT POW(2,-2);\n -> 0.25\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(114,'POWER',14,'Syntax:\nPOWER(X,Y)\n\nThis is a synonym for POW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(115,'RADIANS',14,'Syntax:\nRADIANS(X)\n\nReturns the argument X, converted from degrees to radians. (Note that\nπ radians equals 180 degrees.)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT RADIANS(90);\n -> 1.5707963267949\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(116,'RAND',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(117,'ROUND',14,'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. The maximum absolute value for D is 30; any digits in\nexcess of 30 (or -30) are truncated.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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\nmysql> SELECT ROUND(.12345678901234567890123456789012345, 35);\n -> 0.123456789012345678901234567890\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(118,'SIGN',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(119,'SIN',14,'Syntax:\nSIN(X)\n\nReturns the sine of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT SIN(PI());\n -> 1.2246063538224e-16\nmysql> SELECT ROUND(SIN(PI()));\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(120,'SQRT',14,'Syntax:\nSQRT(X)\n\nReturns the square root of a nonnegative number X.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(121,'TAN',14,'Syntax:\nTAN(X)\n\nReturns the tangent of X, where X is given in radians.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html\n\n','mysql> SELECT TAN(PI());\n -> -1.2246063538224e-16\nmysql> SELECT TAN(PI()+1);\n -> 1.5574077246549\n','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(122,'TRUNCATE',14,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/mathematical-functions.html'),(123,'ADDDATE',15,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html#temporal-inter\nvals.\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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT ADDDATE(\'2008-01-02\', 31);\n -> \'2008-02-02\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(124,'ADDTIME',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(125,'CONVERT_TZ',15,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html. This\nfunction returns NULL if the arguments are invalid.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(126,'CURDATE',15,'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 string or numeric context.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURDATE();\n -> \'2008-06-13\'\nmysql> SELECT CURDATE() + 0;\n -> 20080613\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(127,'CURRENT_DATE',15,'Syntax:\nCURRENT_DATE, CURRENT_DATE()\n\nCURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(128,'CURRENT_TIME',15,'Syntax:\nCURRENT_TIME, CURRENT_TIME([fsp])\n\nCURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(129,'CURRENT_TIMESTAMP',15,'Syntax:\nCURRENT_TIMESTAMP, CURRENT_TIMESTAMP([fsp])\n\nCURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(130,'CURTIME',15,'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 string or numeric context.\nThe value is expressed in the session time zone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT CURTIME();\n -> \'23:50:26\'\nmysql> SELECT CURTIME() + 0;\n -> 235026.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(131,'DATE FUNCTION',15,'Syntax:\nDATE(expr)\n\nExtracts the date part of the date or datetime expression expr.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE(\'2003-12-31 01:02:03\');\n -> \'2003-12-31\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(132,'DATEDIFF',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(133,'DATE_ADD',15,'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 evaluated as a string; it may start with a - for negative\nintervals. unit is a keyword indicating the units in which the\nexpression should be interpreted.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DATE_ADD(\'2018-05-01\',INTERVAL 1 DAY);\n -> \'2018-05-02\'\nmysql> SELECT DATE_SUB(\'2018-05-01\',INTERVAL 1 YEAR);\n -> \'2017-05-01\'\nmysql> SELECT DATE_ADD(\'2020-12-31 23:59:59\',\n -> INTERVAL 1 SECOND);\n -> \'2021-01-01 00:00:00\'\nmysql> SELECT DATE_ADD(\'2018-12-31 23:59:59\',\n -> INTERVAL 1 DAY);\n -> \'2019-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(\'2025-01-01 00:00:00\',\n -> INTERVAL \'1 1:1:1\' DAY_SECOND);\n -> \'2024-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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(134,'DATE_FORMAT',15,'Syntax:\nDATE_FORMAT(date,format)\n\nFormats the date value according to the format string.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(135,'DATE_SUB',15,'Syntax:\nDATE_SUB(date,INTERVAL expr unit)\n\nSee the description for DATE_ADD().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(136,'DAY',15,'Syntax:\nDAY(date)\n\nDAY() is a synonym for DAYOFMONTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(137,'DAYNAME',15,'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(https://dev.mysql.com/doc/refman/5.7/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYNAME(\'2007-02-03\');\n -> \'Saturday\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(138,'DAYOFMONTH',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFMONTH(\'2007-02-03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(139,'DAYOFWEEK',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFWEEK(\'2007-02-03\');\n -> 7\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(140,'DAYOFYEAR',15,'Syntax:\nDAYOFYEAR(date)\n\nReturns the day of the year for date, in the range 1 to 366.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT DAYOFYEAR(\'2007-02-03\');\n -> 34\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(141,'EXTRACT',15,'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. For information on the unit argument, see\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html#temporal-inter\nvals.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT EXTRACT(YEAR FROM \'2019-07-02\');\n -> 2019\nmysql> SELECT EXTRACT(YEAR_MONTH FROM \'2019-07-02 01:02:03\');\n -> 201907\nmysql> SELECT EXTRACT(DAY_MINUTE FROM \'2019-07-02 01:02:03\');\n -> 20102\nmysql> SELECT EXTRACT(MICROSECOND\n -> FROM \'2003-01-02 10:30:00.000123\');\n -> 123\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(142,'FROM_DAYS',15,'Syntax:\nFROM_DAYS(N)\n\nGiven a day number N, returns a DATE value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT FROM_DAYS(730669);\n -> \'2000-07-03\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(143,'FROM_UNIXTIME',15,'Syntax:\nFROM_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. unix_timestamp is\nan internal timestamp value representing seconds since \'1970-01-01\n00:00:00\' UTC, such as produced by the UNIX_TIMESTAMP() function.\n\nThe return value is expressed in the session time zone. (Clients can\nset the session time zone as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.) The\nformat string, if given, is used to format the result the same way as\ndescribed in the entry for the DATE_FORMAT() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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(1447430881,\n -> \'%Y %D %M %h:%i:%s %x\');\n -> \'2015 13th November 10:08:01 2015\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(144,'GET_FORMAT',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(145,'HOUR',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(146,'LAST_DAY',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(147,'LOCALTIME',15,'Syntax:\nLOCALTIME, LOCALTIME([fsp])\n\nLOCALTIME and LOCALTIME() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(148,'LOCALTIMESTAMP',15,'Syntax:\nLOCALTIMESTAMP, LOCALTIMESTAMP([fsp])\n\nLOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(149,'MAKEDATE',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(150,'MAKETIME',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MAKETIME(12,15,30);\n -> \'12:15:30\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(151,'MICROSECOND',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MICROSECOND(\'12:00:00.123456\');\n -> 123456\nmysql> SELECT MICROSECOND(\'2019-12-31 23:59:59.000010\');\n -> 10\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(152,'MINUTE',15,'Syntax:\nMINUTE(time)\n\nReturns the minute for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MINUTE(\'2008-02-03 10:05:03\');\n -> 5\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(153,'MONTH',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MONTH(\'2008-02-03\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(154,'MONTHNAME',15,'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(https://dev.mysql.com/doc/refman/5.7/en/locale-support.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT MONTHNAME(\'2008-02-03\');\n -> \'February\'\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(155,'NOW',15,'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\nstring or numeric context. The value is expressed in the session time\nzone.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(156,'PERIOD_ADD',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_ADD(200801,2);\n -> 200803\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(157,'PERIOD_DIFF',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT PERIOD_DIFF(200802,200703);\n -> 11\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(158,'QUARTER',15,'Syntax:\nQUARTER(date)\n\nReturns the quarter of the year for date, in the range 1 to 4.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT QUARTER(\'2008-04-01\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(159,'SECOND',15,'Syntax:\nSECOND(time)\n\nReturns the second for time, in the range 0 to 59.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT SECOND(\'10:05:03\');\n -> 3\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(160,'SEC_TO_TIME',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(161,'STR_TO_DATE',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(162,'SUBDATE',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(163,'SUBTIME',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(164,'SYSDATE',15,'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\nstring or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\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 source and the replica.\n\nThe nondeterministic nature of SYSDATE() also means that indexes cannot\nbe used for evaluating expressions that refer to it.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(165,'TIME FUNCTION',15,'Syntax:\nTIME(expr)\n\nExtracts the time part of the time or datetime expression expr and\nreturns it as a string.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(166,'TIMEDIFF',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(167,'TIMESTAMP FUNCTION',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(168,'TIMESTAMPADD',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(169,'TIMESTAMPDIFF',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(170,'TIME_FORMAT',15,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(171,'TIME_TO_SEC',15,'Syntax:\nTIME_TO_SEC(time)\n\nReturns the time argument, converted to seconds.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(172,'TO_DAYS',15,'Syntax:\nTO_DAYS(date)\n\nGiven a date date, returns a day number (the number of days since year\n0).\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(173,'TO_SECONDS',15,'Syntax:\nTO_SECONDS(expr)\n\nGiven a date or datetime expr, returns the number of seconds since the\nyear 0. If expr is not a valid date or datetime value, returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(174,'UNIX_TIMESTAMP',15,'Syntax:\nUNIX_TIMESTAMP([date])\n\nIf UNIX_TIMESTAMP() is called with no date argument, it returns a Unix\ntimestamp representing seconds since \'1970-01-01 00:00:00\' UTC.\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\nserver interprets date as a value in the session time zone and converts\nit to an internal Unix timestamp value in UTC. (Clients can set the\nsession time zone as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/time-zone-support.html.) 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.\n\nThe return value is an integer if no argument is given or the argument\ndoes not include a fractional seconds part, or DECIMAL if an argument\nis given that includes a fractional seconds part.\n\nWhen the date argument is a TIMESTAMP column, UNIX_TIMESTAMP() returns\nthe internal timestamp value directly, with no implicit\n\"string-to-Unix-timestamp\" conversion.\n\nThe valid range of argument values is the same as for the TIMESTAMP\ndata type: \'1970-01-01 00:00:01.000000\' UTC to \'2038-01-19\n03:14:07.999999\' UTC. If you pass an out-of-range date to\nUNIX_TIMESTAMP(), it returns 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(175,'UTC_DATE',15,'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 string or numeric\ncontext.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_DATE(), UTC_DATE() + 0;\n -> \'2003-08-14\', 20030814\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(176,'UTC_TIME',15,'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 string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT UTC_TIME(), UTC_TIME() + 0;\n -> \'18:07:53\', 180753.000000\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(177,'UTC_TIMESTAMP',15,'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 string or numeric context.\n\nIf the fsp argument is given to specify a fractional seconds precision\nfrom 0 to 6, the return value includes a fractional seconds part of\nthat many digits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(178,'WEEK',15,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(179,'WEEKDAY',15,'Syntax:\nWEEKDAY(date)\n\nReturns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 =\nSunday).\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(180,'WEEKOFYEAR',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT WEEKOFYEAR(\'2008-02-20\');\n -> 8\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(181,'YEAR',15,'Syntax:\nYEAR(date)\n\nReturns the year for date, in the range 1000 to 9999, or 0 for the\n\"zero\" date.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT YEAR(\'1987-01-01\');\n -> 1987\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(182,'YEARWEEK',15,'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: https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html\n\n','mysql> SELECT YEARWEEK(\'1987-01-01\');\n -> 198652\n','https://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html'),(183,'ASCII',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(184,'BIN',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT BIN(12);\n -> \'1100\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(185,'BIT_LENGTH',16,'Syntax:\nBIT_LENGTH(str)\n\nReturns the length of the string str in bits.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT BIT_LENGTH(\'text\');\n -> 32\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(186,'CHAR FUNCTION',16,'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.\n\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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(187,'CHAR_LENGTH',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(188,'CHARACTER_LENGTH',16,'Syntax:\nCHARACTER_LENGTH(str)\n\nCHARACTER_LENGTH() is a synonym for CHAR_LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(189,'CONCAT',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(190,'CONCAT_WS',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(191,'ELT',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(192,'EXPORT_SET',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(193,'FIELD',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(194,'FIND_IN_SET',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT FIND_IN_SET(\'b\',\'a,b,c,d\');\n -> 2\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(195,'FORMAT',16,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/locale-support.html). If no\nlocale is specified, the default is \'en_US\'.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(196,'FROM_BASE64',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(197,'HEX',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(198,'INSERT FUNCTION',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(199,'INSTR',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT INSTR(\'foobarbar\', \'bar\');\n -> 4\nmysql> SELECT INSTR(\'xbar\', \'foobar\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(200,'LCASE',16,'Syntax:\nLCASE(str)\n\nLCASE() is a synonym for LOWER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(201,'LEFT',16,'Syntax:\nLEFT(str,len)\n\nReturns the leftmost len characters from the string str, or NULL if any\nargument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LEFT(\'foobarbar\', 5);\n -> \'fooba\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(202,'LENGTH',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LENGTH(\'text\');\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(203,'LOAD_FILE',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> UPDATE t\n SET blob_col=LOAD_FILE(\'/tmp/picture\')\n WHERE id=1;\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(204,'LOCATE',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(205,'LOWER',16,'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 of a binary\nstring, first convert it to a nonbinary string using a character set\nappropriate for the data stored in the 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\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-unicode-sets.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(206,'LPAD',16,'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\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LPAD(\'hi\',4,\'??\');\n -> \'??hi\'\nmysql> SELECT LPAD(\'hi\',1,\'??\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(207,'LTRIM',16,'Syntax:\nLTRIM(str)\n\nReturns the string str with leading space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT LTRIM(\' barbar\');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(208,'MAKE_SET',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(209,'MID',16,'Syntax:\nMID(str,pos,len)\n\nMID(str,pos,len) is a synonym for SUBSTRING(str,pos,len).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(210,'OCT',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT OCT(12);\n -> \'14\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(211,'OCTET_LENGTH',16,'Syntax:\nOCTET_LENGTH(str)\n\nOCTET_LENGTH() is a synonym for LENGTH().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(212,'ORD',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT ORD(\'2\');\n -> 50\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(213,'POSITION',16,'Syntax:\nPOSITION(substr IN str)\n\nPOSITION(substr IN str) is a synonym for LOCATE(substr,str).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(214,'QUOTE',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT QUOTE(\'Don\\\'t!\');\n -> \'Don\\\'t!\'\nmysql> SELECT QUOTE(NULL);\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(215,'REPEAT FUNCTION',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REPEAT(\'MySQL\', 3);\n -> \'MySQLMySQLMySQL\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(216,'REPLACE FUNCTION',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REPLACE(\'www.mysql.com\', \'w\', \'Ww\');\n -> \'WwWwWw.mysql.com\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(217,'REVERSE',16,'Syntax:\nREVERSE(str)\n\nReturns the string str with the order of the characters reversed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT REVERSE(\'abc\');\n -> \'cba\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(218,'RIGHT',16,'Syntax:\nRIGHT(str,len)\n\nReturns the rightmost len characters from the string str, or NULL if\nany argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RIGHT(\'foobarbar\', 4);\n -> \'rbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(219,'RPAD',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RPAD(\'hi\',5,\'?\');\n -> \'hi???\'\nmysql> SELECT RPAD(\'hi\',1,\'?\');\n -> \'h\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(220,'RTRIM',16,'Syntax:\nRTRIM(str)\n\nReturns the string str with trailing space characters removed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT RTRIM(\'barbar \');\n -> \'barbar\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(221,'SOUNDEX',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SOUNDEX(\'Hello\');\n -> \'H400\'\nmysql> SELECT SOUNDEX(\'Quadratically\');\n -> \'Q36324\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(222,'SOUNDS LIKE',16,'Syntax:\nexpr1 SOUNDS LIKE expr2\n\nThis is the same as SOUNDEX(expr1) = SOUNDEX(expr2).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(223,'SPACE',16,'Syntax:\nSPACE(N)\n\nReturns a string consisting of N space characters.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT SPACE(6);\n -> \' \'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(224,'SUBSTR',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(225,'SUBSTRING',16,'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. A value of 0 for pos returns an empty string.\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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(226,'SUBSTRING_INDEX',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(227,'TO_BASE64',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','mysql> SELECT TO_BASE64(\'abc\'), FROM_BASE64(TO_BASE64(\'abc\'));\n -> \'JWJj\', \'abc\'\n','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(228,'TRIM',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(229,'UCASE',16,'Syntax:\nUCASE(str)\n\nUCASE() is a synonym for UPPER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(230,'UNHEX',16,'Syntax:\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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(231,'UPPER',16,'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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(232,'WEIGHT_STRING',16,'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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/string-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-functions.html'),(233,'LIKE',16,'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. In the latter case,\nthe column must be defined as one of the MySQL string types (see\nhttps://dev.mysql.com/doc/refman/5.7/en/string-types.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','mysql> SELECT \'David!\' LIKE \'David_\';\n -> 1\nmysql> SELECT \'David!\' LIKE \'%D%v%\';\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(234,'NOT LIKE',16,'Syntax:\nexpr NOT LIKE pat [ESCAPE \'escape_char\']\n\nThis is the same as NOT (expr LIKE pat [ESCAPE \'escape_char\']).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(235,'STRCMP',16,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html'),(236,'NOT REGEXP',16,'Syntax:\nexpr NOT REGEXP pat, expr NOT RLIKE pat\n\nThis is the same as NOT (expr REGEXP pat).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/regexp.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/regexp.html'),(237,'REGEXP',16,'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.\n\nThe pattern can be an extended regular expression, the syntax for which\nis discussed in\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-collation-coercibility.\nhtml. If either argument is a binary string, the arguments are handled\nin case-sensitive fashion as binary strings.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/regexp.html'),(238,'MATCH AGAINST',16,'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 MySQL provides a built-in full-text ngram parser that supports\n Chinese, Japanese, and Korean (CJK), and an installable MeCab\n full-text parser plugin for Japanese. Parsing differences are\n outlined in\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-search-ngram.html,\n and\n https://dev.mysql.com/doc/refman/5.7/en/fulltext-search-mecab.html.\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 https://dev.mysql.com/doc/refman/5.7/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 https://dev.mysql.com/doc/refman/5.7/en/fulltext-natural-language.htm\n l.\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 https://dev.mysql.com/doc/refman/5.7/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 https://dev.mysql.com/doc/refman/5.7/en/fulltext-query-expansion.html\n .\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/fulltext-search.html'),(239,'BINARY OPERATOR',17,'Syntax:\nBINARY expr\n\nThe BINARY operator converts the expression to a binary string (a\nstring that has the binary character set and binary collation). A\ncommon use for BINARY is to force a character string comparison to be\ndone byte by byte using numeric byte values rather than character by\ncharacter. The BINARY operator also causes trailing spaces in\ncomparisons to be significant. For information about the differences\nbetween the binary collation of the binary character set and the _bin\ncollations of nonbinary character sets, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-binary-collations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(240,'CAST',17,'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\nURL: https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(241,'CONVERT',17,'Syntax:\nCONVERT(expr USING transcoding_name), CONVERT(expr,type)\n\nThe CONVERT() function takes an expression of any type and produces a\nresult value of the specified type.\n\nCONVERT(... USING ...) is standard SQL syntax. The non-USING form of\nCONVERT() is ODBC syntax.\n\nCONVERT(expr USING transcoding_name) converts data between different\ncharacter sets. In MySQL, transcoding names are the same as the\ncorresponding character set names. For example, this statement converts\nthe string \'abc\' in the default character set to the corresponding\nstring in the utf8 character set:\n\nSELECT CONVERT(\'abc\' USING utf8);\n\nCONVERT(expr, type) syntax (without USING) takes an expression and a\ntype value specifying the result type. This operation may also be\nexpressed as CAST(expr AS type), which is equivalent. These type values\nare permitted:\n\no BINARY[(N)]\n\n Produces a string with the BINARY data type. For a description of how\n this affects comparisons, see\n https://dev.mysql.com/doc/refman/5.7/en/binary-varbinary.html. If the\n optional length N is given, BINARY(N) causes the cast to use no more\n than N bytes of the argument. Values shorter than N bytes are padded\n with 0x00 bytes 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 character set default collation.\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 JSON\n\n Produces a JSON value. For details on the rules for conversion of\n values between JSON and other types, see\n https://dev.mysql.com/doc/refman/5.7/en/json.html#json-comparison.\n\no NCHAR[(N)]\n\n Like CHAR, but produces a string with the national character set. See\n https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html'),(242,'EXTRACTVALUE',18,'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.\n\nUsing this function is the equivalent of performing a match using the\nxpath_expr after appending /text(). In other words,\nExtractValue(\'Sakila\', \'/a/b\') and\nExtractValue(\'Sakila\', \'/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\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'/a/b\');\n+-------------------------------------+\n| ExtractValue(\'\', \'/a/b\') |\n+-------------------------------------+\n| |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nHowever, you can determine whether there was actually a matching\nelement using the following:\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'count(/a/b)\') |\n+-------------------------------------+\n| 1 |\n+-------------------------------------+\n1 row in set (0.00 sec)\n\nmysql> SELECT ExtractValue(\'\', \'count(/a/b)\');\n+-------------------------------------+\n| ExtractValue(\'\', \'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: https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html\n\n','mysql> SELECT\n -> ExtractValue(\'cccddd\', \'/a\') AS val1,\n -> ExtractValue(\'cccddd\', \'/a/b\') AS val2,\n -> ExtractValue(\'cccddd\', \'//b\') AS val3,\n -> ExtractValue(\'cccddd\', \'/b\') AS val4,\n -> ExtractValue(\'cccdddeee\', \'//b\') AS val5;\n\n+------+------+------+------+---------+\n| val1 | val2 | val3 | val4 | val5 |\n+------+------+------+------+---------+\n| ccc | ddd | ddd | | ddd eee |\n+------+------+------+------+---------+\n','https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html'),(243,'UPDATEXML',18,'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.\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: https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html\n\n','mysql> SELECT\n -> UpdateXML(\'ccc\', \'/a\', \'fff\') AS val1,\n -> UpdateXML(\'ccc\', \'/b\', \'fff\') AS val2,\n -> UpdateXML(\'ccc\', \'//b\', \'fff\') AS val3,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val4,\n -> UpdateXML(\'ccc\', \'/a/d\', \'fff\') AS val5\n -> \\G\n\n*************************** 1. row ***************************\nval1: fff\nval2: ccc\nval3: fff\nval4: cccfff\nval5: ccc\n','https://dev.mysql.com/doc/refman/5.7/en/xml-functions.html'),(244,'|',19,'Syntax:\n|\n\nBitwise OR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 29 | 15;\n -> 31\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(245,'&',19,'Syntax:\n&\n\nBitwise AND.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 29 & 15;\n -> 13\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(246,'^',19,'Syntax:\n^\n\nBitwise XOR.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(247,'<<',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: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 1 << 2;\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(248,'>>',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: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 4 >> 2;\n -> 1\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(249,'~',19,'Syntax:\n~\n\nInvert all bits.\n\nThe result is an unsigned 64-bit integer.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT 5 & ~1;\n -> 4\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(250,'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: https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html\n\n','mysql> SELECT BIT_COUNT(29), BIT_COUNT(b\'101010\');\n -> 4, 3\n','https://dev.mysql.com/doc/refman/5.7/en/bit-functions.html'),(251,'AES_DECRYPT',20,'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\nStatements that use AES_DECRYPT() are unsafe for statement-based\nreplication and cannot be stored in the query cache.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(252,'AES_ENCRYPT',20,'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. Key lengths of 196 or 256 bits can be used, as described later.\nThe key length is a trade off between performance and 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 plaintext 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\nAES_ENCRYPT() and AES_DECRYPT() permit control of the block encryption\nmode and take an optional init_vector initialization 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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(253,'COMPRESS',20,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(254,'DECODE',20,'Syntax:\nDECODE(crypt_str,pass_str)\n\nDECODE() decrypts the encrypted string crypt_str using pass_str as the\npassword. crypt_str should be a string returned from ENCODE().\n\n*Note*:\n\nThe ENCODE() and DECODE() functions are deprecated in MySQL 5.7, and\nshould no longer be used. Expect them to be removed in a future MySQL\nrelease. Consider using AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(255,'DES_DECRYPT',20,'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 https://dev.mysql.com/doc/refman/5.7/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\n*Note*:\n\nThe DES_ENCRYPT() and DES_DECRYPT() functions are deprecated in MySQL\n5.7, are removed in MySQL 8.0, and should no longer be used. Consider\nusing AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(256,'DES_ENCRYPT',20,'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 https://dev.mysql.com/doc/refman/5.7/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\n*Note*:\n\nThe DES_ENCRYPT() and DES_DECRYPT() functions are deprecated in MySQL\n5.7, are removed in MySQL 8.0, and should no longer be used. Consider\nusing AES_ENCRYPT() and AES_DECRYPT() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT customer_address FROM customer_table \n > WHERE crypted_credit_card = DES_ENCRYPT(\'credit_card_number\');\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(257,'ENCODE',20,'Syntax:\nENCODE(str,pass_str)\n\nENCODE() encrypts str using pass_str as the password. The result is a\nbinary string of the same length as str. To decrypt the result, use\nDECODE().\n\n*Note*:\n\nThe ENCODE() and DECODE() functions are deprecated in MySQL 5.7, and\nshould no longer be used. Expect them to be removed in a future MySQL\nrelease.\n\nIf you still need to use ENCODE(), a salt value must be used with it to\nreduce risk. For example:\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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(258,'ENCRYPT',20,'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 else the result is NULL. If no salt argument is given, a random\nvalue is used.\n\n*Note*:\n\nThe ENCRYPT() function is deprecated in MySQL 5.7, are removed in MySQL\n8.0, and should no longer be used. For one-way hashing, consider using\nSHA2() instead.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT ENCRYPT(\'hello\');\n -> \'VxuFAJXVARROc\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(259,'MD5',20,'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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT MD5(\'testing\');\n -> \'ae2b1fca515949e5d54fb22b8ed95575\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(260,'PASSWORD',20,'Syntax:\nPASSWORD(str)\n\n*Note*:\n\nThis function is deprecated in MySQL 5.7 and is removed in MySQL 8.0.\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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(261,'RANDOM_BYTES',20,'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, an error\noccurs.\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\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(262,'SHA1',20,'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. SHA()\nis synonymous with SHA1().\n\nThe return value is a string in the connection character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT SHA1(\'abc\');\n -> \'a9993e364706816aba3e25717850c26c9cd0d89d\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(263,'SHA2',20,'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 plaintext 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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT SHA2(\'abc\', 224);\n -> \'23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7\'\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(264,'UNCOMPRESS',20,'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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESS(COMPRESS(\'any string\'));\n -> \'any string\'\nmysql> SELECT UNCOMPRESS(\'any string\');\n -> NULL\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(265,'UNCOMPRESSED_LENGTH',20,'Syntax:\nUNCOMPRESSED_LENGTH(compressed_string)\n\nReturns the length that the compressed string had before being\ncompressed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','mysql> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(\'a\',30)));\n -> 30\n','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(266,'VALIDATE_PASSWORD_STRENGTH',20,'Syntax:\nVALIDATE_PASSWORD_STRENGTH(str)\n\nGiven an argument representing a plaintext 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: https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/encryption-functions.html'),(267,'GET_LOCK',21,'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). Locks obtained with GET_LOCK() are not\nreleased when transactions commit or roll back.\n\nIn MySQL 5.7, GET_LOCK() was reimplemented using the metadata locking\n(MDL) subsystem and its capabilities were extended. Multiple\nsimultaneous locks can be acquired and GET_LOCK() does not release any\nexisting locks.\n\nIt is even possible for a given session to acquire multiple locks for\nthe same name. Other sessions cannot acquire a lock with that name\nuntil the acquiring session releases all its locks for the name.\n\nAs a result of the MDL reimplementation, uniquely named locks acquired\nwith GET_LOCK() appear in the Performance Schema metadata_locks table.\nThe OBJECT_TYPE column says USER LEVEL LOCK and the OBJECT_NAME column\nindicates the lock name. In the case that multiple locks are acquired\nfor the same name, only the first lock for the name registers a row in\nthe metadata_locks table. Subsequent locks for the name increment a\ncounter in the lock but do not acquire additional metadata locks. The\nmetadata_locks row for the lock is deleted when the last lock instance\non the name is released.\n\nThe capability of acquiring multiple locks means there is the\npossibility of deadlock among clients. When this happens, the server\nchooses a caller and terminates its lock-acquisition request with an\nER_USER_LOCK_DEADLOCK\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_user_lock_deadlock) error. This error does not cause\ntransactions to roll back.\n\nBefore MySQL 5.7, only a single simultaneous lock can be acquired and\nGET_LOCK() releases any existing lock. The difference in lock\nacquisition behavior as of MySQL 5.7 can be seen by the following\nexample. Suppose that you execute these statements:\n\nSELECT GET_LOCK(\'lock1\',10);\nSELECT GET_LOCK(\'lock2\',10);\nSELECT RELEASE_LOCK(\'lock2\');\nSELECT RELEASE_LOCK(\'lock1\');\n\nIn MySQL 5.7 or later, the second GET_LOCK() acquires a second lock and\nboth RELEASE_LOCK() calls return 1 (success). Before MySQL 5.7, the\nsecond GET_LOCK() releases the first lock (\'lock1\') and the second\nRELEASE_LOCK() returns NULL (failure) because there is no \'lock1\' to\nrelease.\n\nMySQL 5.7 and later enforces a maximum length on lock names of 64\ncharacters. Previously, no limit was enforced.\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: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(268,'IS_FREE_LOCK',21,'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: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(269,'IS_USED_LOCK',21,'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: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(270,'RELEASE_ALL_LOCKS',21,'Syntax:\nRELEASE_ALL_LOCKS()\n\nReleases all named locks held by the current session and returns the\nnumber of locks released (0 if there were none)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(271,'RELEASE_LOCK',21,'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: https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/locking-functions.html'),(272,'BENCHMARK',22,'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 0, or NULL for inappropriate arguments\nsuch as a NULL or negative repeat count.\n\nThe intended use is from within the mysql client, which reports query\nexecution times:\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(273,'CHARSET',22,'Syntax:\nCHARSET(str)\n\nReturns the character set of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(274,'COERCIBILITY',22,'Syntax:\nCOERCIBILITY(str)\n\nReturns the collation coercibility value of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(275,'COLLATION',22,'Syntax:\nCOLLATION(str)\n\nReturns the collation of the string argument.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT COLLATION(\'abc\');\n -> \'latin1_swedish_ci\'\nmysql> SELECT COLLATION(_utf8\'abc\');\n -> \'utf8_general_ci\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(276,'CONNECTION_ID',22,'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: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT CONNECTION_ID();\n -> 23786\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(277,'CURRENT_USER',22,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(278,'DATABASE',22,'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: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT DATABASE();\n -> \'test\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(279,'FOUND_ROWS',22,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(280,'LAST_INSERT_ID',22,'Syntax:\nLAST_INSERT_ID(), LAST_INSERT_ID(expr)\n\nWith no argument, LAST_INSERT_ID() returns a BIGINT UNSIGNED (64-bit)\nvalue representing the first automatically generated value successfully\ninserted for an AUTO_INCREMENT column as a result of the most recently\nexecuted INSERT statement. 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.\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() remains stable\nin the second statement; its value for the second and later rows is not\naffected by the earlier row insertions. (However, if you mix references\nto LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is undefined.)\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\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 statements following\n them do not see a changed value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(281,'ROW_COUNT',22,'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.\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()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-real-connect.html) when\nconnecting to mysqld, the affected-rows value is the number of rows\n\"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()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-affected-rows.html) C API\nfunction and the row count that the mysql client displays following\nstatement execution.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(282,'SCHEMA',22,'Syntax:\nSCHEMA()\n\nThis function is a synonym for DATABASE().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(283,'SESSION_USER',22,'Syntax:\nSESSION_USER()\n\nSESSION_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(284,'SYSTEM_USER',22,'Syntax:\nSYSTEM_USER()\n\nSYSTEM_USER() is a synonym for USER().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(285,'USER',22,'Syntax:\nUSER()\n\nReturns the current MySQL user name and host name as a string in the\nutf8 character set.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT USER();\n -> \'davida@localhost\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(286,'VERSION',22,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/information-functions.html\n\n','mysql> SELECT VERSION();\n -> \'5.7.34-standard\'\n','https://dev.mysql.com/doc/refman/5.7/en/information-functions.html'),(287,'GEOMCOLLFROMTEXT',24,'GeomCollFromText(wkt [, srid]), GeometryCollectionFromText(wkt [,\nsrid])\n\nST_GeomCollFromText(), ST_GeometryCollectionFromText(),\nST_GeomCollFromTxt(), GeomCollFromText(), and\nGeometryCollectionFromText() are synonyms. For more information, see\nthe description of ST_GeomCollFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(288,'GEOMFROMTEXT',24,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(289,'LINEFROMTEXT',24,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(290,'MLINEFROMTEXT',24,'MLineFromText(wkt [, srid]), MultiLineStringFromText(wkt [, srid])\n\nST_MLineFromText(), ST_MultiLineStringFromText(), MLineFromText(), and\nMultiLineStringFromText() are synonyms. For more information, see the\ndescription of ST_MLineFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(291,'MPOINTFROMTEXT',24,'MPointFromText(wkt [, srid]), MultiPointFromText(wkt [, srid])\n\nST_MPointFromText(), ST_MultiPointFromText(), MPointFromText(), and\nMultiPointFromText() are synonyms. For more information, see the\ndescription of ST_MPointFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(292,'MPOLYFROMTEXT',24,'MPolyFromText(wkt [, srid]), MultiPolygonFromText(wkt [, srid])\n\nST_MPolyFromText(), ST_MultiPolygonFromText(), MPolyFromText(), and\nMultiPolygonFromText() are synonyms. For more information, see the\ndescription of ST_MPolyFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(293,'POINTFROMTEXT',24,'PointFromText(wkt [, srid])\n\nST_PointFromText() and PointFromText() are synonyms. For more\ninformation, see the description of ST_PointFromText().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(294,'POLYFROMTEXT',24,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(295,'ST_GEOMCOLLFROMTEXT',24,'ST_GeomCollFromText(wkt [, srid]), ST_GeometryCollectionFromText(wkt [,\nsrid]), ST_GeomCollFromTxt(wkt [, srid])\n\nConstructs a GeometryCollection value using its WKT representation and\nSRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(296,'ST_GEOMFROMTEXT',24,'ST_GeomFromText(wkt [, srid]), ST_GeometryFromText(wkt [, srid])\n\nConstructs a geometry value of any type using its WKT representation\nand SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(297,'ST_LINEFROMTEXT',24,'ST_LineFromText(wkt [, srid]), ST_LineStringFromText(wkt [, srid])\n\nConstructs a LineString value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(298,'ST_MLINEFROMTEXT',24,'ST_MLineFromText(wkt [, srid]), ST_MultiLineStringFromText(wkt [,\nsrid])\n\nConstructs a MultiLineString value using its WKT representation and\nSRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(299,'ST_MPOINTFROMTEXT',24,'ST_MPointFromText(wkt [, srid]), ST_MultiPointFromText(wkt [, srid])\n\nConstructs a MultiPoint value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nFunctions such as ST_MPointFromText() and ST_GeomFromText() that accept\nWKT-format representations of MultiPoint values permit individual\npoints within values to be surrounded by parentheses. For example, both\nof the following function calls are valid:\n\nST_MPointFromText(\'MULTIPOINT (1 1, 2 2, 3 3)\')\nST_MPointFromText(\'MULTIPOINT ((1 1), (2 2), (3 3))\')\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(300,'ST_MPOLYFROMTEXT',24,'ST_MPolyFromText(wkt [, srid]), ST_MultiPolygonFromText(wkt [, srid])\n\nConstructs a MultiPolygon value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(301,'ST_POINTFROMTEXT',24,'ST_PointFromText(wkt [, srid])\n\nConstructs a Point value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(302,'ST_POLYFROMTEXT',24,'ST_PolyFromText(wkt [, srid]), ST_PolygonFromText(wkt [, srid])\n\nConstructs a Polygon value using its WKT representation and SRID.\n\nIf the geometry argument is NULL or not a syntactically well-formed\ngeometry, or if the SRID argument is NULL, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkt-functions.html'),(303,'GEOMCOLLFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(304,'GEOMFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(305,'LINEFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(306,'MLINEFROMWKB',25,'MLineFromWKB(wkb [, srid]), MultiLineStringFromWKB(wkb [, srid])\n\nST_MLineFromWKB(), ST_MultiLineStringFromWKB(), MLineFromWKB(), and\nMultiLineStringFromWKB() are synonyms. For more information, see the\ndescription of ST_MLineFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(307,'MPOINTFROMWKB',25,'MPointFromWKB(wkb [, srid]), MultiPointFromWKB(wkb [, srid])\n\nST_MPointFromWKB(), ST_MultiPointFromWKB(), MPointFromWKB(), and\nMultiPointFromWKB() are synonyms. For more information, see the\ndescription of ST_MPointFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(308,'MPOLYFROMWKB',25,'MPolyFromWKB(wkb [, srid]), MultiPolygonFromWKB(wkb [, srid])\n\nST_MPolyFromWKB(), ST_MultiPolygonFromWKB(), MPolyFromWKB(), and\nMultiPolygonFromWKB() are synonyms. For more information, see the\ndescription of ST_MPolyFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(309,'POINTFROMWKB',25,'PointFromWKB(wkb [, srid])\n\nST_PointFromWKB() and PointFromWKB() are synonyms. For more\ninformation, see the description of ST_PointFromWKB().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(310,'POLYFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(311,'ST_GEOMCOLLFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(312,'ST_GEOMFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(313,'ST_LINEFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(314,'ST_MLINEFROMWKB',25,'ST_MLineFromWKB(wkb [, srid]), ST_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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(315,'ST_MPOINTFROMWKB',25,'ST_MPointFromWKB(wkb [, srid]), ST_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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(316,'ST_MPOLYFROMWKB',25,'ST_MPolyFromWKB(wkb [, srid]), ST_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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(317,'ST_POINTFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(318,'ST_POLYFROMWKB',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-wkb-functions.html'),(319,'GEOMETRYCOLLECTION',26,'GeometryCollection(g [, g] ...)\n\nConstructs a GeometryCollection value from the geometry arguments.\n\nGeometryCollection() returns all the proper geometries contained in the\narguments even if a nonsupported geometry is present.\n\nGeometryCollection() with no arguments is permitted as a way to create\nan empty geometry.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(320,'LINESTRING',26,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(321,'MULTILINESTRING',26,'MultiLineString(ls [, ls] ...)\n\nConstructs a MultiLineString value using LineString or WKB LineString\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(322,'MULTIPOINT',26,'MultiPoint(pt [, pt2] ...)\n\nConstructs a MultiPoint value using Point or WKB Point arguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(323,'MULTIPOLYGON',26,'MultiPolygon(poly [, poly] ...)\n\nConstructs a MultiPolygon value from a set of Polygon or WKB Polygon\narguments.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(324,'POINT',26,'Point(x, y)\n\nConstructs a Point using its coordinates.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(325,'POLYGON',26,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-mysql-specific-functions.html'),(326,'ASBINARY',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(327,'ASTEXT',25,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(328,'ST_ASBINARY',25,'ST_AsBinary(g), ST_AsWKB(g)\n\nConverts a value in internal geometry format to its WKB representation\nand returns the binary result.\n\nIf the argument is NULL, the return value is NULL. If the argument is\nnot a syntactically well-formed geometry, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html\n\n','SELECT ST_AsBinary(g) FROM geom;\n','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(329,'ST_ASTEXT',25,'ST_AsText(g), ST_AsWKT(g)\n\nConverts a value in internal geometry format to its WKT representation\nand returns the string result.\n\nIf the argument is NULL, the return value is NULL. If the argument is\nnot a syntactically well-formed geometry, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-format-conversion-functions.html'),(330,'DIMENSION',27,'Dimension(g)\n\nST_Dimension() and Dimension() are synonyms. For more information, see\nthe description of ST_Dimension().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(331,'ENVELOPE',27,'Envelope(g)\n\nST_Envelope() and Envelope() are synonyms. For more information, see\nthe description of ST_Envelope().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(332,'GEOMETRYTYPE',27,'GeometryType(g)\n\nST_GeometryType() and GeometryType() are synonyms. For more\ninformation, see the description of ST_GeometryType().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(333,'ISEMPTY',27,'IsEmpty(g)\n\nST_IsEmpty() and IsEmpty() are synonyms. For more information, see the\ndescription of ST_IsEmpty().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(334,'ISSIMPLE',27,'IsSimple(g)\n\nST_IsSimple() and IsSimple() are synonyms. For more information, see\nthe description of ST_IsSimple().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(335,'SRID',27,'SRID(g)\n\nST_SRID() and SRID() are synonyms. For more information, see the\ndescription of ST_SRID().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(336,'ST_DIMENSION',27,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/gis-class-geometry.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(337,'ST_ENVELOPE',27,'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\nmysql> 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\nIf the argument is a point or a vertical or horizontal line segment,\nST_Envelope() returns the point or the line segment as its MBR rather\nthan returning an invalid polygon:\n\nmysql> SELECT ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,1 2)\')));\n+----------------------------------------------------------------+\n| ST_AsText(ST_Envelope(ST_GeomFromText(\'LineString(1 1,1 2)\'))) |\n+----------------------------------------------------------------+\n| LINESTRING(1 1,1 2) |\n+----------------------------------------------------------------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(338,'ST_GEOMETRYTYPE',27,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(339,'ST_ISEMPTY',27,'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: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(340,'ST_ISSIMPLE',27,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/opengis-geometry-model.html\nincludes the specific conditions that cause class instances to be\nclassified as not simple.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(341,'ST_SRID',27,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-general-property-functions.html'),(342,'ST_X',28,'ST_X(p)\n\nReturns the X-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(343,'ST_Y',28,'ST_Y(p)\n\nReturns the Y-coordinate value for the Point object p as a\ndouble-precision number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(344,'X',28,'X(p)\n\nST_X() and X() are synonyms. For more information, see the description\nof ST_X().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(345,'Y',28,'Y(p)\n\nST_Y() and Y() are synonyms. For more information, see the description\nof ST_Y().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-point-property-functions.html'),(346,'ENDPOINT',29,'EndPoint(ls)\n\nST_EndPoint() and EndPoint() are synonyms. For more information, see\nthe description of ST_EndPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(347,'GLENGTH',29,'GLength(ls)\n\nGLength() is a nonstandard name. It corresponds to the OpenGIS\nST_Length() function. (There is an existing SQL function Length() that\ncalculates the length of string values.)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(348,'ISCLOSED',29,'IsClosed(ls)\n\nST_IsClosed() and IsClosed() are synonyms. For more information, see\nthe description of ST_IsClosed().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(349,'NUMPOINTS',29,'NumPoints(ls)\n\nST_NumPoints() and NumPoints() are synonyms. For more information, see\nthe description of ST_NumPoints().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(350,'POINTN',29,'PointN(ls, N)\n\nST_PointN() and PointN() are synonyms. For more information, see the\ndescription of ST_PointN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(351,'ST_ENDPOINT',29,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(352,'ST_ISCLOSED',29,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(353,'ST_LENGTH',29,'ST_Length(ls)\n\nReturns a double-precision number indicating the length of the\nLineString or MultiLineString value ls in its associated spatial\nreference system. The length of a MultiLineString value is equal to the\nsum of the lengths of its elements. If the argument is NULL or an empty\ngeometry, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','mysql> SET @ls = \'LineString(1 1,2 2,3 3)\';\nmysql> SELECT ST_Length(ST_GeomFromText(@ls));\n+---------------------------------+\n| ST_Length(ST_GeomFromText(@ls)) |\n+---------------------------------+\n| 2.8284271247461903 |\n+---------------------------------+\n\nmysql> SET @mls = \'MultiLineString((1 1,2 2,3 3),(4 4,5 5))\';\nmysql> SELECT ST_Length(ST_GeomFromText(@mls));\n+----------------------------------+\n| ST_Length(ST_GeomFromText(@mls)) |\n+----------------------------------+\n| 4.242640687119286 |\n+----------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(354,'ST_NUMPOINTS',29,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(355,'ST_POINTN',29,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(356,'ST_STARTPOINT',29,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(357,'STARTPOINT',29,'StartPoint(ls)\n\nST_StartPoint() and StartPoint() are synonyms. For more information,\nsee the description of ST_StartPoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-linestring-property-functions.html'),(358,'AREA',30,'Area({poly|mpoly})\n\nST_Area() and Area() are synonyms. For more information, see the\ndescription of ST_Area().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(359,'CENTROID',30,'Centroid({poly|mpoly})\n\nST_Centroid() and Centroid() are synonyms. For more information, see\nthe description of ST_Centroid().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(360,'EXTERIORRING',30,'ExteriorRing(poly)\n\nST_ExteriorRing() and ExteriorRing() are synonyms. For more\ninformation, see the description of ST_ExteriorRing().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(361,'INTERIORRINGN',30,'InteriorRingN(poly, N)\n\nST_InteriorRingN() and InteriorRingN() are synonyms. For more\ninformation, see the description of ST_InteriorRingN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(362,'NUMINTERIORRINGS',30,'NumInteriorRings(poly)\n\nST_NumInteriorRings() and NumInteriorRings() are synonyms. For more\ninformation, see the description of ST_NumInteriorRings().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(363,'ST_AREA',30,'ST_Area({poly|mpoly})\n\nReturns a double-precision number indicating the area of the Polygon or\nMultiPolygon argument, as measured in its spatial reference system. For\narguments of dimension 0 or 1, the result is 0. If the argument is an\nempty geometry the return value is 0. If the argument is NULL the\nreturn value is NULL.\n\nThe result is the sum of the area values of all components for a\ngeometry collection. If a geometry collection is empty, its area is\nreturned as 0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(364,'ST_CENTROID',30,'ST_Centroid({poly|mpoly})\n\nReturns the mathematical centroid for the Polygon or MultiPolygon\nargument as a Point. The result is not guaranteed to be on the\nMultiPolygon. If the argument is NULL or an empty geometry, the return\nvalue is NULL.\n\nThis function processes geometry collections by computing the centroid\npoint for components of highest dimension in the collection. Such\ncomponents are extracted and made into a single MultiPolygon,\nMultiLineString, or MultiPoint for centroid computation. If the\nargument is an empty geometry collection, the return value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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 ST_GeometryType(@poly),ST_AsText(ST_Centroid(@poly));\n+------------------------+--------------------------------------------+\n| ST_GeometryType(@poly) | ST_AsText(ST_Centroid(@poly)) |\n+------------------------+--------------------------------------------+\n| POLYGON | POINT(4.958333333333333 4.958333333333333) |\n+------------------------+--------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(365,'ST_EXTERIORRING',30,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(366,'ST_INTERIORRINGN',30,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(367,'ST_NUMINTERIORRINGS',30,'ST_NumInteriorRing(poly), 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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-polygon-property-functions.html'),(368,'GEOMETRYN',31,'GeometryN(gc, N)\n\nST_GeometryN() and GeometryN() are synonyms. For more information, see\nthe description of ST_GeometryN().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(369,'NUMGEOMETRIES',31,'NumGeometries(gc)\n\nST_NumGeometries() and NumGeometries() are synonyms. For more\ninformation, see the description of ST_NumGeometries().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(370,'ST_GEOMETRYN',31,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(371,'ST_NUMGEOMETRIES',31,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gis-geometrycollection-property-functions.html'),(372,'BUFFER',31,'Buffer(g, d [, strategy1 [, strategy2 [, strategy3]]])\n\nST_Buffer() and Buffer() are synonyms. For more information, see the\ndescription of ST_Buffer().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(373,'CONVEXHULL',31,'ConvexHull(g)\n\nST_ConvexHull() and ConvexHull() are synonyms. For more information,\nsee the description of ST_ConvexHull().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(374,'ST_BUFFER',31,'ST_Buffer(g, d [, strategy1 [, strategy2 [, strategy3]]])\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. The SRID of the geometry argument must be 0\nbecause ST_Buffer() supports only the Cartesian coordinate system. If\nany geometry argument is not a syntactically well-formed geometry, an\nER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nIf the geometry argument is empty, ST_Buffer() returns an empty\ngeometry.\n\nIf the distance is 0, ST_Buffer() returns the geometry argument\nunchanged:\n\nmysql> SET @pt = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SELECT ST_AsText(ST_Buffer(@pt, 0));\n+------------------------------+\n| ST_AsText(ST_Buffer(@pt, 0)) |\n+------------------------------+\n| POINT(0 0) |\n+------------------------------+\n\nST_Buffer() supports negative distances for Polygon and MultiPolygon\nvalues, and for geometry collections containing Polygon or MultiPolygon\nvalues. The result may be an empty geometry. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs for ST_Buffer() with a\nnegative distance for Point, MultiPoint, LineString, and\nMultiLineString values, and for geometry collections not containing any\nPolygon or MultiPolygon values.\n\nST_Buffer() permits up to three optional strategy arguments following\nthe distance argument. Strategies influence buffer computation. These\narguments are byte string values produced by the ST_Buffer_Strategy()\nfunction, to be used for point, join, and end strategies:\n\no Point strategies apply to Point and MultiPoint geometries. If no\n point strategy is specified, the default is\n ST_Buffer_Strategy(\'point_circle\', 32).\n\no Join strategies apply to LineString, MultiLineString, Polygon, and\n MultiPolygon geometries. If no join strategy is specified, the\n default is ST_Buffer_Strategy(\'join_round\', 32).\n\no End strategies apply to LineString and MultiLineString geometries. If\n no end strategy is specified, the default is\n ST_Buffer_Strategy(\'end_round\', 32).\n\nUp to one strategy of each type may be specified, and they may be given\nin any order. If multiple strategies of a given type are specified, an\nER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @pt = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt_strategy = ST_Buffer_Strategy(\'point_square\');\nmysql> SELECT ST_AsText(ST_Buffer(@pt, 2, @pt_strategy));\n+--------------------------------------------+\n| ST_AsText(ST_Buffer(@pt, 2, @pt_strategy)) |\n+--------------------------------------------+\n| POLYGON((-2 -2,2 -2,2 2,-2 2,-2 -2)) |\n+--------------------------------------------+\n\nmysql> SET @ls = ST_GeomFromText(\'LINESTRING(0 0,0 5,5 5)\');\nmysql> SET @end_strategy = ST_Buffer_Strategy(\'end_flat\');\nmysql> SET @join_strategy = ST_Buffer_Strategy(\'join_round\', 10);\nmysql> SELECT ST_AsText(ST_Buffer(@ls, 5, @end_strategy, @join_strategy))\n+---------------------------------------------------------------+\n| ST_AsText(ST_Buffer(@ls, 5, @end_strategy, @join_strategy)) |\n+---------------------------------------------------------------+\n| POLYGON((5 5,5 10,0 10,-3.5355339059327373 8.535533905932738, |\n| -5 5,-5 0,0 0,5 0,5 5)) |\n+---------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(375,'ST_BUFFER_STRATEGY',31,'ST_Buffer_Strategy(strategy [, points_per_circle])\n\nThis function returns a strategy byte string for use with ST_Buffer()\nto influence buffer computation. If any argument is NULL, the return\nvalue is NULL. If any argument is invalid, an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs.\n\nInformation about strategies is available at Boost.org\n(http://www.boost.org).\n\nThe first argument must be a string indicating a strategy option:\n\no For point strategies, permitted values are \'point_circle\' and\n \'point_square\'.\n\no For join strategies, permitted values are \'join_round\' and\n \'join_miter\'.\n\no For end strategies, permitted values are \'end_round\' and \'end_flat\'.\n\nIf the first argument is \'point_circle\', \'join_round\', \'join_miter\', or\n\'end_round\', the points_per_circle argument must be given as a positive\nnumeric value. The maximum points_per_circle value is the value of the\nmax_points_in_geometry system variable. If the first argument is\n\'point_square\' or \'end_flat\', the points_per_circle argument must not\nbe given or an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs.\n\nFor examples, see the description of ST_Buffer().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(376,'ST_CONVEXHULL',31,'ST_ConvexHull(g)\n\nReturns a geometry that represents the convex hull of the geometry\nvalue g. If the argument is NULL, the return value is NULL.\n\nThis function computes a geometry\'s convex hull by first checking\nwhether its vertex points are colinear. The function returns a linear\nhull if so, a polygon hull otherwise. This function processes geometry\ncollections by extracting all vertex points of all components of the\ncollection, creating a MultiPoint value from them, and computing its\nconvex hull. If the argument is an empty geometry collection, the\nreturn value is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html\n\n','mysql> SET @g = \'MULTIPOINT(5 0,25 0,15 10,15 25)\';\nmysql> SELECT ST_AsText(ST_ConvexHull(ST_GeomFromText(@g)));\n+-----------------------------------------------+\n| ST_AsText(ST_ConvexHull(ST_GeomFromText(@g))) |\n+-----------------------------------------------+\n| POLYGON((5 0,25 0,15 25,5 0)) |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(377,'ST_DIFFERENCE',31,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(378,'ST_INTERSECTION',31,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(379,'ST_SYMDIFFERENCE',31,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(380,'ST_UNION',31,'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: https://dev.mysql.com/doc/refman/5.7/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),(1 3,3 1)) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-operator-functions.html'),(381,'CROSSES',32,'Crosses(g1, g2)\n\nST_Crosses() and Crosses() are synonyms. For more information, see the\ndescription of ST_Crosses().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(382,'DISTANCE',32,'Distance(g1, g2)\n\nST_Distance() and Distance() are synonyms. For more information, see\nthe description of ST_Distance().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(383,'ST_CONTAINS',32,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(384,'ST_CROSSES',32,'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\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if the first\nargument is a Polygon or MultiPolygon and/or the second argument is a\nPoint or MultiPoint.\n\nReturns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon\nor a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise,\nreturns 0.\n\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if the first\nargument is a Polygon or MultiPolygon and/or the second argument is a\nPoint or MultiPoint.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(385,'ST_DISJOINT',32,'ST_Disjoint(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially disjoint from (does\nnot intersect) g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(386,'ST_DISTANCE',32,'ST_Distance(g1, g2)\n\nReturns the distance between g1 and g2. If either argument is NULL or\nan empty geometry, the return value is NULL.\n\nThis function processes geometry collections by returning the shortest\ndistance among all combinations of the components of the two geometry\narguments.\n\nIf an intermediate or final result produces NaN or a negative number,\nan ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(387,'ST_EQUALS',32,'ST_Equals(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 is spatially equal to g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(388,'ST_INTERSECTS',32,'ST_Intersects(g1, g2)\n\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(389,'ST_OVERLAPS',32,'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\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if called with\ngeometries of different dimensions or any argument is a Point.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(390,'ST_TOUCHES',32,'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\nThis function returns 0 if called with an inapplicable geometry\nargument type combination. For example, it returns 0 if either of the\narguments is a Point or MultiPoint.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(391,'ST_WITHIN',32,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(392,'TOUCHES',32,'Touches(g1, g2)\n\nST_Touches() and Touches() are synonyms. For more information, see the\ndescription of ST_Touches().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-object-shapes.html'),(393,'MBRCONTAINS',33,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(394,'MBRCOVEREDBY',33,'MBRCoveredBy(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\nis covered by the minimum bounding rectangle of g2. This tests the\nopposite relationship as MBRCovers().\n\nMBRCoveredBy() handles its arguments as follows:\n\no If either argument is NULL or an empty geometry, the return value is\n NULL.\n\no If either argument is not a syntactically well-formed geometry byte\n string, an ER_GIS_INVALID_DATA\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_gis_invalid_data) error occurs.\n\no Otherwise, the return value is non-NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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 MBRCovers(@g1,@g2), MBRCoveredby(@g1,@g2);\n+--------------------+-----------------------+\n| MBRCovers(@g1,@g2) | MBRCoveredby(@g1,@g2) |\n+--------------------+-----------------------+\n| 1 | 0 |\n+--------------------+-----------------------+\nmysql> SELECT MBRCovers(@g2,@g1), MBRCoveredby(@g2,@g1);\n+--------------------+-----------------------+\n| MBRCovers(@g2,@g1) | MBRCoveredby(@g2,@g1) |\n+--------------------+-----------------------+\n| 0 | 1 |\n+--------------------+-----------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(395,'MBRCOVERS',33,'MBRCovers(g1, g2)\n\nReturns 1 or 0 to indicate whether the minimum bounding rectangle of g1\ncovers the minimum bounding rectangle of g2. This tests the opposite\nrelationship as MBRCoveredBy(). See the description of MBRCoveredBy()\nfor examples.\n\nMBRCovers() handles its arguments as follows:\n\no If either argument is NULL or an empty geometry, the return value is\n NULL.\n\no If either argument is not a syntactically well-formed geometry byte\n string, an ER_GIS_INVALID_DATA\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_gis_invalid_data) error occurs.\n\no Otherwise, the return value is non-NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(396,'MBRDISJOINT',33,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(397,'MBREQUAL',33,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(398,'MBREQUALS',33,'MBREquals(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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(399,'MBRINTERSECTS',33,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(400,'MBROVERLAPS',33,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(401,'MBRTOUCHES',33,'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: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(402,'MBRWITHIN',33,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(403,'CONTAINS',33,'Contains(g1, g2)\n\nMBRContains() and Contains() are synonyms. For more information, see\nthe description of MBRContains().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(404,'DISJOINT',33,'Disjoint(g1, g2)\n\nMBRDisjoint() and Disjoint() are synonyms. For more information, see\nthe description of MBRDisjoint().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(405,'EQUALS',33,'Equals(g1, g2)\n\nMBREquals() and Equals() are synonyms. For more information, see the\ndescription of MBREquals().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(406,'INTERSECTS',33,'Intersects(g1, g2)\n\nMBRIntersects() and Intersects() are synonyms. For more information,\nsee the description of MBRIntersects().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(407,'OVERLAPS',33,'Overlaps(g1, g2)\n\nMBROverlaps() and Overlaps() are synonyms. For more information, see\nthe description of MBROverlaps().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(408,'WITHIN',33,'Within(g1, g2)\n\nMBRWithin() and Within() are synonyms. For more information, see the\ndescription of MBRWithin().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/spatial-relation-functions-mbr.html'),(409,'ST_GEOHASH',33,'ST_GeoHash(longitude, latitude, max_length), ST_GeoHash(point,\nmax_length)\n\nReturns a geohash string in the connection character set and collation.\n\nIf any argument is NULL, the return value is NULL. If any argument is\ninvalid, an error occurs.\n\nFor the first syntax, the longitude must be a number in the range\n[−180, 180], and the latitude must be a number in the range [−90,\n90]. For the second syntax, a POINT value is required, where the X and\nY coordinates are in the valid ranges for longitude and latitude,\nrespectively.\n\nThe resulting string is no longer than max_length characters, which has\nan upper limit of 100. The string might be shorter than max_length\ncharacters because the algorithm that creates the geohash value\ncontinues until it has created a string that is either an exact\nrepresentation of the location or max_length characters, whichever\ncomes first.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_GeoHash(180,0,10), ST_GeoHash(-180,-90,15);\n+----------------------+-------------------------+\n| ST_GeoHash(180,0,10) | ST_GeoHash(-180,-90,15) |\n+----------------------+-------------------------+\n| xbpbpbpbpb | 000000000000000 |\n+----------------------+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(410,'ST_LATFROMGEOHASH',33,'ST_LatFromGeoHash(geohash_str)\n\nReturns the latitude from a geohash string value, as a DOUBLE value in\nthe range [−90, 90].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe ST_LatFromGeoHash() decoding function reads no more than 433\ncharacters from the geohash_str argument. That represents the upper\nlimit on information in the internal representation of coordinate\nvalues. Characters past the 433rd are ignored, even if they are\notherwise illegal and produce an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LatFromGeoHash(ST_GeoHash(45,-20,10));\n+------------------------------------------+\n| ST_LatFromGeoHash(ST_GeoHash(45,-20,10)) |\n+------------------------------------------+\n| -20 |\n+------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(411,'ST_LONGFROMGEOHASH',33,'ST_LongFromGeoHash(geohash_str)\n\nReturns the longitude from a geohash string value, as a DOUBLE value in\nthe range [−180, 180].\n\nIf the argument is NULL, the return value is NULL. If the argument is\ninvalid, an error occurs.\n\nThe remarks in the description of ST_LatFromGeoHash() regarding the\nmaximum number of characters processed from the geohash_str argument\nalso apply to ST_LongFromGeoHash().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SELECT ST_LongFromGeoHash(ST_GeoHash(45,-20,10));\n+-------------------------------------------+\n| ST_LongFromGeoHash(ST_GeoHash(45,-20,10)) |\n+-------------------------------------------+\n| 45 |\n+-------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(412,'ST_POINTFROMGEOHASH',33,'ST_PointFromGeoHash(geohash_str, srid)\n\nReturns a POINT value containing the decoded geohash value, given a\ngeohash string value.\n\nThe X and Y coordinates of the point are the longitude in the range\n[−180, 180] and the latitude in the range [−90, 90], respectively.\n\nIf any argument is NULL, the return value is NULL. If any argument is\ninvalid, an error occurs.\n\nThe srid argument is an unsigned 32-bit integer.\n\nThe remarks in the description of ST_LatFromGeoHash() regarding the\nmaximum number of characters processed from the geohash_str argument\nalso apply to ST_PointFromGeoHash().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html\n\n','mysql> SET @gh = ST_GeoHash(45,-20,10);\nmysql> SELECT ST_AsText(ST_PointFromGeoHash(@gh,0));\n+---------------------------------------+\n| ST_AsText(ST_PointFromGeoHash(@gh,0)) |\n+---------------------------------------+\n| POINT(45 -20) |\n+---------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geohash-functions.html'),(413,'ST_ASGEOJSON',33,'ST_AsGeoJSON(g [, max_dec_digits [, options]])\n\nGenerates a GeoJSON object from the geometry g. The object string has\nthe connection character set and collation.\n\nIf any argument is NULL, the return value is NULL. If any non-NULL\nargument is invalid, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html\n\n','mysql> SELECT ST_AsGeoJSON(ST_GeomFromText(\'POINT(11.11111 12.22222)\'),2);\n+-------------------------------------------------------------+\n| ST_AsGeoJSON(ST_GeomFromText(\'POINT(11.11111 12.22222)\'),2) |\n+-------------------------------------------------------------+\n| {\"type\": \"Point\", \"coordinates\": [11.11, 12.22]} |\n+-------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html'),(414,'ST_GEOMFROMGEOJSON',33,'ST_GeomFromGeoJSON(str [, options [, srid]])\n\nParses a string str representing a GeoJSON object and returns a\ngeometry.\n\nIf any argument is NULL, the return value is NULL. If any non-NULL\nargument is invalid, an error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html\n\n','mysql> SET @json = \'{ \"type\": \"Point\", \"coordinates\": [102.0, 0.0]}\';\nmysql> SELECT ST_AsText(ST_GeomFromGeoJSON(@json));\n+--------------------------------------+\n| ST_AsText(ST_GeomFromGeoJSON(@json)) |\n+--------------------------------------+\n| POINT(102 0) |\n+--------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-geojson-functions.html'),(415,'ST_DISTANCE_SPHERE',33,'ST_Distance_Sphere(g1, g2 [, radius])\n\nReturns the mimimum spherical distance between two points and/or\nmultipoints on a sphere, in meters, or NULL if any geometry argument is\nNULL or empty.\n\nCalculations use a spherical earth and a configurable radius. The\noptional radius argument should be given in meters. If omitted, the\ndefault radius is 6,370,986 meters. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs if the radius argument is\npresent but not positive.\n\nThe geometry arguments should consist of points that specify\n(longitude, latitude) coordinate values:\n\no Longitude and latitude are the first and second coordinates of the\n point, respectively.\n\no Both coordinates are in degrees.\n\no Longitude values must be in the range (-180, 180]. Positive values\n are east of the prime meridian.\n\no Latitude values must be in the range [-90, 90]. Positive values are\n north of the equator.\n\nSupported argument combinations are (Point, Point), (Point,\nMultiPoint), and (MultiPoint, Point). An ER_GIS_UNSUPPORTED_ARGUMENT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_unsupported_argument) error occurs for other\ncombinations.\n\nIf any geometry argument is not a syntactically well-formed geometry\nbyte string, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @pt1 = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt2 = ST_GeomFromText(\'POINT(180 0)\');\nmysql> SELECT ST_Distance_Sphere(@pt1, @pt2);\n+--------------------------------+\n| ST_Distance_Sphere(@pt1, @pt2) |\n+--------------------------------+\n| 20015042.813723423 |\n+--------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(416,'ST_ISVALID',33,'ST_IsValid(g)\n\nReturns 1 if the argument is syntactically well-formed and is\ngeometrically valid, 0 if the argument is not syntactically well-formed\nor is not geometrically valid. If the argument is NULL, the return\nvalue is NULL. Geometry validity is defined by the OGC specification.\n\nThe only valid empty geometry is represented in the form of an empty\ngeometry collection value. ST_IsValid() returns 1 in this case.\n\nST_IsValid() works only for the Cartesian coordinate system and\nrequires a geometry argument with an SRID of 0. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @ls1 = ST_GeomFromText(\'LINESTRING(0 0,-0.00 0,0.0 0)\');\nmysql> SET @ls2 = ST_GeomFromText(\'LINESTRING(0 0, 1 1)\');\nmysql> SELECT ST_IsValid(@ls1);\n+------------------+\n| ST_IsValid(@ls1) |\n+------------------+\n| 0 |\n+------------------+\nmysql> SELECT ST_IsValid(@ls2);\n+------------------+\n| ST_IsValid(@ls2) |\n+------------------+\n| 1 |\n+------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(417,'ST_MAKEENVELOPE',33,'ST_MakeEnvelope(pt1, pt2)\n\nReturns the rectangle that forms the envelope around two points, as a\nPoint, LineString, or Polygon. If any argument is NULL, the return\nvalue is NULL.\n\nCalculations are done using the Cartesian coordinate system rather than\non a sphere, spheroid, or on earth.\n\nGiven two points pt1 and pt2, ST_MakeEnvelope() creates the result\ngeometry on an abstract plane like this:\n\no If pt1 and pt2 are equal, the result is the point pt1.\n\no Otherwise, if (pt1, pt2) is a vertical or horizontal line segment,\n the result is the line segment (pt1, pt2).\n\no Otherwise, the result is a polygon using pt1 and pt2 as diagonal\n points.\n\nThe result geometry has an SRID of 0.\n\nST_MakeEnvelope() requires Point geometry arguments with an SRID of 0.\nAn ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs otherwise.\n\nIf any argument is not a syntactically well-formed geometry byte\nstring, or if any coordinate value of the two points is infinite or\nNaN, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @pt1 = ST_GeomFromText(\'POINT(0 0)\');\nmysql> SET @pt2 = ST_GeomFromText(\'POINT(1 1)\');\nmysql> SELECT ST_AsText(ST_MakeEnvelope(@pt1, @pt2));\n+----------------------------------------+\n| ST_AsText(ST_MakeEnvelope(@pt1, @pt2)) |\n+----------------------------------------+\n| POLYGON((0 0,1 0,1 1,0 1,0 0)) |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(418,'ST_SIMPLIFY',33,'ST_Simplify(g, max_distance)\n\nSimplifies a geometry using the Douglas-Peucker algorithm and returns a\nsimplified value of the same type. If any argument is NULL, the return\nvalue is NULL.\n\nThe geometry may be any geometry type, although the Douglas-Peucker\nalgorithm may not actually process every type. A geometry collection is\nprocessed by giving its components one by one to the simplification\nalgorithm, and the returned geometries are put into a geometry\ncollection as result.\n\nThe max_distance argument is the distance (in units of the input\ncoordinates) of a vertex to other segments to be removed. Vertices\nwithin this distance of the simplified linestring are removed. If the\nmax_distance argument is not positive, or is NaN, an ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs.\n\nAccording to Boost.Geometry, geometries might become invalid as a\nresult of the simplification process, and the process might create\nself-intersections. To check the validity of the result, pass it to\nST_IsValid().\n\nIf the geometry argument is not a syntactically well-formed geometry\nbyte string, an ER_GIS_INVALID_DATA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_gis_invalid_data) error occurs.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @g = ST_GeomFromText(\'LINESTRING(0 0,0 1,1 1,1 2,2 2,2 3,3 3)\');\nmysql> SELECT ST_AsText(ST_Simplify(@g, 0.5));\n+---------------------------------+\n| ST_AsText(ST_Simplify(@g, 0.5)) |\n+---------------------------------+\n| LINESTRING(0 0,0 1,1 1,2 3,3 3) |\n+---------------------------------+\nmysql> SELECT ST_AsText(ST_Simplify(@g, 1.0));\n+---------------------------------+\n| ST_AsText(ST_Simplify(@g, 1.0)) |\n+---------------------------------+\n| LINESTRING(0 0,3 3) |\n+---------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(419,'ST_VALIDATE',33,'ST_Validate(g)\n\nValidates a geometry according to the OGC specification. A geometry can\nbe syntactically well-formed (WKB value plus SRID) but geometrically\ninvalid. For example, this polygon is geometrically invalid: POLYGON((0\n0, 0 0, 0 0, 0 0, 0 0))\n\nST_Validate() returns the geometry if it is syntactically well-formed\nand is geometrically valid, NULL if the argument is not syntactically\nwell-formed or is not geometrically valid or is NULL.\n\nST_Validate() can be used to filter out invalid geometry data, although\nat a cost. For applications that require more precise results not\ntainted by invalid data, this penalty may be worthwhile.\n\nIf the geometry argument is valid, it is returned as is, except that if\nan input Polygon or MultiPolygon has clockwise rings, those rings are\nreversed before checking for validity. If the geometry is valid, the\nvalue with the reversed rings is returned.\n\nThe only valid empty geometry is represented in the form of an empty\ngeometry collection value. ST_Validate() returns it directly without\nfurther checks in this case.\n\nST_Validate() works only for the Cartesian coordinate system and\nrequires a geometry argument with an SRID of 0. An ER_WRONG_ARGUMENTS\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_wrong_arguments) error occurs otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html\n\n','mysql> SET @ls1 = ST_GeomFromText(\'LINESTRING(0 0)\');\nmysql> SET @ls2 = ST_GeomFromText(\'LINESTRING(0 0, 1 1)\');\nmysql> SELECT ST_AsText(ST_Validate(@ls1));\n+------------------------------+\n| ST_AsText(ST_Validate(@ls1)) |\n+------------------------------+\n| NULL |\n+------------------------------+\nmysql> SELECT ST_AsText(ST_Validate(@ls2));\n+------------------------------+\n| ST_AsText(ST_Validate(@ls2)) |\n+------------------------------+\n| LINESTRING(0 0,1 1) |\n+------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/spatial-convenience-functions.html'),(420,'JSON_ARRAY',33,'Syntax:\nJSON_ARRAY([val[, val] ...])\n\nEvaluates a (possibly empty) list of values and returns a JSON array\ncontaining those values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_ARRAY(1, \"abc\", NULL, TRUE, CURTIME());\n+---------------------------------------------+\n| JSON_ARRAY(1, \"abc\", NULL, TRUE, CURTIME()) |\n+---------------------------------------------+\n| [1, \"abc\", null, true, \"11:30:24.000000\"] |\n+---------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(421,'JSON_OBJECT',33,'Syntax:\nJSON_OBJECT([key, val[, key, val] ...])\n\nEvaluates a (possibly empty) list of key-value pairs and returns a JSON\nobject containing those pairs. An error occurs if any key name is NULL\nor the number of arguments is odd.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_OBJECT(\'id\', 87, \'name\', \'carrot\');\n+-----------------------------------------+\n| JSON_OBJECT(\'id\', 87, \'name\', \'carrot\') |\n+-----------------------------------------+\n| {\"id\": 87, \"name\": \"carrot\"} |\n+-----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(422,'JSON_QUOTE',33,'Syntax:\nJSON_QUOTE(string)\n\nQuotes a string as a JSON value by wrapping it with double quote\ncharacters and escaping interior quote and other characters, then\nreturning the result as a utf8mb4 string. Returns NULL if the argument\nis NULL.\n\nThis function is typically used to produce a valid JSON string literal\nfor inclusion within a JSON document.\n\nCertain special characters are escaped with backslashes per the escape\nsequences shown in\nhttps://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.htm\nl#json-unquote-character-escape-sequences.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html\n\n','mysql> SELECT JSON_QUOTE(\'null\'), JSON_QUOTE(\'\"null\"\');\n+--------------------+----------------------+\n| JSON_QUOTE(\'null\') | JSON_QUOTE(\'\"null\"\') |\n+--------------------+----------------------+\n| \"null\" | \"\\\"null\\\"\" |\n+--------------------+----------------------+\nmysql> SELECT JSON_QUOTE(\'[1, 2, 3]\');\n+-------------------------+\n| JSON_QUOTE(\'[1, 2, 3]\') |\n+-------------------------+\n| \"[1, 2, 3]\" |\n+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-creation-functions.html'),(423,'JSON_CONTAINS',33,'Syntax:\nJSON_CONTAINS(target, candidate[, path])\n\nIndicates by returning 1 or 0 whether a given candidate JSON document\nis contained within a target JSON document, or---if a path argument was\nsupplied---whether the candidate is found at a specific path within the\ntarget. Returns NULL if any argument is NULL, or if the path argument\ndoes not identify a section of the target document. An error occurs if\ntarget or candidate is not a valid JSON document, or if the path\nargument is not a valid path expression or contains a * or ** wildcard.\n\nTo check only whether any data exists at the path, use\nJSON_CONTAINS_PATH() instead.\n\nThe following rules define containment:\n\no A candidate scalar is contained in a target scalar if and only if\n they are comparable and are equal. Two scalar values are comparable\n if they have the same JSON_TYPE() types, with the exception that\n values of types INTEGER and DECIMAL are also comparable to each\n other.\n\no A candidate array is contained in a target array if and only if every\n element in the candidate is contained in some element of the target.\n\no A candidate nonarray is contained in a target array if and only if\n the candidate is contained in some element of the target.\n\no A candidate object is contained in a target object if and only if for\n each key in the candidate there is a key with the same name in the\n target and the value associated with the candidate key is contained\n in the value associated with the target key.\n\nOtherwise, the candidate value is not contained in the target document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'{\"a\": 1, \"b\": 2, \"c\": {\"d\": 4}}\';\nmysql> SET @j2 = \'1\';\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.a\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.a\') |\n+-------------------------------+\n| 1 |\n+-------------------------------+\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.b\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.b\') |\n+-------------------------------+\n| 0 |\n+-------------------------------+\n\nmysql> SET @j2 = \'{\"d\": 4}\';\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.a\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.a\') |\n+-------------------------------+\n| 0 |\n+-------------------------------+\nmysql> SELECT JSON_CONTAINS(@j, @j2, \'$.c\');\n+-------------------------------+\n| JSON_CONTAINS(@j, @j2, \'$.c\') |\n+-------------------------------+\n| 1 |\n+-------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(424,'JSON_CONTAINS_PATH',33,'Syntax:\nJSON_CONTAINS_PATH(json_doc, one_or_all, path[, path] ...)\n\nReturns 0 or 1 to indicate whether a JSON document contains data at a\ngiven path or paths. Returns NULL if any argument is NULL. An error\noccurs if the json_doc argument is not a valid JSON document, any path\nargument is not a valid path expression, or one_or_all is not \'one\' or\n\'all\'.\n\nTo check for a specific value at a path, use JSON_CONTAINS() instead.\n\nThe return value is 0 if no specified path exists within the document.\nOtherwise, the return value depends on the one_or_all argument:\n\no \'one\': 1 if at least one path exists within the document, 0\n otherwise.\n\no \'all\': 1 if all paths exist within the document, 0 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'{\"a\": 1, \"b\": 2, \"c\": {\"d\": 4}}\';\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.a\', \'$.e\');\n+---------------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.a\', \'$.e\') |\n+---------------------------------------------+\n| 1 |\n+---------------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'all\', \'$.a\', \'$.e\');\n+---------------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'all\', \'$.a\', \'$.e\') |\n+---------------------------------------------+\n| 0 |\n+---------------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.c.d\');\n+----------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.c.d\') |\n+----------------------------------------+\n| 1 |\n+----------------------------------------+\nmysql> SELECT JSON_CONTAINS_PATH(@j, \'one\', \'$.a.d\');\n+----------------------------------------+\n| JSON_CONTAINS_PATH(@j, \'one\', \'$.a.d\') |\n+----------------------------------------+\n| 0 |\n+----------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(425,'JSON_EXTRACT',33,'Syntax:\nJSON_EXTRACT(json_doc, path[, path] ...)\n\nReturns data from a JSON document, selected from the parts of the\ndocument matched by the path arguments. Returns NULL if any argument is\nNULL or no paths locate a value in the document. An error occurs if the\njson_doc argument is not a valid JSON document or any path argument is\nnot a valid path expression.\n\nThe return value consists of all values matched by the path arguments.\nIf it is possible that those arguments could return multiple values,\nthe matched values are autowrapped as an array, in the order\ncorresponding to the paths that produced them. Otherwise, the return\nvalue is the single matched value.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\');\n+--------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\') |\n+--------------------------------------------+\n| 20 |\n+--------------------------------------------+\nmysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\', \'$[0]\');\n+----------------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[1]\', \'$[0]\') |\n+----------------------------------------------------+\n| [20, 10] |\n+----------------------------------------------------+\nmysql> SELECT JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[2][*]\');\n+-----------------------------------------------+\n| JSON_EXTRACT(\'[10, 20, [30, 40]]\', \'$[2][*]\') |\n+-----------------------------------------------+\n| [30, 40] |\n+-----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(426,'->',33,'Syntax:\ncolumn->path\n\nIn MySQL 5.7.9 and later, the -> operator serves as an alias for the\nJSON_EXTRACT() function when used with two arguments, a column\nidentifier on the left and a JSON path on the right that is evaluated\nagainst the JSON document (the column value). You can use such\nexpressions in place of column identifiers wherever they occur in SQL\nstatements.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT c, JSON_EXTRACT(c, \"$.id\"), g\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY JSON_EXTRACT(c, \"$.name\");\n+-------------------------------+-----------+------+\n| c | c->\"$.id\" | g |\n+-------------------------------+-----------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 |\n+-------------------------------+-----------+------+\n3 rows in set (0.00 sec)\n\nmysql> SELECT c, c->\"$.id\", g\n > FROM jemp\n > WHERE c->\"$.id\" > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+\n| c | c->\"$.id\" | g |\n+-------------------------------+-----------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 |\n+-------------------------------+-----------+------+\n3 rows in set (0.00 sec)\n\nmysql> ALTER TABLE jemp ADD COLUMN n INT;\nQuery OK, 0 rows affected (0.68 sec)\nRecords: 0 Duplicates: 0 Warnings: 0\n\nmysql> UPDATE jemp SET n=1 WHERE c->\"$.id\" = \"4\";\nQuery OK, 1 row affected (0.04 sec)\nRows matched: 1 Changed: 1 Warnings: 0\n\nmysql> SELECT c, c->\"$.id\", g, n\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+------+\n| c | c->\"$.id\" | g | n |\n+-------------------------------+-----------+------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 | NULL |\n| {\"id\": \"4\", \"name\": \"Betty\"} | \"4\" | 4 | 1 |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 | NULL |\n+-------------------------------+-----------+------+------+\n3 rows in set (0.00 sec)\n\nmysql> DELETE FROM jemp WHERE c->\"$.id\" = \"4\";\nQuery OK, 1 row affected (0.04 sec)\n\nmysql> SELECT c, c->\"$.id\", g, n\n > FROM jemp\n > WHERE JSON_EXTRACT(c, \"$.id\") > 1\n > ORDER BY c->\"$.name\";\n+-------------------------------+-----------+------+------+\n| c | c->\"$.id\" | g | n |\n+-------------------------------+-----------+------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | \"3\" | 3 | NULL |\n| {\"id\": \"2\", \"name\": \"Wilma\"} | \"2\" | 2 | NULL |\n+-------------------------------+-----------+------+------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(427,'->>',33,'Syntax:\ncolumn->>path\n\nThis is an improved, unquoting extraction operator available in MySQL\n5.7.13 and later. Whereas the -> operator simply extracts a value, the\n->> operator in addition unquotes the extracted result. In other words,\ngiven a JSON column value column and a path expression path, the\nfollowing three expressions return the same value:\n\no JSON_UNQUOTE( JSON_EXTRACT(column, path) )\n\no JSON_UNQUOTE(column -> path)\n\no column->>path\n\nThe ->> operator can be used wherever JSON_UNQUOTE(JSON_EXTRACT())\nwould be allowed. This includes (but is not limited to) SELECT lists,\nWHERE and HAVING clauses, and ORDER BY and GROUP BY clauses.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT * FROM jemp WHERE g > 2;\n+-------------------------------+------+\n| c | g |\n+-------------------------------+------+\n| {\"id\": \"3\", \"name\": \"Barney\"} | 3 |\n| {\"id\": \"4\", \"name\": \"Betty\"} | 4 |\n+-------------------------------+------+\n2 rows in set (0.01 sec)\n\nmysql> SELECT c->\'$.name\' AS name\n -> FROM jemp WHERE g > 2;\n+----------+\n| name |\n+----------+\n| \"Barney\" |\n| \"Betty\" |\n+----------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT JSON_UNQUOTE(c->\'$.name\') AS name\n -> FROM jemp WHERE g > 2;\n+--------+\n| name |\n+--------+\n| Barney |\n| Betty |\n+--------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT c->>\'$.name\' AS name\n -> FROM jemp WHERE g > 2;\n+--------+\n| name |\n+--------+\n| Barney |\n| Betty |\n+--------+\n2 rows in set (0.00 sec)\n\nmysql> CREATE TABLE tj10 (a JSON, b INT);\nQuery OK, 0 rows affected (0.26 sec)\n\nmysql> INSERT INTO tj10 VALUES\n -> (\'[3,10,5,\"x\",44]\', 33),\n -> (\'[3,10,5,17,[22,\"y\",66]]\', 0);\nQuery OK, 2 rows affected (0.04 sec)\nRecords: 2 Duplicates: 0 Warnings: 0\n\nmysql> SELECT a->\"$[3]\", a->\"$[4][1]\" FROM tj10;\n+-----------+--------------+\n| a->\"$[3]\" | a->\"$[4][1]\" |\n+-----------+--------------+\n| \"x\" | NULL |\n| 17 | \"y\" |\n+-----------+--------------+\n2 rows in set (0.00 sec)\n\nmysql> SELECT a->>\"$[3]\", a->>\"$[4][1]\" FROM tj10;\n+------------+---------------+\n| a->>\"$[3]\" | a->>\"$[4][1]\" |\n+------------+---------------+\n| x | NULL |\n| 17 | y |\n+------------+---------------+\n2 rows in set (0.00 sec)\n\nmysql> EXPLAIN SELECT c->>\'$.name\' AS name\n -> FROM jemp WHERE g > 2\\G\n*************************** 1. row ***************************\n id: 1\n select_type: SIMPLE\n table: jemp\n partitions: NULL\n type: range\npossible_keys: i\n key: i\n key_len: 5\n ref: NULL\n rows: 2\n filtered: 100.00\n Extra: Using where\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS\\G\n*************************** 1. row ***************************\n Level: Note\n Code: 1003\nMessage: /* select#1 */ select\njson_unquote(json_extract(`jtest`.`jemp`.`c`,\'$.name\')) AS `name` from\n`jtest`.`jemp` where (`jtest`.`jemp`.`g` > 2)\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(428,'JSON_KEYS',33,'Syntax:\nJSON_KEYS(json_doc[, path])\n\nReturns the keys from the top-level value of a JSON object as a JSON\narray, or, if a path argument is given, the top-level keys from the\nselected path. Returns NULL if any argument is NULL, the json_doc\nargument is not an object, or path, if given, does not locate an\nobject. An error occurs if the json_doc argument is not a valid JSON\ndocument or the path argument is not a valid path expression or\ncontains a * or ** wildcard.\n\nThe result array is empty if the selected object is empty. If the\ntop-level value has nested subobjects, the return value does not\ninclude keys from those subobjects.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SELECT JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\');\n+---------------------------------------+\n| JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\') |\n+---------------------------------------+\n| [\"a\", \"b\"] |\n+---------------------------------------+\nmysql> SELECT JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\');\n+----------------------------------------------+\n| JSON_KEYS(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\') |\n+----------------------------------------------+\n| [\"c\"] |\n+----------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(429,'JSON_SEARCH',33,'Syntax:\nJSON_SEARCH(json_doc, one_or_all, search_str[, escape_char[, path]\n...])\n\nReturns the path to the given string within a JSON document. Returns\nNULL if any of the json_doc, search_str, or path arguments are NULL; no\npath exists within the document; or search_str is not found. An error\noccurs if the json_doc argument is not a valid JSON document, any path\nargument is not a valid path expression, one_or_all is not \'one\' or\n\'all\', or escape_char is not a constant expression.\n\nThe one_or_all argument affects the search as follows:\n\no \'one\': The search terminates after the first match and returns one\n path string. It is undefined which match is considered first.\n\no \'all\': The search returns all matching path strings such that no\n duplicate paths are included. If there are multiple strings, they are\n autowrapped as an array. The order of the array elements is\n undefined.\n\nWithin the search_str search string argument, the % and _ characters\nwork as for the LIKE operator: % matches any number of characters\n(including zero characters), and _ matches exactly one character.\n\nTo specify a literal % or _ character in the search string, precede it\nby the escape character. The default is \\ if the escape_char argument\nis missing or NULL. Otherwise, escape_char must be a constant that is\nempty or one character.\n\nFor more information about matching and escape character behavior, see\nthe description of LIKE in\nhttps://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.htm\nl. For escape character handling, a difference from the LIKE behavior\nis that the escape character for JSON_SEARCH() must evaluate to a\nconstant at compile time, not just at execution time. For example, if\nJSON_SEARCH() is used in a prepared statement and the escape_char\nargument is supplied using a ? parameter, the parameter value might be\nconstant at execution time, but is not at compile time.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html\n\n','mysql> SET @j = \'[\"abc\", [{\"k\": \"10\"}, \"def\"], {\"x\":\"abc\"}, {\"y\":\"bcd\"}]\';\n\nmysql> SELECT JSON_SEARCH(@j, \'one\', \'abc\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'one\', \'abc\') |\n+-------------------------------+\n| \"$[0]\" |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'abc\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'abc\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'ghi\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'ghi\') |\n+-------------------------------+\n| NULL |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\');\n+------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\') |\n+------------------------------+\n| \"$[1][0].k\" |\n+------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$\');\n+-----------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$\') |\n+-----------------------------------------+\n| \"$[1][0].k\" |\n+-----------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*]\');\n+--------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*]\') |\n+--------------------------------------------+\n| \"$[1][0].k\" |\n+--------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$**.k\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$**.k\') |\n+---------------------------------------------+\n| \"$[1][0].k\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*][0].k\');\n+-------------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[*][0].k\') |\n+-------------------------------------------------+\n| \"$[1][0].k\" |\n+-------------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1]\');\n+--------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1]\') |\n+--------------------------------------------+\n| \"$[1][0].k\" |\n+--------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1][0]\');\n+-----------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'10\', NULL, \'$[1][0]\') |\n+-----------------------------------------------+\n| \"$[1][0].k\" |\n+-----------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'abc\', NULL, \'$[2]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'abc\', NULL, \'$[2]\') |\n+---------------------------------------------+\n| \"$[2].x\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%a%\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%a%\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\');\n+-------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\') |\n+-------------------------------+\n| [\"$[0]\", \"$[2].x\", \"$[3].y\"] |\n+-------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[0]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[0]\') |\n+---------------------------------------------+\n| \"$[0]\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[2]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[2]\') |\n+---------------------------------------------+\n| \"$[2].x\" |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[1]\');\n+---------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', NULL, \'$[1]\') |\n+---------------------------------------------+\n| NULL |\n+---------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[1]\');\n+-------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[1]\') |\n+-------------------------------------------+\n| NULL |\n+-------------------------------------------+\n\nmysql> SELECT JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[3]\');\n+-------------------------------------------+\n| JSON_SEARCH(@j, \'all\', \'%b%\', \'\', \'$[3]\') |\n+-------------------------------------------+\n| \"$[3].y\" |\n+-------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html'),(430,'JSON_APPEND',33,'Syntax:\nJSON_APPEND(json_doc, path, val[, path, val] ...)\n\nAppends values to the end of the indicated arrays within a JSON\ndocument and returns the result. This function was renamed to\nJSON_ARRAY_APPEND() in MySQL 5.7.9; the alias JSON_APPEND() is now\ndeprecated in MySQL 5.7, and is removed in MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(431,'JSON_ARRAY_APPEND',33,'Syntax:\nJSON_ARRAY_APPEND(json_doc, path, val[, path, val] ...)\n\nAppends values to the end of the indicated arrays within a JSON\ndocument and returns the result. Returns NULL if any argument is NULL.\nAn error occurs if the json_doc argument is not a valid JSON document\nor any path argument is not a valid path expression or contains a * or\n** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nIf a path selects a scalar or object value, that value is autowrapped\nwithin an array and the new value is added to that array. Pairs for\nwhich the path does not identify any value in the JSON document are\nignored.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", [\"b\", \"c\"], \"d\"]\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[1]\', 1);\n+----------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[1]\', 1) |\n+----------------------------------+\n| [\"a\", [\"b\", \"c\", 1], \"d\"] |\n+----------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[0]\', 2);\n+----------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[0]\', 2) |\n+----------------------------------+\n| [[\"a\", 2], [\"b\", \"c\"], \"d\"] |\n+----------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$[1][0]\', 3);\n+-------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$[1][0]\', 3) |\n+-------------------------------------+\n| [\"a\", [[\"b\", 3], \"c\"], \"d\"] |\n+-------------------------------------+\n\nmysql> SET @j = \'{\"a\": 1, \"b\": [2, 3], \"c\": 4}\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$.b\', \'x\');\n+------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$.b\', \'x\') |\n+------------------------------------+\n| {\"a\": 1, \"b\": [2, 3, \"x\"], \"c\": 4} |\n+------------------------------------+\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$.c\', \'y\');\n+--------------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$.c\', \'y\') |\n+--------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": [4, \"y\"]} |\n+--------------------------------------+\n\nmysql> SET @j = \'{\"a\": 1}\';\nmysql> SELECT JSON_ARRAY_APPEND(@j, \'$\', \'z\');\n+---------------------------------+\n| JSON_ARRAY_APPEND(@j, \'$\', \'z\') |\n+---------------------------------+\n| [{\"a\": 1}, \"z\"] |\n+---------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(432,'JSON_ARRAY_INSERT',33,'Syntax:\nJSON_ARRAY_INSERT(json_doc, path, val[, path, val] ...)\n\nUpdates a JSON document, inserting into an array within the document\nand returning the modified document. Returns NULL if any argument is\nNULL. An error occurs if the json_doc argument is not a valid JSON\ndocument or any path argument is not a valid path expression or\ncontains a * or ** wildcard or does not end with an array element\nidentifier.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nPairs for which the path does not identify any array in the JSON\ndocument are ignored. If a path identifies an array element, the\ncorresponding value is inserted at that element position, shifting any\nfollowing values to the right. If a path identifies an array position\npast the end of an array, the value is inserted at the end of the\narray.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", {\"b\": [1, 2]}, [3, 4]]\';\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[1]\', \'x\');\n+------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[1]\', \'x\') |\n+------------------------------------+\n| [\"a\", \"x\", {\"b\": [1, 2]}, [3, 4]] |\n+------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[100]\', \'x\');\n+--------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[100]\', \'x\') |\n+--------------------------------------+\n| [\"a\", {\"b\": [1, 2]}, [3, 4], \"x\"] |\n+--------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[1].b[0]\', \'x\');\n+-----------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[1].b[0]\', \'x\') |\n+-----------------------------------------+\n| [\"a\", {\"b\": [\"x\", 1, 2]}, [3, 4]] |\n+-----------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[2][1]\', \'y\');\n+---------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[2][1]\', \'y\') |\n+---------------------------------------+\n| [\"a\", {\"b\": [1, 2]}, [3, \"y\", 4]] |\n+---------------------------------------+\nmysql> SELECT JSON_ARRAY_INSERT(@j, \'$[0]\', \'x\', \'$[2][1]\', \'y\');\n+----------------------------------------------------+\n| JSON_ARRAY_INSERT(@j, \'$[0]\', \'x\', \'$[2][1]\', \'y\') |\n+----------------------------------------------------+\n| [\"x\", \"a\", {\"b\": [1, 2]}, [3, 4]] |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(433,'JSON_INSERT',33,'Syntax:\nJSON_INSERT(json_doc, path, val[, path, val] ...)\n\nInserts data into a JSON document and returns the result. Returns NULL\nif any argument is NULL. An error occurs if the json_doc argument is\nnot a valid JSON document or any path argument is not a valid path\nexpression or contains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document is ignored and\ndoes not overwrite the existing document value. A path-value pair for a\nnonexisting path in the document adds the value to the document if the\npath identifies one of these types of values:\n\no A member not present in an existing object. The member is added to\n the object and associated with the new value.\n\no A position past the end of an existing array. The array is extended\n with the new value. If the existing value is not an array, it is\n autowrapped as an array, then extended with the new value.\n\nOtherwise, a path-value pair for a nonexisting path in the document is\nignored and has no effect.\n\nFor a comparison of JSON_INSERT(), JSON_REPLACE(), and JSON_SET(), see\nthe discussion of JSON_SET().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+----------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+----------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+----------------------------------------------------+\n\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', CAST(\'[true, false]\' AS JSON));\n+------------------------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', CAST(\'[true, false]\' AS JSON)) |\n+------------------------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": [true, false]} |\n+------------------------------------------------------------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(434,'JSON_MERGE',33,'Syntax:\nJSON_MERGE(json_doc, json_doc[, json_doc] ...)\n\nMerges two or more JSON documents. Synonym for JSON_MERGE_PRESERVE();\ndeprecated in MySQL 5.7.22 and subject to removal in a future release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE(\'[1, 2]\', \'[true, false]\');\n+---------------------------------------+\n| JSON_MERGE(\'[1, 2]\', \'[true, false]\') |\n+---------------------------------------+\n| [1, 2, true, false] |\n+---------------------------------------+\n1 row in set, 1 warning (0.00 sec)\n\nmysql> SHOW WARNINGS\\G\n*************************** 1. row ***************************\n Level: Warning\n Code: 1287\nMessage: \'JSON_MERGE\' is deprecated and will be removed in a future release. \\\n Please use JSON_MERGE_PRESERVE/JSON_MERGE_PATCH instead\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(435,'JSON_MERGE_PATCH()',33,'Syntax:\nJSON_MERGE_PATCH(json_doc, json_doc[, json_doc] ...)\n\nPerforms an RFC 7396 (https://tools.ietf.org/html/rfc7396) compliant\nmerge of two or more JSON documents and returns the merged result,\nwithout preserving members having duplicate keys. Raises an error if at\nleast one of the documents passed as arguments to this function is not\nvalid.\n\n*Note*:\n\nFor an explanation and example of the differences between this function\nand JSON_MERGE_PRESERVE(), see\nhttps://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.htm\nl#json-merge-patch-json-merge-preserve-compared.\n\nJSON_MERGE_PATCH() performs a merge as follows:\n\n1. If the first argument is not an object, the result of the merge is\n the same as if an empty object had been merged with the second\n argument.\n\n2. If the second argument is not an object, the result of the merge is\n the second argument.\n\n3. If both arguments are objects, the result of the merge is an object\n with the following members:\n\n o All members of the first object which do not have a corresponding\n member with the same key in the second object.\n\n o All members of the second object which do not have a corresponding\n key in the first object, and whose value is not the JSON null\n literal.\n\n o All members with a key that exists in both the first and the second\n object, and whose value in the second object is not the JSON null\n literal. The values of these members are the results of recursively\n merging the value in the first object with the value in the second\n object.\n\nFor additional information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/json.html#json-normalization.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE_PATCH(\'[1, 2]\', \'[true, false]\');\n+---------------------------------------------+\n| JSON_MERGE_PATCH(\'[1, 2]\', \'[true, false]\') |\n+---------------------------------------------+\n| [true, false] |\n+---------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"name\": \"x\"}\', \'{\"id\": 47}\');\n+-------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"name\": \"x\"}\', \'{\"id\": 47}\') |\n+-------------------------------------------------+\n| {\"id\": 47, \"name\": \"x\"} |\n+-------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'1\', \'true\');\n+-------------------------------+\n| JSON_MERGE_PATCH(\'1\', \'true\') |\n+-------------------------------+\n| true |\n+-------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'[1, 2]\', \'{\"id\": 47}\');\n+------------------------------------------+\n| JSON_MERGE_PATCH(\'[1, 2]\', \'{\"id\": 47}\') |\n+------------------------------------------+\n| {\"id\": 47} |\n+------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\n > \'{ \"a\": 3, \"c\":4 }\');\n+-----------------------------------------------------------+\n| JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\') |\n+-----------------------------------------------------------+\n| {\"a\": 3, \"b\": 2, \"c\": 4} |\n+-----------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\',\n > \'{ \"a\": 5, \"d\":6 }\');\n+-------------------------------------------------------------------------------+\n| JSON_MERGE_PATCH(\'{ \"a\": 1, \"b\":2 }\',\'{ \"a\": 3, \"c\":4 }\',\'{ \"a\": 5, \"d\":6 }\') |\n+-------------------------------------------------------------------------------+\n| {\"a\": 5, \"b\": 2, \"c\": 4, \"d\": 6} |\n+-------------------------------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"a\":1, \"b\":2}\', \'{\"b\":null}\');\n+--------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"a\":1, \"b\":2}\', \'{\"b\":null}\') |\n+--------------------------------------------------+\n| {\"a\": 1} |\n+--------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PATCH(\'{\"a\":{\"x\":1}}\', \'{\"a\":{\"y\":2}}\');\n+----------------------------------------------------+\n| JSON_MERGE_PATCH(\'{\"a\":{\"x\":1}}\', \'{\"a\":{\"y\":2}}\') |\n+----------------------------------------------------+\n| {\"a\": {\"x\": 1, \"y\": 2}} |\n+----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(436,'JSON_MERGE_PRESERVE()',33,'Syntax:\nJSON_MERGE_PRESERVE(json_doc, json_doc[, json_doc] ...)\n\nMerges two or more JSON documents and returns the merged result.\nReturns NULL if any argument is NULL. An error occurs if any argument\nis not a valid JSON document.\n\nMerging takes place according to the following rules. For additional\ninformation, see\nhttps://dev.mysql.com/doc/refman/5.7/en/json.html#json-normalization.\n\no Adjacent arrays are merged to a single array.\n\no Adjacent objects are merged to a single object.\n\no A scalar value is autowrapped as an array and merged as an array.\n\no An adjacent array and object are merged by autowrapping the object as\n an array and merging the two arrays.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SELECT JSON_MERGE_PRESERVE(\'[1, 2]\', \'[true, false]\');\n+------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'[1, 2]\', \'[true, false]\') |\n+------------------------------------------------+\n| [1, 2, true, false] |\n+------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{\"name\": \"x\"}\', \'{\"id\": 47}\');\n+----------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{\"name\": \"x\"}\', \'{\"id\": 47}\') |\n+----------------------------------------------------+\n| {\"id\": 47, \"name\": \"x\"} |\n+----------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'1\', \'true\');\n+----------------------------------+\n| JSON_MERGE_PRESERVE(\'1\', \'true\') |\n+----------------------------------+\n| [1, true] |\n+----------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'[1, 2]\', \'{\"id\": 47}\');\n+---------------------------------------------+\n| JSON_MERGE_PRESERVE(\'[1, 2]\', \'{\"id\": 47}\') |\n+---------------------------------------------+\n| [1, 2, {\"id\": 47}] |\n+---------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\n > \'{ \"a\": 3, \"c\": 4 }\');\n+--------------------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\":4 }\') |\n+--------------------------------------------------------------+\n| {\"a\": [1, 3], \"b\": 2, \"c\": 4} |\n+--------------------------------------------------------------+\n\nmysql> SELECT JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\": 4 }\',\n > \'{ \"a\": 5, \"d\": 6 }\');\n+----------------------------------------------------------------------------------+\n| JSON_MERGE_PRESERVE(\'{ \"a\": 1, \"b\": 2 }\',\'{ \"a\": 3, \"c\": 4 }\',\'{ \"a\": 5, \"d\": 6 }\') |\n+----------------------------------------------------------------------------------+\n| {\"a\": [1, 3, 5], \"b\": 2, \"c\": 4, \"d\": 6} |\n+----------------------------------------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(437,'JSON_REMOVE',33,'Syntax:\nJSON_REMOVE(json_doc, path[, path] ...)\n\nRemoves data from a JSON document and returns the result. Returns NULL\nif any argument is NULL. An error occurs if the json_doc argument is\nnot a valid JSON document or any path argument is not a valid path\nexpression or is $ or contains a * or ** wildcard.\n\nThe path arguments are evaluated left to right. The document produced\nby evaluating one path becomes the new value against which the next\npath is evaluated.\n\nIt is not an error if the element to be removed does not exist in the\ndocument; in that case, the path does not affect the document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'[\"a\", [\"b\", \"c\"], \"d\"]\';\nmysql> SELECT JSON_REMOVE(@j, \'$[1]\');\n+-------------------------+\n| JSON_REMOVE(@j, \'$[1]\') |\n+-------------------------+\n| [\"a\", \"d\"] |\n+-------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(438,'JSON_REPLACE',33,'Syntax:\nJSON_REPLACE(json_doc, path, val[, path, val] ...)\n\nReplaces existing values in a JSON document and returns the result.\nReturns NULL if any argument is NULL. An error occurs if the json_doc\nargument is not a valid JSON document or any path argument is not a\nvalid path expression or contains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document overwrites the\nexisting document value with the new value. A path-value pair for a\nnonexisting path in the document is ignored and has no effect.\n\nFor a comparison of JSON_INSERT(), JSON_REPLACE(), and JSON_SET(), see\nthe discussion of JSON_SET().\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-----------------------------------------------------+\n| JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-----------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3]} |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(439,'JSON_SET',33,'Syntax:\nJSON_SET(json_doc, path, val[, path, val] ...)\n\nInserts or updates data in a JSON document and returns the result.\nReturns NULL if any argument is NULL or path, if given, does not locate\nan object. An error occurs if the json_doc argument is not a valid JSON\ndocument or any path argument is not a valid path expression or\ncontains a * or ** wildcard.\n\nThe path-value pairs are evaluated left to right. The document produced\nby evaluating one pair becomes the new value against which the next\npair is evaluated.\n\nA path-value pair for an existing path in the document overwrites the\nexisting document value with the new value. A path-value pair for a\nnonexisting path in the document adds the value to the document if the\npath identifies one of these types of values:\n\no A member not present in an existing object. The member is added to\n the object and associated with the new value.\n\no A position past the end of an existing array. The array is extended\n with the new value. If the existing value is not an array, it is\n autowrapped as an array, then extended with the new value.\n\nOtherwise, a path-value pair for a nonexisting path in the document is\nignored and has no effect.\n\nThe JSON_SET(), JSON_INSERT(), and JSON_REPLACE() functions are\nrelated:\n\no JSON_SET() replaces existing values and adds nonexisting values.\n\no JSON_INSERT() inserts values without replacing existing values.\n\no JSON_REPLACE() replaces only existing values.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'{ \"a\": 1, \"b\": [2, 3]}\';\nmysql> SELECT JSON_SET(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-------------------------------------------------+\n| JSON_SET(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+-------------------------------------------------+\nmysql> SELECT JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+----------------------------------------------------+\n| JSON_INSERT(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+----------------------------------------------------+\n| {\"a\": 1, \"b\": [2, 3], \"c\": \"[true, false]\"} |\n+----------------------------------------------------+\nmysql> SELECT JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\');\n+-----------------------------------------------------+\n| JSON_REPLACE(@j, \'$.a\', 10, \'$.c\', \'[true, false]\') |\n+-----------------------------------------------------+\n| {\"a\": 10, \"b\": [2, 3]} |\n+-----------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(440,'JSON_UNQUOTE',33,'Syntax:\nJSON_UNQUOTE(json_val)\n\nUnquotes JSON value and returns the result as a utf8mb4 string. Returns\nNULL if the argument is NULL. An error occurs if the value starts and\nends with double quotes but is not a valid JSON string literal.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html\n\n','mysql> SET @j = \'\"abc\"\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-------+------------------+\n| \"abc\" | abc |\n+-------+------------------+\nmysql> SET @j = \'[1, 2, 3]\';\nmysql> SELECT @j, JSON_UNQUOTE(@j);\n+-----------+------------------+\n| @j | JSON_UNQUOTE(@j) |\n+-----------+------------------+\n| [1, 2, 3] | [1, 2, 3] |\n+-----------+------------------+\n\nmysql> SELECT @@sql_mode;\n+------------+\n| @@sql_mode |\n+------------+\n| |\n+------------+\n\nmysql> SELECT JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\');\n+------------------------------+\n| JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\') |\n+------------------------------+\n| 2 |\n+------------------------------+\n\nmysql> SET @@sql_mode = \'NO_BACKSLASH_ESCAPES\';\nmysql> SELECT JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\');\n+------------------------------+\n| JSON_UNQUOTE(\'\"\\\\t\\\\u0032\"\') |\n+------------------------------+\n| \\t\\u0032 |\n+------------------------------+\n\nmysql> SELECT JSON_UNQUOTE(\'\"\\t\\u0032\"\');\n+----------------------------+\n| JSON_UNQUOTE(\'\"\\t\\u0032\"\') |\n+----------------------------+\n| 2 |\n+----------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-modification-functions.html'),(441,'JSON_DEPTH',33,'Syntax:\nJSON_DEPTH(json_doc)\n\nReturns the maximum depth of a JSON document. Returns NULL if the\nargument is NULL. An error occurs if the argument is not a valid JSON\ndocument.\n\nAn empty array, empty object, or scalar value has depth 1. A nonempty\narray containing only elements of depth 1 or nonempty object containing\nonly member values of depth 1 has depth 2. Otherwise, a JSON document\nhas depth greater than 2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_DEPTH(\'{}\'), JSON_DEPTH(\'[]\'), JSON_DEPTH(\'true\');\n+------------------+------------------+--------------------+\n| JSON_DEPTH(\'{}\') | JSON_DEPTH(\'[]\') | JSON_DEPTH(\'true\') |\n+------------------+------------------+--------------------+\n| 1 | 1 | 1 |\n+------------------+------------------+--------------------+\nmysql> SELECT JSON_DEPTH(\'[10, 20]\'), JSON_DEPTH(\'[[], {}]\');\n+------------------------+------------------------+\n| JSON_DEPTH(\'[10, 20]\') | JSON_DEPTH(\'[[], {}]\') |\n+------------------------+------------------------+\n| 2 | 2 |\n+------------------------+------------------------+\nmysql> SELECT JSON_DEPTH(\'[10, {\"a\": 20}]\');\n+-------------------------------+\n| JSON_DEPTH(\'[10, {\"a\": 20}]\') |\n+-------------------------------+\n| 3 |\n+-------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(442,'JSON_LENGTH',33,'Syntax:\nJSON_LENGTH(json_doc[, path])\n\nReturns the length of a JSON document, or, if a path argument is given,\nthe length of the value within the document identified by the path.\nReturns NULL if any argument is NULL or the path argument does not\nidentify a value in the document. An error occurs if the json_doc\nargument is not a valid JSON document or the path argument is not a\nvalid path expression or contains a * or ** wildcard.\n\nThe length of a document is determined as follows:\n\no The length of a scalar is 1.\n\no The length of an array is the number of array elements.\n\no The length of an object is the number of object members.\n\no The length does not count the length of nested arrays or objects.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_LENGTH(\'[1, 2, {\"a\": 3}]\');\n+---------------------------------+\n| JSON_LENGTH(\'[1, 2, {\"a\": 3}]\') |\n+---------------------------------+\n| 3 |\n+---------------------------------+\nmysql> SELECT JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\');\n+-----------------------------------------+\n| JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\') |\n+-----------------------------------------+\n| 2 |\n+-----------------------------------------+\nmysql> SELECT JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\');\n+------------------------------------------------+\n| JSON_LENGTH(\'{\"a\": 1, \"b\": {\"c\": 30}}\', \'$.b\') |\n+------------------------------------------------+\n| 1 |\n+------------------------------------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(443,'JSON_TYPE',33,'Syntax:\nJSON_TYPE(json_val)\n\nReturns a utf8mb4 string indicating the type of a JSON value. This can\nbe an object, an array, or a scalar type, as shown here:\n\nmysql> SET @j = \'{\"a\": [10, true]}\';\nmysql> SELECT JSON_TYPE(@j);\n+---------------+\n| JSON_TYPE(@j) |\n+---------------+\n| OBJECT |\n+---------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a\'));\n+------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a\')) |\n+------------------------------------+\n| ARRAY |\n+------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[0]\')) |\n+---------------------------------------+\n| INTEGER |\n+---------------------------------------+\nmysql> SELECT JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\'));\n+---------------------------------------+\n| JSON_TYPE(JSON_EXTRACT(@j, \'$.a[1]\')) |\n+---------------------------------------+\n| BOOLEAN |\n+---------------------------------------+\n\nJSON_TYPE() returns NULL if the argument is NULL:\n\nmysql> SELECT JSON_TYPE(NULL);\n+-----------------+\n| JSON_TYPE(NULL) |\n+-----------------+\n| NULL |\n+-----------------+\n\nAn error occurs if the argument is not a valid JSON value:\n\nmysql> SELECT JSON_TYPE(1);\nERROR 3146 (22032): Invalid data type for JSON data in argument 1\nto function json_type; a JSON string or JSON type is required.\n\nFor a non-NULL, non-error result, the following list describes the\npossible JSON_TYPE() return values:\n\no Purely JSON types:\n\n o OBJECT: JSON objects\n\n o ARRAY: JSON arrays\n\n o BOOLEAN: The JSON true and false literals\n\n o NULL: The JSON null literal\n\no Numeric types:\n\n o INTEGER: MySQL TINYINT, SMALLINT, MEDIUMINT and INT and BIGINT\n scalars\n\n o DOUBLE: MySQL DOUBLE FLOAT scalars\n\n o DECIMAL: MySQL DECIMAL and NUMERIC scalars\n\no Temporal types:\n\n o DATETIME: MySQL DATETIME and TIMESTAMP scalars\n\n o DATE: MySQL DATE scalars\n\n o TIME: MySQL TIME scalars\n\no String types:\n\n o STRING: MySQL utf8 character type scalars: CHAR, VARCHAR, TEXT,\n ENUM, and SET\n\no Binary types:\n\n o BLOB: MySQL binary type scalars: BINARY, VARBINARY, BLOB\n\n o BIT: MySQL BIT scalars\n\no All other types:\n\n o OPAQUE (raw bits)\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(444,'JSON_VALID',33,'Syntax:\nJSON_VALID(val)\n\nReturns 0 or 1 to indicate whether a value is valid JSON. Returns NULL\nif the argument is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html\n\n','mysql> SELECT JSON_VALID(\'{\"a\": 1}\');\n+------------------------+\n| JSON_VALID(\'{\"a\": 1}\') |\n+------------------------+\n| 1 |\n+------------------------+\nmysql> SELECT JSON_VALID(\'hello\'), JSON_VALID(\'\"hello\"\');\n+---------------------+-----------------------+\n| JSON_VALID(\'hello\') | JSON_VALID(\'\"hello\"\') |\n+---------------------+-----------------------+\n| 0 | 1 |\n+---------------------+-----------------------+\n','https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html'),(445,'JSON_PRETTY',33,'JSON_PRETTY(json_val)\n\nProvides pretty-printing of JSON values similar to that implemented in\nPHP and by other languages and database systems. The value supplied\nmust be a JSON value or a valid string representation of a JSON value.\nExtraneous whitespaces and newlines present in this value have no\neffect on the output. For a NULL value, the function returns NULL. If\nthe value is not a JSON document, or if it cannot be parsed as one, the\nfunction fails with an error.\n\nFormatting of the output from this function adheres to the following\nrules:\n\no Each array element or object member appears on a separate line,\n indented by one additional level as compared to its parent.\n\no Each level of indentation adds two leading spaces.\n\no A comma separating individual array elements or object members is\n printed before the newline that separates the two elements or\n members.\n\no The key and the value of an object member are separated by a colon\n followed by a space (\': \').\n\no An empty object or array is printed on a single line. No space is\n printed between the opening and closing brace.\n\no Special characters in string scalars and key names are escaped\n employing the same rules used by the JSON_QUOTE() function.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html\n\n','mysql> SELECT JSON_PRETTY(\'123\'); # scalar\n+--------------------+\n| JSON_PRETTY(\'123\') |\n+--------------------+\n| 123 |\n+--------------------+\n\nmysql> SELECT JSON_PRETTY(\"[1,3,5]\"); # array\n+------------------------+\n| JSON_PRETTY(\"[1,3,5]\") |\n+------------------------+\n| [\n 1,\n 3,\n 5\n] |\n+------------------------+\n\nmysql> SELECT JSON_PRETTY(\'{\"a\":\"10\",\"b\":\"15\",\"x\":\"25\"}\'); # object\n+---------------------------------------------+\n| JSON_PRETTY(\'{\"a\":\"10\",\"b\":\"15\",\"x\":\"25\"}\') |\n+---------------------------------------------+\n| {\n \"a\": \"10\",\n \"b\": \"15\",\n \"x\": \"25\"\n} |\n+---------------------------------------------+\n\nmysql> SELECT JSON_PRETTY(\'[\"a\",1,{\"key1\":\n > \"value1\"},\"5\", \"77\" ,\n > {\"key2\":[\"value3\",\"valueX\",\n > \"valueY\"]},\"j\", \"2\" ]\')\\G # nested arrays and objects\n*************************** 1. row ***************************\nJSON_PRETTY(\'[\"a\",1,{\"key1\":\n \"value1\"},\"5\", \"77\" ,\n {\"key2\":[\"value3\",\"valuex\",\n \"valuey\"]},\"j\", \"2\" ]\'): [\n \"a\",\n 1,\n {\n \"key1\": \"value1\"\n },\n \"5\",\n \"77\",\n {\n \"key2\": [\n \"value3\",\n \"valuex\",\n \"valuey\"\n ]\n },\n \"j\",\n \"2\"\n]\n','https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html'),(446,'JSON_STORAGE_SIZE',33,'JSON_STORAGE_SIZE(json_val)\n\nThis function returns the number of bytes used to store the binary\nrepresentation of a JSON document. When the argument is a JSON column,\nthis is the space used to store the JSON document. json_val must be a\nvalid JSON document or a string which can be parsed as one. In the case\nwhere it is string, the function returns the amount of storage space in\nthe JSON binary representation that is created by parsing the string as\nJSON and converting it to binary. It returns NULL if the argument is\nNULL.\n\nAn error results when json_val is not NULL, and is not---or cannot be\nsuccessfully parsed as---a JSON document.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html\n\n','mysql> CREATE TABLE jtable (jcol JSON);\nQuery OK, 0 rows affected (0.42 sec)\n\nmysql> INSERT INTO jtable VALUES\n -> (\'{\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"}\');\nQuery OK, 1 row affected (0.04 sec)\n\nmysql> SELECT\n -> jcol,\n -> JSON_STORAGE_SIZE(jcol) AS Size\n -> FROM jtable;\n+-----------------------------------------------+------+\n| jcol | Size |\n+-----------------------------------------------+------+\n| {\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"} | 47 |\n+-----------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> UPDATE jtable\nmysql> SET jcol = \'{\"a\": 4.55, \"b\": \"wxyz\", \"c\": \"[true, false]\"}\';\nQuery OK, 1 row affected (0.04 sec)\nRows matched: 1 Changed: 1 Warnings: 0\n\nmysql> SELECT\n -> jcol,\n -> JSON_STORAGE_SIZE(jcol) AS Size\n -> FROM jtable;\n+------------------------------------------------+------+\n| jcol | Size |\n+------------------------------------------------+------+\n| {\"a\": 4.55, \"b\": \"wxyz\", \"c\": \"[true, false]\"} | 56 |\n+------------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = \'[100, \"sakila\", [1, 3, 5], 425.05]\';\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+------------------------------------+------+\n| @j | Size |\n+------------------------------------+------+\n| [100, \"sakila\", [1, 3, 5], 425.05] | 45 |\n+------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = JSON_SET(@j, \'$[1]\', \"json\");\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+----------------------------------+------+\n| @j | Size |\n+----------------------------------+------+\n| [100, \"json\", [1, 3, 5], 425.05] | 43 |\n+----------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SET @j = JSON_SET(@j, \'$[2][0]\', JSON_ARRAY(10, 20, 30));\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SELECT @j, JSON_STORAGE_SIZE(@j) AS Size;\n+---------------------------------------------+------+\n| @j | Size |\n+---------------------------------------------+------+\n| [100, \"json\", [[10, 20, 30], 3, 5], 425.05] | 56 |\n+---------------------------------------------+------+\n1 row in set (0.00 sec)\n\nmysql> SELECT\n -> JSON_STORAGE_SIZE(\'[100, \"sakila\", [1, 3, 5], 425.05]\') AS A,\n -> JSON_STORAGE_SIZE(\'{\"a\": 1000, \"b\": \"a\", \"c\": \"[1, 3, 5, 7]\"}\') AS B,\n -> JSON_STORAGE_SIZE(\'{\"a\": 1000, \"b\": \"wxyz\", \"c\": \"[1, 3, 5, 7]\"}\') AS C,\n -> JSON_STORAGE_SIZE(\'[100, \"json\", [[10, 20, 30], 3, 5], 425.05]\') AS D;\n+----+----+----+----+\n| A | B | C | D |\n+----+----+----+----+\n| 45 | 44 | 47 | 56 |\n+----+----+----+----+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/json-utility-functions.html'),(447,'GTID_SUBSET',34,'Syntax:\nGTID_SUBSET(set1,set2)\n\nGiven two sets of global transaction identifiers set1 and set2, returns\ntrue if all GTIDs in set1 are also in set2. Returns false otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(448,'GTID_SUBTRACT',34,'Syntax:\nGTID_SUBTRACT(set1,set2)\n\nGiven two sets of global transaction identifiers set1 and set2, returns\nonly those GTIDs from set1 that are not in set2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(449,'WAIT_FOR_EXECUTED_GTID_SET',34,'Syntax:\nWAIT_FOR_EXECUTED_GTID_SET(gtid_set[, timeout])\n\nWait until the server has applied all of the transactions whose global\ntransaction identifiers are contained in gtid_set; that is, until the\ncondition GTID_SUBSET(gtid_subset, @@GLOBAL.gtid_executed) holds. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\nfor a definition of GTID sets.\n\nIf a timeout is specified, and timeout seconds elapse before all of the\ntransactions in the GTID set have been applied, the function stops\nwaiting. timeout is optional, and the default timeout is 0 seconds, in\nwhich case the function always waits until all of the transactions in\nthe GTID set have been applied.\n\nWAIT_FOR_EXECUTED_GTID_SET() monitors all the GTIDs that are applied on\nthe server, including transactions that arrive from all replication\nchannels and user clients. It does not take into account whether\nreplication channels have been started or stopped.\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','mysql> SELECT WAIT_FOR_EXECUTED_GTID_SET(\'3E11FA47-71CA-11E1-9E33-C80AA9429562:1-5\');\n -> 0\n','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(450,'WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS',34,'Syntax:\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(gtid_set[, timeout][,channel])\n\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() is similar to\nWAIT_FOR_EXECUTED_GTID_SET() in that it waits until all of the\ntransactions whose global transaction identifiers are contained in\ngtid_set have been applied, or until timeout seconds have elapsed,\nwhichever occurs first. However, WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS()\napplies to a specific replication channel, and stops only after the\ntransactions have been applied on the specified channel, for which the\napplier must be running. In contrast, WAIT_FOR_EXECUTED_GTID_SET()\nstops after the transactions have been applied, regardless of where\nthey were applied (on any replication channel or any user client), and\nwhether or not any replication channels are running.\n\nThe channel option names which replication channel the function applies\nto. If no channel is named and no channels other than the default\nreplication channel exist, the function applies to the default\nreplication channel. If multiple replication channels exist, you must\nspecify a channel as otherwise it is not known which replication\nchannel the function applies to. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information on replication channels.\n\n*Note*:\n\nBecause WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() applies to a specific\nreplication channel, if an expected transaction arrives on a different\nreplication channel or from a user client, for example in a failover or\nmanual recovery situation, the function can hang indefinitely if no\ntimeout is set. Use WAIT_FOR_EXECUTED_GTID_SET() instead to ensure\ncorrect handling of transactions in these situations.\n\nGTID sets used with WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() are represented\nas strings and must be quoted in the same way as for\nWAIT_FOR_EXECUTED_GTID_SET(). For WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS(),\nthe return value for the function is an arbitrary positive number. If\nGTID-based replication is not active (that is, if the value of the\ngtid_mode variable is OFF), then this value is undefined and\nWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS() returns NULL. If the replica is not\nrunning then the function also returns NULL.\n\ngtid_mode cannot be changed to OFF while any client is using this\nfunction to wait for GTIDs to be applied.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/gtid-functions.html'),(451,'AVG',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, AVG(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(452,'BIT_AND',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(453,'BIT_OR',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(454,'BIT_XOR',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(455,'COUNT',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-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','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(456,'COUNT DISTINCT',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT COUNT(DISTINCT results) FROM student;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(457,'GROUP_CONCAT',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name,\n GROUP_CONCAT(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(458,'JSON_ARRAYAGG',35,'Syntax:\nJSON_ARRAYAGG(col_or_expr)\n\nAggregates a result set as a single JSON array whose elements consist\nof the rows. The order of elements in this array is undefined. The\nfunction acts on a column or an expression that evaluates to a single\nvalue. Returns NULL if the result contains no rows, or in the event of\nan error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT o_id, attribute, value FROM t3;\n+------+-----------+-------+\n| o_id | attribute | value |\n+------+-----------+-------+\n| 2 | color | red |\n| 2 | fabric | silk |\n| 3 | color | green |\n| 3 | shape | square|\n+------+-----------+-------+\n4 rows in set (0.00 sec)\n\nmysql> SELECT o_id, JSON_ARRAYAGG(attribute) AS attributes\n > FROM t3 GROUP BY o_id;\n+------+---------------------+\n| o_id | attributes |\n+------+---------------------+\n| 2 | [\"color\", \"fabric\"] |\n| 3 | [\"color\", \"shape\"] |\n+------+---------------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(459,'JSON_OBJECTAGG',35,'Syntax:\nJSON_OBJECTAGG(key, value)\n\nTakes two column names or expressions as arguments, the first of these\nbeing used as a key and the second as a value, and returns a JSON\nobject containing key-value pairs. Returns NULL if the result contains\nno rows, or in the event of an error. An error occurs if any key name\nis NULL or the number of arguments is not equal to 2.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT o_id, attribute, value FROM t3;\n+------+-----------+-------+\n| o_id | attribute | value |\n+------+-----------+-------+\n| 2 | color | red |\n| 2 | fabric | silk |\n| 3 | color | green |\n| 3 | shape | square|\n+------+-----------+-------+\n4 rows in set (0.00 sec)\n\nmysql> SELECT o_id, JSON_OBJECTAGG(attribute, value)\n > FROM t3 GROUP BY o_id;\n+------+---------------------------------------+\n| o_id | JSON_OBJECTAGG(attribute, value) |\n+------+---------------------------------------+\n| 2 | {\"color\": \"red\", \"fabric\": \"silk\"} |\n| 3 | {\"color\": \"green\", \"shape\": \"square\"} |\n+------+---------------------------------------+\n2 rows in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(460,'MAX',35,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the maximum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MAX() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(461,'MIN',35,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html. The\nDISTINCT keyword can be used to find the minimum of the distinct values\nof expr, however, this produces the same result as omitting DISTINCT.\n\nIf there are no matching rows, MIN() returns NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','mysql> SELECT student_name, MIN(test_score), MAX(test_score)\n FROM student\n GROUP BY student_name;\n','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(462,'STD',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(463,'STDDEV',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(464,'STDDEV_POP',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(465,'STDDEV_SAMP',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(466,'SUM',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(467,'VAR_POP',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(468,'VAR_SAMP',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(469,'VARIANCE',35,'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: https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/aggregate-functions.html'),(470,'ANY_VALUE',37,'ANY_VALUE(arg)\n\nThis function is useful for GROUP BY queries when the\nONLY_FULL_GROUP_BY SQL mode is enabled, for cases when MySQL rejects a\nquery that you know is valid for reasons that MySQL cannot determine.\nThe function return value and type are the same as the return value and\ntype of its argument, but the function result is not checked for the\nONLY_FULL_GROUP_BY SQL mode.\n\nFor example, if name is a nonindexed column, the following query fails\nwith ONLY_FULL_GROUP_BY enabled:\n\nmysql> SELECT name, address, MAX(age) FROM t GROUP BY name;\nERROR 1055 (42000): Expression #2 of SELECT list is not in GROUP\nBY clause and contains nonaggregated column \'mydb.t.address\' which\nis not functionally dependent on columns in GROUP BY clause; this\nis incompatible with sql_mode=only_full_group_by\n\nThe failure occurs because address is a nonaggregated column that is\nneither named among GROUP BY columns nor functionally dependent on\nthem. As a result, the address value for rows within each name group is\nnondeterministic. There are multiple ways to cause MySQL to accept the\nquery:\n\no Alter the table to make name a primary key or a unique NOT NULL\n column. This enables MySQL to determine that address is functionally\n dependent on name; that is, address is uniquely determined by name.\n (This technique is inapplicable if NULL must be permitted as a valid\n name value.)\n\no Use ANY_VALUE() to refer to address:\n\nSELECT name, ANY_VALUE(address), MAX(age) FROM t GROUP BY name;\n\n In this case, MySQL ignores the nondeterminism of address values\n within each name group and accepts the query. This may be useful if\n you simply do not care which value of a nonaggregated column is\n chosen for each group. ANY_VALUE() is not an aggregate function,\n unlike functions such as SUM() or COUNT(). It simply acts to suppress\n the test for nondeterminism.\n\no Disable ONLY_FULL_GROUP_BY. This is equivalent to using ANY_VALUE()\n with ONLY_FULL_GROUP_BY enabled, as described in the previous item.\n\nANY_VALUE() is also useful if functional dependence exists between\ncolumns but MySQL cannot determine it. The following query is valid\nbecause age is functionally dependent on the grouping column age-1, but\nMySQL cannot tell that and rejects the query with ONLY_FULL_GROUP_BY\nenabled:\n\nSELECT age FROM t GROUP BY age-1;\n\nTo cause MySQL to accept the query, use ANY_VALUE():\n\nSELECT ANY_VALUE(age) FROM t GROUP BY age-1;\n\nANY_VALUE() can be used for queries that refer to aggregate functions\nin the absence of a GROUP BY clause:\n\nmysql> SELECT name, MAX(age) FROM t;\nERROR 1140 (42000): In aggregated query without GROUP BY, expression\n#1 of SELECT list contains nonaggregated column \'mydb.t.name\'; this\nis incompatible with sql_mode=only_full_group_by\n\nWithout GROUP BY, there is a single group and it is nondeterministic\nwhich name value to choose for the group. ANY_VALUE() tells MySQL to\naccept the query:\n\nSELECT ANY_VALUE(name), MAX(age) FROM t;\n\nIt may be that, due to some property of a given data set, you know that\na selected nonaggregated column is effectively functionally dependent\non a GROUP BY column. For example, an application may enforce\nuniqueness of one column with respect to another. In this case, using\nANY_VALUE() for the effectively functionally dependent column may make\nsense.\n\nFor additional discussion, see\nhttps://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(471,'DEFAULT',37,'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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(472,'INET_ATON',37,'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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_ATON(\'10.0.5.9\');\n -> 167773449\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(473,'INET_NTOA',37,'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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT INET_NTOA(167773449);\n -> \'10.0.5.9\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(474,'INET6_ATON',37,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(475,'INET6_NTOA',37,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(476,'IS_IPV4',37,'Syntax:\nIS_IPV4(expr)\n\nReturns 1 if the argument is a valid IPv4 address specified as a\nstring, 0 otherwise.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV4(\'10.0.5.9\'), IS_IPV4(\'10.0.5.256\');\n -> 1, 0\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(477,'IS_IPV4_COMPAT',37,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(478,'IS_IPV4_MAPPED',37,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(479,'IS_IPV6',37,'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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT IS_IPV6(\'10.0.5.9\'), IS_IPV6(\'::1\');\n -> 0, 1\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(480,'MASTER_POS_WAIT',37,'Syntax:\nMASTER_POS_WAIT(log_name,log_pos[,timeout][,channel])\n\nThis function is useful for control of source/replica synchronization.\nIt blocks until the replica has read and applied all updates up to the\nspecified position in the source log. The return value is the number of\nlog events the replica had to wait for to advance to the specified\nposition. The function returns NULL if the replica SQL thread is not\nstarted, the replica\'s source information is not initialized, the\narguments are incorrect, or an error occurs. It returns -1 if the\ntimeout has been exceeded. If the replica SQL thread stops while\nMASTER_POS_WAIT() is waiting, the function returns NULL. If the replica\nis past the specified position, the function returns immediately.\n\nOn a multithreaded replica, the function waits until expiry of the\nlimit set by the slave_checkpoint_group or slave_checkpoint_period\nsystem variable, when the checkpoint operation is called to update the\nstatus of the replica. Depending on the setting for the system\nvariables, the function might therefore return some time after the\nspecified position was 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\nThe optional channel value enables you to name which replication\nchannel the function applies to. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(481,'NAME_CONST',37,'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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(482,'SLEEP',37,'Syntax:\nSLEEP(duration)\n\nSleeps (pauses) for the number of seconds given by the duration\nargument, then returns 0. The duration may have a fractional part. If\nthe argument is NULL or negative, SLEEP() produces a warning, or an\nerror in strict SQL mode.\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 is true\nwhether the query is killed or times out:\n\no This statement is interrupted using KILL QUERY from another session:\n\nmysql> SELECT SLEEP(1000);\n+-------------+\n| SLEEP(1000) |\n+-------------+\n| 1 |\n+-------------+\n\no This statement is interrupted by timing out:\n\nmysql> SELECT /*+ MAX_EXECUTION_TIME(1) */ 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:\n\no This statement is interrupted using KILL QUERY from another session:\n\nmysql> SELECT 1 FROM t1 WHERE SLEEP(1000);\nERROR 1317 (70100): Query execution was interrupted\n\no This statement is interrupted by timing out:\n\nmysql> SELECT /*+ MAX_EXECUTION_TIME(1000) */ 1 FROM t1 WHERE SLEEP(1000);\nERROR 3024 (HY000): Query execution was interrupted, maximum statement\nexecution time exceeded\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(483,'UUID',37,'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\n FreeBSD, Linux, and Windows. On other operating systems, MySQL uses a\n randomly generated 48-bit number.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID();\n -> \'6ccd780c-baba-1026-9564-5b8c656024db\'\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(484,'UUID_SHORT',37,'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 source and replica 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: https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html\n\n','mysql> SELECT UUID_SHORT();\n -> 92395783831158784\n','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(485,'VALUES',37,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html'),(486,'ALTER DATABASE',38,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\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. This statement requires the ALTER privilege on the\ndatabase. 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. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\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\nhttps://dev.mysql.com/doc/refman/5.7/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\n*Note*:\n\nThe UPGRADE DATA DIRECTORY NAME clause is deprecated in MySQL 5.7 and\nremoved in MySQL 8.0. If it is necessary to convert MySQL 5.0 database\nor table names, a workaround is to upgrade a MySQL 5.0 installation to\nMySQL 5.1 before upgrading to MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-database.html'),(487,'ALTER SCHEMA',38,'Syntax:\nALTER {DATABASE | SCHEMA} [db_name]\n alter_option ...\nALTER {DATABASE | SCHEMA} db_name\n UPGRADE DATA DIRECTORY NAME\n\nalter_option: {\n [DEFAULT] CHARACTER SET [=] charset_name\n | [DEFAULT] COLLATE [=] collation_name\n}\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. This statement requires the ALTER privilege on the\ndatabase. 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. An error occurs if there\nis no default database.\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-charset\n\no https://dev.mysql.com/doc/refman/5.7/en/alter-database.html#alter-dat\n abase-upgrading\n\nCharacter Set and Collation Options\n\nThe CHARACTER SET clause changes the default database character set.\nThe COLLATE clause changes the default database collation. For\ninformation about character set and collation names, see\nhttps://dev.mysql.com/doc/refman/5.7/en/charset.html.\n\nTo see the available character sets and collations, use the SHOW\nCHARACTER SET and SHOW COLLATION statements, respectively. See [HELP\nSHOW CHARACTER SET], and [HELP SHOW COLLATION].\n\nA stored routine that uses the database defaults when the routine is\ncreated includes those defaults as part of its definition. (In a stored\nroutine, variables with character data types use the database defaults\nif the character set or collation are not specified explicitly. See\n[HELP CREATE PROCEDURE].) If you change the default character set or\ncollation for a database, any stored routines that are to use the new\ndefaults must be dropped and recreated.\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\nhttps://dev.mysql.com/doc/refman/5.7/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\n*Note*:\n\nThe UPGRADE DATA DIRECTORY NAME clause is deprecated in MySQL 5.7 and\nremoved in MySQL 8.0. If it is necessary to convert MySQL 5.0 database\nor table names, a workaround is to upgrade a MySQL 5.0 installation to\nMySQL 5.1 before upgrading to MySQL 8.0.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-database.html'),(488,'ALTER EVENT',38,'Syntax:\nALTER\n [DEFINER = 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: https://dev.mysql.com/doc/refman/5.7/en/alter-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-event.html'),(489,'ALTER FUNCTION',38,'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}\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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-logging.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-function.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-function.html'),(490,'ALTER INSTANCE',38,'Syntax:\nALTER INSTANCE ROTATE INNODB MASTER KEY\n\nALTER INSTANCE, introduced in MySQL 5.7.11, defines actions applicable\nto a MySQL server instance. The statement supports these actions:\n\no ALTER INSTANCE ROTATE INNODB MASTER KEY\n\n This action rotates the master encryption key used for InnoDB\n tablespace encryption. Key rotation requires the SUPER privilege. To\n perform this action, a keyring plugin must be installed and\n configured. For instructions, see\n https://dev.mysql.com/doc/refman/5.7/en/keyring.html.\n\n ALTER INSTANCE ROTATE INNODB MASTER KEY supports concurrent DML.\n However, it cannot be run concurrently with CREATE TABLE ...\n ENCRYPTION or ALTER TABLE ... ENCRYPTION operations, and locks are\n taken to prevent conflicts that could arise from concurrent execution\n of these statements. If one of the conflicting statements is running,\n it must complete before another can proceed.\n\n ALTER INSTANCE actions are written to the binary log so that they can\n be executed on replicated servers.\n\n For additional ALTER INSTANCE ROTATE INNODB MASTER KEY usage\n information, see\n https://dev.mysql.com/doc/refman/5.7/en/innodb-data-encryption.html.\n For information about keyring plugins, see\n https://dev.mysql.com/doc/refman/5.7/en/keyring.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-instance.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-instance.html'),(491,'ALTER LOGFILE GROUP',38,'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). You may optionally follow size with a one-letter abbreviation for\nan order of magnitude, similar to those used in my.cnf. Generally, this\nis one of the letters M (megabytes) or G (gigabytes). (Bug #13116514,\nBug #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: https://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-logfile-group.html'),(492,'ALTER PROCEDURE',38,'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}\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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-procedure.html'),(493,'ALTER SERVER',38,'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: https://dev.mysql.com/doc/refman/5.7/en/alter-server.html\n\n','ALTER SERVER s OPTIONS (USER \'sally\');\n','https://dev.mysql.com/doc/refman/5.7/en/alter-server.html'),(494,'ALTER TABLE',38,'Syntax:\nALTER TABLE tbl_name\n [alter_option [, alter_option] ...]\n [partition_options]\n\nalter_option: {\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] (key_part,...) [index_option] ...\n | ADD {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name]\n (key_part,...) [index_option] ...\n | ADD [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | ADD [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | ADD CHECK (expr)\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 {INDEX | KEY} old_index_name TO new_index_name\n | RENAME [TO | AS] new_tbl_name\n | {WITHOUT | WITH} VALIDATION\n}\n\npartition_options:\n partition_option [partition_option] ...\n\npartition_option: {\n ADD PARTITION (partition_definition)\n | DROP PARTITION partition_names\n | DISCARD PARTITION {partition_names | ALL} TABLESPACE\n | IMPORT PARTITION {partition_names | ALL} TABLESPACE\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 [{WITH | WITHOUT} VALIDATION]\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 | UPGRADE PARTITIONING\n}\n\nkey_part:\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}\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 | COMPRESSION [=] {\'ZLIB\' | \'LZ4\' | \'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\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}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\n\npartition_options:\n (see CREATE TABLE options)\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 https://dev.mysql.com/doc/refman/5.7/en/alter-table-problems.html.\n\no For information about generated columns, see\n https://dev.mysql.com/doc/refman/5.7/en/alter-table-generated-columns\n .html.\n\no For usage examples, see\n https://dev.mysql.com/doc/refman/5.7/en/alter-table-examples.html.\n\no With the mysql_info()\n (https://dev.mysql.com/doc/c-api/5.7/en/mysql-info.html) C API\n function, you can find out how many rows were copied by ALTER TABLE.\n See mysql_info()\n (https://dev.mysql.com/doc/c-api/5.7/en/mysql-info.html).\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-table.html'),(495,'ALTER TABLESPACE',38,'Syntax:\nALTER TABLESPACE tablespace_name\n {ADD | DROP} DATAFILE \'file_name\'\n [INITIAL_SIZE [=] size]\n [WAIT]\n ENGINE [=] engine_name\n\nThis statement is used either to add a new data file, or to drop a data\nfile 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). You may optionally follow size 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 (megabytes) or\nG (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 a 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\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects\n.html. 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.7. 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\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-files-table.\nhtml.\n\nALTER TABLESPACE is useful only with Disk Data storage for NDB Cluster.\nSee\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-tablespace.html'),(496,'ALTER VIEW',38,'Syntax:\nALTER\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = 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: https://dev.mysql.com/doc/refman/5.7/en/alter-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-view.html'),(497,'CREATE DATABASE',38,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: [DEFAULT] {\n CHARACTER SET [=] charset_name\n | COLLATE [=] collation_name\n}\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: https://dev.mysql.com/doc/refman/5.7/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-database.html'),(498,'CREATE SCHEMA',38,'Syntax:\nCREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name\n [create_option] ...\n\ncreate_option: [DEFAULT] {\n CHARACTER SET [=] charset_name\n | COLLATE [=] collation_name\n}\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: https://dev.mysql.com/doc/refman/5.7/en/create-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-database.html'),(499,'CREATE EVENT',38,'Syntax:\nCREATE\n [DEFINER = 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}\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 does not\nrun unless the Event Scheduler is enabled. For information about\nchecking Event Scheduler status and enabling it if necessary, see\nhttps://dev.mysql.com/doc/refman/5.7/en/events-configuration.html.\n\nCREATE EVENT requires the EVENT privilege for the schema in which the\nevent is to be created. If the DEFINER clause is present, the\nprivileges required depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/create-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-event.html'),(500,'CREATE INDEX',38,'Syntax:\nCREATE [UNIQUE | FULLTEXT | SPATIAL] INDEX index_name\n [index_type]\n ON tbl_name (key_part,...)\n [index_option]\n [algorithm_option | lock_option] ...\n\nkey_part:\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}\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\nNormally, you create all indexes on a table at the time the table\nitself is created with CREATE TABLE. See [HELP CREATE TABLE]. This\nguideline is especially important for InnoDB tables, where the primary\nkey determines the physical layout of rows in the data file. CREATE\nINDEX enables you to add indexes to existing tables.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-indexes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-index.html'),(501,'CREATE LOGFILE GROUP',38,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nThere can be only one log file group per NDB Cluster instance at any\ngiven time.\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. You may\noptionally follow either or both of these with a one-letter\nabbreviation for an order of magnitude, similar to those used in\nmy.cnf. Generally, this is one of the letters M (for megabytes) or G\n(for gigabytes).\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.7, 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\n(https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#s\nysvar_storage_engine)). In any case, if the engine is not specified as\nNDB or NDBCLUSTER, the CREATE LOGFILE GROUP statement appears to\nsucceed but actually fails to create the log file group, 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.7. 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\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-logfile-group.html'),(502,'CREATE PROCEDURE',38,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = 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}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements are used to create a stored routine (a stored\nprocedure or function). That is, the specified routine becomes known to\nthe server. By default, a stored routine is associated with the default\ndatabase. To associate the routine explicitly with a given database,\nspecify the name as db_name.sp_name when you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See [HELP CREATE FUNCTION UDF]. A UDF can be\nregarded as an external stored function. Stored functions share their\nnamespace with UDFs. See\nhttps://dev.mysql.com/doc/refman/5.7/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. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\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 OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.htm\nl.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\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\nhttps://dev.mysql.com/doc/refman/5.7/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 a\nCHARACTER SET specification.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\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\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_sp_no_retset)). For statements that can be determined only\nat runtime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.htm\nl.\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: https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'),(503,'CREATE FUNCTION',38,'Syntax:\nCREATE\n [DEFINER = user]\n PROCEDURE sp_name ([proc_parameter[,...]])\n [characteristic ...] routine_body\n\nCREATE\n [DEFINER = 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}\n\nroutine_body:\n Valid SQL routine statement\n\nThese statements are used to create a stored routine (a stored\nprocedure or function). That is, the specified routine becomes known to\nthe server. By default, a stored routine is associated with the default\ndatabase. To associate the routine explicitly with a given database,\nspecify the name as db_name.sp_name when you create it.\n\nThe CREATE FUNCTION statement is also used in MySQL to support UDFs\n(user-defined functions). See [HELP CREATE FUNCTION UDF]. A UDF can be\nregarded as an external stored function. Stored functions share their\nnamespace with UDFs. See\nhttps://dev.mysql.com/doc/refman/5.7/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. If the DEFINER clause is present, the privileges required\ndepend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE FUNCTION might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-routines-privileges.html\n.\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 OUT or INOUT\nparameter. If you are calling the procedure from within a trigger, you\ncan also pass NEW.col_name as an OUT or INOUT parameter.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nRoutine parameters cannot be referenced in statements prepared within\nthe routine; see\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.htm\nl.\n\nThe following example shows a simple stored procedure that, given a\ncountry code, counts the number of cities for that country that appear\nin the city table of the world database. The country code is passed\nusing an IN parameter, and the city count is returned using an OUT\nparameter:\n\nmysql> delimiter //\n\nmysql> CREATE PROCEDURE citycount (IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END//\nQuery OK, 0 rows affected (0.01 sec)\n\nmysql> delimiter ;\n\nmysql> CALL citycount(\'JPN\', @cities); -- cities in Japan\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 248 |\n+---------+\n1 row in set (0.00 sec)\n\nmysql> CALL citycount(\'FRA\', @cities); -- cities in France\nQuery OK, 1 row affected (0.00 sec)\n\nmysql> SELECT @cities;\n+---------+\n| @cities |\n+---------+\n| 40 |\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\nhttps://dev.mysql.com/doc/refman/5.7/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 a\nCHARACTER SET specification.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-compound-statements.html.\nIn practice, stored functions tend to use compound statements, unless\nthe body consists of a single RETURN statement.\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\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_sp_no_retset)). For statements that can be determined only\nat runtime to return a result set, a PROCEDURE %s can\'t return a result\nset in the given context error occurs (ER_SP_BADSELECT\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.htm\nl.\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: https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-procedure.html'),(504,'CREATE SERVER',38,'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}\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 is an identifier and may be quoted with single\nquotation marks.\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 are used to populate the\ncolumns in the mysql.servers table. The table columns are Server_name,\nHost, Db, Username, Password, Port and Socket.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-server.html\n\n','CREATE SERVER s\nFOREIGN DATA WRAPPER mysql\nOPTIONS (USER \'Remote\', HOST \'198.51.100.106\', DATABASE \'test\');\n','https://dev.mysql.com/doc/refman/5.7/en/create-server.html'),(505,'CREATE TABLE',38,'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 | {INDEX | KEY} [index_name] [index_type] (key_part,...)\n [index_option] ...\n | {FULLTEXT | SPATIAL} [INDEX | KEY] [index_name] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] PRIMARY KEY\n [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] UNIQUE [INDEX | KEY]\n [index_name] [index_type] (key_part,...)\n [index_option] ...\n | [CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name,...)\n reference_definition\n | CHECK (expr)\n}\n\ncolumn_definition: {\n data_type [NOT NULL | NULL] [DEFAULT default_value]\n [AUTO_INCREMENT] [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [COLLATE collation_name]\n [COLUMN_FORMAT {FIXED | DYNAMIC | DEFAULT}]\n [STORAGE {DISK | MEMORY}]\n [reference_definition]\n | data_type\n [COLLATE collation_name]\n [GENERATED ALWAYS] AS (expr)\n [VIRTUAL | STORED] [NOT NULL | NULL]\n [UNIQUE [KEY]] [[PRIMARY] KEY]\n [COMMENT \'string\']\n [reference_definition]\n}\n\ndata_type:\n (see https://dev.mysql.com/doc/refman/5.7/en/data-types.html)\n\nkey_part:\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}\n\nreference_definition:\n REFERENCES tbl_name (key_part,...)\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 | COMPRESSION [=] {\'ZLIB\' | \'LZ4\' | \'NONE\'}\n | CONNECTION [=] \'connect_string\'\n | {DATA | INDEX} DIRECTORY [=] \'absolute path to directory\'\n | DELAY_KEY_WRITE [=] {0 | 1}\n | ENCRYPTION [=] {\'Y\' | \'N\'}\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}]\n | UNION [=] (tbl_name[,tbl_name]...)\n}\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 [(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\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\nMySQL has no limit on the number of tables. The underlying file system\nmay have a limit on the number of files that represent tables.\nIndividual storage engines may impose engine-specific constraints.\nInnoDB permits up to 4 billion tables.\n\nFor information about the physical representation of a table, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-files.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-table.html'),(506,'FOREIGN KEY',38,'MySQL supports foreign keys, which permit cross-referencing related\ndata across tables, and foreign key constraints, which help keep the\nrelated data consistent.\n\nA foreign key relationship involves a parent table that holds the\ninitial column values, and a child table with column values that\nreference the parent column values. A foreign key constraint is defined\non the child table.\n\nThe essential syntax for a defining a foreign key constraint in a\nCREATE TABLE or ALTER TABLE statement includes the following:\n\n[CONSTRAINT [symbol]] FOREIGN KEY\n [index_name] (col_name, ...)\n REFERENCES tbl_name (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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/create-table-foreign-keys.html'),(507,'CREATE TABLESPACE',38,'Syntax:\nCREATE TABLESPACE tablespace_name\n\n InnoDB and NDB:\n ADD DATAFILE \'file_name\'\n\n InnoDB only:\n [FILE_BLOCK_SIZE = value]\n\n NDB only:\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 [=] \'string\']\n\n InnoDB and NDB:\n [ENGINE [=] engine_name]\n\nThis statement is used to create a tablespace. The precise syntax and\nsemantics depend on the storage engine used. In standard MySQL 5.7\nreleases, this is always an InnoDB tablespace. MySQL NDB Cluster 7.5\nalso supports tablespaces using the NDB storage engine in addition to\nthose using InnoDB.\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-innodb\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-ndb\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-options\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-notes\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-innodb-examples\n\no https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html#create\n -tablespace-ndb-examples\n\nConsiderations for InnoDB\n\nCREATE TABLESPACE syntax is used to create general tablespaces. A\ngeneral tablespace is a shared tablespace. It can hold multiple tables,\nand supports all table row formats. General tablespaces can be created\nin a location relative to or independent of the data directory.\n\nAfter creating an InnoDB general tablespace, you can use CREATE TABLE\ntbl_name ... TABLESPACE [=] tablespace_name or ALTER TABLE tbl_name\nTABLESPACE [=] tablespace_name to add tables to the tablespace. For\nmore information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\nConsiderations for NDB Cluster\n\nThis statement is used to create a tablespace, which can contain one or\nmore data files, providing storage space for NDB Cluster Disk Data\ntables (see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data.html).\nOne data file is created and added to the tablespace using this\nstatement. Additional data files may be added to the tablespace by\nusing the ALTER TABLESPACE statement (see [HELP ALTER TABLESPACE]).\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\nWhen setting EXTENT_SIZE or INITIAL_SIZE, you may optionally follow the\nnumber 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).\n\nINITIAL_SIZE and EXTENT_SIZE are subject to rounding as follows:\n\no EXTENT_SIZE is rounded up to the nearest whole multiple of 32K.\n\no INITIAL_SIZE is rounded down to the nearest whole multiple of 32K;\n this result is rounded up to the nearest whole multiple of\n EXTENT_SIZE (after any rounding).\n\n*Note*:\n\nNDB reserves 4% of a tablespace for data node restart operations. This\nreserved space cannot be used for data storage. This restriction\napplies beginning with NDB 7.6.\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\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. (See the example\nlater in this section.)\n\n(See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-files-table.\nhtml.)\n\nOptions\n\no ADD DATAFILE: Defines the name of a tablespace data file; this option\n is always required. The file_name, including any specified path, must\n be quoted with single or double quotation marks. File names (not\n counting the file extension) and directory names must be at least one\n byte in length. Zero length file names and directory names are not\n supported.\n\n Because there are considerable differences in how InnoDB and NDB\n treat data files, the two storage engines are covered separately in\n the discussion that follows.\n\n InnoDB data files An InnoDB tablespace supports only a single data\n file, whose name must include a .ibd extension.\n\n For an InnoDB tablespace, the data file is created by default in the\n MySQL data directory (datadir). To place the data file in a location\n other than the default, include an absolute directory path or a path\n relative to the default location.\n\n When an InnoDB tablespace is created outside of the data directory,\n an isl file is created in the data directory. To avoid conflicts with\n implicitly created file-per-table tablespaces, creating an InnoDB\n general tablespace in a subdirectory under the data directory is not\n supported. When creating an InnoDB general tablespace outside of the\n data directory, the directory must exist prior to creating the\n tablespace.\n\n *Note*:\n\n In MySQL 5.7, ALTER TABLESPACE is not supported by InnoDB.\n\n NDB data files An NDB tablespace supports multiple data files which\n can have any legal file names; more data files can be added to an NDB\n Cluster tablespace following its creation by using an ALTER\n TABLESPACE statement.\n\n An NDB tablespace data file is created by default in the data node\n file system directory---that is, the directory named ndb_nodeid_fs/TS\n under the data node\'s data directory (DataDir), where nodeid is the\n data node\'s NodeId. To place the data file in a location other than\n the default, include an absolute directory path or a path relative to\n the default location. If the directory specified does not exist, NDB\n attempts to create it; the system user account under which the data\n node process is running must have the appropriate permissions to do\n so.\n\n *Note*:\n\n When determining the path used for a data file, NDB does not expand\n the ~ (tilde) character.\n\n When multiple data nodes are run on the same physical host, the\n following considerations apply:\n\n o You cannot specify an absolute path when creating a data file.\n\n o It is not possible to create tablespace data files outside the data\n node file system directory, unless each data node has a separate\n data directory.\n\n o If each data node has its own data directory, data files can be\n created anywhere within this directory.\n\n o If each data node has its own data directory, it may also be\n possible to create a data file outside the node\'s data directory\n using a relative path, as long as this path resolves to a unique\n location on the host file system for each data node running on that\n host.\n\no FILE_BLOCK_SIZE: This option---which is specific to InnoDB, and is\n ignored by NDB---defines the block size for the tablespace data file.\n Values can be specified in bytes or kilobytes. For example, an 8\n kilobyte file block size can be specified as 8192 or 8K. If you do\n not specify this option, FILE_BLOCK_SIZE defaults to the\n innodb_page_size value. FILE_BLOCK_SIZE is required when you intend\n to use the tablespace for storing compressed InnoDB tables\n (ROW_FORMAT=COMPRESSED). In this case, you must define the tablespace\n FILE_BLOCK_SIZE when creating the tablespace.\n\n If FILE_BLOCK_SIZE is equal the innodb_page_size value, the\n tablespace can contain only tables having an uncompressed row format\n (COMPACT, REDUNDANT, and DYNAMIC). Tables with a COMPRESSED row\n format have a different physical page size than uncompressed tables.\n Therefore, compressed tables cannot coexist in the same tablespace as\n uncompressed tables.\n\n For a general tablespace to contain compressed tables,\n FILE_BLOCK_SIZE must be specified, and the FILE_BLOCK_SIZE value must\n be a valid compressed page size in relation to the innodb_page_size\n value. Also, the physical page size of the compressed table\n (KEY_BLOCK_SIZE) must be equal to FILE_BLOCK_SIZE/1024. For example,\n if innodb_page_size=16K, and FILE_BLOCK_SIZE=8K, the KEY_BLOCK_SIZE\n of the table must be 8. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/general-tablespaces.html.\n\no USE LOGFILE GROUP: Required for NDB, this is the name of a log file\n group previously created using CREATE LOGFILE GROUP. Not supported\n for InnoDB, where it fails with an error.\n\no EXTENT_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error. EXTENT_SIZE sets the size, in\n bytes, of the extents used by any files belonging to the tablespace.\n The default value is 1M. The minimum size is 32K, and theoretical\n maximum is 2G, although the practical maximum size depends on a\n number of factors. In most cases, changing the extent size does not\n have any measurable effect on performance, and the default value is\n recommended for all but the most unusual situations.\n\n An extent is a unit of disk space allocation. One extent is filled\n with as much data as that extent can contain before another extent is\n used. In theory, up to 65,535 (64K) extents may used per data file;\n however, the recommended maximum is 32,768 (32K). The recommended\n maximum size for a single data file is 32G---that is, 32K extents x 1\n MB per extent. In addition, once an extent is allocated to a given\n partition, it cannot be used to store data from a different\n partition; an extent cannot store data from more than one partition.\n This means, for example that a tablespace having a single datafile\n whose INITIAL_SIZE (described in the following item) is 256 MB and\n whose EXTENT_SIZE is 128M has just two extents, and so can be used to\n store data from at most two different disk data table partitions.\n\n You can see how many extents remain free in a given data file by\n querying the INFORMATION_SCHEMA.FILES table, and so derive an\n estimate for how much space remains free in the file. For further\n discussion and examples, see\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-files-tabl\n e.html.\n\no INITIAL_SIZE: This option is specific to NDB, and is not supported by\n InnoDB, where it fails with an error.\n\n The INITIAL_SIZE parameter sets the total size in bytes of the data\n file that was specific using ADD DATATFILE. Once this file has been\n created, its size cannot be changed; however, you can add more data\n files to the tablespace using ALTER TABLESPACE ... ADD DATAFILE.\n\n INITIAL_SIZE is optional; its default value is 134217728 (128 MB).\n\n On 32-bit systems, the maximum supported value for INITIAL_SIZE is\n 4294967296 (4 GB).\n\no AUTOEXTEND_SIZE: Currently ignored by MySQL; reserved for possible\n future use. Has no effect in any release of MySQL 5.7 or MySQL NDB\n Cluster 7.5, regardless of the storage engine used.\n\no MAX_SIZE: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no NODEGROUP: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no WAIT: Currently ignored by MySQL; reserved for possible future use.\n Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster 7.5,\n regardless of the storage engine used.\n\no COMMENT: Currently ignored by MySQL; reserved for possible future\n use. Has no effect in any release of MySQL 5.7 or MySQL NDB Cluster\n 7.5, regardless of the storage engine used.\n\no ENGINE: Defines the storage engine which uses the tablespace, where\n engine_name is the name of the storage engine. Currently, only the\n InnoDB storage engine is supported by standard MySQL 5.7 releases.\n MySQL NDB Cluster 7.5 supports both NDB and InnoDB tablespaces. The\n value of the default_storage_engine system variable is used for\n ENGINE if the option is not specified.\n\nNotes\n\no For the rules covering the naming of MySQL tablespaces, see\n https://dev.mysql.com/doc/refman/5.7/en/identifiers.html. In addition\n to these rules, the slash character (\"/\") is not permitted, nor can\n you use names beginning with innodb_, as this prefix is reserved for\n system use.\n\no Tablespaces do not support temporary tables.\n\no innodb_file_per_table, innodb_file_format, and innodb_file_format_max\n settings have no influence on CREATE TABLESPACE operations.\n innodb_file_per_table does not need to be enabled. General\n tablespaces support all table row formats regardless of file format\n settings. Likewise, general tablespaces support the addition of\n tables of any row format using CREATE TABLE ... TABLESPACE,\n regardless of file format settings.\n\no innodb_strict_mode is not applicable to general tablespaces.\n Tablespace management rules are strictly enforced independently of\n innodb_strict_mode. If CREATE TABLESPACE parameters are incorrect or\n incompatible, the operation fails regardless of the\n innodb_strict_mode setting. When a table is added to a general\n tablespace using CREATE TABLE ... TABLESPACE or ALTER TABLE ...\n TABLESPACE, innodb_strict_mode is ignored but the statement is\n evaluated as if innodb_strict_mode is enabled.\n\no Use DROP TABLESPACE to remove a tablespace. All tables must be\n dropped from a tablespace using DROP TABLE prior to dropping the\n tablespace. Before dropping an NDB Cluster tablespace you must also\n remove all its data files using one or more ALTER TABLESPACE ... DROP\n DATATFILE statements. See\n https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objec\n ts.html.\n\no All parts of an InnoDB table added to an InnoDB general tablespace\n reside in the general tablespace, including indexes and BLOB pages.\n\n For an NDB table assigned to a tablespace, only those columns which\n are not indexed are stored on disk, and actually use the tablespace\n data files. Indexes and indexed columns for all NDB tables are always\n kept in memory.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\no A general tablespace is not associated with any database or schema.\n\no ALTER TABLE ... DISCARD TABLESPACE and ALTER TABLE ...IMPORT\n TABLESPACE are not supported for tables that belong to a general\n tablespace.\n\no The server uses tablespace-level metadata locking for DDL that\n references general tablespaces. By comparison, the server uses\n table-level metadata locking for DDL that references file-per-table\n tablespaces.\n\no A generated or existing tablespace cannot be changed to a general\n tablespace.\n\no Tables stored in a general tablespace can only be opened in MySQL\n 5.7.6 or later due to the addition of new table flags.\n\no There is no conflict between general tablespace names and\n file-per-table tablespace names. The \"/\" character, which is present\n in file-per-table tablespace names, is not permitted in general\n tablespace names.\n\no mysqldump and mysqlpump do not dump InnoDB CREATE TABLESPACE\n statements.\n\nInnoDB Examples\n\nThis example demonstrates creating a general tablespace and adding\nthree uncompressed tables of different row formats.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' ENGINE=INNODB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=REDUNDANT;\n\nmysql> CREATE TABLE t2 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=COMPACT;\n\nmysql> CREATE TABLE t3 (c1 INT PRIMARY KEY) TABLESPACE ts1 ROW_FORMAT=DYNAMIC;\n\nThis example demonstrates creating a general tablespace and adding a\ncompressed table. The example assumes a default innodb_page_size value\nof 16K. The FILE_BLOCK_SIZE of 8192 requires that the compressed table\nhave a KEY_BLOCK_SIZE of 8.\n\nmysql> CREATE TABLESPACE `ts2` ADD DATAFILE \'ts2.ibd\' FILE_BLOCK_SIZE = 8192 Engine=InnoDB;\n\nmysql> CREATE TABLE t4 (c1 INT PRIMARY KEY) TABLESPACE ts2 ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=8;\n\nNDB Example\n\nSuppose that you wish to create an NDB Cluster Disk Data tablespace\nnamed myts using a datafile named mydata-1.dat. An NDB tablespace\nalways requires the use of a log file group consisting of one or more\nundo log files. For this example, we first create a log file group\nnamed mylg that contains one undo long file named myundo-1.dat, using\nthe CREATE LOGFILE GROUP statement shown here:\n\nmysql> CREATE LOGFILE GROUP myg1\n -> ADD UNDOFILE \'myundo-1.dat\'\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (3.29 sec)\n\nNow you can create the tablespace previously described using the\nfollowing statement:\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (2.98 sec)\n\nYou can now create a Disk Data table using a CREATE TABLE statement\nwith the TABLESPACE and STORAGE DISK options, similar to what is shown\nhere:\n\nmysql> CREATE TABLE mytable (\n -> id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,\n -> lname VARCHAR(50) NOT NULL,\n -> fname VARCHAR(50) NOT NULL,\n -> dob DATE NOT NULL,\n -> joined DATE NOT NULL,\n -> INDEX(last_name, first_name)\n -> )\n -> TABLESPACE myts STORAGE DISK\n -> ENGINE=NDB;\nQuery OK, 0 rows affected (1.41 sec)\n\nIt is important to note that only the dob and joined columns from\nmytable are actually stored on disk, due to the fact that the id,\nlname, and fname columns are all indexed.\n\nAs mentioned previously, when CREATE TABLESPACE is used with ENGINE [=]\nNDB, a tablespace and associated data file are created on each NDB\nCluster data node. You can verify that the data files were created and\nobtain information about them by querying the INFORMATION_SCHEMA.FILES\ntable, as shown here:\n\nmysql> SELECT FILE_NAME, FILE_TYPE, LOGFILE_GROUP_NAME, STATUS, EXTRA\n -> FROM INFORMATION_SCHEMA.FILES\n -> WHERE TABLESPACE_NAME = \'myts\';\n\n+--------------+------------+--------------------+--------+----------------+\n| file_name | file_type | logfile_group_name | status | extra |\n+--------------+------------+--------------------+--------+----------------+\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=5 |\n| mydata-1.dat | DATAFILE | mylg | NORMAL | CLUSTER_NODE=6 |\n| NULL | TABLESPACE | mylg | NORMAL | NULL |\n+--------------+------------+--------------------+--------+----------------+\n3 rows in set (0.01 sec)\n\nFor additional information and examples, see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-disk-data-objects\n.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-tablespace.html'),(508,'CREATE TRIGGER',38,'Syntax:\nCREATE\n [DEFINER = user]\n TRIGGER trigger_name\n trigger_time trigger_event\n ON tbl_name FOR EACH ROW\n [trigger_order]\n trigger_body\n\ntrigger_time: { BEFORE | AFTER }\n\ntrigger_event: { INSERT | UPDATE | DELETE }\n\ntrigger_order: { FOLLOWS | PRECEDES } other_trigger_name\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\nhttps://dev.mysql.com/doc/refman/5.7/en/trigger-syntax.html.\n\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\nwith the trigger. If the DEFINER clause is present, the privileges\nrequired depend on the user value, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nIf binary logging is enabled, CREATE TRIGGER might require the SUPER\nprivilege, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/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\n TABLE 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: https://dev.mysql.com/doc/refman/5.7/en/create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-trigger.html'),(509,'CREATE VIEW',38,'Syntax:\nCREATE\n [OR REPLACE]\n [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]\n [DEFINER = 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\nhttps://dev.mysql.com/doc/refman/5.7/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 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. If the DEFINER clause\nis present, the privileges required depend on the user value, as\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\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 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.\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 the DEFINER clause is present, the user value should be a MySQL\naccount specified as \'user_name\'@\'host_name\', CURRENT_USER, or\nCURRENT_USER(). The permitted user values depend on the privileges you\nhold, as discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.\nAlso see that section for additional information about view security.\n\nIf the DEFINER clause is omitted, the default definer is the user who\nexecutes the CREATE VIEW statement. This is the same as specifying\nDEFINER = CURRENT_USER explicitly.\n\nWithin a view definition, the CURRENT_USER function returns the view\'s\nDEFINER value by default. For views defined with the SQL SECURITY\nINVOKER characteristic, CURRENT_USER returns the account for the view\'s\ninvoker. For information about user auditing within views, see\nhttps://dev.mysql.com/doc/refman/5.7/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. For more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/view-algorithms.html, as well\nas\nhttps://dev.mysql.com/doc/refman/5.7/en/derived-table-optimization.html\n.\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\nA generated column in a view is considered updatable because it is\npossible to assign to it. However, if such a column is updated\nexplicitly, the only permitted value is DEFAULT. For information about\ngenerated columns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.\nhtml.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/view-updatability.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/view-check-option.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-view.html'),(510,'DROP DATABASE',38,'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: https://dev.mysql.com/doc/refman/5.7/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-database.html'),(511,'DROP SCHEMA',38,'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: https://dev.mysql.com/doc/refman/5.7/en/drop-database.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-database.html'),(512,'DROP EVENT',38,'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: https://dev.mysql.com/doc/refman/5.7/en/drop-event.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-event.html'),(513,'DROP INDEX',38,'Syntax:\nDROP INDEX 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: https://dev.mysql.com/doc/refman/5.7/en/drop-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-index.html'),(514,'DROP PROCEDURE',38,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThese statements are used to drop a stored routine (a stored procedure\nor function). That is, the specified routine is removed from the\nserver. (DROP FUNCTION is also used to drop user-defined functions; see\n[HELP DROP FUNCTION UDF].)\n\nTo drop a stored routine, you must have the ALTER ROUTINE privilege for\nit. (If the automatic_sp_privileges system variable is enabled, that\nprivilege and EXECUTE are granted automatically to the routine creator\nwhen the routine is created and dropped from the creator when the\nroutine is dropped. See\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html'),(515,'DROP FUNCTION',38,'Syntax:\nDROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name\n\nThese statements are used to drop a stored routine (a stored procedure\nor function). That is, the specified routine is removed from the\nserver. (DROP FUNCTION is also used to drop user-defined functions; see\n[HELP DROP FUNCTION UDF].)\n\nTo drop a stored routine, you must have the ALTER ROUTINE privilege for\nit. (If the automatic_sp_privileges system variable is enabled, that\nprivilege and EXECUTE are granted automatically to the routine creator\nwhen the routine is created and dropped from the creator when the\nroutine is dropped. See\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-procedure.html'),(516,'DROP SERVER',38,'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: https://dev.mysql.com/doc/refman/5.7/en/drop-server.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-server.html'),(517,'DROP TABLE',38,'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! For each table, it removes the table\ndefinition and all table data. If the table is partitioned, the\nstatement removes the table definition, all its partitions, all data\nstored in those partitions, and all partition definitions associated\nwith the dropped table.\n\nDropping a table also drops any triggers for the table.\n\nDROP TABLE causes an implicit commit, except when used with the\nTEMPORARY keyword. See\nhttps://dev.mysql.com/doc/refman/5.7/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, DROP TABLE\nbehavior depends on whether the IF EXISTS clause is given:\n\no Without IF EXISTS, the statement drops all named tables that do\n exist, and returns an error indicating which nonexisting tables it\n was unable to drop.\n\no With IF EXISTS, no error occurs for nonexisting tables. The statement\n drops all named tables that do exist, and generates a NOTE diagnostic\n for each nonexistent table. These notes can be displayed with SHOW\n WARNINGS. See [HELP SHOW WARNINGS].\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\nIncluding the TEMPORARY keyword is a good way to prevent accidentally\ndropping non-TEMPORARY tables.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/forcing-innodb-recovery.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-table.html'),(518,'DROP TABLESPACE',38,'Syntax:\nDROP TABLESPACE tablespace_name\n [ENGINE [=] engine_name]\n\nThis statement drops a tablespace that was previously created using\nCREATE TABLESPACE. It is supported with all MySQL NDB Cluster 7.5\nreleases, and with InnoDB in the standard MySQL Server as well.\n\nENGINE sets the storage engine that uses the tablespace, where\nengine_name is the name of the storage engine. Currently, the values\nInnoDB and NDB are supported. If not set, the value of\ndefault_storage_engine is used. If it is not the same as the storage\nengine used to create the tablespace, the DROP TABLESPACE statement\nfails.\n\nFor an InnoDB tablespace, all tables must be dropped from the\ntablespace prior to a DROP TABLESPACE operation. If the tablespace is\nnot empty, DROP TABLESPACE returns an error.\n\nAs with the InnoDB system tablespace, truncating or dropping InnoDB\ntables stored in a general tablespace creates free space in the\ntablespace .ibd data file, which can only be used for new InnoDB data.\nSpace is not released back to the operating system by such operations\nas it is for file-per-table tablespaces.\n\nAn NDB tablespace to be dropped must not contain any data files; in\nother words, before you can drop an NDB tablespace, you must first drop\neach of its data files using ALTER TABLESPACE ... DROP DATAFILE.\n\nNotes\n\no Tablespaces are not deleted automatically. A tablespace must be\n dropped explicitly using DROP TABLESPACE. DROP DATABASE has no effect\n in this regard, even if the operation drops all tables belonging to\n the tablespace.\n\no A DROP DATABASE operation can drop tables that belong to a general\n tablespace but it cannot drop the tablespace, even if the operation\n drops all tables that belong to the tablespace. The tablespace must\n be dropped explicitly using DROP TABLESPACE tablespace_name.\n\no Similar to the system tablespace, truncating or dropping tables\n stored in a general tablespace creates free space internally in the\n general tablespace .ibd data file which can only be used for new\n InnoDB data. Space is not released back to the operating system as it\n is for file-per-table tablespaces.\n\nInnoDB Example\n\nThis example demonstrates how to drop an InnoDB general tablespace. The\ngeneral tablespace ts1 is created with a single table. Before dropping\nthe tablespace, the table must be dropped.\n\nmysql> CREATE TABLESPACE `ts1` ADD DATAFILE \'ts1.ibd\' Engine=InnoDB;\n\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) TABLESPACE ts1 Engine=InnoDB;\n\nmysql> DROP TABLE t1;\n\nmysql> DROP TABLESPACE ts1;\n\nNDB Example\n\nThis example shows how to drop an NDB tablespace myts having a data\nfile named mydata-1.dat after first creating the tablespace, and\nassumes the existence of a log file group named mylg (see [HELP CREATE\nLOGFILE GROUP]).\n\nmysql> CREATE TABLESPACE myts\n -> ADD DATAFILE \'mydata-1.dat\'\n -> USE LOGFILE GROUP mylg\n -> ENGINE=NDB;\n\nYou must remove all data files from the tablespace using ALTER\nTABLESPACE, as shown here, before it can be dropped:\n\nmysql> ALTER TABLESPACE myts\n -> DROP DATAFILE \'mydata-1.dat\'\n -> ENGINE=NDB;\n\nmysql> DROP TABLESPACE myts;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-tablespace.html'),(519,'DROP TRIGGER',38,'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: https://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-trigger.html'),(520,'DROP VIEW',38,'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\n*Note*:\n\nIn MySQL 8.0, DROP VIEW fails if any views named in the argument list\ndo not exist. Due to the change in behavior, a partially completed DROP\nVIEW operation on a MySQL 5.7 source fails when replicated to a MySQL\n8.0 replica. To avoid this failure scenario, use IF EXISTS syntax in\nDROP VIEW statements to prevent an error from occurring for views that\ndo not exist. For more information, see Atomic Data Definition\nStatement Support\n(https://dev.mysql.com/doc/refman/8.0/en/atomic-ddl.html).\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: https://dev.mysql.com/doc/refman/5.7/en/drop-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-view.html'),(521,'RENAME TABLE',38,'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 new_table, use this\nstatement:\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\nMetadata locks on tables are acquired in name order, which in some\ncases can make a difference in operation outcome when multiple\ntransactions execute concurrently. See\nhttps://dev.mysql.com/doc/refman/5.7/en/metadata-locking.html.\n\nTo execute RENAME TABLE, there must be no active transactions or tables\nlocked with LOCK TABLES. With the transaction table locking conditions\nsatisfied, the rename operation is done atomically; no other session\ncan access any of the tables 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 table\nfiles.\n\nIf a table has triggers, attempts to rename the table into a different\ndatabase fail with a Trigger in wrong schema (ER_TRG_IN_WRONG_SCHEMA\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_trg_in_wrong_schema)) error.\n\nTo rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE\ninstead.\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 tbl_name TO new_tbl_name changes internally generated\nforeign key constraint names and user-defined foreign key constraint\nnames that begin with the string \"tbl_name_ibfk_\" to reflect the new\ntable name. InnoDB interprets foreign key constraint names that begin\nwith the string \"tbl_name_ibfk_\" as 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 for them to function properly.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/rename-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/rename-table.html'),(522,'TRUNCATE TABLE',38,'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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/truncate-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/truncate-table.html'),(523,'CALL',39,'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()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-affected-rows.html)\nfunction.\n\nFor information about the effect of unhandled conditions on procedure\nparameters, see\nhttps://dev.mysql.com/doc/refman/5.7/en/conditions-and-parameters.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/call.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/call.html'),(524,'DELETE',39,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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 TABLES].\n\nThe speed of delete operations may also be affected by factors\ndiscussed in\nhttps://dev.mysql.com/doc/refman/5.7/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 Table Support\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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/delete.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/delete.html'),(525,'DO',39,'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: https://dev.mysql.com/doc/refman/5.7/en/do.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/do.html'),(526,'HANDLER',39,'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: https://dev.mysql.com/doc/refman/5.7/en/handler.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/handler.html'),(527,'INSERT',39,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nIn MySQL 5.7, the DELAYED keyword is accepted but ignored by the\nserver. For the reasons for this, see [HELP INSERT DELAYED],\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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/insert.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert.html'),(528,'INSERT SELECT',39,'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: https://dev.mysql.com/doc/refman/5.7/en/insert-select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert-select.html'),(529,'INSERT DELAYED',39,'Syntax:\nINSERT DELAYED ...\n\nThe DELAYED option for the INSERT statement is a MySQL extension to\nstandard SQL. In previous versions of MySQL, it can be used for certain\nkinds of tables (such as MyISAM), such that when a client uses INSERT\nDELAYED, it gets an okay from the server at once, and the row is queued\nto be inserted when the table is not in use by any other thread.\n\nDELAYED inserts and replaces were deprecated in MySQL 5.6. In MySQL\n5.7, DELAYED is not supported. The server recognizes but ignores the\nDELAYED keyword, handles the insert as a nondelayed insert, and\ngenerates an ER_WARN_LEGACY_SYNTAX_CONVERTED warning (\"INSERT DELAYED\nis no longer supported. The statement was converted to INSERT\"). The\nDELAYED keyword is scheduled for removal in a future release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html'),(530,'LOAD DATA',39,'Syntax:\nLOAD DATA\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n 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 statement reads rows from a text file into a table at a\nvery high speed. LOAD DATA is the complement of SELECT ... INTO\nOUTFILE. (See\nhttps://dev.mysql.com/doc/refman/5.7/en/select-into.html.) To write\ndata from a table to a file, use SELECT ... INTO OUTFILE. To read the\nfile back into a table, use LOAD DATA. The syntax of the FIELDS and\nLINES clauses is the same for both statements.\n\nYou can also load data files by using the mysqlimport utility; see\nhttps://dev.mysql.com/doc/refman/5.7/en/mysqlimport.html. mysqlimport\noperates by sending a LOAD DATA statement to the server.\n\nFor more information about the efficiency of INSERT versus LOAD DATA\nand speeding up LOAD DATA, see\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-optimization.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/load-data.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-data.html'),(531,'LOAD XML',39,'Syntax:\nLOAD XML\n [LOW_PRIORITY | CONCURRENT] [LOCAL]\n INFILE \'file_name\'\n [REPLACE | IGNORE]\n INTO TABLE [db_name.]tbl_name\n [CHARACTER SET charset_name]\n [ROWS IDENTIFIED BY \'\']\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. By default, the \nelement is considered to be the equivalent of a database table row;\nthis 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\n\no Column names as tags and column values as the content of these tags:\n\n\n value1\n value2\n\n\no Column names are the name attributes of tags, and values are\n the contents of these tags:\n\n\n value1\n value2\n\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\nIn MySQL 5.7, LOAD XML does not support CDATA sections in the source\nXML. This limitation is removed in MySQL 8.0. (Bug #30753708, Bug\n#98199)\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: https://dev.mysql.com/doc/refman/5.7/en/load-xml.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-xml.html'),(532,'REPLACE',39,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html.\n\nDELAYED inserts and replaces were deprecated in MySQL 5.6. In MySQL\n5.7, DELAYED is not supported. The server recognizes but ignores the\nDELAYED keyword, handles the replace as a nondelayed replace, and\ngenerates an ER_WARN_LEGACY_SYNTAX_CONVERTED warning. (\"REPLACE DELAYED\nis no longer supported. The statement was converted to REPLACE.\") You\nshould expect the DELAYED keyword to be removed in a future release.\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\nIf a generated column is replaced explicitly, the only permitted value\nis DEFAULT. For information about generated columns, see\nhttps://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.\nhtml.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/replace.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/replace.html'),(533,'SELECT',39,'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 [into_option]\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_option]\n [FOR UPDATE | LOCK IN SHARE MODE]\n\ninto_option: {\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}\n\nSELECT is used to retrieve rows selected from one or more tables, and\ncan include UNION statements and subqueries. See [HELP UNION], and\nhttps://dev.mysql.com/doc/refman/5.7/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 with\n a list of partitions or subpartitions (or both) following the name of\n the table in a table_reference (see [HELP JOIN]). In this case, rows\n are selected only from the partitions listed, and any other\n partitions of the table are ignored. For more information and\n examples, see\n https://dev.mysql.com/doc/refman/5.7/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 https://dev.mysql.com/doc/refman/5.7/en/partitioning-limitations-lock\n ing.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 (group)\n functions. See\n https://dev.mysql.com/doc/refman/5.7/en/expressions.html, and\n https://dev.mysql.com/doc/refman/5.7/en/functions.html.\n\nSELECT can also be used to retrieve rows computed without reference to\nany table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/select.html'),(534,'DUAL',39,'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: https://dev.mysql.com/doc/refman/5.7/en/select.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/select.html'),(535,'JOIN',39,'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}\n\ntable_reference: {\n table_factor\n | joined_table\n}\n\ntable_factor: {\n tbl_name [PARTITION (partition_names)]\n [[AS] alias] [index_hint_list]\n | table_subquery [AS] alias\n | ( table_references )\n}\n\njoined_table: {\n table_reference [INNER | CROSS] JOIN table_factor [join_specification]\n | table_reference STRAIGHT_JOIN table_factor\n | table_reference STRAIGHT_JOIN table_factor ON search_condition\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_specification\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\n}\n\njoin_specification: {\n ON search_condition\n | USING (join_column_list)\n}\n\njoin_column_list:\n column_name [, column_name] ...\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|FORCE} {INDEX|KEY}\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\n}\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/index-hints.html. Optimizer\nhints and the optimizer_switch system variable are other ways to\ninfluence optimizer use of indexes. See\nhttps://dev.mysql.com/doc/refman/5.7/en/optimizer-hints.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/switchable-optimizations.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/join.html'),(536,'UNION',39,'Syntax:\nSELECT ...\nUNION [ALL | DISTINCT] SELECT ...\n[UNION [ALL | DISTINCT] SELECT ...]\n\nUNION combines the result from multiple SELECT statements into a single\nresult set. Example:\n\nmysql> SELECT 1, 2;\n+---+---+\n| 1 | 2 |\n+---+---+\n| 1 | 2 |\n+---+---+\nmysql> SELECT \'a\', \'b\';\n+---+---+\n| a | b |\n+---+---+\n| a | b |\n+---+---+\nmysql> SELECT 1, 2 UNION SELECT \'a\', \'b\';\n+---+---+\n| 1 | 2 |\n+---+---+\n| 1 | 2 |\n| a | b |\n+---+---+\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-result-set\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-distinct-all\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-order-by-lim\n it\n\no https://dev.mysql.com/doc/refman/5.7/en/union.html#union-restrictions\n\nResult Set Column Names and Data Types\n\nThe column names for a UNION result set are taken from the column names\nof the first SELECT statement.\n\nSelected columns listed in corresponding positions of each SELECT\nstatement should have the same data type. For example, the first column\nselected by the first statement should have the same type as the first\ncolumn selected by the other statements. If the data types of\ncorresponding SELECT columns do not match, the types and lengths of the\ncolumns in the UNION result take into account the values retrieved by\nall the SELECT statements. For example, consider the following, where\nthe column length is not constrained to the length of the value from\nthe first SELECT:\n\nmysql> SELECT REPEAT(\'a\',1) UNION SELECT REPEAT(\'b\',20);\n+----------------------+\n| REPEAT(\'a\',1) |\n+----------------------+\n| a |\n| bbbbbbbbbbbbbbbbbbbb |\n+----------------------+\n\nUNION DISTINCT and UNION ALL\n\nBy default, duplicate rows are removed from UNION results. The optional\nDISTINCT keyword has the same effect but makes it explicit. With the\noptional ALL keyword, duplicate-row removal does not occur and the\nresult includes all matching rows from all the SELECT statements.\n\nYou can mix UNION ALL and UNION DISTINCT in the same query. Mixed UNION\ntypes are treated such that a DISTINCT union overrides any ALL union to\nits left. A DISTINCT union can be produced explicitly by using UNION\nDISTINCT or implicitly by using UNION with no following DISTINCT or ALL\nkeyword.\n\nORDER BY and LIMIT in Unions\n\nTo apply an ORDER BY or LIMIT clause to an individual SELECT,\nparenthesize the SELECT and place the clause inside the parentheses:\n\n(SELECT a FROM t1 WHERE a=10 AND B=1 ORDER BY a LIMIT 10)\nUNION\n(SELECT a FROM t2 WHERE a=11 AND B=2 ORDER BY a LIMIT 10);\n\n*Note*:\n\nPrevious versions of MySQL may permit such statements without\nparentheses. In MySQL 5.7, the requirement for parentheses is enforced.\n\nUse of ORDER BY for individual SELECT statements implies nothing about\nthe order in which the rows appear in the final result because UNION by\ndefault produces an unordered set of rows. Therefore, ORDER BY in this\ncontext typically is used in conjunction with LIMIT, to determine the\nsubset of the selected rows to retrieve for the SELECT, even though it\ndoes not necessarily affect the order of those rows in the final UNION\nresult. If ORDER BY appears without LIMIT in a SELECT, it is optimized\naway because it has no effect.\n\nTo use an ORDER BY or LIMIT clause to sort or limit the entire UNION\nresult, parenthesize the individual SELECT statements and place the\nORDER BY or LIMIT after the last one:\n\n(SELECT a FROM t1 WHERE a=10 AND B=1)\nUNION\n(SELECT a FROM t2 WHERE a=11 AND B=2)\nORDER BY a LIMIT 10;\n\nA statement without parentheses is equivalent to one parenthesized as\njust shown.\n\nThis kind of ORDER BY cannot use column references that include a table\nname (that is, names in tbl_name.col_name format). Instead, provide a\ncolumn alias in the first SELECT statement and refer to the alias in\nthe ORDER BY. (Alternatively, refer to the column in the ORDER BY using\nits column position. However, use of column positions is deprecated.)\n\nAlso, if a column to be sorted is aliased, the ORDER BY clause must\nrefer to the alias, not the column name. The first of the following\nstatements is permitted, but the second fails with an Unknown column\n\'a\' in \'order clause\' error:\n\n(SELECT a AS b FROM t) UNION (SELECT ...) ORDER BY b;\n(SELECT a AS b FROM t) UNION (SELECT ...) ORDER BY a;\n\nTo cause rows in a UNION result to consist of the sets of rows\nretrieved by each SELECT one after the other, select an additional\ncolumn in each SELECT to use as a sort column and add an ORDER BY that\nsorts on that column following the last SELECT:\n\n(SELECT 1 AS sort_col, col1a, col1b, ... FROM t1)\nUNION\n(SELECT 2, col2a, col2b, ... FROM t2) ORDER BY sort_col;\n\nTo additionally maintain sort order within individual SELECT results,\nadd a secondary column to the ORDER BY clause:\n\n(SELECT 1 AS sort_col, col1a, col1b, ... FROM t1)\nUNION\n(SELECT 2, col2a, col2b, ... FROM t2) ORDER BY sort_col, col1a;\n\nUse of an additional column also enables you to determine which SELECT\neach row comes from. Extra columns can provide other identifying\ninformation as well, such as a string that indicates a table name.\n\nUNION queries with an aggregate function in an ORDER BY clause are\nrejected with an ER_AGGREGATE_ORDER_FOR_UNION\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_aggregate_order_for_union) error. Example:\n\nSELECT 1 AS foo UNION SELECT 2 ORDER BY MAX(1);\n\nUNION Restrictions\n\nIn a UNION, the SELECT statements are normal select statements, but\nwith the following restrictions:\n\no HIGH_PRIORITY in the first SELECT has no effect. HIGH_PRIORITY in any\n subsequent SELECT produces a syntax error.\n\no Only the last SELECT statement can use an INTO clause. However, the\n entire UNION result is written to the INTO output destination.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/union.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/union.html'),(537,'UPDATE',39,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-selection.html.\n\nwhere_condition is an expression that evaluates to true for each row to\nbe updated. For expression syntax, see\nhttps://dev.mysql.com/doc/refman/5.7/en/expressions.html.\n\ntable_references and where_condition are specified as described in\nhttps://dev.mysql.com/doc/refman/5.7/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. For more information, see\n https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#ignore-effect-o\n n-execution.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/update.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/update.html'),(538,'START TRANSACTION',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\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,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled 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 https://dev.mysql.com/doc/refman/5.7/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. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT 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.\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 https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l 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 SET TRANSACTION].\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(539,'BEGIN',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\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,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled 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 https://dev.mysql.com/doc/refman/5.7/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. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT 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.\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 https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l 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 SET TRANSACTION].\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(540,'COMMIT',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\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,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled 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 https://dev.mysql.com/doc/refman/5.7/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. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT 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.\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 https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l 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 SET TRANSACTION].\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(541,'ROLLBACK',40,'Syntax:\nSTART TRANSACTION\n [transaction_characteristic [, transaction_characteristic] ...]\n\ntransaction_characteristic: {\n WITH CONSISTENT SNAPSHOT\n | READ WRITE\n | READ ONLY\n}\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,\nwhen not otherwise inside a transaction, each statement is atomic, as\nif it were surrounded by START TRANSACTION and COMMIT. You cannot use\nROLLBACK to undo the effect; however, if an error occurs during\nstatement execution, the statement is rolled 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 https://dev.mysql.com/doc/refman/5.7/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. As of MySQL 5.7.2, a warning is generated\n when the WITH CONSISTENT 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.\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 https://dev.mysql.com/doc/refman/5.7/en/innodb-performance-ro-txn.htm\n l 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 SET TRANSACTION].\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/commit.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/commit.html'),(542,'SAVEPOINT',40,'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: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(543,'ROLLBACK TO SAVEPOINT',40,'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: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(544,'RELEASE SAVEPOINT',40,'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: https://dev.mysql.com/doc/refman/5.7/en/savepoint.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/savepoint.html'),(545,'LOCK TABLES',40,'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}\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 in\nhttps://dev.mysql.com/doc/refman/5.7/en/lock-tables.html#lock-tables-re\nstrictions.\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. As of\nMySQL 5.7.32, LOCK TABLES checks that the view definer has the proper\nprivileges on the tables underlying the view.\n\nIf you lock a table explicitly with LOCK TABLES, any tables used in\ntriggers are also locked implicitly, as described in\nhttps://dev.mysql.com/doc/refman/5.7/en/lock-tables.html#lock-tables-an\nd-triggers.\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: https://dev.mysql.com/doc/refman/5.7/en/lock-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/lock-tables.html'),(546,'SET TRANSACTION',40,'Syntax:\nSET [GLOBAL | SESSION] TRANSACTION\n transaction_characteristic [, transaction_characteristic] ...\n\ntransaction_characteristic: {\n ISOLATION LEVEL level\n | access_mode\n}\n\nlevel: {\n REPEATABLE READ\n | READ COMMITTED\n | READ UNCOMMITTED\n | SERIALIZABLE\n}\n\naccess_mode: {\n READ WRITE\n | READ ONLY\n}\n\nThis statement specifies transaction characteristics. It takes a list\nof one or more characteristic values separated by commas. Each\ncharacteristic value sets the transaction isolation level or access\nmode. The isolation level is used for operations on InnoDB tables. The\naccess mode specifies whether transactions operate in read/write or\nread-only mode.\n\nIn addition, SET TRANSACTION can include an optional GLOBAL or SESSION\nkeyword to indicate the scope of the statement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-transaction.html'),(547,'XA',40,'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 [CONVERT XID]\n\nFor XA START, the JOIN and RESUME clauses are recognized but have no\neffect.\n\nFor XA END the SUSPEND [FOR MIGRATE] clause is recognized but has no\neffect.\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nXID values may contain nonprintable characters. As of MySQL 5.7.5, XA\nRECOVER permits an optional CONVERT XID clause so that clients can\nrequest XID values in hexadecimal.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/xa-statements.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/xa-statements.html'),(548,'PURGE BINARY LOGS',40,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nPURGE BINARY LOGS requires the BINLOG_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nbinlog-admin) privilege. This statement has no effect if the server was\nnot started with the --log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html'),(549,'PURGE MASTER LOGS',40,'Syntax:\nPURGE { BINARY | MASTER } LOGS {\n TO \'log_name\'\n | BEFORE datetime_expr\n}\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nPURGE BINARY LOGS requires the BINLOG_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nbinlog-admin) privilege. This statement has no effect if the server was\nnot started with the --log-bin option to enable binary logging.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html\n\n','PURGE BINARY LOGS TO \'mysql-bin.010\';\nPURGE BINARY LOGS BEFORE \'2019-04-02 22:46:26\';\n','https://dev.mysql.com/doc/refman/5.7/en/purge-binary-logs.html'),(550,'RESET MASTER',40,'Syntax:\nRESET MASTER\n\n*Warning*:\n\nUse this statement with caution to ensure you do not lose any wanted\nbinary log file data and GTID execution history.\n\nRESET MASTER requires the RELOAD privilege.\n\nFor a server where binary logging is enabled (log_bin is ON), RESET\nMASTER deletes all existing binary log files and resets the binary log\nindex file, resetting the server to its state before binary logging was\nstarted. A new empty binary log file is created so that binary logging\ncan be restarted.\n\nFor a server where GTIDs are in use (gtid_mode is ON), issuing RESET\nMASTER resets the GTID execution history. The value of the gtid_purged\nsystem variable is set to an empty string (\'\'), the global value (but\nnot the session value) of the gtid_executed system variable is set to\nan empty string, and the mysql.gtid_executed table is cleared (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\n#replication-gtids-gtid-executed-table). If the GTID-enabled server has\nbinary logging enabled, RESET MASTER also resets the binary log as\ndescribed above. Note that RESET MASTER is the method to reset the GTID\nexecution history even if the GTID-enabled server is a replica where\nbinary logging is disabled; RESET SLAVE has no effect on the GTID\nexecution history. For more information on resetting the GTID execution\nhistory, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-lifecycle.htm\nl#replication-gtids-execution-history.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset-master.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset-master.html'),(551,'SET SQL_LOG_BIN',40,'Syntax:\nSET sql_log_bin = {OFF|ON}\n\nThe sql_log_bin variable controls whether logging to the binary log is\nenabled for the current session (assuming that the binary log itself is\nenabled). The default value is ON. To disable or enable binary logging\nfor the current session, set the session sql_log_bin variable to OFF or\nON.\n\nSet this variable to OFF for a session to temporarily disable binary\nlogging while making changes to the source you do not want replicated\nto the replica.\n\nSetting the session value of this system variable is a restricted\noperation. The session user must have privileges sufficient to set\nrestricted session variables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/system-variable-privileges.html\n.\n\nIt is not possible to set the session value of sql_log_bin within a\ntransaction or subquery.\n\nSetting this variable to OFF prevents GTIDs from being assigned to\ntransactions in the binary log. If you are using GTIDs for replication,\nthis means that even when binary logging is later enabled again, the\nGTIDs written into the log from this point do not account for any\ntransactions that occurred in the meantime, so in effect those\ntransactions are lost.\n\nThe global sql_log_bin variable is read only and cannot be modified.\nThe global scope is deprecated; expect it to be removed in a future\nMySQL release.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-sql-log-bin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-sql-log-bin.html'),(552,'CHANGE MASTER TO',40,'Syntax:\nCHANGE MASTER TO option [, option] ... [ channel_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 = \'source_log_name\'\n | MASTER_LOG_POS = source_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 | MASTER_TLS_VERSION = \'protocol_list\'\n | IGNORE_SERVER_IDS = (server_id_list)\n}\n\nchannel_option:\n FOR CHANNEL channel\n\nserver_id_list:\n [server_id [, server_id] ... ]\n\nCHANGE MASTER TO changes the parameters that the replica uses for\nconnecting to the replication source server, for reading the source\'s\nbinary log, and reading the replica\'s relay log. It also updates the\ncontents of the replication metadata repositories (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replica-logs.html). CHANGE\nMASTER TO requires the SUPER privilege.\n\nPrior to MySQL 5.7.4, the replication threads must be stopped, using\nSTOP SLAVE if necessary, before issuing this statement. In MySQL 5.7.4\nand later, you can issue CHANGE MASTER TO statements on a running\nreplica without doing this, depending on the states of the replication\nSQL thread and replication I/O thread. The rules governing such use are\nprovided later in this section.\n\nWhen using a multithreaded replica (in other words\nslave_parallel_workers is greater than 0), stopping the replica can\ncause \"gaps\" in the sequence of transactions that have been executed\nfrom the relay log, regardless of whether the replica was stopped\nintentionally or otherwise. When such gaps exist, issuing CHANGE MASTER\nTO fails. The solution in this situation is to issue START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS which ensures that the gaps are closed.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the CHANGE MASTER TO statement to a specific\nreplication channel, and is used to add a new channel or modify an\nexisting channel. For example, to add a new channel called channel2:\n\nCHANGE MASTER TO MASTER_HOST=host1, MASTER_PORT=3002 FOR CHANNEL \'channel2\'\n\nIf no clause is named and no extra channels exist, the statement\napplies to the default channel.\n\nWhen using multiple replication channels, if a CHANGE MASTER TO\nstatement does not name a channel using a FOR CHANNEL channel clause,\nan error occurs. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\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 replication source server has changed, issue this statement to\ntell the replica about the new password:\n\nCHANGE MASTER TO MASTER_PASSWORD=\'new3cret\';\n\nMASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide\ninformation to the replica about how to connect to its replication\nsource server:\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 replication source server using TCP/IP.\n\n If you specify the MASTER_HOST or MASTER_PORT option, the replica\n assumes that the source is different from before (even if the option\n value is the same as its current value.) In this case, the old values\n for the source\'s binary log file name and position are considered no\n longer applicable, so if you do not specify MASTER_LOG_FILE and\n MASTER_LOG_POS in the statement, MASTER_LOG_FILE=\'\' and\n 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 Values used for MASTER_HOST and other CHANGE MASTER TO options are\n checked for linefeed (\\n or 0x0A) characters; the presence of such\n characters in these values causes the statement to fail with\n ER_MASTER_INFO\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html#error_er_master_info). (Bug #11758581, Bug #50801)\n\no MASTER_USER and MASTER_PASSWORD are the user name and password of the\n account to use for connecting to the source. If you specify\n MASTER_PASSWORD, MASTER_USER is also required. The password used for\n a replication user account in a CHANGE MASTER TO statement is limited\n to 32 characters in length; prior to MySQL 5.7.5, if the password was\n longer, the statement succeeded, but any excess characters were\n silently truncated. In MySQL 5.7.5 and later, trying to use a\n password of more than 32 characters causes CHANGE MASTER TO to fail.\n (Bug #11752299, Bug #43439)\n\n It is possible to set an empty user name by specifying\n MASTER_USER=\'\', but the replication channel cannot be started with an\n empty user name. Only set an empty MASTER_USER user name if you need\n to clear previously used credentials from the replica\'s repositories\n for security purposes, and do not attempt to use the channel\n afterwards.\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 and the MASTER_TLS_VERSION option specify\nhow the replica uses encryption and ciphers to secure the replication\nconnection. These options can be changed even on replicas that are\ncompiled without SSL support. They are saved to the source metadata\nrepository, but are ignored if the replica does not have SSL support\nenabled. The MASTER_SSL_xxx and MASTER_TLS_VERSION options perform the\nsame functions as the --ssl-xxx and --tls-version client options\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/connection-options.html#encrypt\ned-connection-options. The correspondence between the two sets of\noptions, and the use of the MASTER_SSL_xxx and MASTER_TLS_VERSION\noptions to set up a secure connection, is explained in\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-encrypted\n-connections.html.\n\nAs of MySQL 5.7.3, setting MASTER_SSL=1 means that the replica\'s\nconnection to the source must use SSL, or the connection attempt fails.\nBefore 5.7.3, the use of an SSL connection by the replica was not\nenforced with MASTER_SSL=1. This is analogous to the client-side\nmeaning of the --ssl command-line option; see\nhttps://dev.mysql.com/doc/refman/5.7/en/connection-options.html#encrypt\ned-connection-options.\n\nThe MASTER_HEARTBEAT_PERIOD, MASTER_CONNECT_RETRY, and\nMASTER_RETRY_COUNT options control how the replica recognizes that the\nconnection to the source has been lost and makes attempts to reconnect.\n\no The slave_net_timeout system variable specifies the number of seconds\n that the replica waits for either more data or a heartbeat signal\n from the source, before the replica considers the connection broken,\n aborts the read, and tries to reconnect. The default value is 60\n seconds (one minute). Prior to MySQL 5.7.7, the default was 3600\n seconds (one hour).\n\no The heartbeat interval, which stops the connection timeout occurring\n in the absence of data if the connection is still good, is controlled\n by the MASTER_HEARTBEAT_PERIOD option. A heartbeat signal is sent to\n the replica after that number of seconds, and the waiting period is\n reset whenever the source\'s binary log is updated with an event.\n Heartbeats are therefore sent by the source only if there are no\n unsent events in the binary log file for a period longer than this.\n The heartbeat interval interval is a decimal value having the range 0\n to 4294967 seconds and a resolution in milliseconds; the smallest\n nonzero value is 0.001. Setting interval to 0 disables heartbeats\n altogether. The heartbeat interval defaults to half the value of the\n slave_net_timeout system variable. It is recorded in the source\n metadata repository and shown in the\n replication_connection_configuration Performance Schema table.\n Issuing RESET SLAVE resets the heartbeat interval to the default\n value.\n\no Prior to MySQL 5.7.4, not including MASTER_HEARTBEAT_PERIOD caused\n CHANGE MASTER TO to reset the heartbeat interval to the default (half\n the value of the slave_net_timeout system variable), and\n Slave_received_heartbeats to 0. The heartbeat interval is now not\n reset except by RESET SLAVE. (Bug #18185490)\n\no Note that a change to the value or default setting of\n slave_net_timeout does not automatically change the heartbeat\n interval, whether that has been set explicitly or is using a\n previously calculated default. A warning is issued if you set\n @@GLOBAL.slave_net_timeout to a value less than that of the current\n heartbeat interval. If slave_net_timeout is changed, you must also\n issue CHANGE MASTER TO to adjust the heartbeat interval to an\n appropriate value so that the heartbeat signal occurs before the\n connection timeout. If you do not do this, the heartbeat signal has\n no effect, and if no data is received from the source, the replica\n can make repeated reconnection attempts, creating zombie dump\n threads.\n\no If the replica does need to reconnect, the first retry occurs\n immediately after the timeout. MASTER_CONNECT_RETRY specifies the\n interval between reconnection attempts, and MASTER_RETRY_COUNT limits\n the number of reconnection attempts. If both the default settings are\n used, the replica waits 60 seconds between reconnection attempts\n (MASTER_CONNECT_RETRY=60), and keeps attempting to reconnect at this\n rate for 60 days (MASTER_RETRY_COUNT=86400). These values are\n recorded in the source metadata repository and shown in the\n replication_connection_configuration Performance Schema table.\n MASTER_RETRY_COUNT supersedes the --master-retry-count server startup\n option.\n\nMASTER_DELAY specifies how many seconds behind the source the replica\nmust lag. An event received from the source is not executed until at\nleast interval seconds later than its execution on the source. 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\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-delayed.html.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing the MASTER_DELAY\noption can be executed on a running replica when the replication SQL\nthread is stopped.\n\nMASTER_BIND is for use on replicas having multiple network interfaces,\nand determines which of the replica\'s network interfaces is chosen for\nconnecting to the source.\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 a table for the source metadata repository (server started with\nmaster_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 replica to a specific network interface is also\nsupported by NDB Cluster.\n\nMASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the\nreplication I/O thread should begin reading from the source the next\ntime the thread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the\ncoordinates at which the replication SQL thread should begin reading\nfrom the relay log the next time the thread starts. If you specify\neither of MASTER_LOG_FILE or MASTER_LOG_POS, you cannot specify\nRELAY_LOG_FILE or RELAY_LOG_POS. If you specify either of\nMASTER_LOG_FILE or MASTER_LOG_POS, you also cannot specify\nMASTER_AUTO_POSITION = 1 (described later in this section). If neither\nof MASTER_LOG_FILE or MASTER_LOG_POS is specified, the replica uses the\nlast coordinates of the replication SQL thread before CHANGE MASTER TO\nwas issued. This ensures that there is no discontinuity in replication,\neven if the replication SQL thread was late compared to the replication\nI/O thread, when you merely want to change, say, the password to use.\n\nFrom MySQL 5.7, a CHANGE MASTER TO statement employing RELAY_LOG_FILE,\nRELAY_LOG_POS, or both options can be executed on a running replica\nwhen the replication SQL thread is stopped. Prior to MySQL 5.7.4,\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. In MySQL 5.7.4 and later, relay logs are preserved if at least\none of the replication SQL thread and the replication I/O thread is\nrunning. If both threads are stopped, all relay log files are deleted\nunless at least one of RELAY_LOG_FILE or RELAY_LOG_POS is specified.\nNote that the Group Replication applier channel\n(group_replication_applier) has no I/O thread, only an SQL thread. For\nthis channel, the relay logs are not preserved when the SQL thread is\nstopped.\n\nRELAY_LOG_FILE can use either an absolute or relative path, and uses\nthe same base name as MASTER_LOG_FILE. (Bug #12190)\n\nWhen MASTER_AUTO_POSITION = 1 is used with CHANGE MASTER TO, the\nreplica attempts to connect to the source using the GTID-based\nreplication protocol. From MySQL 5.7, this option can be employed by\nCHANGE MASTER TO only if both the replication SQL thread and the\nreplication I/O thread are stopped. Both the replica and the source\nmust have GTIDs enabled (GTID_MODE=ON, ON_PERMISSIVE, or OFF_PERMISSIVE\non the replica, and GTID_MODE=ON on the source). Auto-positioning is\nused for the connection, so the coordinates represented by\nMASTER_LOG_FILE and MASTER_LOG_POS are not used, and the use of either\nor both of these options together with MASTER_AUTO_POSITION = 1 causes\nan error. If multi-source replication is enabled on the replica, you\nneed to set the MASTER_AUTO_POSITION = 1 option for each applicable\nreplication channel.\n\nWith MASTER_AUTO_POSITION = 1 set, in the initial connection handshake,\nthe replica sends a GTID set containing the transactions that it has\nalready received, committed, or both. The source responds by sending\nall transactions recorded in its binary log whose GTID is not included\nin the GTID set sent by the replica. This exchange ensures that the\nsource only sends the transactions with a GTID that the replica has not\nalready recorded or committed. If the replica receives transactions\nfrom more than one source, as in the case of a diamond topology, the\nauto-skip function ensures that the transactions are not applied twice.\nFor details of how the GTID set sent by the replica is computed, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-position\ning.html.\n\nIf any of the transactions that should be sent by the source have been\npurged from the source\'s binary log, or added to the set of GTIDs in\nthe gtid_purged system variable by another method, the source sends the\nerror ER_MASTER_HAS_PURGED_REQUIRED_GTIDS to the replica, and\nreplication does not start. Also, if during the exchange of\ntransactions it is found that the replica has recorded or committed\ntransactions with the source\'s UUID in the GTID, but the source itself\nhas not committed them, the source sends the error\nER_SLAVE_HAS_MORE_GTIDS_THAN_MASTER to the replica and replication does\nnot start. For information on how to handle these situations, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-auto-position\ning.html.\n\nYou can see whether replication is running with auto-positioning\nenabled by checking the Performance Schema\nreplication_connection_status table or the output of SHOW SLAVE STATUS.\nDisabling the MASTER_AUTO_POSITION option again makes the replica\nrevert to file-based replication, in which case you must also specify\none or both of the MASTER_LOG_FILE or MASTER_LOG_POS options.\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 source 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\nIf a CHANGE MASTER TO statement is issued without any IGNORE_SERVER_IDS\noption, any existing list is preserved. To clear the list of ignored\nservers, it is necessary to use the option with an empty list:\n\nCHANGE MASTER TO IGNORE_SERVER_IDS = ();\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL has no effect on the server ID\nlist. In MySQL 5.7.5 and later, RESET SLAVE ALL clears\nIGNORE_SERVER_IDS. (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\nThe source metadata repository and the output of SHOW SLAVE STATUS\nprovide the list of servers that are currently ignored. For more\ninformation, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replica-logs-status.html, and\n[HELP SHOW SLAVE STATUS].\n\nInvoking CHANGE MASTER TO causes the previous values for MASTER_HOST,\nMASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be written to the\nerror log, along with other information about the replica\'s state prior\nto execution.\n\nCHANGE MASTER TO causes an implicit commit of an ongoing transaction.\nSee https://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIn MySQL 5.7.4 and later, the strict requirement to execute STOP SLAVE\nprior to issuing any CHANGE MASTER TO statement (and START SLAVE\nafterward) is removed. Instead of depending on whether the replica is\nstopped, the behavior of CHANGE MASTER TO depends (in MySQL 5.7.4 and\nlater) on the states of the replication SQL thread and the replication\nI/O thread; which of these threads is stopped or running now determines\nthe options that can or cannot be used with a CHANGE MASTER TO\nstatement at a given point in time. The rules for making this\ndetermination are listed here:\n\no If the SQL thread is stopped, you can execute CHANGE MASTER TO using\n any combination that is otherwise allowed of RELAY_LOG_FILE,\n RELAY_LOG_POS, and MASTER_DELAY options, even if the replication I/O\n thread is running. No other options may be used with this statement\n when the I/O thread is running.\n\no If the I/O thread is stopped, you can execute CHANGE MASTER TO using\n any of the options for this statement (in any allowed combination)\n except RELAY_LOG_FILE, RELAY_LOG_POS, MASTER_DELAY, or\n MASTER_AUTO_POSITION = 1 even when the SQL thread is running.\n\no Both the SQL thread and the I/O thread must be stopped before issuing\n a CHANGE MASTER TO statement that employs MASTER_AUTO_POSITION = 1.\n\nYou can check the current state of the replication SQL thread and the\nreplication I/O thread using SHOW SLAVE STATUS. Note that the Group\nReplication applier channel (group_replication_applier) has no I/O\nthread, only an SQL thread.\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.ht\nml.\n\nIf you are using statement-based replication and temporary tables, it\nis possible for a CHANGE MASTER TO statement following a STOP SLAVE\nstatement to leave behind temporary tables on the replica. From MySQL\n5.7, a warning (ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_warn_open_temp_tables_must_be_zero)) is issued whenever\nthis occurs. You can avoid this in such cases by making sure that the\nvalue of the Slave_open_temp_tables system status variable is equal to\n0 prior to executing such a CHANGE MASTER TO statement.\n\nCHANGE MASTER TO is useful for setting up a replica when you have the\nsnapshot of the replication source server and have recorded the\nsource\'s binary log coordinates corresponding to the time of the\nsnapshot. After loading the snapshot into the replica to synchronize it\nwith the source, you can run CHANGE MASTER TO\nMASTER_LOG_FILE=\'log_name\', MASTER_LOG_POS=log_pos on the replica to\nspecify the coordinates at which the replica should begin reading the\nsource\'s binary log.\n\nThe following example changes the replication source server the replica\nuses and establishes the source\'s binary log coordinates from which the\nreplica begins reading. This is used when you want to set up the\nreplica to replicate the source:\n\nCHANGE MASTER TO\n MASTER_HOST=\'source2.example.com\',\n MASTER_USER=\'replication\',\n MASTER_PASSWORD=\'password\',\n MASTER_PORT=3306,\n MASTER_LOG_FILE=\'source2-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 replica has relay log files that you want it to\nexecute again for some reason. To do this, the source 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=\'replica-relay-bin.006\',\n RELAY_LOG_POS=4025;\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/change-master-to.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/change-master-to.html'),(553,'CHANGE REPLICATION FILTER',40,'Syntax:\nCHANGE REPLICATION FILTER filter[, filter][, ...]\n\nfilter: {\n REPLICATE_DO_DB = (db_list)\n | REPLICATE_IGNORE_DB = (db_list)\n | REPLICATE_DO_TABLE = (tbl_list)\n | REPLICATE_IGNORE_TABLE = (tbl_list)\n | REPLICATE_WILD_DO_TABLE = (wild_tbl_list)\n | REPLICATE_WILD_IGNORE_TABLE = (wild_tbl_list)\n | REPLICATE_REWRITE_DB = (db_pair_list)\n}\n\ndb_list:\n db_name[, db_name][, ...]\n\ntbl_list:\n db_name.table_name[, db_table_name][, ...]\nwild_tbl_list:\n \'db_pattern.table_pattern\'[, \'db_pattern.table_pattern\'][, ...]\n\ndb_pair_list:\n (db_pair)[, (db_pair)][, ...]\n\ndb_pair:\n from_db, to_db\n\nCHANGE REPLICATION FILTER sets one or more replication filtering rules\non the replica in the same way as starting the replica mysqld with\nreplication filtering options such as --replicate-do-db or\n--replicate-wild-ignore-table. Unlike the case with the server options,\nthis statement does not require restarting the server to take effect,\nonly that the replication SQL thread be stopped using STOP SLAVE\nSQL_THREAD first (and restarted with START SLAVE SQL_THREAD\nafterwards). CHANGE REPLICATION FILTER requires the SUPER privilege.\n\nReplication filters cannot be set on a MySQL server instance that is\nconfigured for Group Replication, because filtering transactions on\nsome servers would make the group unable to reach agreement on a\nconsistent state.\n\nThe following list shows the CHANGE REPLICATION FILTER options and how\nthey relate to --replicate-* server options:\n\no REPLICATE_DO_DB: Include updates based on database name. Equivalent\n to --replicate-do-db.\n\no REPLICATE_IGNORE_DB: Exclude updates based on database name.\n Equivalent to --replicate-ignore-db.\n\no REPLICATE_DO_TABLE: Include updates based on table name. Equivalent\n to --replicate-do-table.\n\no REPLICATE_IGNORE_TABLE: Exclude updates based on table name.\n Equivalent to --replicate-ignore-table.\n\no REPLICATE_WILD_DO_TABLE: Include updates based on wildcard pattern\n matching table name. Equivalent to --replicate-wild-do-table.\n\no REPLICATE_WILD_IGNORE_TABLE: Exclude updates based on wildcard\n pattern matching table name. Equivalent to\n --replicate-wild-ignore-table.\n\no REPLICATE_REWRITE_DB: Perform updates on replica after substituting\n new name on replica for specified database on source. Equivalent to\n --replicate-rewrite-db.\n\nThe precise effects of REPLICATE_DO_DB and REPLICATE_IGNORE_DB filters\nare dependent on whether statement-based or row-based replication is in\neffect. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-rules.html, for\nmore information.\n\nMultiple replication filtering rules can be created in a single CHANGE\nREPLICATION FILTER statement by separating the rules with commas, as\nshown here:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (d1), REPLICATE_IGNORE_DB = (d2);\n\nIssuing the statement just shown is equivalent to starting the replica\nmysqld with the options --replicate-do-db=d1 --replicate-ignore-db=d2.\n\nIf the same filtering rule is specified multiple times, only the last\nsuch rule is actually used. For example, the two statements shown here\nhave exactly the same effect, because the first REPLICATE_DO_DB rule in\nthe first statement is ignored:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db1, db2), REPLICATE_DO_DB = (db3, db4);\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (db3,db4);\n\n*Caution*:\n\nThis behavior differs from that of the --replicate-* filter options\nwhere specifying the same option multiple times causes the creation of\nmultiple filter rules.\n\nNames of tables and database not containing any special characters need\nnot be quoted. Values used with REPLICATION_WILD_TABLE and\nREPLICATION_WILD_IGNORE_TABLE are string expressions, possibly\ncontaining (special) wildcard characters, and so must be quoted. This\nis shown in the following example statements:\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_DO_TABLE = (\'db1.old%\');\n\nCHANGE REPLICATION FILTER\n REPLICATE_WILD_IGNORE_TABLE = (\'db1.new%\', \'db2.new%\');\n\nValues used with REPLICATE_REWRITE_DB represent pairs of database\nnames; each such value must be enclosed in parentheses. The following\nstatement rewrites statements occurring on database db1 on the source\nto database db2 on the replica:\n\nCHANGE REPLICATION FILTER REPLICATE_REWRITE_DB = ((db1, db2));\n\nThe statement just shown contains two sets of parentheses, one\nenclosing the pair of database names, and the other enclosing the\nentire list. This is perhaps more easily seen in the following example,\nwhich creates two rewrite-db rules, one rewriting database dbA to dbB,\nand one rewriting database dbC to dbD:\n\nCHANGE REPLICATION FILTER\n REPLICATE_REWRITE_DB = ((dbA, dbB), (dbC, dbD));\n\nThis statement leaves any existing replication filtering rules\nunchanged; to unset all filters of a given type, set the filter\'s value\nto an explicitly empty list, as shown in this example, which removes\nall existing REPLICATE_DO_DB and REPLICATE_IGNORE_DB rules:\n\nCHANGE REPLICATION FILTER\n REPLICATE_DO_DB = (), REPLICATE_IGNORE_DB = ();\n\nSetting a filter to empty in this way removes all existing rules, does\nnot create any new ones, and does not restore any rules set at mysqld\nstartup using --replicate-* options on the command line or in the\nconfiguration file.\n\nValues employed with REPLICATE_WILD_DO_TABLE and\nREPLICATE_WILD_IGNORE_TABLE must be in the format db_name.tbl_name.\nPrior to MySQL 5.7.5, this was not strictly enforced, although using\nnonconforming values with these options could lead to erroneous results\n(Bug #18095449).\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-rules.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/change-replication-filter.html'),(554,'RESET SLAVE',40,'Syntax:\nRESET SLAVE [ALL] [channel_option]\n\nchannel_option:\n FOR CHANNEL channel\n\nRESET SLAVE makes the replica forget its replication position in the\nsource\'s binary log. This statement is meant to be used for a clean\nstart: It clears the replication metadata repositories, deletes all the\nrelay log files, and starts a new relay log file. It also resets to 0\nthe replication delay specified with the MASTER_DELAY option to CHANGE\nMASTER TO.\n\n*Note*:\n\nAll relay log files are deleted, even if they have not been completely\nexecuted by the replication SQL thread. (This is a condition likely to\nexist on a replica if you have issued a STOP SLAVE statement or if the\nreplica is highly loaded.)\n\nFor a server where GTIDs are in use (gtid_mode is ON), issuing RESET\nSLAVE has no effect on the GTID execution history. The statement does\nnot change the values of gtid_executed or gtid_purged, or the\nmysql.gtid_executed table. If you need to reset the GTID execution\nhistory, use RESET MASTER, even if the GTID-enabled server is a replica\nwhere binary logging is disabled.\n\nRESET SLAVE requires the RELOAD privilege.\n\nTo use RESET SLAVE, the replication threads must be stopped, so on a\nrunning replica use STOP SLAVE before issuing RESET SLAVE. To use RESET\nSLAVE on a Group Replication group member, the member status must be\nOFFLINE, meaning that the plugin is loaded but the member does not\ncurrently belong to any group. A group member can be taken offline by\nusing a STOP GROUP REPLICATION statement.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the RESET SLAVE statement to a specific\nreplication channel. Combining a FOR CHANNEL channel clause with the\nALL option deletes the specified channel. If no channel is named and no\nextra channels exist, the statement applies to the default channel.\nIssuing a RESET SLAVE ALL statement without a FOR CHANNEL channel\nclause when multiple replication channels exist deletes all replication\nchannels and recreates only the default channel. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nRESET SLAVE does not change any replication connection parameters such\nas the source\'s host name and port, or the replication user account\nname and its password.\n\no From MySQL 5.7.24, when master_info_repository=TABLE is set on the\n server, replication connection parameters are preserved in the\n crash-safe InnoDB table mysql.slave_master_info as part of the RESET\n SLAVE operation. They are also retained in memory. In the event of an\n unexpected server exit or deliberate restart after issuing RESET\n SLAVE but before issuing START SLAVE, the replication connection\n parameters are retrieved from the table and reused for the new\n connection.\n\no When master_info_repository=FILE is set on the server (which is the\n default in MySQL 5.7), replication connection parameters are only\n retained in memory. If the replica mysqld is restarted immediately\n after issuing RESET SLAVE due to an unexpected server exit or\n deliberate restart, the connection parameters are lost. In that case,\n you must issue a CHANGE MASTER TO statement after the server start to\n respecify the connection parameters before issuing START SLAVE.\n\nIf you want to reset the connection parameters intentionally, you need\nto use RESET SLAVE ALL, which clears the connection parameters. In that\ncase, you must issue a CHANGE MASTER TO statement after the server\nstart to specify the new connection parameters.\n\nRESET SLAVE causes an implicit commit of an ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\nIf the replication SQL thread was in the middle of replicating\ntemporary tables when it was stopped, and RESET SLAVE is issued, these\nreplicated temporary tables are deleted on the replica.\n\nPrior to MySQL 5.7.5, RESET SLAVE also had the effect of resetting both\nthe heartbeat period (Slave_heartbeat_period) and\nSSL_VERIFY_SERVER_CERT. This issue is fixed in MySQL 5.7.5 and later.\n(Bug #18777899, Bug #18778485)\n\nPrior to MySQL 5.7.5, RESET SLAVE ALL did not clear the\nIGNORE_SERVER_IDS list set by CHANGE MASTER TO. In MySQL 5.7.5 and\nlater, the statement clears the list. (Bug #18816897)\n\n*Note*:\n\nWhen used on an NDB Cluster replica SQL node, RESET SLAVE clears the\nmysql.ndb_apply_status table. You should keep in mind when using this\nstatement that ndb_apply_status uses the NDB storage engine and so is\nshared by all SQL nodes attached to the replica cluster.\n\nYou can override this behavior by issuing SET GLOBAL\n@@ndb_clear_apply_status=OFF prior to executing RESET SLAVE, which\nkeeps the replica from purging the ndb_apply_status table in such\ncases.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset-slave.html'),(555,'START SLAVE',40,'Syntax:\nSTART SLAVE [thread_types] [until_option] [connection_options] [channel_option]\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\nchannel_option:\n FOR CHANNEL channel\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 replication\nthreads. The replication I/O thread reads events from the source server\nand stores them in the relay log. The replication SQL thread reads\nevents from the relay log and executes them. START SLAVE requires the\nSUPER privilege.\n\nIf START SLAVE succeeds in starting the replication threads, it returns\nwithout any error. However, even in that case, it might be that the\nreplication threads start and then later stop (for example, because\nthey do not manage to connect to the source or read its binary log, or\nsome other problem). START SLAVE does not warn you about this. You must\ncheck the replica\'s error log for error messages generated by the\nreplication threads, or check that they are running satisfactorily with\nSHOW SLAVE STATUS.\n\nSTART SLAVE causes an implicit commit of an ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\ngtid_next must be set to AUTOMATIC before issuing this statement.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the START SLAVE statement to a specific\nreplication channel. If no clause is named and no extra channels exist,\nthe statement applies to the default channel. If a START SLAVE\nstatement does not have a channel defined when using multiple channels,\nthis statement starts the specified threads for all channels. This\nstatement is disallowed for the group_replication_recovery channel. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nYou can add IO_THREAD and SQL_THREAD options to the statement to name\nwhich of the threads to start. Note that the Group Replication applier\nchannel (group_replication_applier) has no I/O thread, only an SQL\nthread. Specifying the IO_THREAD or SQL_THREAD options when you start\nthis channel has no benefit.\n\nSTART SLAVE supports pluggable user-password authentication with the\nUSER, PASSWORD, DEFAULT_AUTH and PLUGIN_DIR options, as described in\nthe 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\nYou cannot use the SQL_THREAD option when specifying any of USER,\nPASSWORD, DEFAULT_AUTH, or PLUGIN_DIR, unless the IO_THREAD option is\nalso provided.\n\nFor more information, see\nhttps://dev.mysql.com/doc/refman/5.7/en/pluggable-authentication.html.\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\nSTART SLAVE ... UNTIL supports two additional options for use with\nglobal transaction identifiers (GTIDs) (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids.html). Each\nof these takes a set of one or more global transaction identifiers\ngtid_set as an argument (see\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-gtids-concepts.html\n#replication-gtids-concepts-gtid-sets, for more information).\n\nWhen no thread_type is specified, START SLAVE UNTIL SQL_BEFORE_GTIDS\ncauses the replication 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 replication threads to\nprocess all transactions until the last transaction in the gtid_set has\nbeen processed by both threads. In other words, START SLAVE UNTIL\nSQL_BEFORE_GTIDS causes the replication 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 replication\nthreads to handle all transactions, including those whose GTIDs are\nfound in gtid_set, until each has encountered a transaction whose GTID\nis not part of the set. SQL_BEFORE_GTIDS and SQL_AFTER_GTIDS each\nsupport the SQL_THREAD and IO_THREAD options, although using IO_THREAD\nwith them currently has no effect.\n\nFor example, START SLAVE SQL_THREAD UNTIL SQL_BEFORE_GTIDS =\n3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56 causes the replication SQL\nthread to process all transactions originating from the source 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 replication SQL thread to obtain all transactions just\nmentioned from the source, including all of the transactions having the\nsequence numbers 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 replication SQL\nthread.\n\nWhen using a multithreaded replica, there is a chance of gaps in the\nsequence of transactions that have been executed from the relay log in\nthe following cases:\n\no killing the coordinator thread\n\no after an error occurs in the worker threads\n\no mysqld shuts down unexpectedly\n\nUse the START SLAVE UNTIL SQL_AFTER_MTS_GAPS statement to cause a\nmultithreaded replica\'s worker threads to only run until no more gaps\nare found in the relay log, and then to stop. This statement can take\nan SQL_THREAD option, but the effects of the statement remain\nunchanged. It has no effect on the replication I/O thread (and cannot\nbe used with the IO_THREAD option).\n\nIssuing START SLAVE on a multithreaded replica with gaps in the\nsequence of transactions executed from the relay log generates a\nwarning. In such a situation, the solution is to use START SLAVE UNTIL\nSQL_AFTER_MTS_GAPS, then issue RESET SLAVE to remove any remaining\nrelay logs. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-features-transactio\nn-inconsistencies.html for more information.\n\nTo change a failed multithreaded replica to single-threaded mode, you\ncan issue 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\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: https://dev.mysql.com/doc/refman/5.7/en/start-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/start-slave.html'),(556,'STOP SLAVE',40,'Syntax:\nSTOP SLAVE [thread_types] [channel_option]\n\nthread_types:\n [thread_type [, thread_type] ... ]\n\nthread_type: IO_THREAD | SQL_THREAD\n\nchannel_option:\n FOR CHANNEL channel\n\nStops the replication threads. STOP SLAVE requires the\nREPLICATION_SLAVE_ADMIN\n(https://dev.mysql.com/doc/refman/8.0/en/privileges-provided.html#priv_\nreplication-slave-admin) or SUPER privilege. Recommended best practice\nis to execute STOP SLAVE on the replica before stopping the replica\nserver (see\nhttps://dev.mysql.com/doc/refman/5.7/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 replica prior to shutting down the\nreplica server if you are replicating any tables that use a\nnontransactional storage 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. Note\nthat the Group Replication applier channel (group_replication_applier)\nhas no replication I/O thread, only a replication SQL thread. Using the\nSQL_THREAD option therefore stops this channel completely.\n\nSTOP SLAVE causes an implicit commit of an ongoing transaction. See\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\n\ngtid_next must be set to AUTOMATIC before issuing this statement.\n\nYou can control how long STOP SLAVE waits before timing out by setting\nthe rpl_stop_slave_timeout system variable. This can be used to avoid\ndeadlocks between STOP SLAVE and other SQL statements using different\nclient connections to the replica. When the timeout value is reached,\nthe issuing client returns an error message and stops waiting, but the\nSTOP SLAVE instruction remains in effect. Once the replication threads\nare no longer busy, the STOP SLAVE statement is executed and the\nreplica stops.\n\nSome CHANGE MASTER TO statements are allowed while the replica is\nrunning, depending on the states of the replication SQL thread and the\nreplication I/O thread. However, using STOP SLAVE prior to executing\nCHANGE MASTER TO in such cases is still supported. See [HELP CHANGE\nMASTER TO], and\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-solutions-switch.ht\nml, for more information.\n\nThe optional FOR CHANNEL channel clause enables you to name which\nreplication channel the statement applies to. Providing a FOR CHANNEL\nchannel clause applies the STOP SLAVE statement to a specific\nreplication channel. If no channel is named and no extra channels\nexist, the statement applies to the default channel. If a STOP SLAVE\nstatement does not name a channel when using multiple channels, this\nstatement stops the specified threads for all channels. This statement\ncannot be used with the group_replication_recovery channel. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-channels.html for\nmore information.\n\nWhen using statement-based replication: changing the source while it\nhas open temporary tables is potentially unsafe. This is one of the\nreasons why statement-based replication of temporary tables is not\nrecommended. You can find out whether there are any temporary tables on\nthe replica by checking the value of Slave_open_temp_tables; when using\nstatement-based replication, this value should be 0 before executing\nCHANGE MASTER TO. If there are any temporary tables open on the\nreplica, issuing a CHANGE MASTER TO statement after issuing a STOP\nSLAVE causes an ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO\n(https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference.h\ntml#error_er_warn_open_temp_tables_must_be_zero) warning.\n\nWhen using a multithreaded replica (slave_parallel_workers is a nonzero\nvalue), any gaps in the sequence of transactions executed from the\nrelay log are closed as part of stopping the worker threads. If the\nreplica is stopped unexpectedly (for example due to an error in a\nworker thread, or another thread issuing KILL) while a STOP SLAVE\nstatement is executing, the sequence of executed transactions from the\nrelay log may become inconsistent. See\nhttps://dev.mysql.com/doc/refman/5.7/en/replication-features-transactio\nn-inconsistencies.html, for more information.\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 replication SQL thread. If the event group\nremains incomplete after the timeout, an error message is logged.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/stop-slave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/stop-slave.html'),(557,'PREPARE',40,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/sql-prepared-statements.html.\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 C API Automatic\n Reconnection Control\n (https://dev.mysql.com/doc/c-api/5.7/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 https://dev.mysql.com/doc/refman/5.7/en/user-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/prepare.html'),(558,'EXECUTE STATEMENT',40,'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: https://dev.mysql.com/doc/refman/5.7/en/execute.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/execute.html'),(559,'DEALLOCATE PREPARE',40,'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: https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html'),(560,'DROP PREPARE',40,'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: https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/deallocate-prepare.html'),(561,'BEGIN END',41,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-programs-defining.html.\n\nA BEGIN ... END block can be labeled. See [HELP labels].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/begin-end.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/begin-end.html'),(562,'LABELS',41,'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: https://dev.mysql.com/doc/refman/5.7/en/statement-labels.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/statement-labels.html'),(563,'DECLARE VARIABLE',41,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/local-variable-scope.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-local-variable.html'),(564,'CASE STATEMENT',41,'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 operator, which differs from the CASE statement\ndescribed here. See\nhttps://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html.\nThe CASE statement cannot have an ELSE NULL clause, and it is\nterminated with 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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/case.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/case.html'),(565,'IF STATEMENT',41,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html.\nThe IF statement can have THEN, ELSE, and ELSEIF clauses, and it is\nterminated with END IF.\n\nIf a given search_condition evaluates to true, the corresponding THEN\nor ELSEIF clause statement_list executes. If no search_condition\nmatches, the 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: https://dev.mysql.com/doc/refman/5.7/en/if.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/if.html'),(566,'ITERATE',41,'Syntax:\nITERATE label\n\nITERATE can appear only within LOOP, REPEAT, and WHILE statements.\nITERATE means \"start the loop again.\"\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/iterate.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/iterate.html'),(567,'LEAVE',41,'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: https://dev.mysql.com/doc/refman/5.7/en/leave.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/leave.html'),(568,'LOOP',41,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/loop.html'),(569,'REPEAT LOOP',41,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/repeat.html'),(570,'RETURN',41,'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: https://dev.mysql.com/doc/refman/5.7/en/return.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/return.html'),(571,'WHILE',41,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/while.html'),(572,'CLOSE',41,'Syntax:\nCLOSE cursor_name\n\nThis statement closes a previously opened cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/close.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/close.html'),(573,'DECLARE CURSOR',41,'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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/declare-cursor.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-cursor.html'),(574,'FETCH',41,'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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/fetch.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/fetch.html'),(575,'OPEN',41,'Syntax:\nOPEN cursor_name\n\nThis statement opens a previously declared cursor. For an example, see\nhttps://dev.mysql.com/doc/refman/5.7/en/cursors.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/open.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/open.html'),(576,'DECLARE CONDITION',41,'Syntax:\nDECLARE condition_name CONDITION FOR condition_value\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n}\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 Server\n Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .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 Server Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .html).\n\nCondition names referred to in SIGNAL or use RESIGNAL statements must\nbe associated with SQLSTATE values, not MySQL error codes.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/declare-condition.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/declare-condition.html'),(577,'DECLARE HANDLER',41,'Syntax:\nDECLARE handler_action HANDLER\n FOR condition_value [, condition_value] ...\n statement\n\nhandler_action: {\n CONTINUE\n | EXIT\n | UNDO\n}\n\ncondition_value: {\n mysql_error_code\n | SQLSTATE [VALUE] sqlstate_value\n | condition_name\n | SQLWARNING\n | NOT FOUND\n | SQLEXCEPTION\n}\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 Server\n Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .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 Server Error Message Reference\n (https://dev.mysql.com/doc/mysql-errors/5.7/en/server-error-reference\n .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 https://dev.mysql.com/doc/refman/5.7/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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/declare-handler.html'),(578,'GET DIAGNOSTICS',41,'Syntax:\nGET [CURRENT | STACKED] DIAGNOSTICS {\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}\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}\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. (You can also use SHOW WARNINGS or SHOW\nERRORS 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. The keyword STACKED means to retrieve information\nfrom the second diagnostics area, which is available only if the\ncurrent context is a condition handler. If neither keyword is given,\nthe default is to use the current diagnostics area.\n\nThe GET DIAGNOSTICS statement is typically used in a handler within a\nstored program. It is a MySQL extension that GET [CURRENT] DIAGNOSTICS\nis permitted outside handler context to check the execution of any SQL\nstatement. For example, if you invoke the mysql client program, you can\nenter these statements at the 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\nThis extension applies only to the current diagnostics area. It does\nnot apply to the second diagnostics area because GET STACKED\nDIAGNOSTICS is permitted only if the current context is a condition\nhandler. If that is not the case, a GET STACKED DIAGNOSTICS when\nhandler not active error occurs.\n\nFor a description of the diagnostics area, see\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html#diagnosti\ncs-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 current 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 nrows 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 nrows = ROW_COUNT;\n SET result = CONCAT(\'insert succeeded, row count = \',nrows);\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: https://dev.mysql.com/doc/refman/5.7/en/get-diagnostics.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/get-diagnostics.html'),(579,'RESIGNAL',41,'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}\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}\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 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\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/resignal.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/resignal.html'),(580,'SIGNAL',41,'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}\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}\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 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\nhttps://dev.mysql.com/doc/refman/5.7/en/diagnostics-area.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/signal.html'),(581,'ALTER USER',42,'Syntax:\nALTER USER [IF EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nALTER USER [IF EXISTS]\n USER() IDENTIFIED BY \'auth_string\'\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_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\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe ALTER USER statement modifies MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be modified for existing accounts. It can also be used to\nlock and unlock accounts.\n\nTo use ALTER USER, you must have the global CREATE USER privilege or\nthe UPDATE privilege for the mysql system database. When the read_only\nsystem variable is enabled, ALTER USER additionally requires the SUPER\nprivilege.\n\nBy default, an error occurs if you try to modify a user that does not\nexist. If the IF EXISTS clause is given, the statement produces a\nwarning for each named user that does not exist, rather than an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/alter-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/alter-user.html'),(582,'CREATE USER',42,'Syntax:\nCREATE USER [IF NOT EXISTS]\n user [auth_option] [, user [auth_option]] ...\n [REQUIRE {NONE | tls_option [[AND] tls_option] ...}]\n [WITH resource_option [resource_option] ...]\n [password_option | lock_option] ...\n\nuser:\n (see )\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n | IDENTIFIED BY PASSWORD \'auth_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\npassword_option: {\n PASSWORD EXPIRE\n | PASSWORD EXPIRE DEFAULT\n | PASSWORD EXPIRE NEVER\n | PASSWORD EXPIRE INTERVAL N DAY\n}\n\nlock_option: {\n ACCOUNT LOCK\n | ACCOUNT UNLOCK\n}\n\nThe CREATE USER statement creates new MySQL accounts. It enables\nauthentication, SSL/TLS, resource-limit, and password-management\nproperties to be established for new accounts, and controls whether\naccounts are initially locked or unlocked.\n\nTo use CREATE USER, you must have the global CREATE USER privilege, or\nthe INSERT privilege for the mysql system database. When the read_only\nsystem variable is enabled, CREATE USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to create an account that already exists. If\nthe IF NOT EXISTS clause is given, the statement produces a warning for\neach named account that already exists, rather than an error.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-user.html'),(583,'DROP USER',42,'Syntax:\nDROP USER [IF EXISTS] 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.\n\nTo use DROP USER, you must have the global CREATE USER privilege, or\nthe DELETE privilege for the mysql system database. When the read_only\nsystem variable is enabled, DROP USER additionally requires the SUPER\nprivilege.\n\nAn error occurs if you try to drop an account that does not exist. If\nthe IF EXISTS clause is given, the statement produces a warning for\neach named user that does not exist, rather than an error.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nDROP USER \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-user.html'),(584,'GRANT',42,'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 https://dev.mysql.com/doc/refman/5.7/en/account-names.html)\n\nauth_option: {\n IDENTIFIED BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin\n | IDENTIFIED WITH auth_plugin BY \'auth_string\'\n | IDENTIFIED WITH auth_plugin AS \'auth_string\'\n | IDENTIFIED BY PASSWORD \'auth_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.\n\nTo grant a privilege with GRANT, you must have the GRANT OPTION\nprivilege, and you must have the privileges that you are granting.\n(Alternatively, if you have the UPDATE privilege for the grant tables\nin the mysql system database, you can grant any account any privilege.)\nWhen the read_only system variable is enabled, GRANT additionally\nrequires 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\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\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 and define its nonprivilege characteristics such as its\npassword, whether it uses secure connections, and limits on access to\nserver resources, then uses GRANT to define its privileges. ALTER USER\nmay be used to change the nonprivilege characteristics of existing\naccounts. For example:\n\nCREATE USER \'jeffrey\'@\'localhost\' IDENTIFIED BY \'password\';\nGRANT ALL ON db1.* TO \'jeffrey\'@\'localhost\';\nGRANT SELECT ON db2.invoice TO \'jeffrey\'@\'localhost\';\nALTER USER \'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\n*Note*:\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. It is also possible to use GRANT to\nspecify nonprivilege account characteristics such as whether it uses\nsecure connections and limits on access to server resources.\n\nHowever, use of GRANT to create accounts or define nonprivilege\ncharacteristics is deprecated in MySQL 5.7. Instead, perform these\ntasks using CREATE USER or ALTER USER.\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: https://dev.mysql.com/doc/refman/5.7/en/grant.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/grant.html'),(585,'RENAME USER',42,'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 system database. When the read_only\nsystem variable is enabled, RENAME USER additionally requires the SUPER\nprivilege.\n\nEach account name uses the format described in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-objects-security.html.)\n\nThe privilege changes take effect as indicated in\nhttps://dev.mysql.com/doc/refman/5.7/en/privilege-changes.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/rename-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/rename-user.html'),(586,'REVOKE',42,'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\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\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\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nREVOKE INSERT ON *.* FROM \'jeffrey\'@\'localhost\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\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 system database.\n\nUser accounts from which privileges are to be revoked must exist, but\nthe privileges to be revoked need not be currently granted to them.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/revoke.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/revoke.html'),(587,'SET PASSWORD',42,'Syntax:\nSET PASSWORD [FOR user] = password_option\n\npassword_option: {\n \'auth_string\'\n | PASSWORD(\'auth_string\')\n}\n\nThe SET PASSWORD statement assigns a password to a MySQL user account.\n\'auth_string\' represents a cleartext (unencrypted) password.\n\n*Note*:\n\no SET PASSWORD ... = PASSWORD(\'auth_string\') syntax is deprecated in\n MySQL 5.7 and is removed in MySQL 8.0.\n\no SET PASSWORD ... = \'auth_string\' syntax is not deprecated, but ALTER\n USER is the preferred statement for account alterations, including\n assigning passwords. For example:\n\nALTER USER user IDENTIFIED BY \'auth_string\';\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\nhttps://dev.mysql.com/doc/refman/5.7/en/password-logging.html. For\nsimilar information about client-side logging, see\nhttps://dev.mysql.com/doc/refman/5.7/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\' = \'auth_string\';\n\no With no FOR user clause, the statement sets the password for the\n current user:\n\nSET PASSWORD = \'auth_string\';\n\n Any client who connects to the server using a nonanonymous account\n can change the password for that account. (In particular, you can\n change your own password.) To see which account the server\n authenticated you as, invoke the CURRENT_USER() function:\n\nSELECT CURRENT_USER();\n\nIf a FOR user clause is given, the account name uses the format\ndescribed in\nhttps://dev.mysql.com/doc/refman/5.7/en/account-names.html. For\nexample:\n\nSET PASSWORD FOR \'bob\'@\'%.example.org\' = \'auth_string\';\n\nThe host name part of the account name, if omitted, defaults to \'%\'.\n\nSetting the password for a named account (with a FOR clause) requires\nthe UPDATE privilege for the mysql system database. Setting the\npassword for yourself (for a nonanonymous account with no FOR clause)\nrequires no special privileges. When the read_only system variable is\nenabled, SET PASSWORD requires the SUPER privilege in addition to any\nother required privileges.\n\nThe password can be specified in these ways:\n\no Use a string without PASSWORD()\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = \'password\';\n\n SET PASSWORD interprets the string as a cleartext string, passes it\n to the authentication plugin associated with the account, and stores\n the result returned by the plugin in the account row in the\n mysql.user system table. (The plugin is given the opportunity to hash\n the value into the encryption format it expects. The plugin may use\n the value as specified, in which case no hashing occurs.)\n\no Use the PASSWORD() function (deprecated in MySQL 5.7)\n\nSET PASSWORD FOR \'jeffrey\'@\'localhost\' = PASSWORD(\'password\');\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 account row in the mysql.user system table.\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 Be sure that old_passwords has the value corresponding to the hashing\n method expected by the authentication plugin associated with the\n account. For example, if the account uses the mysql_native_password\n plugin, the old_passwords 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() cannot be used by the plugin and correct authentication of\n client connections cannot occur.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-password.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-password.html'),(588,'ANALYZE TABLE',43,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nDuring the analysis, the table is locked with a read lock for InnoDB\nand MyISAM.\n\nANALYZE TABLE removes the table from the table definition cache, which\nrequires a flush lock. If there are long running statements or\ntransactions still using the table, subsequent statements and\ntransactions must wait for those operations to finish before the flush\nlock is released. Because ANALYZE TABLE itself typically finishes\nquickly, it may not be apparent that delayed transactions or statements\ninvolving the same table are due to the remaining flush lock.\n\nBy default, the server writes ANALYZE TABLE statements to the binary\nlog so that they replicate to replicas. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/analyze-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/analyze-table.html'),(589,'CHECK TABLE',43,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/check-table.html#check-table-in\nnodb.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nCHECK TABLE ignores virtual generated columns that are not indexed.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/check-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/check-table.html'),(590,'CHECKSUM TABLE',43,'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: https://dev.mysql.com/doc/refman/5.7/en/checksum-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/checksum-table.html'),(591,'OPTIMIZE TABLE',43,'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 Previous NDB Cluster Issues Resolved\nin NDB Cluster 8.0\n(https://dev.mysql.com/doc/refman/8.0/en/mysql-cluster-limitations-reso\nlved.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\nhttps://dev.mysql.com/doc/refman/5.7/en/partitioning-maintenance.html.\n\nBy default, the server writes OPTIMIZE TABLE statements to the binary\nlog so that they replicate to replicas. To suppress logging, specify\nthe optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/optimize-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/optimize-table.html'),(592,'REPAIR TABLE',43,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/crashing.html, and\nhttps://dev.mysql.com/doc/refman/5.7/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 https://dev.mysql.com/doc/refman/5.7/en/backup-and-recovery.html.\n\no If the server exits during a REPAIR TABLE operation, it is essential\n after restarting it that you immediately execute another REPAIR TABLE\n statement for the table before performing any other operations on it.\n In the worst case, you might have a new clean index file without\n information about the data file, and then the next operation you\n perform could overwrite the data file. This is an unlikely but\n possible scenario that underscores the value of making a backup\n first.\n\no In the event that a table on the source becomes corrupted and you run\n REPAIR TABLE on it, any resulting changes to the original table are\n not propagated to replicas.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/repair-table.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/repair-table.html'),(593,'CREATE FUNCTION UDF',44,'Syntax:\nCREATE [AGGREGATE] FUNCTION function_name\n RETURNS {STRING|INTEGER|REAL|DECIMAL}\n SONAME shared_library_name\n\nThis statement loads the user-defined function (UDF) named\nfunction_name. (CREATE FUNCTION is also used to created stored\nfunctions; see [HELP CREATE PROCEDURE].)\n\nA user-defined function is a way to extend MySQL with a new function\nthat works like a native (built-in) MySQL function such as ABS() or\nCONCAT(). See Adding a User-Defined Function\n(https://dev.mysql.com/doc/extending-mysql/5.7/en/adding-udf.html).\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\nThe AGGREGATE keyword, if given, signifies that the UDF is an aggregate\n(group) function. An aggregate UDF works exactly like a native MySQL\naggregate function such as SUM() or COUNT().\n\nshared_library_name is the base name of the shared library file\ncontaining 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\nhttps://dev.mysql.com/doc/refman/5.7/en/udf-loading.html.\n\nCREATE FUNCTION requires the INSERT privilege for the mysql system\ndatabase because it adds a row to the mysql.func system table to\nregister the function.\n\nDuring the normal startup sequence, the server loads UDFs registered in\nthe mysql.func table. If the server is started with the\n--skip-grant-tables option, UDFs registered in the table are not loaded\nand are unavailable.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/create-function-udf.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/create-function-udf.html'),(594,'DROP FUNCTION UDF',44,'Syntax:\nDROP FUNCTION [IF EXISTS] function_name\n\nThis statement drops the user-defined function (UDF) named\nfunction_name. (DROP FUNCTION is also used to drop stored functions;\nsee [HELP DROP PROCEDURE].)\n\nDROP FUNCTION is the complement of CREATE FUNCTION. It requires the\nDELETE privilege for the mysql system database because it removes the\nrow from the mysql.func system table that registers the function.\n\nDuring the normal startup sequence, the server loads UDFs registered in\nthe mysql.func table. Because DROP FUNCTION removes the mysql.func row\nfor the dropped function, the server does not load the function during\nsubsequent restarts.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/drop-function-udf.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/drop-function-udf.html'),(595,'INSTALL PLUGIN',45,'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 because it adds a row to\nthat table to register the plugin.\n\nplugin_name is the name of the plugin as defined in the plugin\ndescriptor structure contained in the library file (see Plugin Data\nStructures\n(https://dev.mysql.com/doc/extending-mysql/5.7/en/plugin-data-structure\ns.html)). Plugin names are not case-sensitive. For maximal\ncompatibility, plugin names should be limited to ASCII letters, digits,\nand underscore because they are used in C source files, shell command\nlines, M4 and Bourne 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\nsystem table. During the normal startup sequence, the server loads and\ninitializes plugins registered in mysql.plugin. This means that a\nplugin is installed with INSTALL PLUGIN only once, not every time the\nserver starts. If the server is started with the --skip-grant-tables\noption, plugins registered in the mysql.plugin table are not loaded and\nare unavailable.\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: https://dev.mysql.com/doc/refman/5.7/en/install-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/install-plugin.html'),(596,'UNINSTALL PLUGIN',45,'Syntax:\nUNINSTALL PLUGIN plugin_name\n\nThis statement removes an installed server plugin. UNINSTALL PLUGIN is\nthe complement of INSTALL PLUGIN. It requires the DELETE privilege for\nthe mysql.plugin system table because it removes the row from that\ntable that registers the 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\nsystem table, so that subsequent server restarts do not load and\ninitialize the plugin. UNINSTALL PLUGIN does not remove the plugin\'s\nshared library file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/uninstall-plugin.html'),(597,'SET',3,'Syntax:\nSET variable = expr [, variable = expr] ...\n\nvariable: {\n user_var_name\n | param_name\n | local_var_name\n | {GLOBAL | @@GLOBAL.} system_var_name\n | [SESSION | @@SESSION. | @@] system_var_name\n}\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 User-defined variables. See\n https://dev.mysql.com/doc/refman/5.7/en/user-variables.html.\n\no Stored procedure and function parameters, and stored program local\n variables. See\n https://dev.mysql.com/doc/refman/5.7/en/stored-program-variables.html\n .\n\no System variables. See\n https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n System variables also can be set at server startup, as described in\n https://dev.mysql.com/doc/refman/5.7/en/using-system-variables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-variable.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-variable.html'),(598,'SET CHARACTER SET',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html'),(599,'SET CHARSET',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET CHARACTER SET produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-character-set.html'),(600,'SET NAMES',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nSome character sets cannot be used as the client character set.\nAttempting to use them with SET NAMES produces an error. See\nhttps://dev.mysql.com/doc/refman/5.7/en/charset-connection.html#charset\n-connection-impermissible-client-charset.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/set-names.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/set-names.html'),(601,'SHOW',3,'SHOW has many forms that provide information about databases, tables,\ncolumns, or status information about the server. This section describes\nthose following:\n\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 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 [FOR CHANNEL channel]\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}\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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show.html'),(602,'SHOW BINARY LOGS',3,'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. A user with the SUPER or\nREPLICATION CLIENT privilege may execute this statement.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html'),(603,'SHOW MASTER LOGS',3,'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. A user with the SUPER or\nREPLICATION CLIENT privilege may execute this statement.\n\nmysql> SHOW BINARY LOGS;\n+---------------+-----------+\n| Log_name | File_size |\n+---------------+-----------+\n| binlog.000015 | 724935 |\n| binlog.000016 | 733481 |\n+---------------+-----------+\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binary-logs.html'),(604,'SHOW BINLOG EVENTS',3,'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. SHOW BINLOG EVENTS requires the\nREPLICATION SLAVE privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-binlog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-binlog-events.html'),(605,'SHOW CHARACTER SET',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html. For\nexample:\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: https://dev.mysql.com/doc/refman/5.7/en/show-character-set.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-character-set.html'),(606,'SHOW COLLATION',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html. For\nexample:\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: https://dev.mysql.com/doc/refman/5.7/en/show-collation.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-collation.html'),(607,'SHOW COLUMNS',3,'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\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\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese 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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\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\nhttps://dev.mysql.com/doc/refman/5.7/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 The column nullability. The value is YES if NULL values can be stored\n in 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:\n\n o auto_increment for columns that have the AUTO_INCREMENT attribute.\n\n o on update CURRENT_TIMESTAMP for TIMESTAMP or DATETIME columns that\n have the ON UPDATE CURRENT_TIMESTAMP attribute.\n\n o VIRTUAL GENERATED or VIRTUAL STORED for generated columns.\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\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-columns-tabl\ne.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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-columns.html'),(608,'SHOW FIELDS',3,'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\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\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese 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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\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\nhttps://dev.mysql.com/doc/refman/5.7/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 The column nullability. The value is YES if NULL values can be stored\n in 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:\n\n o auto_increment for columns that have the AUTO_INCREMENT attribute.\n\n o on update CURRENT_TIMESTAMP for TIMESTAMP or DATETIME columns that\n have the ON UPDATE CURRENT_TIMESTAMP attribute.\n\n o VIRTUAL GENERATED or VIRTUAL STORED for generated columns.\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\nTable column information is also available from the INFORMATION_SCHEMA\nCOLUMNS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-columns-tabl\ne.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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/show-columns.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-columns.html'),(609,'SHOW CREATE DATABASE',3,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html'),(610,'SHOW CREATE SCHEMA',3,'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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/show-create-database.html'),(611,'SHOW CREATE EVENT',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-create-event.html\n\n','mysql> SHOW CREATE EVENT myschema.e_daily\\G\n*************************** 1. row ***************************\n Event: e_daily\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n time_zone: SYSTEM\n Create Event: CREATE DEFINER=`jon`@`ghidora` 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: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-event.html'),(612,'SHOW CREATE FUNCTION',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-create-function.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-function.html'),(613,'SHOW CREATE PROCEDURE',3,'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 column is NULL.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-procedure.html\n\n','mysql> SHOW CREATE PROCEDURE test.citycount\\G\n*************************** 1. row ***************************\n Procedure: citycount\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Create Procedure: CREATE DEFINER=`me`@`localhost`\n PROCEDURE `citycount`(IN country CHAR(3), OUT cities INT)\n BEGIN\n SELECT COUNT(*) INTO cities FROM world.city\n WHERE CountryCode = country;\n END\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW CREATE FUNCTION test.hello\\G\n*************************** 1. row ***************************\n Function: hello\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Create Function: CREATE DEFINER=`me`@`localhost`\n FUNCTION `hello`(s CHAR(20))\n RETURNS char(50) CHARSET latin1\n DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\')\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-procedure.html'),(614,'SHOW CREATE TABLE',3,'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.\n\nSHOW CREATE TABLE quotes table and column names according to the value\nof the sql_quote_show_create option. See\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nWhen altering the storage engine of a table, table options that are not\napplicable to the new storage engine are retained in the table\ndefinition to enable reverting the table with its previously defined\noptions to the original storage engine, if necessary. For example, when\nchanging the storage engine from InnoDB to MyISAM, InnoDB-specific\noptions such as ROW_FORMAT=COMPACT are retained.\n\nWhen creating a table with strict mode disabled, the storage engine\'s\ndefault row format is used if the specified row format is not\nsupported. The actual row format of the table is reported in the\nRow_format column in response to SHOW TABLE STATUS. SHOW CREATE TABLE\nshows the row format that was specified in the CREATE TABLE statement.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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\nmysql> CREATE TABLE t1 (c1 INT PRIMARY KEY) ROW_FORMAT=COMPACT ENGINE=InnoDB;\nmysql> ALTER TABLE t1 ENGINE=MyISAM;\nmysql> SHOW CREATE TABLE t1\\G\n*************************** 1. row ***************************\n Table: t1\nCreate Table: CREATE TABLE `t1` (\n `c1` int(11) NOT NULL,\n PRIMARY KEY (`c1`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT\n','https://dev.mysql.com/doc/refman/5.7/en/show-create-table.html'),(615,'SHOW CREATE TRIGGER',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-trigger.html'),(616,'SHOW CREATE USER',3,'Syntax:\nSHOW CREATE USER user\n\nThis statement shows the CREATE USER statement that creates the named\nuser. An error occurs if the user does not exist. The statement\nrequires the SELECT privilege for the mysql system database, except to\ndisplay information for the current user.\n\nTo name the account, use the format described in\nhttps://dev.mysql.com/doc/refman/5.7/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\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-user.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-user.html'),(617,'SHOW CREATE VIEW',3,'Syntax:\nSHOW CREATE VIEW view_name\n\nThis statement shows the CREATE VIEW statement that creates the named\nview.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-create-view.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-create-view.html'),(618,'SHOW DATABASES',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-schemata-tab\nle.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-databases.html'),(619,'SHOW SCHEMAS',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nMySQL implements databases as directories in the data directory, so\nthis statement simply lists directories in that location. However, the\noutput may include names of directories that do not correspond to\nactual databases.\n\nDatabase information is also available from the INFORMATION_SCHEMA\nSCHEMATA table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-schemata-tab\nle.html.\n\n*Caution*:\n\nBecause a global privilege is considered a privilege for all databases,\nany global privilege enables a user to see all database names with SHOW\nDATABASES or by examining the INFORMATION_SCHEMA SCHEMATA table.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-databases.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-databases.html'),(620,'SHOW ENGINE',3,'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 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\nhttps://dev.mysql.com/doc/refman/5.7/en/innodb-monitors.html.\n\nSHOW ENGINE INNODB MUTEX displays InnoDB mutex and rw-lock statistics.\n\n*Note*:\n\nInnoDB mutexes and rwlocks can also be monitored using Performance\nSchema tables. See\nhttps://dev.mysql.com/doc/refman/5.7/en/monitor-innodb-mutex-waits-perf\normance-schema.html.\n\nSHOW ENGINE INNODB MUTEX output was removed in MySQL 5.7.2. It was\nrevised and reintroduced in MySQL 5.7.8.\n\nIn MySQL 5.7.8, mutex statistics collection is configured dynamically\nusing the following options:\n\no To enable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_enable=\'latch\';\n\no To reset mutex statistics, run:\n\nSET GLOBAL innodb_monitor_reset=\'latch\';\n\no To disable the collection of mutex statistics, run:\n\nSET GLOBAL innodb_monitor_disable=\'latch\';\n\nCollection of mutex statistics for SHOW ENGINE INNODB MUTEX can also be\nenabled by setting innodb_monitor_enable=\'all\', or disabled by setting\ninnodb_monitor_disable=\'all\'.\n\nSHOW ENGINE INNODB MUTEX output has these columns:\n\no Type\n\n Always InnoDB.\n\no Name\n\n Prior to MySQL 5.7.8, the Name field reports the source file where\n the mutex is implemented, and the line number in the file where the\n mutex is created. The line number is specific to your version of\n MySQL. As of MySQL 5.7.8, only the mutex name is reported. File name\n and line number are still reported for rwlocks.\n\no Status\n\n The mutex status.\n\n Prior to MySQL 5.7.8, the Status field displays several values if\n WITH_DEBUG was defined at MySQL compilation time. If WITH_DEBUG was\n not defined, the statement displays only the os_waits value. In the\n latter case (without WITH_DEBUG), the information on which the output\n is based is insufficient to distinguish regular mutexes and mutexes\n that protect rwlocks (which permit multiple readers or a single\n writer). Consequently, the output may appear to contain multiple rows\n for the same mutex. Pre-MySQL 5.7.8 Status field values include:\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 frees 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.7 timing is disabled and this\n value is always 0.\n\n As of MySQL 5.7.8, the Status field reports the number of spins,\n waits, and calls. Statistics for low-level operating system mutexes,\n which are implemented outside of InnoDB, are not reported.\n\n o spins indicates the number of spins.\n\n o waits indicates the number of mutex waits.\n\n o calls indicates how many times the mutex was requested.\n\nSHOW ENGINE INNODB MUTEX does not list mutexes and rw-locks for each\nbuffer pool block, as the amount of output would be overwhelming on\nsystems with a large buffer pool. SHOW ENGINE INNODB MUTEX does,\nhowever, print aggregate BUF_BLOCK_MUTEX spin, wait, and call values\nfor buffer pool block mutexes and rw-locks. SHOW ENGINE INNODB MUTEX\nalso does not list any mutexes or rw-locks that have never been waited\non (os_waits=0). Thus, SHOW ENGINE INNODB MUTEX only displays\ninformation about mutexes and rw-locks outside of the buffer pool that\nhave caused at least one OS-level wait.\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.size\nStatus: 76\n*************************** 4. row ***************************\n Type: performance_schema\n Name: events_waits_history.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).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.size,\n mutex_instances.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 size is the size of the internal record used by the implementation,\n such as the size of a row in a table. size values cannot be changed.\n\no count is the number of internal records, such as the number of rows\n in a table. count values can be changed using Performance Schema\n configuration options.\n\no For a table, tbl_name.memory is the product of size and count. For\n the Performance Schema as a whole, performance_schema.memory is the\n sum of all the memory used (the sum 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.count corresponds to\nperformance_schema_events_waits_history_long_size. In other cases, the\nrelationship is more complex. For example, events_waits_history.count\ncorresponds to performance_schema_events_waits_history_size (the number\nof rows per thread) multiplied by\nperformance_schema_max_thread_instances ( the number 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: https://dev.mysql.com/doc/refman/5.7/en/show-engine.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-engine.html'),(621,'SHOW ENGINES',3,'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.\n\nFor information about MySQL storage engines, see\nhttps://dev.mysql.com/doc/refman/5.7/en/innodb-storage-engine.html, and\nhttps://dev.mysql.com/doc/refman/5.7/en/storage-engines.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-engines.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-engines.html'),(622,'SHOW ERRORS',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/show-errors.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-errors.html'),(623,'SHOW EVENTS',3,'Syntax:\nSHOW EVENTS\n [{FROM | IN} schema_name]\n [LIKE \'pattern\' | WHERE expr]\n\nThis statement displays information about Event Manager events, which\nare discussed in\nhttps://dev.mysql.com/doc/refman/5.7/en/event-scheduler.html. 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: 1\n Interval field: DAY\n Starts: 2018-08-08 11:06:34\n Ends: NULL\n Status: ENABLED\n Originator: 1\ncharacter_set_client: utf8\ncollation_connection: utf8_general_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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-events.html'),(624,'SHOW FUNCTION CODE',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-function-code.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-function-code.html'),(625,'SHOW FUNCTION STATUS',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-function-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-function-status.html'),(626,'SHOW GRANTS',3,'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\n*Note*:\n\nTo display nonprivilege information for MySQL accounts, use the SHOW\nCREATE USER statement. See [HELP SHOW CREATE USER].\n\nSHOW GRANTS requires the SELECT privilege for the mysql system\ndatabase, except to display privileges for the current user.\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\nhttps://dev.mysql.com/doc/refman/5.7/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 equivalent syntax) is used in\ndefiner context, such as within a stored procedure that executes with\ndefiner rather than invoker privileges, the grants displayed are those\nof 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\nSHOW GRANTS output does not include IDENTIFIED BY PASSWORD clauses. Use\nthe SHOW CREATE USER statement instead. See [HELP SHOW CREATE USER].\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-grants.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-grants.html'),(627,'SHOW INDEX',3,'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\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: 4188\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: 232\n Sub_part: NULL\n Packed: NULL\n Null:\n Index_type: BTREE\n Comment:\nIndex_comment:\n\nAn alternative to tbl_name FROM db_name syntax is db_name.tbl_name.\nThese 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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\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 name of the column.\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. However, prefix lengths for\n index specifications in CREATE TABLE, ALTER TABLE, and CREATE INDEX\n statements are interpreted as number of characters for nonbinary\n string types (CHAR, VARCHAR, TEXT) and number of bytes for binary\n string types (BINARY, VARBINARY, BLOB). Take this into account when\n specifying a prefix length for a nonbinary string column that uses a\n multibyte character set.\n\n For additional information about index prefixes, see\n https://dev.mysql.com/doc/refman/5.7/en/column-indexes.html, and\n [HELP 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\nInformation about table indexes is also available from the\nINFORMATION_SCHEMA STATISTICS table. See\nhttps://dev.mysql.com/doc/refman/5.7/en/information-schema-statistics-t\nable.html.\n\nYou can list a table\'s indexes with the mysqlshow -k db_name tbl_name\ncommand.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-index.html'),(628,'SHOW MASTER STATUS',3,'Syntax:\nSHOW MASTER STATUS\n\nThis statement provides status information about the binary log files\nof the source. It requires either the SUPER or REPLICATION CLIENT\nprivilege.\n\nExample:\n\nmysql> SHOW MASTER STATUS\\G\n*************************** 1. row ***************************\n File: source-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: https://dev.mysql.com/doc/refman/5.7/en/show-master-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-master-status.html'),(629,'SHOW OPEN TABLES',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-open-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-open-tables.html'),(630,'SHOW PLUGINS',3,'Syntax:\nSHOW PLUGINS\n\nSHOW PLUGINS displays information about server plugins.\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: https://dev.mysql.com/doc/refman/5.7/en/show-plugins.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-plugins.html'),(631,'SHOW PRIVILEGES',3,'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: https://dev.mysql.com/doc/refman/5.7/en/show-privileges.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-privileges.html'),(632,'SHOW PROCEDURE CODE',3,'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: https://dev.mysql.com/doc/refman/5.7/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.01 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\nmysql> CREATE FUNCTION test.hello (s CHAR(20))\n RETURNS CHAR(50) DETERMINISTIC\n RETURN CONCAT(\'Hello, \',s,\'!\');\nQuery OK, 0 rows affected (0.00 sec)\n\nmysql> SHOW FUNCTION CODE test.hello;\n+-----+---------------------------------------+\n| Pos | Instruction |\n+-----+---------------------------------------+\n| 0 | freturn 254 concat(\'Hello, \',s@0,\'!\') |\n+-----+---------------------------------------+\n1 row in set (0.00 sec)\n','https://dev.mysql.com/doc/refman/5.7/en/show-procedure-code.html'),(633,'SHOW PROCEDURE STATUS',3,'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\nTo use either statement, you must be the owner of the routine or have\nSELECT access to the mysql.proc table.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/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: 2018-08-08 13:54:11\n Created: 2018-08-08 13:54:11\n Security_type: DEFINER\n Comment:\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nmysql> SHOW FUNCTION STATUS LIKE \'hello\'\\G\n*************************** 1. row ***************************\n Db: test\n Name: hello\n Type: FUNCTION\n Definer: testuser@localhost\n Modified: 2020-03-10 11:09:33\n Created: 2020-03-10 11:09:33\n Security_type: DEFINER\n Comment:\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n','https://dev.mysql.com/doc/refman/5.7/en/show-procedure-status.html'),(634,'SHOW PROCESSLIST',3,'Syntax:\nSHOW [FULL] PROCESSLIST\n\nThe MySQL process list indicates the operations currently being\nperformed by the set of threads executing within the server. The SHOW\nPROCESSLIST statement is one source of process information. For a\ncomparison of this statement with other sources, see\nhttps://dev.mysql.com/doc/refman/5.7/en/processlist-access.html#process\nlist-sources.\n\nIf you have the PROCESS privilege, you can see all threads, even those\nbelonging to other users. Otherwise (without the PROCESS privilege),\nnonanonymous users have access to information about their own threads\nbut not threads for other users, and anonymous users have no access to\nthread information.\n\nWithout the FULL keyword, SHOW PROCESSLIST displays only the first 100\ncharacters of each statement in the Info field.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-processlist.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-processlist.html'),(635,'SHOW PROFILE',3,'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}\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\nThe SHOW PROFILE and SHOW PROFILES statements are deprecated; expect\nthem to be removed in a future MySQL release. Use the Performance\nSchema instead; see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-query-profil\ning.html.\n\nTo control profiling, use the profiling session variable, which has a\ndefault value of 0 (OFF). Enable profiling by setting profiling to 1 or\nON:\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\nneither of those statements appears in the profile list. Malformed\nstatements are profiled. For example, SHOW PROFILING is an illegal\nstatement, and a syntax error occurs if you try to execute it, but it\nshows 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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/show-profile.html'),(636,'SHOW PROFILES',3,'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\nThe SHOW PROFILE and SHOW PROFILES statements are deprecated; expect\nthem to be removed in a future MySQL release. Use the Performance\nSchema instead; see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-query-profil\ning.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-profiles.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-profiles.html'),(637,'SHOW RELAYLOG EVENTS',3,'Syntax:\nSHOW RELAYLOG EVENTS\n [IN \'log_name\']\n [FROM pos]\n [LIMIT [offset,] row_count]\n [channel_option]\n\nchannel_option:\n FOR CHANNEL channel\n\nShows the events in the relay log of a replica. If you do not specify\n\'log_name\', the first relay log is displayed. This statement has no\neffect on the source. SHOW RELAYLOG EVENTS requires the REPLICATION\nSLAVE privilege.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-relaylog-events.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-relaylog-events.html'),(638,'SHOW SLAVE HOSTS',3,'Syntax:\nSHOW SLAVE HOSTS\n\nDisplays a list of replicas currently registered with the source.\n\nSHOW SLAVE HOSTS should be executed on a server that acts as a\nreplication source. SHOW SLAVE HOSTS requires the REPLICATION SLAVE\nprivilege. The statement displays information about servers that are or\nhave been connected as replicas, with each row of the result\ncorresponding to one replica 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 replica server, as configured\n in the replica server\'s option file, or on the command line with\n --server-id=value.\n\no Host: The host name of the replica server as specified on the replica\n with the --report-host option. This can differ from the machine name\n as configured in the operating system.\n\no User: The replica server user name as, specified on the replica with\n the --report-user option. Statement output includes this column only\n if the source server is started with the --show-slave-auth-info\n option.\n\no Password: The replica server password as, specified on the replica\n with the --report-password option. Statement output includes this\n column only if the source server is started with the\n --show-slave-auth-info option.\n\no Port: The port on the source to which the replica server is\n listening, as specified on the replica with the --report-port option.\n\n A zero in this column means that the replica port (--report-port) was\n not set.\n\no Master_id: The unique server ID of the source server that the replica\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 replica, as generated on\n the replica and found in the replica\'s auto.cnf file.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-slave-hosts.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-slave-hosts.html'),(639,'SHOW SLAVE STATUS',3,'Syntax:\nSHOW SLAVE STATUS [FOR CHANNEL channel]\n\nThis statement provides status information on essential parameters of\nthe replica 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: repl\n Master_Port: 13000\n Connect_Retry: 60\n Master_Log_File: source-bin.000002\n Read_Master_Log_Pos: 1307\n Relay_Log_File: replica-relay-bin.000003\n Relay_Log_Pos: 1508\n Relay_Master_Log_File: source-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 Replicate_Rewrite_DB:\n Channel_name:\n Master_TLS_Version: TLSv1.2\n\nThe Performance Schema provides tables that expose replication\ninformation. This is similar to the information available from the SHOW\nSLAVE STATUS statement, but represented in table form. For details, see\nhttps://dev.mysql.com/doc/refman/5.7/en/performance-schema-replication-\ntables.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-slave-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-slave-status.html'),(640,'SHOW STATUS',3,'Syntax:\nSHOW [GLOBAL | SESSION] STATUS\n [LIKE \'pattern\' | WHERE expr]\n\n*Note*:\n\nThe value of the show_compatibility_56 system variable affects the\ninformation available from and privileges required for the statement\ndescribed here. For details, see the description of that variable in\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW STATUS provides server status information (see\nhttps://dev.mysql.com/doc/refman/5.7/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 Performance Schema tables. See\n https://dev.mysql.com/doc/refman/5.7/en/performance-schema-status-var\n iable-tables.html.\n\no The GLOBAL_STATUS and SESSION_STATUS tables. See\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-status-tab\n le.html.\n\no The mysqladmin extended-status command. See\n https://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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.\n\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: https://dev.mysql.com/doc/refman/5.7/en/show-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-status.html'),(641,'SHOW TABLE STATUS',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-table-status.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-table-status.html'),(642,'SHOW TABLES',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/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, VIEW for a view, or SYSTEM VIEW for\nan INFORMATION_SCHEMA table.\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: https://dev.mysql.com/doc/refman/5.7/en/show-tables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-tables.html'),(643,'SHOW TRIGGERS',3,'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 (not trigger names) to match 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\nhttps://dev.mysql.com/doc/refman/5.7/en/extended-show.html.\n\nFor the ins_sum trigger defined in\nhttps://dev.mysql.com/doc/refman/5.7/en/triggers.html, the output of\nSHOW TRIGGERS 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: 2018-08-08 10:10:12.61\n sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,\n NO_ZERO_IN_DATE,NO_ZERO_DATE,\n ERROR_FOR_DIVISION_BY_ZERO,\n NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\n Definer: me@localhost\ncharacter_set_client: utf8\ncollation_connection: utf8_general_ci\n Database Collation: latin1_swedish_ci\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/show-triggers.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-triggers.html'),(644,'SHOW VARIABLES',3,'Syntax:\nSHOW [GLOBAL | SESSION] VARIABLES\n [LIKE \'pattern\' | WHERE expr]\n\n*Note*:\n\nThe value of the show_compatibility_56 system variable affects the\ninformation available from and privileges required for the statement\ndescribed here. For details, see the description of that variable in\nhttps://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html.\n\nSHOW VARIABLES shows the values of MySQL system variables (see\nhttps://dev.mysql.com/doc/refman/5.7/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 Performance Schema tables. See\n https://dev.mysql.com/doc/refman/5.7/en/performance-schema-system-var\n iable-tables.html.\n\no The GLOBAL_VARIABLES and SESSION_VARIABLES tables. See\n https://dev.mysql.com/doc/refman/5.7/en/information-schema-variables-\n table.html.\n\no The mysqladmin variables command. See\n https://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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 variable\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\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/en/using-system-variables.html,\nand [HELP SET].\n\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: https://dev.mysql.com/doc/refman/5.7/en/show-variables.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-variables.html'),(645,'SHOW WARNINGS',3,'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 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\nhttps://dev.mysql.com/doc/refman/5.7/en/select.html.\n\nSHOW WARNINGS is also used following EXPLAIN, to display the extended\ninformation generated by EXPLAIN. See\nhttps://dev.mysql.com/doc/refman/5.7/en/explain-extended.html.\n\nSHOW WARNINGS displays information about the conditions resulting from\nexecution of the most recent nondiagnostic statement in the current\nsession. If the most recent statement resulted in an error during\nparsing, SHOW WARNINGS shows the resulting conditions, regardless of\nstatement type (diagnostic or nondiagnostic).\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 difference in these statements is that the first is a diagnostic\nstatement that does not clear the message list. The second, because it\nis a SELECT statement is considered nondiagnostic and does clear the\nmessage list.\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: https://dev.mysql.com/doc/refman/5.7/en/show-warnings.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/show-warnings.html'),(646,'BINLOG',3,'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 https://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/binlog.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/binlog.html'),(647,'CACHE INDEX',3,'Syntax:\nCACHE INDEX {\n tbl_index_list [, tbl_index_list] ...\n | tbl_name PARTITION (partition_list)\n }\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 | ALL\n}\n\nThe CACHE INDEX statement assigns table indexes to a specific key\ncache. It applies only to MyISAM tables, including partitioned MyISAM\ntables. After the indexes have been assigned, they can be preloaded\ninto the cache if desired with LOAD INDEX 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: https://dev.mysql.com/doc/refman/5.7/en/cache-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/cache-index.html'),(648,'FLUSH',3,'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 | OPTIMIZER_COSTS\n | QUERY CACHE\n | RELAY LOGS [FOR CHANNEL channel]\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 indicated in the option descriptions.\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\nhttps://dev.mysql.com/doc/refman/5.7/en/stored-program-restrictions.htm\nl.\n\nBy default, the server writes FLUSH statements to the binary log so\nthat they replicate to replicas. To suppress logging, specify the\noptional NO_WRITE_TO_BINLOG keyword or its alias LOCAL.\n\n*Note*:\n\nFLUSH LOGS, FLUSH BINARY LOGS, FLUSH TABLES WITH READ LOCK (with or\nwithout a table list), and FLUSH TABLES tbl_name ... FOR EXPORT are not\nwritten to the binary log in any case because they would cause problems\nif replicated to a replica.\n\nThe FLUSH statement causes an implicit commit. See\nhttps://dev.mysql.com/doc/refman/5.7/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\nhttps://dev.mysql.com/doc/refman/5.7/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.\nSignals can be sent by the root system account or the system account\nthat owns the server process. This enables the flush operations to be\nperformed without having to connect to the server, which requires a\nMySQL account that has privileges sufficient for those operations. See\nhttps://dev.mysql.com/doc/refman/5.7/en/unix-signal-response.html.\n\nThe RESET statement is similar to FLUSH. See [HELP RESET], for\ninformation about using RESET with replication.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/flush.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/flush.html'),(649,'KILL',3,'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\nThe ability to see which threads are available to be killed depends on\nthe PROCESS privilege:\n\no Without PROCESS, you can see only your own threads.\n\no With PROCESS, you can see all threads.\n\nThe ability to kill threads and statements depends on the SUPER\nprivilege:\n\no Without SUPER, you can kill only your own threads and statements.\n\no With SUPER, you can kill all 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: https://dev.mysql.com/doc/refman/5.7/en/kill.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/kill.html'),(650,'LOAD INDEX',3,'Syntax:\nLOAD INDEX INTO CACHE\n tbl_index_list [, tbl_index_list] ...\n\ntbl_index_list:\n tbl_name\n [PARTITION (partition_list)]\n [{INDEX|KEY} (index_name[, index_name] ...)]\n [IGNORE LEAVES]\n\npartition_list: {\n partition_name[, partition_name] ...\n | ALL\n}\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 applies only to MyISAM tables, including\npartitioned MyISAM tables. In addition, indexes on partitioned tables\ncan be preloaded for one, several, or all partitions.\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: https://dev.mysql.com/doc/refman/5.7/en/load-index.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/load-index.html'),(651,'RESET',3,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/implicit-commit.html.\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\n *Note*:\n\n The query cache is deprecated as of MySQL 5.7.20, and is removed in\n MySQL 8.0. Deprecation includes RESET QUERY CACHE.\n\no RESET SLAVE\n\n Makes the replica forget its replication position in the source\n binary logs. Also resets the relay log by deleting any existing relay\n log files and beginning a new one.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/reset.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/reset.html'),(652,'SHUTDOWN',3,'Syntax:\nSHUTDOWN\n\nThis statement stops the MySQL server. It requires the SHUTDOWN\nprivilege.\n\nSHUTDOWN provides an SQL-level interface to the same functionality\navailable using the mysqladmin shutdown command or the mysql_shutdown()\n(https://dev.mysql.com/doc/c-api/5.7/en/mysql-shutdown.html) C API\nfunction.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/shutdown.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/shutdown.html'),(653,'EXPLAIN',46,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\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: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(654,'DESCRIBE',46,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\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: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(655,'DESC',46,'Syntax:\n{EXPLAIN | DESCRIBE | DESC}\n tbl_name [col_name | wild]\n\n{EXPLAIN | DESCRIBE | DESC}\n [explain_type]\n {explainable_stmt | FOR CONNECTION connection_id}\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: https://dev.mysql.com/doc/refman/5.7/en/explain.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/explain.html'),(656,'HELP STATEMENT',46,'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\nhttps://dev.mysql.com/doc/refman/5.7/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: https://dev.mysql.com/doc/refman/5.7/en/help.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/help.html'),(657,'USE',46,'Syntax:\nUSE db_name\n\nThe USE statement tells MySQL to use the named database as the default\n(current) database for subsequent statements. This statement requires\nsome privilege for the database or some object within it.\n\nThe named database remains the default until the end of the session or\nanother USE statement is issued:\n\nUSE db1;\nSELECT COUNT(*) FROM mytable; # selects from db1.mytable\nUSE db2;\nSELECT COUNT(*) FROM mytable; # selects from db2.mytable\n\nThe database name must be specified on a single line. Newlines in\ndatabase names are not supported.\n\nURL: https://dev.mysql.com/doc/refman/5.7/en/use.html\n\n','','https://dev.mysql.com/doc/refman/5.7/en/use.html'),(658,'MERGE',47,'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\nhttps://dev.mysql.com/doc/refman/5.7/en/myisampack.html. Differences\nbetween 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: https://dev.mysql.com/doc/refman/5.7/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','https://dev.mysql.com/doc/refman/5.7/en/merge-storage-engine.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(199) 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 ('mysql','gtid_executed','PRIMARY','2021-04-16 23:37:19','n_diff_pfx01',0,1,'source_uuid'),('mysql','gtid_executed','PRIMARY','2021-04-16 23:37:19','n_diff_pfx02',0,1,'source_uuid,interval_start'),('mysql','gtid_executed','PRIMARY','2021-04-16 23:37:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('mysql','gtid_executed','PRIMARY','2021-04-16 23:37:19','size',1,NULL,'Number of pages in the index'),('sei','acao_federacao','PRIMARY','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_acao_federacao'),('sei','acao_federacao','PRIMARY','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acao_federacao','PRIMARY','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','PRIMARY','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_acesso'),('sei','acesso','PRIMARY','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','PRIMARY','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','fk_acesso_controle_interno','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_controle_interno'),('sei','acesso','fk_acesso_controle_interno','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_controle_interno,id_acesso'),('sei','acesso','fk_acesso_controle_interno','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','fk_acesso_controle_interno','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','fk_acesso_protocolo','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_protocolo'),('sei','acesso','fk_acesso_protocolo','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_protocolo,id_acesso'),('sei','acesso','fk_acesso_protocolo','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','fk_acesso_protocolo','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','fk_acesso_unidade','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_unidade'),('sei','acesso','fk_acesso_unidade','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_unidade,id_acesso'),('sei','acesso','fk_acesso_unidade','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','fk_acesso_unidade','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','fk_acesso_usuario','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_usuario'),('sei','acesso','fk_acesso_usuario','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_usuario,id_acesso'),('sei','acesso','fk_acesso_usuario','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','fk_acesso_usuario','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_unidade'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_unidade,id_usuario'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_diff_pfx03',0,1,'id_unidade,id_usuario,id_protocolo'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_diff_pfx04',0,1,'id_unidade,id_usuario,id_protocolo,sta_tipo'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_diff_pfx05',0,1,'id_unidade,id_usuario,id_protocolo,sta_tipo,id_acesso'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','i01_acesso','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','i02_acesso','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_protocolo'),('sei','acesso','i02_acesso','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_protocolo,sta_tipo'),('sei','acesso','i02_acesso','2024-05-10 02:28:08','n_diff_pfx03',0,1,'id_protocolo,sta_tipo,id_acesso'),('sei','acesso','i02_acesso','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','i02_acesso','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','n_diff_pfx01',0,1,'id_protocolo'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','n_diff_pfx02',0,1,'id_protocolo,id_unidade'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','n_diff_pfx03',0,1,'id_protocolo,id_unidade,id_usuario'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','n_diff_pfx04',0,1,'id_protocolo,id_unidade,id_usuario,id_acesso'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso','i03_acesso','2024-05-10 02:28:08','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_acesso_externo'),('sei','acesso_externo','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','fk_acesso_externo_atividade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade'),('sei','acesso_externo','fk_acesso_externo_atividade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade,id_acesso_externo'),('sei','acesso_externo','fk_acesso_externo_atividade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','fk_acesso_externo_atividade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','fk_acesso_externo_documento','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento'),('sei','acesso_externo','fk_acesso_externo_documento','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento,id_acesso_externo'),('sei','acesso_externo','fk_acesso_externo_documento','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','fk_acesso_externo_documento','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','fk_acesso_externo_participante','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_participante'),('sei','acesso_externo','fk_acesso_externo_participante','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_participante,id_acesso_externo'),('sei','acesso_externo','fk_acesso_externo_participante','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','fk_acesso_externo_participante','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'sta_tipo'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'sta_tipo,id_documento'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_diff_pfx03',0,1,'sta_tipo,id_documento,id_acesso_externo'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_diff_pfx04',0,1,'sta_tipo,id_documento,id_acesso_externo,id_atividade'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_diff_pfx05',0,1,'sta_tipo,id_documento,id_acesso_externo,id_atividade,id_participante'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','i04_acesso_externo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_externo','i05_acesso_externo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'sta_tipo'),('sei','acesso_externo','i05_acesso_externo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'sta_tipo,sin_inclusao'),('sei','acesso_externo','i05_acesso_externo','2024-05-10 02:28:09','n_diff_pfx03',0,1,'sta_tipo,sin_inclusao,id_acesso_externo'),('sei','acesso_externo','i05_acesso_externo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_externo','i05_acesso_externo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_acesso_federacao'),('sei','acesso_federacao','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_documento_fed','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento_federacao'),('sei','acesso_federacao','fk_acesso_fed_documento_fed','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento_federacao,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_documento_fed','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_documento_fed','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_dest','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_instalacao_federacao_dest'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_dest','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_instalacao_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_dest','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_dest','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_rem','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_instalacao_federacao_rem'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_rem','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_instalacao_federacao_rem,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_rem','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_instal_fed_rem','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_dest','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_orgao_federacao_dest'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_dest','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_orgao_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_dest','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_dest','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_rem','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_orgao_federacao_rem'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_rem','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_orgao_federacao_rem,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_rem','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_orgao_fed_rem','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_procedimento_fed','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_procedimento_federacao'),('sei','acesso_federacao','fk_acesso_fed_procedimento_fed','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_procedimento_federacao,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_procedimento_fed','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_procedimento_fed','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_dest','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade_federacao_dest'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_dest','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_dest','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_dest','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_rem','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade_federacao_rem'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_rem','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade_federacao_rem,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_rem','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_unidade_fed_rem','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_dest','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario_federacao_dest'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_dest','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_dest','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_dest','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_rem','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario_federacao_rem'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_rem','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario_federacao_rem,id_acesso_federacao'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_rem','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','fk_acesso_fed_usuario_fed_rem','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_procedimento_federacao'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_procedimento_federacao,id_instalacao_federacao_rem'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_procedimento_federacao,id_instalacao_federacao_rem,id_instalacao_federacao_dest'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_procedimento_federacao,id_instalacao_federacao_rem,id_instalacao_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','i02_acesso_federacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','i03_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_procedimento_federacao'),('sei','acesso_federacao','i03_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_procedimento_federacao,id_instalacao_federacao_dest'),('sei','acesso_federacao','i03_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_procedimento_federacao,id_instalacao_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','i03_acesso_federacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','i03_acesso_federacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento_federacao'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento_federacao,id_instalacao_federacao_rem'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_documento_federacao,id_instalacao_federacao_rem,id_instalacao_federacao_dest'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_documento_federacao,id_instalacao_federacao_rem,id_instalacao_federacao_dest,id_acesso_federacao'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acesso_federacao','i04_acesso_federacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acompanhamento','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_acompanhamento'),('sei','acompanhamento','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acompanhamento','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acompanhamento','fk_acompanhamento_grupo_acompa','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_grupo_acompanhamento'),('sei','acompanhamento','fk_acompanhamento_grupo_acompa','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_grupo_acompanhamento,id_acompanhamento'),('sei','acompanhamento','fk_acompanhamento_grupo_acompa','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acompanhamento','fk_acompanhamento_grupo_acompa','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acompanhamento','fk_acompanhamento_protocolo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_protocolo'),('sei','acompanhamento','fk_acompanhamento_protocolo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_protocolo,id_acompanhamento'),('sei','acompanhamento','fk_acompanhamento_protocolo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acompanhamento','fk_acompanhamento_protocolo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acompanhamento','fk_acompanhamento_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','acompanhamento','fk_acompanhamento_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_acompanhamento'),('sei','acompanhamento','fk_acompanhamento_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acompanhamento','fk_acompanhamento_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','acompanhamento','fk_acompanhamento_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','acompanhamento','fk_acompanhamento_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_acompanhamento'),('sei','acompanhamento','fk_acompanhamento_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','acompanhamento','fk_acompanhamento_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_instalacao','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_andamento_instalacao'),('sei','andamento_instalacao','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_instalacao','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_instalacao','fk_and_inst_tarefa_inst','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_tarefa_instalacao'),('sei','andamento_instalacao','fk_and_inst_tarefa_inst','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_tarefa_instalacao,id_andamento_instalacao'),('sei','andamento_instalacao','fk_and_inst_tarefa_inst','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_instalacao','fk_and_inst_tarefa_inst','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_inst_fed','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','andamento_instalacao','fk_andamento_inst_inst_fed','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_instalacao_federacao,id_andamento_instalacao'),('sei','andamento_instalacao','fk_andamento_inst_inst_fed','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_inst_fed','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','andamento_instalacao','fk_andamento_inst_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_andamento_instalacao'),('sei','andamento_instalacao','fk_andamento_inst_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','andamento_instalacao','fk_andamento_inst_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_andamento_instalacao'),('sei','andamento_instalacao','fk_andamento_inst_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_instalacao','fk_andamento_inst_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_andamento_marcador'),('sei','andamento_marcador','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_marcador','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_marcador'),('sei','andamento_marcador','fk_andamento_marcador_marcador','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_marcador,id_andamento_marcador'),('sei','andamento_marcador','fk_andamento_marcador_marcador','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_marcador','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_proced','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_procedimento'),('sei','andamento_marcador','fk_andamento_marcador_proced','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_procedimento,id_andamento_marcador'),('sei','andamento_marcador','fk_andamento_marcador_proced','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_proced','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','andamento_marcador','fk_andamento_marcador_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_andamento_marcador'),('sei','andamento_marcador','fk_andamento_marcador_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','andamento_marcador','fk_andamento_marcador_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_andamento_marcador'),('sei','andamento_marcador','fk_andamento_marcador_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','fk_andamento_marcador_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_marcador'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_marcador,id_procedimento'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_marcador,id_procedimento,id_unidade'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_marcador,id_procedimento,id_unidade,sin_ultimo'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx05',0,1,'id_marcador,id_procedimento,id_unidade,sin_ultimo,id_andamento_marcador'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','i01_andamento_marcador','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_procedimento'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_unidade,id_procedimento,sin_ultimo'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_unidade,id_procedimento,sin_ultimo,id_andamento_marcador'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_marcador','i02_andamento_marcador','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_andamento_situacao'),('sei','andamento_situacao','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','fk_andam_situacao_procedimento','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_procedimento'),('sei','andamento_situacao','fk_andam_situacao_procedimento','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_procedimento,id_andamento_situacao'),('sei','andamento_situacao','fk_andam_situacao_procedimento','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','fk_andam_situacao_procedimento','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','fk_andam_situacao_situacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_situacao'),('sei','andamento_situacao','fk_andam_situacao_situacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_situacao,id_andamento_situacao'),('sei','andamento_situacao','fk_andam_situacao_situacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','fk_andam_situacao_situacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','fk_andamento_situacao_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','andamento_situacao','fk_andamento_situacao_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_andamento_situacao'),('sei','andamento_situacao','fk_andamento_situacao_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','fk_andamento_situacao_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','fk_andamento_situacao_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','andamento_situacao','fk_andamento_situacao_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_andamento_situacao'),('sei','andamento_situacao','fk_andamento_situacao_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','fk_andamento_situacao_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_situacao'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_situacao,id_procedimento'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_situacao,id_procedimento,id_unidade'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_situacao,id_procedimento,id_unidade,sin_ultimo'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_diff_pfx05',0,1,'id_situacao,id_procedimento,id_unidade,sin_ultimo,id_andamento_situacao'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','andamento_situacao','i01_andamento_situacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_anexo'),('sei','anexo','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','ak1_anexo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_anexo'),('sei','anexo','ak1_anexo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_anexo,sin_ativo'),('sei','anexo','ak1_anexo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','ak1_anexo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','fk_anexo_base_conhecimento','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_base_conhecimento'),('sei','anexo','fk_anexo_base_conhecimento','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_base_conhecimento,id_anexo'),('sei','anexo','fk_anexo_base_conhecimento','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','fk_anexo_base_conhecimento','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','fk_anexo_protocolo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_protocolo'),('sei','anexo','fk_anexo_protocolo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_protocolo,id_anexo'),('sei','anexo','fk_anexo_protocolo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','fk_anexo_protocolo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','fk_anexo_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','anexo','fk_anexo_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_anexo'),('sei','anexo','fk_anexo_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','fk_anexo_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','fk_anexo_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','anexo','fk_anexo_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_anexo'),('sei','anexo','fk_anexo_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','fk_anexo_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','i01_anexo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_protocolo'),('sei','anexo','i01_anexo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_protocolo,sin_ativo'),('sei','anexo','i01_anexo','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_protocolo,sin_ativo,id_anexo'),('sei','anexo','i01_anexo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','i01_anexo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anexo','i02_anexo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'dth_inclusao'),('sei','anexo','i02_anexo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'dth_inclusao,id_anexo'),('sei','anexo','i02_anexo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anexo','i02_anexo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anotacao','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_anotacao'),('sei','anotacao','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anotacao','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anotacao','fk_anotacao_protocolo','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_protocolo'),('sei','anotacao','fk_anotacao_protocolo','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_protocolo,id_anotacao'),('sei','anotacao','fk_anotacao_protocolo','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anotacao','fk_anotacao_protocolo','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anotacao','fk_anotacao_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','anotacao','fk_anotacao_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_anotacao'),('sei','anotacao','fk_anotacao_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anotacao','fk_anotacao_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anotacao','fk_anotacao_usuario','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','anotacao','fk_anotacao_usuario','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_anotacao'),('sei','anotacao','fk_anotacao_usuario','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anotacao','fk_anotacao_usuario','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_protocolo'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_unidade,id_protocolo,id_usuario'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx04',0,1,'id_unidade,id_protocolo,id_usuario,sin_prioridade'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx05',0,1,'id_unidade,id_protocolo,id_usuario,sin_prioridade,sta_anotacao'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_diff_pfx06',0,1,'id_unidade,id_protocolo,id_usuario,sin_prioridade,sta_anotacao,id_anotacao'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','anotacao','i01_anotacao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_protocolo'),('sei','arquivamento','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquiv_ativ_arquiv','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade_arquivamento'),('sei','arquivamento','fk_arquiv_ativ_arquiv','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade_arquivamento,id_protocolo'),('sei','arquivamento','fk_arquiv_ativ_arquiv','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquiv_ativ_arquiv','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquiv_ativ_canc','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade_cancelamento'),('sei','arquivamento','fk_arquiv_ativ_canc','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade_cancelamento,id_protocolo'),('sei','arquivamento','fk_arquiv_ativ_canc','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquiv_ativ_canc','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquiv_ativ_desarquiv','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade_desarquivamento'),('sei','arquivamento','fk_arquiv_ativ_desarquiv','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade_desarquivamento,id_protocolo'),('sei','arquivamento','fk_arquiv_ativ_desarquiv','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquiv_ativ_desarquiv','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquiv_ativ_receb','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade_recebimento'),('sei','arquivamento','fk_arquiv_ativ_receb','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade_recebimento,id_protocolo'),('sei','arquivamento','fk_arquiv_ativ_receb','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquiv_ativ_receb','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquiv_ativ_solic_desarq','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade_solicitacao'),('sei','arquivamento','fk_arquiv_ativ_solic_desarq','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade_solicitacao,id_protocolo'),('sei','arquivamento','fk_arquiv_ativ_solic_desarq','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquiv_ativ_solic_desarq','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','fk_arquivamento_localizador','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_localizador'),('sei','arquivamento','fk_arquivamento_localizador','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_localizador,id_protocolo'),('sei','arquivamento','fk_arquivamento_localizador','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','fk_arquivamento_localizador','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivamento','i07_arquivamento','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_localizador'),('sei','arquivamento','i07_arquivamento','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_localizador,sta_arquivamento'),('sei','arquivamento','i07_arquivamento','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_localizador,sta_arquivamento,id_protocolo'),('sei','arquivamento','i07_arquivamento','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivamento','i07_arquivamento','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','arquivo_extensao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',41,1,'id_arquivo_extensao'),('sei','arquivo_extensao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','arquivo_extensao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','assinante','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',21,1,'id_assinante'),('sei','assinante','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinante','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinante','fk_assinante_orgao','2024-05-10 02:28:09','n_diff_pfx01',1,1,'id_orgao'),('sei','assinante','fk_assinante_orgao','2024-05-10 02:28:09','n_diff_pfx02',21,1,'id_orgao,id_assinante'),('sei','assinante','fk_assinante_orgao','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinante','fk_assinante_orgao','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','PRIMARY','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_assinatura'),('sei','assinatura','PRIMARY','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','PRIMARY','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','ak1_assinatura','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento'),('sei','assinatura','ak1_assinatura','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento,id_usuario'),('sei','assinatura','ak1_assinatura','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','ak1_assinatura','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','fk_assinatura_atividade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_atividade'),('sei','assinatura','fk_assinatura_atividade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_atividade,id_assinatura'),('sei','assinatura','fk_assinatura_atividade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','fk_assinatura_atividade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','fk_assinatura_documento','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento'),('sei','assinatura','fk_assinatura_documento','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento,id_assinatura'),('sei','assinatura','fk_assinatura_documento','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','fk_assinatura_documento','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','fk_assinatura_tarja_assinatura','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_tarja_assinatura'),('sei','assinatura','fk_assinatura_tarja_assinatura','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_tarja_assinatura,id_assinatura'),('sei','assinatura','fk_assinatura_tarja_assinatura','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','fk_assinatura_tarja_assinatura','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','fk_assinatura_unidade','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_unidade'),('sei','assinatura','fk_assinatura_unidade','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_unidade,id_assinatura'),('sei','assinatura','fk_assinatura_unidade','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','fk_assinatura_unidade','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','fk_assinatura_usuario_autentic','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_usuario'),('sei','assinatura','fk_assinatura_usuario_autentic','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_usuario,id_assinatura'),('sei','assinatura','fk_assinatura_usuario_autentic','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','fk_assinatura_usuario_autentic','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','i01_assinatura','2024-05-10 02:28:09','n_diff_pfx01',0,1,'agrupador'),('sei','assinatura','i01_assinatura','2024-05-10 02:28:09','n_diff_pfx02',0,1,'agrupador,id_assinatura'),('sei','assinatura','i01_assinatura','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','i01_assinatura','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assinatura','i02_assinatura','2024-05-10 02:28:09','n_diff_pfx01',0,1,'id_documento'),('sei','assinatura','i02_assinatura','2024-05-10 02:28:09','n_diff_pfx02',0,1,'id_documento,id_atividade'),('sei','assinatura','i02_assinatura','2024-05-10 02:28:09','n_diff_pfx03',0,1,'id_documento,id_atividade,id_assinatura'),('sei','assinatura','i02_assinatura','2024-05-10 02:28:09','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assinatura','i02_assinatura','2024-05-10 02:28:09','size',1,NULL,'Number of pages in the index'),('sei','assunto','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',700,17,'id_assunto'),('sei','assunto','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',17,NULL,'Number of leaf pages in the index'),('sei','assunto','PRIMARY','2024-05-10 02:28:10','size',18,NULL,'Number of pages in the index'),('sei','assunto','fk_assunto_tabela_assuntos','2024-05-10 02:28:10','n_diff_pfx01',1,1,'id_tabela_assuntos'),('sei','assunto','fk_assunto_tabela_assuntos','2024-05-10 02:28:10','n_diff_pfx02',700,1,'id_tabela_assuntos,id_assunto'),('sei','assunto','fk_assunto_tabela_assuntos','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assunto','fk_assunto_tabela_assuntos','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_diff_pfx01',1,2,'id_tabela_assuntos'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_diff_pfx02',700,2,'id_tabela_assuntos,codigo_estruturado'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_diff_pfx03',700,2,'id_tabela_assuntos,codigo_estruturado,sin_estrutural'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_diff_pfx04',700,2,'id_tabela_assuntos,codigo_estruturado,sin_estrutural,sin_ativo'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_diff_pfx05',700,2,'id_tabela_assuntos,codigo_estruturado,sin_estrutural,sin_ativo,id_assunto'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sei','assunto','i01_assunto','2024-05-10 02:28:10','size',3,NULL,'Number of pages in the index'),('sei','assunto_proxy','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',415,1,'id_assunto_proxy'),('sei','assunto_proxy','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assunto_proxy','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','assunto_proxy','fk_assunto_proxy_assunto','2024-05-10 02:28:10','n_diff_pfx01',415,1,'id_assunto'),('sei','assunto_proxy','fk_assunto_proxy_assunto','2024-05-10 02:28:10','n_diff_pfx02',415,1,'id_assunto,id_assunto_proxy'),('sei','assunto_proxy','fk_assunto_proxy_assunto','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','assunto_proxy','fk_assunto_proxy_assunto','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atividade','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_protocolo','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_protocolo'),('sei','atividade','fk_atividade_protocolo','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_protocolo,id_atividade'),('sei','atividade','fk_atividade_protocolo','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_protocolo','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_tarefa','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_tarefa'),('sei','atividade','fk_atividade_tarefa','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_tarefa,id_atividade'),('sei','atividade','fk_atividade_tarefa','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_tarefa','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_unidade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','fk_atividade_unidade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_atividade'),('sei','atividade','fk_atividade_unidade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_unidade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_unidade_origem','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade_origem'),('sei','atividade','fk_atividade_unidade_origem','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade_origem,id_atividade'),('sei','atividade','fk_atividade_unidade_origem','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_unidade_origem','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_usuario','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario'),('sei','atividade','fk_atividade_usuario','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario,id_atividade'),('sei','atividade','fk_atividade_usuario','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_usuario','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_usuario_atribuica','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_atribuicao'),('sei','atividade','fk_atividade_usuario_atribuica','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_atribuicao,id_atividade'),('sei','atividade','fk_atividade_usuario_atribuica','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_usuario_atribuica','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_usuario_conclusao','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_conclusao'),('sei','atividade','fk_atividade_usuario_conclusao','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_conclusao,id_atividade'),('sei','atividade','fk_atividade_usuario_conclusao','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_usuario_conclusao','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_usuario_origem','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_origem'),('sei','atividade','fk_atividade_usuario_origem','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_origem,id_atividade'),('sei','atividade','fk_atividade_usuario_origem','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_usuario_origem','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','fk_atividade_usuario_visualiza','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_visualizacao'),('sei','atividade','fk_atividade_usuario_visualiza','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_visualizacao,id_atividade'),('sei','atividade','fk_atividade_usuario_visualiza','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','fk_atividade_usuario_visualiza','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_atividade,id_protocolo'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_atividade,id_protocolo,id_unidade'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario,dth_conclusao'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx06',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario,dth_conclusao,sin_inicial'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_diff_pfx07',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario,dth_conclusao,sin_inicial,id_usuario_atribuicao'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i01_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_atividade,id_protocolo'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_atividade,id_protocolo,id_unidade'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_atividade,id_protocolo,id_unidade,id_usuario,id_tarefa'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i02_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,dth_conclusao'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,dth_conclusao,sin_inicial'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,dth_conclusao,sin_inicial,id_atividade'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i03_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,dth_abertura'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,dth_abertura,id_tarefa'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,dth_abertura,id_tarefa,id_atividade'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_unidade,dth_abertura,id_tarefa,id_atividade,id_protocolo'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_diff_pfx06',0,1,'id_unidade,dth_abertura,id_tarefa,id_atividade,id_protocolo,dth_conclusao'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i04_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_protocolo'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,id_protocolo,id_atividade'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,id_protocolo,id_atividade,id_unidade_origem'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i06_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_protocolo'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_protocolo,id_unidade_origem'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_protocolo,id_unidade_origem,id_tarefa'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_protocolo,id_unidade_origem,id_tarefa,id_atividade'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i07_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_usuario'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,id_usuario,id_protocolo'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,id_usuario,id_protocolo,id_atividade'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i09_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i10_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'dth_abertura'),('sei','atividade','i10_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'dth_abertura,id_tarefa'),('sei','atividade','i10_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'dth_abertura,id_tarefa,id_atividade'),('sei','atividade','i10_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i10_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_protocolo'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,id_protocolo,dth_conclusao'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,id_protocolo,dth_conclusao,id_usuario'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_unidade,id_protocolo,dth_conclusao,id_usuario,id_atividade'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_diff_pfx06',0,1,'id_unidade,id_protocolo,dth_conclusao,id_usuario,id_atividade,id_usuario_atribuicao'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i16_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_protocolo'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_protocolo,id_tarefa'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_protocolo,id_tarefa,id_unidade'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_protocolo,id_tarefa,id_unidade,id_unidade_origem'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_protocolo,id_tarefa,id_unidade,id_unidade_origem,id_atividade'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atividade','i17_atividade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atributo'),('sei','atributo','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo','fk_atributo_tipo_formulario','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_tipo_formulario'),('sei','atributo','fk_atributo_tipo_formulario','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_tipo_formulario,id_atributo'),('sei','atributo','fk_atributo_tipo_formulario','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo','fk_atributo_tipo_formulario','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_andamento','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atributo_andamento'),('sei','atributo_andamento','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_andamento','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_andamento','fk_atributo_andamento_atividad','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atributo_andamento','fk_atributo_andamento_atividad','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_atividade,id_atributo_andamento'),('sei','atributo_andamento','fk_atributo_andamento_atividad','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_andamento','fk_atributo_andamento_atividad','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_atividade,nome'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_atividade,nome,id_origem'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_atividade,nome,id_origem,id_atributo_andamento'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_andamento','i01_atributo_andamento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_andamento','i02_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'nome'),('sei','atributo_andamento','i02_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'nome,id_origem'),('sei','atributo_andamento','i02_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx03',0,1,'nome,id_origem,id_atributo_andamento'),('sei','atributo_andamento','i02_atributo_andamento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_andamento','i02_atributo_andamento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_andamento','i04_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atividade'),('sei','atributo_andamento','i04_atributo_andamento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_atividade,id_atributo_andamento'),('sei','atributo_andamento','i04_atributo_andamento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_andamento','i04_atributo_andamento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_instalacao','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_atributo_instalacao'),('sei','atributo_instalacao','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_instalacao','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','atributo_instalacao','fk_atributo_inst_andam_inst','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_andamento_instalacao'),('sei','atributo_instalacao','fk_atributo_inst_andam_inst','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_andamento_instalacao,id_atributo_instalacao'),('sei','atributo_instalacao','fk_atributo_inst_andam_inst','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','atributo_instalacao','fk_atributo_inst_andam_inst','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','auditoria_protocolo','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_auditoria_protocolo'),('sei','auditoria_protocolo','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','auditoria_protocolo','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario,id_protocolo'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_usuario,id_protocolo,versao'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_usuario,id_protocolo,versao,dta_auditoria'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_usuario,id_protocolo,versao,dta_auditoria,id_anexo'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_diff_pfx06',0,1,'id_usuario,id_protocolo,versao,dta_auditoria,id_anexo,id_auditoria_protocolo'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','auditoria_protocolo','i01_auditoria_protocolo','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_base_conhecimento'),('sei','base_conhecimento','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','fk_base_conhec_conj_estilos','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_conjunto_estilos'),('sei','base_conhecimento','fk_base_conhec_conj_estilos','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_conjunto_estilos,id_base_conhecimento'),('sei','base_conhecimento','fk_base_conhec_conj_estilos','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','fk_base_conhec_conj_estilos','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','fk_base_conhec_usu_gerador','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_gerador'),('sei','base_conhecimento','fk_base_conhec_usu_gerador','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_gerador,id_base_conhecimento'),('sei','base_conhecimento','fk_base_conhec_usu_gerador','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','fk_base_conhec_usu_gerador','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','fk_base_conhec_usu_liberacao','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario_liberacao'),('sei','base_conhecimento','fk_base_conhec_usu_liberacao','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario_liberacao,id_base_conhecimento'),('sei','base_conhecimento','fk_base_conhec_usu_liberacao','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','fk_base_conhec_usu_liberacao','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','fk_base_conhecimento_unidade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','base_conhecimento','fk_base_conhecimento_unidade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_base_conhecimento'),('sei','base_conhecimento','fk_base_conhecimento_unidade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','fk_base_conhecimento_unidade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','i01_base_conhecimento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_base_conhecimento_agrupador'),('sei','base_conhecimento','i01_base_conhecimento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_base_conhecimento_agrupador,id_base_conhecimento'),('sei','base_conhecimento','i01_base_conhecimento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','i01_base_conhecimento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','base_conhecimento','i02_base_conhecimento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','base_conhecimento','i02_base_conhecimento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,sta_estado'),('sei','base_conhecimento','i02_base_conhecimento','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,sta_estado,id_base_conhecimento'),('sei','base_conhecimento','i02_base_conhecimento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','base_conhecimento','i02_base_conhecimento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_bloco'),('sei','bloco','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','fk_bloco_unidade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','bloco','fk_bloco_unidade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_bloco'),('sei','bloco','fk_bloco_unidade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','fk_bloco_unidade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','fk_bloco_usuario','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario'),('sei','bloco','fk_bloco_usuario','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario,id_bloco'),('sei','bloco','fk_bloco_usuario','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','fk_bloco_usuario','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','i01_bloco','2024-05-10 02:28:10','n_diff_pfx01',0,1,'sta_estado'),('sei','bloco','i01_bloco','2024-05-10 02:28:10','n_diff_pfx02',0,1,'sta_estado,id_bloco'),('sei','bloco','i01_bloco','2024-05-10 02:28:10','n_diff_pfx03',0,1,'sta_estado,id_bloco,sta_tipo'),('sei','bloco','i01_bloco','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','i01_bloco','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,sta_tipo'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_unidade,sta_tipo,sta_estado'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_unidade,sta_tipo,sta_estado,id_bloco'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_unidade,sta_tipo,sta_estado,id_bloco,descricao'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','i02_bloco','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_bloco'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_bloco,sta_estado'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_bloco,sta_estado,sta_tipo'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_diff_pfx04',0,1,'id_bloco,sta_estado,sta_tipo,id_unidade'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_diff_pfx05',0,1,'id_bloco,sta_estado,sta_tipo,id_unidade,id_usuario'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','bloco','ie1_bloco','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','campo_pesquisa','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_campo_pesquisa'),('sei','campo_pesquisa','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','campo_pesquisa','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','campo_pesquisa','fk_campo_pesquisa_pesquisa','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_pesquisa'),('sei','campo_pesquisa','fk_campo_pesquisa_pesquisa','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_pesquisa,id_campo_pesquisa'),('sei','campo_pesquisa','fk_campo_pesquisa_pesquisa','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','campo_pesquisa','fk_campo_pesquisa_pesquisa','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','cargo','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',81,1,'id_cargo'),('sei','cargo','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','cargo','fk_cargo_titulo','2024-05-10 02:28:11','n_diff_pfx01',1,1,'id_titulo'),('sei','cargo','fk_cargo_titulo','2024-05-10 02:28:11','n_diff_pfx02',81,1,'id_titulo,id_cargo'),('sei','cargo','fk_cargo_titulo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo','fk_cargo_titulo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','cargo','fk_cargo_tratamento','2024-05-10 02:28:11','n_diff_pfx01',4,1,'id_tratamento'),('sei','cargo','fk_cargo_tratamento','2024-05-10 02:28:11','n_diff_pfx02',81,1,'id_tratamento,id_cargo'),('sei','cargo','fk_cargo_tratamento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo','fk_cargo_tratamento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','cargo','fk_cargo_vocativo','2024-05-10 02:28:11','n_diff_pfx01',63,1,'id_vocativo'),('sei','cargo','fk_cargo_vocativo','2024-05-10 02:28:11','n_diff_pfx02',81,1,'id_vocativo,id_cargo'),('sei','cargo','fk_cargo_vocativo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo','fk_cargo_vocativo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','cargo','ie1_cargo','2024-05-10 02:28:11','n_diff_pfx01',81,1,'id_cargo'),('sei','cargo','ie1_cargo','2024-05-10 02:28:11','n_diff_pfx02',81,1,'id_cargo,sin_ativo'),('sei','cargo','ie1_cargo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo','ie1_cargo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','cargo_funcao','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','cargo_funcao','PRIMARY','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_cargo_funcao'),('sei','cargo_funcao','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo_funcao','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','cargo_funcao','fk_cargo_funcao_unidade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','cargo_funcao','fk_cargo_funcao_unidade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_cargo_funcao'),('sei','cargo_funcao','fk_cargo_funcao_unidade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','cargo_funcao','fk_cargo_funcao_unidade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','categoria','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_categoria'),('sei','categoria','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','categoria','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','cidade','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',5746,20,'id_cidade'),('sei','cidade','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',23,NULL,'Number of leaf pages in the index'),('sei','cidade','PRIMARY','2024-05-10 02:28:11','size',24,NULL,'Number of pages in the index'),('sei','cidade','ak1_cidade','2024-05-10 02:28:11','n_diff_pfx01',27,14,'id_uf'),('sei','cidade','ak1_cidade','2024-05-10 02:28:11','n_diff_pfx02',5564,14,'id_uf,nome'),('sei','cidade','ak1_cidade','2024-05-10 02:28:11','n_leaf_pages',14,NULL,'Number of leaf pages in the index'),('sei','cidade','ak1_cidade','2024-05-10 02:28:11','size',15,NULL,'Number of pages in the index'),('sei','cidade','fk_cidade_pais','2024-05-10 02:28:11','n_diff_pfx01',1,6,'id_pais'),('sei','cidade','fk_cidade_pais','2024-05-10 02:28:11','n_diff_pfx02',5564,6,'id_pais,id_cidade'),('sei','cidade','fk_cidade_pais','2024-05-10 02:28:11','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('sei','cidade','fk_cidade_pais','2024-05-10 02:28:11','size',7,NULL,'Number of pages in the index'),('sei','cidade','fk_cidade_uf','2024-05-10 02:28:11','n_diff_pfx01',27,6,'id_uf'),('sei','cidade','fk_cidade_uf','2024-05-10 02:28:11','n_diff_pfx02',5564,6,'id_uf,id_cidade'),('sei','cidade','fk_cidade_uf','2024-05-10 02:28:11','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('sei','cidade','fk_cidade_uf','2024-05-10 02:28:11','size',7,NULL,'Number of pages in the index'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_diff_pfx01',1,9,'id_pais'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_diff_pfx02',27,9,'id_pais,id_uf'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_diff_pfx03',53,9,'id_pais,id_uf,sin_capital'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_diff_pfx04',5564,9,'id_pais,id_uf,sin_capital,codigo_ibge'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_diff_pfx05',5564,9,'id_pais,id_uf,sin_capital,codigo_ibge,id_cidade'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','n_leaf_pages',9,NULL,'Number of leaf pages in the index'),('sei','cidade','i01_cidade','2024-05-10 02:28:11','size',10,NULL,'Number of pages in the index'),('sei','comentario','PRIMARY','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_comentario'),('sei','comentario','PRIMARY','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','PRIMARY','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','comentario','fk_comentario_procedimento','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_procedimento'),('sei','comentario','fk_comentario_procedimento','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_procedimento,id_comentario'),('sei','comentario','fk_comentario_procedimento','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','fk_comentario_procedimento','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','comentario','fk_comentario_rel_prot_prot','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_rel_protocolo_protocolo'),('sei','comentario','fk_comentario_rel_prot_prot','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_rel_protocolo_protocolo,id_comentario'),('sei','comentario','fk_comentario_rel_prot_prot','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','fk_comentario_rel_prot_prot','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','comentario','fk_comentario_unidade','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_unidade'),('sei','comentario','fk_comentario_unidade','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_unidade,id_comentario'),('sei','comentario','fk_comentario_unidade','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','fk_comentario_unidade','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','comentario','fk_comentario_usuario','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_usuario'),('sei','comentario','fk_comentario_usuario','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_usuario,id_comentario'),('sei','comentario','fk_comentario_usuario','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','fk_comentario_usuario','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','comentario','i01_comentario','2024-05-10 02:28:10','n_diff_pfx01',0,1,'id_procedimento'),('sei','comentario','i01_comentario','2024-05-10 02:28:10','n_diff_pfx02',0,1,'id_procedimento,id_rel_protocolo_protocolo'),('sei','comentario','i01_comentario','2024-05-10 02:28:10','n_diff_pfx03',0,1,'id_procedimento,id_rel_protocolo_protocolo,id_comentario'),('sei','comentario','i01_comentario','2024-05-10 02:28:10','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','comentario','i01_comentario','2024-05-10 02:28:10','size',1,NULL,'Number of pages in the index'),('sei','conjunto_estilos','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',66,1,'id_conjunto_estilos'),('sei','conjunto_estilos','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','conjunto_estilos','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','conjunto_estilos_item','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',1636,20,'id_conjunto_estilos_item'),('sei','conjunto_estilos_item','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',21,NULL,'Number of leaf pages in the index'),('sei','conjunto_estilos_item','PRIMARY','2024-05-10 02:28:11','size',22,NULL,'Number of pages in the index'),('sei','conjunto_estilos_item','fk_conj_est_item_conj_est','2024-05-10 02:28:11','n_diff_pfx01',66,2,'id_conjunto_estilos'),('sei','conjunto_estilos_item','fk_conj_est_item_conj_est','2024-05-10 02:28:11','n_diff_pfx02',1642,2,'id_conjunto_estilos,id_conjunto_estilos_item'),('sei','conjunto_estilos_item','fk_conj_est_item_conj_est','2024-05-10 02:28:11','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sei','conjunto_estilos_item','fk_conj_est_item_conj_est','2024-05-10 02:28:11','size',3,NULL,'Number of pages in the index'),('sei','contato','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',101,1,'id_contato'),('sei','contato','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_cargo','2024-05-10 02:28:11','n_diff_pfx01',1,1,'id_cargo'),('sei','contato','fk_contato_cargo','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_cargo,id_contato'),('sei','contato','fk_contato_cargo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_cargo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_categoria','2024-05-10 02:28:11','n_diff_pfx01',1,1,'id_categoria'),('sei','contato','fk_contato_categoria','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_categoria,id_contato'),('sei','contato','fk_contato_categoria','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_categoria','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_cidade','2024-05-10 02:28:11','n_diff_pfx01',2,1,'id_cidade'),('sei','contato','fk_contato_cidade','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_cidade,id_contato'),('sei','contato','fk_contato_cidade','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_cidade','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_pais','2024-05-10 02:28:11','n_diff_pfx01',2,1,'id_pais'),('sei','contato','fk_contato_pais','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_pais,id_contato'),('sei','contato','fk_contato_pais','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_pais','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_pais_passaporte','2024-05-10 02:28:11','n_diff_pfx01',1,1,'id_pais_passaporte'),('sei','contato','fk_contato_pais_passaporte','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_pais_passaporte,id_contato'),('sei','contato','fk_contato_pais_passaporte','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_pais_passaporte','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_tipo_contato','2024-05-10 02:28:11','n_diff_pfx01',6,1,'id_tipo_contato'),('sei','contato','fk_contato_tipo_contato','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_tipo_contato,id_contato'),('sei','contato','fk_contato_tipo_contato','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_tipo_contato','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_titulo','2024-05-10 02:28:11','n_diff_pfx01',1,1,'id_titulo'),('sei','contato','fk_contato_titulo','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_titulo,id_contato'),('sei','contato','fk_contato_titulo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_titulo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_uf','2024-05-10 02:28:11','n_diff_pfx01',2,1,'id_uf'),('sei','contato','fk_contato_uf','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_uf,id_contato'),('sei','contato','fk_contato_uf','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_uf','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_unidade_cadastro','2024-05-10 02:28:11','n_diff_pfx01',2,1,'id_unidade_cadastro'),('sei','contato','fk_contato_unidade_cadastro','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_unidade_cadastro,id_contato'),('sei','contato','fk_contato_unidade_cadastro','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_unidade_cadastro','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','fk_contato_usuario_cadastro','2024-05-10 02:28:11','n_diff_pfx01',2,1,'id_usuario_cadastro'),('sei','contato','fk_contato_usuario_cadastro','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_usuario_cadastro,id_contato'),('sei','contato','fk_contato_usuario_cadastro','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','fk_contato_usuario_cadastro','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_diff_pfx01',6,1,'id_tipo_contato'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_diff_pfx02',101,1,'id_tipo_contato,sigla'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_diff_pfx03',101,1,'id_tipo_contato,sigla,nome'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_diff_pfx04',101,1,'id_tipo_contato,sigla,nome,sin_ativo'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_diff_pfx05',101,1,'id_tipo_contato,sigla,nome,sin_ativo,id_contato'),('sei','contato','i01_contato','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','i01_contato','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','contato','i11_contato','2024-05-10 02:28:11','n_diff_pfx01',101,1,'nome'),('sei','contato','i11_contato','2024-05-10 02:28:11','n_diff_pfx02',101,1,'nome,sin_ativo'),('sei','contato','i11_contato','2024-05-10 02:28:11','n_diff_pfx03',101,1,'nome,sin_ativo,sigla'),('sei','contato','i11_contato','2024-05-10 02:28:11','n_diff_pfx04',101,1,'nome,sin_ativo,sigla,id_contato'),('sei','contato','i11_contato','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','contato','i11_contato','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_interno','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_controle_interno'),('sei','controle_interno','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_interno','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_controle_prazo'),('sei','controle_prazo','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','fk_controle_prazo_protocolo','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_protocolo'),('sei','controle_prazo','fk_controle_prazo_protocolo','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_protocolo,id_controle_prazo'),('sei','controle_prazo','fk_controle_prazo_protocolo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','fk_controle_prazo_protocolo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','fk_controle_prazo_unidade','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','controle_prazo','fk_controle_prazo_unidade','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,id_controle_prazo'),('sei','controle_prazo','fk_controle_prazo_unidade','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','fk_controle_prazo_unidade','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','fk_controle_prazo_usuario','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_usuario'),('sei','controle_prazo','fk_controle_prazo_usuario','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_usuario,id_controle_prazo'),('sei','controle_prazo','fk_controle_prazo_usuario','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','fk_controle_prazo_usuario','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,dta_prazo'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','n_diff_pfx03',0,1,'id_unidade,dta_prazo,dta_conclusao'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','n_diff_pfx04',0,1,'id_unidade,dta_prazo,dta_conclusao,id_controle_prazo'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','i01_controle_prazo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','i02_controle_prazo','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','controle_prazo','i02_controle_prazo','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,dta_prazo'),('sei','controle_prazo','i02_controle_prazo','2024-05-10 02:28:11','n_diff_pfx03',0,1,'id_unidade,dta_prazo,id_controle_prazo'),('sei','controle_prazo','i02_controle_prazo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','i02_controle_prazo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_prazo','i03_controle_prazo','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','controle_prazo','i03_controle_prazo','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,dta_conclusao'),('sei','controle_prazo','i03_controle_prazo','2024-05-10 02:28:11','n_diff_pfx03',0,1,'id_unidade,dta_conclusao,id_controle_prazo'),('sei','controle_prazo','i03_controle_prazo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_prazo','i03_controle_prazo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','controle_unidade','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_controle_unidade'),('sei','controle_unidade','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','controle_unidade','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','ak_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento','ak_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_documento,id_procedimento'),('sei','documento','ak_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','ak_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_conjunto_estilos','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_conjunto_estilos'),('sei','documento','fk_documento_conjunto_estilos','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_conjunto_estilos,id_documento'),('sei','documento','fk_documento_conjunto_estilos','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_conjunto_estilos','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_procedimento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_procedimento'),('sei','documento','fk_documento_procedimento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_procedimento,id_documento'),('sei','documento','fk_documento_procedimento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_procedimento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_serie','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_serie'),('sei','documento','fk_documento_serie','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_serie,id_documento'),('sei','documento','fk_documento_serie','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_serie','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_tipo_conferencia','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_tipo_conferencia'),('sei','documento','fk_documento_tipo_conferencia','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_tipo_conferencia,id_documento'),('sei','documento','fk_documento_tipo_conferencia','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_tipo_conferencia','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_tipo_formulario','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_tipo_formulario'),('sei','documento','fk_documento_tipo_formulario','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_tipo_formulario,id_documento'),('sei','documento','fk_documento_tipo_formulario','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_tipo_formulario','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','fk_documento_unidade_responsav','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade_responsavel'),('sei','documento','fk_documento_unidade_responsav','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade_responsavel,id_documento'),('sei','documento','fk_documento_unidade_responsav','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','fk_documento_unidade_responsav','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','i02_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento','i02_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_documento,id_documento_edoc'),('sei','documento','i02_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','i02_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','i03_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento','i03_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_documento,id_serie'),('sei','documento','i03_documento','2024-05-10 02:28:11','n_diff_pfx03',0,1,'id_documento,id_serie,id_tipo_formulario'),('sei','documento','i03_documento','2024-05-10 02:28:11','n_diff_pfx04',0,1,'id_documento,id_serie,id_tipo_formulario,sta_documento'),('sei','documento','i03_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','i03_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','i04_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'numero'),('sei','documento','i04_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'numero,id_serie'),('sei','documento','i04_documento','2024-05-10 02:28:11','n_diff_pfx03',0,1,'numero,id_serie,id_documento'),('sei','documento','i04_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','i04_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','i06_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento','i06_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_documento,sin_arquivamento'),('sei','documento','i06_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','i06_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento','if5_documento','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_serie'),('sei','documento','if5_documento','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_serie,id_documento'),('sei','documento','if5_documento','2024-05-10 02:28:11','n_diff_pfx03',0,1,'id_serie,id_documento,id_procedimento'),('sei','documento','if5_documento','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento','if5_documento','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','documento_conteudo','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_documento'),('sei','documento_conteudo','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','documento_conteudo','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','dominio','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_dominio'),('sei','dominio','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','dominio','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','dominio','fk_dominio_atributo','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_atributo'),('sei','dominio','fk_dominio_atributo','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_atributo,id_dominio'),('sei','dominio','fk_dominio_atributo','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','dominio','fk_dominio_atributo','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','email_grupo_email','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_email_grupo_email'),('sei','email_grupo_email','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_grupo_email','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','email_grupo_email','fk_email_grupo_email_grupo_em','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_grupo_email'),('sei','email_grupo_email','fk_email_grupo_email_grupo_em','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_grupo_email,id_email_grupo_email'),('sei','email_grupo_email','fk_email_grupo_email_grupo_em','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_grupo_email','fk_email_grupo_email_grupo_em','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','email_sistema','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',10,1,'id_email_sistema'),('sei','email_sistema','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_sistema','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','email_sistema','i01_email_sistema','2024-05-10 02:28:12','n_diff_pfx01',1,1,'id_email_sistema_modulo'),('sei','email_sistema','i01_email_sistema','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_sistema','i01_email_sistema','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','email_unidade','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',3,1,'id_email_unidade'),('sei','email_unidade','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_unidade','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','email_unidade','fk_email_unidade_unidade','2024-05-10 02:28:12','n_diff_pfx01',3,1,'id_unidade'),('sei','email_unidade','fk_email_unidade_unidade','2024-05-10 02:28:12','n_diff_pfx02',3,1,'id_unidade,id_email_unidade'),('sei','email_unidade','fk_email_unidade_unidade','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_unidade','fk_email_unidade_unidade','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','email_utilizado','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_email_utilizado'),('sei','email_utilizado','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_utilizado','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','email_utilizado','fk_email_utilizado_unidade','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','email_utilizado','fk_email_utilizado_unidade','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,id_email_utilizado'),('sei','email_utilizado','fk_email_utilizado_unidade','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','email_utilizado','fk_email_utilizado_unidade','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','estatisticas','GEN_CLUST_INDEX','2024-05-10 02:28:11','n_diff_pfx01',0,1,'DB_ROW_ID'),('sei','estatisticas','GEN_CLUST_INDEX','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','estatisticas','GEN_CLUST_INDEX','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','estatisticas','i01_estatisticas','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_estatisticas'),('sei','estatisticas','i01_estatisticas','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_estatisticas,DB_ROW_ID'),('sei','estatisticas','i01_estatisticas','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','estatisticas','i01_estatisticas','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','estilo','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',39,1,'id_estilo'),('sei','estilo','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','estilo','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','feed','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_feed'),('sei','feed','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','feed','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','feriado','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',12,1,'id_feriado'),('sei','feriado','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','feriado','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','feriado','fk_feriado_orgao','2024-05-10 02:28:12','n_diff_pfx01',1,1,'id_orgao'),('sei','feriado','fk_feriado_orgao','2024-05-10 02:28:12','n_diff_pfx02',12,1,'id_orgao,id_feriado'),('sei','feriado','fk_feriado_orgao','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','feriado','fk_feriado_orgao','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_acompanhamento','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_grupo_acompanhamento'),('sei','grupo_acompanhamento','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_acompanhamento','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_acompanhamento','fk_grupo_acompanhamento_unidad','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_acompanhamento','fk_grupo_acompanhamento_unidad','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,id_grupo_acompanhamento'),('sei','grupo_acompanhamento','fk_grupo_acompanhamento_unidad','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_acompanhamento','fk_grupo_acompanhamento_unidad','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_bloco','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_grupo_bloco'),('sei','grupo_bloco','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_bloco','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_bloco','fk_grupo_bloco_unidade','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_bloco','fk_grupo_bloco_unidade','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,id_grupo_bloco'),('sei','grupo_bloco','fk_grupo_bloco_unidade','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_bloco','fk_grupo_bloco_unidade','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_contato','PRIMARY','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_grupo_contato'),('sei','grupo_contato','PRIMARY','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_contato','PRIMARY','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_contato','fk_grupo_contato_unidade','2024-05-10 02:28:11','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_contato','fk_grupo_contato_unidade','2024-05-10 02:28:11','n_diff_pfx02',0,1,'id_unidade,id_grupo_contato'),('sei','grupo_contato','fk_grupo_contato_unidade','2024-05-10 02:28:11','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_contato','fk_grupo_contato_unidade','2024-05-10 02:28:11','size',1,NULL,'Number of pages in the index'),('sei','grupo_email','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_grupo_email'),('sei','grupo_email','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_email','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_email','fk_grupo_email_unidade','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_email','fk_grupo_email_unidade','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,id_grupo_email'),('sei','grupo_email','fk_grupo_email_unidade','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_email','fk_grupo_email_unidade','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_federacao','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_grupo_federacao'),('sei','grupo_federacao','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_federacao','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_federacao','fk_grupo_federacao_unidade','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_federacao','fk_grupo_federacao_unidade','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,id_grupo_federacao'),('sei','grupo_federacao','fk_grupo_federacao_unidade','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_federacao','fk_grupo_federacao_unidade','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_grupo_protocolo_modelo'),('sei','grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_protocolo_modelo','fk_grupo_protocolo_modelo_unid','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_protocolo_modelo','fk_grupo_protocolo_modelo_unid','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,id_grupo_protocolo_modelo'),('sei','grupo_protocolo_modelo','fk_grupo_protocolo_modelo_unid','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_protocolo_modelo','fk_grupo_protocolo_modelo_unid','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_serie','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',2,1,'id_grupo_serie'),('sei','grupo_serie','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_serie','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_unidade','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_grupo_unidade'),('sei','grupo_unidade','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_unidade','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','grupo_unidade','fk_grupo_unidade_unidade','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','grupo_unidade','fk_grupo_unidade_unidade','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,id_grupo_unidade'),('sei','grupo_unidade','fk_grupo_unidade_unidade','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','grupo_unidade','fk_grupo_unidade_unidade','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','hipotese_legal','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',18,1,'id_hipotese_legal'),('sei','hipotese_legal','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','hipotese_legal','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','imagem_formato','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',3,1,'id_imagem_formato'),('sei','imagem_formato','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','imagem_formato','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',9,1,'id_infra_agendamento_tarefa'),('sei','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','infra_auditoria','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',250,12,'id_infra_auditoria'),('sei','infra_auditoria','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',12,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','PRIMARY','2024-05-10 02:28:13','size',13,NULL,'Number of pages in the index'),('sei','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx01',7,1,'recurso'),('sei','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx02',250,1,'recurso,id_infra_auditoria'),('sei','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx01',126,1,'dth_acesso'),('sei','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx02',250,1,'dth_acesso,id_infra_auditoria'),('sei','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx01',3,1,'sigla_usuario'),('sei','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx02',250,1,'sigla_usuario,id_infra_auditoria'),('sei','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx01',2,1,'sigla_unidade'),('sei','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx02',250,1,'sigla_unidade,id_infra_auditoria'),('sei','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_auditoria','i05_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx01',3,1,'id_usuario'),('sei','infra_auditoria','i05_infra_auditoria','2024-05-10 02:28:13','n_diff_pfx02',250,1,'id_usuario,id_infra_auditoria'),('sei','infra_auditoria','i05_infra_auditoria','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_auditoria','i05_infra_auditoria','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_dado_usuario','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_usuario'),('sei','infra_dado_usuario','PRIMARY','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_usuario,nome'),('sei','infra_dado_usuario','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_dado_usuario','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','infra_log','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_infra_log'),('sei','infra_log','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_log','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','infra_log','i01_infra_log','2024-05-10 02:28:12','n_diff_pfx01',0,1,'sta_tipo'),('sei','infra_log','i01_infra_log','2024-05-10 02:28:12','n_diff_pfx02',0,1,'sta_tipo,dth_log'),('sei','infra_log','i01_infra_log','2024-05-10 02:28:12','n_diff_pfx03',0,1,'sta_tipo,dth_log,id_infra_log'),('sei','infra_log','i01_infra_log','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_log','i01_infra_log','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','infra_navegador','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',2,1,'id_infra_navegador'),('sei','infra_navegador','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_navegador','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','n_diff_pfx01',2,1,'dth_acesso'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','n_diff_pfx02',2,1,'dth_acesso,identificacao'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','n_diff_pfx03',2,1,'dth_acesso,identificacao,versao'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','n_diff_pfx04',2,1,'dth_acesso,identificacao,versao,id_infra_navegador'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_navegador','i01_infra_navegador','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_parametro','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',52,1,'nome'),('sei','infra_parametro','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_parametro','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',4,1,'id_infra_regra_auditoria'),('sei','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',4,1,'id_infra_regra_auditoria'),('sei','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:15','n_diff_pfx02',321,1,'id_infra_regra_auditoria,recurso'),('sei','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:15','n_diff_pfx01',4,1,'id_infra_regra_auditoria'),('sei','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:15','n_diff_pfx02',321,1,'id_infra_regra_auditoria,recurso'),('sei','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','infra_sequencia','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',3,1,'nome_tabela'),('sei','infra_sequencia','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_sequencia','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','n_diff_pfx01',3,1,'nome_tabela'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','n_diff_pfx02',3,1,'nome_tabela,num_atual'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','n_diff_pfx03',3,1,'nome_tabela,num_atual,qtd_incremento'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','n_diff_pfx04',3,1,'nome_tabela,num_atual,qtd_incremento,num_maximo'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','infra_sequencia','i01_infra_sequencia','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','instalacao_federacao','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','instalacao_federacao','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','instalacao_federacao','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','instalacao_federacao','ak_cnjp','2024-05-10 02:28:12','n_diff_pfx01',0,1,'cnpj'),('sei','instalacao_federacao','ak_cnjp','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','instalacao_federacao','ak_cnjp','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','lembrete','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_lembrete'),('sei','lembrete','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','lembrete','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','lembrete','i01_lembrete','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_usuario'),('sei','lembrete','i01_lembrete','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_usuario,id_lembrete'),('sei','lembrete','i01_lembrete','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','lembrete','i01_lembrete','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','PRIMARY','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_localizador'),('sei','localizador','PRIMARY','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','PRIMARY','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','ak1_localizador','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','localizador','ak1_localizador','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,seq_localizador'),('sei','localizador','ak1_localizador','2024-05-10 02:28:12','n_diff_pfx03',0,1,'id_unidade,seq_localizador,id_tipo_localizador'),('sei','localizador','ak1_localizador','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','ak1_localizador','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','fk_localizador_lugar_localizad','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_lugar_localizador'),('sei','localizador','fk_localizador_lugar_localizad','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_lugar_localizador,id_localizador'),('sei','localizador','fk_localizador_lugar_localizad','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','fk_localizador_lugar_localizad','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','fk_localizador_tipo_localizado','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_tipo_localizador'),('sei','localizador','fk_localizador_tipo_localizado','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_tipo_localizador,id_localizador'),('sei','localizador','fk_localizador_tipo_localizado','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','fk_localizador_tipo_localizado','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','fk_localizador_tipo_suporte','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_tipo_suporte'),('sei','localizador','fk_localizador_tipo_suporte','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_tipo_suporte,id_localizador'),('sei','localizador','fk_localizador_tipo_suporte','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','fk_localizador_tipo_suporte','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','localizador','fk_localizador_unidade','2024-05-10 02:28:12','n_diff_pfx01',0,1,'id_unidade'),('sei','localizador','fk_localizador_unidade','2024-05-10 02:28:12','n_diff_pfx02',0,1,'id_unidade,id_localizador'),('sei','localizador','fk_localizador_unidade','2024-05-10 02:28:12','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','localizador','fk_localizador_unidade','2024-05-10 02:28:12','size',1,NULL,'Number of pages in the index'),('sei','lugar_localizador','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_lugar_localizador'),('sei','lugar_localizador','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','lugar_localizador','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','lugar_localizador','ak1_lugar_localizador','2024-05-10 02:28:13','n_diff_pfx01',0,1,'nome'),('sei','lugar_localizador','ak1_lugar_localizador','2024-05-10 02:28:13','n_diff_pfx02',0,1,'nome,id_unidade'),('sei','lugar_localizador','ak1_lugar_localizador','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','lugar_localizador','ak1_lugar_localizador','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','lugar_localizador','fk_lugar_localizador_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','lugar_localizador','fk_lugar_localizador_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_lugar_localizador'),('sei','lugar_localizador','fk_lugar_localizador_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','lugar_localizador','fk_lugar_localizador_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','mapeamento_assunto','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_assunto_origem'),('sei','mapeamento_assunto','PRIMARY','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_assunto_origem,id_assunto_destino'),('sei','mapeamento_assunto','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','mapeamento_assunto','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','mapeamento_assunto','fk_assunto_map_assunto_destino','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_assunto_destino'),('sei','mapeamento_assunto','fk_assunto_map_assunto_destino','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_assunto_destino,id_assunto_origem'),('sei','mapeamento_assunto','fk_assunto_map_assunto_destino','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','mapeamento_assunto','fk_assunto_map_assunto_destino','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','mapeamento_assunto','fk_assunto_map_assunto_origem','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_assunto_origem'),('sei','mapeamento_assunto','fk_assunto_map_assunto_origem','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_assunto_origem,id_assunto_destino'),('sei','mapeamento_assunto','fk_assunto_map_assunto_origem','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','mapeamento_assunto','fk_assunto_map_assunto_origem','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','marcador','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_marcador'),('sei','marcador','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','marcador','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','marcador','fk_marcador_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','marcador','fk_marcador_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_marcador'),('sei','marcador','fk_marcador_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','marcador','fk_marcador_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','md_wssei_notificacao_ativ','GEN_CLUST_INDEX','2024-05-10 02:28:13','n_diff_pfx01',0,1,'DB_ROW_ID'),('sei','md_wssei_notificacao_ativ','GEN_CLUST_INDEX','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','md_wssei_notificacao_ativ','GEN_CLUST_INDEX','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','md_wssei_notificacao_ativ','i01_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_notificacao_atividade'),('sei','md_wssei_notificacao_ativ','i01_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_notificacao_atividade,DB_ROW_ID'),('sei','md_wssei_notificacao_ativ','i01_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','md_wssei_notificacao_ativ','i01_md_wssei_notificacao_ativ','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','md_wssei_notificacao_ativ','i02_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_atividade'),('sei','md_wssei_notificacao_ativ','i02_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_atividade,DB_ROW_ID'),('sei','md_wssei_notificacao_ativ','i02_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','md_wssei_notificacao_ativ','i02_md_wssei_notificacao_ativ','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','md_wssei_notificacao_ativ','i03_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_notificacao_atividade'),('sei','md_wssei_notificacao_ativ','i03_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_notificacao_atividade,id_atividade'),('sei','md_wssei_notificacao_ativ','i03_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_diff_pfx03',0,1,'id_notificacao_atividade,id_atividade,DB_ROW_ID'),('sei','md_wssei_notificacao_ativ','i03_md_wssei_notificacao_ativ','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','md_wssei_notificacao_ativ','i03_md_wssei_notificacao_ativ','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','modelo','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',69,1,'id_modelo'),('sei','modelo','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','modelo','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','monitoramento_servico','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_monitoramento_servico'),('sei','monitoramento_servico','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','monitoramento_servico','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','monitoramento_servico','fk_monitoram_servico_servico','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_servico'),('sei','monitoramento_servico','fk_monitoram_servico_servico','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_servico,id_monitoramento_servico'),('sei','monitoramento_servico','fk_monitoram_servico_servico','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','monitoramento_servico','fk_monitoram_servico_servico','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','monitoramento_servico','i01_monitoramento_servico','2024-05-10 02:28:13','n_diff_pfx01',0,1,'dth_acesso'),('sei','monitoramento_servico','i01_monitoramento_servico','2024-05-10 02:28:13','n_diff_pfx02',0,1,'dth_acesso,id_monitoramento_servico'),('sei','monitoramento_servico','i01_monitoramento_servico','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','monitoramento_servico','i01_monitoramento_servico','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','monitoramento_servico','i02_monitoramento_servico','2024-05-10 02:28:13','n_diff_pfx01',0,1,'operacao'),('sei','monitoramento_servico','i02_monitoramento_servico','2024-05-10 02:28:13','n_diff_pfx02',0,1,'operacao,id_monitoramento_servico'),('sei','monitoramento_servico','i02_monitoramento_servico','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','monitoramento_servico','i02_monitoramento_servico','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',790,2,'id_nivel_acesso_permitido'),('sei','nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sei','nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:16','size',3,NULL,'Number of pages in the index'),('sei','nivel_acesso_permitido','fk_nivel_acesso_perm_tipo_proc','2024-05-10 02:28:16','n_diff_pfx01',395,1,'id_tipo_procedimento'),('sei','nivel_acesso_permitido','fk_nivel_acesso_perm_tipo_proc','2024-05-10 02:28:16','n_diff_pfx02',790,1,'id_tipo_procedimento,id_nivel_acesso_permitido'),('sei','nivel_acesso_permitido','fk_nivel_acesso_perm_tipo_proc','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','nivel_acesso_permitido','fk_nivel_acesso_perm_tipo_proc','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','notificacao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_notificacao'),('sei','notificacao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','notificacao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','notificacao','fk_notificacao_atividade_confi','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_atividade_confirmacao'),('sei','notificacao','fk_notificacao_atividade_confi','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_atividade_confirmacao,id_notificacao'),('sei','notificacao','fk_notificacao_atividade_confi','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','notificacao','fk_notificacao_atividade_confi','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','notificacao','fk_notificacao_procedimento','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_procedimento'),('sei','notificacao','fk_notificacao_procedimento','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_procedimento,id_notificacao'),('sei','notificacao','fk_notificacao_procedimento','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','notificacao','fk_notificacao_procedimento','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','notificacao','fk_notificacao_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','notificacao','fk_notificacao_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_notificacao'),('sei','notificacao','fk_notificacao_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','notificacao','fk_notificacao_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','notificacao','fk_notificacao_usuario','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_usuario'),('sei','notificacao','fk_notificacao_usuario','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_usuario,id_notificacao'),('sei','notificacao','fk_notificacao_usuario','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','notificacao','fk_notificacao_usuario','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','novidade','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_novidade'),('sei','novidade','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','novidade','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','novidade','fk_novidade_usuario','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_usuario'),('sei','novidade','fk_novidade_usuario','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_usuario,id_novidade'),('sei','novidade','fk_novidade_usuario','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','novidade','fk_novidade_usuario','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','numeracao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_numeracao'),('sei','numeracao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','numeracao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'ano'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'ano,id_serie'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','n_diff_pfx03',0,1,'ano,id_serie,id_orgao'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','n_diff_pfx04',0,1,'ano,id_serie,id_orgao,id_unidade'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','numeracao','ak_numeracao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','numeracao','fk_numeracao_orgao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao'),('sei','numeracao','fk_numeracao_orgao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_orgao,id_numeracao'),('sei','numeracao','fk_numeracao_orgao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','numeracao','fk_numeracao_orgao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','numeracao','fk_numeracao_serie','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_serie'),('sei','numeracao','fk_numeracao_serie','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_serie,id_numeracao'),('sei','numeracao','fk_numeracao_serie','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','numeracao','fk_numeracao_serie','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','numeracao','fk_numeracao_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','numeracao','fk_numeracao_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_numeracao'),('sei','numeracao','fk_numeracao_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','numeracao','fk_numeracao_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','observacao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_observacao'),('sei','observacao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','observacao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','observacao','ak1_observacao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','observacao','ak1_observacao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_protocolo'),('sei','observacao','ak1_observacao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','observacao','ak1_observacao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','observacao','fk_observacao_protocolo','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_protocolo'),('sei','observacao','fk_observacao_protocolo','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_protocolo,id_observacao'),('sei','observacao','fk_observacao_protocolo','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','observacao','fk_observacao_protocolo','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','observacao','fk_observacao_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','observacao','fk_observacao_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_observacao'),('sei','observacao','fk_observacao_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','observacao','fk_observacao_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','operacao_servico','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_operacao_servico'),('sei','operacao_servico','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','operacao_servico','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','operacao_servico','fk_oper_serv_serie','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_serie'),('sei','operacao_servico','fk_oper_serv_serie','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_serie,id_operacao_servico'),('sei','operacao_servico','fk_oper_serv_serie','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','operacao_servico','fk_oper_serv_serie','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','operacao_servico','fk_oper_serv_servico','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_servico'),('sei','operacao_servico','fk_oper_serv_servico','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_servico,id_operacao_servico'),('sei','operacao_servico','fk_oper_serv_servico','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','operacao_servico','fk_oper_serv_servico','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','operacao_servico','fk_oper_serv_tipo_proc','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','operacao_servico','fk_oper_serv_tipo_proc','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_tipo_procedimento,id_operacao_servico'),('sei','operacao_servico','fk_oper_serv_tipo_proc','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','operacao_servico','fk_oper_serv_tipo_proc','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','operacao_servico','fk_oper_serv_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','operacao_servico','fk_oper_serv_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_operacao_servico'),('sei','operacao_servico','fk_oper_serv_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','operacao_servico','fk_oper_serv_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','ordenador_despesa','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_ordenador_despesa'),('sei','ordenador_despesa','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','ordenador_despesa','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_orgao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao'),('sei','ordenador_despesa','fk_ordenador_despesa_orgao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_orgao,id_ordenador_despesa'),('sei','ordenador_despesa','fk_ordenador_despesa_orgao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_orgao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','ordenador_despesa','fk_ordenador_despesa_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_ordenador_despesa'),('sei','ordenador_despesa','fk_ordenador_despesa_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_usuario','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_usuario'),('sei','ordenador_despesa','fk_ordenador_despesa_usuario','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_usuario,id_ordenador_despesa'),('sei','ordenador_despesa','fk_ordenador_despesa_usuario','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','ordenador_despesa','fk_ordenador_despesa_usuario','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao'),('sei','orgao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao','fk_orgao_contato','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_contato'),('sei','orgao','fk_orgao_contato','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_contato,id_orgao'),('sei','orgao','fk_orgao_contato','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao','fk_orgao_contato','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao','fk_orgao_orgao_federacao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao_federacao'),('sei','orgao','fk_orgao_orgao_federacao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_orgao_federacao,id_orgao'),('sei','orgao','fk_orgao_orgao_federacao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao','fk_orgao_orgao_federacao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao','fk_orgao_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','orgao','fk_orgao_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_orgao'),('sei','orgao','fk_orgao_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao','fk_orgao_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao_federacao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao_federacao'),('sei','orgao_federacao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao_federacao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao_federacao','fk_orgao_fed_instalacao_fed','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','orgao_federacao','fk_orgao_fed_instalacao_fed','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_instalacao_federacao,id_orgao_federacao'),('sei','orgao_federacao','fk_orgao_fed_instalacao_fed','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao_federacao','fk_orgao_fed_instalacao_fed','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao_historico','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao_historico'),('sei','orgao_historico','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao_historico','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao_historico','fk_orgao_historico_orgao','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_orgao'),('sei','orgao_historico','fk_orgao_historico_orgao','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_orgao,id_orgao_historico'),('sei','orgao_historico','fk_orgao_historico_orgao','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao_historico','fk_orgao_historico_orgao','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','orgao_historico','i02_orgao_historico','2024-05-10 02:28:13','n_diff_pfx01',0,1,'dta_inicio'),('sei','orgao_historico','i02_orgao_historico','2024-05-10 02:28:13','n_diff_pfx02',0,1,'dta_inicio,dta_fim'),('sei','orgao_historico','i02_orgao_historico','2024-05-10 02:28:13','n_diff_pfx03',0,1,'dta_inicio,dta_fim,id_orgao'),('sei','orgao_historico','i02_orgao_historico','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','orgao_historico','i02_orgao_historico','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','pais','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',204,1,'id_pais'),('sei','pais','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','pais','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','parametro_acao_federacao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_acao_federacao'),('sei','parametro_acao_federacao','PRIMARY','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_acao_federacao,nome'),('sei','parametro_acao_federacao','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','parametro_acao_federacao','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','parametro_acao_federacao','fk_param_acao_fed_acao_fed','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_acao_federacao'),('sei','parametro_acao_federacao','fk_param_acao_fed_acao_fed','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_acao_federacao,nome'),('sei','parametro_acao_federacao','fk_param_acao_fed_acao_fed','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','parametro_acao_federacao','fk_param_acao_fed_acao_fed','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_participante'),('sei','participante','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','ak1_participante','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_contato'),('sei','participante','ak1_participante','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_contato,id_protocolo'),('sei','participante','ak1_participante','2024-05-10 02:28:13','n_diff_pfx03',0,1,'id_contato,id_protocolo,sta_participacao'),('sei','participante','ak1_participante','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','ak1_participante','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','fk_participante_contato','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_contato'),('sei','participante','fk_participante_contato','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_contato,id_participante'),('sei','participante','fk_participante_contato','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','fk_participante_contato','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','fk_participante_protocolo','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_protocolo'),('sei','participante','fk_participante_protocolo','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_protocolo,id_participante'),('sei','participante','fk_participante_protocolo','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','fk_participante_protocolo','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','fk_participante_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','participante','fk_participante_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_participante'),('sei','participante','fk_participante_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','fk_participante_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','participante','i01_participante','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_protocolo'),('sei','participante','i01_participante','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_protocolo,sta_participacao'),('sei','participante','i01_participante','2024-05-10 02:28:13','n_diff_pfx03',0,1,'id_protocolo,sta_participacao,id_participante'),('sei','participante','i01_participante','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','participante','i01_participante','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','pesquisa','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_pesquisa'),('sei','pesquisa','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','pesquisa','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','pesquisa','fk_pesquisa_unidade','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_unidade'),('sei','pesquisa','fk_pesquisa_unidade','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_unidade,id_pesquisa'),('sei','pesquisa','fk_pesquisa_unidade','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','pesquisa','fk_pesquisa_unidade','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','pesquisa','fk_pesquisa_usuario','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_usuario'),('sei','pesquisa','fk_pesquisa_usuario','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_usuario,id_pesquisa'),('sei','pesquisa','fk_pesquisa_usuario','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','pesquisa','fk_pesquisa_usuario','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','procedimento','PRIMARY','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_procedimento'),('sei','procedimento','PRIMARY','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','procedimento','PRIMARY','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','procedimento','fk_procedimento_tipo_procedime','2024-05-10 02:28:13','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','procedimento','fk_procedimento_tipo_procedime','2024-05-10 02:28:13','n_diff_pfx02',0,1,'id_tipo_procedimento,id_procedimento'),('sei','procedimento','fk_procedimento_tipo_procedime','2024-05-10 02:28:13','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','procedimento','fk_procedimento_tipo_procedime','2024-05-10 02:28:13','size',1,NULL,'Number of pages in the index'),('sei','protocolo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','ak1_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo','ak1_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,sta_protocolo'),('sei','protocolo','ak1_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','ak1_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','ak2_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado'),('sei','protocolo','ak2_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','ak2_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','fk_protocolo_hipotese_legal','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_hipotese_legal'),('sei','protocolo','fk_protocolo_hipotese_legal','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_hipotese_legal,id_protocolo'),('sei','protocolo','fk_protocolo_hipotese_legal','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','fk_protocolo_hipotese_legal','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','fk_protocolo_protocolo_fed','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo_federacao'),('sei','protocolo','fk_protocolo_protocolo_fed','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo_federacao,id_protocolo'),('sei','protocolo','fk_protocolo_protocolo_fed','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','fk_protocolo_protocolo_fed','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','fk_protocolo_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade_geradora'),('sei','protocolo','fk_protocolo_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade_geradora,id_protocolo'),('sei','protocolo','fk_protocolo_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','fk_protocolo_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','fk_protocolo_usuario','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario_gerador'),('sei','protocolo','fk_protocolo_usuario','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario_gerador,id_protocolo'),('sei','protocolo','fk_protocolo_usuario','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','fk_protocolo_usuario','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade_geradora'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade_geradora,sta_protocolo'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_unidade_geradora,sta_protocolo,dta_geracao'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'id_unidade_geradora,sta_protocolo,dta_geracao,id_protocolo'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i02_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'sta_nivel_acesso_global'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'sta_nivel_acesso_global,id_protocolo'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'sta_nivel_acesso_global,id_protocolo,id_unidade_geradora'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'sta_nivel_acesso_global,id_protocolo,id_unidade_geradora,sta_protocolo'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_diff_pfx05',0,1,'sta_nivel_acesso_global,id_protocolo,id_unidade_geradora,sta_protocolo,sta_estado'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i03_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i06_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'sta_protocolo'),('sei','protocolo','i06_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'sta_protocolo,dta_geracao'),('sei','protocolo','i06_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'sta_protocolo,dta_geracao,id_protocolo'),('sei','protocolo','i06_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i06_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'dta_inclusao'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'dta_inclusao,sta_protocolo'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'dta_inclusao,sta_protocolo,id_unidade_geradora'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'dta_inclusao,sta_protocolo,id_unidade_geradora,id_protocolo'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i07_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i10_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado_pesquisa'),('sei','protocolo','i10_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado_pesquisa,sta_nivel_acesso_global'),('sei','protocolo','i10_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'protocolo_formatado_pesquisa,sta_nivel_acesso_global,id_protocolo'),('sei','protocolo','i10_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i10_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i11_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'sta_protocolo'),('sei','protocolo','i11_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'sta_protocolo,sta_nivel_acesso_global'),('sei','protocolo','i11_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'sta_protocolo,sta_nivel_acesso_global,id_protocolo'),('sei','protocolo','i11_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i11_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'sta_estado'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'sta_estado,sta_protocolo'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'sta_estado,sta_protocolo,sta_nivel_acesso_global'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'sta_estado,sta_protocolo,sta_nivel_acesso_global,id_protocolo'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i12_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,sta_protocolo'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_protocolo,sta_protocolo,id_usuario_gerador'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'id_protocolo,sta_protocolo,id_usuario_gerador,id_unidade_geradora'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_diff_pfx05',0,1,'id_protocolo,sta_protocolo,id_usuario_gerador,id_unidade_geradora,dta_geracao'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i13_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i14_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo','i14_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,id_hipotese_legal'),('sei','protocolo','i14_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_protocolo,id_hipotese_legal,id_unidade_geradora'),('sei','protocolo','i14_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i14_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i15_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado_pesquisa'),('sei','protocolo','i15_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado_pesquisa,id_protocolo'),('sei','protocolo','i15_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i15_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','i16_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado_pesq_inv'),('sei','protocolo','i16_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado_pesq_inv,id_protocolo'),('sei','protocolo','i16_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','i16_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,sta_protocolo'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_protocolo,sta_protocolo,sta_estado'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_diff_pfx04',0,1,'id_protocolo,sta_protocolo,sta_estado,dta_geracao'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_diff_pfx05',0,1,'id_protocolo,sta_protocolo,sta_estado,dta_geracao,id_unidade_geradora'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','ie1_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo','if4_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo_agrupador'),('sei','protocolo','if4_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo_agrupador,id_protocolo'),('sei','protocolo','if4_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo','if4_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_federacao','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo_federacao'),('sei','protocolo_federacao','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_federacao','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_federacao','fk_protocolo_fed_inst_fed','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','protocolo_federacao','fk_protocolo_fed_inst_fed','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_instalacao_federacao,id_protocolo_federacao'),('sei','protocolo_federacao','fk_protocolo_fed_inst_fed','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_federacao','fk_protocolo_fed_inst_fed','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_federacao','i01_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado'),('sei','protocolo_federacao','i01_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado,id_protocolo_federacao'),('sei','protocolo_federacao','i01_protocolo_federacao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_federacao','i01_protocolo_federacao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_federacao','i02_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado_pesquisa'),('sei','protocolo_federacao','i02_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado_pesquisa,id_protocolo_federacao'),('sei','protocolo_federacao','i02_protocolo_federacao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_federacao','i02_protocolo_federacao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_federacao','i03_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'protocolo_formatado_pesq_inv'),('sei','protocolo_federacao','i03_protocolo_federacao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'protocolo_formatado_pesq_inv,id_protocolo_federacao'),('sei','protocolo_federacao','i03_protocolo_federacao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_federacao','i03_protocolo_federacao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_modelo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo_modelo'),('sei','protocolo_modelo','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_modelo','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_modelo','fk_prot_mod_grupo_prot_mod','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_protocolo_modelo'),('sei','protocolo_modelo','fk_prot_mod_grupo_prot_mod','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_protocolo_modelo,id_protocolo_modelo'),('sei','protocolo_modelo','fk_prot_mod_grupo_prot_mod','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_modelo','fk_prot_mod_grupo_prot_mod','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','protocolo_modelo','fk_protocolo_modelo_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,id_protocolo_modelo'),('sei','protocolo_modelo','fk_protocolo_modelo_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','protocolo_modelo','fk_protocolo_modelo_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_protocolo_modelo'),('sei','protocolo_modelo','fk_protocolo_modelo_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_usuario','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario'),('sei','protocolo_modelo','fk_protocolo_modelo_usuario','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario,id_protocolo_modelo'),('sei','protocolo_modelo','fk_protocolo_modelo_usuario','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','protocolo_modelo','fk_protocolo_modelo_usuario','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_publicacao'),('sei','publicacao','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_atividade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_atividade'),('sei','publicacao','fk_publicacao_atividade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_atividade,id_publicacao'),('sei','publicacao','fk_publicacao_atividade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_atividade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_documento','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_documento'),('sei','publicacao','fk_publicacao_documento','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_documento,id_publicacao'),('sei','publicacao','fk_publicacao_documento','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_documento','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_secao_in','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_secao_io'),('sei','publicacao','fk_publicacao_secao_in','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_secao_io,id_publicacao'),('sei','publicacao','fk_publicacao_secao_in','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_secao_in','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','publicacao','fk_publicacao_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_publicacao'),('sei','publicacao','fk_publicacao_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_usuario','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario'),('sei','publicacao','fk_publicacao_usuario','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario,id_publicacao'),('sei','publicacao','fk_publicacao_usuario','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_usuario','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_veiculo_in','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_veiculo_io'),('sei','publicacao','fk_publicacao_veiculo_in','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_veiculo_io,id_publicacao'),('sei','publicacao','fk_publicacao_veiculo_in','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_veiculo_in','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','fk_publicacao_veiculo_public','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_veiculo_publicacao'),('sei','publicacao','fk_publicacao_veiculo_public','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_veiculo_publicacao,id_publicacao'),('sei','publicacao','fk_publicacao_veiculo_public','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','fk_publicacao_veiculo_public','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','i01_publicacao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'dta_publicacao'),('sei','publicacao','i01_publicacao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'dta_publicacao,id_publicacao'),('sei','publicacao','i01_publicacao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','i01_publicacao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao','i03_publicacao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','publicacao','i03_publicacao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,dta_publicacao'),('sei','publicacao','i03_publicacao','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_unidade,dta_publicacao,id_publicacao'),('sei','publicacao','i03_publicacao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao','i03_publicacao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_publicacao_legado'),('sei','publicacao_legado','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','fk_public_legado_secao_imp_nac','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_secao_io'),('sei','publicacao_legado','fk_public_legado_secao_imp_nac','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_secao_io,id_publicacao_legado'),('sei','publicacao_legado','fk_public_legado_secao_imp_nac','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','fk_public_legado_secao_imp_nac','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','fk_public_legado_veic_public','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_veiculo_publicacao'),('sei','publicacao_legado','fk_public_legado_veic_public','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_veiculo_publicacao,id_publicacao_legado'),('sei','publicacao_legado','fk_public_legado_veic_public','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','fk_public_legado_veic_public','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','fk_public_legado_veicu_imp_nac','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_veiculo_io'),('sei','publicacao_legado','fk_public_legado_veicu_imp_nac','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_veiculo_io,id_publicacao_legado'),('sei','publicacao_legado','fk_public_legado_veicu_imp_nac','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','fk_public_legado_veicu_imp_nac','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','fk_publicacao_legado_serie','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_serie'),('sei','publicacao_legado','fk_publicacao_legado_serie','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_serie,id_publicacao_legado'),('sei','publicacao_legado','fk_publicacao_legado_serie','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','fk_publicacao_legado_serie','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','fk_publicacao_legado_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','publicacao_legado','fk_publicacao_legado_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_publicacao_legado'),('sei','publicacao_legado','fk_publicacao_legado_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','fk_publicacao_legado_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','i01_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_publicacao_legado_agrupador'),('sei','publicacao_legado','i01_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_publicacao_legado_agrupador,id_publicacao_legado'),('sei','publicacao_legado','i01_publicacao_legado','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','i01_publicacao_legado','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','i02_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_orgao'),('sei','publicacao_legado','i02_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_orgao,id_unidade'),('sei','publicacao_legado','i02_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_orgao,id_unidade,id_publicacao_legado'),('sei','publicacao_legado','i02_publicacao_legado','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','i02_publicacao_legado','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','publicacao_legado','i03_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_orgao'),('sei','publicacao_legado','i03_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_orgao,id_serie'),('sei','publicacao_legado','i03_publicacao_legado','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_orgao,id_serie,id_publicacao_legado'),('sei','publicacao_legado','i03_publicacao_legado','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','publicacao_legado','i03_publicacao_legado','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_protocolo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_acesso_externo'),('sei','rel_acesso_ext_protocolo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_acesso_externo,id_protocolo'),('sei','rel_acesso_ext_protocolo','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_protocolo','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_aces_ext','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_acesso_externo'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_aces_ext','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_acesso_externo,id_protocolo'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_aces_ext','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_aces_ext','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_protocolo','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_protocolo','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,id_acesso_externo'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_protocolo','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_protocolo','fk_rel_aces_ext_prot_protocolo','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_serie','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_acesso_externo'),('sei','rel_acesso_ext_serie','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_acesso_externo,id_serie'),('sei','rel_acesso_ext_serie','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_serie','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_aces_ext','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_acesso_externo'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_aces_ext','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_acesso_externo,id_serie'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_aces_ext','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_aces_ext','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_serie','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_serie'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_serie','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_serie,id_acesso_externo'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_serie','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_acesso_ext_serie','fk_rel_aces_ext_serie_serie','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_assinante_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',3,1,'id_unidade'),('sei','rel_assinante_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',63,1,'id_unidade,id_assinante'),('sei','rel_assinante_unidade','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_assinante_unidade','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_assinante','2024-05-10 02:28:16','n_diff_pfx01',21,1,'id_assinante'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_assinante','2024-05-10 02:28:16','n_diff_pfx02',63,1,'id_assinante,id_unidade'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_assinante','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_assinante','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_unidade','2024-05-10 02:28:16','n_diff_pfx01',3,1,'id_unidade'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_unidade','2024-05-10 02:28:16','n_diff_pfx02',63,1,'id_unidade,id_assinante'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_unidade','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_assinante_unidade','fk_rel_assinante_uni_unidade','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_base_conhec_tipo_proced','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','rel_base_conhec_tipo_proced','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_tipo_procedimento,id_base_conhecimento'),('sei','rel_base_conhec_tipo_proced','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_base_conhec_tipo_proced','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_base_conhecimento','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_base_conhecimento'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_base_conhecimento','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_base_conhecimento,id_tipo_procedimento'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_base_conhecimento','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_base_conhecimento','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_tipo_procedimento','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_tipo_procedimento','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_tipo_procedimento,id_base_conhecimento'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_tipo_procedimento','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_base_conhec_tipo_proced','fk_rel_bc_tp_tipo_procedimento','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_protocolo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_bloco_protocolo','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,id_bloco'),('sei','rel_bloco_protocolo','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_protocolo','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_bloco','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_bloco','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,id_protocolo'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_bloco','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_bloco','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_protoco','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_protoco','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_protocolo,id_bloco'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_protoco','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_protocolo','fk_rel_bloco_protocolo_protoco','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_bloco_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_bloco'),('sei','rel_bloco_unidade','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_grupo_bloco','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_grupo_bloco','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_bloco,id_unidade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_grupo_bloco','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_grupo_bloco,id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_grupo_bloco','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_grupo_bloco','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_atribuicao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario_atribuicao'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_atribuicao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario_atribuicao,id_unidade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_atribuicao','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_usuario_atribuicao,id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_atribuicao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_atribuicao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_comentario','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario_comentario'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_comentario','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario_comentario,id_unidade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_comentario','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_usuario_comentario,id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_comentario','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_comentario','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_prioridade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario_prioridade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_prioridade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario_prioridade,id_unidade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_prioridade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_usuario_prioridade,id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_prioridade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_prioridade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_revisao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_usuario_revisao'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_revisao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_usuario_revisao,id_unidade'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_revisao','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_usuario_revisao,id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_revisao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_blo_uni_usu_revisao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_bloco','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_bloco','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,id_unidade'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_bloco','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_bloco','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_bloco'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','fk_rel_bloco_unidade_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','i05_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_unidade','i05_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,id_unidade'),('sei','rel_bloco_unidade','i05_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_bloco,id_unidade,id_usuario_atribuicao'),('sei','rel_bloco_unidade','i05_rel_bloco_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','i05_rel_bloco_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,id_unidade'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_bloco,id_unidade,sin_prioridade'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx04',0,1,'id_bloco,id_unidade,sin_prioridade,sin_revisao'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx05',0,1,'id_bloco,id_unidade,sin_prioridade,sin_revisao,sin_comentario'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','i06_rel_bloco_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,id_unidade'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_bloco,id_unidade,id_usuario_atribuicao'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx04',0,1,'id_bloco,id_unidade,id_usuario_atribuicao,sin_prioridade'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx05',0,1,'id_bloco,id_unidade,id_usuario_atribuicao,sin_prioridade,sin_revisao'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx06',0,1,'id_bloco,id_unidade,id_usuario_atribuicao,sin_prioridade,sin_revisao,sin_comentario'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','i07_rel_bloco_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','if3_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_bloco'),('sei','rel_bloco_unidade','if3_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_bloco,sin_retornado'),('sei','rel_bloco_unidade','if3_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_bloco,sin_retornado,id_unidade'),('sei','rel_bloco_unidade','if3_rel_bloco_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','if3_rel_bloco_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_bloco_unidade','if4_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_bloco_unidade','if4_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,sin_retornado'),('sei','rel_bloco_unidade','if4_rel_bloco_unidade','2024-05-10 02:28:14','n_diff_pfx03',0,1,'id_unidade,sin_retornado,id_bloco'),('sei','rel_bloco_unidade','if4_rel_bloco_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_bloco_unidade','if4_rel_bloco_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_orgao','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_orgao','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_orgao'),('sei','rel_controle_interno_orgao','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_orgao','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_org_id','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_org_id','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_orgao'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_org_id','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_org_id','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_orgao','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_orgao'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_orgao','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_orgao,id_controle_interno'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_orgao','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_orgao','fk_rel_controle_interno_orgao','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_serie','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_serie'),('sei','rel_controle_interno_serie','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_serie,id_controle_interno'),('sei','rel_controle_interno_serie','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_serie','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_ci','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_ci','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_serie'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_ci','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_ci','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_se','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_serie'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_se','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_serie,id_controle_interno'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_se','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_serie','fk_rel_controle_interno_se_se','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_tipo_proc','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','rel_controle_interno_tipo_proc','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_tipo_procedimento,id_controle_interno'),('sei','rel_controle_interno_tipo_proc','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_tipo_proc','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_t_tipo_proc','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_t_tipo_proc','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_tipo_procedimento,id_controle_interno'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_t_tipo_proc','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_t_tipo_proc','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_tipo_proc_ci','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_tipo_proc_ci','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_tipo_procedimento'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_tipo_proc_ci','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_tipo_proc','fk_rel_contr_int_tipo_proc_ci','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_unidade'),('sei','rel_controle_interno_unidade','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_unidade','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_ci','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_controle_interno'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_ci','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_controle_interno,id_unidade'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_ci','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_ci','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_unid','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_unid','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_controle_interno'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_unid','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_controle_interno_unidade','fk_rel_controle_int_unid_unid','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_contato','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_contato'),('sei','rel_grupo_contato','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_contato,id_grupo_contato'),('sei','rel_grupo_contato','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_contato','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_contato','fk_rel_grupo_contato_contato','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_contato'),('sei','rel_grupo_contato','fk_rel_grupo_contato_contato','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_contato,id_grupo_contato'),('sei','rel_grupo_contato','fk_rel_grupo_contato_contato','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_contato','fk_rel_grupo_contato_contato','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_contato','fk_rel_grupo_contato_grupo_con','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_contato'),('sei','rel_grupo_contato','fk_rel_grupo_contato_grupo_con','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_contato,id_contato'),('sei','rel_grupo_contato','fk_rel_grupo_contato_grupo_con','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_contato','fk_rel_grupo_contato_grupo_con','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_fed_orgao_fed','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_federacao'),('sei','rel_grupo_fed_orgao_fed','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_federacao,id_orgao_federacao'),('sei','rel_grupo_fed_orgao_fed','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_fed_orgao_fed','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_grp_fed','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_federacao'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_grp_fed','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_federacao,id_orgao_federacao'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_grp_fed','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_grp_fed','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_org_fed','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_orgao_federacao'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_org_fed','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_orgao_federacao,id_grupo_federacao'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_org_fed','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_fed_orgao_fed','fk_rel_grp_fed_org_fed_org_fed','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_unidade_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_grupo_unidade_unidade','PRIMARY','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_grupo_unidade'),('sei','rel_grupo_unidade_unidade','PRIMARY','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_unidade_unidade','PRIMARY','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_grupo_unid','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_grupo_unidade'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_grupo_unid','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_grupo_unidade,id_unidade'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_grupo_unid','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_grupo_unid','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_unidade','2024-05-10 02:28:14','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_unidade','2024-05-10 02:28:14','n_diff_pfx02',0,1,'id_unidade,id_grupo_unidade'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_unidade','2024-05-10 02:28:14','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_grupo_unidade_unidade','fk_rel_grupo_unid_unidade','2024-05-10 02:28:14','size',1,NULL,'Number of pages in the index'),('sei','rel_notificacao_documento','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_documento'),('sei','rel_notificacao_documento','PRIMARY','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_documento,id_notificacao'),('sei','rel_notificacao_documento','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_notificacao_documento','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_notificacao_documento','fk_rel_notif_doc_documento','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_notificacao'),('sei','rel_notificacao_documento','fk_rel_notif_doc_documento','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_notificacao,id_documento'),('sei','rel_notificacao_documento','fk_rel_notif_doc_documento','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_notificacao_documento','fk_rel_notif_doc_documento','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_notificacao_documento','fk_rel_notif_doc_notificacao','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_documento'),('sei','rel_notificacao_documento','fk_rel_notif_doc_notificacao','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_documento,id_notificacao'),('sei','rel_notificacao_documento','fk_rel_notif_doc_notificacao','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_notificacao_documento','fk_rel_notif_doc_notificacao','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_notificacao_documento','i03_rel_notificacao_documento','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_documento'),('sei','rel_notificacao_documento','i03_rel_notificacao_documento','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_documento,sin_processada'),('sei','rel_notificacao_documento','i03_rel_notificacao_documento','2024-05-10 02:28:15','n_diff_pfx03',0,1,'id_documento,sin_processada,id_notificacao'),('sei','rel_notificacao_documento','i03_rel_notificacao_documento','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_notificacao_documento','i03_rel_notificacao_documento','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_assunto','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_protocolo_assunto','PRIMARY','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo,id_assunto_proxy'),('sei','rel_protocolo_assunto','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_assunto','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_assunto','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_assunto_proxy'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_assunto','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_assunto_proxy,id_protocolo'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_assunto','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_assunto','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_protocolo','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_protocolo','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo,id_assunto_proxy'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_protocolo','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_assunto','fk_rel_prot_assunto_protocolo','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_assunto','fk_rel_protocolo_assunto_uni','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_protocolo_assunto','fk_rel_protocolo_assunto_uni','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_unidade,id_protocolo'),('sei','rel_protocolo_assunto','fk_rel_protocolo_assunto_uni','2024-05-10 02:28:15','n_diff_pfx03',0,1,'id_unidade,id_protocolo,id_assunto_proxy'),('sei','rel_protocolo_assunto','fk_rel_protocolo_assunto_uni','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_assunto','fk_rel_protocolo_assunto_uni','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_atributo','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_protocolo_atributo','PRIMARY','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo,id_atributo'),('sei','rel_protocolo_atributo','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_atributo','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_atributo','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_atributo'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_atributo','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_atributo,id_protocolo'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_atributo','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_atributo','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_protocolo','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_protocolo','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo,id_atributo'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_protocolo','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_atributo','fk_rel_prot_atributo_protocolo','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_1','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo_1'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_1','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo_1,id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_1','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_1','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_2','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo_2'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_2','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo_2,id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_2','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','fk_protocolo_protocolo_2','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','fk_rel_proc_doc_usuario','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_protocolo_protocolo','fk_rel_proc_doc_usuario','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_usuario,id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','fk_rel_proc_doc_usuario','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','fk_rel_proc_doc_usuario','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','fk_rel_protocolo_protocolo_uni','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_protocolo_protocolo','fk_rel_protocolo_protocolo_uni','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_unidade,id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','fk_rel_protocolo_protocolo_uni','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','fk_rel_protocolo_protocolo_uni','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_protocolo_2'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_protocolo_2,id_protocolo_1'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','n_diff_pfx03',0,1,'id_protocolo_2,id_protocolo_1,sta_associacao'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','n_diff_pfx04',0,1,'id_protocolo_2,id_protocolo_1,sta_associacao,id_rel_protocolo_protocolo'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_protocolo_protocolo','i01_rel_protocolo_protocolo','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_secao_mod_cj_estilos_item','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',201,20,'id_secao_modelo'),('sei','rel_secao_mod_cj_estilos_item','PRIMARY','2024-05-10 02:28:20','n_diff_pfx02',40361,20,'id_secao_modelo,id_conjunto_estilos_item'),('sei','rel_secao_mod_cj_estilos_item','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',75,NULL,'Number of leaf pages in the index'),('sei','rel_secao_mod_cj_estilos_item','PRIMARY','2024-05-10 02:28:20','size',97,NULL,'Number of pages in the index'),('sei','rel_secao_mod_cj_estilos_item','fk_re_secmod_cj_est_i_cj_est_i','2024-05-10 02:28:20','n_diff_pfx01',1502,20,'id_conjunto_estilos_item'),('sei','rel_secao_mod_cj_estilos_item','fk_re_secmod_cj_est_i_cj_est_i','2024-05-10 02:28:20','n_diff_pfx02',39883,20,'id_conjunto_estilos_item,id_secao_modelo'),('sei','rel_secao_mod_cj_estilos_item','fk_re_secmod_cj_est_i_cj_est_i','2024-05-10 02:28:20','n_leaf_pages',48,NULL,'Number of leaf pages in the index'),('sei','rel_secao_mod_cj_estilos_item','fk_re_secmod_cj_est_i_cj_est_i','2024-05-10 02:28:20','size',97,NULL,'Number of pages in the index'),('sei','rel_secao_mod_cj_estilos_item','fk_rel_secmod_cj_est_it_secmod','2024-05-10 02:28:20','n_diff_pfx01',235,35,'id_secao_modelo'),('sei','rel_secao_mod_cj_estilos_item','fk_rel_secmod_cj_est_it_secmod','2024-05-10 02:28:20','n_diff_pfx02',40692,35,'id_secao_modelo,id_conjunto_estilos_item'),('sei','rel_secao_mod_cj_estilos_item','fk_rel_secmod_cj_est_it_secmod','2024-05-10 02:28:20','n_leaf_pages',35,NULL,'Number of leaf pages in the index'),('sei','rel_secao_mod_cj_estilos_item','fk_rel_secmod_cj_est_it_secmod','2024-05-10 02:28:20','size',97,NULL,'Number of pages in the index'),('sei','rel_secao_modelo_estilo','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',235,5,'id_secao_modelo'),('sei','rel_secao_modelo_estilo','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',2151,5,'id_secao_modelo,id_estilo'),('sei','rel_secao_modelo_estilo','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',5,NULL,'Number of leaf pages in the index'),('sei','rel_secao_modelo_estilo','PRIMARY','2024-05-10 02:28:21','size',6,NULL,'Number of pages in the index'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_estilo','2024-05-10 02:28:21','n_diff_pfx01',39,2,'id_estilo'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_estilo','2024-05-10 02:28:21','n_diff_pfx02',2151,2,'id_estilo,id_secao_modelo'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_estilo','2024-05-10 02:28:21','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_estilo','2024-05-10 02:28:21','size',3,NULL,'Number of pages in the index'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_sec_mod','2024-05-10 02:28:21','n_diff_pfx01',235,3,'id_secao_modelo'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_sec_mod','2024-05-10 02:28:21','n_diff_pfx02',2151,3,'id_secao_modelo,id_estilo'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_sec_mod','2024-05-10 02:28:21','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('sei','rel_secao_modelo_estilo','fk_rel_sec_mod_estilo_sec_mod','2024-05-10 02:28:21','size',4,NULL,'Number of pages in the index'),('sei','rel_serie_assunto','PRIMARY','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_serie'),('sei','rel_serie_assunto','PRIMARY','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_serie,id_assunto_proxy'),('sei','rel_serie_assunto','PRIMARY','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_assunto','PRIMARY','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_serie_assunto','fk_rel_serie_assunto_assunto','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_assunto_proxy'),('sei','rel_serie_assunto','fk_rel_serie_assunto_assunto','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_assunto_proxy,id_serie'),('sei','rel_serie_assunto','fk_rel_serie_assunto_assunto','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_assunto','fk_rel_serie_assunto_assunto','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_serie_assunto','fk_rel_serie_assunto_serie','2024-05-10 02:28:15','n_diff_pfx01',0,1,'id_serie'),('sei','rel_serie_assunto','fk_rel_serie_assunto_serie','2024-05-10 02:28:15','n_diff_pfx02',0,1,'id_serie,id_assunto_proxy'),('sei','rel_serie_assunto','fk_rel_serie_assunto_serie','2024-05-10 02:28:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_assunto','fk_rel_serie_assunto_serie','2024-05-10 02:28:15','size',1,NULL,'Number of pages in the index'),('sei','rel_serie_veiculo_publicacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',23,1,'id_serie'),('sei','rel_serie_veiculo_publicacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',23,1,'id_serie,id_veiculo_publicacao'),('sei','rel_serie_veiculo_publicacao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_veiculo_publicacao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_serie','2024-05-10 02:28:21','n_diff_pfx01',23,1,'id_serie'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_serie','2024-05-10 02:28:21','n_diff_pfx02',23,1,'id_serie,id_veiculo_publicacao'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_serie','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_serie','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_veic_pub','2024-05-10 02:28:21','n_diff_pfx01',1,1,'id_veiculo_publicacao'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_veic_pub','2024-05-10 02:28:21','n_diff_pfx02',23,1,'id_veiculo_publicacao,id_serie'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_veic_pub','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_serie_veiculo_publicacao','fk_rel_serie_veic_pub_veic_pub','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_situacao_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_situacao_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade,id_situacao'),('sei','rel_situacao_unidade','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_situacao_unidade','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_situacao','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_situacao'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_situacao','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_situacao,id_unidade'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_situacao','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_situacao','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_unidade','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_unidade','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade,id_situacao'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_unidade','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_situacao_unidade','fk_rel_situacao_unid_unidade','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_tipo_procedimento_assunto','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',316,1,'id_tipo_procedimento'),('sei','rel_tipo_procedimento_assunto','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',324,1,'id_tipo_procedimento,id_assunto_proxy'),('sei','rel_tipo_procedimento_assunto','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_tipo_procedimento_assunto','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_assunto','2024-05-10 02:28:21','n_diff_pfx01',120,1,'id_assunto_proxy'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_assunto','2024-05-10 02:28:21','n_diff_pfx02',324,1,'id_assunto_proxy,id_tipo_procedimento'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_assunto','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_assunto','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_tip_proc','2024-05-10 02:28:21','n_diff_pfx01',316,1,'id_tipo_procedimento'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_tip_proc','2024-05-10 02:28:21','n_diff_pfx02',324,1,'id_tipo_procedimento,id_assunto_proxy'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_tip_proc','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_tipo_procedimento_assunto','fk_rel_tipo_proc_assu_tip_proc','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',8,1,'id_rel_unidade_tipo_contato'),('sei','rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_tip_cont','2024-05-10 02:28:21','n_diff_pfx01',8,1,'id_tipo_contato'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_tip_cont','2024-05-10 02:28:21','n_diff_pfx02',8,1,'id_tipo_contato,id_rel_unidade_tipo_contato'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_tip_cont','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_tip_cont','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_unid','2024-05-10 02:28:21','n_diff_pfx01',1,1,'id_unidade'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_unid','2024-05-10 02:28:21','n_diff_pfx02',8,1,'id_unidade,id_rel_unidade_tipo_contato'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_unid','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_unidade_tipo_contato','fk_rel_unid_tip_cont_unid','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','n_diff_pfx01',1,1,'id_unidade'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','n_diff_pfx02',8,1,'id_unidade,id_tipo_contato'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','n_diff_pfx03',8,1,'id_unidade,id_tipo_contato,sta_acesso'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','n_diff_pfx04',8,1,'id_unidade,id_tipo_contato,sta_acesso,id_rel_unidade_tipo_contato'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_unidade_tipo_contato','i01_rel_unidade_tipo_contato','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_acomp','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_grupo_acomp','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_grupo_acompanhamento'),('sei','rel_usuario_grupo_acomp','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_acomp','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_grp_acomp','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_grupo_acompanhamento'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_grp_acomp','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_grupo_acompanhamento,id_usuario'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_grp_acomp','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_grp_acomp','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_usuario','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_usuario','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_grupo_acompanhamento'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_usuario','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_acomp','fk_rel_usu_grp_acomp_usuario','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_bloco','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_grupo_bloco'),('sei','rel_usuario_grupo_bloco','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_grupo_bloco,id_usuario'),('sei','rel_usuario_grupo_bloco','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_bloco','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_grp_blo','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_grupo_bloco'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_grp_blo','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_grupo_bloco,id_usuario'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_grp_blo','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_grp_blo','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_usuario','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_usuario','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_grupo_bloco'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_usuario','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_grupo_bloco','fk_rel_usu_grupo_bloco_usuario','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_marcador','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_marcador'),('sei','rel_usuario_marcador','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_marcador,id_usuario'),('sei','rel_usuario_marcador','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_marcador','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_marcad','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_marcador'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_marcad','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_marcador,id_usuario'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_marcad','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_marcad','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_usuario','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_usuario','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_marcador'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_usuario','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_marcador','fk_rel_usuario_marcad_usuario','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_tipo_proced','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_tipo_proced','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_tipo_procedimento'),('sei','rel_usuario_tipo_proced','PRIMARY','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_usuario,id_tipo_procedimento,id_unidade'),('sei','rel_usuario_tipo_proced','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_tipo_proced','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_tipo_pr','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_tipo_pr','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_tipo_procedimento,id_usuario'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_tipo_pr','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_tipo_procedimento,id_usuario,id_unidade'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_tipo_pr','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_tipo_pr','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_unidade','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_unidade','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade,id_usuario'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_unidade','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_unidade,id_usuario,id_tipo_procedimento'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_unidade','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_unidade','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_usu','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_usu','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_tipo_procedimento'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_usu','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_usuario,id_tipo_procedimento,id_unidade'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_usu','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_tipo_proced','fk_rel_usu_tipo_proced_usu','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_usuario_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_usuario_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_usuario_atribuicao'),('sei','rel_usuario_usuario_unidade','PRIMARY','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_usuario,id_usuario_atribuicao,id_unidade'),('sei','rel_usuario_usuario_unidade','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_usuario_unidade','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_unidade','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_unidade','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade,id_usuario'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_unidade','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_unidade,id_usuario,id_usuario_atribuicao'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_unidade','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_unidade','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usu_atrib','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario_atribuicao'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usu_atrib','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario_atribuicao,id_usuario'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usu_atrib','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_usuario_atribuicao,id_usuario,id_unidade'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usu_atrib','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usu_atrib','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usuario','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usuario','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_usuario_atribuicao'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usuario','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_usuario,id_usuario_atribuicao,id_unidade'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usuario','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','rel_usuario_usuario_unidade','fk_rel_usu_usu_uni_usuario','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','replicacao_federacao','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_replicacao_federacao'),('sei','replicacao_federacao','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','replicacao_federacao','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','replicacao_federacao','fk_replicacao_fed_inst_fed','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','replicacao_federacao','fk_replicacao_fed_inst_fed','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_instalacao_federacao,id_replicacao_federacao'),('sei','replicacao_federacao','fk_replicacao_fed_inst_fed','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','replicacao_federacao','fk_replicacao_fed_inst_fed','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','replicacao_federacao','fk_replicacao_fed_prot_fed','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_protocolo_federacao'),('sei','replicacao_federacao','fk_replicacao_fed_prot_fed','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_protocolo_federacao,id_replicacao_federacao'),('sei','replicacao_federacao','fk_replicacao_fed_prot_fed','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','replicacao_federacao','fk_replicacao_fed_prot_fed','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_retorno_programado'),('sei','retorno_programado','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_ret_prog_ativ_envio','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_atividade_envio'),('sei','retorno_programado','fk_ret_prog_ativ_envio','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_atividade_envio,id_retorno_programado'),('sei','retorno_programado','fk_ret_prog_ativ_envio','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_ret_prog_ativ_envio','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_ret_prog_ativ_retorno','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_atividade_retorno'),('sei','retorno_programado','fk_ret_prog_ativ_retorno','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_atividade_retorno,id_retorno_programado'),('sei','retorno_programado','fk_ret_prog_ativ_retorno','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_ret_prog_ativ_retorno','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_ret_programado_protocolo','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_protocolo'),('sei','retorno_programado','fk_ret_programado_protocolo','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_protocolo,id_retorno_programado'),('sei','retorno_programado','fk_ret_programado_protocolo','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_ret_programado_protocolo','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_ret_programado_uni_envio','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade_envio'),('sei','retorno_programado','fk_ret_programado_uni_envio','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade_envio,id_retorno_programado'),('sei','retorno_programado','fk_ret_programado_uni_envio','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_ret_programado_uni_envio','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_ret_programado_uni_retorno','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade_retorno'),('sei','retorno_programado','fk_ret_programado_uni_retorno','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade_retorno,id_retorno_programado'),('sei','retorno_programado','fk_ret_programado_uni_retorno','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_ret_programado_uni_retorno','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','fk_retorno_programado_usuario','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_usuario'),('sei','retorno_programado','fk_retorno_programado_usuario','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_usuario,id_retorno_programado'),('sei','retorno_programado','fk_retorno_programado_usuario','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','fk_retorno_programado_usuario','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','i04_retorno_programado','2024-05-10 02:28:16','n_diff_pfx01',0,1,'dta_programada'),('sei','retorno_programado','i04_retorno_programado','2024-05-10 02:28:16','n_diff_pfx02',0,1,'dta_programada,id_retorno_programado'),('sei','retorno_programado','i04_retorno_programado','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','i04_retorno_programado','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','i06_retorno_programado','2024-05-10 02:28:16','n_diff_pfx01',0,1,'dta_programada'),('sei','retorno_programado','i06_retorno_programado','2024-05-10 02:28:16','n_diff_pfx02',0,1,'dta_programada,id_retorno_programado'),('sei','retorno_programado','i06_retorno_programado','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','i06_retorno_programado','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade_envio'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade_envio,id_unidade_retorno'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_unidade_envio,id_unidade_retorno,id_protocolo'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_diff_pfx04',0,1,'id_unidade_envio,id_unidade_retorno,id_protocolo,id_atividade_retorno'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_diff_pfx05',0,1,'id_unidade_envio,id_unidade_retorno,id_protocolo,id_atividade_retorno,id_retorno_programado'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','i07_retorno_programado','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade_envio'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade_envio,id_unidade_retorno'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_unidade_envio,id_unidade_retorno,dta_programada'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','n_diff_pfx04',0,1,'id_unidade_envio,id_unidade_retorno,dta_programada,id_retorno_programado'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','i08_retorno_programado','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_unidade_envio'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_unidade_envio,id_unidade_retorno'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_unidade_envio,id_unidade_retorno,id_protocolo'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','n_diff_pfx04',0,1,'id_unidade_envio,id_unidade_retorno,id_protocolo,id_retorno_programado'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','retorno_programado','i09_retorno_programado','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_documento','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_secao_documento'),('sei','secao_documento','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_documento','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_documento','fk_secao_doc_base_conhecimento','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_base_conhecimento'),('sei','secao_documento','fk_secao_doc_base_conhecimento','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_base_conhecimento,id_secao_documento'),('sei','secao_documento','fk_secao_doc_base_conhecimento','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_documento','fk_secao_doc_base_conhecimento','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_documento','fk_secao_doc_secao_mod','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_secao_modelo'),('sei','secao_documento','fk_secao_doc_secao_mod','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_secao_modelo,id_secao_documento'),('sei','secao_documento','fk_secao_doc_secao_mod','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_documento','fk_secao_doc_secao_mod','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_documento','fk_secao_documento_documento','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_documento'),('sei','secao_documento','fk_secao_documento_documento','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_documento,id_secao_documento'),('sei','secao_documento','fk_secao_documento_documento','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_documento','fk_secao_documento_documento','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id_documento'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_diff_pfx02',0,1,'id_documento,id_base_conhecimento'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_diff_pfx03',0,1,'id_documento,id_base_conhecimento,sin_cabecalho'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_diff_pfx04',0,1,'id_documento,id_base_conhecimento,sin_cabecalho,sin_rodape'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_diff_pfx05',0,1,'id_documento,id_base_conhecimento,sin_cabecalho,sin_rodape,id_secao_documento'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_documento','i01_secao_documento','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',3,1,'id_secao_imprensa_nacional'),('sei','secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','secao_imprensa_nacional','fk_secao_in_veiculo_in','2024-05-10 02:28:21','n_diff_pfx01',1,1,'id_veiculo_imprensa_nacional'),('sei','secao_imprensa_nacional','fk_secao_in_veiculo_in','2024-05-10 02:28:21','n_diff_pfx02',3,1,'id_veiculo_imprensa_nacional,id_secao_imprensa_nacional'),('sei','secao_imprensa_nacional','fk_secao_in_veiculo_in','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_imprensa_nacional','fk_secao_in_veiculo_in','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','secao_modelo','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',403,17,'id_secao_modelo'),('sei','secao_modelo','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',84,NULL,'Number of leaf pages in the index'),('sei','secao_modelo','PRIMARY','2024-05-10 02:28:21','size',97,NULL,'Number of pages in the index'),('sei','secao_modelo','fk_secao_modelo_modelo','2024-05-10 02:28:21','n_diff_pfx01',69,1,'id_modelo'),('sei','secao_modelo','fk_secao_modelo_modelo','2024-05-10 02:28:21','n_diff_pfx02',420,1,'id_modelo,id_secao_modelo'),('sei','secao_modelo','fk_secao_modelo_modelo','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_modelo','fk_secao_modelo_modelo','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','secao_modelo','i01_secao_modelo','2024-05-10 02:28:21','n_diff_pfx01',69,1,'id_modelo'),('sei','secao_modelo','i01_secao_modelo','2024-05-10 02:28:21','n_diff_pfx02',420,1,'id_modelo,ordem'),('sei','secao_modelo','i01_secao_modelo','2024-05-10 02:28:21','n_diff_pfx03',420,1,'id_modelo,ordem,id_secao_modelo'),('sei','secao_modelo','i01_secao_modelo','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','secao_modelo','i01_secao_modelo','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','seq_acesso','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id'),('sei','seq_acesso','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_acesso','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','seq_acesso_externo','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id'),('sei','seq_acesso_externo','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_acesso_externo','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','seq_acompanhamento','PRIMARY','2024-05-10 02:28:16','n_diff_pfx01',0,1,'id'),('sei','seq_acompanhamento','PRIMARY','2024-05-10 02:28:16','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_acompanhamento','PRIMARY','2024-05-10 02:28:16','size',1,NULL,'Number of pages in the index'),('sei','seq_andamento_instalacao','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_andamento_instalacao','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_andamento_instalacao','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_andamento_marcador','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_andamento_marcador','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_andamento_marcador','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_andamento_situacao','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_andamento_situacao','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_andamento_situacao','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_anexo','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_anexo','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_anexo','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_anotacao','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_anotacao','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_anotacao','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_arquivo_extensao','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_arquivo_extensao','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_arquivo_extensao','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_assinante','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_assinante','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_assinante','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_assinatura','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_assinatura','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_assinatura','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_assunto','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_assunto','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_assunto','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_assunto_proxy','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_assunto_proxy','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_assunto_proxy','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_atividade','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_atividade','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_atividade','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_atributo','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_atributo','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_atributo','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_atributo_andamento','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_atributo_andamento','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_atributo_andamento','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_atributo_andamento_situaca','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_atributo_andamento_situaca','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_atributo_andamento_situaca','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_atributo_instalacao','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_atributo_instalacao','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_atributo_instalacao','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_auditoria_protocolo','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_auditoria_protocolo','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_auditoria_protocolo','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_base_conhecimento','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_base_conhecimento','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_base_conhecimento','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_bloco','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_bloco','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_bloco','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_campo_pesquisa','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_campo_pesquisa','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_campo_pesquisa','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_cargo','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_cargo','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_cargo','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_categoria','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_categoria','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_categoria','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_cidade','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_cidade','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_cidade','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_comentario','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_comentario','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_comentario','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_conjunto_estilos','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_conjunto_estilos','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_conjunto_estilos','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_conjunto_estilos_item','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_conjunto_estilos_item','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_conjunto_estilos_item','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_contato','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_contato','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_contato','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_controle_interno','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_controle_interno','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_controle_interno','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_controle_prazo','PRIMARY','2024-05-10 02:28:17','n_diff_pfx01',0,1,'id'),('sei','seq_controle_prazo','PRIMARY','2024-05-10 02:28:17','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_controle_prazo','PRIMARY','2024-05-10 02:28:17','size',1,NULL,'Number of pages in the index'),('sei','seq_controle_unidade','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_controle_unidade','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_controle_unidade','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_documento','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_documento','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_documento','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_dominio','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_dominio','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_dominio','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_email_grupo_email','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_email_grupo_email','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_email_grupo_email','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_email_sistema','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_email_sistema','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_email_sistema','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_email_unidade','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_email_unidade','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_email_unidade','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_email_utilizado','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_email_utilizado','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_email_utilizado','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_estatisticas','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_estatisticas','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_estatisticas','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_estilo','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_estilo','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_estilo','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_feed','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_feed','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_feed','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_feriado','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_feriado','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_feriado','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_acompanhamento','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_acompanhamento','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_acompanhamento','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_bloco','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_bloco','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_bloco','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_contato','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_contato','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_contato','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_email','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_email','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_email','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_federacao','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_federacao','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_federacao','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_protocolo_modelo','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_serie','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_serie','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_serie','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_grupo_unidade','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_grupo_unidade','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_grupo_unidade','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_hipotese_legal','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_hipotese_legal','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_hipotese_legal','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_imagem_formato','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_imagem_formato','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_imagem_formato','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_infra_log','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_infra_log','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_infra_log','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_infra_navegador','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_infra_navegador','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_infra_navegador','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_lembrete','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_lembrete','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_lembrete','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_localizador','PRIMARY','2024-05-10 02:28:18','n_diff_pfx01',0,1,'id'),('sei','seq_localizador','PRIMARY','2024-05-10 02:28:18','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_localizador','PRIMARY','2024-05-10 02:28:18','size',1,NULL,'Number of pages in the index'),('sei','seq_lugar_localizador','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_lugar_localizador','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_lugar_localizador','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_marcador','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_marcador','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_marcador','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_md_wssei_notificacao_ativ','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_md_wssei_notificacao_ativ','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_md_wssei_notificacao_ativ','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_modelo','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_modelo','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_modelo','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_monitoramento_servico','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_monitoramento_servico','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_monitoramento_servico','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_nivel_acesso_permitido','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_novidade','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_novidade','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_novidade','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_numeracao','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_numeracao','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_numeracao','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_observacao','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_observacao','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_observacao','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_operacao_servico','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_operacao_servico','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_operacao_servico','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_ordenador_despesa','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_ordenador_despesa','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_ordenador_despesa','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_orgao_historico','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_orgao_historico','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_orgao_historico','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_pais','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_pais','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_pais','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_participante','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_participante','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_participante','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_pesquisa','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_pesquisa','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_pesquisa','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_protocolo','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_protocolo','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_protocolo','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_protocolo_modelo','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_protocolo_modelo','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_protocolo_modelo','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_publicacao','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_publicacao','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_publicacao','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_rel_protocolo_protocolo','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_rel_unidade_tipo_contato','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_retorno_programado','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_retorno_programado','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_retorno_programado','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_secao_documento','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_secao_documento','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_secao_documento','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_secao_imprensa_nacional','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_secao_modelo','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_secao_modelo','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_secao_modelo','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_serie','PRIMARY','2024-05-10 02:28:19','n_diff_pfx01',0,1,'id'),('sei','seq_serie','PRIMARY','2024-05-10 02:28:19','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_serie','PRIMARY','2024-05-10 02:28:19','size',1,NULL,'Number of pages in the index'),('sei','seq_serie_publicacao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_serie_publicacao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_serie_publicacao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_serie_restricao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_serie_restricao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_serie_restricao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_servico','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_servico','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_servico','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_situacao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_situacao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_situacao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tabela_assuntos','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tabela_assuntos','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tabela_assuntos','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tarefa','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tarefa','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tarefa','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tarja_assinatura','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tarja_assinatura','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tarja_assinatura','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_texto_padrao_interno','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_texto_padrao_interno','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_texto_padrao_interno','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_conferencia','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_conferencia','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_conferencia','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_contato','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_contato','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_contato','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_formulario','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_formulario','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_formulario','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_localizador','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_localizador','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_localizador','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_proced_restricao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_proced_restricao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_proced_restricao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_procedimento','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_procedimento','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_procedimento','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tipo_suporte','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tipo_suporte','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tipo_suporte','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_titulo','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_titulo','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_titulo','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_tratamento','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_tratamento','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_tratamento','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_uf','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_uf','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_uf','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_unidade_historico','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',43,1,'id'),('sei','seq_unidade_historico','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_unidade_historico','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','seq_unidade_publicacao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_unidade_publicacao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_unidade_publicacao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_upload','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_upload','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_upload','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_veiculo_publicacao','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_veiculo_publicacao','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_veiculo_publicacao','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_versao_secao_documento','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_versao_secao_documento','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_versao_secao_documento','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','seq_vocativo','PRIMARY','2024-05-10 02:28:20','n_diff_pfx01',0,1,'id'),('sei','seq_vocativo','PRIMARY','2024-05-10 02:28:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','seq_vocativo','PRIMARY','2024-05-10 02:28:20','size',1,NULL,'Number of pages in the index'),('sei','serie','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',254,3,'id_serie'),('sei','serie','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('sei','serie','PRIMARY','2024-05-10 02:28:22','size',4,NULL,'Number of pages in the index'),('sei','serie','ak1_serie','2024-05-10 02:28:22','n_diff_pfx01',254,1,'nome'),('sei','serie','ak1_serie','2024-05-10 02:28:22','n_diff_pfx02',254,1,'nome,sin_ativo'),('sei','serie','ak1_serie','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie','ak1_serie','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','serie','fk_serie_grupo_serie','2024-05-10 02:28:22','n_diff_pfx01',2,1,'id_grupo_serie'),('sei','serie','fk_serie_grupo_serie','2024-05-10 02:28:22','n_diff_pfx02',254,1,'id_grupo_serie,id_serie'),('sei','serie','fk_serie_grupo_serie','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie','fk_serie_grupo_serie','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','serie','fk_serie_modelo','2024-05-10 02:28:22','n_diff_pfx01',68,1,'id_modelo'),('sei','serie','fk_serie_modelo','2024-05-10 02:28:22','n_diff_pfx02',254,1,'id_modelo,id_serie'),('sei','serie','fk_serie_modelo','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie','fk_serie_modelo','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','serie','fk_serie_tipo_formulario','2024-05-10 02:28:22','n_diff_pfx01',1,1,'id_tipo_formulario'),('sei','serie','fk_serie_tipo_formulario','2024-05-10 02:28:22','n_diff_pfx02',254,1,'id_tipo_formulario,id_serie'),('sei','serie','fk_serie_tipo_formulario','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie','fk_serie_tipo_formulario','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','serie','i01_serie','2024-05-10 02:28:22','n_diff_pfx01',1,1,'sin_ativo'),('sei','serie','i01_serie','2024-05-10 02:28:22','n_diff_pfx02',3,1,'sin_ativo,sta_aplicabilidade'),('sei','serie','i01_serie','2024-05-10 02:28:22','n_diff_pfx03',3,1,'sin_ativo,sta_aplicabilidade,sin_interno'),('sei','serie','i01_serie','2024-05-10 02:28:22','n_diff_pfx04',254,1,'sin_ativo,sta_aplicabilidade,sin_interno,id_serie'),('sei','serie','i01_serie','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie','i01_serie','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','serie_escolha','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie'),('sei','serie_escolha','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_serie,id_unidade'),('sei','serie_escolha','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_escolha','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_escolha','fk_serie_escolha_serie','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie'),('sei','serie_escolha','fk_serie_escolha_serie','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_serie,id_unidade'),('sei','serie_escolha','fk_serie_escolha_serie','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_escolha','fk_serie_escolha_serie','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_escolha','fk_serie_escolha_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','serie_escolha','fk_serie_escolha_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_serie'),('sei','serie_escolha','fk_serie_escolha_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_escolha','fk_serie_escolha_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_publicacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie_publicacao'),('sei','serie_publicacao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_publicacao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_publicacao','fk_serie_publicacao_orgao','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_orgao'),('sei','serie_publicacao','fk_serie_publicacao_orgao','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_orgao,id_serie_publicacao'),('sei','serie_publicacao','fk_serie_publicacao_orgao','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_publicacao','fk_serie_publicacao_orgao','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_publicacao','fk_serie_publicacao_serie','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie'),('sei','serie_publicacao','fk_serie_publicacao_serie','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_serie,id_serie_publicacao'),('sei','serie_publicacao','fk_serie_publicacao_serie','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_publicacao','fk_serie_publicacao_serie','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_restricao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie_restricao'),('sei','serie_restricao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_restricao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_restricao','fk_serie_restricao_orgao','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_orgao'),('sei','serie_restricao','fk_serie_restricao_orgao','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_orgao,id_serie_restricao'),('sei','serie_restricao','fk_serie_restricao_orgao','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_restricao','fk_serie_restricao_orgao','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_restricao','fk_serie_restricao_serie','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_serie'),('sei','serie_restricao','fk_serie_restricao_serie','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_serie,id_serie_restricao'),('sei','serie_restricao','fk_serie_restricao_serie','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_restricao','fk_serie_restricao_serie','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','serie_restricao','fk_serie_restricao_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','serie_restricao','fk_serie_restricao_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_serie_restricao'),('sei','serie_restricao','fk_serie_restricao_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','serie_restricao','fk_serie_restricao_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','servico','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_servico'),('sei','servico','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','servico','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','servico','fk_servico_usuario','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_usuario'),('sei','servico','fk_servico_usuario','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_usuario,id_servico'),('sei','servico','fk_servico_usuario','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','servico','fk_servico_usuario','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','servico','i02_servico','2024-05-10 02:28:21','n_diff_pfx01',0,1,'crc'),('sei','servico','i02_servico','2024-05-10 02:28:21','n_diff_pfx02',0,1,'crc,id_servico'),('sei','servico','i02_servico','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','servico','i02_servico','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','sinalizacao_federacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','sinalizacao_federacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_instalacao_federacao,id_protocolo_federacao'),('sei','sinalizacao_federacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx03',0,1,'id_instalacao_federacao,id_protocolo_federacao,id_unidade'),('sei','sinalizacao_federacao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','sinalizacao_federacao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_inst_fed','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_inst_fed','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_instalacao_federacao,id_protocolo_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_inst_fed','2024-05-10 02:28:21','n_diff_pfx03',0,1,'id_instalacao_federacao,id_protocolo_federacao,id_unidade'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_inst_fed','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_inst_fed','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_prot_fed','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_protocolo_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_prot_fed','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_protocolo_federacao,id_instalacao_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_prot_fed','2024-05-10 02:28:21','n_diff_pfx03',0,1,'id_protocolo_federacao,id_instalacao_federacao,id_unidade'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_prot_fed','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_prot_fed','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_instalacao_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_unidade','2024-05-10 02:28:21','n_diff_pfx03',0,1,'id_unidade,id_instalacao_federacao,id_protocolo_federacao'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','sinalizacao_federacao','fk_sinalizacao_fed_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_protocolo_federacao'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_protocolo_federacao,id_unidade'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','n_diff_pfx03',0,1,'id_protocolo_federacao,id_unidade,sta_sinalizacao'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','n_diff_pfx04',0,1,'id_protocolo_federacao,id_unidade,sta_sinalizacao,id_instalacao_federacao'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','sinalizacao_federacao','i01_sinalizacao_federacao','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','situacao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_situacao'),('sei','situacao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','situacao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tabela_assuntos','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tabela_assuntos'),('sei','tabela_assuntos','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tabela_assuntos','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tarefa','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',113,1,'id_tarefa'),('sei','tarefa','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tarefa','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tarefa','i01_tarefa','2024-05-10 02:28:22','n_diff_pfx01',1,1,'id_tarefa_modulo'),('sei','tarefa','i01_tarefa','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tarefa','i01_tarefa','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tarefa_instalacao','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',11,1,'id_tarefa_instalacao'),('sei','tarefa_instalacao','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tarefa_instalacao','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tarja_assinatura','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',5,1,'id_tarja_assinatura'),('sei','tarja_assinatura','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('sei','tarja_assinatura','PRIMARY','2024-05-10 02:28:22','size',5,NULL,'Number of pages in the index'),('sei','texto_padrao_interno','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_texto_padrao_interno'),('sei','texto_padrao_interno','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','texto_padrao_interno','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','texto_padrao_interno','fk_texto_padrao_int_conj','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_conjunto_estilos'),('sei','texto_padrao_interno','fk_texto_padrao_int_conj','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_conjunto_estilos,id_texto_padrao_interno'),('sei','texto_padrao_interno','fk_texto_padrao_int_conj','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','texto_padrao_interno','fk_texto_padrao_int_conj','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','texto_padrao_interno','fk_texto_padrao_int_unid','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','texto_padrao_interno','fk_texto_padrao_int_unid','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_texto_padrao_interno'),('sei','texto_padrao_interno','fk_texto_padrao_int_unid','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','texto_padrao_interno','fk_texto_padrao_int_unid','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_conferencia','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',4,1,'id_tipo_conferencia'),('sei','tipo_conferencia','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_conferencia','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tipo_contato','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',8,1,'id_tipo_contato'),('sei','tipo_contato','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_contato','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tipo_formulario','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_formulario'),('sei','tipo_formulario','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_formulario','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_localizador','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_localizador'),('sei','tipo_localizador','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_localizador','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_localizador','ak1_tipo_localizador','2024-05-10 02:28:21','n_diff_pfx01',0,1,'sigla'),('sei','tipo_localizador','ak1_tipo_localizador','2024-05-10 02:28:21','n_diff_pfx02',0,1,'sigla,id_unidade'),('sei','tipo_localizador','ak1_tipo_localizador','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_localizador','ak1_tipo_localizador','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_localizador','ak_tipo_arquivo_nome','2024-05-10 02:28:21','n_diff_pfx01',0,1,'nome'),('sei','tipo_localizador','ak_tipo_arquivo_nome','2024-05-10 02:28:21','n_diff_pfx02',0,1,'nome,id_unidade'),('sei','tipo_localizador','ak_tipo_arquivo_nome','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_localizador','ak_tipo_arquivo_nome','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_localizador','fk_tipo_localizador_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','tipo_localizador','fk_tipo_localizador_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_tipo_localizador'),('sei','tipo_localizador','fk_tipo_localizador_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_localizador','fk_tipo_localizador_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_proced_restricao','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_proced_restricao'),('sei','tipo_proced_restricao','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_proced_restricao','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_orgao','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_orgao'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_orgao','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_orgao,id_tipo_proced_restricao'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_orgao','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_orgao','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_tipo_proc','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_tipo_proc','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_tipo_procedimento,id_tipo_proced_restricao'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_tipo_proc','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_tipo_proc','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_tipo_proced_restricao'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_proced_restricao','fk_tipo_proced_restr_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',395,3,'id_tipo_procedimento'),('sei','tipo_procedimento','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento','PRIMARY','2024-05-10 02:28:22','size',4,NULL,'Number of pages in the index'),('sei','tipo_procedimento','fk_tipo_proced_hipotese_legal','2024-05-10 02:28:22','n_diff_pfx01',3,1,'id_hipotese_legal_sugestao'),('sei','tipo_procedimento','fk_tipo_proced_hipotese_legal','2024-05-10 02:28:22','n_diff_pfx02',395,1,'id_hipotese_legal_sugestao,id_tipo_procedimento'),('sei','tipo_procedimento','fk_tipo_proced_hipotese_legal','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento','fk_tipo_proced_hipotese_legal','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento','i01_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx01',395,1,'id_tipo_procedimento'),('sei','tipo_procedimento','i01_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx02',395,1,'id_tipo_procedimento,sin_ativo'),('sei','tipo_procedimento','i01_tipo_procedimento','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento','i01_tipo_procedimento','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx01',2,1,'sin_ouvidoria'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx02',3,1,'sin_ouvidoria,sin_interno'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx03',4,1,'sin_ouvidoria,sin_interno,sin_ativo'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','n_diff_pfx04',395,1,'sin_ouvidoria,sin_interno,sin_ativo,id_tipo_procedimento'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento','i02_tipo_procedimento','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento_escolha','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','tipo_procedimento_escolha','PRIMARY','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_tipo_procedimento,id_unidade'),('sei','tipo_procedimento_escolha','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento_escolha','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_tipo_proc','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_tipo_procedimento'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_tipo_proc','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_tipo_procedimento,id_unidade'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_tipo_proc','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_tipo_proc','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_unidade','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_unidade'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_unidade','2024-05-10 02:28:21','n_diff_pfx02',0,1,'id_unidade,id_tipo_procedimento'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_unidade','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_procedimento_escolha','fk_tipo_proc_escolha_unidade','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tipo_suporte','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',8,1,'id_tipo_suporte'),('sei','tipo_suporte','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_suporte','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','tipo_suporte','ak1_tipo_suporte','2024-05-10 02:28:23','n_diff_pfx01',8,1,'nome'),('sei','tipo_suporte','ak1_tipo_suporte','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tipo_suporte','ak1_tipo_suporte','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','titulo','PRIMARY','2024-05-10 02:28:21','n_diff_pfx01',0,1,'id_titulo'),('sei','titulo','PRIMARY','2024-05-10 02:28:21','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','titulo','PRIMARY','2024-05-10 02:28:21','size',1,NULL,'Number of pages in the index'),('sei','tratamento','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',4,1,'id_tratamento'),('sei','tratamento','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tratamento','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','tratamento','ie1_tratamento','2024-05-10 02:28:23','n_diff_pfx01',4,1,'id_tratamento'),('sei','tratamento','ie1_tratamento','2024-05-10 02:28:23','n_diff_pfx02',4,1,'id_tratamento,sin_ativo'),('sei','tratamento','ie1_tratamento','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','tratamento','ie1_tratamento','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','uf','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',27,1,'id_uf'),('sei','uf','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','uf','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','uf','fk_uf_pais','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_pais'),('sei','uf','fk_uf_pais','2024-05-10 02:28:23','n_diff_pfx02',27,1,'id_pais,id_uf'),('sei','uf','fk_uf_pais','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','uf','fk_uf_pais','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',43,1,'id_unidade'),('sei','unidade','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','fk_unidade_contato','2024-05-10 02:28:23','n_diff_pfx01',43,1,'id_contato'),('sei','unidade','fk_unidade_contato','2024-05-10 02:28:23','n_diff_pfx02',43,1,'id_contato,id_unidade'),('sei','unidade','fk_unidade_contato','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','fk_unidade_contato','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','fk_unidade_orgao','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_orgao'),('sei','unidade','fk_unidade_orgao','2024-05-10 02:28:23','n_diff_pfx02',43,1,'id_orgao,id_unidade'),('sei','unidade','fk_unidade_orgao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','fk_unidade_orgao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','fk_unidade_unidade_federacao','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_unidade_federacao'),('sei','unidade','fk_unidade_unidade_federacao','2024-05-10 02:28:23','n_diff_pfx02',43,1,'id_unidade_federacao,id_unidade'),('sei','unidade','fk_unidade_unidade_federacao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','fk_unidade_unidade_federacao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx01',1,1,'sin_ativo'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx02',1,1,'sin_ativo,id_orgao'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx03',1,1,'sin_ativo,id_orgao,sin_protocolo'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx04',1,1,'sin_ativo,id_orgao,sin_protocolo,sin_ouvidoria'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx05',1,1,'sin_ativo,id_orgao,sin_protocolo,sin_ouvidoria,sin_envio_processo'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_diff_pfx06',43,1,'sin_ativo,id_orgao,sin_protocolo,sin_ouvidoria,sin_envio_processo,id_unidade'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','i01_unidade','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade','i02_unidade','2024-05-10 02:28:23','n_diff_pfx01',1,1,'sin_ativo'),('sei','unidade','i02_unidade','2024-05-10 02:28:23','n_diff_pfx02',43,1,'sin_ativo,sigla'),('sei','unidade','i02_unidade','2024-05-10 02:28:23','n_diff_pfx03',43,1,'sin_ativo,sigla,id_unidade'),('sei','unidade','i02_unidade','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade','i02_unidade','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade_federacao','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade_federacao'),('sei','unidade_federacao','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_federacao','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','unidade_federacao','fk_unidade_fed_instalacao_fed','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','unidade_federacao','fk_unidade_fed_instalacao_fed','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_instalacao_federacao,id_unidade_federacao'),('sei','unidade_federacao','fk_unidade_fed_instalacao_fed','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_federacao','fk_unidade_fed_instalacao_fed','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','unidade_historico','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',43,1,'id_unidade_historico'),('sei','unidade_historico','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_historico','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade_historico','fk_unidade_historico_orgao','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_orgao'),('sei','unidade_historico','fk_unidade_historico_orgao','2024-05-10 02:28:23','n_diff_pfx02',43,1,'id_orgao,id_unidade_historico'),('sei','unidade_historico','fk_unidade_historico_orgao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_historico','fk_unidade_historico_orgao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade_historico','fk_unidade_historico_unidade','2024-05-10 02:28:23','n_diff_pfx01',43,1,'id_unidade'),('sei','unidade_historico','fk_unidade_historico_unidade','2024-05-10 02:28:23','n_diff_pfx02',43,1,'id_unidade,id_unidade_historico'),('sei','unidade_historico','fk_unidade_historico_unidade','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_historico','fk_unidade_historico_unidade','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade_historico','i02_unidade_historico','2024-05-10 02:28:23','n_diff_pfx01',1,1,'dta_inicio'),('sei','unidade_historico','i02_unidade_historico','2024-05-10 02:28:23','n_diff_pfx02',1,1,'dta_inicio,dta_fim'),('sei','unidade_historico','i02_unidade_historico','2024-05-10 02:28:23','n_diff_pfx03',43,1,'dta_inicio,dta_fim,id_unidade'),('sei','unidade_historico','i02_unidade_historico','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_historico','i02_unidade_historico','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','unidade_publicacao','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade_publicacao'),('sei','unidade_publicacao','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_publicacao','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','unidade_publicacao','fk_unidade_publicacao_unidade','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade'),('sei','unidade_publicacao','fk_unidade_publicacao_unidade','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_unidade,id_unidade_publicacao'),('sei','unidade_publicacao','fk_unidade_publicacao_unidade','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','unidade_publicacao','fk_unidade_publicacao_unidade','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','usuario','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',57,1,'id_usuario'),('sei','usuario','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario','fk_usuario_contato','2024-05-10 02:28:23','n_diff_pfx01',57,1,'id_contato'),('sei','usuario','fk_usuario_contato','2024-05-10 02:28:23','n_diff_pfx02',57,1,'id_contato,id_usuario'),('sei','usuario','fk_usuario_contato','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','fk_usuario_contato','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario','fk_usuario_orgao','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_orgao'),('sei','usuario','fk_usuario_orgao','2024-05-10 02:28:23','n_diff_pfx02',57,1,'id_orgao,id_usuario'),('sei','usuario','fk_usuario_orgao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','fk_usuario_orgao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario','fk_usuario_usuario_federacao','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_usuario_federacao'),('sei','usuario','fk_usuario_usuario_federacao','2024-05-10 02:28:23','n_diff_pfx02',57,1,'id_usuario_federacao,id_usuario'),('sei','usuario','fk_usuario_usuario_federacao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','fk_usuario_usuario_federacao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_orgao'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx02',2,1,'id_orgao,sta_tipo'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx03',57,1,'id_orgao,sta_tipo,sigla'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx04',57,1,'id_orgao,sta_tipo,sigla,idx_usuario'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx05',57,1,'id_orgao,sta_tipo,sigla,idx_usuario,sin_ativo'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_diff_pfx06',57,1,'id_orgao,sta_tipo,sigla,idx_usuario,sin_ativo,id_usuario'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','i01_usuario','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario','i02_usuario','2024-05-10 02:28:23','n_diff_pfx01',57,1,'id_contato'),('sei','usuario','i02_usuario','2024-05-10 02:28:23','n_diff_pfx02',57,1,'id_contato,sta_tipo'),('sei','usuario','i02_usuario','2024-05-10 02:28:23','n_diff_pfx03',57,1,'id_contato,sta_tipo,id_usuario'),('sei','usuario','i02_usuario','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario','i02_usuario','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','usuario_federacao','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario_federacao'),('sei','usuario_federacao','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario_federacao','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','usuario_federacao','fk_usuario_fed_instalacao_fed','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_instalacao_federacao'),('sei','usuario_federacao','fk_usuario_fed_instalacao_fed','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_instalacao_federacao,id_usuario_federacao'),('sei','usuario_federacao','fk_usuario_fed_instalacao_fed','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','usuario_federacao','fk_usuario_fed_instalacao_fed','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_veiculo_imprensa_nacional'),('sei','veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','veiculo_imprensa_nacional','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','veiculo_publicacao','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_veiculo_publicacao'),('sei','veiculo_publicacao','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','veiculo_publicacao','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','velocidade_transferencia','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario'),('sei','velocidade_transferencia','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','velocidade_transferencia','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','velocidade_transferencia','fk_velocidade_transf_unidade','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade'),('sei','velocidade_transferencia','fk_velocidade_transf_unidade','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_unidade,id_usuario'),('sei','velocidade_transferencia','fk_velocidade_transf_unidade','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','velocidade_transferencia','fk_velocidade_transf_unidade','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','versao_secao_documento','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_versao_secao_documento'),('sei','versao_secao_documento','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','versao_secao_documento','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','versao_secao_documento','fk_versao_sec_doc_sec_doc','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_secao_documento'),('sei','versao_secao_documento','fk_versao_sec_doc_sec_doc','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_secao_documento,id_versao_secao_documento'),('sei','versao_secao_documento','fk_versao_sec_doc_sec_doc','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','versao_secao_documento','fk_versao_sec_doc_sec_doc','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','versao_secao_documento','fk_versao_secao_doc_unidade','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade'),('sei','versao_secao_documento','fk_versao_secao_doc_unidade','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_unidade,id_versao_secao_documento'),('sei','versao_secao_documento','fk_versao_secao_doc_unidade','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','versao_secao_documento','fk_versao_secao_doc_unidade','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','versao_secao_documento','fk_versao_secao_doc_usuario','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario'),('sei','versao_secao_documento','fk_versao_secao_doc_usuario','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_usuario,id_versao_secao_documento'),('sei','versao_secao_documento','fk_versao_secao_doc_usuario','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','versao_secao_documento','fk_versao_secao_doc_usuario','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','versao_secao_documento','i01_versao_secao_documento','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_secao_documento'),('sei','versao_secao_documento','i01_versao_secao_documento','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_secao_documento,versao'),('sei','versao_secao_documento','i01_versao_secao_documento','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_secao_documento,versao,id_versao_secao_documento'),('sei','versao_secao_documento','i01_versao_secao_documento','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','versao_secao_documento','i01_versao_secao_documento','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sei','vocativo','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',63,1,'id_vocativo'),('sei','vocativo','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','vocativo','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sei','vocativo','ie1_vocativo','2024-05-10 02:28:23','n_diff_pfx01',63,1,'id_vocativo'),('sei','vocativo','ie1_vocativo','2024-05-10 02:28:23','n_diff_pfx02',63,1,'id_vocativo,sin_ativo'),('sei','vocativo','ie1_vocativo','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sei','vocativo','ie1_vocativo','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','administrador_sistema','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_usuario'),('sip','administrador_sistema','PRIMARY','2024-05-10 02:28:23','n_diff_pfx02',2,1,'id_usuario,id_sistema'),('sip','administrador_sistema','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','administrador_sistema','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','administrador_sistema','fk_admin_sistema_sistema','2024-05-10 02:28:23','n_diff_pfx01',2,1,'id_sistema'),('sip','administrador_sistema','fk_admin_sistema_sistema','2024-05-10 02:28:23','n_diff_pfx02',2,1,'id_sistema,id_usuario'),('sip','administrador_sistema','fk_admin_sistema_sistema','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','administrador_sistema','fk_admin_sistema_sistema','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','administrador_sistema','fk_admin_sistema_usuario','2024-05-10 02:28:23','n_diff_pfx01',1,1,'id_usuario'),('sip','administrador_sistema','fk_admin_sistema_usuario','2024-05-10 02:28:23','n_diff_pfx02',2,1,'id_usuario,id_sistema'),('sip','administrador_sistema','fk_admin_sistema_usuario','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','administrador_sistema','fk_admin_sistema_usuario','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','codigo_acesso','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_codigo_acesso'),('sip','codigo_acesso','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_acesso','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_acesso','fk_cod_acesso_usu_desativacao','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario_desativacao'),('sip','codigo_acesso','fk_cod_acesso_usu_desativacao','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_usuario_desativacao,id_codigo_acesso'),('sip','codigo_acesso','fk_cod_acesso_usu_desativacao','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_acesso','fk_cod_acesso_usu_desativacao','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_acesso','fk_codigo_acesso_sistema','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_sistema'),('sip','codigo_acesso','fk_codigo_acesso_sistema','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_sistema,id_codigo_acesso'),('sip','codigo_acesso','fk_codigo_acesso_sistema','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_acesso','fk_codigo_acesso_sistema','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_acesso','fk_codigo_acesso_usuario','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario'),('sip','codigo_acesso','fk_codigo_acesso_usuario','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_usuario,id_codigo_acesso'),('sip','codigo_acesso','fk_codigo_acesso_usuario','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_acesso','fk_codigo_acesso_usuario','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_acesso','i01_codigo_acesso','2024-05-10 02:28:22','n_diff_pfx01',0,1,'dth_ativacao'),('sip','codigo_acesso','i01_codigo_acesso','2024-05-10 02:28:22','n_diff_pfx02',0,1,'dth_ativacao,id_codigo_acesso'),('sip','codigo_acesso','i01_codigo_acesso','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_acesso','i01_codigo_acesso','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_bloqueio','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_codigo_bloqueio'),('sip','codigo_bloqueio','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_bloqueio','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_bloqueio','fk_cod_bloqueio_cod_acesso','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_codigo_acesso'),('sip','codigo_bloqueio','fk_cod_bloqueio_cod_acesso','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_codigo_acesso,id_codigo_bloqueio'),('sip','codigo_bloqueio','fk_cod_bloqueio_cod_acesso','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_bloqueio','fk_cod_bloqueio_cod_acesso','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','codigo_bloqueio','i01_codigo_bloqueio','2024-05-10 02:28:22','n_diff_pfx01',0,1,'dth_envio'),('sip','codigo_bloqueio','i01_codigo_bloqueio','2024-05-10 02:28:22','n_diff_pfx02',0,1,'dth_envio,id_codigo_bloqueio'),('sip','codigo_bloqueio','i01_codigo_bloqueio','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','codigo_bloqueio','i01_codigo_bloqueio','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_perfil','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_perfil'),('sip','coordenador_perfil','PRIMARY','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_perfil,id_usuario'),('sip','coordenador_perfil','PRIMARY','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_perfil,id_usuario,id_sistema'),('sip','coordenador_perfil','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_perfil','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_perfil','fk_coordenador_perfil_perfil','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_perfil'),('sip','coordenador_perfil','fk_coordenador_perfil_perfil','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_perfil,id_sistema'),('sip','coordenador_perfil','fk_coordenador_perfil_perfil','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_perfil,id_sistema,id_usuario'),('sip','coordenador_perfil','fk_coordenador_perfil_perfil','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_perfil','fk_coordenador_perfil_perfil','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_perfil','fk_coordenador_perfil_usuario','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario'),('sip','coordenador_perfil','fk_coordenador_perfil_usuario','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_usuario,id_perfil'),('sip','coordenador_perfil','fk_coordenador_perfil_usuario','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_usuario,id_perfil,id_sistema'),('sip','coordenador_perfil','fk_coordenador_perfil_usuario','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_perfil','fk_coordenador_perfil_usuario','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_unidade','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_sistema'),('sip','coordenador_unidade','PRIMARY','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_sistema,id_usuario'),('sip','coordenador_unidade','PRIMARY','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_sistema,id_usuario,id_unidade'),('sip','coordenador_unidade','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_unidade','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_sistema','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_sistema'),('sip','coordenador_unidade','fk_coordenador_unidade_sistema','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_sistema,id_usuario'),('sip','coordenador_unidade','fk_coordenador_unidade_sistema','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_sistema,id_usuario,id_unidade'),('sip','coordenador_unidade','fk_coordenador_unidade_sistema','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_sistema','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_unidade','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_unidade'),('sip','coordenador_unidade','fk_coordenador_unidade_unidade','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_unidade,id_sistema'),('sip','coordenador_unidade','fk_coordenador_unidade_unidade','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_unidade,id_sistema,id_usuario'),('sip','coordenador_unidade','fk_coordenador_unidade_unidade','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_unidade','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_usuario','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_usuario'),('sip','coordenador_unidade','fk_coordenador_unidade_usuario','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_usuario,id_sistema'),('sip','coordenador_unidade','fk_coordenador_unidade_usuario','2024-05-10 02:28:22','n_diff_pfx03',0,1,'id_usuario,id_sistema,id_unidade'),('sip','coordenador_unidade','fk_coordenador_unidade_usuario','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','coordenador_unidade','fk_coordenador_unidade_usuario','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','dispositivo_acesso','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_dispositivo_acesso'),('sip','dispositivo_acesso','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','dispositivo_acesso','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','dispositivo_acesso','fk_disp_acesso_cod_acesso','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id_codigo_acesso'),('sip','dispositivo_acesso','fk_disp_acesso_cod_acesso','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id_codigo_acesso,id_dispositivo_acesso'),('sip','dispositivo_acesso','fk_disp_acesso_cod_acesso','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','dispositivo_acesso','fk_disp_acesso_cod_acesso','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','dispositivo_acesso','i01_dispositivo_acesso','2024-05-10 02:28:22','n_diff_pfx01',0,1,'dth_acesso'),('sip','dispositivo_acesso','i01_dispositivo_acesso','2024-05-10 02:28:22','n_diff_pfx02',0,1,'dth_acesso,id_dispositivo_acesso'),('sip','dispositivo_acesso','i01_dispositivo_acesso','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','dispositivo_acesso','i01_dispositivo_acesso','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','dispositivo_acesso','i02_dispositivo_acesso','2024-05-10 02:28:22','n_diff_pfx01',0,1,'dth_liberacao'),('sip','dispositivo_acesso','i02_dispositivo_acesso','2024-05-10 02:28:22','n_diff_pfx02',0,1,'dth_liberacao,id_dispositivo_acesso'),('sip','dispositivo_acesso','i02_dispositivo_acesso','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','dispositivo_acesso','i02_dispositivo_acesso','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','dtproperties','PRIMARY','2024-05-10 02:28:22','n_diff_pfx01',0,1,'id'),('sip','dtproperties','PRIMARY','2024-05-10 02:28:22','n_diff_pfx02',0,1,'id,property'),('sip','dtproperties','PRIMARY','2024-05-10 02:28:22','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','dtproperties','PRIMARY','2024-05-10 02:28:22','size',1,NULL,'Number of pages in the index'),('sip','email_sistema','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',4,1,'id_email_sistema'),('sip','email_sistema','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','email_sistema','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','hierarquia','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',0,1,'id_hierarquia'),('sip','hierarquia','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','hierarquia','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','hierarquia','i01_hierarquia','2024-05-10 02:28:23','n_diff_pfx01',0,1,'id_hierarquia'),('sip','hierarquia','i01_hierarquia','2024-05-10 02:28:23','n_diff_pfx02',0,1,'id_hierarquia,sin_ativo'),('sip','hierarquia','i01_hierarquia','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','hierarquia','i01_hierarquia','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',5,1,'id_infra_agendamento_tarefa'),('sip','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_agendamento_tarefa','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_auditoria','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',515,20,'id_infra_auditoria'),('sip','infra_auditoria','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',23,NULL,'Number of leaf pages in the index'),('sip','infra_auditoria','PRIMARY','2024-05-10 02:28:23','size',24,NULL,'Number of pages in the index'),('sip','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx01',12,2,'recurso'),('sip','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx02',533,2,'recurso,id_infra_auditoria'),('sip','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:23','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','infra_auditoria','i01_infra_auditoria','2024-05-10 02:28:23','size',3,NULL,'Number of pages in the index'),('sip','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx01',187,1,'dth_acesso'),('sip','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx02',533,1,'dth_acesso,id_infra_auditoria'),('sip','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_auditoria','i02_infra_auditoria','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx01',3,1,'sigla_usuario'),('sip','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx02',533,1,'sigla_usuario,id_infra_auditoria'),('sip','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_auditoria','i03_infra_auditoria','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx01',2,1,'sigla_unidade'),('sip','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:23','n_diff_pfx02',533,1,'sigla_unidade,id_infra_auditoria'),('sip','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_auditoria','i04_infra_auditoria','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_log','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',2,1,'id_infra_log'),('sip','infra_log','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_log','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_log','i01_infra_log','2024-05-10 02:28:23','n_diff_pfx01',1,1,'sta_tipo'),('sip','infra_log','i01_infra_log','2024-05-10 02:28:23','n_diff_pfx02',2,1,'sta_tipo,dth_log'),('sip','infra_log','i01_infra_log','2024-05-10 02:28:23','n_diff_pfx03',2,1,'sta_tipo,dth_log,id_infra_log'),('sip','infra_log','i01_infra_log','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_log','i01_infra_log','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_parametro','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',20,1,'nome'),('sip','infra_parametro','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_parametro','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',0,1,'id_infra_regra_auditoria'),('sip','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_regra_auditoria','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_infra_regra_auditoria'),('sip','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',81,1,'id_infra_regra_auditoria,recurso'),('sip','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_infra_regra_auditoria'),('sip','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:24','n_diff_pfx02',81,1,'id_infra_regra_auditoria,recurso'),('sip','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_regra_auditoria_recurso','fk_inf_reg_aud_rec_inf_reg_aud','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','infra_sequencia','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',15,1,'nome_tabela'),('sip','infra_sequencia','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','infra_sequencia','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',2,2,'id_menu'),('sip','item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',260,2,'id_menu,id_item_menu'),('sip','item_menu','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','item_menu','PRIMARY','2024-05-10 02:28:24','size',3,NULL,'Number of pages in the index'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','n_diff_pfx01',3,1,'id_menu_pai'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','n_diff_pfx02',55,1,'id_menu_pai,id_item_menu_pai'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','n_diff_pfx03',56,1,'id_menu_pai,id_item_menu_pai,id_menu'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','n_diff_pfx04',260,1,'id_menu_pai,id_item_menu_pai,id_menu,id_item_menu'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','item_menu','fk_item_menu_item_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','item_menu','fk_item_menu_menu','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_menu'),('sip','item_menu','fk_item_menu_menu','2024-05-10 02:28:24','n_diff_pfx02',260,1,'id_menu,id_item_menu'),('sip','item_menu','fk_item_menu_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','item_menu','fk_item_menu_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_sistema'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','n_diff_pfx02',206,1,'id_sistema,id_recurso'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','n_diff_pfx03',206,1,'id_sistema,id_recurso,id_menu'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','n_diff_pfx04',260,1,'id_sistema,id_recurso,id_menu,id_item_menu'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','item_menu','fk_item_menu_recurso','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','item_menu','i04_item_menu','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_menu'),('sip','item_menu','i04_item_menu','2024-05-10 02:28:24','n_diff_pfx02',260,1,'id_menu,id_item_menu'),('sip','item_menu','i04_item_menu','2024-05-10 02:28:24','n_diff_pfx03',260,1,'id_menu,id_item_menu,sin_ativo'),('sip','item_menu','i04_item_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','item_menu','i04_item_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','item_menu','i05_item_menu','2024-05-10 02:28:24','n_diff_pfx01',205,1,'id_recurso'),('sip','item_menu','i05_item_menu','2024-05-10 02:28:24','n_diff_pfx02',206,1,'id_recurso,id_menu'),('sip','item_menu','i05_item_menu','2024-05-10 02:28:24','n_diff_pfx03',260,1,'id_recurso,id_menu,id_item_menu'),('sip','item_menu','i05_item_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','item_menu','i05_item_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_login'),('sip','login','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_login,id_usuario'),('sip','login','PRIMARY','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_login,id_usuario,id_sistema'),('sip','login','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_codigo_acesso'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_codigo_acesso,id_login'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_codigo_acesso,id_login,id_usuario'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','n_diff_pfx04',2,1,'id_codigo_acesso,id_login,id_usuario,id_sistema'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','fk_login_codigo_acesso','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_dispositivo_acesso'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_dispositivo_acesso,id_login'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_dispositivo_acesso,id_login,id_usuario'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','n_diff_pfx04',2,1,'id_dispositivo_acesso,id_login,id_usuario,id_sistema'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','fk_login_dispositivo_acesso','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','fk_login_sistema','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_sistema'),('sip','login','fk_login_sistema','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_sistema,id_login'),('sip','login','fk_login_sistema','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_sistema,id_login,id_usuario'),('sip','login','fk_login_sistema','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','fk_login_sistema','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','fk_login_usuario','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_usuario'),('sip','login','fk_login_usuario','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_usuario,id_login'),('sip','login','fk_login_usuario','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_usuario,id_login,id_sistema'),('sip','login','fk_login_usuario','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','fk_login_usuario','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_usuario_emulador'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_usuario_emulador,id_login'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_usuario_emulador,id_login,id_usuario'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','n_diff_pfx04',2,1,'id_usuario_emulador,id_login,id_usuario,id_sistema'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','fk_login_usuario_emulador','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','i04_login','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_login'),('sip','login','i04_login','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_login,id_sistema'),('sip','login','i04_login','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_login,id_sistema,id_usuario'),('sip','login','i04_login','2024-05-10 02:28:24','n_diff_pfx04',2,1,'id_login,id_sistema,id_usuario,sta_login'),('sip','login','i04_login','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','i04_login','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','i05_login','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_login'),('sip','login','i05_login','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_login,id_sistema'),('sip','login','i05_login','2024-05-10 02:28:24','n_diff_pfx03',2,1,'id_login,id_sistema,id_usuario'),('sip','login','i05_login','2024-05-10 02:28:24','n_diff_pfx04',2,1,'id_login,id_sistema,id_usuario,dth_login'),('sip','login','i05_login','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','i05_login','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx01',2,1,'hash_usuario'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx02',2,1,'hash_usuario,dth_login'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx03',2,1,'hash_usuario,dth_login,sta_login'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx04',2,1,'hash_usuario,dth_login,sta_login,id_login'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx05',2,1,'hash_usuario,dth_login,sta_login,id_login,id_usuario'),('sip','login','i06_login','2024-05-10 02:28:24','n_diff_pfx06',2,1,'hash_usuario,dth_login,sta_login,id_login,id_usuario,id_sistema'),('sip','login','i06_login','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','i06_login','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','login','i07_login','2024-05-10 02:28:24','n_diff_pfx01',2,1,'dth_login'),('sip','login','i07_login','2024-05-10 02:28:24','n_diff_pfx02',2,1,'dth_login,id_login'),('sip','login','i07_login','2024-05-10 02:28:24','n_diff_pfx03',2,1,'dth_login,id_login,id_usuario'),('sip','login','i07_login','2024-05-10 02:28:24','n_diff_pfx04',2,1,'dth_login,id_login,id_usuario,id_sistema'),('sip','login','i07_login','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','login','i07_login','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_menu'),('sip','menu','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','menu','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','menu','fk_menu_sistema','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_sistema'),('sip','menu','fk_menu_sistema','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_sistema,id_menu'),('sip','menu','fk_menu_sistema','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','menu','fk_menu_sistema','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','menu','i02_menu','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_menu'),('sip','menu','i02_menu','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_menu,sin_ativo'),('sip','menu','i02_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','menu','i02_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','orgao','PRIMARY','2024-05-10 02:28:23','n_diff_pfx01',0,1,'id_orgao'),('sip','orgao','PRIMARY','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','orgao','PRIMARY','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','orgao','ak_orgao_sigla','2024-05-10 02:28:23','n_diff_pfx01',0,1,'sigla'),('sip','orgao','ak_orgao_sigla','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','orgao','ak_orgao_sigla','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','orgao','i01_orgao','2024-05-10 02:28:23','n_diff_pfx01',0,1,'id_orgao'),('sip','orgao','i01_orgao','2024-05-10 02:28:23','n_diff_pfx02',0,1,'id_orgao,sin_ativo'),('sip','orgao','i01_orgao','2024-05-10 02:28:23','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','orgao','i01_orgao','2024-05-10 02:28:23','size',1,NULL,'Number of pages in the index'),('sip','perfil','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',15,1,'id_perfil'),('sip','perfil','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',15,1,'id_perfil,id_sistema'),('sip','perfil','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','perfil','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','perfil','ak_perfil_nome','2024-05-10 02:28:24','n_diff_pfx01',14,1,'nome'),('sip','perfil','ak_perfil_nome','2024-05-10 02:28:24','n_diff_pfx02',15,1,'nome,id_sistema'),('sip','perfil','ak_perfil_nome','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','perfil','ak_perfil_nome','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','perfil','fk_perfil_sistema','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_sistema'),('sip','perfil','fk_perfil_sistema','2024-05-10 02:28:24','n_diff_pfx02',15,1,'id_sistema,id_perfil'),('sip','perfil','fk_perfil_sistema','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','perfil','fk_perfil_sistema','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',8,1,'id_perfil'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',8,1,'id_perfil,id_sistema'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx03',60,1,'id_perfil,id_sistema,id_usuario'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx04',61,1,'id_perfil,id_sistema,id_usuario,id_unidade'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','permissao','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','n_diff_pfx01',8,1,'id_perfil'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','n_diff_pfx02',8,1,'id_perfil,id_sistema'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','n_diff_pfx03',60,1,'id_perfil,id_sistema,id_usuario'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','n_diff_pfx04',61,1,'id_perfil,id_sistema,id_usuario,id_unidade'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','permissao','fk_permissao_perfil','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_tipo_permissao'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_diff_pfx02',8,1,'id_tipo_permissao,id_perfil'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_diff_pfx03',8,1,'id_tipo_permissao,id_perfil,id_sistema'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_diff_pfx04',60,1,'id_tipo_permissao,id_perfil,id_sistema,id_usuario'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_diff_pfx05',61,1,'id_tipo_permissao,id_perfil,id_sistema,id_usuario,id_unidade'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','permissao','fk_permissao_tipo_permissao','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','n_diff_pfx01',4,1,'id_unidade'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','n_diff_pfx02',11,1,'id_unidade,id_perfil'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','n_diff_pfx03',11,1,'id_unidade,id_perfil,id_sistema'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','n_diff_pfx04',61,1,'id_unidade,id_perfil,id_sistema,id_usuario'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','permissao','fk_permissao_unidade','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','n_diff_pfx01',53,1,'id_usuario'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','n_diff_pfx02',60,1,'id_usuario,id_perfil'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','n_diff_pfx03',60,1,'id_usuario,id_perfil,id_sistema'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','n_diff_pfx04',61,1,'id_usuario,id_perfil,id_sistema,id_unidade'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','permissao','fk_permissao_usuario','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','recurso','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',2,10,'id_sistema'),('sip','recurso','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',1362,10,'id_sistema,id_recurso'),('sip','recurso','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',10,NULL,'Number of leaf pages in the index'),('sip','recurso','PRIMARY','2024-05-10 02:28:24','size',11,NULL,'Number of pages in the index'),('sip','recurso','ak_recurso_nome','2024-05-10 02:28:24','n_diff_pfx01',1305,4,'nome'),('sip','recurso','ak_recurso_nome','2024-05-10 02:28:24','n_diff_pfx02',1362,4,'nome,id_sistema'),('sip','recurso','ak_recurso_nome','2024-05-10 02:28:24','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('sip','recurso','ak_recurso_nome','2024-05-10 02:28:24','size',5,NULL,'Number of pages in the index'),('sip','recurso','fk_recurso_sistema','2024-05-10 02:28:24','n_diff_pfx01',2,2,'id_sistema'),('sip','recurso','fk_recurso_sistema','2024-05-10 02:28:24','n_diff_pfx02',1362,2,'id_sistema,id_recurso'),('sip','recurso','fk_recurso_sistema','2024-05-10 02:28:24','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','recurso','fk_recurso_sistema','2024-05-10 02:28:24','size',3,NULL,'Number of pages in the index'),('sip','recurso','i02_recurso','2024-05-10 02:28:24','n_diff_pfx01',2,2,'id_sistema'),('sip','recurso','i02_recurso','2024-05-10 02:28:24','n_diff_pfx02',1362,2,'id_sistema,id_recurso'),('sip','recurso','i02_recurso','2024-05-10 02:28:24','n_diff_pfx03',1362,2,'id_sistema,id_recurso,sin_ativo'),('sip','recurso','i02_recurso','2024-05-10 02:28:24','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','recurso','i02_recurso','2024-05-10 02:28:24','size',3,NULL,'Number of pages in the index'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','n_diff_pfx01',2,4,'id_sistema'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','n_diff_pfx02',2,4,'id_sistema,sin_ativo'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','n_diff_pfx03',1362,4,'id_sistema,sin_ativo,id_recurso'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','n_diff_pfx04',1362,4,'id_sistema,sin_ativo,id_recurso,nome'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('sip','recurso','i03_recurso','2024-05-10 02:28:24','size',5,NULL,'Number of pages in the index'),('sip','recurso','i04_recurso','2024-05-10 02:28:24','n_diff_pfx01',1362,2,'id_recurso'),('sip','recurso','i04_recurso','2024-05-10 02:28:24','n_diff_pfx02',1362,2,'id_recurso,sin_ativo'),('sip','recurso','i04_recurso','2024-05-10 02:28:24','n_diff_pfx03',1362,2,'id_recurso,sin_ativo,id_sistema'),('sip','recurso','i04_recurso','2024-05-10 02:28:24','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','recurso','i04_recurso','2024-05-10 02:28:24','size',3,NULL,'Number of pages in the index'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_sistema'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_sistema,id_recurso'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','n_diff_pfx03',0,1,'id_sistema,id_recurso,id_sistema_vinculado'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','n_diff_pfx04',0,1,'id_sistema,id_recurso,id_sistema_vinculado,id_recurso_vinculado'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','recurso_vinculado','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_sistema_vinculado'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_sistema_vinculado,id_recurso_vinculado'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','n_diff_pfx03',0,1,'id_sistema_vinculado,id_recurso_vinculado,id_sistema'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','n_diff_pfx04',0,1,'id_sistema_vinculado,id_recurso_vinculado,id_sistema,id_recurso'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_1','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_recurso'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_recurso,id_sistema'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','n_diff_pfx03',0,1,'id_recurso,id_sistema,id_sistema_vinculado'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','n_diff_pfx04',0,1,'id_recurso,id_sistema,id_sistema_vinculado,id_recurso_vinculado'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','recurso_vinculado','fk_recurso_vinculado_recurso_2','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','regra_auditoria','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',5,1,'id_regra_auditoria'),('sip','regra_auditoria','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','regra_auditoria','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','regra_auditoria','fk_auditoria_sistema','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_sistema'),('sip','regra_auditoria','fk_auditoria_sistema','2024-05-10 02:28:24','n_diff_pfx02',5,1,'id_sistema,id_regra_auditoria'),('sip','regra_auditoria','fk_auditoria_sistema','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','regra_auditoria','fk_auditoria_sistema','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_hierarquia_unidade','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',43,1,'id_unidade'),('sip','rel_hierarquia_unidade','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',43,1,'id_unidade,id_hierarquia'),('sip','rel_hierarquia_unidade','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_hierarquia_unidade','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_hierarquia','2024-05-10 02:28:24','n_diff_pfx01',1,1,'id_hierarquia'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_hierarquia','2024-05-10 02:28:24','n_diff_pfx02',43,1,'id_hierarquia,id_unidade'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_hierarquia','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_hierarquia','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_unidade_pai'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','n_diff_pfx02',2,1,'id_unidade_pai,id_hierarquia_pai'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','n_diff_pfx03',43,1,'id_unidade_pai,id_hierarquia_pai,id_unidade'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','n_diff_pfx04',43,1,'id_unidade_pai,id_hierarquia_pai,id_unidade,id_hierarquia'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_rel_hie_uni','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_unidade','2024-05-10 02:28:24','n_diff_pfx01',43,1,'id_unidade'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_unidade','2024-05-10 02:28:24','n_diff_pfx02',43,1,'id_unidade,id_hierarquia'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_unidade','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_hierarquia_unidade','fk_rel_hie_uni_unidade','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_hierarquia_unidade','i04_rel_hierarquia_unidade','2024-05-10 02:28:24','n_diff_pfx01',43,1,'id_unidade'),('sip','rel_hierarquia_unidade','i04_rel_hierarquia_unidade','2024-05-10 02:28:24','n_diff_pfx02',43,1,'id_unidade,id_hierarquia'),('sip','rel_hierarquia_unidade','i04_rel_hierarquia_unidade','2024-05-10 02:28:24','n_diff_pfx03',43,1,'id_unidade,id_hierarquia,sin_ativo'),('sip','rel_hierarquia_unidade','i04_rel_hierarquia_unidade','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_hierarquia_unidade','i04_rel_hierarquia_unidade','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_orgao_autenticacao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_orgao'),('sip','rel_orgao_autenticacao','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_orgao,id_servidor_autenticacao'),('sip','rel_orgao_autenticacao','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_orgao_autenticacao','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_autenticacao','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_servidor_autenticacao'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_autenticacao','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_servidor_autenticacao,id_orgao'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_autenticacao','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_autenticacao','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_orgao','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id_orgao'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_orgao','2024-05-10 02:28:24','n_diff_pfx02',0,1,'id_orgao,id_servidor_autenticacao'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_orgao','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_orgao_autenticacao','fk_rel_orgao_aut_orgao','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',2,1,'id_menu'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx02',201,1,'id_menu,id_item_menu'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx03',267,1,'id_menu,id_item_menu,id_perfil'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx04',267,1,'id_menu,id_item_menu,id_perfil,id_sistema'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_diff_pfx05',267,1,'id_menu,id_item_menu,id_perfil,id_sistema,id_recurso'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_item_menu','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_diff_pfx01',15,1,'id_perfil'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_diff_pfx02',15,1,'id_perfil,id_sistema'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_diff_pfx03',267,1,'id_perfil,id_sistema,id_recurso'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_diff_pfx04',267,1,'id_perfil,id_sistema,id_recurso,id_menu'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_diff_pfx05',267,1,'id_perfil,id_sistema,id_recurso,id_menu,id_item_menu'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_item_menu','fk_rel_per_ite_men_rel_per_rec','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_diff_pfx01',201,1,'id_item_menu'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_diff_pfx02',201,1,'id_item_menu,id_menu'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_diff_pfx03',267,1,'id_item_menu,id_menu,id_perfil'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_diff_pfx04',267,1,'id_item_menu,id_menu,id_perfil,id_sistema'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_diff_pfx05',267,1,'id_item_menu,id_menu,id_perfil,id_sistema,id_recurso'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_item_menu','fk_rel_perfil_item_menu_it_men','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_diff_pfx01',15,1,'id_perfil'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_diff_pfx02',15,1,'id_perfil,id_sistema'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_diff_pfx03',15,1,'id_perfil,id_sistema,id_menu'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_diff_pfx04',267,1,'id_perfil,id_sistema,id_menu,id_item_menu'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_diff_pfx05',267,1,'id_perfil,id_sistema,id_menu,id_item_menu,id_recurso'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_item_menu','i01_rel_perfil_item_menu','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','rel_perfil_recurso','PRIMARY','2024-05-10 02:28:35','n_diff_pfx01',15,6,'id_perfil'),('sip','rel_perfil_recurso','PRIMARY','2024-05-10 02:28:35','n_diff_pfx02',15,6,'id_perfil,id_sistema'),('sip','rel_perfil_recurso','PRIMARY','2024-05-10 02:28:35','n_diff_pfx03',2276,6,'id_perfil,id_sistema,id_recurso'),('sip','rel_perfil_recurso','PRIMARY','2024-05-10 02:28:35','n_leaf_pages',6,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_recurso','PRIMARY','2024-05-10 02:28:35','size',7,NULL,'Number of pages in the index'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_perfil','2024-05-10 02:28:35','n_diff_pfx01',15,3,'id_perfil'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_perfil','2024-05-10 02:28:35','n_diff_pfx02',15,3,'id_perfil,id_sistema'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_perfil','2024-05-10 02:28:35','n_diff_pfx03',2276,3,'id_perfil,id_sistema,id_recurso'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_perfil','2024-05-10 02:28:35','n_leaf_pages',3,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_perfil','2024-05-10 02:28:35','size',4,NULL,'Number of pages in the index'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_recurso','2024-05-10 02:28:35','n_diff_pfx01',2,4,'id_sistema'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_recurso','2024-05-10 02:28:35','n_diff_pfx02',1348,4,'id_sistema,id_recurso'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_recurso','2024-05-10 02:28:35','n_diff_pfx03',2276,4,'id_sistema,id_recurso,id_perfil'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_recurso','2024-05-10 02:28:35','n_leaf_pages',4,NULL,'Number of leaf pages in the index'),('sip','rel_perfil_recurso','fk_rel_perfil_recurso_recurso','2024-05-10 02:28:35','size',5,NULL,'Number of pages in the index'),('sip','rel_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:45','n_diff_pfx01',2,1,'id_sistema'),('sip','rel_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:45','n_diff_pfx02',439,1,'id_sistema,id_recurso'),('sip','rel_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:45','n_diff_pfx03',439,1,'id_sistema,id_recurso,id_regra_auditoria'),('sip','rel_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_regra_auditoria_recurso','PRIMARY','2024-05-10 02:28:45','size',1,NULL,'Number of pages in the index'),('sip','rel_regra_auditoria_recurso','fk_auditoria_recurso_recurso','2024-05-10 02:28:45','n_diff_pfx01',439,1,'id_recurso'),('sip','rel_regra_auditoria_recurso','fk_auditoria_recurso_recurso','2024-05-10 02:28:45','n_diff_pfx02',439,1,'id_recurso,id_sistema'),('sip','rel_regra_auditoria_recurso','fk_auditoria_recurso_recurso','2024-05-10 02:28:45','n_diff_pfx03',439,1,'id_recurso,id_sistema,id_regra_auditoria'),('sip','rel_regra_auditoria_recurso','fk_auditoria_recurso_recurso','2024-05-10 02:28:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_regra_auditoria_recurso','fk_auditoria_recurso_recurso','2024-05-10 02:28:45','size',1,NULL,'Number of pages in the index'),('sip','rel_regra_auditoria_recurso','fk_rel_auditoria_recurso_audit','2024-05-10 02:28:45','n_diff_pfx01',5,1,'id_regra_auditoria'),('sip','rel_regra_auditoria_recurso','fk_rel_auditoria_recurso_audit','2024-05-10 02:28:45','n_diff_pfx02',5,1,'id_regra_auditoria,id_sistema'),('sip','rel_regra_auditoria_recurso','fk_rel_auditoria_recurso_audit','2024-05-10 02:28:45','n_diff_pfx03',439,1,'id_regra_auditoria,id_sistema,id_recurso'),('sip','rel_regra_auditoria_recurso','fk_rel_auditoria_recurso_audit','2024-05-10 02:28:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','rel_regra_auditoria_recurso','fk_rel_auditoria_recurso_audit','2024-05-10 02:28:45','size',1,NULL,'Number of pages in the index'),('sip','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:55','n_diff_pfx01',255,1,'id'),('sip','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:55','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','seq_infra_auditoria','PRIMARY','2024-05-10 02:28:55','size',1,NULL,'Number of pages in the index'),('sip','seq_infra_log','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id'),('sip','seq_infra_log','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','seq_infra_log','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','seq_usuario_historico','PRIMARY','2024-05-10 02:28:24','n_diff_pfx01',0,1,'id'),('sip','seq_usuario_historico','PRIMARY','2024-05-10 02:28:24','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','seq_usuario_historico','PRIMARY','2024-05-10 02:28:24','size',1,NULL,'Number of pages in the index'),('sip','servidor_autenticacao','PRIMARY','2024-05-10 02:29:05','n_diff_pfx01',2,1,'id_servidor_autenticacao'),('sip','servidor_autenticacao','PRIMARY','2024-05-10 02:29:05','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','servidor_autenticacao','PRIMARY','2024-05-10 02:29:05','size',1,NULL,'Number of pages in the index'),('sip','sistema','PRIMARY','2024-05-10 02:29:15','n_diff_pfx01',2,1,'id_sistema'),('sip','sistema','PRIMARY','2024-05-10 02:29:15','n_leaf_pages',2,NULL,'Number of leaf pages in the index'),('sip','sistema','PRIMARY','2024-05-10 02:29:15','size',3,NULL,'Number of pages in the index'),('sip','sistema','ak_sistema_sigla_orgao','2024-05-10 02:29:15','n_diff_pfx01',2,1,'sigla'),('sip','sistema','ak_sistema_sigla_orgao','2024-05-10 02:29:15','n_diff_pfx02',2,1,'sigla,id_orgao'),('sip','sistema','ak_sistema_sigla_orgao','2024-05-10 02:29:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','sistema','ak_sistema_sigla_orgao','2024-05-10 02:29:15','size',1,NULL,'Number of pages in the index'),('sip','sistema','fk_sistema_hierarquia','2024-05-10 02:29:15','n_diff_pfx01',1,1,'id_hierarquia'),('sip','sistema','fk_sistema_hierarquia','2024-05-10 02:29:15','n_diff_pfx02',2,1,'id_hierarquia,id_sistema'),('sip','sistema','fk_sistema_hierarquia','2024-05-10 02:29:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','sistema','fk_sistema_hierarquia','2024-05-10 02:29:15','size',1,NULL,'Number of pages in the index'),('sip','sistema','fk_sistema_orgao','2024-05-10 02:29:15','n_diff_pfx01',1,1,'id_orgao'),('sip','sistema','fk_sistema_orgao','2024-05-10 02:29:15','n_diff_pfx02',2,1,'id_orgao,id_sistema'),('sip','sistema','fk_sistema_orgao','2024-05-10 02:29:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','sistema','fk_sistema_orgao','2024-05-10 02:29:15','size',1,NULL,'Number of pages in the index'),('sip','sistema','i03_sistema','2024-05-10 02:29:15','n_diff_pfx01',2,1,'id_sistema'),('sip','sistema','i03_sistema','2024-05-10 02:29:15','n_diff_pfx02',2,1,'id_sistema,sin_ativo'),('sip','sistema','i03_sistema','2024-05-10 02:29:15','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','sistema','i03_sistema','2024-05-10 02:29:15','size',1,NULL,'Number of pages in the index'),('sip','tipo_permissao','PRIMARY','2024-05-10 02:29:25','n_diff_pfx01',3,1,'id_tipo_permissao'),('sip','tipo_permissao','PRIMARY','2024-05-10 02:29:25','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','tipo_permissao','PRIMARY','2024-05-10 02:29:25','size',1,NULL,'Number of pages in the index'),('sip','unidade','PRIMARY','2024-05-10 02:29:35','n_diff_pfx01',44,1,'id_unidade'),('sip','unidade','PRIMARY','2024-05-10 02:29:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','unidade','PRIMARY','2024-05-10 02:29:35','size',1,NULL,'Number of pages in the index'),('sip','unidade','ak_unidade_sigla_orgao','2024-05-10 02:29:35','n_diff_pfx01',44,1,'sigla'),('sip','unidade','ak_unidade_sigla_orgao','2024-05-10 02:29:35','n_diff_pfx02',44,1,'sigla,id_orgao'),('sip','unidade','ak_unidade_sigla_orgao','2024-05-10 02:29:35','n_diff_pfx03',44,1,'sigla,id_orgao,sin_ativo'),('sip','unidade','ak_unidade_sigla_orgao','2024-05-10 02:29:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','unidade','ak_unidade_sigla_orgao','2024-05-10 02:29:35','size',1,NULL,'Number of pages in the index'),('sip','unidade','fk_unidade_orgao','2024-05-10 02:29:35','n_diff_pfx01',1,1,'id_orgao'),('sip','unidade','fk_unidade_orgao','2024-05-10 02:29:35','n_diff_pfx02',44,1,'id_orgao,id_unidade'),('sip','unidade','fk_unidade_orgao','2024-05-10 02:29:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','unidade','fk_unidade_orgao','2024-05-10 02:29:35','size',1,NULL,'Number of pages in the index'),('sip','unidade','i02_unidade','2024-05-10 02:29:35','n_diff_pfx01',44,1,'id_unidade'),('sip','unidade','i02_unidade','2024-05-10 02:29:35','n_diff_pfx02',44,1,'id_unidade,sin_ativo'),('sip','unidade','i02_unidade','2024-05-10 02:29:35','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','unidade','i02_unidade','2024-05-10 02:29:35','size',1,NULL,'Number of pages in the index'),('sip','usuario','PRIMARY','2024-05-10 02:29:45','n_diff_pfx01',54,1,'id_usuario'),('sip','usuario','PRIMARY','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','PRIMARY','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','ak_usuario_sigla_orgao','2024-05-10 02:29:45','n_diff_pfx01',54,1,'sigla'),('sip','usuario','ak_usuario_sigla_orgao','2024-05-10 02:29:45','n_diff_pfx02',54,1,'sigla,id_orgao'),('sip','usuario','ak_usuario_sigla_orgao','2024-05-10 02:29:45','n_diff_pfx03',54,1,'sigla,id_orgao,sin_ativo'),('sip','usuario','ak_usuario_sigla_orgao','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','ak_usuario_sigla_orgao','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','fk_usuario_orgao','2024-05-10 02:29:45','n_diff_pfx01',1,1,'id_orgao'),('sip','usuario','fk_usuario_orgao','2024-05-10 02:29:45','n_diff_pfx02',54,1,'id_orgao,id_usuario'),('sip','usuario','fk_usuario_orgao','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','fk_usuario_orgao','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','i02_usuario','2024-05-10 02:29:45','n_diff_pfx01',54,1,'id_usuario'),('sip','usuario','i02_usuario','2024-05-10 02:29:45','n_diff_pfx02',54,1,'id_usuario,sin_ativo'),('sip','usuario','i02_usuario','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','i02_usuario','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','i03_usuario','2024-05-10 02:29:45','n_diff_pfx01',1,1,'id_origem'),('sip','usuario','i03_usuario','2024-05-10 02:29:45','n_diff_pfx02',54,1,'id_origem,id_usuario'),('sip','usuario','i03_usuario','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','i03_usuario','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','i04_usuario','2024-05-10 02:29:45','n_diff_pfx01',1,1,'cpf'),('sip','usuario','i04_usuario','2024-05-10 02:29:45','n_diff_pfx02',54,1,'cpf,id_usuario'),('sip','usuario','i04_usuario','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','i04_usuario','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','i05_usuario','2024-05-10 02:29:45','n_diff_pfx01',54,1,'id_usuario'),('sip','usuario','i05_usuario','2024-05-10 02:29:45','n_diff_pfx02',54,1,'id_usuario,id_orgao'),('sip','usuario','i05_usuario','2024-05-10 02:29:45','n_diff_pfx03',54,1,'id_usuario,id_orgao,id_origem'),('sip','usuario','i05_usuario','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','i05_usuario','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario','i06_usuario','2024-05-10 02:29:45','n_diff_pfx01',54,1,'id_usuario'),('sip','usuario','i06_usuario','2024-05-10 02:29:45','n_diff_pfx02',54,1,'id_usuario,id_orgao'),('sip','usuario','i06_usuario','2024-05-10 02:29:45','n_diff_pfx03',54,1,'id_usuario,id_orgao,cpf'),('sip','usuario','i06_usuario','2024-05-10 02:29:45','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario','i06_usuario','2024-05-10 02:29:45','size',1,NULL,'Number of pages in the index'),('sip','usuario_historico','PRIMARY','2024-05-10 02:28:25','n_diff_pfx01',0,1,'id_usuario_historico'),('sip','usuario_historico','PRIMARY','2024-05-10 02:28:25','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario_historico','PRIMARY','2024-05-10 02:28:25','size',1,NULL,'Number of pages in the index'),('sip','usuario_historico','fk_usuario_historico_cod_acess','2024-05-10 02:28:25','n_diff_pfx01',0,1,'id_codigo_acesso'),('sip','usuario_historico','fk_usuario_historico_cod_acess','2024-05-10 02:28:25','n_diff_pfx02',0,1,'id_codigo_acesso,id_usuario_historico'),('sip','usuario_historico','fk_usuario_historico_cod_acess','2024-05-10 02:28:25','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario_historico','fk_usuario_historico_cod_acess','2024-05-10 02:28:25','size',1,NULL,'Number of pages in the index'),('sip','usuario_historico','fk_usuario_historico_usu_oper','2024-05-10 02:28:25','n_diff_pfx01',0,1,'id_usuario_operacao'),('sip','usuario_historico','fk_usuario_historico_usu_oper','2024-05-10 02:28:25','n_diff_pfx02',0,1,'id_usuario_operacao,id_usuario_historico'),('sip','usuario_historico','fk_usuario_historico_usu_oper','2024-05-10 02:28:25','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario_historico','fk_usuario_historico_usu_oper','2024-05-10 02:28:25','size',1,NULL,'Number of pages in the index'),('sip','usuario_historico','fk_usuario_historico_usuario','2024-05-10 02:28:25','n_diff_pfx01',0,1,'id_usuario'),('sip','usuario_historico','fk_usuario_historico_usuario','2024-05-10 02:28:25','n_diff_pfx02',0,1,'id_usuario,id_usuario_historico'),('sip','usuario_historico','fk_usuario_historico_usuario','2024-05-10 02:28:25','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sip','usuario_historico','fk_usuario_historico_usuario','2024-05-10 02:28:25','size',1,NULL,'Number of pages in the index'),('sys','sys_config','PRIMARY','2021-04-16 23:37:20','n_diff_pfx01',6,1,'variable'),('sys','sys_config','PRIMARY','2021-04-16 23:37:20','n_leaf_pages',1,NULL,'Number of leaf pages in the index'),('sys','sys_config','PRIMARY','2021-04-16 23:37:20','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(199) 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 ('mysql','gtid_executed','2021-04-16 23:37:19',0,1,0),('sei','acao_federacao','2024-05-10 02:28:08',0,1,0),('sei','acesso','2024-05-10 02:28:08',0,1,7),('sei','acesso_externo','2024-05-10 02:28:09',0,1,5),('sei','acesso_federacao','2024-05-10 02:28:09',0,1,13),('sei','acompanhamento','2024-05-10 02:28:09',0,1,4),('sei','andamento_instalacao','2024-05-10 02:28:09',0,1,4),('sei','andamento_marcador','2024-05-10 02:28:09',0,1,6),('sei','andamento_situacao','2024-05-10 02:28:09',0,1,5),('sei','anexo','2024-05-10 02:28:09',0,1,7),('sei','anotacao','2024-05-10 02:28:09',0,1,4),('sei','arquivamento','2024-05-10 02:28:09',0,1,7),('sei','arquivo_extensao','2024-05-10 02:28:21',41,1,0),('sei','assinante','2024-05-10 02:28:09',21,1,1),('sei','assinatura','2024-05-10 02:28:09',0,1,8),('sei','assunto','2024-05-10 02:28:10',700,18,4),('sei','assunto_proxy','2024-05-10 02:28:10',415,1,1),('sei','atividade','2024-05-10 02:28:10',0,1,19),('sei','atributo','2024-05-10 02:28:10',0,1,1),('sei','atributo_andamento','2024-05-10 02:28:10',0,1,4),('sei','atributo_instalacao','2024-05-10 02:28:10',0,1,1),('sei','auditoria_protocolo','2024-05-10 02:28:10',0,1,1),('sei','base_conhecimento','2024-05-10 02:28:10',0,1,6),('sei','bloco','2024-05-10 02:28:10',0,1,5),('sei','campo_pesquisa','2024-05-10 02:28:10',0,1,1),('sei','cargo','2024-05-10 02:28:11',81,1,4),('sei','cargo_funcao','2024-05-10 02:28:10',0,1,1),('sei','categoria','2024-05-10 02:28:10',0,1,0),('sei','cidade','2024-05-10 02:28:11',5746,24,39),('sei','comentario','2024-05-10 02:28:10',0,1,5),('sei','conjunto_estilos','2024-05-10 02:28:11',66,1,0),('sei','conjunto_estilos_item','2024-05-10 02:28:11',1636,22,3),('sei','contato','2024-05-10 02:28:11',101,1,12),('sei','controle_interno','2024-05-10 02:28:11',0,1,0),('sei','controle_prazo','2024-05-10 02:28:11',0,1,6),('sei','controle_unidade','2024-05-10 02:28:11',0,1,0),('sei','documento','2024-05-10 02:28:11',0,1,12),('sei','documento_conteudo','2024-05-10 02:28:11',0,1,0),('sei','dominio','2024-05-10 02:28:11',0,1,1),('sei','email_grupo_email','2024-05-10 02:28:11',0,1,1),('sei','email_sistema','2024-05-10 02:28:12',10,1,1),('sei','email_unidade','2024-05-10 02:28:12',3,1,1),('sei','email_utilizado','2024-05-10 02:28:11',0,1,1),('sei','estatisticas','2024-05-10 02:28:11',0,1,1),('sei','estilo','2024-05-10 02:28:12',39,1,0),('sei','feed','2024-05-10 02:28:11',0,1,0),('sei','feriado','2024-05-10 02:28:12',12,1,1),('sei','grupo_acompanhamento','2024-05-10 02:28:11',0,1,1),('sei','grupo_bloco','2024-05-10 02:28:11',0,1,1),('sei','grupo_contato','2024-05-10 02:28:11',0,1,1),('sei','grupo_email','2024-05-10 02:28:12',0,1,1),('sei','grupo_federacao','2024-05-10 02:28:12',0,1,1),('sei','grupo_protocolo_modelo','2024-05-10 02:28:12',0,1,1),('sei','grupo_serie','2024-05-10 02:28:12',2,1,0),('sei','grupo_unidade','2024-05-10 02:28:12',0,1,1),('sei','hipotese_legal','2024-05-10 02:28:12',18,1,0),('sei','imagem_formato','2024-05-10 02:28:12',3,1,0),('sei','infra_agendamento_tarefa','2024-05-10 02:28:12',9,1,0),('sei','infra_auditoria','2024-05-10 02:28:13',250,13,5),('sei','infra_dado_usuario','2024-05-10 02:28:12',0,1,0),('sei','infra_log','2024-05-10 02:28:12',0,1,1),('sei','infra_navegador','2024-05-10 02:28:13',2,1,1),('sei','infra_parametro','2024-05-10 02:28:13',52,1,0),('sei','infra_regra_auditoria','2024-05-10 02:28:14',4,1,0),('sei','infra_regra_auditoria_recurso','2024-05-10 02:28:15',321,1,1),('sei','infra_sequencia','2024-05-10 02:28:15',3,1,1),('sei','instalacao_federacao','2024-05-10 02:28:12',0,1,1),('sei','lembrete','2024-05-10 02:28:12',0,1,1),('sei','localizador','2024-05-10 02:28:12',0,1,5),('sei','lugar_localizador','2024-05-10 02:28:13',0,1,2),('sei','mapeamento_assunto','2024-05-10 02:28:13',0,1,2),('sei','marcador','2024-05-10 02:28:13',0,1,1),('sei','md_wssei_notificacao_ativ','2024-05-10 02:28:13',0,1,3),('sei','modelo','2024-05-10 02:28:16',69,1,0),('sei','monitoramento_servico','2024-05-10 02:28:13',0,1,3),('sei','nivel_acesso_permitido','2024-05-10 02:28:16',790,3,1),('sei','notificacao','2024-05-10 02:28:13',0,1,4),('sei','novidade','2024-05-10 02:28:13',0,1,1),('sei','numeracao','2024-05-10 02:28:13',0,1,4),('sei','observacao','2024-05-10 02:28:13',0,1,3),('sei','operacao_servico','2024-05-10 02:28:13',0,1,4),('sei','ordenador_despesa','2024-05-10 02:28:13',0,1,3),('sei','orgao','2024-05-10 02:28:13',0,1,3),('sei','orgao_federacao','2024-05-10 02:28:13',0,1,1),('sei','orgao_historico','2024-05-10 02:28:13',0,1,2),('sei','pais','2024-05-10 02:28:16',204,1,0),('sei','parametro_acao_federacao','2024-05-10 02:28:13',0,1,1),('sei','participante','2024-05-10 02:28:13',0,1,5),('sei','pesquisa','2024-05-10 02:28:13',0,1,2),('sei','procedimento','2024-05-10 02:28:13',0,1,1),('sei','protocolo','2024-05-10 02:28:14',0,1,19),('sei','protocolo_federacao','2024-05-10 02:28:14',0,1,4),('sei','protocolo_modelo','2024-05-10 02:28:14',0,1,4),('sei','publicacao','2024-05-10 02:28:14',0,1,9),('sei','publicacao_legado','2024-05-10 02:28:14',0,1,8),('sei','rel_acesso_ext_protocolo','2024-05-10 02:28:14',0,1,2),('sei','rel_acesso_ext_serie','2024-05-10 02:28:14',0,1,2),('sei','rel_assinante_unidade','2024-05-10 02:28:16',63,1,2),('sei','rel_base_conhec_tipo_proced','2024-05-10 02:28:14',0,1,2),('sei','rel_bloco_protocolo','2024-05-10 02:28:14',0,1,2),('sei','rel_bloco_unidade','2024-05-10 02:28:14',0,1,12),('sei','rel_controle_interno_orgao','2024-05-10 02:28:14',0,1,2),('sei','rel_controle_interno_serie','2024-05-10 02:28:14',0,1,2),('sei','rel_controle_interno_tipo_proc','2024-05-10 02:28:14',0,1,2),('sei','rel_controle_interno_unidade','2024-05-10 02:28:14',0,1,2),('sei','rel_grupo_contato','2024-05-10 02:28:14',0,1,2),('sei','rel_grupo_fed_orgao_fed','2024-05-10 02:28:14',0,1,2),('sei','rel_grupo_unidade_unidade','2024-05-10 02:28:14',0,1,2),('sei','rel_notificacao_documento','2024-05-10 02:28:15',0,1,3),('sei','rel_protocolo_assunto','2024-05-10 02:28:15',0,1,3),('sei','rel_protocolo_atributo','2024-05-10 02:28:15',0,1,2),('sei','rel_protocolo_protocolo','2024-05-10 02:28:15',0,1,5),('sei','rel_secao_mod_cj_estilos_item','2024-05-10 02:28:20',40361,97,194),('sei','rel_secao_modelo_estilo','2024-05-10 02:28:21',2151,6,7),('sei','rel_serie_assunto','2024-05-10 02:28:15',0,1,2),('sei','rel_serie_veiculo_publicacao','2024-05-10 02:28:21',23,1,2),('sei','rel_situacao_unidade','2024-05-10 02:28:16',0,1,2),('sei','rel_tipo_procedimento_assunto','2024-05-10 02:28:21',324,1,2),('sei','rel_unidade_tipo_contato','2024-05-10 02:28:21',8,1,3),('sei','rel_usuario_grupo_acomp','2024-05-10 02:28:16',0,1,2),('sei','rel_usuario_grupo_bloco','2024-05-10 02:28:16',0,1,2),('sei','rel_usuario_marcador','2024-05-10 02:28:16',0,1,2),('sei','rel_usuario_tipo_proced','2024-05-10 02:28:16',0,1,3),('sei','rel_usuario_usuario_unidade','2024-05-10 02:28:16',0,1,3),('sei','replicacao_federacao','2024-05-10 02:28:16',0,1,2),('sei','retorno_programado','2024-05-10 02:28:16',0,1,11),('sei','secao_documento','2024-05-10 02:28:16',0,1,4),('sei','secao_imprensa_nacional','2024-05-10 02:28:21',3,1,1),('sei','secao_modelo','2024-05-10 02:28:21',403,97,2),('sei','seq_acesso','2024-05-10 02:28:16',0,1,0),('sei','seq_acesso_externo','2024-05-10 02:28:16',0,1,0),('sei','seq_acompanhamento','2024-05-10 02:28:16',0,1,0),('sei','seq_andamento_instalacao','2024-05-10 02:28:17',0,1,0),('sei','seq_andamento_marcador','2024-05-10 02:28:17',0,1,0),('sei','seq_andamento_situacao','2024-05-10 02:28:17',0,1,0),('sei','seq_anexo','2024-05-10 02:28:17',0,1,0),('sei','seq_anotacao','2024-05-10 02:28:17',0,1,0),('sei','seq_arquivo_extensao','2024-05-10 02:28:17',0,1,0),('sei','seq_assinante','2024-05-10 02:28:17',0,1,0),('sei','seq_assinatura','2024-05-10 02:28:17',0,1,0),('sei','seq_assunto','2024-05-10 02:28:17',0,1,0),('sei','seq_assunto_proxy','2024-05-10 02:28:17',0,1,0),('sei','seq_atividade','2024-05-10 02:28:17',0,1,0),('sei','seq_atributo','2024-05-10 02:28:17',0,1,0),('sei','seq_atributo_andamento','2024-05-10 02:28:17',0,1,0),('sei','seq_atributo_andamento_situaca','2024-05-10 02:28:17',0,1,0),('sei','seq_atributo_instalacao','2024-05-10 02:28:17',0,1,0),('sei','seq_auditoria_protocolo','2024-05-10 02:28:17',0,1,0),('sei','seq_base_conhecimento','2024-05-10 02:28:17',0,1,0),('sei','seq_bloco','2024-05-10 02:28:17',0,1,0),('sei','seq_campo_pesquisa','2024-05-10 02:28:17',0,1,0),('sei','seq_cargo','2024-05-10 02:28:17',0,1,0),('sei','seq_categoria','2024-05-10 02:28:17',0,1,0),('sei','seq_cidade','2024-05-10 02:28:17',0,1,0),('sei','seq_comentario','2024-05-10 02:28:17',0,1,0),('sei','seq_conjunto_estilos','2024-05-10 02:28:17',0,1,0),('sei','seq_conjunto_estilos_item','2024-05-10 02:28:17',0,1,0),('sei','seq_contato','2024-05-10 02:28:17',0,1,0),('sei','seq_controle_interno','2024-05-10 02:28:17',0,1,0),('sei','seq_controle_prazo','2024-05-10 02:28:17',0,1,0),('sei','seq_controle_unidade','2024-05-10 02:28:18',0,1,0),('sei','seq_documento','2024-05-10 02:28:18',0,1,0),('sei','seq_dominio','2024-05-10 02:28:18',0,1,0),('sei','seq_email_grupo_email','2024-05-10 02:28:18',0,1,0),('sei','seq_email_sistema','2024-05-10 02:28:18',0,1,0),('sei','seq_email_unidade','2024-05-10 02:28:18',0,1,0),('sei','seq_email_utilizado','2024-05-10 02:28:18',0,1,0),('sei','seq_estatisticas','2024-05-10 02:28:18',0,1,0),('sei','seq_estilo','2024-05-10 02:28:18',0,1,0),('sei','seq_feed','2024-05-10 02:28:18',0,1,0),('sei','seq_feriado','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_acompanhamento','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_bloco','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_contato','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_email','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_federacao','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_protocolo_modelo','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_serie','2024-05-10 02:28:18',0,1,0),('sei','seq_grupo_unidade','2024-05-10 02:28:18',0,1,0),('sei','seq_hipotese_legal','2024-05-10 02:28:18',0,1,0),('sei','seq_imagem_formato','2024-05-10 02:28:18',0,1,0),('sei','seq_infra_auditoria','2024-05-10 02:28:18',0,1,0),('sei','seq_infra_log','2024-05-10 02:28:18',0,1,0),('sei','seq_infra_navegador','2024-05-10 02:28:18',0,1,0),('sei','seq_lembrete','2024-05-10 02:28:18',0,1,0),('sei','seq_localizador','2024-05-10 02:28:18',0,1,0),('sei','seq_lugar_localizador','2024-05-10 02:28:19',0,1,0),('sei','seq_marcador','2024-05-10 02:28:19',0,1,0),('sei','seq_md_wssei_notificacao_ativ','2024-05-10 02:28:19',0,1,0),('sei','seq_modelo','2024-05-10 02:28:19',0,1,0),('sei','seq_monitoramento_servico','2024-05-10 02:28:19',0,1,0),('sei','seq_nivel_acesso_permitido','2024-05-10 02:28:19',0,1,0),('sei','seq_novidade','2024-05-10 02:28:19',0,1,0),('sei','seq_numeracao','2024-05-10 02:28:19',0,1,0),('sei','seq_observacao','2024-05-10 02:28:19',0,1,0),('sei','seq_operacao_servico','2024-05-10 02:28:19',0,1,0),('sei','seq_ordenador_despesa','2024-05-10 02:28:19',0,1,0),('sei','seq_orgao_historico','2024-05-10 02:28:19',0,1,0),('sei','seq_pais','2024-05-10 02:28:19',0,1,0),('sei','seq_participante','2024-05-10 02:28:19',0,1,0),('sei','seq_pesquisa','2024-05-10 02:28:19',0,1,0),('sei','seq_protocolo','2024-05-10 02:28:19',0,1,0),('sei','seq_protocolo_modelo','2024-05-10 02:28:19',0,1,0),('sei','seq_publicacao','2024-05-10 02:28:19',0,1,0),('sei','seq_rel_protocolo_protocolo','2024-05-10 02:28:19',0,1,0),('sei','seq_rel_unidade_tipo_contato','2024-05-10 02:28:19',0,1,0),('sei','seq_retorno_programado','2024-05-10 02:28:19',0,1,0),('sei','seq_secao_documento','2024-05-10 02:28:19',0,1,0),('sei','seq_secao_imprensa_nacional','2024-05-10 02:28:19',0,1,0),('sei','seq_secao_modelo','2024-05-10 02:28:19',0,1,0),('sei','seq_serie','2024-05-10 02:28:19',0,1,0),('sei','seq_serie_publicacao','2024-05-10 02:28:20',0,1,0),('sei','seq_serie_restricao','2024-05-10 02:28:20',0,1,0),('sei','seq_servico','2024-05-10 02:28:20',0,1,0),('sei','seq_situacao','2024-05-10 02:28:20',0,1,0),('sei','seq_tabela_assuntos','2024-05-10 02:28:20',0,1,0),('sei','seq_tarefa','2024-05-10 02:28:20',0,1,0),('sei','seq_tarja_assinatura','2024-05-10 02:28:20',0,1,0),('sei','seq_texto_padrao_interno','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_conferencia','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_contato','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_formulario','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_localizador','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_proced_restricao','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_procedimento','2024-05-10 02:28:20',0,1,0),('sei','seq_tipo_suporte','2024-05-10 02:28:20',0,1,0),('sei','seq_titulo','2024-05-10 02:28:20',0,1,0),('sei','seq_tratamento','2024-05-10 02:28:20',0,1,0),('sei','seq_uf','2024-05-10 02:28:20',0,1,0),('sei','seq_unidade_historico','2024-05-10 02:28:21',43,1,0),('sei','seq_unidade_publicacao','2024-05-10 02:28:20',0,1,0),('sei','seq_upload','2024-05-10 02:28:20',0,1,0),('sei','seq_veiculo_imprensa_nacional','2024-05-10 02:28:20',0,1,0),('sei','seq_veiculo_publicacao','2024-05-10 02:28:20',0,1,0),('sei','seq_versao_secao_documento','2024-05-10 02:28:20',0,1,0),('sei','seq_vocativo','2024-05-10 02:28:20',0,1,0),('sei','serie','2024-05-10 02:28:22',254,4,5),('sei','serie_escolha','2024-05-10 02:28:21',0,1,2),('sei','serie_publicacao','2024-05-10 02:28:21',0,1,2),('sei','serie_restricao','2024-05-10 02:28:21',0,1,3),('sei','servico','2024-05-10 02:28:21',0,1,2),('sei','sinalizacao_federacao','2024-05-10 02:28:21',0,1,4),('sei','situacao','2024-05-10 02:28:21',0,1,0),('sei','tabela_assuntos','2024-05-10 02:28:21',0,1,0),('sei','tarefa','2024-05-10 02:28:22',113,1,1),('sei','tarefa_instalacao','2024-05-10 02:28:22',11,1,0),('sei','tarja_assinatura','2024-05-10 02:28:22',5,5,0),('sei','texto_padrao_interno','2024-05-10 02:28:21',0,1,2),('sei','tipo_conferencia','2024-05-10 02:28:22',4,1,0),('sei','tipo_contato','2024-05-10 02:28:22',8,1,0),('sei','tipo_formulario','2024-05-10 02:28:21',0,1,0),('sei','tipo_localizador','2024-05-10 02:28:21',0,1,3),('sei','tipo_proced_restricao','2024-05-10 02:28:21',0,1,3),('sei','tipo_procedimento','2024-05-10 02:28:22',395,4,3),('sei','tipo_procedimento_escolha','2024-05-10 02:28:21',0,1,2),('sei','tipo_suporte','2024-05-10 02:28:23',8,1,1),('sei','titulo','2024-05-10 02:28:21',0,1,0),('sei','tratamento','2024-05-10 02:28:23',4,1,1),('sei','uf','2024-05-10 02:28:23',27,1,1),('sei','unidade','2024-05-10 02:28:23',43,1,5),('sei','unidade_federacao','2024-05-10 02:28:22',0,1,1),('sei','unidade_historico','2024-05-10 02:28:23',43,1,3),('sei','unidade_publicacao','2024-05-10 02:28:22',0,1,1),('sei','usuario','2024-05-10 02:28:23',57,1,5),('sei','usuario_federacao','2024-05-10 02:28:22',0,1,1),('sei','veiculo_imprensa_nacional','2024-05-10 02:28:22',0,1,0),('sei','veiculo_publicacao','2024-05-10 02:28:22',0,1,0),('sei','velocidade_transferencia','2024-05-10 02:28:22',0,1,1),('sei','versao_secao_documento','2024-05-10 02:28:22',0,1,4),('sei','vocativo','2024-05-10 02:28:23',63,1,1),('sip','administrador_sistema','2024-05-10 02:28:23',2,1,2),('sip','codigo_acesso','2024-05-10 02:28:22',0,1,4),('sip','codigo_bloqueio','2024-05-10 02:28:22',0,1,2),('sip','coordenador_perfil','2024-05-10 02:28:22',0,1,2),('sip','coordenador_unidade','2024-05-10 02:28:22',0,1,3),('sip','dispositivo_acesso','2024-05-10 02:28:22',0,1,3),('sip','dtproperties','2024-05-10 02:28:22',0,1,0),('sip','email_sistema','2024-05-10 02:28:23',4,1,0),('sip','hierarquia','2024-05-10 02:28:23',0,1,1),('sip','infra_agendamento_tarefa','2024-05-10 02:28:23',5,1,0),('sip','infra_auditoria','2024-05-10 02:28:23',515,24,6),('sip','infra_log','2024-05-10 02:28:23',2,1,1),('sip','infra_parametro','2024-05-10 02:28:23',20,1,0),('sip','infra_regra_auditoria','2024-05-10 02:28:23',0,1,0),('sip','infra_regra_auditoria_recurso','2024-05-10 02:28:24',81,1,1),('sip','infra_sequencia','2024-05-10 02:28:24',15,1,0),('sip','item_menu','2024-05-10 02:28:24',260,3,5),('sip','login','2024-05-10 02:28:24',2,1,9),('sip','menu','2024-05-10 02:28:24',2,1,2),('sip','orgao','2024-05-10 02:28:23',0,1,2),('sip','perfil','2024-05-10 02:28:24',15,1,2),('sip','permissao','2024-05-10 02:28:24',61,1,4),('sip','recurso','2024-05-10 02:28:24',1362,11,19),('sip','recurso_vinculado','2024-05-10 02:28:24',0,1,2),('sip','regra_auditoria','2024-05-10 02:28:24',5,1,1),('sip','rel_hierarquia_unidade','2024-05-10 02:28:24',43,1,4),('sip','rel_orgao_autenticacao','2024-05-10 02:28:24',0,1,2),('sip','rel_perfil_item_menu','2024-05-10 02:28:24',267,1,3),('sip','rel_perfil_recurso','2024-05-10 02:28:35',2276,7,9),('sip','rel_regra_auditoria_recurso','2024-05-10 02:28:45',439,1,2),('sip','seq_infra_auditoria','2024-05-10 02:28:55',255,1,0),('sip','seq_infra_log','2024-05-10 02:28:24',0,1,0),('sip','seq_usuario_historico','2024-05-10 02:28:24',0,1,0),('sip','servidor_autenticacao','2024-05-10 02:29:05',2,1,0),('sip','sistema','2024-05-10 02:29:15',2,3,4),('sip','tipo_permissao','2024-05-10 02:29:25',3,1,0),('sip','unidade','2024-05-10 02:29:35',44,1,3),('sip','usuario','2024-05-10 02:29:45',54,1,7),('sip','usuario_historico','2024-05-10 02:28:25',0,1,3),('sys','sys_config','2021-04-16 23:37:20',6,1,0); +/*!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, + `next_position` bigint(20) unsigned NOT NULL, + `next_file` varchar(255) 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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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(93) 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(32) 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(93) 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(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_user` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `With_grant` tinyint(1) NOT NULL DEFAULT '0', + `Grantor` char(93) 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,'boot@connecting host','0000-00-00 00:00:00'); +/*!40000 ALTER TABLE `proxies_priv` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `server_cost` +-- + +DROP TABLE IF EXISTS `server_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `server_cost` ( + `cost_name` varchar(64) NOT NULL, + `cost_value` float DEFAULT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `comment` varchar(1024) DEFAULT NULL, + PRIMARY KEY (`cost_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `server_cost` +-- + +LOCK TABLES `server_cost` WRITE; +/*!40000 ALTER TABLE `server_cost` DISABLE KEYS */; +INSERT INTO `server_cost` VALUES ('disk_temptable_create_cost',NULL,'2021-04-16 23:37:19',NULL),('disk_temptable_row_cost',NULL,'2021-04-16 23:37:19',NULL),('key_compare_cost',NULL,'2021-04-16 23:37:19',NULL),('memory_temptable_create_cost',NULL,'2021-04-16 23:37:19',NULL),('memory_temptable_row_cost',NULL,'2021-04-16 23:37:19',NULL),('row_evaluate_cost',NULL,'2021-04-16 23:37:19',NULL); +/*!40000 ALTER TABLE `server_cost` 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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `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 DEFAULT NULL 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.', + `Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication', + `Tls_version` text CHARACTER SET utf8 COLLATE utf8_bin COMMENT 'Tls version', + PRIMARY KEY (`Channel_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Master Information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `slave_relay_log_info` +-- + +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE IF NOT EXISTS `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.', + `Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication', + PRIMARY KEY (`Channel_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Relay Log Information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- 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, + `Channel_name` char(64) NOT NULL COMMENT 'The channel on which the slave is connected to a source. Used in Multisource Replication', + PRIMARY KEY (`Channel_name`,`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(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Grantor` char(93) 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 */; +INSERT INTO `tables_priv` VALUES ('localhost','mysql','mysql.session','user','boot@connecting host','0000-00-00 00:00:00','Select',''),('localhost','sys','mysql.sys','sys_config','root@localhost','2021-04-16 23:37:20','Select',''); +/*!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=InnoDB AUTO_INCREMENT=1827 DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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,'N'),(1187,'N'),(1188,'N'),(1189,'N'),(1190,'N'),(1191,'N'),(1192,'N'),(1193,'N'),(1194,'N'),(1195,'N'),(1196,'N'),(1197,'N'),(1198,'N'),(1199,'N'),(1200,'N'),(1201,'N'),(1202,'N'),(1203,'N'),(1204,'N'),(1205,'N'),(1206,'N'),(1207,'N'),(1208,'N'),(1209,'N'),(1210,'N'),(1211,'N'),(1212,'N'),(1213,'N'),(1214,'N'),(1215,'N'),(1216,'N'),(1217,'N'),(1218,'N'),(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'),(1778,'Y'),(1779,'Y'),(1780,'Y'),(1781,'Y'),(1782,'Y'),(1783,'Y'),(1784,'Y'),(1785,'Y'),(1786,'Y'),(1787,'Y'),(1788,'Y'),(1789,'Y'),(1790,'Y'),(1791,'Y'),(1792,'Y'),(1793,'Y'),(1794,'Y'),(1795,'Y'),(1796,'Y'),(1797,'Y'),(1798,'Y'),(1799,'Y'),(1800,'Y'),(1801,'Y'),(1802,'Y'),(1803,'Y'),(1804,'Y'),(1805,'Y'),(1806,'Y'),(1807,'Y'),(1808,'Y'),(1809,'Y'),(1810,'Y'),(1811,'Y'),(1812,'Y'),(1813,'Y'),(1814,'Y'),(1815,'Y'),(1816,'Y'),(1817,'Y'),(1818,'Y'),(1819,'Y'),(1820,'Y'),(1821,'Y'),(1822,'Y'),(1823,'Y'),(1824,'Y'),(1825,'Y'),(1826,'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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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/Fortaleza',114),('America/Fort_Nelson',112),('America/Fort_Wayne',113),('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/Nuuk',176),('America/Ojinaga',177),('America/Panama',178),('America/Pangnirtung',179),('America/Paramaribo',180),('America/Phoenix',181),('America/Port-au-Prince',182),('America/Porto_Acre',184),('America/Porto_Velho',185),('America/Port_of_Spain',183),('America/Puerto_Rico',186),('America/Punta_Arenas',187),('America/Rainy_River',188),('America/Rankin_Inlet',189),('America/Recife',190),('America/Regina',191),('America/Resolute',192),('America/Rio_Branco',193),('America/Rosario',194),('America/Santarem',196),('America/Santa_Isabel',195),('America/Santiago',197),('America/Santo_Domingo',198),('America/Sao_Paulo',199),('America/Scoresbysund',200),('America/Shiprock',201),('America/Sitka',202),('America/St_Barthelemy',203),('America/St_Johns',204),('America/St_Kitts',205),('America/St_Lucia',206),('America/St_Thomas',207),('America/St_Vincent',208),('America/Swift_Current',209),('America/Tegucigalpa',210),('America/Thule',211),('America/Thunder_Bay',212),('America/Tijuana',213),('America/Toronto',214),('America/Tortola',215),('America/Vancouver',216),('America/Virgin',217),('America/Whitehorse',218),('America/Winnipeg',219),('America/Yakutat',220),('America/Yellowknife',221),('Antarctica/Casey',222),('Antarctica/Davis',223),('Antarctica/DumontDUrville',224),('Antarctica/Macquarie',225),('Antarctica/Mawson',226),('Antarctica/McMurdo',227),('Antarctica/Palmer',228),('Antarctica/Rothera',229),('Antarctica/South_Pole',230),('Antarctica/Syowa',231),('Antarctica/Troll',232),('Antarctica/Vostok',233),('Arctic/Longyearbyen',234),('Asia/Aden',235),('Asia/Almaty',236),('Asia/Amman',237),('Asia/Anadyr',238),('Asia/Aqtau',239),('Asia/Aqtobe',240),('Asia/Ashgabat',241),('Asia/Ashkhabad',242),('Asia/Atyrau',243),('Asia/Baghdad',244),('Asia/Bahrain',245),('Asia/Baku',246),('Asia/Bangkok',247),('Asia/Barnaul',248),('Asia/Beirut',249),('Asia/Bishkek',250),('Asia/Brunei',251),('Asia/Calcutta',252),('Asia/Chita',253),('Asia/Choibalsan',254),('Asia/Chongqing',255),('Asia/Chungking',256),('Asia/Colombo',257),('Asia/Dacca',258),('Asia/Damascus',259),('Asia/Dhaka',260),('Asia/Dili',261),('Asia/Dubai',262),('Asia/Dushanbe',263),('Asia/Famagusta',264),('Asia/Gaza',265),('Asia/Harbin',266),('Asia/Hebron',267),('Asia/Hong_Kong',269),('Asia/Hovd',270),('Asia/Ho_Chi_Minh',268),('Asia/Irkutsk',271),('Asia/Istanbul',272),('Asia/Jakarta',273),('Asia/Jayapura',274),('Asia/Jerusalem',275),('Asia/Kabul',276),('Asia/Kamchatka',277),('Asia/Karachi',278),('Asia/Kashgar',279),('Asia/Kathmandu',280),('Asia/Katmandu',281),('Asia/Khandyga',282),('Asia/Kolkata',283),('Asia/Krasnoyarsk',284),('Asia/Kuala_Lumpur',285),('Asia/Kuching',286),('Asia/Kuwait',287),('Asia/Macao',288),('Asia/Macau',289),('Asia/Magadan',290),('Asia/Makassar',291),('Asia/Manila',292),('Asia/Muscat',293),('Asia/Nicosia',294),('Asia/Novokuznetsk',295),('Asia/Novosibirsk',296),('Asia/Omsk',297),('Asia/Oral',298),('Asia/Phnom_Penh',299),('Asia/Pontianak',300),('Asia/Pyongyang',301),('Asia/Qatar',302),('Asia/Qostanay',303),('Asia/Qyzylorda',304),('Asia/Rangoon',305),('Asia/Riyadh',306),('Asia/Saigon',307),('Asia/Sakhalin',308),('Asia/Samarkand',309),('Asia/Seoul',310),('Asia/Shanghai',311),('Asia/Singapore',312),('Asia/Srednekolymsk',313),('Asia/Taipei',314),('Asia/Tashkent',315),('Asia/Tbilisi',316),('Asia/Tehran',317),('Asia/Tel_Aviv',318),('Asia/Thimbu',319),('Asia/Thimphu',320),('Asia/Tokyo',321),('Asia/Tomsk',322),('Asia/Ujung_Pandang',323),('Asia/Ulaanbaatar',324),('Asia/Ulan_Bator',325),('Asia/Urumqi',326),('Asia/Ust-Nera',327),('Asia/Vientiane',328),('Asia/Vladivostok',329),('Asia/Yakutsk',330),('Asia/Yangon',331),('Asia/Yekaterinburg',332),('Asia/Yerevan',333),('Atlantic/Azores',334),('Atlantic/Bermuda',335),('Atlantic/Canary',336),('Atlantic/Cape_Verde',337),('Atlantic/Faeroe',338),('Atlantic/Faroe',339),('Atlantic/Jan_Mayen',340),('Atlantic/Madeira',341),('Atlantic/Reykjavik',342),('Atlantic/South_Georgia',343),('Atlantic/Stanley',345),('Atlantic/St_Helena',344),('Australia/ACT',346),('Australia/Adelaide',347),('Australia/Brisbane',348),('Australia/Broken_Hill',349),('Australia/Canberra',350),('Australia/Currie',351),('Australia/Darwin',352),('Australia/Eucla',353),('Australia/Hobart',354),('Australia/LHI',355),('Australia/Lindeman',356),('Australia/Lord_Howe',357),('Australia/Melbourne',358),('Australia/North',360),('Australia/NSW',359),('Australia/Perth',361),('Australia/Queensland',362),('Australia/South',363),('Australia/Sydney',364),('Australia/Tasmania',365),('Australia/Victoria',366),('Australia/West',367),('Australia/Yancowinna',368),('Brazil/Acre',369),('Brazil/DeNoronha',370),('Brazil/East',371),('Brazil/West',372),('Canada/Atlantic',375),('Canada/Central',376),('Canada/Eastern',377),('Canada/Mountain',378),('Canada/Newfoundland',379),('Canada/Pacific',380),('Canada/Saskatchewan',381),('Canada/Yukon',382),('CET',373),('Chile/Continental',383),('Chile/EasterIsland',384),('CST6CDT',374),('Cuba',385),('EET',386),('Egypt',389),('Eire',390),('EST',387),('EST5EDT',388),('Etc/GMT',391),('Etc/GMT+0',392),('Etc/GMT+1',393),('Etc/GMT+10',394),('Etc/GMT+11',395),('Etc/GMT+12',396),('Etc/GMT+2',397),('Etc/GMT+3',398),('Etc/GMT+4',399),('Etc/GMT+5',400),('Etc/GMT+6',401),('Etc/GMT+7',402),('Etc/GMT+8',403),('Etc/GMT+9',404),('Etc/GMT-0',405),('Etc/GMT-1',406),('Etc/GMT-10',407),('Etc/GMT-11',408),('Etc/GMT-12',409),('Etc/GMT-13',410),('Etc/GMT-14',411),('Etc/GMT-2',412),('Etc/GMT-3',413),('Etc/GMT-4',414),('Etc/GMT-5',415),('Etc/GMT-6',416),('Etc/GMT-7',417),('Etc/GMT-8',418),('Etc/GMT-9',419),('Etc/GMT0',420),('Etc/Greenwich',421),('Etc/UCT',422),('Etc/Universal',424),('Etc/UTC',423),('Etc/Zulu',425),('Europe/Amsterdam',426),('Europe/Andorra',427),('Europe/Astrakhan',428),('Europe/Athens',429),('Europe/Belfast',430),('Europe/Belgrade',431),('Europe/Berlin',432),('Europe/Bratislava',433),('Europe/Brussels',434),('Europe/Bucharest',435),('Europe/Budapest',436),('Europe/Busingen',437),('Europe/Chisinau',438),('Europe/Copenhagen',439),('Europe/Dublin',440),('Europe/Gibraltar',441),('Europe/Guernsey',442),('Europe/Helsinki',443),('Europe/Isle_of_Man',444),('Europe/Istanbul',445),('Europe/Jersey',446),('Europe/Kaliningrad',447),('Europe/Kiev',448),('Europe/Kirov',449),('Europe/Lisbon',450),('Europe/Ljubljana',451),('Europe/London',452),('Europe/Luxembourg',453),('Europe/Madrid',454),('Europe/Malta',455),('Europe/Mariehamn',456),('Europe/Minsk',457),('Europe/Monaco',458),('Europe/Moscow',459),('Europe/Nicosia',460),('Europe/Oslo',461),('Europe/Paris',462),('Europe/Podgorica',463),('Europe/Prague',464),('Europe/Riga',465),('Europe/Rome',466),('Europe/Samara',467),('Europe/San_Marino',468),('Europe/Sarajevo',469),('Europe/Saratov',470),('Europe/Simferopol',471),('Europe/Skopje',472),('Europe/Sofia',473),('Europe/Stockholm',474),('Europe/Tallinn',475),('Europe/Tirane',476),('Europe/Tiraspol',477),('Europe/Ulyanovsk',478),('Europe/Uzhgorod',479),('Europe/Vaduz',480),('Europe/Vatican',481),('Europe/Vienna',482),('Europe/Vilnius',483),('Europe/Volgograd',484),('Europe/Warsaw',485),('Europe/Zagreb',486),('Europe/Zaporozhye',487),('Europe/Zurich',488),('Factory',489),('GB',490),('GB-Eire',491),('GMT',492),('GMT+0',493),('GMT-0',494),('GMT0',495),('Greenwich',496),('Hongkong',498),('HST',497),('Iceland',499),('Indian/Antananarivo',500),('Indian/Chagos',501),('Indian/Christmas',502),('Indian/Cocos',503),('Indian/Comoro',504),('Indian/Kerguelen',505),('Indian/Mahe',506),('Indian/Maldives',507),('Indian/Mauritius',508),('Indian/Mayotte',509),('Indian/Reunion',510),('Iran',511),('Israel',512),('Jamaica',513),('Japan',514),('Kwajalein',515),('Libya',516),('localtime',609),('MET',517),('Mexico/BajaNorte',520),('Mexico/BajaSur',521),('Mexico/General',522),('MST',518),('MST7MDT',519),('Navajo',525),('NZ',523),('NZ-CHAT',524),('Pacific/Apia',528),('Pacific/Auckland',529),('Pacific/Bougainville',530),('Pacific/Chatham',531),('Pacific/Chuuk',532),('Pacific/Easter',533),('Pacific/Efate',534),('Pacific/Enderbury',535),('Pacific/Fakaofo',536),('Pacific/Fiji',537),('Pacific/Funafuti',538),('Pacific/Galapagos',539),('Pacific/Gambier',540),('Pacific/Guadalcanal',541),('Pacific/Guam',542),('Pacific/Honolulu',543),('Pacific/Johnston',544),('Pacific/Kiritimati',545),('Pacific/Kosrae',546),('Pacific/Kwajalein',547),('Pacific/Majuro',548),('Pacific/Marquesas',549),('Pacific/Midway',550),('Pacific/Nauru',551),('Pacific/Niue',552),('Pacific/Norfolk',553),('Pacific/Noumea',554),('Pacific/Pago_Pago',555),('Pacific/Palau',556),('Pacific/Pitcairn',557),('Pacific/Pohnpei',558),('Pacific/Ponape',559),('Pacific/Port_Moresby',560),('Pacific/Rarotonga',561),('Pacific/Saipan',562),('Pacific/Samoa',563),('Pacific/Tahiti',564),('Pacific/Tarawa',565),('Pacific/Tongatapu',566),('Pacific/Truk',567),('Pacific/Wake',568),('Pacific/Wallis',569),('Pacific/Yap',570),('Poland',571),('Portugal',572),('posix/Africa/Abidjan',610),('posix/Africa/Accra',611),('posix/Africa/Addis_Ababa',612),('posix/Africa/Algiers',613),('posix/Africa/Asmara',614),('posix/Africa/Asmera',615),('posix/Africa/Bamako',616),('posix/Africa/Bangui',617),('posix/Africa/Banjul',618),('posix/Africa/Bissau',619),('posix/Africa/Blantyre',620),('posix/Africa/Brazzaville',621),('posix/Africa/Bujumbura',622),('posix/Africa/Cairo',623),('posix/Africa/Casablanca',624),('posix/Africa/Ceuta',625),('posix/Africa/Conakry',626),('posix/Africa/Dakar',627),('posix/Africa/Dar_es_Salaam',628),('posix/Africa/Djibouti',629),('posix/Africa/Douala',630),('posix/Africa/El_Aaiun',631),('posix/Africa/Freetown',632),('posix/Africa/Gaborone',633),('posix/Africa/Harare',634),('posix/Africa/Johannesburg',635),('posix/Africa/Juba',636),('posix/Africa/Kampala',637),('posix/Africa/Khartoum',638),('posix/Africa/Kigali',639),('posix/Africa/Kinshasa',640),('posix/Africa/Lagos',641),('posix/Africa/Libreville',642),('posix/Africa/Lome',643),('posix/Africa/Luanda',644),('posix/Africa/Lubumbashi',645),('posix/Africa/Lusaka',646),('posix/Africa/Malabo',647),('posix/Africa/Maputo',648),('posix/Africa/Maseru',649),('posix/Africa/Mbabane',650),('posix/Africa/Mogadishu',651),('posix/Africa/Monrovia',652),('posix/Africa/Nairobi',653),('posix/Africa/Ndjamena',654),('posix/Africa/Niamey',655),('posix/Africa/Nouakchott',656),('posix/Africa/Ouagadougou',657),('posix/Africa/Porto-Novo',658),('posix/Africa/Sao_Tome',659),('posix/Africa/Timbuktu',660),('posix/Africa/Tripoli',661),('posix/Africa/Tunis',662),('posix/Africa/Windhoek',663),('posix/America/Adak',664),('posix/America/Anchorage',665),('posix/America/Anguilla',666),('posix/America/Antigua',667),('posix/America/Araguaina',668),('posix/America/Argentina/Buenos_Aires',669),('posix/America/Argentina/Catamarca',670),('posix/America/Argentina/ComodRivadavia',671),('posix/America/Argentina/Cordoba',672),('posix/America/Argentina/Jujuy',673),('posix/America/Argentina/La_Rioja',674),('posix/America/Argentina/Mendoza',675),('posix/America/Argentina/Rio_Gallegos',676),('posix/America/Argentina/Salta',677),('posix/America/Argentina/San_Juan',678),('posix/America/Argentina/San_Luis',679),('posix/America/Argentina/Tucuman',680),('posix/America/Argentina/Ushuaia',681),('posix/America/Aruba',682),('posix/America/Asuncion',683),('posix/America/Atikokan',684),('posix/America/Atka',685),('posix/America/Bahia',686),('posix/America/Bahia_Banderas',687),('posix/America/Barbados',688),('posix/America/Belem',689),('posix/America/Belize',690),('posix/America/Blanc-Sablon',691),('posix/America/Boa_Vista',692),('posix/America/Bogota',693),('posix/America/Boise',694),('posix/America/Buenos_Aires',695),('posix/America/Cambridge_Bay',696),('posix/America/Campo_Grande',697),('posix/America/Cancun',698),('posix/America/Caracas',699),('posix/America/Catamarca',700),('posix/America/Cayenne',701),('posix/America/Cayman',702),('posix/America/Chicago',703),('posix/America/Chihuahua',704),('posix/America/Coral_Harbour',705),('posix/America/Cordoba',706),('posix/America/Costa_Rica',707),('posix/America/Creston',708),('posix/America/Cuiaba',709),('posix/America/Curacao',710),('posix/America/Danmarkshavn',711),('posix/America/Dawson',712),('posix/America/Dawson_Creek',713),('posix/America/Denver',714),('posix/America/Detroit',715),('posix/America/Dominica',716),('posix/America/Edmonton',717),('posix/America/Eirunepe',718),('posix/America/El_Salvador',719),('posix/America/Ensenada',720),('posix/America/Fortaleza',723),('posix/America/Fort_Nelson',721),('posix/America/Fort_Wayne',722),('posix/America/Glace_Bay',724),('posix/America/Godthab',725),('posix/America/Goose_Bay',726),('posix/America/Grand_Turk',727),('posix/America/Grenada',728),('posix/America/Guadeloupe',729),('posix/America/Guatemala',730),('posix/America/Guayaquil',731),('posix/America/Guyana',732),('posix/America/Halifax',733),('posix/America/Havana',734),('posix/America/Hermosillo',735),('posix/America/Indiana/Indianapolis',736),('posix/America/Indiana/Knox',737),('posix/America/Indiana/Marengo',738),('posix/America/Indiana/Petersburg',739),('posix/America/Indiana/Tell_City',740),('posix/America/Indiana/Vevay',741),('posix/America/Indiana/Vincennes',742),('posix/America/Indiana/Winamac',743),('posix/America/Indianapolis',744),('posix/America/Inuvik',745),('posix/America/Iqaluit',746),('posix/America/Jamaica',747),('posix/America/Jujuy',748),('posix/America/Juneau',749),('posix/America/Kentucky/Louisville',750),('posix/America/Kentucky/Monticello',751),('posix/America/Knox_IN',752),('posix/America/Kralendijk',753),('posix/America/La_Paz',754),('posix/America/Lima',755),('posix/America/Los_Angeles',756),('posix/America/Louisville',757),('posix/America/Lower_Princes',758),('posix/America/Maceio',759),('posix/America/Managua',760),('posix/America/Manaus',761),('posix/America/Marigot',762),('posix/America/Martinique',763),('posix/America/Matamoros',764),('posix/America/Mazatlan',765),('posix/America/Mendoza',766),('posix/America/Menominee',767),('posix/America/Merida',768),('posix/America/Metlakatla',769),('posix/America/Mexico_City',770),('posix/America/Miquelon',771),('posix/America/Moncton',772),('posix/America/Monterrey',773),('posix/America/Montevideo',774),('posix/America/Montreal',775),('posix/America/Montserrat',776),('posix/America/Nassau',777),('posix/America/New_York',778),('posix/America/Nipigon',779),('posix/America/Nome',780),('posix/America/Noronha',781),('posix/America/North_Dakota/Beulah',782),('posix/America/North_Dakota/Center',783),('posix/America/North_Dakota/New_Salem',784),('posix/America/Nuuk',785),('posix/America/Ojinaga',786),('posix/America/Panama',787),('posix/America/Pangnirtung',788),('posix/America/Paramaribo',789),('posix/America/Phoenix',790),('posix/America/Port-au-Prince',791),('posix/America/Porto_Acre',793),('posix/America/Porto_Velho',794),('posix/America/Port_of_Spain',792),('posix/America/Puerto_Rico',795),('posix/America/Punta_Arenas',796),('posix/America/Rainy_River',797),('posix/America/Rankin_Inlet',798),('posix/America/Recife',799),('posix/America/Regina',800),('posix/America/Resolute',801),('posix/America/Rio_Branco',802),('posix/America/Rosario',803),('posix/America/Santarem',805),('posix/America/Santa_Isabel',804),('posix/America/Santiago',806),('posix/America/Santo_Domingo',807),('posix/America/Sao_Paulo',808),('posix/America/Scoresbysund',809),('posix/America/Shiprock',810),('posix/America/Sitka',811),('posix/America/St_Barthelemy',812),('posix/America/St_Johns',813),('posix/America/St_Kitts',814),('posix/America/St_Lucia',815),('posix/America/St_Thomas',816),('posix/America/St_Vincent',817),('posix/America/Swift_Current',818),('posix/America/Tegucigalpa',819),('posix/America/Thule',820),('posix/America/Thunder_Bay',821),('posix/America/Tijuana',822),('posix/America/Toronto',823),('posix/America/Tortola',824),('posix/America/Vancouver',825),('posix/America/Virgin',826),('posix/America/Whitehorse',827),('posix/America/Winnipeg',828),('posix/America/Yakutat',829),('posix/America/Yellowknife',830),('posix/Antarctica/Casey',831),('posix/Antarctica/Davis',832),('posix/Antarctica/DumontDUrville',833),('posix/Antarctica/Macquarie',834),('posix/Antarctica/Mawson',835),('posix/Antarctica/McMurdo',836),('posix/Antarctica/Palmer',837),('posix/Antarctica/Rothera',838),('posix/Antarctica/South_Pole',839),('posix/Antarctica/Syowa',840),('posix/Antarctica/Troll',841),('posix/Antarctica/Vostok',842),('posix/Arctic/Longyearbyen',843),('posix/Asia/Aden',844),('posix/Asia/Almaty',845),('posix/Asia/Amman',846),('posix/Asia/Anadyr',847),('posix/Asia/Aqtau',848),('posix/Asia/Aqtobe',849),('posix/Asia/Ashgabat',850),('posix/Asia/Ashkhabad',851),('posix/Asia/Atyrau',852),('posix/Asia/Baghdad',853),('posix/Asia/Bahrain',854),('posix/Asia/Baku',855),('posix/Asia/Bangkok',856),('posix/Asia/Barnaul',857),('posix/Asia/Beirut',858),('posix/Asia/Bishkek',859),('posix/Asia/Brunei',860),('posix/Asia/Calcutta',861),('posix/Asia/Chita',862),('posix/Asia/Choibalsan',863),('posix/Asia/Chongqing',864),('posix/Asia/Chungking',865),('posix/Asia/Colombo',866),('posix/Asia/Dacca',867),('posix/Asia/Damascus',868),('posix/Asia/Dhaka',869),('posix/Asia/Dili',870),('posix/Asia/Dubai',871),('posix/Asia/Dushanbe',872),('posix/Asia/Famagusta',873),('posix/Asia/Gaza',874),('posix/Asia/Harbin',875),('posix/Asia/Hebron',876),('posix/Asia/Hong_Kong',878),('posix/Asia/Hovd',879),('posix/Asia/Ho_Chi_Minh',877),('posix/Asia/Irkutsk',880),('posix/Asia/Istanbul',881),('posix/Asia/Jakarta',882),('posix/Asia/Jayapura',883),('posix/Asia/Jerusalem',884),('posix/Asia/Kabul',885),('posix/Asia/Kamchatka',886),('posix/Asia/Karachi',887),('posix/Asia/Kashgar',888),('posix/Asia/Kathmandu',889),('posix/Asia/Katmandu',890),('posix/Asia/Khandyga',891),('posix/Asia/Kolkata',892),('posix/Asia/Krasnoyarsk',893),('posix/Asia/Kuala_Lumpur',894),('posix/Asia/Kuching',895),('posix/Asia/Kuwait',896),('posix/Asia/Macao',897),('posix/Asia/Macau',898),('posix/Asia/Magadan',899),('posix/Asia/Makassar',900),('posix/Asia/Manila',901),('posix/Asia/Muscat',902),('posix/Asia/Nicosia',903),('posix/Asia/Novokuznetsk',904),('posix/Asia/Novosibirsk',905),('posix/Asia/Omsk',906),('posix/Asia/Oral',907),('posix/Asia/Phnom_Penh',908),('posix/Asia/Pontianak',909),('posix/Asia/Pyongyang',910),('posix/Asia/Qatar',911),('posix/Asia/Qostanay',912),('posix/Asia/Qyzylorda',913),('posix/Asia/Rangoon',914),('posix/Asia/Riyadh',915),('posix/Asia/Saigon',916),('posix/Asia/Sakhalin',917),('posix/Asia/Samarkand',918),('posix/Asia/Seoul',919),('posix/Asia/Shanghai',920),('posix/Asia/Singapore',921),('posix/Asia/Srednekolymsk',922),('posix/Asia/Taipei',923),('posix/Asia/Tashkent',924),('posix/Asia/Tbilisi',925),('posix/Asia/Tehran',926),('posix/Asia/Tel_Aviv',927),('posix/Asia/Thimbu',928),('posix/Asia/Thimphu',929),('posix/Asia/Tokyo',930),('posix/Asia/Tomsk',931),('posix/Asia/Ujung_Pandang',932),('posix/Asia/Ulaanbaatar',933),('posix/Asia/Ulan_Bator',934),('posix/Asia/Urumqi',935),('posix/Asia/Ust-Nera',936),('posix/Asia/Vientiane',937),('posix/Asia/Vladivostok',938),('posix/Asia/Yakutsk',939),('posix/Asia/Yangon',940),('posix/Asia/Yekaterinburg',941),('posix/Asia/Yerevan',942),('posix/Atlantic/Azores',943),('posix/Atlantic/Bermuda',944),('posix/Atlantic/Canary',945),('posix/Atlantic/Cape_Verde',946),('posix/Atlantic/Faeroe',947),('posix/Atlantic/Faroe',948),('posix/Atlantic/Jan_Mayen',949),('posix/Atlantic/Madeira',950),('posix/Atlantic/Reykjavik',951),('posix/Atlantic/South_Georgia',952),('posix/Atlantic/Stanley',954),('posix/Atlantic/St_Helena',953),('posix/Australia/ACT',955),('posix/Australia/Adelaide',956),('posix/Australia/Brisbane',957),('posix/Australia/Broken_Hill',958),('posix/Australia/Canberra',959),('posix/Australia/Currie',960),('posix/Australia/Darwin',961),('posix/Australia/Eucla',962),('posix/Australia/Hobart',963),('posix/Australia/LHI',964),('posix/Australia/Lindeman',965),('posix/Australia/Lord_Howe',966),('posix/Australia/Melbourne',967),('posix/Australia/North',969),('posix/Australia/NSW',968),('posix/Australia/Perth',970),('posix/Australia/Queensland',971),('posix/Australia/South',972),('posix/Australia/Sydney',973),('posix/Australia/Tasmania',974),('posix/Australia/Victoria',975),('posix/Australia/West',976),('posix/Australia/Yancowinna',977),('posix/Brazil/Acre',978),('posix/Brazil/DeNoronha',979),('posix/Brazil/East',980),('posix/Brazil/West',981),('posix/Canada/Atlantic',984),('posix/Canada/Central',985),('posix/Canada/Eastern',986),('posix/Canada/Mountain',987),('posix/Canada/Newfoundland',988),('posix/Canada/Pacific',989),('posix/Canada/Saskatchewan',990),('posix/Canada/Yukon',991),('posix/CET',982),('posix/Chile/Continental',992),('posix/Chile/EasterIsland',993),('posix/CST6CDT',983),('posix/Cuba',994),('posix/EET',995),('posix/Egypt',998),('posix/Eire',999),('posix/EST',996),('posix/EST5EDT',997),('posix/Etc/GMT',1000),('posix/Etc/GMT+0',1001),('posix/Etc/GMT+1',1002),('posix/Etc/GMT+10',1003),('posix/Etc/GMT+11',1004),('posix/Etc/GMT+12',1005),('posix/Etc/GMT+2',1006),('posix/Etc/GMT+3',1007),('posix/Etc/GMT+4',1008),('posix/Etc/GMT+5',1009),('posix/Etc/GMT+6',1010),('posix/Etc/GMT+7',1011),('posix/Etc/GMT+8',1012),('posix/Etc/GMT+9',1013),('posix/Etc/GMT-0',1014),('posix/Etc/GMT-1',1015),('posix/Etc/GMT-10',1016),('posix/Etc/GMT-11',1017),('posix/Etc/GMT-12',1018),('posix/Etc/GMT-13',1019),('posix/Etc/GMT-14',1020),('posix/Etc/GMT-2',1021),('posix/Etc/GMT-3',1022),('posix/Etc/GMT-4',1023),('posix/Etc/GMT-5',1024),('posix/Etc/GMT-6',1025),('posix/Etc/GMT-7',1026),('posix/Etc/GMT-8',1027),('posix/Etc/GMT-9',1028),('posix/Etc/GMT0',1029),('posix/Etc/Greenwich',1030),('posix/Etc/UCT',1031),('posix/Etc/Universal',1033),('posix/Etc/UTC',1032),('posix/Etc/Zulu',1034),('posix/Europe/Amsterdam',1035),('posix/Europe/Andorra',1036),('posix/Europe/Astrakhan',1037),('posix/Europe/Athens',1038),('posix/Europe/Belfast',1039),('posix/Europe/Belgrade',1040),('posix/Europe/Berlin',1041),('posix/Europe/Bratislava',1042),('posix/Europe/Brussels',1043),('posix/Europe/Bucharest',1044),('posix/Europe/Budapest',1045),('posix/Europe/Busingen',1046),('posix/Europe/Chisinau',1047),('posix/Europe/Copenhagen',1048),('posix/Europe/Dublin',1049),('posix/Europe/Gibraltar',1050),('posix/Europe/Guernsey',1051),('posix/Europe/Helsinki',1052),('posix/Europe/Isle_of_Man',1053),('posix/Europe/Istanbul',1054),('posix/Europe/Jersey',1055),('posix/Europe/Kaliningrad',1056),('posix/Europe/Kiev',1057),('posix/Europe/Kirov',1058),('posix/Europe/Lisbon',1059),('posix/Europe/Ljubljana',1060),('posix/Europe/London',1061),('posix/Europe/Luxembourg',1062),('posix/Europe/Madrid',1063),('posix/Europe/Malta',1064),('posix/Europe/Mariehamn',1065),('posix/Europe/Minsk',1066),('posix/Europe/Monaco',1067),('posix/Europe/Moscow',1068),('posix/Europe/Nicosia',1069),('posix/Europe/Oslo',1070),('posix/Europe/Paris',1071),('posix/Europe/Podgorica',1072),('posix/Europe/Prague',1073),('posix/Europe/Riga',1074),('posix/Europe/Rome',1075),('posix/Europe/Samara',1076),('posix/Europe/San_Marino',1077),('posix/Europe/Sarajevo',1078),('posix/Europe/Saratov',1079),('posix/Europe/Simferopol',1080),('posix/Europe/Skopje',1081),('posix/Europe/Sofia',1082),('posix/Europe/Stockholm',1083),('posix/Europe/Tallinn',1084),('posix/Europe/Tirane',1085),('posix/Europe/Tiraspol',1086),('posix/Europe/Ulyanovsk',1087),('posix/Europe/Uzhgorod',1088),('posix/Europe/Vaduz',1089),('posix/Europe/Vatican',1090),('posix/Europe/Vienna',1091),('posix/Europe/Vilnius',1092),('posix/Europe/Volgograd',1093),('posix/Europe/Warsaw',1094),('posix/Europe/Zagreb',1095),('posix/Europe/Zaporozhye',1096),('posix/Europe/Zurich',1097),('posix/Factory',1098),('posix/GB',1099),('posix/GB-Eire',1100),('posix/GMT',1101),('posix/GMT+0',1102),('posix/GMT-0',1103),('posix/GMT0',1104),('posix/Greenwich',1105),('posix/Hongkong',1107),('posix/HST',1106),('posix/Iceland',1108),('posix/Indian/Antananarivo',1109),('posix/Indian/Chagos',1110),('posix/Indian/Christmas',1111),('posix/Indian/Cocos',1112),('posix/Indian/Comoro',1113),('posix/Indian/Kerguelen',1114),('posix/Indian/Mahe',1115),('posix/Indian/Maldives',1116),('posix/Indian/Mauritius',1117),('posix/Indian/Mayotte',1118),('posix/Indian/Reunion',1119),('posix/Iran',1120),('posix/Israel',1121),('posix/Jamaica',1122),('posix/Japan',1123),('posix/Kwajalein',1124),('posix/Libya',1125),('posix/MET',1126),('posix/Mexico/BajaNorte',1129),('posix/Mexico/BajaSur',1130),('posix/Mexico/General',1131),('posix/MST',1127),('posix/MST7MDT',1128),('posix/Navajo',1134),('posix/NZ',1132),('posix/NZ-CHAT',1133),('posix/Pacific/Apia',1137),('posix/Pacific/Auckland',1138),('posix/Pacific/Bougainville',1139),('posix/Pacific/Chatham',1140),('posix/Pacific/Chuuk',1141),('posix/Pacific/Easter',1142),('posix/Pacific/Efate',1143),('posix/Pacific/Enderbury',1144),('posix/Pacific/Fakaofo',1145),('posix/Pacific/Fiji',1146),('posix/Pacific/Funafuti',1147),('posix/Pacific/Galapagos',1148),('posix/Pacific/Gambier',1149),('posix/Pacific/Guadalcanal',1150),('posix/Pacific/Guam',1151),('posix/Pacific/Honolulu',1152),('posix/Pacific/Johnston',1153),('posix/Pacific/Kiritimati',1154),('posix/Pacific/Kosrae',1155),('posix/Pacific/Kwajalein',1156),('posix/Pacific/Majuro',1157),('posix/Pacific/Marquesas',1158),('posix/Pacific/Midway',1159),('posix/Pacific/Nauru',1160),('posix/Pacific/Niue',1161),('posix/Pacific/Norfolk',1162),('posix/Pacific/Noumea',1163),('posix/Pacific/Pago_Pago',1164),('posix/Pacific/Palau',1165),('posix/Pacific/Pitcairn',1166),('posix/Pacific/Pohnpei',1167),('posix/Pacific/Ponape',1168),('posix/Pacific/Port_Moresby',1169),('posix/Pacific/Rarotonga',1170),('posix/Pacific/Saipan',1171),('posix/Pacific/Samoa',1172),('posix/Pacific/Tahiti',1173),('posix/Pacific/Tarawa',1174),('posix/Pacific/Tongatapu',1175),('posix/Pacific/Truk',1176),('posix/Pacific/Wake',1177),('posix/Pacific/Wallis',1178),('posix/Pacific/Yap',1179),('posix/Poland',1180),('posix/Portugal',1181),('posix/PRC',1135),('posix/PST8PDT',1136),('posix/ROC',1182),('posix/ROK',1183),('posix/Singapore',1184),('posix/SystemV/AST4',1185),('posix/SystemV/AST4ADT',1186),('posix/SystemV/CST6',1187),('posix/SystemV/CST6CDT',1188),('posix/SystemV/EST5',1189),('posix/SystemV/EST5EDT',1190),('posix/SystemV/HST10',1191),('posix/SystemV/MST7',1192),('posix/SystemV/MST7MDT',1193),('posix/SystemV/PST8',1194),('posix/SystemV/PST8PDT',1195),('posix/SystemV/YST9',1196),('posix/SystemV/YST9YDT',1197),('posix/Turkey',1198),('posix/UCT',1199),('posix/Universal',1214),('posix/US/Alaska',1200),('posix/US/Aleutian',1201),('posix/US/Arizona',1202),('posix/US/Central',1203),('posix/US/East-Indiana',1204),('posix/US/Eastern',1205),('posix/US/Hawaii',1206),('posix/US/Indiana-Starke',1207),('posix/US/Michigan',1208),('posix/US/Mountain',1209),('posix/US/Pacific',1210),('posix/US/Pacific-New',1211),('posix/US/Samoa',1212),('posix/UTC',1213),('posix/W-SU',1215),('posix/WET',1216),('posix/Zulu',1217),('posixrules',1218),('PRC',526),('PST8PDT',527),('right/Africa/Abidjan',1219),('right/Africa/Accra',1220),('right/Africa/Addis_Ababa',1221),('right/Africa/Algiers',1222),('right/Africa/Asmara',1223),('right/Africa/Asmera',1224),('right/Africa/Bamako',1225),('right/Africa/Bangui',1226),('right/Africa/Banjul',1227),('right/Africa/Bissau',1228),('right/Africa/Blantyre',1229),('right/Africa/Brazzaville',1230),('right/Africa/Bujumbura',1231),('right/Africa/Cairo',1232),('right/Africa/Casablanca',1233),('right/Africa/Ceuta',1234),('right/Africa/Conakry',1235),('right/Africa/Dakar',1236),('right/Africa/Dar_es_Salaam',1237),('right/Africa/Djibouti',1238),('right/Africa/Douala',1239),('right/Africa/El_Aaiun',1240),('right/Africa/Freetown',1241),('right/Africa/Gaborone',1242),('right/Africa/Harare',1243),('right/Africa/Johannesburg',1244),('right/Africa/Juba',1245),('right/Africa/Kampala',1246),('right/Africa/Khartoum',1247),('right/Africa/Kigali',1248),('right/Africa/Kinshasa',1249),('right/Africa/Lagos',1250),('right/Africa/Libreville',1251),('right/Africa/Lome',1252),('right/Africa/Luanda',1253),('right/Africa/Lubumbashi',1254),('right/Africa/Lusaka',1255),('right/Africa/Malabo',1256),('right/Africa/Maputo',1257),('right/Africa/Maseru',1258),('right/Africa/Mbabane',1259),('right/Africa/Mogadishu',1260),('right/Africa/Monrovia',1261),('right/Africa/Nairobi',1262),('right/Africa/Ndjamena',1263),('right/Africa/Niamey',1264),('right/Africa/Nouakchott',1265),('right/Africa/Ouagadougou',1266),('right/Africa/Porto-Novo',1267),('right/Africa/Sao_Tome',1268),('right/Africa/Timbuktu',1269),('right/Africa/Tripoli',1270),('right/Africa/Tunis',1271),('right/Africa/Windhoek',1272),('right/America/Adak',1273),('right/America/Anchorage',1274),('right/America/Anguilla',1275),('right/America/Antigua',1276),('right/America/Araguaina',1277),('right/America/Argentina/Buenos_Aires',1278),('right/America/Argentina/Catamarca',1279),('right/America/Argentina/ComodRivadavia',1280),('right/America/Argentina/Cordoba',1281),('right/America/Argentina/Jujuy',1282),('right/America/Argentina/La_Rioja',1283),('right/America/Argentina/Mendoza',1284),('right/America/Argentina/Rio_Gallegos',1285),('right/America/Argentina/Salta',1286),('right/America/Argentina/San_Juan',1287),('right/America/Argentina/San_Luis',1288),('right/America/Argentina/Tucuman',1289),('right/America/Argentina/Ushuaia',1290),('right/America/Aruba',1291),('right/America/Asuncion',1292),('right/America/Atikokan',1293),('right/America/Atka',1294),('right/America/Bahia',1295),('right/America/Bahia_Banderas',1296),('right/America/Barbados',1297),('right/America/Belem',1298),('right/America/Belize',1299),('right/America/Blanc-Sablon',1300),('right/America/Boa_Vista',1301),('right/America/Bogota',1302),('right/America/Boise',1303),('right/America/Buenos_Aires',1304),('right/America/Cambridge_Bay',1305),('right/America/Campo_Grande',1306),('right/America/Cancun',1307),('right/America/Caracas',1308),('right/America/Catamarca',1309),('right/America/Cayenne',1310),('right/America/Cayman',1311),('right/America/Chicago',1312),('right/America/Chihuahua',1313),('right/America/Coral_Harbour',1314),('right/America/Cordoba',1315),('right/America/Costa_Rica',1316),('right/America/Creston',1317),('right/America/Cuiaba',1318),('right/America/Curacao',1319),('right/America/Danmarkshavn',1320),('right/America/Dawson',1321),('right/America/Dawson_Creek',1322),('right/America/Denver',1323),('right/America/Detroit',1324),('right/America/Dominica',1325),('right/America/Edmonton',1326),('right/America/Eirunepe',1327),('right/America/El_Salvador',1328),('right/America/Ensenada',1329),('right/America/Fortaleza',1332),('right/America/Fort_Nelson',1330),('right/America/Fort_Wayne',1331),('right/America/Glace_Bay',1333),('right/America/Godthab',1334),('right/America/Goose_Bay',1335),('right/America/Grand_Turk',1336),('right/America/Grenada',1337),('right/America/Guadeloupe',1338),('right/America/Guatemala',1339),('right/America/Guayaquil',1340),('right/America/Guyana',1341),('right/America/Halifax',1342),('right/America/Havana',1343),('right/America/Hermosillo',1344),('right/America/Indiana/Indianapolis',1345),('right/America/Indiana/Knox',1346),('right/America/Indiana/Marengo',1347),('right/America/Indiana/Petersburg',1348),('right/America/Indiana/Tell_City',1349),('right/America/Indiana/Vevay',1350),('right/America/Indiana/Vincennes',1351),('right/America/Indiana/Winamac',1352),('right/America/Indianapolis',1353),('right/America/Inuvik',1354),('right/America/Iqaluit',1355),('right/America/Jamaica',1356),('right/America/Jujuy',1357),('right/America/Juneau',1358),('right/America/Kentucky/Louisville',1359),('right/America/Kentucky/Monticello',1360),('right/America/Knox_IN',1361),('right/America/Kralendijk',1362),('right/America/La_Paz',1363),('right/America/Lima',1364),('right/America/Los_Angeles',1365),('right/America/Louisville',1366),('right/America/Lower_Princes',1367),('right/America/Maceio',1368),('right/America/Managua',1369),('right/America/Manaus',1370),('right/America/Marigot',1371),('right/America/Martinique',1372),('right/America/Matamoros',1373),('right/America/Mazatlan',1374),('right/America/Mendoza',1375),('right/America/Menominee',1376),('right/America/Merida',1377),('right/America/Metlakatla',1378),('right/America/Mexico_City',1379),('right/America/Miquelon',1380),('right/America/Moncton',1381),('right/America/Monterrey',1382),('right/America/Montevideo',1383),('right/America/Montreal',1384),('right/America/Montserrat',1385),('right/America/Nassau',1386),('right/America/New_York',1387),('right/America/Nipigon',1388),('right/America/Nome',1389),('right/America/Noronha',1390),('right/America/North_Dakota/Beulah',1391),('right/America/North_Dakota/Center',1392),('right/America/North_Dakota/New_Salem',1393),('right/America/Nuuk',1394),('right/America/Ojinaga',1395),('right/America/Panama',1396),('right/America/Pangnirtung',1397),('right/America/Paramaribo',1398),('right/America/Phoenix',1399),('right/America/Port-au-Prince',1400),('right/America/Porto_Acre',1402),('right/America/Porto_Velho',1403),('right/America/Port_of_Spain',1401),('right/America/Puerto_Rico',1404),('right/America/Punta_Arenas',1405),('right/America/Rainy_River',1406),('right/America/Rankin_Inlet',1407),('right/America/Recife',1408),('right/America/Regina',1409),('right/America/Resolute',1410),('right/America/Rio_Branco',1411),('right/America/Rosario',1412),('right/America/Santarem',1414),('right/America/Santa_Isabel',1413),('right/America/Santiago',1415),('right/America/Santo_Domingo',1416),('right/America/Sao_Paulo',1417),('right/America/Scoresbysund',1418),('right/America/Shiprock',1419),('right/America/Sitka',1420),('right/America/St_Barthelemy',1421),('right/America/St_Johns',1422),('right/America/St_Kitts',1423),('right/America/St_Lucia',1424),('right/America/St_Thomas',1425),('right/America/St_Vincent',1426),('right/America/Swift_Current',1427),('right/America/Tegucigalpa',1428),('right/America/Thule',1429),('right/America/Thunder_Bay',1430),('right/America/Tijuana',1431),('right/America/Toronto',1432),('right/America/Tortola',1433),('right/America/Vancouver',1434),('right/America/Virgin',1435),('right/America/Whitehorse',1436),('right/America/Winnipeg',1437),('right/America/Yakutat',1438),('right/America/Yellowknife',1439),('right/Antarctica/Casey',1440),('right/Antarctica/Davis',1441),('right/Antarctica/DumontDUrville',1442),('right/Antarctica/Macquarie',1443),('right/Antarctica/Mawson',1444),('right/Antarctica/McMurdo',1445),('right/Antarctica/Palmer',1446),('right/Antarctica/Rothera',1447),('right/Antarctica/South_Pole',1448),('right/Antarctica/Syowa',1449),('right/Antarctica/Troll',1450),('right/Antarctica/Vostok',1451),('right/Arctic/Longyearbyen',1452),('right/Asia/Aden',1453),('right/Asia/Almaty',1454),('right/Asia/Amman',1455),('right/Asia/Anadyr',1456),('right/Asia/Aqtau',1457),('right/Asia/Aqtobe',1458),('right/Asia/Ashgabat',1459),('right/Asia/Ashkhabad',1460),('right/Asia/Atyrau',1461),('right/Asia/Baghdad',1462),('right/Asia/Bahrain',1463),('right/Asia/Baku',1464),('right/Asia/Bangkok',1465),('right/Asia/Barnaul',1466),('right/Asia/Beirut',1467),('right/Asia/Bishkek',1468),('right/Asia/Brunei',1469),('right/Asia/Calcutta',1470),('right/Asia/Chita',1471),('right/Asia/Choibalsan',1472),('right/Asia/Chongqing',1473),('right/Asia/Chungking',1474),('right/Asia/Colombo',1475),('right/Asia/Dacca',1476),('right/Asia/Damascus',1477),('right/Asia/Dhaka',1478),('right/Asia/Dili',1479),('right/Asia/Dubai',1480),('right/Asia/Dushanbe',1481),('right/Asia/Famagusta',1482),('right/Asia/Gaza',1483),('right/Asia/Harbin',1484),('right/Asia/Hebron',1485),('right/Asia/Hong_Kong',1487),('right/Asia/Hovd',1488),('right/Asia/Ho_Chi_Minh',1486),('right/Asia/Irkutsk',1489),('right/Asia/Istanbul',1490),('right/Asia/Jakarta',1491),('right/Asia/Jayapura',1492),('right/Asia/Jerusalem',1493),('right/Asia/Kabul',1494),('right/Asia/Kamchatka',1495),('right/Asia/Karachi',1496),('right/Asia/Kashgar',1497),('right/Asia/Kathmandu',1498),('right/Asia/Katmandu',1499),('right/Asia/Khandyga',1500),('right/Asia/Kolkata',1501),('right/Asia/Krasnoyarsk',1502),('right/Asia/Kuala_Lumpur',1503),('right/Asia/Kuching',1504),('right/Asia/Kuwait',1505),('right/Asia/Macao',1506),('right/Asia/Macau',1507),('right/Asia/Magadan',1508),('right/Asia/Makassar',1509),('right/Asia/Manila',1510),('right/Asia/Muscat',1511),('right/Asia/Nicosia',1512),('right/Asia/Novokuznetsk',1513),('right/Asia/Novosibirsk',1514),('right/Asia/Omsk',1515),('right/Asia/Oral',1516),('right/Asia/Phnom_Penh',1517),('right/Asia/Pontianak',1518),('right/Asia/Pyongyang',1519),('right/Asia/Qatar',1520),('right/Asia/Qostanay',1521),('right/Asia/Qyzylorda',1522),('right/Asia/Rangoon',1523),('right/Asia/Riyadh',1524),('right/Asia/Saigon',1525),('right/Asia/Sakhalin',1526),('right/Asia/Samarkand',1527),('right/Asia/Seoul',1528),('right/Asia/Shanghai',1529),('right/Asia/Singapore',1530),('right/Asia/Srednekolymsk',1531),('right/Asia/Taipei',1532),('right/Asia/Tashkent',1533),('right/Asia/Tbilisi',1534),('right/Asia/Tehran',1535),('right/Asia/Tel_Aviv',1536),('right/Asia/Thimbu',1537),('right/Asia/Thimphu',1538),('right/Asia/Tokyo',1539),('right/Asia/Tomsk',1540),('right/Asia/Ujung_Pandang',1541),('right/Asia/Ulaanbaatar',1542),('right/Asia/Ulan_Bator',1543),('right/Asia/Urumqi',1544),('right/Asia/Ust-Nera',1545),('right/Asia/Vientiane',1546),('right/Asia/Vladivostok',1547),('right/Asia/Yakutsk',1548),('right/Asia/Yangon',1549),('right/Asia/Yekaterinburg',1550),('right/Asia/Yerevan',1551),('right/Atlantic/Azores',1552),('right/Atlantic/Bermuda',1553),('right/Atlantic/Canary',1554),('right/Atlantic/Cape_Verde',1555),('right/Atlantic/Faeroe',1556),('right/Atlantic/Faroe',1557),('right/Atlantic/Jan_Mayen',1558),('right/Atlantic/Madeira',1559),('right/Atlantic/Reykjavik',1560),('right/Atlantic/South_Georgia',1561),('right/Atlantic/Stanley',1563),('right/Atlantic/St_Helena',1562),('right/Australia/ACT',1564),('right/Australia/Adelaide',1565),('right/Australia/Brisbane',1566),('right/Australia/Broken_Hill',1567),('right/Australia/Canberra',1568),('right/Australia/Currie',1569),('right/Australia/Darwin',1570),('right/Australia/Eucla',1571),('right/Australia/Hobart',1572),('right/Australia/LHI',1573),('right/Australia/Lindeman',1574),('right/Australia/Lord_Howe',1575),('right/Australia/Melbourne',1576),('right/Australia/North',1578),('right/Australia/NSW',1577),('right/Australia/Perth',1579),('right/Australia/Queensland',1580),('right/Australia/South',1581),('right/Australia/Sydney',1582),('right/Australia/Tasmania',1583),('right/Australia/Victoria',1584),('right/Australia/West',1585),('right/Australia/Yancowinna',1586),('right/Brazil/Acre',1587),('right/Brazil/DeNoronha',1588),('right/Brazil/East',1589),('right/Brazil/West',1590),('right/Canada/Atlantic',1593),('right/Canada/Central',1594),('right/Canada/Eastern',1595),('right/Canada/Mountain',1596),('right/Canada/Newfoundland',1597),('right/Canada/Pacific',1598),('right/Canada/Saskatchewan',1599),('right/Canada/Yukon',1600),('right/CET',1591),('right/Chile/Continental',1601),('right/Chile/EasterIsland',1602),('right/CST6CDT',1592),('right/Cuba',1603),('right/EET',1604),('right/Egypt',1607),('right/Eire',1608),('right/EST',1605),('right/EST5EDT',1606),('right/Etc/GMT',1609),('right/Etc/GMT+0',1610),('right/Etc/GMT+1',1611),('right/Etc/GMT+10',1612),('right/Etc/GMT+11',1613),('right/Etc/GMT+12',1614),('right/Etc/GMT+2',1615),('right/Etc/GMT+3',1616),('right/Etc/GMT+4',1617),('right/Etc/GMT+5',1618),('right/Etc/GMT+6',1619),('right/Etc/GMT+7',1620),('right/Etc/GMT+8',1621),('right/Etc/GMT+9',1622),('right/Etc/GMT-0',1623),('right/Etc/GMT-1',1624),('right/Etc/GMT-10',1625),('right/Etc/GMT-11',1626),('right/Etc/GMT-12',1627),('right/Etc/GMT-13',1628),('right/Etc/GMT-14',1629),('right/Etc/GMT-2',1630),('right/Etc/GMT-3',1631),('right/Etc/GMT-4',1632),('right/Etc/GMT-5',1633),('right/Etc/GMT-6',1634),('right/Etc/GMT-7',1635),('right/Etc/GMT-8',1636),('right/Etc/GMT-9',1637),('right/Etc/GMT0',1638),('right/Etc/Greenwich',1639),('right/Etc/UCT',1640),('right/Etc/Universal',1642),('right/Etc/UTC',1641),('right/Etc/Zulu',1643),('right/Europe/Amsterdam',1644),('right/Europe/Andorra',1645),('right/Europe/Astrakhan',1646),('right/Europe/Athens',1647),('right/Europe/Belfast',1648),('right/Europe/Belgrade',1649),('right/Europe/Berlin',1650),('right/Europe/Bratislava',1651),('right/Europe/Brussels',1652),('right/Europe/Bucharest',1653),('right/Europe/Budapest',1654),('right/Europe/Busingen',1655),('right/Europe/Chisinau',1656),('right/Europe/Copenhagen',1657),('right/Europe/Dublin',1658),('right/Europe/Gibraltar',1659),('right/Europe/Guernsey',1660),('right/Europe/Helsinki',1661),('right/Europe/Isle_of_Man',1662),('right/Europe/Istanbul',1663),('right/Europe/Jersey',1664),('right/Europe/Kaliningrad',1665),('right/Europe/Kiev',1666),('right/Europe/Kirov',1667),('right/Europe/Lisbon',1668),('right/Europe/Ljubljana',1669),('right/Europe/London',1670),('right/Europe/Luxembourg',1671),('right/Europe/Madrid',1672),('right/Europe/Malta',1673),('right/Europe/Mariehamn',1674),('right/Europe/Minsk',1675),('right/Europe/Monaco',1676),('right/Europe/Moscow',1677),('right/Europe/Nicosia',1678),('right/Europe/Oslo',1679),('right/Europe/Paris',1680),('right/Europe/Podgorica',1681),('right/Europe/Prague',1682),('right/Europe/Riga',1683),('right/Europe/Rome',1684),('right/Europe/Samara',1685),('right/Europe/San_Marino',1686),('right/Europe/Sarajevo',1687),('right/Europe/Saratov',1688),('right/Europe/Simferopol',1689),('right/Europe/Skopje',1690),('right/Europe/Sofia',1691),('right/Europe/Stockholm',1692),('right/Europe/Tallinn',1693),('right/Europe/Tirane',1694),('right/Europe/Tiraspol',1695),('right/Europe/Ulyanovsk',1696),('right/Europe/Uzhgorod',1697),('right/Europe/Vaduz',1698),('right/Europe/Vatican',1699),('right/Europe/Vienna',1700),('right/Europe/Vilnius',1701),('right/Europe/Volgograd',1702),('right/Europe/Warsaw',1703),('right/Europe/Zagreb',1704),('right/Europe/Zaporozhye',1705),('right/Europe/Zurich',1706),('right/Factory',1707),('right/GB',1708),('right/GB-Eire',1709),('right/GMT',1710),('right/GMT+0',1711),('right/GMT-0',1712),('right/GMT0',1713),('right/Greenwich',1714),('right/Hongkong',1716),('right/HST',1715),('right/Iceland',1717),('right/Indian/Antananarivo',1718),('right/Indian/Chagos',1719),('right/Indian/Christmas',1720),('right/Indian/Cocos',1721),('right/Indian/Comoro',1722),('right/Indian/Kerguelen',1723),('right/Indian/Mahe',1724),('right/Indian/Maldives',1725),('right/Indian/Mauritius',1726),('right/Indian/Mayotte',1727),('right/Indian/Reunion',1728),('right/Iran',1729),('right/Israel',1730),('right/Jamaica',1731),('right/Japan',1732),('right/Kwajalein',1733),('right/Libya',1734),('right/MET',1735),('right/Mexico/BajaNorte',1738),('right/Mexico/BajaSur',1739),('right/Mexico/General',1740),('right/MST',1736),('right/MST7MDT',1737),('right/Navajo',1743),('right/NZ',1741),('right/NZ-CHAT',1742),('right/Pacific/Apia',1746),('right/Pacific/Auckland',1747),('right/Pacific/Bougainville',1748),('right/Pacific/Chatham',1749),('right/Pacific/Chuuk',1750),('right/Pacific/Easter',1751),('right/Pacific/Efate',1752),('right/Pacific/Enderbury',1753),('right/Pacific/Fakaofo',1754),('right/Pacific/Fiji',1755),('right/Pacific/Funafuti',1756),('right/Pacific/Galapagos',1757),('right/Pacific/Gambier',1758),('right/Pacific/Guadalcanal',1759),('right/Pacific/Guam',1760),('right/Pacific/Honolulu',1761),('right/Pacific/Johnston',1762),('right/Pacific/Kiritimati',1763),('right/Pacific/Kosrae',1764),('right/Pacific/Kwajalein',1765),('right/Pacific/Majuro',1766),('right/Pacific/Marquesas',1767),('right/Pacific/Midway',1768),('right/Pacific/Nauru',1769),('right/Pacific/Niue',1770),('right/Pacific/Norfolk',1771),('right/Pacific/Noumea',1772),('right/Pacific/Pago_Pago',1773),('right/Pacific/Palau',1774),('right/Pacific/Pitcairn',1775),('right/Pacific/Pohnpei',1776),('right/Pacific/Ponape',1777),('right/Pacific/Port_Moresby',1778),('right/Pacific/Rarotonga',1779),('right/Pacific/Saipan',1780),('right/Pacific/Samoa',1781),('right/Pacific/Tahiti',1782),('right/Pacific/Tarawa',1783),('right/Pacific/Tongatapu',1784),('right/Pacific/Truk',1785),('right/Pacific/Wake',1786),('right/Pacific/Wallis',1787),('right/Pacific/Yap',1788),('right/Poland',1789),('right/Portugal',1790),('right/PRC',1744),('right/PST8PDT',1745),('right/ROC',1791),('right/ROK',1792),('right/Singapore',1793),('right/SystemV/AST4',1794),('right/SystemV/AST4ADT',1795),('right/SystemV/CST6',1796),('right/SystemV/CST6CDT',1797),('right/SystemV/EST5',1798),('right/SystemV/EST5EDT',1799),('right/SystemV/HST10',1800),('right/SystemV/MST7',1801),('right/SystemV/MST7MDT',1802),('right/SystemV/PST8',1803),('right/SystemV/PST8PDT',1804),('right/SystemV/YST9',1805),('right/SystemV/YST9YDT',1806),('right/Turkey',1807),('right/UCT',1808),('right/Universal',1823),('right/US/Alaska',1809),('right/US/Aleutian',1810),('right/US/Arizona',1811),('right/US/Central',1812),('right/US/East-Indiana',1813),('right/US/Eastern',1814),('right/US/Hawaii',1815),('right/US/Indiana-Starke',1816),('right/US/Michigan',1817),('right/US/Mountain',1818),('right/US/Pacific',1819),('right/US/Pacific-New',1820),('right/US/Samoa',1821),('right/UTC',1822),('right/W-SU',1824),('right/WET',1825),('right/Zulu',1826),('ROC',573),('ROK',574),('Singapore',575),('SystemV/AST4',576),('SystemV/AST4ADT',577),('SystemV/CST6',578),('SystemV/CST6CDT',579),('SystemV/EST5',580),('SystemV/EST5EDT',581),('SystemV/HST10',582),('SystemV/MST7',583),('SystemV/MST7MDT',584),('SystemV/PST8',585),('SystemV/PST8PDT',586),('SystemV/YST9',587),('SystemV/YST9YDT',588),('Turkey',589),('UCT',590),('Universal',605),('US/Alaska',591),('US/Aleutian',592),('US/Arizona',593),('US/Central',594),('US/East-Indiana',595),('US/Eastern',596),('US/Hawaii',597),('US/Indiana-Starke',598),('US/Michigan',599),('US/Mountain',600),('US/Pacific',601),('US/Pacific-New',602),('US/Samoa',603),('UTC',604),('W-SU',606),('WET',607),('Zulu',608); +/*!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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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,-2147483648,0),(1,-1830383032,1),(2,-2147483648,0),(2,-1709337548,2),(2,-1581206400,1),(2,-1577917200,2),(2,-1556834400,1),(2,-1546294800,2),(2,-1525298400,1),(2,-1514758800,2),(2,-1493762400,1),(2,-1483222800,2),(2,-1462226400,1),(2,-1451686800,2),(2,-1430604000,1),(2,-1420064400,2),(2,-1399068000,1),(2,-1388528400,2),(2,-1367532000,1),(2,-1356992400,2),(2,-1335996000,1),(2,-1325456400,2),(2,-1304373600,1),(2,-1293834000,2),(2,-1272837600,1),(2,-1262298000,2),(2,-1241301600,1),(2,-1230762000,2),(2,-1209765600,1),(2,-1199226000,2),(2,-1178143200,1),(2,-1167603600,2),(2,-1146607200,1),(2,-1136067600,2),(2,-1115071200,1),(2,-1104531600,2),(2,-1083535200,1),(2,-1072995600,2),(2,-1051912800,1),(2,-1041373200,2),(2,-1020376800,1),(2,-1009837200,2),(2,-988840800,1),(2,-978301200,2),(2,-957304800,1),(2,-946765200,2),(2,-936309600,1),(2,-915142800,2),(2,-904773600,1),(2,-883606800,2),(2,-880329600,3),(2,-756952200,2),(2,-610149600,4),(2,-599610600,2),(2,-578613600,4),(2,-568074600,2),(2,-546991200,4),(2,-536452200,2),(2,-515455200,4),(2,-504916200,2),(2,-483919200,4),(2,-473380200,2),(2,-452383200,4),(2,-441844200,2),(3,-2147483648,0),(3,-1946168836,1),(3,-1309746600,2),(3,-1261969200,1),(3,-1041388200,3),(3,-865305900,2),(4,-2147483648,1),(4,-1855958961,4),(4,-1689814800,2),(4,-1680397200,3),(4,-1665363600,2),(4,-1648342800,3),(4,-1635123600,2),(4,-1616893200,3),(4,-1604278800,2),(4,-1585443600,3),(4,-1574038800,2),(4,-1552266000,3),(4,-1539997200,2),(4,-1531443600,3),(4,-956365200,2),(4,-950486400,4),(4,-942012000,6),(4,-812502000,5),(4,-796262400,6),(4,-781052400,5),(4,-766630800,6),(4,-733280400,4),(4,-439430400,6),(4,-212029200,4),(4,41468400,2),(4,54774000,3),(4,231724800,7),(4,246236400,6),(4,259545600,5),(4,275274000,6),(4,309740400,4),(4,325468800,7),(4,341802000,4),(4,357523200,6),(5,-2147483648,0),(5,-1946168836,1),(5,-1309746600,2),(5,-1261969200,1),(5,-1041388200,3),(5,-865305900,2),(6,-2147483648,0),(6,-1946168836,1),(6,-1309746600,2),(6,-1261969200,1),(6,-1041388200,3),(6,-865305900,2),(7,-2147483648,0),(7,-1830383032,1),(8,-2147483648,0),(8,-2035584815,1),(8,-1940889600,0),(8,-1767226415,2),(8,-1588465800,3),(9,-2147483648,0),(9,-1830383032,1),(10,-2147483648,0),(10,-1830380400,1),(10,157770000,2),(11,-2147483648,0),(11,-2109291020,1),(12,-2147483648,0),(12,-2035584815,1),(12,-1940889600,0),(12,-1767226415,2),(12,-1588465800,3),(13,-2147483648,0),(13,-2109291020,1),(14,-2147483648,2),(14,-929844000,1),(14,-923108400,2),(14,-906170400,1),(14,-892868400,2),(14,-875844000,1),(14,-857790000,2),(14,-844308000,1),(14,-825822000,2),(14,-812685600,1),(14,-794199600,2),(14,-779853600,1),(14,-762663600,2),(14,-399088800,1),(14,-386650800,2),(14,-368330400,1),(14,-355114800,2),(14,-336790800,1),(14,-323654400,2),(14,-305168400,1),(14,-292032000,2),(14,-273632400,1),(14,-260496000,2),(14,-242096400,1),(14,-228960000,2),(14,-210560400,1),(14,-197424000,2),(14,-178938000,1),(14,-165801600,2),(14,-147402000,1),(14,-134265600,2),(14,-115866000,1),(14,-102643200,2),(14,-84330000,1),(14,-71107200,2),(14,-52707600,1),(14,-39484800,2),(14,-21171600,1),(14,-7948800,2),(14,10364400,1),(14,23587200,2),(14,41900400,1),(14,55123200,2),(14,73522800,1),(14,86745600,2),(14,105058800,1),(14,118281600,2),(14,136594800,1),(14,149817600,2),(14,168130800,1),(14,181353600,2),(14,199753200,1),(14,212976000,2),(14,231289200,1),(14,244512000,2),(14,262825200,1),(14,276048000,2),(14,294361200,1),(14,307584000,2),(14,325983600,1),(14,339206400,2),(14,357519600,1),(14,370742400,2),(14,396399600,1),(14,402278400,2),(14,426812400,1),(14,433814400,2),(14,452214000,1),(14,465436800,2),(14,483750000,1),(14,496972800,2),(14,515286000,1),(14,528508800,2),(14,546822000,1),(14,560044800,2),(14,578444400,1),(14,591667200,2),(14,610412400,1),(14,623203200,2),(14,641516400,1),(14,654739200,2),(14,673052400,1),(14,686275200,2),(14,704674800,1),(14,717897600,2),(14,736210800,1),(14,749433600,2),(14,767746800,1),(14,780969600,2),(14,799020000,3),(14,812322000,2),(14,830469600,3),(14,843771600,2),(14,861919200,3),(14,875221200,2),(14,893368800,3),(14,906670800,2),(14,925423200,3),(14,938725200,2),(14,956872800,3),(14,970174800,2),(14,988322400,3),(14,1001624400,2),(14,1019772000,3),(14,1033074000,2),(14,1051221600,3),(14,1064523600,2),(14,1083276000,3),(14,1096578000,2),(14,1114725600,3),(14,1128027600,2),(14,1146175200,3),(14,1158872400,2),(14,1177624800,3),(14,1189112400,2),(14,1209074400,3),(14,1219957200,2),(14,1240524000,3),(14,1250802000,2),(14,1272578400,3),(14,1281474000,2),(14,1284069600,1),(14,1285880400,2),(14,1400191200,1),(14,1403816400,2),(14,1406844000,1),(14,1411678800,2),(15,-2147483648,0),(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,3),(15,1557021600,4),(15,1560045600,3),(15,1587261600,4),(15,1590890400,3),(15,1618106400,4),(15,1621130400,3),(15,1648346400,4),(15,1651975200,3),(15,1679191200,4),(15,1682820000,3),(15,1710036000,4),(15,1713060000,3),(15,1740276000,4),(15,1743904800,3),(15,1771120800,4),(15,1774144800,3),(15,1801965600,4),(15,1804989600,3),(15,1832205600,4),(15,1835834400,3),(15,1863050400,4),(15,1866074400,3),(15,1893290400,4),(15,1896919200,3),(15,1924135200,4),(15,1927764000,3),(15,1954980000,4),(15,1958004000,3),(15,1985220000,4),(15,1988848800,3),(15,2016064800,4),(15,2019088800,3),(15,2046304800,4),(15,2049933600,3),(15,2077149600,4),(15,2080778400,3),(15,2107994400,4),(15,2111018400,3),(15,2138234400,4),(15,2141863200,3),(16,-2147483648,1),(16,-1630112400,2),(16,-1616810400,1),(16,-1442451600,2),(16,-1427673600,3),(16,-1379293200,2),(16,-1364774400,3),(16,-1348448400,2),(16,-1333324800,3),(16,-1316390400,2),(16,-1301270400,3),(16,-1293840000,1),(16,-81432000,2),(16,-71110800,1),(16,141264000,2),(16,147222000,1),(16,199756800,2),(16,207702000,1),(16,231292800,2),(16,244249200,1),(16,265507200,2),(16,271033200,1),(16,448243200,4),(16,512528400,5),(16,528253200,6),(16,543978000,5),(16,559702800,6),(16,575427600,5),(16,591152400,6),(16,606877200,5),(16,622602000,6),(16,638326800,5),(16,654656400,6),(16,670381200,5),(16,686106000,6),(16,701830800,5),(16,717555600,6),(16,733280400,5),(16,749005200,6),(16,764730000,5),(16,780454800,6),(16,796179600,5),(16,811904400,6),(16,828234000,5),(16,846378000,6),(16,859683600,5),(16,877827600,6),(16,891133200,5),(16,909277200,6),(16,922582800,5),(16,941331600,6),(16,954032400,5),(16,972781200,6),(16,985482000,5),(16,1004230800,6),(16,1017536400,5),(16,1035680400,6),(16,1048986000,5),(16,1067130000,6),(16,1080435600,5),(16,1099184400,6),(16,1111885200,5),(16,1130634000,6),(16,1143334800,5),(16,1162083600,6),(16,1174784400,5),(16,1193533200,6),(16,1206838800,5),(16,1224982800,6),(16,1238288400,5),(16,1256432400,6),(16,1269738000,5),(16,1288486800,6),(16,1301187600,5),(16,1319936400,6),(16,1332637200,5),(16,1351386000,6),(16,1364691600,5),(16,1382835600,6),(16,1396141200,5),(16,1414285200,6),(16,1427590800,5),(16,1445734800,6),(16,1459040400,5),(16,1477789200,6),(16,1490490000,5),(16,1509238800,6),(16,1521939600,5),(16,1540688400,6),(16,1553994000,5),(16,1572138000,6),(16,1585443600,5),(16,1603587600,6),(16,1616893200,5),(16,1635642000,6),(16,1648342800,5),(16,1667091600,6),(16,1679792400,5),(16,1698541200,6),(16,1711846800,5),(16,1729990800,6),(16,1743296400,5),(16,1761440400,6),(16,1774746000,5),(16,1792890000,6),(16,1806195600,5),(16,1824944400,6),(16,1837645200,5),(16,1856394000,6),(16,1869094800,5),(16,1887843600,6),(16,1901149200,5),(16,1919293200,6),(16,1932598800,5),(16,1950742800,6),(16,1964048400,5),(16,1982797200,6),(16,1995498000,5),(16,2014246800,6),(16,2026947600,5),(16,2045696400,6),(16,2058397200,5),(16,2077146000,6),(16,2090451600,5),(16,2108595600,6),(16,2121901200,5),(16,2140045200,6),(17,-2147483648,0),(17,-1830383032,1),(18,-2147483648,0),(18,-1830383032,1),(19,-2147483648,0),(19,-1946168836,1),(19,-1309746600,2),(19,-1261969200,1),(19,-1041388200,3),(19,-865305900,2),(20,-2147483648,0),(20,-1946168836,1),(20,-1309746600,2),(20,-1261969200,1),(20,-1041388200,3),(20,-865305900,2),(21,-2147483648,0),(21,-2035584815,1),(21,-1940889600,0),(21,-1767226415,2),(21,-1588465800,3),(22,-2147483648,0),(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,5),(22,1557021600,4),(22,1560045600,5),(22,1587261600,4),(22,1590890400,5),(22,1618106400,4),(22,1621130400,5),(22,1648346400,4),(22,1651975200,5),(22,1679191200,4),(22,1682820000,5),(22,1710036000,4),(22,1713060000,5),(22,1740276000,4),(22,1743904800,5),(22,1771120800,4),(22,1774144800,5),(22,1801965600,4),(22,1804989600,5),(22,1832205600,4),(22,1835834400,5),(22,1863050400,4),(22,1866074400,5),(22,1893290400,4),(22,1896919200,5),(22,1924135200,4),(22,1927764000,5),(22,1954980000,4),(22,1958004000,5),(22,1985220000,4),(22,1988848800,5),(22,2016064800,4),(22,2019088800,5),(22,2046304800,4),(22,2049933600,5),(22,2077149600,4),(22,2080778400,5),(22,2107994400,4),(22,2111018400,5),(22,2138234400,4),(22,2141863200,5),(23,-2147483648,0),(23,-1830383032,1),(24,-2147483648,0),(24,-2109291020,1),(25,-2147483648,0),(25,-2109291020,1),(26,-2147483648,1),(26,-2109288600,3),(26,-860976000,2),(26,-845254800,3),(26,-829526400,2),(26,-813805200,3),(27,-2147483648,0),(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),(27,1612126800,2),(28,-2147483648,0),(28,-1946168836,1),(28,-1309746600,2),(28,-1261969200,1),(28,-1041388200,3),(28,-865305900,2),(29,-2147483648,0),(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,-2147483648,0),(30,-2109291020,1),(31,-2147483648,0),(31,-2035584815,1),(31,-1940889600,0),(31,-1767226415,2),(31,-1588465800,3),(32,-2147483648,0),(32,-2035584815,1),(32,-1940889600,0),(32,-1767226415,2),(32,-1588465800,3),(33,-2147483648,0),(33,-2035584815,1),(33,-1940889600,0),(33,-1767226415,2),(33,-1588465800,3),(34,-2147483648,0),(34,-1830383032,1),(35,-2147483648,0),(35,-2035584815,1),(35,-1940889600,0),(35,-1767226415,2),(35,-1588465800,3),(36,-2147483648,0),(36,-2109291020,1),(37,-2147483648,0),(37,-2109291020,1),(38,-2147483648,0),(38,-2035584815,1),(38,-1940889600,0),(38,-1767226415,2),(38,-1588465800,3),(39,-2147483648,0),(39,-2109291020,1),(40,-2147483648,1),(40,-2109288600,3),(40,-860976000,2),(40,-845254800,3),(40,-829526400,2),(40,-813805200,3),(41,-2147483648,1),(41,-2109288600,3),(41,-860976000,2),(41,-845254800,3),(41,-829526400,2),(41,-813805200,3),(42,-2147483648,0),(42,-1946168836,1),(42,-1309746600,2),(42,-1261969200,1),(42,-1041388200,3),(42,-865305900,2),(43,-2147483648,1),(43,-1604359012,2),(43,63593070,3),(44,-2147483648,0),(44,-1946168836,1),(44,-1309746600,2),(44,-1261969200,1),(44,-1041388200,3),(44,-865305900,2),(45,-2147483648,0),(45,-1830387612,1),(45,308703600,2),(45,321314400,1),(46,-2147483648,0),(46,-2035584815,1),(46,-1940889600,0),(46,-1767226415,2),(46,-1588465800,3),(47,-2147483648,0),(47,-1830383032,1),(48,-2147483648,0),(48,-1830383032,1),(49,-2147483648,0),(49,-2035584815,1),(49,-1940889600,0),(49,-1767226415,2),(49,-1588465800,3),(50,-2147483648,1),(50,-1830384000,2),(50,1514768400,3),(50,1546304400,4),(51,-2147483648,0),(51,-1830383032,1),(52,-2147483648,0),(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,-2147483648,1),(53,-1855958961,4),(53,-969242400,2),(53,-950493600,3),(53,-941940000,2),(53,-891136800,4),(53,-877827600,5),(53,-857257200,4),(53,-844556400,5),(53,-842918400,4),(53,-842223600,5),(53,-828230400,4),(53,-812502000,5),(53,-796269600,4),(53,-781052400,5),(53,-766634400,4),(53,231202800,2),(53,243903600,3),(53,262825200,2),(53,276044400,3),(53,581122800,2),(53,591145200,3),(53,606870000,2),(53,622594800,3),(53,641516400,2),(53,654649200,3),(53,1114902000,2),(53,1128038400,3),(53,1143334800,2),(53,1162083600,3),(53,1174784400,2),(53,1193533200,3),(53,1206838800,2),(53,1224982800,3),(54,-2147483648,1),(54,-2109288600,2),(54,-860976000,3),(54,-845254800,2),(54,637970400,5),(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),(55,-2147483648,1),(55,-880196400,2),(55,-769395600,3),(55,-765374400,1),(55,-86878800,4),(55,-21466800,5),(55,-5745600,4),(55,9982800,5),(55,25704000,4),(55,41432400,5),(55,57758400,4),(55,73486800,5),(55,89208000,4),(55,104936400,5),(55,120657600,4),(55,126709200,5),(55,152107200,4),(55,162392400,5),(55,183556800,4),(55,199285200,5),(55,215611200,4),(55,230734800,5),(55,247060800,4),(55,262789200,5),(55,278510400,4),(55,294238800,5),(55,309960000,4),(55,325688400,5),(55,341409600,4),(55,357138000,5),(55,372859200,4),(55,388587600,5),(55,404913600,4),(55,420037200,5),(55,436363200,6),(55,439034400,8),(55,452088000,7),(55,467809200,8),(55,483537600,7),(55,499258800,8),(55,514987200,7),(55,530708400,8),(55,544622400,7),(55,562158000,8),(55,576072000,7),(55,594212400,8),(55,607521600,7),(55,625662000,8),(55,638971200,7),(55,657111600,8),(55,671025600,7),(55,688561200,8),(55,702475200,7),(55,720010800,8),(55,733924800,7),(55,752065200,8),(55,765374400,7),(55,783514800,8),(55,796824000,7),(55,814964400,8),(55,828878400,7),(55,846414000,8),(55,860328000,7),(55,877863600,8),(55,891777600,7),(55,909313200,8),(55,923227200,7),(55,941367600,8),(55,954676800,7),(55,972817200,8),(55,986126400,7),(55,1004266800,8),(55,1018180800,7),(55,1035716400,8),(55,1049630400,7),(55,1067166000,8),(55,1081080000,7),(55,1099220400,8),(55,1112529600,7),(55,1130670000,8),(55,1143979200,7),(55,1162119600,8),(55,1173614400,7),(55,1194174000,8),(55,1205064000,7),(55,1225623600,8),(55,1236513600,7),(55,1257073200,8),(55,1268568000,7),(55,1289127600,8),(55,1300017600,7),(55,1320577200,8),(55,1331467200,7),(55,1352026800,8),(55,1362916800,7),(55,1383476400,8),(55,1394366400,7),(55,1414926000,8),(55,1425816000,7),(55,1446375600,8),(55,1457870400,7),(55,1478430000,8),(55,1489320000,7),(55,1509879600,8),(55,1520769600,7),(55,1541329200,8),(55,1552219200,7),(55,1572778800,8),(55,1583668800,7),(55,1604228400,8),(55,1615723200,7),(55,1636282800,8),(55,1647172800,7),(55,1667732400,8),(55,1678622400,7),(55,1699182000,8),(55,1710072000,7),(55,1730631600,8),(55,1741521600,7),(55,1762081200,8),(55,1772971200,7),(55,1793530800,8),(55,1805025600,7),(55,1825585200,8),(55,1836475200,7),(55,1857034800,8),(55,1867924800,7),(55,1888484400,8),(55,1899374400,7),(55,1919934000,8),(55,1930824000,7),(55,1951383600,8),(55,1962878400,7),(55,1983438000,8),(55,1994328000,7),(55,2014887600,8),(55,2025777600,7),(55,2046337200,8),(55,2057227200,7),(55,2077786800,8),(55,2088676800,7),(55,2109236400,8),(55,2120126400,7),(55,2140686000,8),(56,-2147483648,1),(56,-880200000,2),(56,-769395600,3),(56,-765378000,1),(56,-86882400,4),(56,-21470400,5),(56,-5749200,4),(56,9979200,5),(56,25700400,4),(56,41428800,5),(56,57754800,4),(56,73483200,5),(56,89204400,4),(56,104932800,5),(56,120654000,4),(56,126705600,5),(56,152103600,4),(56,162388800,5),(56,183553200,4),(56,199281600,5),(56,215607600,4),(56,230731200,5),(56,247057200,4),(56,262785600,5),(56,278506800,4),(56,294235200,5),(56,309956400,4),(56,325684800,5),(56,341406000,4),(56,357134400,5),(56,372855600,4),(56,388584000,5),(56,404910000,4),(56,420033600,5),(56,436359600,6),(56,439030800,8),(56,452084400,7),(56,467805600,8),(56,483534000,7),(56,499255200,8),(56,514983600,7),(56,530704800,8),(56,544618800,7),(56,562154400,8),(56,576068400,7),(56,594208800,8),(56,607518000,7),(56,625658400,8),(56,638967600,7),(56,657108000,8),(56,671022000,7),(56,688557600,8),(56,702471600,7),(56,720007200,8),(56,733921200,7),(56,752061600,8),(56,765370800,7),(56,783511200,8),(56,796820400,7),(56,814960800,8),(56,828874800,7),(56,846410400,8),(56,860324400,7),(56,877860000,8),(56,891774000,7),(56,909309600,8),(56,923223600,7),(56,941364000,8),(56,954673200,7),(56,972813600,8),(56,986122800,7),(56,1004263200,8),(56,1018177200,7),(56,1035712800,8),(56,1049626800,7),(56,1067162400,8),(56,1081076400,7),(56,1099216800,8),(56,1112526000,7),(56,1130666400,8),(56,1143975600,7),(56,1162116000,8),(56,1173610800,7),(56,1194170400,8),(56,1205060400,7),(56,1225620000,8),(56,1236510000,7),(56,1257069600,8),(56,1268564400,7),(56,1289124000,8),(56,1300014000,7),(56,1320573600,8),(56,1331463600,7),(56,1352023200,8),(56,1362913200,7),(56,1383472800,8),(56,1394362800,7),(56,1414922400,8),(56,1425812400,7),(56,1446372000,8),(56,1457866800,7),(56,1478426400,8),(56,1489316400,7),(56,1509876000,8),(56,1520766000,7),(56,1541325600,8),(56,1552215600,7),(56,1572775200,8),(56,1583665200,7),(56,1604224800,8),(56,1615719600,7),(56,1636279200,8),(56,1647169200,7),(56,1667728800,8),(56,1678618800,7),(56,1699178400,8),(56,1710068400,7),(56,1730628000,8),(56,1741518000,7),(56,1762077600,8),(56,1772967600,7),(56,1793527200,8),(56,1805022000,7),(56,1825581600,8),(56,1836471600,7),(56,1857031200,8),(56,1867921200,7),(56,1888480800,8),(56,1899370800,7),(56,1919930400,8),(56,1930820400,7),(56,1951380000,8),(56,1962874800,7),(56,1983434400,8),(56,1994324400,7),(56,2014884000,8),(56,2025774000,7),(56,2046333600,8),(56,2057223600,7),(56,2077783200,8),(56,2088673200,7),(56,2109232800,8),(56,2120122800,7),(56,2140682400,8),(57,-2147483648,0),(57,-1825098836,1),(58,-2147483648,0),(58,-1825098836,1),(59,-2147483648,0),(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),(59,2147483647,2),(60,-2147483648,1),(60,-1567453392,2),(60,-1233432000,3),(60,-1222981200,2),(60,-1205956800,3),(60,-1194037200,2),(60,-1172865600,3),(60,-1162501200,2),(60,-1141329600,3),(60,-1130965200,2),(60,-1109793600,3),(60,-1099429200,2),(60,-1078257600,3),(60,-1067806800,2),(60,-1046635200,3),(60,-1036270800,2),(60,-1015099200,3),(60,-1004734800,2),(60,-983563200,3),(60,-973198800,2),(60,-952027200,3),(60,-941576400,2),(60,-931032000,3),(60,-900882000,2),(60,-890337600,3),(60,-833749200,2),(60,-827265600,3),(60,-752274000,2),(60,-733780800,3),(60,-197326800,2),(60,-190843200,3),(60,-184194000,2),(60,-164491200,3),(60,-152658000,2),(60,-132955200,3),(60,-121122000,2),(60,-101419200,3),(60,-86821200,2),(60,-71092800,3),(60,-54766800,2),(60,-39038400,3),(60,-23317200,2),(60,-7588800,5),(60,128142000,4),(60,136605600,5),(60,596948400,4),(60,605066400,5),(60,624423600,4),(60,636516000,5),(60,656478000,4),(60,667965600,5),(60,687927600,4),(60,699415200,5),(60,719377200,4),(60,731469600,5),(60,938919600,3),(60,952052400,5),(60,1198983600,4),(60,1205632800,5),(60,1224385200,4),(60,1237082400,5),(60,2147483647,5),(61,-2147483648,1),(61,-1567453392,2),(61,-1233432000,3),(61,-1222981200,2),(61,-1205956800,3),(61,-1194037200,2),(61,-1172865600,3),(61,-1162501200,2),(61,-1141329600,3),(61,-1130965200,2),(61,-1109793600,3),(61,-1099429200,2),(61,-1078257600,3),(61,-1067806800,2),(61,-1046635200,3),(61,-1036270800,2),(61,-1015099200,3),(61,-1004734800,2),(61,-983563200,3),(61,-973198800,2),(61,-952027200,3),(61,-941576400,2),(61,-931032000,3),(61,-900882000,2),(61,-890337600,3),(61,-833749200,2),(61,-827265600,3),(61,-752274000,2),(61,-733780800,3),(61,-197326800,2),(61,-190843200,3),(61,-184194000,2),(61,-164491200,3),(61,-152658000,2),(61,-132955200,3),(61,-121122000,2),(61,-101419200,3),(61,-86821200,2),(61,-71092800,3),(61,-54766800,2),(61,-39038400,3),(61,-23317200,2),(61,-7588800,5),(61,128142000,4),(61,136605600,5),(61,596948400,4),(61,605066400,5),(61,624423600,4),(61,636516000,5),(61,656478000,4),(61,667965600,2),(61,687931200,4),(61,699415200,5),(61,719377200,4),(61,731469600,5),(61,938919600,3),(61,952052400,5),(61,1086058800,2),(61,1087704000,5),(61,1198983600,4),(61,1205632800,5),(61,2147483647,5),(62,-2147483648,1),(62,-1567453392,2),(62,-1233432000,3),(62,-1222981200,2),(62,-1205956800,3),(62,-1194037200,2),(62,-1172865600,3),(62,-1162501200,2),(62,-1141329600,3),(62,-1130965200,2),(62,-1109793600,3),(62,-1099429200,2),(62,-1078257600,3),(62,-1067806800,2),(62,-1046635200,3),(62,-1036270800,2),(62,-1015099200,3),(62,-1004734800,2),(62,-983563200,3),(62,-973198800,2),(62,-952027200,3),(62,-941576400,2),(62,-931032000,3),(62,-900882000,2),(62,-890337600,3),(62,-833749200,2),(62,-827265600,3),(62,-752274000,2),(62,-733780800,3),(62,-197326800,2),(62,-190843200,3),(62,-184194000,2),(62,-164491200,3),(62,-152658000,2),(62,-132955200,3),(62,-121122000,2),(62,-101419200,3),(62,-86821200,2),(62,-71092800,3),(62,-54766800,2),(62,-39038400,3),(62,-23317200,2),(62,-7588800,5),(62,128142000,4),(62,136605600,5),(62,596948400,4),(62,605066400,5),(62,624423600,4),(62,636516000,5),(62,656478000,4),(62,667965600,2),(62,687931200,4),(62,699415200,5),(62,719377200,4),(62,731469600,5),(62,938919600,3),(62,952052400,5),(62,1086058800,2),(62,1087704000,5),(62,1198983600,4),(62,1205632800,5),(62,2147483647,5),(63,-2147483648,1),(63,-1567453392,2),(63,-1233432000,3),(63,-1222981200,2),(63,-1205956800,3),(63,-1194037200,2),(63,-1172865600,3),(63,-1162501200,2),(63,-1141329600,3),(63,-1130965200,2),(63,-1109793600,3),(63,-1099429200,2),(63,-1078257600,3),(63,-1067806800,2),(63,-1046635200,3),(63,-1036270800,2),(63,-1015099200,3),(63,-1004734800,2),(63,-983563200,3),(63,-973198800,2),(63,-952027200,3),(63,-941576400,2),(63,-931032000,3),(63,-900882000,2),(63,-890337600,3),(63,-833749200,2),(63,-827265600,3),(63,-752274000,2),(63,-733780800,3),(63,-197326800,2),(63,-190843200,3),(63,-184194000,2),(63,-164491200,3),(63,-152658000,2),(63,-132955200,3),(63,-121122000,2),(63,-101419200,3),(63,-86821200,2),(63,-71092800,3),(63,-54766800,2),(63,-39038400,3),(63,-23317200,2),(63,-7588800,5),(63,128142000,4),(63,136605600,5),(63,596948400,4),(63,605066400,5),(63,624423600,4),(63,636516000,5),(63,656478000,4),(63,667965600,2),(63,687931200,4),(63,699415200,5),(63,719377200,4),(63,731469600,5),(63,938919600,3),(63,952052400,5),(63,1198983600,4),(63,1205632800,5),(63,1224385200,4),(63,1237082400,5),(63,2147483647,5),(64,-2147483648,1),(64,-1567453392,2),(64,-1233432000,3),(64,-1222981200,2),(64,-1205956800,3),(64,-1194037200,2),(64,-1172865600,3),(64,-1162501200,2),(64,-1141329600,3),(64,-1130965200,2),(64,-1109793600,3),(64,-1099429200,2),(64,-1078257600,3),(64,-1067806800,2),(64,-1046635200,3),(64,-1036270800,2),(64,-1015099200,3),(64,-1004734800,2),(64,-983563200,3),(64,-973198800,2),(64,-952027200,3),(64,-941576400,2),(64,-931032000,3),(64,-900882000,2),(64,-890337600,3),(64,-833749200,2),(64,-827265600,3),(64,-752274000,2),(64,-733780800,3),(64,-197326800,2),(64,-190843200,3),(64,-184194000,2),(64,-164491200,3),(64,-152658000,2),(64,-132955200,3),(64,-121122000,2),(64,-101419200,3),(64,-86821200,2),(64,-71092800,3),(64,-54766800,2),(64,-39038400,3),(64,-23317200,2),(64,-7588800,5),(64,128142000,4),(64,136605600,5),(64,596948400,4),(64,605066400,5),(64,624423600,4),(64,636516000,2),(64,657086400,3),(64,669178800,2),(64,686721600,4),(64,699415200,5),(64,719377200,4),(64,731469600,5),(64,938919600,3),(64,952052400,5),(64,1198983600,4),(64,1205632800,5),(64,2147483647,5),(65,-2147483648,1),(65,-1567453392,2),(65,-1233432000,3),(65,-1222981200,2),(65,-1205956800,3),(65,-1194037200,2),(65,-1172865600,3),(65,-1162501200,2),(65,-1141329600,3),(65,-1130965200,2),(65,-1109793600,3),(65,-1099429200,2),(65,-1078257600,3),(65,-1067806800,2),(65,-1046635200,3),(65,-1036270800,2),(65,-1015099200,3),(65,-1004734800,2),(65,-983563200,3),(65,-973198800,2),(65,-952027200,3),(65,-941576400,2),(65,-931032000,3),(65,-900882000,2),(65,-890337600,3),(65,-833749200,2),(65,-827265600,3),(65,-752274000,2),(65,-733780800,3),(65,-197326800,2),(65,-190843200,3),(65,-184194000,2),(65,-164491200,3),(65,-152658000,2),(65,-132955200,3),(65,-121122000,2),(65,-101419200,3),(65,-86821200,2),(65,-71092800,3),(65,-54766800,2),(65,-39038400,3),(65,-23317200,2),(65,-7588800,5),(65,128142000,4),(65,136605600,5),(65,596948400,4),(65,605066400,5),(65,624423600,4),(65,636516000,5),(65,656478000,4),(65,667792800,2),(65,673588800,5),(65,687927600,4),(65,699415200,5),(65,719377200,4),(65,731469600,5),(65,938919600,3),(65,952052400,5),(65,1086058800,2),(65,1087704000,5),(65,1198983600,4),(65,1205632800,5),(65,2147483647,5),(66,-2147483648,1),(66,-1567453392,2),(66,-1233432000,3),(66,-1222981200,2),(66,-1205956800,3),(66,-1194037200,2),(66,-1172865600,3),(66,-1162501200,2),(66,-1141329600,3),(66,-1130965200,2),(66,-1109793600,3),(66,-1099429200,2),(66,-1078257600,3),(66,-1067806800,2),(66,-1046635200,3),(66,-1036270800,2),(66,-1015099200,3),(66,-1004734800,2),(66,-983563200,3),(66,-973198800,2),(66,-952027200,3),(66,-941576400,2),(66,-931032000,3),(66,-900882000,2),(66,-890337600,3),(66,-833749200,2),(66,-827265600,3),(66,-752274000,2),(66,-733780800,3),(66,-197326800,2),(66,-190843200,3),(66,-184194000,2),(66,-164491200,3),(66,-152658000,2),(66,-132955200,3),(66,-121122000,2),(66,-101419200,3),(66,-86821200,2),(66,-71092800,3),(66,-54766800,2),(66,-39038400,3),(66,-23317200,2),(66,-7588800,5),(66,128142000,4),(66,136605600,5),(66,596948400,4),(66,605066400,5),(66,624423600,4),(66,636516000,2),(66,655963200,3),(66,667796400,2),(66,687499200,3),(66,699418800,2),(66,719380800,4),(66,731469600,5),(66,938919600,3),(66,952052400,5),(66,1085281200,2),(66,1096171200,5),(66,1198983600,4),(66,1205632800,5),(66,2147483647,5),(67,-2147483648,1),(67,-1567453392,2),(67,-1233432000,3),(67,-1222981200,2),(67,-1205956800,3),(67,-1194037200,2),(67,-1172865600,3),(67,-1162501200,2),(67,-1141329600,3),(67,-1130965200,2),(67,-1109793600,3),(67,-1099429200,2),(67,-1078257600,3),(67,-1067806800,2),(67,-1046635200,3),(67,-1036270800,2),(67,-1015099200,3),(67,-1004734800,2),(67,-983563200,3),(67,-973198800,2),(67,-952027200,3),(67,-941576400,2),(67,-931032000,3),(67,-900882000,2),(67,-890337600,3),(67,-833749200,2),(67,-827265600,3),(67,-752274000,2),(67,-733780800,3),(67,-197326800,2),(67,-190843200,3),(67,-184194000,2),(67,-164491200,3),(67,-152658000,2),(67,-132955200,3),(67,-121122000,2),(67,-101419200,3),(67,-86821200,2),(67,-71092800,3),(67,-54766800,2),(67,-39038400,3),(67,-23317200,2),(67,-7588800,5),(67,128142000,4),(67,136605600,5),(67,596948400,4),(67,605066400,5),(67,624423600,4),(67,636516000,5),(67,656478000,4),(67,667965600,5),(67,687927600,4),(67,699415200,5),(67,719377200,4),(67,731469600,5),(67,938919600,3),(67,952052400,5),(67,1086058800,2),(67,1087704000,5),(67,1198983600,4),(67,1205632800,5),(67,2147483647,5),(68,-2147483648,1),(68,-1567453392,2),(68,-1233432000,3),(68,-1222981200,2),(68,-1205956800,3),(68,-1194037200,2),(68,-1172865600,3),(68,-1162501200,2),(68,-1141329600,3),(68,-1130965200,2),(68,-1109793600,3),(68,-1099429200,2),(68,-1078257600,3),(68,-1067806800,2),(68,-1046635200,3),(68,-1036270800,2),(68,-1015099200,3),(68,-1004734800,2),(68,-983563200,3),(68,-973198800,2),(68,-952027200,3),(68,-941576400,2),(68,-931032000,3),(68,-900882000,2),(68,-890337600,3),(68,-833749200,2),(68,-827265600,3),(68,-752274000,2),(68,-733780800,3),(68,-197326800,2),(68,-190843200,3),(68,-184194000,2),(68,-164491200,3),(68,-152658000,2),(68,-132955200,3),(68,-121122000,2),(68,-101419200,3),(68,-86821200,2),(68,-71092800,3),(68,-54766800,2),(68,-39038400,3),(68,-23317200,2),(68,-7588800,5),(68,128142000,4),(68,136605600,5),(68,596948400,4),(68,605066400,5),(68,624423600,4),(68,636516000,5),(68,656478000,4),(68,667965600,2),(68,687931200,4),(68,699415200,5),(68,719377200,4),(68,731469600,5),(68,938919600,3),(68,952052400,5),(68,1198983600,4),(68,1205632800,5),(68,2147483647,5),(69,-2147483648,1),(69,-1567453392,2),(69,-1233432000,3),(69,-1222981200,2),(69,-1205956800,3),(69,-1194037200,2),(69,-1172865600,3),(69,-1162501200,2),(69,-1141329600,3),(69,-1130965200,2),(69,-1109793600,3),(69,-1099429200,2),(69,-1078257600,3),(69,-1067806800,2),(69,-1046635200,3),(69,-1036270800,2),(69,-1015099200,3),(69,-1004734800,2),(69,-983563200,3),(69,-973198800,2),(69,-952027200,3),(69,-941576400,2),(69,-931032000,3),(69,-900882000,2),(69,-890337600,3),(69,-833749200,2),(69,-827265600,3),(69,-752274000,2),(69,-733780800,3),(69,-197326800,2),(69,-190843200,3),(69,-184194000,2),(69,-164491200,3),(69,-152658000,2),(69,-132955200,3),(69,-121122000,2),(69,-101419200,3),(69,-86821200,2),(69,-71092800,3),(69,-54766800,2),(69,-39038400,3),(69,-23317200,2),(69,-7588800,5),(69,128142000,4),(69,136605600,5),(69,596948400,4),(69,605066400,5),(69,624423600,4),(69,636516000,5),(69,656478000,4),(69,667792800,2),(69,673588800,5),(69,687927600,4),(69,699415200,5),(69,719377200,4),(69,731469600,5),(69,938919600,3),(69,952052400,5),(69,1085972400,2),(69,1090728000,5),(69,1198983600,4),(69,1205632800,5),(69,2147483647,5),(70,-2147483648,1),(70,-1567453392,2),(70,-1233432000,3),(70,-1222981200,2),(70,-1205956800,3),(70,-1194037200,2),(70,-1172865600,3),(70,-1162501200,2),(70,-1141329600,3),(70,-1130965200,2),(70,-1109793600,3),(70,-1099429200,2),(70,-1078257600,3),(70,-1067806800,2),(70,-1046635200,3),(70,-1036270800,2),(70,-1015099200,3),(70,-1004734800,2),(70,-983563200,3),(70,-973198800,2),(70,-952027200,3),(70,-941576400,2),(70,-931032000,3),(70,-900882000,2),(70,-890337600,3),(70,-833749200,2),(70,-827265600,3),(70,-752274000,2),(70,-733780800,3),(70,-197326800,2),(70,-190843200,3),(70,-184194000,2),(70,-164491200,3),(70,-152658000,2),(70,-132955200,3),(70,-121122000,2),(70,-101419200,3),(70,-86821200,2),(70,-71092800,3),(70,-54766800,2),(70,-39038400,3),(70,-23317200,2),(70,-7588800,5),(70,128142000,4),(70,136605600,5),(70,596948400,4),(70,605066400,5),(70,624423600,4),(70,637380000,2),(70,655963200,3),(70,667796400,2),(70,675748800,5),(70,938919600,3),(70,952052400,5),(70,1085972400,2),(70,1090728000,5),(70,1198983600,4),(70,1200880800,3),(70,1205031600,2),(70,1223784000,3),(70,1236481200,2),(70,1255233600,5),(70,2147483647,5),(71,-2147483648,1),(71,-1567453392,2),(71,-1233432000,3),(71,-1222981200,2),(71,-1205956800,3),(71,-1194037200,2),(71,-1172865600,3),(71,-1162501200,2),(71,-1141329600,3),(71,-1130965200,2),(71,-1109793600,3),(71,-1099429200,2),(71,-1078257600,3),(71,-1067806800,2),(71,-1046635200,3),(71,-1036270800,2),(71,-1015099200,3),(71,-1004734800,2),(71,-983563200,3),(71,-973198800,2),(71,-952027200,3),(71,-941576400,2),(71,-931032000,3),(71,-900882000,2),(71,-890337600,3),(71,-833749200,2),(71,-827265600,3),(71,-752274000,2),(71,-733780800,3),(71,-197326800,2),(71,-190843200,3),(71,-184194000,2),(71,-164491200,3),(71,-152658000,2),(71,-132955200,3),(71,-121122000,2),(71,-101419200,3),(71,-86821200,2),(71,-71092800,3),(71,-54766800,2),(71,-39038400,3),(71,-23317200,2),(71,-7588800,5),(71,128142000,4),(71,136605600,5),(71,596948400,4),(71,605066400,5),(71,624423600,4),(71,636516000,5),(71,656478000,4),(71,667965600,2),(71,687931200,4),(71,699415200,5),(71,719377200,4),(71,731469600,5),(71,938919600,3),(71,952052400,5),(71,1086058800,2),(71,1087099200,5),(71,1198983600,4),(71,1205632800,5),(71,1224385200,4),(71,1237082400,5),(71,2147483647,5),(72,-2147483648,1),(72,-1567453392,2),(72,-1233432000,3),(72,-1222981200,2),(72,-1205956800,3),(72,-1194037200,2),(72,-1172865600,3),(72,-1162501200,2),(72,-1141329600,3),(72,-1130965200,2),(72,-1109793600,3),(72,-1099429200,2),(72,-1078257600,3),(72,-1067806800,2),(72,-1046635200,3),(72,-1036270800,2),(72,-1015099200,3),(72,-1004734800,2),(72,-983563200,3),(72,-973198800,2),(72,-952027200,3),(72,-941576400,2),(72,-931032000,3),(72,-900882000,2),(72,-890337600,3),(72,-833749200,2),(72,-827265600,3),(72,-752274000,2),(72,-733780800,3),(72,-197326800,2),(72,-190843200,3),(72,-184194000,2),(72,-164491200,3),(72,-152658000,2),(72,-132955200,3),(72,-121122000,2),(72,-101419200,3),(72,-86821200,2),(72,-71092800,3),(72,-54766800,2),(72,-39038400,3),(72,-23317200,2),(72,-7588800,5),(72,128142000,4),(72,136605600,5),(72,596948400,4),(72,605066400,5),(72,624423600,4),(72,636516000,5),(72,656478000,4),(72,667965600,5),(72,687927600,4),(72,699415200,5),(72,719377200,4),(72,731469600,5),(72,938919600,3),(72,952052400,5),(72,1085886000,2),(72,1087704000,5),(72,1198983600,4),(72,1205632800,5),(72,2147483647,5),(73,-2147483648,0),(73,-1826738653,1),(73,-157750200,2),(74,-2147483648,1),(74,-1206389360,2),(74,86760000,3),(74,134017200,2),(74,181368000,4),(74,194497200,2),(74,212990400,4),(74,226033200,2),(74,244526400,4),(74,257569200,2),(74,276062400,4),(74,291783600,2),(74,307598400,4),(74,323406000,2),(74,339220800,4),(74,354942000,2),(74,370756800,4),(74,386478000,2),(74,402292800,4),(74,418014000,2),(74,433828800,4),(74,449636400,2),(74,465451200,4),(74,481172400,2),(74,496987200,4),(74,512708400,2),(74,528523200,4),(74,544244400,2),(74,560059200,4),(74,575866800,2),(74,591681600,4),(74,607402800,2),(74,625032000,4),(74,638938800,2),(74,654753600,4),(74,670474800,2),(74,686721600,4),(74,699418800,2),(74,718257600,4),(74,733546800,2),(74,749448000,4),(74,762318000,2),(74,780984000,4),(74,793767600,2),(74,812520000,4),(74,825649200,2),(74,844574400,4),(74,856666800,2),(74,876024000,4),(74,888721200,2),(74,907473600,4),(74,920775600,2),(74,938923200,4),(74,952225200,2),(74,970372800,4),(74,983674800,2),(74,1002427200,4),(74,1018148400,2),(74,1030852800,4),(74,1049598000,2),(74,1062907200,4),(74,1081047600,2),(74,1097985600,4),(74,1110682800,2),(74,1129435200,4),(74,1142132400,2),(74,1160884800,4),(74,1173582000,2),(74,1192939200,4),(74,1205031600,2),(74,1224388800,4),(74,1236481200,2),(74,1255838400,4),(74,1270954800,2),(74,1286078400,4),(74,1302404400,2),(74,1317528000,4),(74,1333854000,2),(74,1349582400,4),(74,1364094000,2),(74,1381032000,4),(74,1395543600,2),(74,1412481600,4),(74,1426993200,2),(74,1443931200,4),(74,1459047600,2),(74,1475380800,4),(74,1490497200,2),(74,1506830400,4),(74,1521946800,2),(74,1538884800,4),(74,1553396400,2),(74,1570334400,4),(74,1584846000,2),(74,1601784000,4),(74,1616900400,2),(74,1633233600,4),(74,1648350000,2),(74,1664683200,4),(74,1679799600,2),(74,1696132800,4),(74,1711249200,2),(74,1728187200,4),(74,1742698800,2),(74,1759636800,4),(74,1774148400,2),(74,1791086400,4),(74,1806202800,2),(74,1822536000,4),(74,1837652400,2),(74,1853985600,4),(74,1869102000,2),(74,1886040000,4),(74,1900551600,2),(74,1917489600,4),(74,1932001200,2),(74,1948939200,4),(74,1964055600,2),(74,1980388800,4),(74,1995505200,2),(74,2011838400,4),(74,2026954800,2),(74,2043288000,4),(74,2058404400,2),(74,2075342400,4),(74,2089854000,2),(74,2106792000,4),(74,2121303600,2),(74,2138241600,4),(74,2147483647,4),(75,-2147483648,2),(75,-1632067200,1),(75,-1615136400,2),(75,-923248800,1),(75,-880214400,3),(75,-769395600,4),(75,-765392400,5),(76,-2147483648,1),(76,-880196400,2),(76,-769395600,3),(76,-765374400,1),(76,-86878800,4),(76,-21466800,5),(76,-5745600,4),(76,9982800,5),(76,25704000,4),(76,41432400,5),(76,57758400,4),(76,73486800,5),(76,89208000,4),(76,104936400,5),(76,120657600,4),(76,126709200,5),(76,152107200,4),(76,162392400,5),(76,183556800,4),(76,199285200,5),(76,215611200,4),(76,230734800,5),(76,247060800,4),(76,262789200,5),(76,278510400,4),(76,294238800,5),(76,309960000,4),(76,325688400,5),(76,341409600,4),(76,357138000,5),(76,372859200,4),(76,388587600,5),(76,404913600,4),(76,420037200,5),(76,436363200,6),(76,439034400,8),(76,452088000,7),(76,467809200,8),(76,483537600,7),(76,499258800,8),(76,514987200,7),(76,530708400,8),(76,544622400,7),(76,562158000,8),(76,576072000,7),(76,594212400,8),(76,607521600,7),(76,625662000,8),(76,638971200,7),(76,657111600,8),(76,671025600,7),(76,688561200,8),(76,702475200,7),(76,720010800,8),(76,733924800,7),(76,752065200,8),(76,765374400,7),(76,783514800,8),(76,796824000,7),(76,814964400,8),(76,828878400,7),(76,846414000,8),(76,860328000,7),(76,877863600,8),(76,891777600,7),(76,909313200,8),(76,923227200,7),(76,941367600,8),(76,954676800,7),(76,972817200,8),(76,986126400,7),(76,1004266800,8),(76,1018180800,7),(76,1035716400,8),(76,1049630400,7),(76,1067166000,8),(76,1081080000,7),(76,1099220400,8),(76,1112529600,7),(76,1130670000,8),(76,1143979200,7),(76,1162119600,8),(76,1173614400,7),(76,1194174000,8),(76,1205064000,7),(76,1225623600,8),(76,1236513600,7),(76,1257073200,8),(76,1268568000,7),(76,1289127600,8),(76,1300017600,7),(76,1320577200,8),(76,1331467200,7),(76,1352026800,8),(76,1362916800,7),(76,1383476400,8),(76,1394366400,7),(76,1414926000,8),(76,1425816000,7),(76,1446375600,8),(76,1457870400,7),(76,1478430000,8),(76,1489320000,7),(76,1509879600,8),(76,1520769600,7),(76,1541329200,8),(76,1552219200,7),(76,1572778800,8),(76,1583668800,7),(76,1604228400,8),(76,1615723200,7),(76,1636282800,8),(76,1647172800,7),(76,1667732400,8),(76,1678622400,7),(76,1699182000,8),(76,1710072000,7),(76,1730631600,8),(76,1741521600,7),(76,1762081200,8),(76,1772971200,7),(76,1793530800,8),(76,1805025600,7),(76,1825585200,8),(76,1836475200,7),(76,1857034800,8),(76,1867924800,7),(76,1888484400,8),(76,1899374400,7),(76,1919934000,8),(76,1930824000,7),(76,1951383600,8),(76,1962878400,7),(76,1983438000,8),(76,1994328000,7),(76,2014887600,8),(76,2025777600,7),(76,2046337200,8),(76,2057227200,7),(76,2077786800,8),(76,2088676800,7),(76,2109236400,8),(76,2120126400,7),(76,2140686000,8),(77,-2147483648,0),(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),(77,2147483647,2),(78,-2147483648,0),(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,-2147483648,0),(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,-2147483648,0),(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),(80,2147483647,2),(81,-2147483648,0),(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,-868212000,3),(81,-769395600,4),(81,-758746800,2),(81,-701892000,1),(81,-690402600,2),(81,-670442400,1),(81,-658953000,2),(81,-638992800,1),(81,-627503400,2),(81,-606938400,1),(81,-596053800,2),(81,-575488800,1),(81,-564604200,2),(81,-544039200,1),(81,-532549800,2),(81,-512589600,1),(81,-501100200,2),(81,-481140000,1),(81,-469650600,2),(81,-449690400,1),(81,-438201000,2),(81,-417636000,1),(81,-406751400,2),(81,-386186400,1),(81,-375301800,2),(81,-354736800,1),(81,-343247400,2),(81,-323287200,1),(81,-311797800,2),(81,-291837600,1),(81,-280348200,2),(81,-259783200,1),(81,-248898600,2),(81,-228333600,1),(81,-217449000,2),(81,-196884000,1),(81,-185999400,2),(81,-165434400,1),(81,-153945000,2),(81,-133984800,1),(81,-122495400,2),(81,-102535200,1),(81,-91045800,2),(81,-70480800,1),(81,-59596200,2),(81,123919200,5),(81,129618000,2),(81,409039200,5),(81,413874000,2),(82,-2147483648,2),(82,-1632074400,1),(82,-1615143600,2),(82,-880221600,3),(82,-769395600,4),(82,-765399600,2),(83,-2147483648,0),(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),(83,2147483647,2),(84,-2147483648,1),(84,-1739041424,3),(84,704869200,2),(84,733896000,3),(84,2147483647,3),(85,-2147483648,2),(85,-1633269600,1),(85,-1615129200,2),(85,-1601820000,1),(85,-1583679600,2),(85,-1471788000,5),(85,-880210800,3),(85,-769395600,4),(85,-765388800,5),(85,-84380400,6),(85,-68659200,5),(85,-52930800,6),(85,-37209600,5),(85,-21481200,6),(85,-5760000,5),(85,9968400,6),(85,25689600,5),(85,41418000,6),(85,57744000,5),(85,73472400,6),(85,89193600,5),(85,104922000,6),(85,120643200,5),(85,129114000,6),(85,152092800,5),(85,162378000,6),(85,183542400,5),(85,199270800,6),(85,215596800,5),(85,230720400,6),(85,247046400,5),(85,262774800,6),(85,278496000,5),(85,294224400,6),(85,309945600,5),(85,325674000,6),(85,341395200,5),(85,357123600,6),(85,372844800,5),(85,388573200,6),(85,404899200,5),(85,420022800,6),(85,436348800,5),(85,452077200,6),(85,467798400,5),(85,483526800,6),(85,499248000,5),(85,514976400,6),(85,530697600,5),(85,544611600,6),(85,562147200,5),(85,576061200,6),(85,594201600,5),(85,607510800,6),(85,625651200,5),(85,638960400,6),(85,657100800,5),(85,671014800,6),(85,688550400,5),(85,702464400,6),(85,720000000,5),(85,733914000,6),(85,752054400,5),(85,765363600,6),(85,783504000,5),(85,796813200,6),(85,814953600,5),(85,828867600,6),(85,846403200,5),(85,860317200,6),(85,877852800,5),(85,891766800,6),(85,909302400,5),(85,923216400,6),(85,941356800,5),(85,954666000,6),(85,972806400,5),(85,986115600,6),(85,1004256000,5),(85,1018170000,6),(85,1035705600,5),(85,1049619600,6),(85,1067155200,5),(85,1081069200,6),(85,1099209600,5),(85,1112518800,6),(85,1130659200,5),(85,1143968400,6),(85,1162108800,5),(85,1173603600,6),(85,1194163200,5),(85,1205053200,6),(85,1225612800,5),(85,1236502800,6),(85,1257062400,5),(85,1268557200,6),(85,1289116800,5),(85,1300006800,6),(85,1320566400,5),(85,1331456400,6),(85,1352016000,5),(85,1362906000,6),(85,1383465600,5),(85,1394355600,6),(85,1414915200,5),(85,1425805200,6),(85,1446364800,5),(85,1457859600,6),(85,1478419200,5),(85,1489309200,6),(85,1509868800,5),(85,1520758800,6),(85,1541318400,5),(85,1552208400,6),(85,1572768000,5),(85,1583658000,6),(85,1604217600,5),(85,1615712400,6),(85,1636272000,5),(85,1647162000,6),(85,1667721600,5),(85,1678611600,6),(85,1699171200,5),(85,1710061200,6),(85,1730620800,5),(85,1741510800,6),(85,1762070400,5),(85,1772960400,6),(85,1793520000,5),(85,1805014800,6),(85,1825574400,5),(85,1836464400,6),(85,1857024000,5),(85,1867914000,6),(85,1888473600,5),(85,1899363600,6),(85,1919923200,5),(85,1930813200,6),(85,1951372800,5),(85,1962867600,6),(85,1983427200,5),(85,1994317200,6),(85,2014876800,5),(85,2025766800,6),(85,2046326400,5),(85,2057216400,6),(85,2077776000,5),(85,2088666000,6),(85,2109225600,5),(85,2120115600,6),(85,2140675200,5),(86,-2147483648,1),(86,-1567453392,2),(86,-1233432000,3),(86,-1222981200,2),(86,-1205956800,3),(86,-1194037200,2),(86,-1172865600,3),(86,-1162501200,2),(86,-1141329600,3),(86,-1130965200,2),(86,-1109793600,3),(86,-1099429200,2),(86,-1078257600,3),(86,-1067806800,2),(86,-1046635200,3),(86,-1036270800,2),(86,-1015099200,3),(86,-1004734800,2),(86,-983563200,3),(86,-973198800,2),(86,-952027200,3),(86,-941576400,2),(86,-931032000,3),(86,-900882000,2),(86,-890337600,3),(86,-833749200,2),(86,-827265600,3),(86,-752274000,2),(86,-733780800,3),(86,-197326800,2),(86,-190843200,3),(86,-184194000,2),(86,-164491200,3),(86,-152658000,2),(86,-132955200,3),(86,-121122000,2),(86,-101419200,3),(86,-86821200,2),(86,-71092800,3),(86,-54766800,2),(86,-39038400,3),(86,-23317200,2),(86,-7588800,5),(86,128142000,4),(86,136605600,5),(86,596948400,4),(86,605066400,5),(86,624423600,4),(86,636516000,5),(86,656478000,4),(86,667965600,5),(86,687927600,4),(86,699415200,5),(86,719377200,4),(86,731469600,5),(86,938919600,3),(86,952052400,5),(86,1198983600,4),(86,1205632800,5),(86,1224385200,4),(86,1237082400,5),(86,2147483647,5),(87,-2147483648,0),(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,-2147483648,0),(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,2147483647,2),(89,-2147483648,0),(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,-2147483648,1),(90,-1826739140,2),(90,-157750200,3),(90,1197183600,2),(90,1462086000,3),(90,2147483647,3),(91,-2147483648,1),(91,-1567453392,2),(91,-1233432000,3),(91,-1222981200,2),(91,-1205956800,3),(91,-1194037200,2),(91,-1172865600,3),(91,-1162501200,2),(91,-1141329600,3),(91,-1130965200,2),(91,-1109793600,3),(91,-1099429200,2),(91,-1078257600,3),(91,-1067806800,2),(91,-1046635200,3),(91,-1036270800,2),(91,-1015099200,3),(91,-1004734800,2),(91,-983563200,3),(91,-973198800,2),(91,-952027200,3),(91,-941576400,2),(91,-931032000,3),(91,-900882000,2),(91,-890337600,3),(91,-833749200,2),(91,-827265600,3),(91,-752274000,2),(91,-733780800,3),(91,-197326800,2),(91,-190843200,3),(91,-184194000,2),(91,-164491200,3),(91,-152658000,2),(91,-132955200,3),(91,-121122000,2),(91,-101419200,3),(91,-86821200,2),(91,-71092800,3),(91,-54766800,2),(91,-39038400,3),(91,-23317200,2),(91,-7588800,5),(91,128142000,4),(91,136605600,5),(91,596948400,4),(91,605066400,5),(91,624423600,4),(91,636516000,5),(91,656478000,4),(91,667965600,2),(91,687931200,4),(91,699415200,5),(91,719377200,4),(91,731469600,5),(91,938919600,3),(91,952052400,5),(91,1086058800,2),(91,1087704000,5),(91,1198983600,4),(91,1205632800,5),(91,2147483647,5),(92,-2147483648,0),(92,-1846269040,1),(92,-71092800,2),(92,2147483647,2),(93,-2147483648,1),(93,-1946918424,2),(94,-2147483648,2),(94,-1633276800,1),(94,-1615136400,2),(94,-1601827200,1),(94,-1583686800,2),(94,-1563724800,1),(94,-1551632400,2),(94,-1538928000,1),(94,-1520182800,2),(94,-1504454400,1),(94,-1491757200,2),(94,-1473004800,1),(94,-1459702800,2),(94,-1441555200,1),(94,-1428253200,2),(94,-1410105600,1),(94,-1396803600,2),(94,-1378656000,1),(94,-1365354000,2),(94,-1347206400,1),(94,-1333904400,2),(94,-1315152000,1),(94,-1301850000,2),(94,-1283702400,1),(94,-1270400400,2),(94,-1252252800,1),(94,-1238950800,2),(94,-1220803200,1),(94,-1207501200,2),(94,-1189353600,1),(94,-1176051600,2),(94,-1157299200,1),(94,-1144602000,2),(94,-1125849600,1),(94,-1112547600,2),(94,-1094400000,1),(94,-1081098000,2),(94,-1067788800,3),(94,-1045414800,2),(94,-1031500800,1),(94,-1018198800,2),(94,-1000051200,1),(94,-986749200,2),(94,-967996800,1),(94,-955299600,2),(94,-936547200,1),(94,-923245200,2),(94,-905097600,1),(94,-891795600,2),(94,-880214400,4),(94,-769395600,5),(94,-765392400,2),(94,-747244800,1),(94,-733942800,2),(94,-715795200,1),(94,-702493200,2),(94,-684345600,1),(94,-671043600,2),(94,-652896000,1),(94,-639594000,2),(94,-620841600,1),(94,-608144400,2),(94,-589392000,1),(94,-576090000,2),(94,-557942400,1),(94,-544640400,2),(94,-526492800,1),(94,-513190800,2),(94,-495043200,1),(94,-481741200,2),(94,-463593600,1),(94,-447267600,2),(94,-431539200,1),(94,-415818000,2),(94,-400089600,1),(94,-384368400,2),(94,-368640000,1),(94,-352918800,2),(94,-337190400,1),(94,-321469200,2),(94,-305740800,1),(94,-289414800,2),(94,-273686400,1),(94,-257965200,2),(94,-242236800,1),(94,-226515600,2),(94,-210787200,1),(94,-195066000,2),(94,-179337600,1),(94,-163616400,2),(94,-147888000,1),(94,-131562000,2),(94,-116438400,1),(94,-100112400,2),(94,-84384000,1),(94,-68662800,2),(94,-52934400,1),(94,-37213200,2),(94,-21484800,1),(94,-5763600,2),(94,9964800,1),(94,25686000,2),(94,41414400,1),(94,57740400,2),(94,73468800,1),(94,89190000,2),(94,104918400,1),(94,120639600,2),(94,126691200,1),(94,152089200,2),(94,162374400,1),(94,183538800,2),(94,199267200,1),(94,215593200,2),(94,230716800,1),(94,247042800,2),(94,262771200,1),(94,278492400,2),(94,294220800,1),(94,309942000,2),(94,325670400,1),(94,341391600,2),(94,357120000,1),(94,372841200,2),(94,388569600,1),(94,404895600,2),(94,420019200,1),(94,436345200,2),(94,452073600,1),(94,467794800,2),(94,483523200,1),(94,499244400,2),(94,514972800,1),(94,530694000,2),(94,544608000,1),(94,562143600,2),(94,576057600,1),(94,594198000,2),(94,607507200,1),(94,625647600,2),(94,638956800,1),(94,657097200,2),(94,671011200,1),(94,688546800,2),(94,702460800,1),(94,719996400,2),(94,733910400,1),(94,752050800,2),(94,765360000,1),(94,783500400,2),(94,796809600,1),(94,814950000,2),(94,828864000,1),(94,846399600,2),(94,860313600,1),(94,877849200,2),(94,891763200,1),(94,909298800,2),(94,923212800,1),(94,941353200,2),(94,954662400,1),(94,972802800,2),(94,986112000,1),(94,1004252400,2),(94,1018166400,1),(94,1035702000,2),(94,1049616000,1),(94,1067151600,2),(94,1081065600,1),(94,1099206000,2),(94,1112515200,1),(94,1130655600,2),(94,1143964800,1),(94,1162105200,2),(94,1173600000,1),(94,1194159600,2),(94,1205049600,1),(94,1225609200,2),(94,1236499200,1),(94,1257058800,2),(94,1268553600,1),(94,1289113200,2),(94,1300003200,1),(94,1320562800,2),(94,1331452800,1),(94,1352012400,2),(94,1362902400,1),(94,1383462000,2),(94,1394352000,1),(94,1414911600,2),(94,1425801600,1),(94,1446361200,2),(94,1457856000,1),(94,1478415600,2),(94,1489305600,1),(94,1509865200,2),(94,1520755200,1),(94,1541314800,2),(94,1552204800,1),(94,1572764400,2),(94,1583654400,1),(94,1604214000,2),(94,1615708800,1),(94,1636268400,2),(94,1647158400,1),(94,1667718000,2),(94,1678608000,1),(94,1699167600,2),(94,1710057600,1),(94,1730617200,2),(94,1741507200,1),(94,1762066800,2),(94,1772956800,1),(94,1793516400,2),(94,1805011200,1),(94,1825570800,2),(94,1836460800,1),(94,1857020400,2),(94,1867910400,1),(94,1888470000,2),(94,1899360000,1),(94,1919919600,2),(94,1930809600,1),(94,1951369200,2),(94,1962864000,1),(94,1983423600,2),(94,1994313600,1),(94,2014873200,2),(94,2025763200,1),(94,2046322800,2),(94,2057212800,1),(94,2077772400,2),(94,2088662400,1),(94,2109222000,2),(94,2120112000,1),(94,2140671600,2),(95,-2147483648,0),(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,-2147483648,2),(96,-1632067200,1),(96,-1615136400,2),(96,-923248800,1),(96,-880214400,3),(96,-769395600,4),(96,-765392400,5),(97,-2147483648,1),(97,-1567453392,2),(97,-1233432000,3),(97,-1222981200,2),(97,-1205956800,3),(97,-1194037200,2),(97,-1172865600,3),(97,-1162501200,2),(97,-1141329600,3),(97,-1130965200,2),(97,-1109793600,3),(97,-1099429200,2),(97,-1078257600,3),(97,-1067806800,2),(97,-1046635200,3),(97,-1036270800,2),(97,-1015099200,3),(97,-1004734800,2),(97,-983563200,3),(97,-973198800,2),(97,-952027200,3),(97,-941576400,2),(97,-931032000,3),(97,-900882000,2),(97,-890337600,3),(97,-833749200,2),(97,-827265600,3),(97,-752274000,2),(97,-733780800,3),(97,-197326800,2),(97,-190843200,3),(97,-184194000,2),(97,-164491200,3),(97,-152658000,2),(97,-132955200,3),(97,-121122000,2),(97,-101419200,3),(97,-86821200,2),(97,-71092800,3),(97,-54766800,2),(97,-39038400,3),(97,-23317200,2),(97,-7588800,5),(97,128142000,4),(97,136605600,5),(97,596948400,4),(97,605066400,5),(97,624423600,4),(97,636516000,5),(97,656478000,4),(97,667965600,2),(97,687931200,4),(97,699415200,5),(97,719377200,4),(97,731469600,5),(97,938919600,3),(97,952052400,5),(97,1198983600,4),(97,1205632800,5),(97,1224385200,4),(97,1237082400,5),(97,2147483647,5),(98,-2147483648,1),(98,-1545071027,3),(98,288770400,2),(98,297234000,3),(98,320220000,2),(98,328683600,3),(98,664264800,2),(98,678344400,3),(98,695714400,2),(98,700635600,3),(99,-2147483648,1),(99,-1680454800,2),(99,-1627833600,1),(100,-2147483648,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,2147483647,2),(101,-2147483648,0),(101,-1826738653,1),(101,-157750200,2),(102,-2147483648,0),(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,-2147483648,2),(103,-1632056400,1),(103,-1615125600,2),(103,-1596978000,1),(103,-1583164800,2),(103,-880203600,3),(103,-769395600,4),(103,-765381600,2),(103,-147884400,5),(103,-131554800,2),(103,120646800,6),(103,325677600,7),(103,341398800,6),(103,357127200,7),(103,372848400,6),(103,388576800,7),(103,404902800,6),(103,420026400,7),(103,436352400,6),(103,452080800,7),(103,467802000,6),(103,483530400,7),(103,499251600,6),(103,514980000,7),(103,530701200,6),(103,544615200,7),(103,562150800,6),(103,576064800,7),(103,594205200,6),(103,607514400,7),(103,625654800,6),(103,638964000,7),(103,657104400,6),(103,671018400,7),(103,688554000,6),(103,702468000,7),(103,720003600,6),(103,733917600,7),(103,752058000,6),(103,765367200,7),(103,783507600,6),(103,796816800,7),(103,814957200,6),(103,828871200,7),(103,846406800,6),(103,860320800,7),(103,877856400,6),(103,891770400,7),(103,909306000,6),(103,923220000,7),(103,941360400,6),(103,954669600,7),(103,972810000,6),(103,986119200,7),(103,1004259600,6),(103,1018173600,7),(103,1035709200,6),(103,1049623200,7),(103,1067158800,6),(103,1081072800,7),(103,1099213200,6),(103,1112522400,7),(103,1130662800,6),(103,1143972000,7),(103,1162112400,6),(103,1173607200,7),(103,1194166800,6),(103,1205056800,7),(103,1225616400,6),(103,1236506400,7),(103,1257066000,6),(103,1268560800,7),(103,1289120400,6),(103,1300010400,7),(103,1320570000,6),(103,1331460000,7),(103,1352019600,6),(103,1362909600,7),(103,1383469200,6),(103,1394359200,7),(103,1414918800,6),(103,1425808800,7),(103,1446368400,6),(103,1457863200,7),(103,1478422800,6),(103,1489312800,7),(103,1509872400,6),(103,1520762400,7),(103,1541322000,6),(103,1552212000,7),(103,1572771600,6),(103,1583661600,7),(103,1604214000,8),(104,-2147483648,2),(104,-1632060000,1),(104,-1615129200,2),(104,-880207200,3),(104,-769395600,4),(104,-765385200,2),(104,-715788000,1),(104,-702486000,2),(104,-684338400,1),(104,-671036400,2),(104,-652888800,1),(104,-639586800,2),(104,-620834400,1),(104,-608137200,2),(104,-589384800,1),(104,-576082800,2),(104,-557935200,1),(104,-544633200,2),(104,-526485600,1),(104,-513183600,2),(104,-495036000,1),(104,-481734000,2),(104,-463586400,1),(104,-450284400,2),(104,-431532000,1),(104,-418230000,2),(104,-400082400,1),(104,-386780400,2),(104,-368632800,1),(104,-355330800,2),(104,-337183200,1),(104,-323881200,2),(104,-305733600,1),(104,-292431600,2),(104,-273679200,1),(104,-260982000,2),(104,-242229600,1),(104,-226508400,2),(104,-210780000,1),(104,-195058800,2),(104,-179330400,1),(104,-163609200,2),(104,-147880800,1),(104,-131554800,2),(104,-116431200,1),(104,-100105200,2),(104,-84376800,1),(104,-68655600,2),(104,-52927200,1),(104,-37206000,2),(104,-21477600,1),(104,-5756400,2),(104,9972000,1),(104,25693200,2),(104,41421600,1),(104,57747600,2),(104,73476000,1),(104,84013200,5),(105,-2147483648,2),(105,-1633273200,1),(105,-1615132800,2),(105,-1601823600,1),(105,-1583683200,2),(105,-1570374000,1),(105,-1551628800,2),(105,-1538924400,1),(105,-1534089600,2),(105,-880210800,3),(105,-769395600,4),(105,-765388800,2),(105,-147884400,1),(105,-131558400,2),(105,-116434800,1),(105,-100108800,2),(105,-84380400,1),(105,-68659200,2),(105,-52930800,1),(105,-37209600,2),(105,-21481200,1),(105,-5760000,2),(105,9968400,1),(105,25689600,2),(105,41418000,1),(105,57744000,2),(105,73472400,1),(105,89193600,2),(105,104922000,1),(105,120643200,2),(105,126694800,1),(105,152092800,2),(105,162378000,1),(105,183542400,2),(105,199270800,1),(105,215596800,2),(105,230720400,1),(105,247046400,2),(105,262774800,1),(105,278496000,2),(105,294224400,1),(105,309945600,2),(105,325674000,1),(105,341395200,2),(105,357123600,1),(105,372844800,2),(105,388573200,1),(105,404899200,2),(105,420022800,1),(105,436348800,2),(105,452077200,1),(105,467798400,2),(105,483526800,1),(105,499248000,2),(105,514976400,1),(105,530697600,2),(105,544611600,1),(105,562147200,2),(105,576061200,1),(105,594201600,2),(105,607510800,1),(105,625651200,2),(105,638960400,1),(105,657100800,2),(105,671014800,1),(105,688550400,2),(105,702464400,1),(105,720000000,2),(105,733914000,1),(105,752054400,2),(105,765363600,1),(105,783504000,2),(105,796813200,1),(105,814953600,2),(105,828867600,1),(105,846403200,2),(105,860317200,1),(105,877852800,2),(105,891766800,1),(105,909302400,2),(105,923216400,1),(105,941356800,2),(105,954666000,1),(105,972806400,2),(105,986115600,1),(105,1004256000,2),(105,1018170000,1),(105,1035705600,2),(105,1049619600,1),(105,1067155200,2),(105,1081069200,1),(105,1099209600,2),(105,1112518800,1),(105,1130659200,2),(105,1143968400,1),(105,1162108800,2),(105,1173603600,1),(105,1194163200,2),(105,1205053200,1),(105,1225612800,2),(105,1236502800,1),(105,1257062400,2),(105,1268557200,1),(105,1289116800,2),(105,1300006800,1),(105,1320566400,2),(105,1331456400,1),(105,1352016000,2),(105,1362906000,1),(105,1383465600,2),(105,1394355600,1),(105,1414915200,2),(105,1425805200,1),(105,1446364800,2),(105,1457859600,1),(105,1478419200,2),(105,1489309200,1),(105,1509868800,2),(105,1520758800,1),(105,1541318400,2),(105,1552208400,1),(105,1572768000,2),(105,1583658000,1),(105,1604217600,2),(105,1615712400,1),(105,1636272000,2),(105,1647162000,1),(105,1667721600,2),(105,1678611600,1),(105,1699171200,2),(105,1710061200,1),(105,1730620800,2),(105,1741510800,1),(105,1762070400,2),(105,1772960400,1),(105,1793520000,2),(105,1805014800,1),(105,1825574400,2),(105,1836464400,1),(105,1857024000,2),(105,1867914000,1),(105,1888473600,2),(105,1899363600,1),(105,1919923200,2),(105,1930813200,1),(105,1951372800,2),(105,1962867600,1),(105,1983427200,2),(105,1994317200,1),(105,2014876800,2),(105,2025766800,1),(105,2046326400,2),(105,2057216400,1),(105,2077776000,2),(105,2088666000,1),(105,2109225600,2),(105,2120115600,1),(105,2140675200,2),(106,-2147483648,0),(106,-2051202469,1),(106,-1724083200,2),(106,-880218000,3),(106,-769395600,4),(106,-765396000,2),(106,-684349200,5),(106,-671047200,2),(106,-80506740,5),(106,-68666400,2),(106,-52938000,5),(106,-37216800,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,-2147483648,0),(107,-1825098836,1),(108,-2147483648,0),(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,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,-2147483648,0),(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),(109,2147483647,2),(110,-2147483648,0),(110,-1546279392,2),(110,547020000,1),(110,559717200,2),(110,578469600,1),(110,591166800,2),(111,-2147483648,0),(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,-2147483648,2),(112,-1632060000,1),(112,-1615129200,2),(112,-880207200,3),(112,-769395600,4),(112,-765385200,2),(112,-715788000,1),(112,-702486000,2),(112,-684338400,1),(112,-671036400,2),(112,-652888800,1),(112,-639586800,2),(112,-620834400,1),(112,-608137200,2),(112,-589384800,1),(112,-576082800,2),(112,-557935200,1),(112,-544633200,2),(112,-526485600,1),(112,-513183600,2),(112,-495036000,1),(112,-481734000,2),(112,-463586400,1),(112,-450284400,2),(112,-431532000,1),(112,-418230000,2),(112,-400082400,1),(112,-386780400,2),(112,-368632800,1),(112,-355330800,2),(112,-337183200,1),(112,-323881200,2),(112,-305733600,1),(112,-292431600,2),(112,-273679200,1),(112,-260982000,2),(112,-242229600,1),(112,-226508400,2),(112,-210780000,1),(112,-195058800,2),(112,-179330400,1),(112,-163609200,2),(112,-147880800,1),(112,-131554800,2),(112,-116431200,1),(112,-100105200,2),(112,-84376800,1),(112,-68655600,2),(112,-52927200,1),(112,-37206000,2),(112,-21477600,1),(112,-5756400,2),(112,9972000,1),(112,25693200,2),(112,41421600,1),(112,57747600,2),(112,73476000,1),(112,89197200,2),(112,104925600,1),(112,120646800,2),(112,136375200,1),(112,152096400,2),(112,167824800,1),(112,183546000,2),(112,199274400,1),(112,215600400,2),(112,230724000,1),(112,247050000,2),(112,262778400,1),(112,278499600,2),(112,294228000,1),(112,309949200,2),(112,325677600,1),(112,341398800,2),(112,357127200,1),(112,372848400,2),(112,388576800,1),(112,404902800,2),(112,420026400,1),(112,436352400,2),(112,452080800,1),(112,467802000,2),(112,483530400,1),(112,499251600,2),(112,514980000,1),(112,530701200,2),(112,544615200,1),(112,562150800,2),(112,576064800,1),(112,594205200,2),(112,607514400,1),(112,625654800,2),(112,638964000,1),(112,657104400,2),(112,671018400,1),(112,688554000,2),(112,702468000,1),(112,720003600,2),(112,733917600,1),(112,752058000,2),(112,765367200,1),(112,783507600,2),(112,796816800,1),(112,814957200,2),(112,828871200,1),(112,846406800,2),(112,860320800,1),(112,877856400,2),(112,891770400,1),(112,909306000,2),(112,923220000,1),(112,941360400,2),(112,954669600,1),(112,972810000,2),(112,986119200,1),(112,1004259600,2),(112,1018173600,1),(112,1035709200,2),(112,1049623200,1),(112,1067158800,2),(112,1081072800,1),(112,1099213200,2),(112,1112522400,1),(112,1130662800,2),(112,1143972000,1),(112,1162112400,2),(112,1173607200,1),(112,1194166800,2),(112,1205056800,1),(112,1225616400,2),(112,1236506400,1),(112,1257066000,2),(112,1268560800,1),(112,1289120400,2),(112,1300010400,1),(112,1320570000,2),(112,1331460000,1),(112,1352019600,2),(112,1362909600,1),(112,1383469200,2),(112,1394359200,1),(112,1414918800,2),(112,1425808800,5),(113,-2147483648,2),(113,-1633276800,1),(113,-1615136400,2),(113,-1601827200,1),(113,-1583686800,2),(113,-900259200,1),(113,-891795600,2),(113,-880214400,3),(113,-769395600,4),(113,-765392400,2),(113,-747244800,1),(113,-733942800,2),(113,-715795200,1),(113,-702493200,2),(113,-684345600,1),(113,-671043600,2),(113,-652896000,1),(113,-639594000,2),(113,-620841600,1),(113,-608144400,2),(113,-589392000,1),(113,-576090000,2),(113,-557942400,1),(113,-544640400,2),(113,-526492800,1),(113,-513190800,2),(113,-495043200,1),(113,-481741200,2),(113,-463593600,5),(113,-386787600,2),(113,-368640000,5),(113,-21488400,6),(113,-5767200,5),(113,9961200,6),(113,25682400,5),(113,1143961200,6),(113,1162101600,5),(113,1173596400,6),(113,1194156000,5),(113,1205046000,6),(113,1225605600,5),(113,1236495600,6),(113,1257055200,5),(113,1268550000,6),(113,1289109600,5),(113,1299999600,6),(113,1320559200,5),(113,1331449200,6),(113,1352008800,5),(113,1362898800,6),(113,1383458400,5),(113,1394348400,6),(113,1414908000,5),(113,1425798000,6),(113,1446357600,5),(113,1457852400,6),(113,1478412000,5),(113,1489302000,6),(113,1509861600,5),(113,1520751600,6),(113,1541311200,5),(113,1552201200,6),(113,1572760800,5),(113,1583650800,6),(113,1604210400,5),(113,1615705200,6),(113,1636264800,5),(113,1647154800,6),(113,1667714400,5),(113,1678604400,6),(113,1699164000,5),(113,1710054000,6),(113,1730613600,5),(113,1741503600,6),(113,1762063200,5),(113,1772953200,6),(113,1793512800,5),(113,1805007600,6),(113,1825567200,5),(113,1836457200,6),(113,1857016800,5),(113,1867906800,6),(113,1888466400,5),(113,1899356400,6),(113,1919916000,5),(113,1930806000,6),(113,1951365600,5),(113,1962860400,6),(113,1983420000,5),(113,1994310000,6),(113,2014869600,5),(113,2025759600,6),(113,2046319200,5),(113,2057209200,6),(113,2077768800,5),(113,2088658800,6),(113,2109218400,5),(113,2120108400,6),(113,2140668000,5),(114,-2147483648,0),(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),(114,2147483647,2),(115,-2147483648,0),(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,-2147483648,0),(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),(116,2147483647,2),(117,-2147483648,1),(117,-1632076148,2),(117,-1615145348,1),(117,-1096921748,3),(117,-1061670600,4),(117,-1048973400,3),(117,-1030221000,4),(117,-1017523800,3),(117,-998771400,4),(117,-986074200,3),(117,-966717000,4),(117,-954624600,3),(117,-935267400,4),(117,-922570200,3),(117,-903817800,4),(117,-891120600,3),(117,-872368200,6),(117,-769395600,5),(117,-765401400,3),(117,-746044200,4),(117,-733347000,3),(117,-714594600,4),(117,-701897400,3),(117,-683145000,4),(117,-670447800,3),(117,-651695400,4),(117,-638998200,3),(117,-619641000,4),(117,-606943800,3),(117,-589401000,4),(117,-576099000,3),(117,-557951400,4),(117,-544649400,3),(117,-526501800,4),(117,-513199800,3),(117,-495052200,4),(117,-481750200,3),(117,-463602600,4),(117,-450300600,3),(117,-431548200,4),(117,-418246200,3),(117,-400098600,4),(117,-386796600,3),(117,-368649000,4),(117,-355347000,3),(117,-337199400,4),(117,-323897400,3),(117,-305749800,4),(117,-289423800,3),(117,-273695400,4),(117,-257974200,3),(117,-242245800,4),(117,-226524600,3),(117,-210796200,4),(117,-195075000,3),(117,-179346600,4),(117,-163625400,3),(117,-147897000,4),(117,-131571000,3),(117,-119903400,8),(117,-116445600,7),(117,-100119600,8),(117,-84391200,7),(117,-68670000,8),(117,-52941600,7),(117,-37220400,8),(117,-21492000,7),(117,-5770800,8),(117,9957600,7),(117,25678800,8),(117,41407200,7),(117,57733200,8),(117,73461600,7),(117,89182800,8),(117,104911200,7),(117,120632400,8),(117,136360800,7),(117,152082000,8),(117,167810400,7),(117,183531600,8),(117,199260000,7),(117,215586000,8),(117,230709600,7),(117,247035600,8),(117,262764000,7),(117,278485200,8),(117,294213600,7),(117,309934800,8),(117,325663200,7),(117,341384400,8),(117,357112800,7),(117,372834000,8),(117,388562400,7),(117,404888400,8),(117,420012000,7),(117,436338000,8),(117,452066400,7),(117,467787600,8),(117,483516000,7),(117,499237200,8),(117,514965600,7),(117,530686800,8),(117,544593660,7),(117,562129260,8),(117,576043260,9),(117,594180060,8),(117,607492860,7),(117,625633260,8),(117,638942460,7),(117,657082860,8),(117,670996860,7),(117,688532460,8),(117,702446460,7),(117,719982060,8),(117,733896060,7),(117,752036460,8),(117,765345660,7),(117,783486060,8),(117,796795260,7),(117,814935660,8),(117,828849660,7),(117,846385260,8),(117,860299260,7),(117,877834860,8),(117,891748860,7),(117,909284460,8),(117,923198460,7),(117,941338860,8),(117,954648060,7),(117,972788460,8),(117,986097660,7),(117,1004238060,8),(117,1018152060,7),(117,1035687660,8),(117,1049601660,7),(117,1067137260,8),(117,1081051260,7),(117,1099191660,8),(117,1112500860,7),(117,1130641260,8),(117,1143950460,7),(117,1162090860,8),(117,1173585660,7),(117,1194145260,8),(117,1205035260,7),(117,1225594860,8),(117,1236484860,7),(117,1257044460,8),(117,1268539260,7),(117,1289098860,8),(117,1299988860,7),(117,1320555600,8),(117,1331445600,7),(117,1352005200,8),(117,1362895200,7),(117,1383454800,8),(117,1394344800,7),(117,1414904400,8),(117,1425794400,7),(117,1446354000,8),(117,1457848800,7),(117,1478408400,8),(117,1489298400,7),(117,1509858000,8),(117,1520748000,7),(117,1541307600,8),(117,1552197600,7),(117,1572757200,8),(117,1583647200,7),(117,1604206800,8),(117,1615701600,7),(117,1636261200,8),(117,1647151200,7),(117,1667710800,8),(117,1678600800,7),(117,1699160400,8),(117,1710050400,7),(117,1730610000,8),(117,1741500000,7),(117,1762059600,8),(117,1772949600,7),(117,1793509200,8),(117,1805004000,7),(117,1825563600,8),(117,1836453600,7),(117,1857013200,8),(117,1867903200,7),(117,1888462800,8),(117,1899352800,7),(117,1919912400,8),(117,1930802400,7),(117,1951362000,8),(117,1962856800,7),(117,1983416400,8),(117,1994306400,7),(117,2014866000,8),(117,2025756000,7),(117,2046315600,8),(117,2057205600,7),(117,2077765200,8),(117,2088655200,7),(117,2109214800,8),(117,2120104800,7),(117,2140664400,8),(118,-2147483648,1),(118,-1827687170,2),(118,294217200,3),(118,309938400,2),(118,325666800,3),(118,341388000,2),(118,357116400,3),(118,372837600,2),(118,388566000,3),(118,404892000,2),(118,420015600,3),(118,436341600,2),(118,452070000,3),(118,467791200,2),(118,483519600,3),(118,499240800,2),(118,514969200,3),(118,530690400,2),(118,544604400,3),(118,562140000,2),(118,576054000,3),(118,594194400,2),(118,607503600,3),(118,625644000,2),(118,638953200,3),(118,657093600,2),(118,671007600,3),(118,688543200,2),(118,702457200,3),(118,719992800,2),(118,733906800,3),(118,752047200,2),(118,765356400,3),(118,783496800,2),(118,796806000,3),(118,814946400,2),(118,828860400,3),(118,846396000,2),(118,860310000,3),(118,877845600,2),(118,891759600,3),(118,909295200,2),(118,923209200,3),(118,941349600,2),(118,954658800,3),(118,972799200,2),(118,986108400,3),(118,1004248800,2),(118,1018162800,3),(118,1035698400,2),(118,1049612400,3),(118,1067148000,2),(118,1081062000,3),(118,1099202400,2),(118,1112511600,3),(118,1130652000,2),(118,1143961200,3),(118,1162101600,2),(118,1173596400,3),(118,1194156000,2),(118,1205046000,3),(118,1225605600,2),(118,1236495600,3),(118,1257055200,2),(118,1268550000,3),(118,1289109600,2),(118,1299999600,3),(118,1320559200,2),(118,1331449200,3),(118,1352008800,2),(118,1362898800,3),(118,1383458400,2),(118,1394348400,3),(118,1414908000,2),(118,1425798000,4),(118,1520751600,3),(118,1541311200,2),(118,1552201200,3),(118,1572760800,2),(118,1583650800,3),(118,1604210400,2),(118,1615705200,3),(118,1636264800,2),(118,1647154800,3),(118,1667714400,2),(118,1678604400,3),(118,1699164000,2),(118,1710054000,3),(118,1730613600,2),(118,1741503600,3),(118,1762063200,2),(118,1772953200,3),(118,1793512800,2),(118,1805007600,3),(118,1825567200,2),(118,1836457200,3),(118,1857016800,2),(118,1867906800,3),(118,1888466400,2),(118,1899356400,3),(118,1919916000,2),(118,1930806000,3),(118,1951365600,2),(118,1962860400,3),(118,1983420000,2),(118,1994310000,3),(118,2014869600,2),(118,2025759600,3),(118,2046319200,2),(118,2057209200,3),(118,2077768800,2),(118,2088658800,3),(118,2109218400,2),(118,2120108400,3),(118,2140668000,2),(119,-2147483648,0),(119,-1825098836,1),(120,-2147483648,0),(120,-1825098836,1),(121,-2147483648,0),(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,-2147483648,1),(122,-1230749160,3),(122,722926800,2),(122,728884800,3),(122,2147483647,3),(123,-2147483648,0),(123,-1730578040,1),(123,176010300,2),(123,662698800,3),(123,2147483647,3),(124,-2147483648,0),(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,-2147483648,1),(125,-1402813824,3),(125,-1311534000,2),(125,-1300996800,3),(125,-933534000,2),(125,-925675200,3),(125,-902084400,2),(125,-893620800,3),(125,-870030000,2),(125,-862171200,3),(125,-775681200,2),(125,-767822400,3),(125,-744231600,2),(125,-736372800,3),(125,-144702000,2),(125,-134251200,3),(125,-113425200,2),(125,-102542400,3),(125,-86295600,2),(125,-72907200,3),(125,-54154800,2),(125,-41457600,3),(125,-21495600,2),(125,-5774400,3),(125,9954000,2),(125,25675200,3),(125,41403600,2),(125,57729600,3),(125,73458000,2),(125,87364800,3),(125,104907600,2),(125,118900800,3),(125,136357200,2),(125,150436800,3),(125,167806800,2),(125,183528000,3),(125,199256400,2),(125,215582400,3),(125,230706000,2),(125,247032000,3),(125,263365200,2),(125,276667200,3),(125,290581200,2),(125,308721600,3),(125,322030800,2),(125,340171200,3),(125,358318800,2),(125,371620800,3),(125,389768400,2),(125,403070400,3),(125,421218000,2),(125,434520000,3),(125,452667600,2),(125,466574400,3),(125,484117200,2),(125,498024000,3),(125,511333200,2),(125,529473600,3),(125,542782800,2),(125,560923200,3),(125,574837200,2),(125,592372800,3),(125,606286800,2),(125,623822400,3),(125,638946000,2),(125,655876800,3),(125,671000400,2),(125,687330000,4),(125,702450000,2),(125,718779600,4),(125,733899600,2),(125,750229200,4),(125,765349200,2),(125,781678800,4),(125,796798800,2),(125,813128400,4),(125,828853200,2),(125,844578000,4),(125,860302800,2),(125,876632400,4),(125,891147600,5),(125,909291600,4),(125,922597200,5),(125,941346000,4),(125,954651600,5),(125,972795600,4),(125,986101200,5),(125,1004245200,4),(125,1018155600,5),(125,1035694800,4),(125,1049605200,5),(125,1067144400,4),(125,1080450000,5),(125,1162098000,4),(125,1173589200,5),(125,1193547600,4),(125,1205643600,5),(125,1224997200,4),(125,1236488400,5),(125,1256446800,4),(125,1268542800,5),(125,1288501200,4),(125,1300597200,5),(125,1321160400,4),(125,1333256400,5),(125,1352005200,4),(125,1362891600,5),(125,1383454800,4),(125,1394341200,5),(125,1414904400,4),(125,1425790800,5),(125,1446354000,4),(125,1457845200,5),(125,1478408400,4),(125,1489294800,5),(125,1509858000,4),(125,1520744400,5),(125,1541307600,4),(125,1552194000,5),(125,1572757200,4),(125,1583643600,5),(125,1604206800,4),(125,1615698000,5),(125,1636261200,4),(125,1647147600,5),(125,1667710800,4),(125,1678597200,5),(125,1699160400,4),(125,1710046800,5),(125,1730610000,4),(125,1741496400,5),(125,1762059600,4),(125,1772946000,5),(125,1793509200,4),(125,1805000400,5),(125,1825563600,4),(125,1836450000,5),(125,1857013200,4),(125,1867899600,5),(125,1888462800,4),(125,1899349200,5),(125,1919912400,4),(125,1930798800,5),(125,1951362000,4),(125,1962853200,5),(125,1983416400,4),(125,1994302800,5),(125,2014866000,4),(125,2025752400,5),(125,2046315600,4),(125,2057202000,5),(125,2077765200,4),(125,2088651600,5),(125,2109214800,4),(125,2120101200,5),(125,2140664400,4),(126,-2147483648,0),(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,-2147483648,2),(127,-1633276800,1),(127,-1615136400,2),(127,-1601827200,1),(127,-1583686800,2),(127,-900259200,1),(127,-891795600,2),(127,-880214400,3),(127,-769395600,4),(127,-765392400,2),(127,-747244800,1),(127,-733942800,2),(127,-715795200,1),(127,-702493200,2),(127,-684345600,1),(127,-671043600,2),(127,-652896000,1),(127,-639594000,2),(127,-620841600,1),(127,-608144400,2),(127,-589392000,1),(127,-576090000,2),(127,-557942400,1),(127,-544640400,2),(127,-526492800,1),(127,-513190800,2),(127,-495043200,1),(127,-481741200,2),(127,-463593600,5),(127,-386787600,2),(127,-368640000,5),(127,-21488400,6),(127,-5767200,5),(127,9961200,6),(127,25682400,5),(127,1143961200,6),(127,1162101600,5),(127,1173596400,6),(127,1194156000,5),(127,1205046000,6),(127,1225605600,5),(127,1236495600,6),(127,1257055200,5),(127,1268550000,6),(127,1289109600,5),(127,1299999600,6),(127,1320559200,5),(127,1331449200,6),(127,1352008800,5),(127,1362898800,6),(127,1383458400,5),(127,1394348400,6),(127,1414908000,5),(127,1425798000,6),(127,1446357600,5),(127,1457852400,6),(127,1478412000,5),(127,1489302000,6),(127,1509861600,5),(127,1520751600,6),(127,1541311200,5),(127,1552201200,6),(127,1572760800,5),(127,1583650800,6),(127,1604210400,5),(127,1615705200,6),(127,1636264800,5),(127,1647154800,6),(127,1667714400,5),(127,1678604400,6),(127,1699164000,5),(127,1710054000,6),(127,1730613600,5),(127,1741503600,6),(127,1762063200,5),(127,1772953200,6),(127,1793512800,5),(127,1805007600,6),(127,1825567200,5),(127,1836457200,6),(127,1857016800,5),(127,1867906800,6),(127,1888466400,5),(127,1899356400,6),(127,1919916000,5),(127,1930806000,6),(127,1951365600,5),(127,1962860400,6),(127,1983420000,5),(127,1994310000,6),(127,2014869600,5),(127,2025759600,6),(127,2046319200,5),(127,2057209200,6),(127,2077768800,5),(127,2088658800,6),(127,2109218400,5),(127,2120108400,6),(127,2140668000,5),(128,-2147483648,2),(128,-1633276800,1),(128,-1615136400,2),(128,-1601827200,1),(128,-1583686800,2),(128,-880214400,3),(128,-769395600,4),(128,-765392400,2),(128,-715795200,1),(128,-702493200,2),(128,-684345600,1),(128,-671043600,2),(128,-652896000,1),(128,-639594000,2),(128,-620841600,1),(128,-608144400,2),(128,-589392000,1),(128,-576090000,2),(128,-557942400,1),(128,-544640400,2),(128,-526492800,1),(128,-513190800,2),(128,-495043200,1),(128,-481741200,2),(128,-463593600,1),(128,-447267600,2),(128,-431539200,1),(128,-415818000,2),(128,-400089600,1),(128,-386787600,2),(128,-368640000,1),(128,-355338000,2),(128,-337190400,1),(128,-321469200,2),(128,-305740800,1),(128,-289414800,2),(128,-273686400,1),(128,-257965200,2),(128,-242236800,5),(128,-195066000,2),(128,-84384000,1),(128,-68662800,2),(128,-52934400,1),(128,-37213200,2),(128,-21484800,1),(128,-5763600,2),(128,9964800,1),(128,25686000,2),(128,41414400,1),(128,57740400,2),(128,73468800,1),(128,89190000,2),(128,104918400,1),(128,120639600,2),(128,126691200,1),(128,152089200,2),(128,162374400,1),(128,183538800,2),(128,199267200,1),(128,215593200,2),(128,230716800,1),(128,247042800,2),(128,262771200,1),(128,278492400,2),(128,294220800,1),(128,309942000,2),(128,325670400,1),(128,341391600,2),(128,357120000,1),(128,372841200,2),(128,388569600,1),(128,404895600,2),(128,420019200,1),(128,436345200,2),(128,452073600,1),(128,467794800,2),(128,483523200,1),(128,499244400,2),(128,514972800,1),(128,530694000,2),(128,544608000,1),(128,562143600,2),(128,576057600,1),(128,594198000,2),(128,607507200,1),(128,625647600,2),(128,638956800,1),(128,657097200,2),(128,671011200,1),(128,688546800,5),(128,1143961200,1),(128,1162105200,2),(128,1173600000,1),(128,1194159600,2),(128,1205049600,1),(128,1225609200,2),(128,1236499200,1),(128,1257058800,2),(128,1268553600,1),(128,1289113200,2),(128,1300003200,1),(128,1320562800,2),(128,1331452800,1),(128,1352012400,2),(128,1362902400,1),(128,1383462000,2),(128,1394352000,1),(128,1414911600,2),(128,1425801600,1),(128,1446361200,2),(128,1457856000,1),(128,1478415600,2),(128,1489305600,1),(128,1509865200,2),(128,1520755200,1),(128,1541314800,2),(128,1552204800,1),(128,1572764400,2),(128,1583654400,1),(128,1604214000,2),(128,1615708800,1),(128,1636268400,2),(128,1647158400,1),(128,1667718000,2),(128,1678608000,1),(128,1699167600,2),(128,1710057600,1),(128,1730617200,2),(128,1741507200,1),(128,1762066800,2),(128,1772956800,1),(128,1793516400,2),(128,1805011200,1),(128,1825570800,2),(128,1836460800,1),(128,1857020400,2),(128,1867910400,1),(128,1888470000,2),(128,1899360000,1),(128,1919919600,2),(128,1930809600,1),(128,1951369200,2),(128,1962864000,1),(128,1983423600,2),(128,1994313600,1),(128,2014873200,2),(128,2025763200,1),(128,2046322800,2),(128,2057212800,1),(128,2077772400,2),(128,2088662400,1),(128,2109222000,2),(128,2120112000,1),(128,2140671600,2),(129,-2147483648,2),(129,-1633276800,1),(129,-1615136400,2),(129,-1601827200,1),(129,-1583686800,2),(129,-880214400,3),(129,-769395600,4),(129,-765392400,2),(129,-589392000,1),(129,-576090000,2),(129,-495043200,1),(129,-481741200,2),(129,-463593600,1),(129,-450291600,2),(129,-431539200,1),(129,-418237200,2),(129,-400089600,1),(129,-386787600,2),(129,-368640000,1),(129,-355338000,2),(129,-337190400,1),(129,-323888400,2),(129,-305740800,1),(129,-292438800,2),(129,-273686400,5),(129,-21488400,6),(129,-5767200,5),(129,9961200,6),(129,25682400,5),(129,41410800,6),(129,57736800,5),(129,73465200,6),(129,89186400,5),(129,104914800,6),(129,120636000,5),(129,126687600,1),(129,152089200,5),(129,162370800,6),(129,183535200,5),(129,1143961200,6),(129,1162101600,5),(129,1173596400,6),(129,1194156000,5),(129,1205046000,6),(129,1225605600,5),(129,1236495600,6),(129,1257055200,5),(129,1268550000,6),(129,1289109600,5),(129,1299999600,6),(129,1320559200,5),(129,1331449200,6),(129,1352008800,5),(129,1362898800,6),(129,1383458400,5),(129,1394348400,6),(129,1414908000,5),(129,1425798000,6),(129,1446357600,5),(129,1457852400,6),(129,1478412000,5),(129,1489302000,6),(129,1509861600,5),(129,1520751600,6),(129,1541311200,5),(129,1552201200,6),(129,1572760800,5),(129,1583650800,6),(129,1604210400,5),(129,1615705200,6),(129,1636264800,5),(129,1647154800,6),(129,1667714400,5),(129,1678604400,6),(129,1699164000,5),(129,1710054000,6),(129,1730613600,5),(129,1741503600,6),(129,1762063200,5),(129,1772953200,6),(129,1793512800,5),(129,1805007600,6),(129,1825567200,5),(129,1836457200,6),(129,1857016800,5),(129,1867906800,6),(129,1888466400,5),(129,1899356400,6),(129,1919916000,5),(129,1930806000,6),(129,1951365600,5),(129,1962860400,6),(129,1983420000,5),(129,1994310000,6),(129,2014869600,5),(129,2025759600,6),(129,2046319200,5),(129,2057209200,6),(129,2077768800,5),(129,2088658800,6),(129,2109218400,5),(129,2120108400,6),(129,2140668000,5),(130,-2147483648,2),(130,-1633276800,1),(130,-1615136400,2),(130,-1601827200,1),(130,-1583686800,2),(130,-880214400,3),(130,-769395600,4),(130,-765392400,2),(130,-462996000,1),(130,-450291600,2),(130,-431539200,1),(130,-418237200,2),(130,-400089600,1),(130,-386787600,2),(130,-368640000,1),(130,-355338000,2),(130,-337190400,1),(130,-323888400,2),(130,-305740800,1),(130,-292438800,2),(130,-273686400,1),(130,-257965200,2),(130,-242236800,1),(130,-226515600,2),(130,-210787200,1),(130,-195066000,2),(130,-179337600,1),(130,-163616400,2),(130,-147888000,5),(130,-100112400,2),(130,-84384000,1),(130,-68662800,2),(130,-52934400,1),(130,-37213200,2),(130,-21484800,1),(130,-5763600,2),(130,9964800,1),(130,25686000,2),(130,41414400,1),(130,57740400,2),(130,73468800,1),(130,89190000,2),(130,104918400,1),(130,120639600,2),(130,126691200,1),(130,152089200,2),(130,162374400,1),(130,183538800,2),(130,199267200,1),(130,215593200,2),(130,230716800,1),(130,247042800,5),(130,1143961200,1),(130,1162105200,2),(130,1173600000,1),(130,1194159600,5),(130,1205046000,6),(130,1225605600,5),(130,1236495600,6),(130,1257055200,5),(130,1268550000,6),(130,1289109600,5),(130,1299999600,6),(130,1320559200,5),(130,1331449200,6),(130,1352008800,5),(130,1362898800,6),(130,1383458400,5),(130,1394348400,6),(130,1414908000,5),(130,1425798000,6),(130,1446357600,5),(130,1457852400,6),(130,1478412000,5),(130,1489302000,6),(130,1509861600,5),(130,1520751600,6),(130,1541311200,5),(130,1552201200,6),(130,1572760800,5),(130,1583650800,6),(130,1604210400,5),(130,1615705200,6),(130,1636264800,5),(130,1647154800,6),(130,1667714400,5),(130,1678604400,6),(130,1699164000,5),(130,1710054000,6),(130,1730613600,5),(130,1741503600,6),(130,1762063200,5),(130,1772953200,6),(130,1793512800,5),(130,1805007600,6),(130,1825567200,5),(130,1836457200,6),(130,1857016800,5),(130,1867906800,6),(130,1888466400,5),(130,1899356400,6),(130,1919916000,5),(130,1930806000,6),(130,1951365600,5),(130,1962860400,6),(130,1983420000,5),(130,1994310000,6),(130,2014869600,5),(130,2025759600,6),(130,2046319200,5),(130,2057209200,6),(130,2077768800,5),(130,2088658800,6),(130,2109218400,5),(130,2120108400,6),(130,2140668000,5),(131,-2147483648,2),(131,-1633276800,1),(131,-1615136400,2),(131,-1601827200,1),(131,-1583686800,2),(131,-880214400,3),(131,-769395600,4),(131,-765392400,2),(131,-462996000,1),(131,-450291600,2),(131,-431539200,1),(131,-418237200,2),(131,-400089600,1),(131,-386787600,2),(131,-368640000,1),(131,-355338000,2),(131,-337190400,1),(131,-323888400,2),(131,-305740800,1),(131,-292438800,2),(131,-273686400,1),(131,-257965200,2),(131,-242236800,1),(131,-226515600,2),(131,-210787200,1),(131,-195066000,2),(131,-179337600,5),(131,-68662800,2),(131,-52934400,1),(131,-37213200,2),(131,-21484800,6),(131,-5767200,5),(131,9961200,6),(131,25682400,5),(131,1143961200,1),(131,1162105200,2),(131,1173600000,1),(131,1194159600,2),(131,1205049600,1),(131,1225609200,2),(131,1236499200,1),(131,1257058800,2),(131,1268553600,1),(131,1289113200,2),(131,1300003200,1),(131,1320562800,2),(131,1331452800,1),(131,1352012400,2),(131,1362902400,1),(131,1383462000,2),(131,1394352000,1),(131,1414911600,2),(131,1425801600,1),(131,1446361200,2),(131,1457856000,1),(131,1478415600,2),(131,1489305600,1),(131,1509865200,2),(131,1520755200,1),(131,1541314800,2),(131,1552204800,1),(131,1572764400,2),(131,1583654400,1),(131,1604214000,2),(131,1615708800,1),(131,1636268400,2),(131,1647158400,1),(131,1667718000,2),(131,1678608000,1),(131,1699167600,2),(131,1710057600,1),(131,1730617200,2),(131,1741507200,1),(131,1762066800,2),(131,1772956800,1),(131,1793516400,2),(131,1805011200,1),(131,1825570800,2),(131,1836460800,1),(131,1857020400,2),(131,1867910400,1),(131,1888470000,2),(131,1899360000,1),(131,1919919600,2),(131,1930809600,1),(131,1951369200,2),(131,1962864000,1),(131,1983423600,2),(131,1994313600,1),(131,2014873200,2),(131,2025763200,1),(131,2046322800,2),(131,2057212800,1),(131,2077772400,2),(131,2088662400,1),(131,2109222000,2),(131,2120112000,1),(131,2140671600,2),(132,-2147483648,2),(132,-1633276800,1),(132,-1615136400,2),(132,-1601827200,1),(132,-1583686800,2),(132,-880214400,3),(132,-769395600,4),(132,-765392400,2),(132,-495043200,5),(132,-21488400,6),(132,-5767200,5),(132,9961200,6),(132,25682400,5),(132,41410800,6),(132,57736800,5),(132,73465200,6),(132,89186400,5),(132,1143961200,6),(132,1162101600,5),(132,1173596400,6),(132,1194156000,5),(132,1205046000,6),(132,1225605600,5),(132,1236495600,6),(132,1257055200,5),(132,1268550000,6),(132,1289109600,5),(132,1299999600,6),(132,1320559200,5),(132,1331449200,6),(132,1352008800,5),(132,1362898800,6),(132,1383458400,5),(132,1394348400,6),(132,1414908000,5),(132,1425798000,6),(132,1446357600,5),(132,1457852400,6),(132,1478412000,5),(132,1489302000,6),(132,1509861600,5),(132,1520751600,6),(132,1541311200,5),(132,1552201200,6),(132,1572760800,5),(132,1583650800,6),(132,1604210400,5),(132,1615705200,6),(132,1636264800,5),(132,1647154800,6),(132,1667714400,5),(132,1678604400,6),(132,1699164000,5),(132,1710054000,6),(132,1730613600,5),(132,1741503600,6),(132,1762063200,5),(132,1772953200,6),(132,1793512800,5),(132,1805007600,6),(132,1825567200,5),(132,1836457200,6),(132,1857016800,5),(132,1867906800,6),(132,1888466400,5),(132,1899356400,6),(132,1919916000,5),(132,1930806000,6),(132,1951365600,5),(132,1962860400,6),(132,1983420000,5),(132,1994310000,6),(132,2014869600,5),(132,2025759600,6),(132,2046319200,5),(132,2057209200,6),(132,2077768800,5),(132,2088658800,6),(132,2109218400,5),(132,2120108400,6),(132,2140668000,5),(133,-2147483648,2),(133,-1633276800,1),(133,-1615136400,2),(133,-1601827200,1),(133,-1583686800,2),(133,-880214400,3),(133,-769395600,4),(133,-765392400,2),(133,-747244800,1),(133,-733942800,2),(133,-526492800,1),(133,-513190800,2),(133,-495043200,1),(133,-481741200,2),(133,-462996000,1),(133,-450291600,2),(133,-431539200,1),(133,-418237200,2),(133,-400089600,1),(133,-386787600,2),(133,-368640000,1),(133,-355338000,2),(133,-337190400,1),(133,-323888400,2),(133,-305740800,1),(133,-289414800,2),(133,-273686400,1),(133,-260989200,2),(133,-242236800,1),(133,-226515600,2),(133,-210787200,1),(133,-195066000,2),(133,-179337600,5),(133,-21488400,6),(133,-5767200,5),(133,9961200,6),(133,25682400,5),(133,1143961200,1),(133,1162105200,2),(133,1173600000,1),(133,1194159600,5),(133,1205046000,6),(133,1225605600,5),(133,1236495600,6),(133,1257055200,5),(133,1268550000,6),(133,1289109600,5),(133,1299999600,6),(133,1320559200,5),(133,1331449200,6),(133,1352008800,5),(133,1362898800,6),(133,1383458400,5),(133,1394348400,6),(133,1414908000,5),(133,1425798000,6),(133,1446357600,5),(133,1457852400,6),(133,1478412000,5),(133,1489302000,6),(133,1509861600,5),(133,1520751600,6),(133,1541311200,5),(133,1552201200,6),(133,1572760800,5),(133,1583650800,6),(133,1604210400,5),(133,1615705200,6),(133,1636264800,5),(133,1647154800,6),(133,1667714400,5),(133,1678604400,6),(133,1699164000,5),(133,1710054000,6),(133,1730613600,5),(133,1741503600,6),(133,1762063200,5),(133,1772953200,6),(133,1793512800,5),(133,1805007600,6),(133,1825567200,5),(133,1836457200,6),(133,1857016800,5),(133,1867906800,6),(133,1888466400,5),(133,1899356400,6),(133,1919916000,5),(133,1930806000,6),(133,1951365600,5),(133,1962860400,6),(133,1983420000,5),(133,1994310000,6),(133,2014869600,5),(133,2025759600,6),(133,2046319200,5),(133,2057209200,6),(133,2077768800,5),(133,2088658800,6),(133,2109218400,5),(133,2120108400,6),(133,2140668000,5),(134,-2147483648,2),(134,-1633276800,1),(134,-1615136400,2),(134,-1601827200,1),(134,-1583686800,2),(134,-880214400,3),(134,-769395600,4),(134,-765392400,2),(134,-747244800,1),(134,-733942800,2),(134,-715795200,1),(134,-702493200,2),(134,-684345600,1),(134,-671043600,2),(134,-652896000,1),(134,-639594000,2),(134,-620841600,1),(134,-608144400,2),(134,-589392000,1),(134,-576090000,2),(134,-557942400,1),(134,-544640400,2),(134,-526492800,1),(134,-513190800,2),(134,-495043200,1),(134,-481741200,2),(134,-463593600,1),(134,-447267600,2),(134,-431539200,1),(134,-415818000,2),(134,-400089600,1),(134,-386787600,2),(134,-368640000,1),(134,-355338000,2),(134,-337190400,1),(134,-323888400,2),(134,-305740800,1),(134,-292438800,2),(134,-273686400,5),(134,-21488400,6),(134,-5767200,5),(134,9961200,6),(134,25682400,5),(134,1143961200,1),(134,1162105200,2),(134,1173600000,6),(134,1194156000,5),(134,1205046000,6),(134,1225605600,5),(134,1236495600,6),(134,1257055200,5),(134,1268550000,6),(134,1289109600,5),(134,1299999600,6),(134,1320559200,5),(134,1331449200,6),(134,1352008800,5),(134,1362898800,6),(134,1383458400,5),(134,1394348400,6),(134,1414908000,5),(134,1425798000,6),(134,1446357600,5),(134,1457852400,6),(134,1478412000,5),(134,1489302000,6),(134,1509861600,5),(134,1520751600,6),(134,1541311200,5),(134,1552201200,6),(134,1572760800,5),(134,1583650800,6),(134,1604210400,5),(134,1615705200,6),(134,1636264800,5),(134,1647154800,6),(134,1667714400,5),(134,1678604400,6),(134,1699164000,5),(134,1710054000,6),(134,1730613600,5),(134,1741503600,6),(134,1762063200,5),(134,1772953200,6),(134,1793512800,5),(134,1805007600,6),(134,1825567200,5),(134,1836457200,6),(134,1857016800,5),(134,1867906800,6),(134,1888466400,5),(134,1899356400,6),(134,1919916000,5),(134,1930806000,6),(134,1951365600,5),(134,1962860400,6),(134,1983420000,5),(134,1994310000,6),(134,2014869600,5),(134,2025759600,6),(134,2046319200,5),(134,2057209200,6),(134,2077768800,5),(134,2088658800,6),(134,2109218400,5),(134,2120108400,6),(134,2140668000,5),(135,-2147483648,2),(135,-1633276800,1),(135,-1615136400,2),(135,-1601827200,1),(135,-1583686800,2),(135,-900259200,1),(135,-891795600,2),(135,-880214400,3),(135,-769395600,4),(135,-765392400,2),(135,-747244800,1),(135,-733942800,2),(135,-715795200,1),(135,-702493200,2),(135,-684345600,1),(135,-671043600,2),(135,-652896000,1),(135,-639594000,2),(135,-620841600,1),(135,-608144400,2),(135,-589392000,1),(135,-576090000,2),(135,-557942400,1),(135,-544640400,2),(135,-526492800,1),(135,-513190800,2),(135,-495043200,1),(135,-481741200,2),(135,-463593600,5),(135,-386787600,2),(135,-368640000,5),(135,-21488400,6),(135,-5767200,5),(135,9961200,6),(135,25682400,5),(135,1143961200,6),(135,1162101600,5),(135,1173596400,6),(135,1194156000,5),(135,1205046000,6),(135,1225605600,5),(135,1236495600,6),(135,1257055200,5),(135,1268550000,6),(135,1289109600,5),(135,1299999600,6),(135,1320559200,5),(135,1331449200,6),(135,1352008800,5),(135,1362898800,6),(135,1383458400,5),(135,1394348400,6),(135,1414908000,5),(135,1425798000,6),(135,1446357600,5),(135,1457852400,6),(135,1478412000,5),(135,1489302000,6),(135,1509861600,5),(135,1520751600,6),(135,1541311200,5),(135,1552201200,6),(135,1572760800,5),(135,1583650800,6),(135,1604210400,5),(135,1615705200,6),(135,1636264800,5),(135,1647154800,6),(135,1667714400,5),(135,1678604400,6),(135,1699164000,5),(135,1710054000,6),(135,1730613600,5),(135,1741503600,6),(135,1762063200,5),(135,1772953200,6),(135,1793512800,5),(135,1805007600,6),(135,1825567200,5),(135,1836457200,6),(135,1857016800,5),(135,1867906800,6),(135,1888466400,5),(135,1899356400,6),(135,1919916000,5),(135,1930806000,6),(135,1951365600,5),(135,1962860400,6),(135,1983420000,5),(135,1994310000,6),(135,2014869600,5),(135,2025759600,6),(135,2046319200,5),(135,2057209200,6),(135,2077768800,5),(135,2088658800,6),(135,2109218400,5),(135,2120108400,6),(135,2140668000,5),(136,-2147483648,0),(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,-2147483648,0),(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,-2147483648,1),(138,-1827687170,2),(138,126687600,3),(138,152085600,2),(138,162370800,3),(138,183535200,2),(138,199263600,3),(138,215589600,2),(138,230713200,3),(138,247039200,2),(138,262767600,3),(138,278488800,2),(138,294217200,3),(138,309938400,2),(138,325666800,3),(138,341388000,2),(138,357116400,3),(138,372837600,2),(138,388566000,3),(138,404892000,2),(138,420015600,3),(138,436341600,2),(139,-2147483648,1),(139,-1567453392,2),(139,-1233432000,3),(139,-1222981200,2),(139,-1205956800,3),(139,-1194037200,2),(139,-1172865600,3),(139,-1162501200,2),(139,-1141329600,3),(139,-1130965200,2),(139,-1109793600,3),(139,-1099429200,2),(139,-1078257600,3),(139,-1067806800,2),(139,-1046635200,3),(139,-1036270800,2),(139,-1015099200,3),(139,-1004734800,2),(139,-983563200,3),(139,-973198800,2),(139,-952027200,3),(139,-941576400,2),(139,-931032000,3),(139,-900882000,2),(139,-890337600,3),(139,-833749200,2),(139,-827265600,3),(139,-752274000,2),(139,-733780800,3),(139,-197326800,2),(139,-190843200,3),(139,-184194000,2),(139,-164491200,3),(139,-152658000,2),(139,-132955200,3),(139,-121122000,2),(139,-101419200,3),(139,-86821200,2),(139,-71092800,3),(139,-54766800,2),(139,-39038400,3),(139,-23317200,2),(139,-7588800,5),(139,128142000,4),(139,136605600,5),(139,596948400,4),(139,605066400,5),(139,624423600,4),(139,636516000,2),(139,657086400,3),(139,669178800,2),(139,686721600,4),(139,699415200,5),(139,719377200,4),(139,731469600,5),(139,938919600,3),(139,952052400,5),(139,1198983600,4),(139,1205632800,5),(139,2147483647,5),(140,-2147483648,1),(140,-880207200,2),(140,-769395600,3),(140,-765385200,1),(140,-21477600,4),(140,-5756400,1),(140,9972000,4),(140,25693200,1),(140,41421600,4),(140,57747600,1),(140,73476000,4),(140,89197200,1),(140,104925600,4),(140,120646800,1),(140,126698400,4),(140,152096400,1),(140,162381600,4),(140,183546000,1),(140,199274400,4),(140,215600400,1),(140,230724000,4),(140,247050000,1),(140,262778400,4),(140,278499600,1),(140,294228000,4),(140,309949200,1),(140,325677600,5),(140,341402400,1),(140,357127200,4),(140,372848400,1),(140,388576800,4),(140,404902800,1),(140,420026400,4),(140,436352400,6),(140,439030800,8),(140,452084400,7),(140,467805600,8),(140,483534000,7),(140,499255200,8),(140,514983600,7),(140,530704800,8),(140,544618800,7),(140,562154400,8),(140,576068400,7),(140,594208800,8),(140,607518000,7),(140,625658400,8),(140,638967600,7),(140,657108000,8),(140,671022000,7),(140,688557600,8),(140,702471600,7),(140,720007200,8),(140,733921200,7),(140,752061600,8),(140,765370800,7),(140,783511200,8),(140,796820400,7),(140,814960800,8),(140,828874800,7),(140,846410400,8),(140,860324400,7),(140,877860000,8),(140,891774000,7),(140,909309600,8),(140,923223600,7),(140,941364000,8),(140,954673200,7),(140,972813600,8),(140,986122800,7),(140,1004263200,8),(140,1018177200,7),(140,1035712800,8),(140,1049626800,7),(140,1067162400,8),(140,1081076400,7),(140,1099216800,8),(140,1112526000,7),(140,1130666400,8),(140,1143975600,7),(140,1162116000,8),(140,1173610800,7),(140,1194170400,8),(140,1205060400,7),(140,1225620000,8),(140,1236510000,7),(140,1257069600,8),(140,1268564400,7),(140,1289124000,8),(140,1300014000,7),(140,1320573600,8),(140,1331463600,7),(140,1352023200,8),(140,1362913200,7),(140,1383472800,8),(140,1394362800,7),(140,1414922400,8),(140,1425812400,7),(140,1446372000,8),(140,1457866800,7),(140,1478426400,8),(140,1489316400,7),(140,1509876000,8),(140,1520766000,7),(140,1541325600,8),(140,1552215600,7),(140,1572775200,8),(140,1583665200,7),(140,1604224800,8),(140,1615719600,7),(140,1636279200,8),(140,1647169200,7),(140,1667728800,8),(140,1678618800,7),(140,1699178400,8),(140,1710068400,7),(140,1730628000,8),(140,1741518000,7),(140,1762077600,8),(140,1772967600,7),(140,1793527200,8),(140,1805022000,7),(140,1825581600,8),(140,1836471600,7),(140,1857031200,8),(140,1867921200,7),(140,1888480800,8),(140,1899370800,7),(140,1919930400,8),(140,1930820400,7),(140,1951380000,8),(140,1962874800,7),(140,1983434400,8),(140,1994324400,7),(140,2014884000,8),(140,2025774000,7),(140,2046333600,8),(140,2057223600,7),(140,2077783200,8),(140,2088673200,7),(140,2109232800,8),(140,2120122800,7),(140,2140682400,8),(141,-2147483648,2),(141,-1633276800,1),(141,-1615136400,2),(141,-1601827200,1),(141,-1583686800,2),(141,-1535904000,1),(141,-1525280400,2),(141,-905097600,1),(141,-891795600,2),(141,-880214400,3),(141,-769395600,4),(141,-765392400,2),(141,-747251940,1),(141,-744224400,2),(141,-620841600,1),(141,-608144400,2),(141,-589392000,1),(141,-576090000,2),(141,-557942400,1),(141,-544640400,2),(141,-526492800,1),(141,-513190800,2),(141,-495043200,1),(141,-481741200,2),(141,-463593600,1),(141,-450291600,2),(141,-431539200,1),(141,-415818000,2),(141,-400089600,1),(141,-384368400,2),(141,-368640000,1),(141,-352918800,2),(141,-337190400,1),(141,-321469200,2),(141,-305740800,1),(141,-289414800,2),(141,-273686400,1),(141,-266432400,5),(141,-52938000,6),(141,-37216800,5),(141,-21488400,6),(141,-5767200,5),(141,9961200,6),(141,25682400,5),(141,41410800,6),(141,57736800,5),(141,73465200,6),(141,89186400,5),(141,104914800,6),(141,120636000,5),(141,126687600,1),(141,152089200,5),(141,162370800,6),(141,183535200,5),(141,199263600,6),(141,215589600,5),(141,230713200,6),(141,247039200,5),(141,262767600,6),(141,278488800,5),(141,294217200,6),(141,309938400,5),(141,325666800,6),(141,341388000,5),(141,357116400,6),(141,372837600,5),(141,388566000,6),(141,404892000,5),(141,420015600,6),(141,436341600,5),(141,452070000,6),(141,467791200,5),(141,483519600,6),(141,499240800,5),(141,514969200,6),(141,530690400,5),(141,544604400,6),(141,562140000,5),(141,576054000,6),(141,594194400,5),(141,607503600,6),(141,625644000,5),(141,638953200,6),(141,657093600,5),(141,671007600,6),(141,688543200,5),(141,702457200,6),(141,719992800,5),(141,733906800,6),(141,752047200,5),(141,765356400,6),(141,783496800,5),(141,796806000,6),(141,814946400,5),(141,828860400,6),(141,846396000,5),(141,860310000,6),(141,877845600,5),(141,891759600,6),(141,909295200,5),(141,923209200,6),(141,941349600,5),(141,954658800,6),(141,972799200,5),(141,986108400,6),(141,1004248800,5),(141,1018162800,6),(141,1035698400,5),(141,1049612400,6),(141,1067148000,5),(141,1081062000,6),(141,1099202400,5),(141,1112511600,6),(141,1130652000,5),(141,1143961200,6),(141,1162101600,5),(141,1173596400,6),(141,1194156000,5),(141,1205046000,6),(141,1225605600,5),(141,1236495600,6),(141,1257055200,5),(141,1268550000,6),(141,1289109600,5),(141,1299999600,6),(141,1320559200,5),(141,1331449200,6),(141,1352008800,5),(141,1362898800,6),(141,1383458400,5),(141,1394348400,6),(141,1414908000,5),(141,1425798000,6),(141,1446357600,5),(141,1457852400,6),(141,1478412000,5),(141,1489302000,6),(141,1509861600,5),(141,1520751600,6),(141,1541311200,5),(141,1552201200,6),(141,1572760800,5),(141,1583650800,6),(141,1604210400,5),(141,1615705200,6),(141,1636264800,5),(141,1647154800,6),(141,1667714400,5),(141,1678604400,6),(141,1699164000,5),(141,1710054000,6),(141,1730613600,5),(141,1741503600,6),(141,1762063200,5),(141,1772953200,6),(141,1793512800,5),(141,1805007600,6),(141,1825567200,5),(141,1836457200,6),(141,1857016800,5),(141,1867906800,6),(141,1888466400,5),(141,1899356400,6),(141,1919916000,5),(141,1930806000,6),(141,1951365600,5),(141,1962860400,6),(141,1983420000,5),(141,1994310000,6),(141,2014869600,5),(141,2025759600,6),(141,2046319200,5),(141,2057209200,6),(141,2077768800,5),(141,2088658800,6),(141,2109218400,5),(141,2120108400,6),(141,2140668000,5),(142,-2147483648,2),(142,-1633276800,1),(142,-1615136400,2),(142,-1601827200,1),(142,-1583686800,2),(142,-880214400,3),(142,-769395600,4),(142,-765392400,2),(142,-52934400,1),(142,-37213200,2),(142,-21484800,1),(142,-5763600,2),(142,9964800,1),(142,25686000,2),(142,41414400,1),(142,57740400,2),(142,73468800,1),(142,89190000,2),(142,104918400,1),(142,120639600,2),(142,126691200,1),(142,152089200,2),(142,162374400,1),(142,183538800,2),(142,199267200,1),(142,215593200,2),(142,230716800,1),(142,247042800,2),(142,262771200,1),(142,278492400,2),(142,294220800,1),(142,309942000,2),(142,325670400,1),(142,341391600,2),(142,357120000,1),(142,372841200,2),(142,388569600,1),(142,404895600,2),(142,420019200,1),(142,436345200,2),(142,452073600,1),(142,467794800,2),(142,483523200,1),(142,499244400,2),(142,514972800,1),(142,530694000,2),(142,544608000,1),(142,562143600,2),(142,576057600,1),(142,594198000,2),(142,607507200,1),(142,625647600,2),(142,638956800,1),(142,657097200,2),(142,671011200,1),(142,688546800,2),(142,702460800,1),(142,719996400,2),(142,733910400,1),(142,752050800,2),(142,765360000,1),(142,783500400,2),(142,796809600,1),(142,814950000,2),(142,828864000,1),(142,846399600,2),(142,860313600,1),(142,877849200,2),(142,891763200,1),(142,909298800,2),(142,923212800,1),(142,941353200,2),(142,954662400,1),(142,972802800,6),(142,986108400,5),(142,1004248800,6),(142,1018162800,5),(142,1035698400,6),(142,1049612400,5),(142,1067148000,6),(142,1081062000,5),(142,1099202400,6),(142,1112511600,5),(142,1130652000,6),(142,1143961200,5),(142,1162101600,6),(142,1173596400,5),(142,1194156000,6),(142,1205046000,5),(142,1225605600,6),(142,1236495600,5),(142,1257055200,6),(142,1268550000,5),(142,1289109600,6),(142,1299999600,5),(142,1320559200,6),(142,1331449200,5),(142,1352008800,6),(142,1362898800,5),(142,1383458400,6),(142,1394348400,5),(142,1414908000,6),(142,1425798000,5),(142,1446357600,6),(142,1457852400,5),(142,1478412000,6),(142,1489302000,5),(142,1509861600,6),(142,1520751600,5),(142,1541311200,6),(142,1552201200,5),(142,1572760800,6),(142,1583650800,5),(142,1604210400,6),(142,1615705200,5),(142,1636264800,6),(142,1647154800,5),(142,1667714400,6),(142,1678604400,5),(142,1699164000,6),(142,1710054000,5),(142,1730613600,6),(142,1741503600,5),(142,1762063200,6),(142,1772953200,5),(142,1793512800,6),(142,1805007600,5),(142,1825567200,6),(142,1836457200,5),(142,1857016800,6),(142,1867906800,5),(142,1888466400,6),(142,1899356400,5),(142,1919916000,6),(142,1930806000,5),(142,1951365600,6),(142,1962860400,5),(142,1983420000,6),(142,1994310000,5),(142,2014869600,6),(142,2025759600,5),(142,2046319200,6),(142,2057209200,5),(142,2077768800,6),(142,2088658800,5),(142,2109218400,6),(142,2120108400,5),(142,2140668000,6),(143,-2147483648,2),(143,-1633276800,1),(143,-1615136400,2),(143,-1601827200,1),(143,-1583686800,2),(143,-880214400,3),(143,-769395600,4),(143,-765392400,2),(143,-715795200,1),(143,-702493200,2),(143,-684345600,1),(143,-671043600,2),(143,-652896000,1),(143,-639594000,2),(143,-620841600,1),(143,-608144400,2),(143,-589392000,1),(143,-576090000,2),(143,-557942400,1),(143,-544640400,2),(143,-526492800,1),(143,-513190800,2),(143,-495043200,1),(143,-481741200,2),(143,-463593600,1),(143,-447267600,2),(143,-431539200,1),(143,-415818000,2),(143,-400089600,1),(143,-386787600,2),(143,-368640000,1),(143,-355338000,2),(143,-337190400,1),(143,-321469200,2),(143,-305740800,1),(143,-289414800,2),(143,-273686400,1),(143,-257965200,2),(143,-242236800,5),(143,-195066000,2),(143,-84384000,1),(143,-68662800,2),(143,-52934400,1),(143,-37213200,2),(143,-21484800,1),(143,-5763600,2),(143,9964800,1),(143,25686000,2),(143,41414400,1),(143,57740400,2),(143,73468800,1),(143,89190000,2),(143,104918400,1),(143,120639600,2),(143,126691200,1),(143,152089200,2),(143,162374400,1),(143,183538800,2),(143,199267200,1),(143,215593200,2),(143,230716800,1),(143,247042800,2),(143,262771200,1),(143,278492400,2),(143,294220800,1),(143,309942000,2),(143,325670400,1),(143,341391600,2),(143,357120000,1),(143,372841200,2),(143,388569600,1),(143,404895600,2),(143,420019200,1),(143,436345200,2),(143,452073600,1),(143,467794800,2),(143,483523200,1),(143,499244400,2),(143,514972800,1),(143,530694000,2),(143,544608000,1),(143,562143600,2),(143,576057600,1),(143,594198000,2),(143,607507200,1),(143,625647600,2),(143,638956800,1),(143,657097200,2),(143,671011200,1),(143,688546800,5),(143,1143961200,1),(143,1162105200,2),(143,1173600000,1),(143,1194159600,2),(143,1205049600,1),(143,1225609200,2),(143,1236499200,1),(143,1257058800,2),(143,1268553600,1),(143,1289113200,2),(143,1300003200,1),(143,1320562800,2),(143,1331452800,1),(143,1352012400,2),(143,1362902400,1),(143,1383462000,2),(143,1394352000,1),(143,1414911600,2),(143,1425801600,1),(143,1446361200,2),(143,1457856000,1),(143,1478415600,2),(143,1489305600,1),(143,1509865200,2),(143,1520755200,1),(143,1541314800,2),(143,1552204800,1),(143,1572764400,2),(143,1583654400,1),(143,1604214000,2),(143,1615708800,1),(143,1636268400,2),(143,1647158400,1),(143,1667718000,2),(143,1678608000,1),(143,1699167600,2),(143,1710057600,1),(143,1730617200,2),(143,1741507200,1),(143,1762066800,2),(143,1772956800,1),(143,1793516400,2),(143,1805011200,1),(143,1825570800,2),(143,1836460800,1),(143,1857020400,2),(143,1867910400,1),(143,1888470000,2),(143,1899360000,1),(143,1919919600,2),(143,1930809600,1),(143,1951369200,2),(143,1962864000,1),(143,1983423600,2),(143,1994313600,1),(143,2014873200,2),(143,2025763200,1),(143,2046322800,2),(143,2057212800,1),(143,2077772400,2),(143,2088662400,1),(143,2109222000,2),(143,2120112000,1),(143,2140671600,2),(144,-2147483648,0),(144,-1826738653,1),(144,-157750200,2),(145,-2147483648,1),(145,-1205954844,2),(145,-1192307244,3),(145,2147483647,3),(146,-2147483648,1),(146,-1938538284,3),(146,-1009825200,2),(146,-1002052800,3),(146,-986756400,2),(146,-971035200,3),(146,-955306800,2),(146,-939585600,3),(146,504939600,2),(146,512712000,3),(146,536475600,2),(146,544248000,3),(146,631170000,2),(146,638942400,3),(146,757400400,2),(146,765172800,3),(146,2147483647,3),(147,-2147483648,2),(147,-1633269600,1),(147,-1615129200,2),(147,-1601820000,1),(147,-1583679600,2),(147,-880207200,3),(147,-769395600,4),(147,-765385200,2),(147,-687967140,1),(147,-662655600,2),(147,-620838000,1),(147,-608137200,2),(147,-589388400,1),(147,-576082800,2),(147,-557938800,1),(147,-544633200,2),(147,-526489200,1),(147,-513183600,2),(147,-495039600,1),(147,-481734000,2),(147,-463590000,1),(147,-450284400,2),(147,-431535600,1),(147,-418230000,2),(147,-400086000,1),(147,-386780400,2),(147,-368636400,1),(147,-355330800,2),(147,-337186800,1),(147,-323881200,2),(147,-305737200,1),(147,-292431600,2),(147,-273682800,1),(147,-260982000,2),(147,-242233200,1),(147,-226508400,2),(147,-210783600,1),(147,-195058800,2),(147,-179334000,1),(147,-163609200,2),(147,-147884400,1),(147,-131554800,2),(147,-116434800,1),(147,-100105200,2),(147,-84376800,1),(147,-68655600,2),(147,-52927200,1),(147,-37206000,2),(147,-21477600,1),(147,-5756400,2),(147,9972000,1),(147,25693200,2),(147,41421600,1),(147,57747600,2),(147,73476000,1),(147,89197200,2),(147,104925600,1),(147,120646800,2),(147,126698400,1),(147,152096400,2),(147,162381600,1),(147,183546000,2),(147,199274400,1),(147,215600400,2),(147,230724000,1),(147,247050000,2),(147,262778400,1),(147,278499600,2),(147,294228000,1),(147,309949200,2),(147,325677600,1),(147,341398800,2),(147,357127200,1),(147,372848400,2),(147,388576800,1),(147,404902800,2),(147,420026400,1),(147,436352400,2),(147,452080800,1),(147,467802000,2),(147,483530400,1),(147,499251600,2),(147,514980000,1),(147,530701200,2),(147,544615200,1),(147,562150800,2),(147,576064800,1),(147,594205200,2),(147,607514400,1),(147,625654800,2),(147,638964000,1),(147,657104400,2),(147,671018400,1),(147,688554000,2),(147,702468000,1),(147,720003600,2),(147,733917600,1),(147,752058000,2),(147,765367200,1),(147,783507600,2),(147,796816800,1),(147,814957200,2),(147,828871200,1),(147,846406800,2),(147,860320800,1),(147,877856400,2),(147,891770400,1),(147,909306000,2),(147,923220000,1),(147,941360400,2),(147,954669600,1),(147,972810000,2),(147,986119200,1),(147,1004259600,2),(147,1018173600,1),(147,1035709200,2),(147,1049623200,1),(147,1067158800,2),(147,1081072800,1),(147,1099213200,2),(147,1112522400,1),(147,1130662800,2),(147,1143972000,1),(147,1162112400,2),(147,1173607200,1),(147,1194166800,2),(147,1205056800,1),(147,1225616400,2),(147,1236506400,1),(147,1257066000,2),(147,1268560800,1),(147,1289120400,2),(147,1300010400,1),(147,1320570000,2),(147,1331460000,1),(147,1352019600,2),(147,1362909600,1),(147,1383469200,2),(147,1394359200,1),(147,1414918800,2),(147,1425808800,1),(147,1446368400,2),(147,1457863200,1),(147,1478422800,2),(147,1489312800,1),(147,1509872400,2),(147,1520762400,1),(147,1541322000,2),(147,1552212000,1),(147,1572771600,2),(147,1583661600,1),(147,1604221200,2),(147,1615716000,1),(147,1636275600,2),(147,1647165600,1),(147,1667725200,2),(147,1678615200,1),(147,1699174800,2),(147,1710064800,1),(147,1730624400,2),(147,1741514400,1),(147,1762074000,2),(147,1772964000,1),(147,1793523600,2),(147,1805018400,1),(147,1825578000,2),(147,1836468000,1),(147,1857027600,2),(147,1867917600,1),(147,1888477200,2),(147,1899367200,1),(147,1919926800,2),(147,1930816800,1),(147,1951376400,2),(147,1962871200,1),(147,1983430800,2),(147,1994320800,1),(147,2014880400,2),(147,2025770400,1),(147,2046330000,2),(147,2057220000,1),(147,2077779600,2),(147,2088669600,1),(147,2109229200,2),(147,2120119200,1),(147,2140678800,2),(148,-2147483648,2),(148,-1633276800,1),(148,-1615136400,2),(148,-1601827200,1),(148,-1583686800,2),(148,-1535904000,1),(148,-1525280400,2),(148,-905097600,1),(148,-891795600,2),(148,-880214400,3),(148,-769395600,4),(148,-765392400,2),(148,-747251940,1),(148,-744224400,2),(148,-620841600,1),(148,-608144400,2),(148,-589392000,1),(148,-576090000,2),(148,-557942400,1),(148,-544640400,2),(148,-526492800,1),(148,-513190800,2),(148,-495043200,1),(148,-481741200,2),(148,-463593600,1),(148,-450291600,2),(148,-431539200,1),(148,-415818000,2),(148,-400089600,1),(148,-384368400,2),(148,-368640000,1),(148,-352918800,2),(148,-337190400,1),(148,-321469200,2),(148,-305740800,1),(148,-289414800,2),(148,-273686400,1),(148,-266432400,5),(148,-52938000,6),(148,-37216800,5),(148,-21488400,6),(148,-5767200,5),(148,9961200,6),(148,25682400,5),(148,41410800,6),(148,57736800,5),(148,73465200,6),(148,89186400,5),(148,104914800,6),(148,120636000,5),(148,126687600,1),(148,152089200,5),(148,162370800,6),(148,183535200,5),(148,199263600,6),(148,215589600,5),(148,230713200,6),(148,247039200,5),(148,262767600,6),(148,278488800,5),(148,294217200,6),(148,309938400,5),(148,325666800,6),(148,341388000,5),(148,357116400,6),(148,372837600,5),(148,388566000,6),(148,404892000,5),(148,420015600,6),(148,436341600,5),(148,452070000,6),(148,467791200,5),(148,483519600,6),(148,499240800,5),(148,514969200,6),(148,530690400,5),(148,544604400,6),(148,562140000,5),(148,576054000,6),(148,594194400,5),(148,607503600,6),(148,625644000,5),(148,638953200,6),(148,657093600,5),(148,671007600,6),(148,688543200,5),(148,702457200,6),(148,719992800,5),(148,733906800,6),(148,752047200,5),(148,765356400,6),(148,783496800,5),(148,796806000,6),(148,814946400,5),(148,828860400,6),(148,846396000,5),(148,860310000,6),(148,877845600,5),(148,891759600,6),(148,909295200,5),(148,923209200,6),(148,941349600,5),(148,954658800,6),(148,972799200,5),(148,986108400,6),(148,1004248800,5),(148,1018162800,6),(148,1035698400,5),(148,1049612400,6),(148,1067148000,5),(148,1081062000,6),(148,1099202400,5),(148,1112511600,6),(148,1130652000,5),(148,1143961200,6),(148,1162101600,5),(148,1173596400,6),(148,1194156000,5),(148,1205046000,6),(148,1225605600,5),(148,1236495600,6),(148,1257055200,5),(148,1268550000,6),(148,1289109600,5),(148,1299999600,6),(148,1320559200,5),(148,1331449200,6),(148,1352008800,5),(148,1362898800,6),(148,1383458400,5),(148,1394348400,6),(148,1414908000,5),(148,1425798000,6),(148,1446357600,5),(148,1457852400,6),(148,1478412000,5),(148,1489302000,6),(148,1509861600,5),(148,1520751600,6),(148,1541311200,5),(148,1552201200,6),(148,1572760800,5),(148,1583650800,6),(148,1604210400,5),(148,1615705200,6),(148,1636264800,5),(148,1647154800,6),(148,1667714400,5),(148,1678604400,6),(148,1699164000,5),(148,1710054000,6),(148,1730613600,5),(148,1741503600,6),(148,1762063200,5),(148,1772953200,6),(148,1793512800,5),(148,1805007600,6),(148,1825567200,5),(148,1836457200,6),(148,1857016800,5),(148,1867906800,6),(148,1888466400,5),(148,1899356400,6),(148,1919916000,5),(148,1930806000,6),(148,1951365600,5),(148,1962860400,6),(148,1983420000,5),(148,1994310000,6),(148,2014869600,5),(148,2025759600,6),(148,2046319200,5),(148,2057209200,6),(148,2077768800,5),(148,2088658800,6),(148,2109218400,5),(148,2120108400,6),(148,2140668000,5),(149,-2147483648,0),(149,-1826738653,1),(149,-157750200,2),(150,-2147483648,0),(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),(150,2147483647,2),(151,-2147483648,1),(151,-1121105688,2),(151,105084000,3),(151,161758800,2),(151,290584800,4),(151,299134800,2),(151,322034400,4),(151,330584400,2),(151,694260000,3),(151,717310800,2),(151,725868000,3),(151,852094800,2),(151,1113112800,4),(151,1128229200,2),(151,1146384000,4),(151,1159682400,2),(152,-2147483648,0),(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),(152,2147483647,2),(153,-2147483648,0),(153,-1825098836,1),(154,-2147483648,1),(154,-1851537340,2),(154,323841600,3),(154,338958000,2),(155,-2147483648,0),(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,-2147483648,0),(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,-2147483648,1),(157,-1567453392,2),(157,-1233432000,3),(157,-1222981200,2),(157,-1205956800,3),(157,-1194037200,2),(157,-1172865600,3),(157,-1162501200,2),(157,-1141329600,3),(157,-1130965200,2),(157,-1109793600,3),(157,-1099429200,2),(157,-1078257600,3),(157,-1067806800,2),(157,-1046635200,3),(157,-1036270800,2),(157,-1015099200,3),(157,-1004734800,2),(157,-983563200,3),(157,-973198800,2),(157,-952027200,3),(157,-941576400,2),(157,-931032000,3),(157,-900882000,2),(157,-890337600,3),(157,-833749200,2),(157,-827265600,3),(157,-752274000,2),(157,-733780800,3),(157,-197326800,2),(157,-190843200,3),(157,-184194000,2),(157,-164491200,3),(157,-152658000,2),(157,-132955200,3),(157,-121122000,2),(157,-101419200,3),(157,-86821200,2),(157,-71092800,3),(157,-54766800,2),(157,-39038400,3),(157,-23317200,2),(157,-7588800,5),(157,128142000,4),(157,136605600,5),(157,596948400,4),(157,605066400,5),(157,624423600,4),(157,636516000,2),(157,655963200,3),(157,667796400,2),(157,687499200,3),(157,699418800,2),(157,719380800,4),(157,731469600,5),(157,938919600,3),(157,952052400,5),(157,1085281200,2),(157,1096171200,5),(157,1198983600,4),(157,1205632800,5),(157,2147483647,5),(158,-2147483648,2),(158,-1633276800,1),(158,-1615136400,2),(158,-1601827200,1),(158,-1583686800,2),(158,-880214400,3),(158,-769395600,4),(158,-765392400,2),(158,-747244800,1),(158,-733942800,2),(158,-116438400,1),(158,-100112400,2),(158,-21484800,5),(158,104914800,1),(158,120639600,2),(158,126691200,1),(158,152089200,2),(158,162374400,1),(158,183538800,2),(158,199267200,1),(158,215593200,2),(158,230716800,1),(158,247042800,2),(158,262771200,1),(158,278492400,2),(158,294220800,1),(158,309942000,2),(158,325670400,1),(158,341391600,2),(158,357120000,1),(158,372841200,2),(158,388569600,1),(158,404895600,2),(158,420019200,1),(158,436345200,2),(158,452073600,1),(158,467794800,2),(158,483523200,1),(158,499244400,2),(158,514972800,1),(158,530694000,2),(158,544608000,1),(158,562143600,2),(158,576057600,1),(158,594198000,2),(158,607507200,1),(158,625647600,2),(158,638956800,1),(158,657097200,2),(158,671011200,1),(158,688546800,2),(158,702460800,1),(158,719996400,2),(158,733910400,1),(158,752050800,2),(158,765360000,1),(158,783500400,2),(158,796809600,1),(158,814950000,2),(158,828864000,1),(158,846399600,2),(158,860313600,1),(158,877849200,2),(158,891763200,1),(158,909298800,2),(158,923212800,1),(158,941353200,2),(158,954662400,1),(158,972802800,2),(158,986112000,1),(158,1004252400,2),(158,1018166400,1),(158,1035702000,2),(158,1049616000,1),(158,1067151600,2),(158,1081065600,1),(158,1099206000,2),(158,1112515200,1),(158,1130655600,2),(158,1143964800,1),(158,1162105200,2),(158,1173600000,1),(158,1194159600,2),(158,1205049600,1),(158,1225609200,2),(158,1236499200,1),(158,1257058800,2),(158,1268553600,1),(158,1289113200,2),(158,1300003200,1),(158,1320562800,2),(158,1331452800,1),(158,1352012400,2),(158,1362902400,1),(158,1383462000,2),(158,1394352000,1),(158,1414911600,2),(158,1425801600,1),(158,1446361200,2),(158,1457856000,1),(158,1478415600,2),(158,1489305600,1),(158,1509865200,2),(158,1520755200,1),(158,1541314800,2),(158,1552204800,1),(158,1572764400,2),(158,1583654400,1),(158,1604214000,2),(158,1615708800,1),(158,1636268400,2),(158,1647158400,1),(158,1667718000,2),(158,1678608000,1),(158,1699167600,2),(158,1710057600,1),(158,1730617200,2),(158,1741507200,1),(158,1762066800,2),(158,1772956800,1),(158,1793516400,2),(158,1805011200,1),(158,1825570800,2),(158,1836460800,1),(158,1857020400,2),(158,1867910400,1),(158,1888470000,2),(158,1899360000,1),(158,1919919600,2),(158,1930809600,1),(158,1951369200,2),(158,1962864000,1),(158,1983423600,2),(158,1994313600,1),(158,2014873200,2),(158,2025763200,1),(158,2046322800,2),(158,2057212800,1),(158,2077772400,2),(158,2088662400,1),(158,2109222000,2),(158,2120112000,1),(158,2140671600,2),(159,-2147483648,0),(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,-2147483648,1),(160,-880207200,2),(160,-769395600,3),(160,-765385200,1),(160,-21477600,4),(160,-5756400,1),(160,9972000,4),(160,25693200,1),(160,41421600,4),(160,57747600,1),(160,73476000,4),(160,89197200,1),(160,104925600,4),(160,120646800,1),(160,126698400,4),(160,152096400,1),(160,162381600,4),(160,183546000,1),(160,199274400,4),(160,215600400,1),(160,230724000,4),(160,247050000,1),(160,262778400,4),(160,278499600,1),(160,294228000,4),(160,309949200,1),(160,325677600,4),(160,341398800,1),(160,357127200,4),(160,372848400,1),(160,388576800,4),(160,404902800,1),(160,420026400,4),(160,436352400,1),(160,1446372000,5),(160,1457866800,6),(160,1478426400,5),(160,1489316400,6),(160,1509876000,5),(160,1520766000,6),(160,1541325600,1),(160,1547978400,5),(160,1552215600,6),(160,1572775200,5),(160,1583665200,6),(160,1604224800,5),(160,1615719600,6),(160,1636279200,5),(160,1647169200,6),(160,1667728800,5),(160,1678618800,6),(160,1699178400,5),(160,1710068400,6),(160,1730628000,5),(160,1741518000,6),(160,1762077600,5),(160,1772967600,6),(160,1793527200,5),(160,1805022000,6),(160,1825581600,5),(160,1836471600,6),(160,1857031200,5),(160,1867921200,6),(160,1888480800,5),(160,1899370800,6),(160,1919930400,5),(160,1930820400,6),(160,1951380000,5),(160,1962874800,6),(160,1983434400,5),(160,1994324400,6),(160,2014884000,5),(160,2025774000,6),(160,2046333600,5),(160,2057223600,6),(160,2077783200,5),(160,2088673200,6),(160,2109232800,5),(160,2120122800,6),(160,2140682400,5),(161,-2147483648,0),(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,-2147483648,0),(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),(162,2147483647,2),(163,-2147483648,1),(163,-2131642800,3),(163,-1632074400,2),(163,-1615143600,3),(163,-1153681200,2),(163,-1145822400,3),(163,-1122231600,2),(163,-1114372800,3),(163,-1090782000,2),(163,-1082923200,3),(163,-1059332400,2),(163,-1051473600,3),(163,-1027882800,2),(163,-1020024000,3),(163,-996433200,2),(163,-988574400,3),(163,-965674800,2),(163,-955396800,3),(163,-934743600,2),(163,-923947200,3),(163,-904503600,2),(163,-891892800,3),(163,-880221600,4),(163,-769395600,5),(163,-765399600,3),(163,-747252000,2),(163,-733950000,3),(163,-715802400,2),(163,-702500400,3),(163,-684352800,2),(163,-671050800,3),(163,-652903200,2),(163,-639601200,3),(163,-620848800,2),(163,-608151600,3),(163,-589399200,2),(163,-576097200,3),(163,-557949600,2),(163,-544647600,3),(163,-526500000,2),(163,-513198000,3),(163,-495050400,2),(163,-481748400,3),(163,-463600800,2),(163,-450298800,3),(163,-431546400,2),(163,-418244400,3),(163,-400096800,2),(163,-384375600,3),(163,-368647200,2),(163,-352926000,3),(163,-337197600,2),(163,-321476400,3),(163,-305748000,2),(163,-289422000,3),(163,-273693600,2),(163,-257972400,3),(163,-242244000,2),(163,-226522800,3),(163,-210794400,2),(163,-195073200,3),(163,-179344800,2),(163,-163623600,3),(163,-147895200,2),(163,-131569200,3),(163,-116445600,2),(163,-100119600,3),(163,-84391200,2),(163,-68670000,3),(163,-52941600,2),(163,-37220400,3),(163,-21492000,2),(163,-5770800,3),(163,9957600,2),(163,25678800,3),(163,41407200,2),(163,57733200,3),(163,73461600,2),(163,89182800,3),(163,136360800,2),(163,152082000,3),(163,167810400,2),(163,183531600,3),(163,199260000,2),(163,215586000,3),(163,230709600,2),(163,247035600,3),(163,262764000,2),(163,278485200,3),(163,294213600,2),(163,309934800,3),(163,325663200,2),(163,341384400,3),(163,357112800,2),(163,372834000,3),(163,388562400,2),(163,404888400,3),(163,420012000,2),(163,436338000,3),(163,452066400,2),(163,467787600,3),(163,483516000,2),(163,499237200,3),(163,514965600,2),(163,530686800,3),(163,544600800,2),(163,562136400,3),(163,576050400,2),(163,594190800,3),(163,607500000,2),(163,625640400,3),(163,638949600,2),(163,657090000,3),(163,671004000,2),(163,688539600,3),(163,702453600,2),(163,719989200,3),(163,733896060,2),(163,752036460,3),(163,765345660,2),(163,783486060,3),(163,796795260,2),(163,814935660,3),(163,828849660,2),(163,846385260,3),(163,860299260,2),(163,877834860,3),(163,891748860,2),(163,909284460,3),(163,923198460,2),(163,941338860,3),(163,954648060,2),(163,972788460,3),(163,986097660,2),(163,1004238060,3),(163,1018152060,2),(163,1035687660,3),(163,1049601660,2),(163,1067137260,3),(163,1081051260,2),(163,1099191660,3),(163,1112500860,2),(163,1130641260,3),(163,1143950460,2),(163,1162090860,3),(163,1173592800,2),(163,1194152400,3),(163,1205042400,2),(163,1225602000,3),(163,1236492000,2),(163,1257051600,3),(163,1268546400,2),(163,1289106000,3),(163,1299996000,2),(163,1320555600,3),(163,1331445600,2),(163,1352005200,3),(163,1362895200,2),(163,1383454800,3),(163,1394344800,2),(163,1414904400,3),(163,1425794400,2),(163,1446354000,3),(163,1457848800,2),(163,1478408400,3),(163,1489298400,2),(163,1509858000,3),(163,1520748000,2),(163,1541307600,3),(163,1552197600,2),(163,1572757200,3),(163,1583647200,2),(163,1604206800,3),(163,1615701600,2),(163,1636261200,3),(163,1647151200,2),(163,1667710800,3),(163,1678600800,2),(163,1699160400,3),(163,1710050400,2),(163,1730610000,3),(163,1741500000,2),(163,1762059600,3),(163,1772949600,2),(163,1793509200,3),(163,1805004000,2),(163,1825563600,3),(163,1836453600,2),(163,1857013200,3),(163,1867903200,2),(163,1888462800,3),(163,1899352800,2),(163,1919912400,3),(163,1930802400,2),(163,1951362000,3),(163,1962856800,2),(163,1983416400,3),(163,1994306400,2),(163,2014866000,3),(163,2025756000,2),(163,2046315600,3),(163,2057205600,2),(163,2077765200,3),(163,2088655200,2),(163,2109214800,3),(163,2120104800,2),(163,2140664400,3),(164,-2147483648,0),(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,-2147483648,0),(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),(165,2147483647,5),(166,-2147483648,2),(166,-1632070800,1),(166,-1615140000,2),(166,-1601753400,1),(166,-1583697600,2),(166,-1567357200,1),(166,-1554667200,2),(166,-1534698000,1),(166,-1524074400,2),(166,-1503248400,1),(166,-1492365600,2),(166,-1471798800,1),(166,-1460916000,2),(166,-1440954000,1),(166,-1428861600,2),(166,-1409504400,1),(166,-1397412000,2),(166,-1378054800,1),(166,-1365962400,2),(166,-1346605200,1),(166,-1333908000,2),(166,-1315155600,1),(166,-1301853600,2),(166,-1283706000,1),(166,-1270404000,2),(166,-1252256400,1),(166,-1238954400,2),(166,-1220806800,1),(166,-1207504800,2),(166,-1188752400,1),(166,-1176055200,2),(166,-1157302800,1),(166,-1144000800,2),(166,-1125853200,1),(166,-1112551200,2),(166,-1094403600,1),(166,-1081101600,2),(166,-1062954000,1),(166,-1049652000,2),(166,-1031504400,1),(166,-1018202400,2),(166,-1000054800,1),(166,-986752800,2),(166,-968000400,1),(166,-955303200,2),(166,-936550800,1),(166,-880218000,3),(166,-769395600,4),(166,-765396000,2),(166,-747248400,1),(166,-733946400,2),(166,-715806000,1),(166,-702504000,2),(166,-684356400,1),(166,-671054400,2),(166,-652906800,1),(166,-634161600,2),(166,-620845200,1),(166,-602704800,2),(166,-589395600,1),(166,-576093600,2),(166,-557946000,1),(166,-544644000,2),(166,-526496400,1),(166,-513194400,2),(166,-495046800,1),(166,-481744800,2),(166,-463597200,1),(166,-450295200,2),(166,-431542800,1),(166,-418240800,2),(166,-400093200,1),(166,-384372000,2),(166,-368643600,1),(166,-352922400,2),(166,-337194000,1),(166,-321472800,2),(166,-305744400,1),(166,-289418400,2),(166,-273690000,1),(166,-257968800,2),(166,-242240400,1),(166,-226519200,2),(166,-210790800,1),(166,-195069600,2),(166,-179341200,1),(166,-163620000,2),(166,-147891600,1),(166,-131565600,2),(166,-116442000,1),(166,-100116000,2),(166,-84387600,1),(166,-68666400,2),(166,-52938000,1),(166,-37216800,2),(166,-21488400,1),(166,-5767200,2),(166,9961200,1),(166,25682400,2),(166,41410800,1),(166,57736800,2),(166,73465200,1),(166,89186400,2),(166,104914800,1),(166,120636000,2),(166,136364400,1),(166,152085600,2),(166,167814000,1),(166,183535200,2),(166,199263600,1),(166,215589600,2),(166,230713200,1),(166,247039200,2),(166,262767600,1),(166,278488800,2),(166,294217200,1),(166,309938400,2),(166,325666800,1),(166,341388000,2),(166,357116400,1),(166,372837600,2),(166,388566000,1),(166,404892000,2),(166,420015600,1),(166,436341600,2),(166,452070000,1),(166,467791200,2),(166,483519600,1),(166,499240800,2),(166,514969200,1),(166,530690400,2),(166,544604400,1),(166,562140000,2),(166,576054000,1),(166,594194400,2),(166,607503600,1),(166,625644000,2),(166,638953200,1),(166,657093600,2),(166,671007600,1),(166,688543200,2),(166,702457200,1),(166,719992800,2),(166,733906800,1),(166,752047200,2),(166,765356400,1),(166,783496800,2),(166,796806000,1),(166,814946400,2),(166,828860400,1),(166,846396000,2),(166,860310000,1),(166,877845600,2),(166,891759600,1),(166,909295200,2),(166,923209200,1),(166,941349600,2),(166,954658800,1),(166,972799200,2),(166,986108400,1),(166,1004248800,2),(166,1018162800,1),(166,1035698400,2),(166,1049612400,1),(166,1067148000,2),(166,1081062000,1),(166,1099202400,2),(166,1112511600,1),(166,1130652000,2),(166,1143961200,1),(166,1162101600,2),(166,1173596400,1),(166,1194156000,2),(166,1205046000,1),(166,1225605600,2),(166,1236495600,1),(166,1257055200,2),(166,1268550000,1),(166,1289109600,2),(166,1299999600,1),(166,1320559200,2),(166,1331449200,1),(166,1352008800,2),(166,1362898800,1),(166,1383458400,2),(166,1394348400,1),(166,1414908000,2),(166,1425798000,1),(166,1446357600,2),(166,1457852400,1),(166,1478412000,2),(166,1489302000,1),(166,1509861600,2),(166,1520751600,1),(166,1541311200,2),(166,1552201200,1),(166,1572760800,2),(166,1583650800,1),(166,1604210400,2),(166,1615705200,1),(166,1636264800,2),(166,1647154800,1),(166,1667714400,2),(166,1678604400,1),(166,1699164000,2),(166,1710054000,1),(166,1730613600,2),(166,1741503600,1),(166,1762063200,2),(166,1772953200,1),(166,1793512800,2),(166,1805007600,1),(166,1825567200,2),(166,1836457200,1),(166,1857016800,2),(166,1867906800,1),(166,1888466400,2),(166,1899356400,1),(166,1919916000,2),(166,1930806000,1),(166,1951365600,2),(166,1962860400,1),(166,1983420000,2),(166,1994310000,1),(166,2014869600,2),(166,2025759600,1),(166,2046319200,2),(166,2057209200,1),(166,2077768800,2),(166,2088658800,1),(166,2109218400,2),(166,2120108400,1),(166,2140668000,2),(167,-2147483648,0),(167,-1825098836,1),(168,-2147483648,0),(168,-1825095030,2),(168,-873140400,1),(168,-788904000,2),(168,-786222000,1),(168,-769395600,3),(168,-763848000,2),(168,-179341200,4),(168,-163620000,2),(168,-147891600,4),(168,-131565600,2),(168,-116442000,4),(168,-100116000,2),(168,-84387600,4),(168,-68666400,2),(168,-52938000,4),(168,-37216800,2),(168,-21488400,4),(168,-5767200,2),(168,9961200,4),(168,25682400,2),(168,41410800,4),(168,57736800,2),(168,73465200,4),(168,89186400,2),(168,104914800,4),(168,120636000,2),(168,136364400,4),(168,152085600,2),(168,167814000,4),(168,183535200,2),(168,199263600,4),(168,215589600,2),(168,230713200,4),(168,247039200,2),(168,262767600,4),(168,278488800,2),(168,294217200,4),(168,309938400,2),(168,325666800,4),(168,341388000,2),(168,357116400,4),(168,372837600,2),(168,388566000,4),(168,404892000,2),(168,420015600,4),(168,436341600,2),(168,452070000,4),(168,467791200,2),(168,483519600,4),(168,499240800,2),(168,514969200,4),(168,530690400,2),(168,544604400,4),(168,562140000,2),(168,576054000,4),(168,594194400,2),(168,607503600,4),(168,625644000,2),(168,638953200,4),(168,657093600,2),(168,671007600,4),(168,688543200,2),(168,702457200,4),(168,719992800,2),(168,733906800,4),(168,752047200,2),(168,765356400,4),(168,783496800,2),(168,796806000,4),(168,814946400,2),(168,828860400,4),(168,846396000,2),(168,860310000,4),(168,877845600,2),(168,891759600,4),(168,909295200,2),(168,923209200,4),(168,941349600,2),(168,954658800,4),(168,972799200,2),(168,986108400,4),(168,1004248800,2),(168,1018162800,4),(168,1035698400,2),(168,1049612400,4),(168,1067148000,2),(168,1081062000,4),(168,1099202400,2),(168,1112511600,4),(168,1130652000,2),(168,1143961200,4),(168,1162101600,2),(168,1173596400,4),(168,1194156000,2),(168,1205046000,4),(168,1225605600,2),(168,1236495600,4),(168,1257055200,2),(168,1268550000,4),(168,1289109600,2),(168,1299999600,4),(168,1320559200,2),(168,1331449200,4),(168,1352008800,2),(168,1362898800,4),(168,1383458400,2),(168,1394348400,4),(168,1414908000,2),(168,1425798000,4),(168,1446357600,2),(168,1457852400,4),(168,1478412000,2),(168,1489302000,4),(168,1509861600,2),(168,1520751600,4),(168,1541311200,2),(168,1552201200,4),(168,1572760800,2),(168,1583650800,4),(168,1604210400,2),(168,1615705200,4),(168,1636264800,2),(168,1647154800,4),(168,1667714400,2),(168,1678604400,4),(168,1699164000,2),(168,1710054000,4),(168,1730613600,2),(168,1741503600,4),(168,1762063200,2),(168,1772953200,4),(168,1793512800,2),(168,1805007600,4),(168,1825567200,2),(168,1836457200,4),(168,1857016800,2),(168,1867906800,4),(168,1888466400,2),(168,1899356400,4),(168,1919916000,2),(168,1930806000,4),(168,1951365600,2),(168,1962860400,4),(168,1983420000,2),(168,1994310000,4),(168,2014869600,2),(168,2025759600,4),(168,2046319200,2),(168,2057209200,4),(168,2077768800,2),(168,2088658800,4),(168,2109218400,2),(168,2120108400,4),(168,2140668000,2),(169,-2147483648,2),(169,-1633280400,1),(169,-1615140000,2),(169,-1601830800,1),(169,-1583690400,2),(169,-1570381200,1),(169,-1551636000,2),(169,-1536512400,1),(169,-1523210400,2),(169,-1504458000,1),(169,-1491760800,2),(169,-1473008400,1),(169,-1459706400,2),(169,-1441558800,1),(169,-1428256800,2),(169,-1410109200,1),(169,-1396807200,2),(169,-1378659600,1),(169,-1365357600,2),(169,-1347210000,1),(169,-1333908000,2),(169,-1315155600,1),(169,-1301853600,2),(169,-1283706000,1),(169,-1270404000,2),(169,-1252256400,1),(169,-1238954400,2),(169,-1220806800,1),(169,-1207504800,2),(169,-1189357200,1),(169,-1176055200,2),(169,-1157302800,1),(169,-1144605600,2),(169,-1125853200,1),(169,-1112551200,2),(169,-1094403600,1),(169,-1081101600,2),(169,-1062954000,1),(169,-1049652000,2),(169,-1031504400,1),(169,-1018202400,2),(169,-1000054800,1),(169,-986752800,2),(169,-968000400,1),(169,-955303200,2),(169,-936550800,1),(169,-923248800,2),(169,-905101200,1),(169,-891799200,2),(169,-880218000,3),(169,-769395600,4),(169,-765396000,2),(169,-747248400,1),(169,-733946400,2),(169,-715798800,1),(169,-702496800,2),(169,-684349200,1),(169,-671047200,2),(169,-652899600,1),(169,-639597600,2),(169,-620845200,1),(169,-608148000,2),(169,-589395600,1),(169,-576093600,2),(169,-557946000,1),(169,-544644000,2),(169,-526496400,1),(169,-513194400,2),(169,-495046800,1),(169,-481744800,2),(169,-463597200,1),(169,-447271200,2),(169,-431542800,1),(169,-415821600,2),(169,-400093200,1),(169,-384372000,2),(169,-368643600,1),(169,-352922400,2),(169,-337194000,1),(169,-321472800,2),(169,-305744400,1),(169,-289418400,2),(169,-273690000,1),(169,-257968800,2),(169,-242240400,1),(169,-226519200,2),(169,-210790800,1),(169,-195069600,2),(169,-179341200,1),(169,-163620000,2),(169,-147891600,1),(169,-131565600,2),(169,-116442000,1),(169,-100116000,2),(169,-84387600,1),(169,-68666400,2),(169,-52938000,1),(169,-37216800,2),(169,-21488400,1),(169,-5767200,2),(169,9961200,1),(169,25682400,2),(169,41410800,1),(169,57736800,2),(169,73465200,1),(169,89186400,2),(169,104914800,1),(169,120636000,2),(169,126687600,1),(169,152085600,2),(169,162370800,1),(169,183535200,2),(169,199263600,1),(169,215589600,2),(169,230713200,1),(169,247039200,2),(169,262767600,1),(169,278488800,2),(169,294217200,1),(169,309938400,2),(169,325666800,1),(169,341388000,2),(169,357116400,1),(169,372837600,2),(169,388566000,1),(169,404892000,2),(169,420015600,1),(169,436341600,2),(169,452070000,1),(169,467791200,2),(169,483519600,1),(169,499240800,2),(169,514969200,1),(169,530690400,2),(169,544604400,1),(169,562140000,2),(169,576054000,1),(169,594194400,2),(169,607503600,1),(169,625644000,2),(169,638953200,1),(169,657093600,2),(169,671007600,1),(169,688543200,2),(169,702457200,1),(169,719992800,2),(169,733906800,1),(169,752047200,2),(169,765356400,1),(169,783496800,2),(169,796806000,1),(169,814946400,2),(169,828860400,1),(169,846396000,2),(169,860310000,1),(169,877845600,2),(169,891759600,1),(169,909295200,2),(169,923209200,1),(169,941349600,2),(169,954658800,1),(169,972799200,2),(169,986108400,1),(169,1004248800,2),(169,1018162800,1),(169,1035698400,2),(169,1049612400,1),(169,1067148000,2),(169,1081062000,1),(169,1099202400,2),(169,1112511600,1),(169,1130652000,2),(169,1143961200,1),(169,1162101600,2),(169,1173596400,1),(169,1194156000,2),(169,1205046000,1),(169,1225605600,2),(169,1236495600,1),(169,1257055200,2),(169,1268550000,1),(169,1289109600,2),(169,1299999600,1),(169,1320559200,2),(169,1331449200,1),(169,1352008800,2),(169,1362898800,1),(169,1383458400,2),(169,1394348400,1),(169,1414908000,2),(169,1425798000,1),(169,1446357600,2),(169,1457852400,1),(169,1478412000,2),(169,1489302000,1),(169,1509861600,2),(169,1520751600,1),(169,1541311200,2),(169,1552201200,1),(169,1572760800,2),(169,1583650800,1),(169,1604210400,2),(169,1615705200,1),(169,1636264800,2),(169,1647154800,1),(169,1667714400,2),(169,1678604400,1),(169,1699164000,2),(169,1710054000,1),(169,1730613600,2),(169,1741503600,1),(169,1762063200,2),(169,1772953200,1),(169,1793512800,2),(169,1805007600,1),(169,1825567200,2),(169,1836457200,1),(169,1857016800,2),(169,1867906800,1),(169,1888466400,2),(169,1899356400,1),(169,1919916000,2),(169,1930806000,1),(169,1951365600,2),(169,1962860400,1),(169,1983420000,2),(169,1994310000,1),(169,2014869600,2),(169,2025759600,1),(169,2046319200,2),(169,2057209200,1),(169,2077768800,2),(169,2088658800,1),(169,2109218400,2),(169,2120108400,1),(169,2140668000,2),(170,-2147483648,2),(170,-1632070800,1),(170,-1615140000,2),(170,-923252400,1),(170,-880218000,3),(170,-769395600,4),(170,-765396000,2),(170,136364400,1),(170,152085600,2),(170,167814000,1),(170,183535200,2),(170,199263600,1),(170,215589600,2),(170,230713200,1),(170,247039200,2),(170,262767600,1),(170,278488800,2),(170,294217200,1),(170,309938400,2),(170,325666800,1),(170,341388000,2),(170,357116400,1),(170,372837600,2),(170,388566000,1),(170,404892000,2),(170,420015600,1),(170,436341600,2),(170,452070000,1),(170,467791200,2),(170,483519600,1),(170,499240800,2),(170,514969200,1),(170,530690400,2),(170,544604400,1),(170,562140000,2),(170,576054000,1),(170,594194400,2),(170,607503600,1),(170,625644000,2),(170,638953200,1),(170,657093600,2),(170,671007600,1),(170,688543200,2),(170,702457200,1),(170,719992800,2),(170,733906800,1),(170,752047200,2),(170,765356400,1),(170,783496800,2),(170,796806000,1),(170,814946400,2),(170,828860400,1),(170,846396000,2),(170,860310000,1),(170,877845600,2),(170,891759600,1),(170,909295200,2),(170,923209200,1),(170,941349600,2),(170,954658800,1),(170,972799200,2),(170,986108400,1),(170,1004248800,2),(170,1018162800,1),(170,1035698400,2),(170,1049612400,1),(170,1067148000,2),(170,1081062000,1),(170,1099202400,2),(170,1112511600,1),(170,1130652000,2),(170,1143961200,1),(170,1162101600,2),(170,1173596400,1),(170,1194156000,2),(170,1205046000,1),(170,1225605600,2),(170,1236495600,1),(170,1257055200,2),(170,1268550000,1),(170,1289109600,2),(170,1299999600,1),(170,1320559200,2),(170,1331449200,1),(170,1352008800,2),(170,1362898800,1),(170,1383458400,2),(170,1394348400,1),(170,1414908000,2),(170,1425798000,1),(170,1446357600,2),(170,1457852400,1),(170,1478412000,2),(170,1489302000,1),(170,1509861600,2),(170,1520751600,1),(170,1541311200,2),(170,1552201200,1),(170,1572760800,2),(170,1583650800,1),(170,1604210400,2),(170,1615705200,1),(170,1636264800,2),(170,1647154800,1),(170,1667714400,2),(170,1678604400,1),(170,1699164000,2),(170,1710054000,1),(170,1730613600,2),(170,1741503600,1),(170,1762063200,2),(170,1772953200,1),(170,1793512800,2),(170,1805007600,1),(170,1825567200,2),(170,1836457200,1),(170,1857016800,2),(170,1867906800,1),(170,1888466400,2),(170,1899356400,1),(170,1919916000,2),(170,1930806000,1),(170,1951365600,2),(170,1962860400,1),(170,1983420000,2),(170,1994310000,1),(170,2014869600,2),(170,2025759600,1),(170,2046319200,2),(170,2057209200,1),(170,2077768800,2),(170,2088658800,1),(170,2109218400,2),(170,2120108400,1),(170,2140668000,2),(171,-2147483648,1),(171,-880196400,2),(171,-769395600,3),(171,-765374400,1),(171,-86878800,4),(171,-21466800,5),(171,-5745600,4),(171,9982800,5),(171,25704000,4),(171,41432400,5),(171,57758400,4),(171,73486800,5),(171,89208000,4),(171,104936400,5),(171,120657600,4),(171,126709200,5),(171,152107200,4),(171,162392400,5),(171,183556800,4),(171,199285200,5),(171,215611200,4),(171,230734800,5),(171,247060800,4),(171,262789200,5),(171,278510400,4),(171,294238800,5),(171,309960000,4),(171,325688400,5),(171,341409600,4),(171,357138000,5),(171,372859200,4),(171,388587600,5),(171,404913600,4),(171,420037200,5),(171,436363200,6),(171,439030800,8),(171,452084400,7),(171,467805600,8),(171,483534000,7),(171,499255200,8),(171,514983600,7),(171,530704800,8),(171,544618800,7),(171,562154400,8),(171,576068400,7),(171,594208800,8),(171,607518000,7),(171,625658400,8),(171,638967600,7),(171,657108000,8),(171,671022000,7),(171,688557600,8),(171,702471600,7),(171,720007200,8),(171,733921200,7),(171,752061600,8),(171,765370800,7),(171,783511200,8),(171,796820400,7),(171,814960800,8),(171,828874800,7),(171,846410400,8),(171,860324400,7),(171,877860000,8),(171,891774000,7),(171,909309600,8),(171,923223600,7),(171,941364000,8),(171,954673200,7),(171,972813600,8),(171,986122800,7),(171,1004263200,8),(171,1018177200,7),(171,1035712800,8),(171,1049626800,7),(171,1067162400,8),(171,1081076400,7),(171,1099216800,8),(171,1112526000,7),(171,1130666400,8),(171,1143975600,7),(171,1162116000,8),(171,1173610800,7),(171,1194170400,8),(171,1205060400,7),(171,1225620000,8),(171,1236510000,7),(171,1257069600,8),(171,1268564400,7),(171,1289124000,8),(171,1300014000,7),(171,1320573600,8),(171,1331463600,7),(171,1352023200,8),(171,1362913200,7),(171,1383472800,8),(171,1394362800,7),(171,1414922400,8),(171,1425812400,7),(171,1446372000,8),(171,1457866800,7),(171,1478426400,8),(171,1489316400,7),(171,1509876000,8),(171,1520766000,7),(171,1541325600,8),(171,1552215600,7),(171,1572775200,8),(171,1583665200,7),(171,1604224800,8),(171,1615719600,7),(171,1636279200,8),(171,1647169200,7),(171,1667728800,8),(171,1678618800,7),(171,1699178400,8),(171,1710068400,7),(171,1730628000,8),(171,1741518000,7),(171,1762077600,8),(171,1772967600,7),(171,1793527200,8),(171,1805022000,7),(171,1825581600,8),(171,1836471600,7),(171,1857031200,8),(171,1867921200,7),(171,1888480800,8),(171,1899370800,7),(171,1919930400,8),(171,1930820400,7),(171,1951380000,8),(171,1962874800,7),(171,1983434400,8),(171,1994324400,7),(171,2014884000,8),(171,2025774000,7),(171,2046333600,8),(171,2057223600,7),(171,2077783200,8),(171,2088673200,7),(171,2109232800,8),(171,2120122800,7),(171,2140682400,8),(172,-2147483648,0),(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),(172,2147483647,2),(173,-2147483648,2),(173,-1633273200,1),(173,-1615132800,2),(173,-1601823600,1),(173,-1583683200,2),(173,-880210800,3),(173,-769395600,4),(173,-765388800,2),(173,-84380400,1),(173,-68659200,2),(173,-52930800,1),(173,-37209600,2),(173,-21481200,1),(173,-5760000,2),(173,9968400,1),(173,25689600,2),(173,41418000,1),(173,57744000,2),(173,73472400,1),(173,89193600,2),(173,104922000,1),(173,120643200,2),(173,126694800,1),(173,152092800,2),(173,162378000,1),(173,183542400,2),(173,199270800,1),(173,215596800,2),(173,230720400,1),(173,247046400,2),(173,262774800,1),(173,278496000,2),(173,294224400,1),(173,309945600,2),(173,325674000,1),(173,341395200,2),(173,357123600,1),(173,372844800,2),(173,388573200,1),(173,404899200,2),(173,420022800,1),(173,436348800,2),(173,452077200,1),(173,467798400,2),(173,483526800,1),(173,499248000,2),(173,514976400,1),(173,530697600,2),(173,544611600,1),(173,562147200,2),(173,576061200,1),(173,594201600,2),(173,607510800,1),(173,625651200,2),(173,638960400,1),(173,657100800,2),(173,671014800,1),(173,688550400,2),(173,702464400,1),(173,720000000,2),(173,733914000,1),(173,752054400,2),(173,765363600,1),(173,783504000,2),(173,796813200,1),(173,814953600,2),(173,828867600,1),(173,846403200,2),(173,860317200,1),(173,877852800,2),(173,891766800,1),(173,909302400,2),(173,923216400,1),(173,941356800,2),(173,954666000,1),(173,972806400,2),(173,986115600,1),(173,1004256000,2),(173,1018170000,1),(173,1035705600,2),(173,1049619600,1),(173,1067155200,2),(173,1081069200,1),(173,1099209600,2),(173,1112518800,1),(173,1130659200,2),(173,1143968400,1),(173,1162108800,2),(173,1173603600,1),(173,1194163200,2),(173,1205053200,1),(173,1225612800,2),(173,1236502800,1),(173,1257062400,2),(173,1268557200,1),(173,1289116800,6),(173,1300003200,5),(173,1320562800,6),(173,1331452800,5),(173,1352012400,6),(173,1362902400,5),(173,1383462000,6),(173,1394352000,5),(173,1414911600,6),(173,1425801600,5),(173,1446361200,6),(173,1457856000,5),(173,1478415600,6),(173,1489305600,5),(173,1509865200,6),(173,1520755200,5),(173,1541314800,6),(173,1552204800,5),(173,1572764400,6),(173,1583654400,5),(173,1604214000,6),(173,1615708800,5),(173,1636268400,6),(173,1647158400,5),(173,1667718000,6),(173,1678608000,5),(173,1699167600,6),(173,1710057600,5),(173,1730617200,6),(173,1741507200,5),(173,1762066800,6),(173,1772956800,5),(173,1793516400,6),(173,1805011200,5),(173,1825570800,6),(173,1836460800,5),(173,1857020400,6),(173,1867910400,5),(173,1888470000,6),(173,1899360000,5),(173,1919919600,6),(173,1930809600,5),(173,1951369200,6),(173,1962864000,5),(173,1983423600,6),(173,1994313600,5),(173,2014873200,6),(173,2025763200,5),(173,2046322800,6),(173,2057212800,5),(173,2077772400,6),(173,2088662400,5),(173,2109222000,6),(173,2120112000,5),(173,2140671600,6),(174,-2147483648,2),(174,-1633273200,1),(174,-1615132800,2),(174,-1601823600,1),(174,-1583683200,2),(174,-880210800,3),(174,-769395600,4),(174,-765388800,2),(174,-84380400,1),(174,-68659200,2),(174,-52930800,1),(174,-37209600,2),(174,-21481200,1),(174,-5760000,2),(174,9968400,1),(174,25689600,2),(174,41418000,1),(174,57744000,2),(174,73472400,1),(174,89193600,2),(174,104922000,1),(174,120643200,2),(174,126694800,1),(174,152092800,2),(174,162378000,1),(174,183542400,2),(174,199270800,1),(174,215596800,2),(174,230720400,1),(174,247046400,2),(174,262774800,1),(174,278496000,2),(174,294224400,1),(174,309945600,2),(174,325674000,1),(174,341395200,2),(174,357123600,1),(174,372844800,2),(174,388573200,1),(174,404899200,2),(174,420022800,1),(174,436348800,2),(174,452077200,1),(174,467798400,2),(174,483526800,1),(174,499248000,2),(174,514976400,1),(174,530697600,2),(174,544611600,1),(174,562147200,2),(174,576061200,1),(174,594201600,2),(174,607510800,1),(174,625651200,2),(174,638960400,1),(174,657100800,2),(174,671014800,1),(174,688550400,2),(174,702464400,1),(174,720000000,6),(174,733910400,5),(174,752050800,6),(174,765360000,5),(174,783500400,6),(174,796809600,5),(174,814950000,6),(174,828864000,5),(174,846399600,6),(174,860313600,5),(174,877849200,6),(174,891763200,5),(174,909298800,6),(174,923212800,5),(174,941353200,6),(174,954662400,5),(174,972802800,6),(174,986112000,5),(174,1004252400,6),(174,1018166400,5),(174,1035702000,6),(174,1049616000,5),(174,1067151600,6),(174,1081065600,5),(174,1099206000,6),(174,1112515200,5),(174,1130655600,6),(174,1143964800,5),(174,1162105200,6),(174,1173600000,5),(174,1194159600,6),(174,1205049600,5),(174,1225609200,6),(174,1236499200,5),(174,1257058800,6),(174,1268553600,5),(174,1289113200,6),(174,1300003200,5),(174,1320562800,6),(174,1331452800,5),(174,1352012400,6),(174,1362902400,5),(174,1383462000,6),(174,1394352000,5),(174,1414911600,6),(174,1425801600,5),(174,1446361200,6),(174,1457856000,5),(174,1478415600,6),(174,1489305600,5),(174,1509865200,6),(174,1520755200,5),(174,1541314800,6),(174,1552204800,5),(174,1572764400,6),(174,1583654400,5),(174,1604214000,6),(174,1615708800,5),(174,1636268400,6),(174,1647158400,5),(174,1667718000,6),(174,1678608000,5),(174,1699167600,6),(174,1710057600,5),(174,1730617200,6),(174,1741507200,5),(174,1762066800,6),(174,1772956800,5),(174,1793516400,6),(174,1805011200,5),(174,1825570800,6),(174,1836460800,5),(174,1857020400,6),(174,1867910400,5),(174,1888470000,6),(174,1899360000,5),(174,1919919600,6),(174,1930809600,5),(174,1951369200,6),(174,1962864000,5),(174,1983423600,6),(174,1994313600,5),(174,2014873200,6),(174,2025763200,5),(174,2046322800,6),(174,2057212800,5),(174,2077772400,6),(174,2088662400,5),(174,2109222000,6),(174,2120112000,5),(174,2140671600,6),(175,-2147483648,2),(175,-1633273200,1),(175,-1615132800,2),(175,-1601823600,1),(175,-1583683200,2),(175,-880210800,3),(175,-769395600,4),(175,-765388800,2),(175,-84380400,1),(175,-68659200,2),(175,-52930800,1),(175,-37209600,2),(175,-21481200,1),(175,-5760000,2),(175,9968400,1),(175,25689600,2),(175,41418000,1),(175,57744000,2),(175,73472400,1),(175,89193600,2),(175,104922000,1),(175,120643200,2),(175,126694800,1),(175,152092800,2),(175,162378000,1),(175,183542400,2),(175,199270800,1),(175,215596800,2),(175,230720400,1),(175,247046400,2),(175,262774800,1),(175,278496000,2),(175,294224400,1),(175,309945600,2),(175,325674000,1),(175,341395200,2),(175,357123600,1),(175,372844800,2),(175,388573200,1),(175,404899200,2),(175,420022800,1),(175,436348800,2),(175,452077200,1),(175,467798400,2),(175,483526800,1),(175,499248000,2),(175,514976400,1),(175,530697600,2),(175,544611600,1),(175,562147200,2),(175,576061200,1),(175,594201600,2),(175,607510800,1),(175,625651200,2),(175,638960400,1),(175,657100800,2),(175,671014800,1),(175,688550400,2),(175,702464400,1),(175,720000000,2),(175,733914000,1),(175,752054400,2),(175,765363600,1),(175,783504000,2),(175,796813200,1),(175,814953600,2),(175,828867600,1),(175,846403200,2),(175,860317200,1),(175,877852800,2),(175,891766800,1),(175,909302400,2),(175,923216400,1),(175,941356800,2),(175,954666000,1),(175,972806400,2),(175,986115600,1),(175,1004256000,2),(175,1018170000,1),(175,1035705600,2),(175,1049619600,1),(175,1067155200,6),(175,1081065600,5),(175,1099206000,6),(175,1112515200,5),(175,1130655600,6),(175,1143964800,5),(175,1162105200,6),(175,1173600000,5),(175,1194159600,6),(175,1205049600,5),(175,1225609200,6),(175,1236499200,5),(175,1257058800,6),(175,1268553600,5),(175,1289113200,6),(175,1300003200,5),(175,1320562800,6),(175,1331452800,5),(175,1352012400,6),(175,1362902400,5),(175,1383462000,6),(175,1394352000,5),(175,1414911600,6),(175,1425801600,5),(175,1446361200,6),(175,1457856000,5),(175,1478415600,6),(175,1489305600,5),(175,1509865200,6),(175,1520755200,5),(175,1541314800,6),(175,1552204800,5),(175,1572764400,6),(175,1583654400,5),(175,1604214000,6),(175,1615708800,5),(175,1636268400,6),(175,1647158400,5),(175,1667718000,6),(175,1678608000,5),(175,1699167600,6),(175,1710057600,5),(175,1730617200,6),(175,1741507200,5),(175,1762066800,6),(175,1772956800,5),(175,1793516400,6),(175,1805011200,5),(175,1825570800,6),(175,1836460800,5),(175,1857020400,6),(175,1867910400,5),(175,1888470000,6),(175,1899360000,5),(175,1919919600,6),(175,1930809600,5),(175,1951369200,6),(175,1962864000,5),(175,1983423600,6),(175,1994313600,5),(175,2014873200,6),(175,2025763200,5),(175,2046322800,6),(175,2057212800,5),(175,2077772400,6),(175,2088662400,5),(175,2109222000,6),(175,2120112000,5),(175,2140671600,6),(176,-2147483648,0),(176,-1686083584,1),(176,323845200,4),(176,338950800,2),(176,354675600,3),(176,370400400,2),(176,386125200,3),(176,401850000,2),(176,417574800,3),(176,433299600,2),(176,449024400,3),(176,465354000,2),(176,481078800,3),(176,496803600,2),(176,512528400,3),(176,528253200,2),(176,543978000,3),(176,559702800,2),(176,575427600,3),(176,591152400,2),(176,606877200,3),(176,622602000,2),(176,638326800,3),(176,654656400,2),(176,670381200,3),(176,686106000,2),(176,701830800,3),(176,717555600,2),(176,733280400,3),(176,749005200,2),(176,764730000,3),(176,780454800,2),(176,796179600,3),(176,811904400,2),(176,828234000,3),(176,846378000,2),(176,859683600,3),(176,877827600,2),(176,891133200,3),(176,909277200,2),(176,922582800,3),(176,941331600,2),(176,954032400,3),(176,972781200,2),(176,985482000,3),(176,1004230800,2),(176,1017536400,3),(176,1035680400,2),(176,1048986000,3),(176,1067130000,2),(176,1080435600,3),(176,1099184400,2),(176,1111885200,3),(176,1130634000,2),(176,1143334800,3),(176,1162083600,2),(176,1174784400,3),(176,1193533200,2),(176,1206838800,3),(176,1224982800,2),(176,1238288400,3),(176,1256432400,2),(176,1269738000,3),(176,1288486800,2),(176,1301187600,3),(176,1319936400,2),(176,1332637200,3),(176,1351386000,2),(176,1364691600,3),(176,1382835600,2),(176,1396141200,3),(176,1414285200,2),(176,1427590800,3),(176,1445734800,2),(176,1459040400,3),(176,1477789200,2),(176,1490490000,3),(176,1509238800,2),(176,1521939600,3),(176,1540688400,2),(176,1553994000,3),(176,1572138000,2),(176,1585443600,3),(176,1603587600,2),(176,1616893200,3),(176,1635642000,2),(176,1648342800,3),(176,1667091600,2),(176,1679792400,3),(176,1698541200,2),(176,1711846800,3),(176,1729990800,2),(176,1743296400,3),(176,1761440400,2),(176,1774746000,3),(176,1792890000,2),(176,1806195600,3),(176,1824944400,2),(176,1837645200,3),(176,1856394000,2),(176,1869094800,3),(176,1887843600,2),(176,1901149200,3),(176,1919293200,2),(176,1932598800,3),(176,1950742800,2),(176,1964048400,3),(176,1982797200,2),(176,1995498000,3),(176,2014246800,2),(176,2026947600,3),(176,2045696400,2),(176,2058397200,3),(176,2077146000,2),(176,2090451600,3),(176,2108595600,2),(176,2121901200,3),(176,2140045200,2),(176,2147483647,2),(177,-2147483648,0),(177,-1514739600,1),(177,-1343066400,2),(177,-1234807200,1),(177,-1220292000,2),(177,-1207159200,1),(177,-1191344400,2),(177,828864000,3),(177,846399600,2),(177,860313600,3),(177,877849200,2),(177,891766800,4),(177,909302400,1),(177,923216400,4),(177,941356800,1),(177,954666000,4),(177,972806400,1),(177,989139600,4),(177,1001836800,1),(177,1018170000,4),(177,1035705600,1),(177,1049619600,4),(177,1067155200,1),(177,1081069200,4),(177,1099209600,1),(177,1112518800,4),(177,1130659200,1),(177,1143968400,4),(177,1162108800,1),(177,1175418000,4),(177,1193558400,1),(177,1207472400,4),(177,1225008000,1),(177,1238922000,4),(177,1256457600,1),(177,1268557200,4),(177,1289116800,1),(177,1300006800,4),(177,1320566400,1),(177,1331456400,4),(177,1352016000,1),(177,1362906000,4),(177,1383465600,1),(177,1394355600,4),(177,1414915200,1),(177,1425805200,4),(177,1446364800,1),(177,1457859600,4),(177,1478419200,1),(177,1489309200,4),(177,1509868800,1),(177,1520758800,4),(177,1541318400,1),(177,1552208400,4),(177,1572768000,1),(177,1583658000,4),(177,1604217600,1),(177,1615712400,4),(177,1636272000,1),(177,1647162000,4),(177,1667721600,1),(177,1678611600,4),(177,1699171200,1),(177,1710061200,4),(177,1730620800,1),(177,1741510800,4),(177,1762070400,1),(177,1772960400,4),(177,1793520000,1),(177,1805014800,4),(177,1825574400,1),(177,1836464400,4),(177,1857024000,1),(177,1867914000,4),(177,1888473600,1),(177,1899363600,4),(177,1919923200,1),(177,1930813200,4),(177,1951372800,1),(177,1962867600,4),(177,1983427200,1),(177,1994317200,4),(177,2014876800,1),(177,2025766800,4),(177,2046326400,1),(177,2057216400,4),(177,2077776000,1),(177,2088666000,4),(177,2109225600,1),(177,2120115600,4),(177,2140675200,1),(178,-2147483648,1),(178,-1946918424,2),(179,-2147483648,0),(179,-1546300800,3),(179,-880221600,1),(179,-769395600,2),(179,-765399600,3),(179,-147902400,4),(179,-131572800,3),(179,325663200,5),(179,341384400,3),(179,357112800,5),(179,372834000,3),(179,388562400,5),(179,404888400,3),(179,420012000,5),(179,436338000,3),(179,452066400,5),(179,467787600,3),(179,483516000,5),(179,499237200,3),(179,514965600,5),(179,530686800,3),(179,544600800,5),(179,562136400,3),(179,576050400,5),(179,594190800,3),(179,607500000,5),(179,625640400,3),(179,638949600,5),(179,657090000,3),(179,671004000,5),(179,688539600,3),(179,702453600,5),(179,719989200,3),(179,733903200,5),(179,752043600,3),(179,765352800,5),(179,783493200,3),(179,796802400,6),(179,814946400,7),(179,828860400,6),(179,846396000,7),(179,860310000,6),(179,877845600,7),(179,891759600,6),(179,909295200,7),(179,923209200,6),(179,941349600,8),(179,954662400,9),(179,972802800,7),(179,986108400,6),(179,1004248800,7),(179,1018162800,6),(179,1035698400,7),(179,1049612400,6),(179,1067148000,7),(179,1081062000,6),(179,1099202400,7),(179,1112511600,6),(179,1130652000,7),(179,1143961200,6),(179,1162101600,7),(179,1173596400,6),(179,1194156000,7),(179,1205046000,6),(179,1225605600,7),(179,1236495600,6),(179,1257055200,7),(179,1268550000,6),(179,1289109600,7),(179,1299999600,6),(179,1320559200,7),(179,1331449200,6),(179,1352008800,7),(179,1362898800,6),(179,1383458400,7),(179,1394348400,6),(179,1414908000,7),(179,1425798000,6),(179,1446357600,7),(179,1457852400,6),(179,1478412000,7),(179,1489302000,6),(179,1509861600,7),(179,1520751600,6),(179,1541311200,7),(179,1552201200,6),(179,1572760800,7),(179,1583650800,6),(179,1604210400,7),(179,1615705200,6),(179,1636264800,7),(179,1647154800,6),(179,1667714400,7),(179,1678604400,6),(179,1699164000,7),(179,1710054000,6),(179,1730613600,7),(179,1741503600,6),(179,1762063200,7),(179,1772953200,6),(179,1793512800,7),(179,1805007600,6),(179,1825567200,7),(179,1836457200,6),(179,1857016800,7),(179,1867906800,6),(179,1888466400,7),(179,1899356400,6),(179,1919916000,7),(179,1930806000,6),(179,1951365600,7),(179,1962860400,6),(179,1983420000,7),(179,1994310000,6),(179,2014869600,7),(179,2025759600,6),(179,2046319200,7),(179,2057209200,6),(179,2077768800,7),(179,2088658800,6),(179,2109218400,7),(179,2120108400,6),(179,2140668000,7),(180,-2147483648,0),(180,-1861906760,1),(180,-1104524348,2),(180,-765317964,3),(180,465449400,4),(180,2147483647,4),(181,-2147483648,2),(181,-1633273200,1),(181,-1615132800,2),(181,-1601823600,1),(181,-1583683200,2),(181,-880210800,3),(181,-820519140,2),(181,-812653140,3),(181,-796845540,2),(181,-84380400,1),(181,-68659200,2),(182,-2147483648,1),(182,-1670483460,3),(182,421218000,2),(182,436334400,3),(182,452062800,2),(182,467784000,3),(182,483512400,2),(182,499233600,3),(182,514962000,2),(182,530683200,3),(182,546411600,2),(182,562132800,3),(182,576050400,4),(182,594194400,5),(182,607500000,4),(182,625644000,5),(182,638949600,4),(182,657093600,5),(182,671004000,4),(182,688543200,5),(182,702453600,4),(182,719992800,5),(182,733903200,4),(182,752047200,5),(182,765352800,4),(182,783496800,5),(182,796802400,4),(182,814946400,5),(182,828856800,4),(182,846396000,5),(182,860306400,4),(182,877845600,5),(182,1112504400,2),(182,1130644800,3),(182,1143954000,2),(182,1162094400,3),(182,1331449200,2),(182,1352008800,3),(182,1362898800,2),(182,1383458400,3),(182,1394348400,2),(182,1414908000,3),(182,1425798000,2),(182,1446357600,3),(182,1489302000,2),(182,1509861600,3),(182,1520751600,2),(182,1541311200,3),(182,1552201200,2),(182,1572760800,3),(182,1583650800,2),(182,1604210400,3),(182,1615705200,2),(182,1636264800,3),(182,1647154800,2),(182,1667714400,3),(182,1678604400,2),(182,1699164000,3),(182,1710054000,2),(182,1730613600,3),(182,1741503600,2),(182,1762063200,3),(182,1772953200,2),(182,1793512800,3),(182,1805007600,2),(182,1825567200,3),(182,1836457200,2),(182,1857016800,3),(182,1867906800,2),(182,1888466400,3),(182,1899356400,2),(182,1919916000,3),(182,1930806000,2),(182,1951365600,3),(182,1962860400,2),(182,1983420000,3),(182,1994310000,2),(182,2014869600,3),(182,2025759600,2),(182,2046319200,3),(182,2057209200,2),(182,2077768800,3),(182,2088658800,2),(182,2109218400,3),(182,2120108400,2),(182,2140668000,3),(183,-2147483648,0),(183,-1825098836,1),(184,-2147483648,0),(184,-1767209328,2),(184,-1206950400,1),(184,-1191355200,2),(184,-1175367600,1),(184,-1159819200,2),(184,-633812400,1),(184,-622062000,2),(184,-602276400,1),(184,-591825600,2),(184,-570740400,1),(184,-560203200,2),(184,-539118000,1),(184,-531345600,2),(184,-191358000,1),(184,-184190400,2),(184,-155156400,1),(184,-150062400,2),(184,-128890800,1),(184,-121118400,2),(184,-99946800,1),(184,-89582400,2),(184,-68410800,1),(184,-57960000,2),(184,499755600,1),(184,511243200,2),(184,530600400,1),(184,540273600,2),(184,562136400,1),(184,571204800,2),(184,1214283600,3),(184,1384056000,2),(184,2147483647,2),(185,-2147483648,0),(185,-1767210264,2),(185,-1206954000,1),(185,-1191358800,2),(185,-1175371200,1),(185,-1159822800,2),(185,-633816000,1),(185,-622065600,2),(185,-602280000,1),(185,-591829200,2),(185,-570744000,1),(185,-560206800,2),(185,-539121600,1),(185,-531349200,2),(185,-191361600,1),(185,-184194000,2),(185,-155160000,1),(185,-150066000,2),(185,-128894400,1),(185,-121122000,2),(185,-99950400,1),(185,-89586000,2),(185,-68414400,1),(185,-57963600,2),(185,499752000,1),(185,511239600,2),(185,530596800,1),(185,540270000,2),(185,562132800,1),(185,571201200,2),(185,2147483647,2),(186,-2147483648,1),(186,-873057600,3),(186,-769395600,2),(186,-765399600,1),(187,-2147483648,1),(187,-1892661434,2),(187,-1688410800,1),(187,-1619205434,3),(187,-1593806400,1),(187,-1335986234,4),(187,-1317585600,2),(187,-1304362800,4),(187,-1286049600,2),(187,-1272826800,4),(187,-1254513600,2),(187,-1241290800,4),(187,-1222977600,2),(187,-1209754800,4),(187,-1191355200,2),(187,-1178132400,3),(187,-870552000,2),(187,-865278000,3),(187,-718056000,2),(187,-713649600,3),(187,-36619200,5),(187,-23922000,6),(187,-3355200,5),(187,7527600,6),(187,24465600,5),(187,37767600,6),(187,55915200,5),(187,69217200,6),(187,87969600,5),(187,100666800,6),(187,118209600,5),(187,132116400,6),(187,150868800,5),(187,163566000,6),(187,182318400,5),(187,195620400,6),(187,213768000,5),(187,227070000,6),(187,245217600,5),(187,258519600,6),(187,277272000,5),(187,289969200,6),(187,308721600,5),(187,321418800,6),(187,340171200,5),(187,353473200,6),(187,371620800,5),(187,384922800,6),(187,403070400,5),(187,416372400,6),(187,434520000,5),(187,447822000,6),(187,466574400,5),(187,479271600,6),(187,498024000,5),(187,510721200,6),(187,529473600,5),(187,545194800,6),(187,560923200,5),(187,574225200,6),(187,592372800,5),(187,605674800,6),(187,624427200,5),(187,637124400,6),(187,653457600,5),(187,668574000,6),(187,687326400,5),(187,700628400,6),(187,718776000,5),(187,732078000,6),(187,750225600,5),(187,763527600,6),(187,781675200,5),(187,794977200,6),(187,813729600,5),(187,826426800,6),(187,845179200,5),(187,859690800,6),(187,876628800,5),(187,889930800,6),(187,906868800,5),(187,923194800,6),(187,939528000,5),(187,952830000,6),(187,971582400,5),(187,984279600,6),(187,1003032000,5),(187,1015729200,6),(187,1034481600,5),(187,1047178800,6),(187,1065931200,5),(187,1079233200,6),(187,1097380800,5),(187,1110682800,6),(187,1128830400,5),(187,1142132400,6),(187,1160884800,5),(187,1173582000,6),(187,1192334400,5),(187,1206846000,6),(187,1223784000,5),(187,1237086000,6),(187,1255233600,5),(187,1270350000,6),(187,1286683200,5),(187,1304823600,6),(187,1313899200,5),(187,1335668400,6),(187,1346558400,5),(187,1367118000,6),(187,1378612800,5),(187,1398567600,6),(187,1410062400,5),(187,1463281200,6),(187,1471147200,5),(187,1480820400,7),(187,2147483647,7),(188,-2147483648,2),(188,-1632067200,1),(188,-1615136400,2),(188,-923248800,1),(188,-880214400,3),(188,-769395600,4),(188,-765392400,2),(188,136368000,1),(188,152089200,2),(188,167817600,1),(188,183538800,2),(188,199267200,1),(188,215593200,2),(188,230716800,1),(188,247042800,2),(188,262771200,1),(188,278492400,2),(188,294220800,1),(188,309942000,2),(188,325670400,1),(188,341391600,2),(188,357120000,1),(188,372841200,2),(188,388569600,1),(188,404895600,2),(188,420019200,1),(188,436345200,2),(188,452073600,1),(188,467794800,2),(188,483523200,1),(188,499244400,2),(188,514972800,1),(188,530694000,2),(188,544608000,1),(188,562143600,2),(188,576057600,1),(188,594198000,2),(188,607507200,1),(188,625647600,2),(188,638956800,1),(188,657097200,2),(188,671011200,1),(188,688546800,2),(188,702460800,1),(188,719996400,2),(188,733910400,1),(188,752050800,2),(188,765360000,1),(188,783500400,2),(188,796809600,1),(188,814950000,2),(188,828864000,1),(188,846399600,2),(188,860313600,1),(188,877849200,2),(188,891763200,1),(188,909298800,2),(188,923212800,1),(188,941353200,2),(188,954662400,1),(188,972802800,2),(188,986112000,1),(188,1004252400,2),(188,1018166400,1),(188,1035702000,2),(188,1049616000,1),(188,1067151600,2),(188,1081065600,1),(188,1099206000,2),(188,1112515200,1),(188,1130655600,2),(188,1143964800,1),(188,1162105200,2),(188,1173600000,1),(188,1194159600,2),(188,1205049600,1),(188,1225609200,2),(188,1236499200,1),(188,1257058800,2),(188,1268553600,1),(188,1289113200,2),(188,1300003200,1),(188,1320562800,2),(188,1331452800,1),(188,1352012400,2),(188,1362902400,1),(188,1383462000,2),(188,1394352000,1),(188,1414911600,2),(188,1425801600,1),(188,1446361200,2),(188,1457856000,1),(188,1478415600,2),(188,1489305600,1),(188,1509865200,2),(188,1520755200,1),(188,1541314800,2),(188,1552204800,1),(188,1572764400,2),(188,1583654400,1),(188,1604214000,2),(188,1615708800,1),(188,1636268400,2),(188,1647158400,1),(188,1667718000,2),(188,1678608000,1),(188,1699167600,2),(188,1710057600,1),(188,1730617200,2),(188,1741507200,1),(188,1762066800,2),(188,1772956800,1),(188,1793516400,2),(188,1805011200,1),(188,1825570800,2),(188,1836460800,1),(188,1857020400,2),(188,1867910400,1),(188,1888470000,2),(188,1899360000,1),(188,1919919600,2),(188,1930809600,1),(188,1951369200,2),(188,1962864000,1),(188,1983423600,2),(188,1994313600,1),(188,2014873200,2),(188,2025763200,1),(188,2046322800,2),(188,2057212800,1),(188,2077772400,2),(188,2088662400,1),(188,2109222000,2),(188,2120112000,1),(188,2140671600,2),(189,-2147483648,0),(189,-410227200,2),(189,-147895200,1),(189,-131565600,2),(189,325670400,3),(189,341391600,2),(189,357120000,3),(189,372841200,2),(189,388569600,3),(189,404895600,2),(189,420019200,3),(189,436345200,2),(189,452073600,3),(189,467794800,2),(189,483523200,3),(189,499244400,2),(189,514972800,3),(189,530694000,2),(189,544608000,3),(189,562143600,2),(189,576057600,3),(189,594198000,2),(189,607507200,3),(189,625647600,2),(189,638956800,3),(189,657097200,2),(189,671011200,3),(189,688546800,2),(189,702460800,3),(189,719996400,2),(189,733910400,3),(189,752050800,2),(189,765360000,3),(189,783500400,2),(189,796809600,3),(189,814950000,2),(189,828864000,3),(189,846399600,2),(189,860313600,3),(189,877849200,2),(189,891763200,3),(189,909298800,2),(189,923212800,3),(189,941353200,2),(189,954662400,3),(189,972802800,4),(189,986112000,3),(189,1004252400,2),(189,1018166400,3),(189,1035702000,2),(189,1049616000,3),(189,1067151600,2),(189,1081065600,3),(189,1099206000,2),(189,1112515200,3),(189,1130655600,2),(189,1143964800,3),(189,1162105200,2),(189,1173600000,3),(189,1194159600,2),(189,1205049600,3),(189,1225609200,2),(189,1236499200,3),(189,1257058800,2),(189,1268553600,3),(189,1289113200,2),(189,1300003200,3),(189,1320562800,2),(189,1331452800,3),(189,1352012400,2),(189,1362902400,3),(189,1383462000,2),(189,1394352000,3),(189,1414911600,2),(189,1425801600,3),(189,1446361200,2),(189,1457856000,3),(189,1478415600,2),(189,1489305600,3),(189,1509865200,2),(189,1520755200,3),(189,1541314800,2),(189,1552204800,3),(189,1572764400,2),(189,1583654400,3),(189,1604214000,2),(189,1615708800,3),(189,1636268400,2),(189,1647158400,3),(189,1667718000,2),(189,1678608000,3),(189,1699167600,2),(189,1710057600,3),(189,1730617200,2),(189,1741507200,3),(189,1762066800,2),(189,1772956800,3),(189,1793516400,2),(189,1805011200,3),(189,1825570800,2),(189,1836460800,3),(189,1857020400,2),(189,1867910400,3),(189,1888470000,2),(189,1899360000,3),(189,1919919600,2),(189,1930809600,3),(189,1951369200,2),(189,1962864000,3),(189,1983423600,2),(189,1994313600,3),(189,2014873200,2),(189,2025763200,3),(189,2046322800,2),(189,2057212800,3),(189,2077772400,2),(189,2088662400,3),(189,2109222000,2),(189,2120112000,3),(189,2140671600,2),(190,-2147483648,0),(190,-1767217224,2),(190,-1206957600,1),(190,-1191362400,2),(190,-1175374800,1),(190,-1159826400,2),(190,-633819600,1),(190,-622069200,2),(190,-602283600,1),(190,-591832800,2),(190,-570747600,1),(190,-560210400,2),(190,-539125200,1),(190,-531352800,2),(190,-191365200,1),(190,-184197600,2),(190,-155163600,1),(190,-150069600,2),(190,-128898000,1),(190,-121125600,2),(190,-99954000,1),(190,-89589600,2),(190,-68418000,1),(190,-57967200,2),(190,499748400,1),(190,511236000,2),(190,530593200,1),(190,540266400,2),(190,562129200,1),(190,571197600,2),(190,592974000,1),(190,602042400,2),(190,624423600,1),(190,634701600,2),(190,938919600,1),(190,951616800,2),(190,970974000,1),(190,971575200,2),(190,1003028400,1),(190,1013911200,2),(190,2147483647,2),(191,-2147483648,0),(191,-2030202084,2),(191,-1632063600,1),(191,-1615132800,2),(191,-1251651600,1),(191,-1238349600,2),(191,-1220202000,1),(191,-1206900000,2),(191,-1188752400,1),(191,-1175450400,2),(191,-1156698000,1),(191,-1144000800,2),(191,-1125248400,1),(191,-1111946400,2),(191,-1032714000,1),(191,-1016992800,2),(191,-1001264400,1),(191,-986148000,2),(191,-969814800,1),(191,-954093600,2),(191,-937760400,1),(191,-922039200,2),(191,-906310800,1),(191,-890589600,2),(191,-880210800,3),(191,-769395600,4),(191,-765388800,2),(191,-748450800,1),(191,-732729600,2),(191,-715791600,1),(191,-702489600,2),(191,-684342000,1),(191,-671040000,2),(191,-652892400,1),(191,-639590400,2),(191,-620838000,1),(191,-608140800,2),(191,-589388400,1),(191,-576086400,2),(191,-557938800,1),(191,-544636800,2),(191,-526489200,1),(191,-513187200,2),(191,-495039600,1),(191,-481737600,2),(191,-463590000,1),(191,-450288000,2),(191,-431535600,1),(191,-418233600,2),(191,-400086000,1),(191,-386784000,2),(191,-337186800,1),(191,-321465600,2),(191,-305737200,5),(192,-2147483648,0),(192,-704937600,2),(192,-147895200,1),(192,-131565600,2),(192,325670400,3),(192,341391600,2),(192,357120000,3),(192,372841200,2),(192,388569600,3),(192,404895600,2),(192,420019200,3),(192,436345200,2),(192,452073600,3),(192,467794800,2),(192,483523200,3),(192,499244400,2),(192,514972800,3),(192,530694000,2),(192,544608000,3),(192,562143600,2),(192,576057600,3),(192,594198000,2),(192,607507200,3),(192,625647600,2),(192,638956800,3),(192,657097200,2),(192,671011200,3),(192,688546800,2),(192,702460800,3),(192,719996400,2),(192,733910400,3),(192,752050800,2),(192,765360000,3),(192,783500400,2),(192,796809600,3),(192,814950000,2),(192,828864000,3),(192,846399600,2),(192,860313600,3),(192,877849200,2),(192,891763200,3),(192,909298800,2),(192,923212800,3),(192,941353200,2),(192,954662400,3),(192,972802800,4),(192,986112000,3),(192,1004252400,2),(192,1018166400,3),(192,1035702000,2),(192,1049616000,3),(192,1067151600,2),(192,1081065600,3),(192,1099206000,2),(192,1112515200,3),(192,1130655600,2),(192,1143964800,3),(192,1162105200,4),(192,1173600000,3),(192,1194159600,2),(192,1205049600,3),(192,1225609200,2),(192,1236499200,3),(192,1257058800,2),(192,1268553600,3),(192,1289113200,2),(192,1300003200,3),(192,1320562800,2),(192,1331452800,3),(192,1352012400,2),(192,1362902400,3),(192,1383462000,2),(192,1394352000,3),(192,1414911600,2),(192,1425801600,3),(192,1446361200,2),(192,1457856000,3),(192,1478415600,2),(192,1489305600,3),(192,1509865200,2),(192,1520755200,3),(192,1541314800,2),(192,1552204800,3),(192,1572764400,2),(192,1583654400,3),(192,1604214000,2),(192,1615708800,3),(192,1636268400,2),(192,1647158400,3),(192,1667718000,2),(192,1678608000,3),(192,1699167600,2),(192,1710057600,3),(192,1730617200,2),(192,1741507200,3),(192,1762066800,2),(192,1772956800,3),(192,1793516400,2),(192,1805011200,3),(192,1825570800,2),(192,1836460800,3),(192,1857020400,2),(192,1867910400,3),(192,1888470000,2),(192,1899360000,3),(192,1919919600,2),(192,1930809600,3),(192,1951369200,2),(192,1962864000,3),(192,1983423600,2),(192,1994313600,3),(192,2014873200,2),(192,2025763200,3),(192,2046322800,2),(192,2057212800,3),(192,2077772400,2),(192,2088662400,3),(192,2109222000,2),(192,2120112000,3),(192,2140671600,2),(193,-2147483648,0),(193,-1767209328,2),(193,-1206950400,1),(193,-1191355200,2),(193,-1175367600,1),(193,-1159819200,2),(193,-633812400,1),(193,-622062000,2),(193,-602276400,1),(193,-591825600,2),(193,-570740400,1),(193,-560203200,2),(193,-539118000,1),(193,-531345600,2),(193,-191358000,1),(193,-184190400,2),(193,-155156400,1),(193,-150062400,2),(193,-128890800,1),(193,-121118400,2),(193,-99946800,1),(193,-89582400,2),(193,-68410800,1),(193,-57960000,2),(193,499755600,1),(193,511243200,2),(193,530600400,1),(193,540273600,2),(193,562136400,1),(193,571204800,2),(193,1214283600,3),(193,1384056000,2),(193,2147483647,2),(194,-2147483648,1),(194,-1567453392,2),(194,-1233432000,3),(194,-1222981200,2),(194,-1205956800,3),(194,-1194037200,2),(194,-1172865600,3),(194,-1162501200,2),(194,-1141329600,3),(194,-1130965200,2),(194,-1109793600,3),(194,-1099429200,2),(194,-1078257600,3),(194,-1067806800,2),(194,-1046635200,3),(194,-1036270800,2),(194,-1015099200,3),(194,-1004734800,2),(194,-983563200,3),(194,-973198800,2),(194,-952027200,3),(194,-941576400,2),(194,-931032000,3),(194,-900882000,2),(194,-890337600,3),(194,-833749200,2),(194,-827265600,3),(194,-752274000,2),(194,-733780800,3),(194,-197326800,2),(194,-190843200,3),(194,-184194000,2),(194,-164491200,3),(194,-152658000,2),(194,-132955200,3),(194,-121122000,2),(194,-101419200,3),(194,-86821200,2),(194,-71092800,3),(194,-54766800,2),(194,-39038400,3),(194,-23317200,2),(194,-7588800,5),(194,128142000,4),(194,136605600,5),(194,596948400,4),(194,605066400,5),(194,624423600,4),(194,636516000,5),(194,656478000,4),(194,667965600,2),(194,687931200,4),(194,699415200,5),(194,719377200,4),(194,731469600,5),(194,938919600,3),(194,952052400,5),(194,1198983600,4),(194,1205632800,5),(194,1224385200,4),(194,1237082400,5),(194,2147483647,5),(195,-2147483648,0),(195,-1514736000,1),(195,-1451667600,2),(195,-1343062800,1),(195,-1234803600,2),(195,-1222963200,3),(195,-1207242000,2),(195,-873820800,4),(195,-769395600,5),(195,-761677200,2),(195,-686073600,3),(195,-661539600,2),(195,-495039600,3),(195,-481734000,2),(195,-463590000,3),(195,-450284400,2),(195,-431535600,3),(195,-418230000,2),(195,-400086000,3),(195,-386780400,2),(195,-368636400,3),(195,-355330800,2),(195,-337186800,3),(195,-323881200,2),(195,-305737200,3),(195,-292431600,2),(195,199274400,3),(195,215600400,2),(195,230724000,3),(195,247050000,2),(195,262778400,3),(195,278499600,2),(195,294228000,3),(195,309949200,2),(195,325677600,3),(195,341398800,2),(195,357127200,3),(195,372848400,2),(195,388576800,3),(195,404902800,2),(195,420026400,3),(195,436352400,2),(195,452080800,3),(195,467802000,2),(195,483530400,3),(195,499251600,2),(195,514980000,3),(195,530701200,2),(195,544615200,3),(195,562150800,2),(195,576064800,3),(195,594205200,2),(195,607514400,3),(195,625654800,2),(195,638964000,3),(195,657104400,2),(195,671018400,3),(195,688554000,2),(195,702468000,3),(195,720003600,2),(195,733917600,3),(195,752058000,2),(195,765367200,3),(195,783507600,2),(195,796816800,3),(195,814957200,2),(195,828871200,3),(195,846406800,2),(195,860320800,3),(195,877856400,2),(195,891770400,3),(195,909306000,2),(195,923220000,3),(195,941360400,2),(195,954669600,3),(195,972810000,2),(195,986119200,3),(195,1004259600,2),(195,1018173600,3),(195,1035709200,2),(195,1049623200,3),(195,1067158800,2),(195,1081072800,3),(195,1099213200,2),(195,1112522400,3),(195,1130662800,2),(195,1143972000,3),(195,1162112400,2),(195,1175421600,3),(195,1193562000,2),(195,1207476000,3),(195,1225011600,2),(195,1238925600,3),(195,1256461200,2),(195,1268560800,3),(195,1289120400,2),(195,1300010400,3),(195,1320570000,2),(195,1331460000,3),(195,1352019600,2),(195,1362909600,3),(195,1383469200,2),(195,1394359200,3),(195,1414918800,2),(195,1425808800,3),(195,1446368400,2),(195,1457863200,3),(195,1478422800,2),(195,1489312800,3),(195,1509872400,2),(195,1520762400,3),(195,1541322000,2),(195,1552212000,3),(195,1572771600,2),(195,1583661600,3),(195,1604221200,2),(195,1615716000,3),(195,1636275600,2),(195,1647165600,3),(195,1667725200,2),(195,1678615200,3),(195,1699174800,2),(195,1710064800,3),(195,1730624400,2),(195,1741514400,3),(195,1762074000,2),(195,1772964000,3),(195,1793523600,2),(195,1805018400,3),(195,1825578000,2),(195,1836468000,3),(195,1857027600,2),(195,1867917600,3),(195,1888477200,2),(195,1899367200,3),(195,1919926800,2),(195,1930816800,3),(195,1951376400,2),(195,1962871200,3),(195,1983430800,2),(195,1994320800,3),(195,2014880400,2),(195,2025770400,3),(195,2046330000,2),(195,2057220000,3),(195,2077779600,2),(195,2088669600,3),(195,2109229200,2),(195,2120119200,3),(195,2140678800,2),(196,-2147483648,0),(196,-1767212472,2),(196,-1206954000,1),(196,-1191358800,2),(196,-1175371200,1),(196,-1159822800,2),(196,-633816000,1),(196,-622065600,2),(196,-602280000,1),(196,-591829200,2),(196,-570744000,1),(196,-560206800,2),(196,-539121600,1),(196,-531349200,2),(196,-191361600,1),(196,-184194000,2),(196,-155160000,1),(196,-150066000,2),(196,-128894400,1),(196,-121122000,2),(196,-99950400,1),(196,-89586000,2),(196,-68414400,1),(196,-57963600,2),(196,499752000,1),(196,511239600,2),(196,530596800,1),(196,540270000,2),(196,562132800,1),(196,571201200,2),(196,1214280000,3),(196,2147483647,3),(197,-2147483648,1),(197,-1892661434,2),(197,-1688410800,1),(197,-1619205434,3),(197,-1593806400,1),(197,-1335986234,4),(197,-1317585600,2),(197,-1304362800,4),(197,-1286049600,2),(197,-1272826800,4),(197,-1254513600,2),(197,-1241290800,4),(197,-1222977600,2),(197,-1209754800,4),(197,-1191355200,2),(197,-1178132400,3),(197,-870552000,2),(197,-865278000,3),(197,-740520000,5),(197,-736376400,3),(197,-718056000,2),(197,-713649600,3),(197,-36619200,6),(197,-23922000,7),(197,-3355200,6),(197,7527600,7),(197,24465600,6),(197,37767600,7),(197,55915200,6),(197,69217200,7),(197,87969600,6),(197,100666800,7),(197,118209600,6),(197,132116400,7),(197,150868800,6),(197,163566000,7),(197,182318400,6),(197,195620400,7),(197,213768000,6),(197,227070000,7),(197,245217600,6),(197,258519600,7),(197,277272000,6),(197,289969200,7),(197,308721600,6),(197,321418800,7),(197,340171200,6),(197,353473200,7),(197,371620800,6),(197,384922800,7),(197,403070400,6),(197,416372400,7),(197,434520000,6),(197,447822000,7),(197,466574400,6),(197,479271600,7),(197,498024000,6),(197,510721200,7),(197,529473600,6),(197,545194800,7),(197,560923200,6),(197,574225200,7),(197,592372800,6),(197,605674800,7),(197,624427200,6),(197,637124400,7),(197,653457600,6),(197,668574000,7),(197,687326400,6),(197,700628400,7),(197,718776000,6),(197,732078000,7),(197,750225600,6),(197,763527600,7),(197,781675200,6),(197,794977200,7),(197,813729600,6),(197,826426800,7),(197,845179200,6),(197,859690800,7),(197,876628800,6),(197,889930800,7),(197,906868800,6),(197,923194800,7),(197,939528000,6),(197,952830000,7),(197,971582400,6),(197,984279600,7),(197,1003032000,6),(197,1015729200,7),(197,1034481600,6),(197,1047178800,7),(197,1065931200,6),(197,1079233200,7),(197,1097380800,6),(197,1110682800,7),(197,1128830400,6),(197,1142132400,7),(197,1160884800,6),(197,1173582000,7),(197,1192334400,6),(197,1206846000,7),(197,1223784000,6),(197,1237086000,7),(197,1255233600,6),(197,1270350000,7),(197,1286683200,6),(197,1304823600,7),(197,1313899200,6),(197,1335668400,7),(197,1346558400,6),(197,1367118000,7),(197,1378612800,6),(197,1398567600,7),(197,1410062400,6),(197,1463281200,7),(197,1471147200,6),(197,1494730800,7),(197,1502596800,6),(197,1526180400,7),(197,1534046400,6),(197,1554606000,7),(197,1567915200,6),(197,1586055600,7),(197,1599364800,6),(197,1617505200,7),(197,1630814400,6),(197,1648954800,7),(197,1662264000,6),(197,1680404400,7),(197,1693713600,6),(197,1712458800,7),(197,1725768000,6),(197,1743908400,7),(197,1757217600,6),(197,1775358000,7),(197,1788667200,6),(197,1806807600,7),(197,1820116800,6),(197,1838257200,7),(197,1851566400,6),(197,1870311600,7),(197,1883016000,6),(197,1901761200,7),(197,1915070400,6),(197,1933210800,7),(197,1946520000,6),(197,1964660400,7),(197,1977969600,6),(197,1996110000,7),(197,2009419200,6),(197,2027559600,7),(197,2040868800,6),(197,2059614000,7),(197,2072318400,6),(197,2091063600,7),(197,2104372800,6),(197,2122513200,7),(197,2135822400,6),(197,2147483647,6),(198,-2147483648,1),(198,-1159773600,3),(198,-100119600,2),(198,-89668800,3),(198,-5770800,4),(198,4422600,3),(198,25678800,4),(198,33193800,3),(198,57733200,4),(198,64816200,3),(198,89182800,4),(198,96438600,3),(198,120632400,4),(198,127974600,3),(198,152082000,5),(198,972799200,3),(198,975823200,5),(199,-2147483648,0),(199,-1767214412,2),(199,-1206957600,1),(199,-1191362400,2),(199,-1175374800,1),(199,-1159826400,2),(199,-633819600,1),(199,-622069200,2),(199,-602283600,1),(199,-591832800,2),(199,-570747600,1),(199,-560210400,2),(199,-539125200,1),(199,-531352800,2),(199,-195426000,1),(199,-184197600,2),(199,-155163600,1),(199,-150069600,2),(199,-128898000,1),(199,-121125600,2),(199,-99954000,1),(199,-89589600,2),(199,-68418000,1),(199,-57967200,2),(199,499748400,1),(199,511236000,2),(199,530593200,1),(199,540266400,2),(199,562129200,1),(199,571197600,2),(199,592974000,1),(199,602042400,2),(199,624423600,1),(199,634701600,2),(199,656478000,1),(199,666756000,2),(199,687927600,1),(199,697600800,2),(199,719982000,1),(199,728445600,2),(199,750826800,1),(199,761709600,2),(199,782276400,1),(199,793159200,2),(199,813726000,1),(199,824004000,2),(199,844570800,1),(199,856058400,2),(199,876106800,1),(199,888717600,2),(199,908074800,1),(199,919562400,2),(199,938919600,1),(199,951616800,2),(199,970974000,1),(199,982461600,2),(199,1003028400,1),(199,1013911200,2),(199,1036292400,1),(199,1045360800,2),(199,1066532400,1),(199,1076810400,2),(199,1099364400,1),(199,1108864800,2),(199,1129431600,1),(199,1140314400,2),(199,1162695600,1),(199,1172368800,2),(199,1192330800,1),(199,1203213600,2),(199,1224385200,1),(199,1234663200,2),(199,1255834800,1),(199,1266717600,2),(199,1287284400,1),(199,1298167200,2),(199,1318734000,1),(199,1330221600,2),(199,1350788400,1),(199,1361066400,2),(199,1382238000,1),(199,1392516000,2),(199,1413687600,1),(199,1424570400,2),(199,1445137200,1),(199,1456020000,2),(199,1476586800,1),(199,1487469600,2),(199,1508036400,1),(199,1518919200,2),(199,1541300400,1),(199,1550368800,2),(199,2147483647,2),(200,-2147483648,0),(200,-1686090728,1),(200,323841600,2),(200,338961600,3),(200,354679200,6),(200,370400400,4),(200,386125200,5),(200,401850000,4),(200,417574800,5),(200,433299600,4),(200,449024400,5),(200,465354000,4),(200,481078800,5),(200,496803600,4),(200,512528400,5),(200,528253200,4),(200,543978000,5),(200,559702800,4),(200,575427600,5),(200,591152400,4),(200,606877200,5),(200,622602000,4),(200,638326800,5),(200,654656400,4),(200,670381200,5),(200,686106000,4),(200,701830800,5),(200,717555600,4),(200,733280400,5),(200,749005200,4),(200,764730000,5),(200,780454800,4),(200,796179600,5),(200,811904400,4),(200,828234000,5),(200,846378000,4),(200,859683600,5),(200,877827600,4),(200,891133200,5),(200,909277200,4),(200,922582800,5),(200,941331600,4),(200,954032400,5),(200,972781200,4),(200,985482000,5),(200,1004230800,4),(200,1017536400,5),(200,1035680400,4),(200,1048986000,5),(200,1067130000,4),(200,1080435600,5),(200,1099184400,4),(200,1111885200,5),(200,1130634000,4),(200,1143334800,5),(200,1162083600,4),(200,1174784400,5),(200,1193533200,4),(200,1206838800,5),(200,1224982800,4),(200,1238288400,5),(200,1256432400,4),(200,1269738000,5),(200,1288486800,4),(200,1301187600,5),(200,1319936400,4),(200,1332637200,5),(200,1351386000,4),(200,1364691600,5),(200,1382835600,4),(200,1396141200,5),(200,1414285200,4),(200,1427590800,5),(200,1445734800,4),(200,1459040400,5),(200,1477789200,4),(200,1490490000,5),(200,1509238800,4),(200,1521939600,5),(200,1540688400,4),(200,1553994000,5),(200,1572138000,4),(200,1585443600,5),(200,1603587600,4),(200,1616893200,5),(200,1635642000,4),(200,1648342800,5),(200,1667091600,4),(200,1679792400,5),(200,1698541200,4),(200,1711846800,5),(200,1729990800,4),(200,1743296400,5),(200,1761440400,4),(200,1774746000,5),(200,1792890000,4),(200,1806195600,5),(200,1824944400,4),(200,1837645200,5),(200,1856394000,4),(200,1869094800,5),(200,1887843600,4),(200,1901149200,5),(200,1919293200,4),(200,1932598800,5),(200,1950742800,4),(200,1964048400,5),(200,1982797200,4),(200,1995498000,5),(200,2014246800,4),(200,2026947600,5),(200,2045696400,4),(200,2058397200,5),(200,2077146000,4),(200,2090451600,5),(200,2108595600,4),(200,2121901200,5),(200,2140045200,4),(200,2147483647,4),(201,-2147483648,2),(201,-1633273200,1),(201,-1615132800,2),(201,-1601823600,1),(201,-1583683200,2),(201,-1570374000,1),(201,-1551628800,2),(201,-1538924400,1),(201,-1534089600,2),(201,-880210800,3),(201,-769395600,4),(201,-765388800,2),(201,-147884400,1),(201,-131558400,2),(201,-116434800,1),(201,-100108800,2),(201,-84380400,1),(201,-68659200,2),(201,-52930800,1),(201,-37209600,2),(201,-21481200,1),(201,-5760000,2),(201,9968400,1),(201,25689600,2),(201,41418000,1),(201,57744000,2),(201,73472400,1),(201,89193600,2),(201,104922000,1),(201,120643200,2),(201,126694800,1),(201,152092800,2),(201,162378000,1),(201,183542400,2),(201,199270800,1),(201,215596800,2),(201,230720400,1),(201,247046400,2),(201,262774800,1),(201,278496000,2),(201,294224400,1),(201,309945600,2),(201,325674000,1),(201,341395200,2),(201,357123600,1),(201,372844800,2),(201,388573200,1),(201,404899200,2),(201,420022800,1),(201,436348800,2),(201,452077200,1),(201,467798400,2),(201,483526800,1),(201,499248000,2),(201,514976400,1),(201,530697600,2),(201,544611600,1),(201,562147200,2),(201,576061200,1),(201,594201600,2),(201,607510800,1),(201,625651200,2),(201,638960400,1),(201,657100800,2),(201,671014800,1),(201,688550400,2),(201,702464400,1),(201,720000000,2),(201,733914000,1),(201,752054400,2),(201,765363600,1),(201,783504000,2),(201,796813200,1),(201,814953600,2),(201,828867600,1),(201,846403200,2),(201,860317200,1),(201,877852800,2),(201,891766800,1),(201,909302400,2),(201,923216400,1),(201,941356800,2),(201,954666000,1),(201,972806400,2),(201,986115600,1),(201,1004256000,2),(201,1018170000,1),(201,1035705600,2),(201,1049619600,1),(201,1067155200,2),(201,1081069200,1),(201,1099209600,2),(201,1112518800,1),(201,1130659200,2),(201,1143968400,1),(201,1162108800,2),(201,1173603600,1),(201,1194163200,2),(201,1205053200,1),(201,1225612800,2),(201,1236502800,1),(201,1257062400,2),(201,1268557200,1),(201,1289116800,2),(201,1300006800,1),(201,1320566400,2),(201,1331456400,1),(201,1352016000,2),(201,1362906000,1),(201,1383465600,2),(201,1394355600,1),(201,1414915200,2),(201,1425805200,1),(201,1446364800,2),(201,1457859600,1),(201,1478419200,2),(201,1489309200,1),(201,1509868800,2),(201,1520758800,1),(201,1541318400,2),(201,1552208400,1),(201,1572768000,2),(201,1583658000,1),(201,1604217600,2),(201,1615712400,1),(201,1636272000,2),(201,1647162000,1),(201,1667721600,2),(201,1678611600,1),(201,1699171200,2),(201,1710061200,1),(201,1730620800,2),(201,1741510800,1),(201,1762070400,2),(201,1772960400,1),(201,1793520000,2),(201,1805014800,1),(201,1825574400,2),(201,1836464400,1),(201,1857024000,2),(201,1867914000,1),(201,1888473600,2),(201,1899363600,1),(201,1919923200,2),(201,1930813200,1),(201,1951372800,2),(201,1962867600,1),(201,1983427200,2),(201,1994317200,1),(201,2014876800,2),(201,2025766800,1),(201,2046326400,2),(201,2057216400,1),(201,2077776000,2),(201,2088666000,1),(201,2109225600,2),(201,2120115600,1),(201,2140675200,2),(202,-2147483648,1),(202,-880207200,2),(202,-769395600,3),(202,-765385200,1),(202,-21477600,4),(202,-5756400,1),(202,9972000,4),(202,25693200,1),(202,41421600,4),(202,57747600,1),(202,73476000,4),(202,89197200,1),(202,104925600,4),(202,120646800,1),(202,126698400,4),(202,152096400,1),(202,162381600,4),(202,183546000,1),(202,199274400,4),(202,215600400,1),(202,230724000,4),(202,247050000,1),(202,262778400,4),(202,278499600,1),(202,294228000,4),(202,309949200,1),(202,325677600,4),(202,341398800,1),(202,357127200,4),(202,372848400,1),(202,388576800,4),(202,404902800,1),(202,420026400,4),(202,436352400,5),(202,439030800,7),(202,452084400,6),(202,467805600,7),(202,483534000,6),(202,499255200,7),(202,514983600,6),(202,530704800,7),(202,544618800,6),(202,562154400,7),(202,576068400,6),(202,594208800,7),(202,607518000,6),(202,625658400,7),(202,638967600,6),(202,657108000,7),(202,671022000,6),(202,688557600,7),(202,702471600,6),(202,720007200,7),(202,733921200,6),(202,752061600,7),(202,765370800,6),(202,783511200,7),(202,796820400,6),(202,814960800,7),(202,828874800,6),(202,846410400,7),(202,860324400,6),(202,877860000,7),(202,891774000,6),(202,909309600,7),(202,923223600,6),(202,941364000,7),(202,954673200,6),(202,972813600,7),(202,986122800,6),(202,1004263200,7),(202,1018177200,6),(202,1035712800,7),(202,1049626800,6),(202,1067162400,7),(202,1081076400,6),(202,1099216800,7),(202,1112526000,6),(202,1130666400,7),(202,1143975600,6),(202,1162116000,7),(202,1173610800,6),(202,1194170400,7),(202,1205060400,6),(202,1225620000,7),(202,1236510000,6),(202,1257069600,7),(202,1268564400,6),(202,1289124000,7),(202,1300014000,6),(202,1320573600,7),(202,1331463600,6),(202,1352023200,7),(202,1362913200,6),(202,1383472800,7),(202,1394362800,6),(202,1414922400,7),(202,1425812400,6),(202,1446372000,7),(202,1457866800,6),(202,1478426400,7),(202,1489316400,6),(202,1509876000,7),(202,1520766000,6),(202,1541325600,7),(202,1552215600,6),(202,1572775200,7),(202,1583665200,6),(202,1604224800,7),(202,1615719600,6),(202,1636279200,7),(202,1647169200,6),(202,1667728800,7),(202,1678618800,6),(202,1699178400,7),(202,1710068400,6),(202,1730628000,7),(202,1741518000,6),(202,1762077600,7),(202,1772967600,6),(202,1793527200,7),(202,1805022000,6),(202,1825581600,7),(202,1836471600,6),(202,1857031200,7),(202,1867921200,6),(202,1888480800,7),(202,1899370800,6),(202,1919930400,7),(202,1930820400,6),(202,1951380000,7),(202,1962874800,6),(202,1983434400,7),(202,1994324400,6),(202,2014884000,7),(202,2025774000,6),(202,2046333600,7),(202,2057223600,6),(202,2077783200,7),(202,2088673200,6),(202,2109232800,7),(202,2120122800,6),(202,2140682400,7),(203,-2147483648,0),(203,-1825098836,1),(204,-2147483648,2),(204,-1664130548,1),(204,-1650137348,2),(204,-1632076148,1),(204,-1615145348,2),(204,-1598650148,1),(204,-1590100148,2),(204,-1567286948,1),(204,-1551565748,2),(204,-1535837348,1),(204,-1520116148,2),(204,-1503782948,1),(204,-1488666548,2),(204,-1472333348,1),(204,-1457216948,2),(204,-1440883748,1),(204,-1425767348,2),(204,-1409434148,1),(204,-1394317748,2),(204,-1377984548,1),(204,-1362263348,2),(204,-1346534948,1),(204,-1330813748,2),(204,-1314480548,1),(204,-1299364148,2),(204,-1283030948,1),(204,-1267914548,2),(204,-1251581348,1),(204,-1236464948,2),(204,-1220131748,1),(204,-1205015348,2),(204,-1188682148,1),(204,-1172960948,2),(204,-1156627748,1),(204,-1141511348,2),(204,-1125178148,1),(204,-1110061748,2),(204,-1096921748,4),(204,-1093728600,3),(204,-1078612200,4),(204,-1061670600,3),(204,-1048973400,4),(204,-1030221000,3),(204,-1017523800,4),(204,-998771400,3),(204,-986074200,4),(204,-966717000,3),(204,-954624600,4),(204,-935267400,3),(204,-922570200,4),(204,-903817800,3),(204,-891120600,4),(204,-872368200,6),(204,-769395600,5),(204,-765401400,4),(204,-746044200,3),(204,-733347000,4),(204,-714594600,3),(204,-701897400,4),(204,-683145000,3),(204,-670447800,4),(204,-651695400,3),(204,-638998200,4),(204,-619641000,3),(204,-606943800,4),(204,-589401000,3),(204,-576099000,4),(204,-557951400,3),(204,-544649400,4),(204,-526501800,3),(204,-513199800,4),(204,-495052200,3),(204,-481750200,4),(204,-463602600,3),(204,-450300600,4),(204,-431548200,3),(204,-418246200,4),(204,-400098600,3),(204,-386796600,4),(204,-368649000,3),(204,-355347000,4),(204,-337199400,3),(204,-323897400,4),(204,-305749800,3),(204,-289423800,4),(204,-273695400,3),(204,-257974200,4),(204,-242245800,3),(204,-226524600,4),(204,-210796200,3),(204,-195075000,4),(204,-179346600,3),(204,-163625400,4),(204,-147897000,3),(204,-131571000,4),(204,-116447400,3),(204,-100121400,4),(204,-84393000,3),(204,-68671800,4),(204,-52943400,3),(204,-37222200,4),(204,-21493800,3),(204,-5772600,4),(204,9955800,3),(204,25677000,4),(204,41405400,3),(204,57731400,4),(204,73459800,3),(204,89181000,4),(204,104909400,3),(204,120630600,4),(204,136359000,3),(204,152080200,4),(204,167808600,3),(204,183529800,4),(204,199258200,3),(204,215584200,4),(204,230707800,3),(204,247033800,4),(204,262762200,3),(204,278483400,4),(204,294211800,3),(204,309933000,4),(204,325661400,3),(204,341382600,4),(204,357111000,3),(204,372832200,4),(204,388560600,3),(204,404886600,4),(204,420010200,3),(204,436336200,4),(204,452064600,3),(204,467785800,4),(204,483514200,3),(204,499235400,4),(204,514963800,3),(204,530685000,4),(204,544591860,3),(204,562127460,4),(204,576041460,7),(204,594178260,4),(204,607491060,3),(204,625631460,4),(204,638940660,3),(204,657081060,4),(204,670995060,3),(204,688530660,4),(204,702444660,3),(204,719980260,4),(204,733894260,3),(204,752034660,4),(204,765343860,3),(204,783484260,4),(204,796793460,3),(204,814933860,4),(204,828847860,3),(204,846383460,4),(204,860297460,3),(204,877833060,4),(204,891747060,3),(204,909282660,4),(204,923196660,3),(204,941337060,4),(204,954646260,3),(204,972786660,4),(204,986095860,3),(204,1004236260,4),(204,1018150260,3),(204,1035685860,4),(204,1049599860,3),(204,1067135460,4),(204,1081049460,3),(204,1099189860,4),(204,1112499060,3),(204,1130639460,4),(204,1143948660,3),(204,1162089060,4),(204,1173583860,3),(204,1194143460,4),(204,1205033460,3),(204,1225593060,4),(204,1236483060,3),(204,1257042660,4),(204,1268537460,3),(204,1289097060,4),(204,1299987060,3),(204,1320553800,4),(204,1331443800,3),(204,1352003400,4),(204,1362893400,3),(204,1383453000,4),(204,1394343000,3),(204,1414902600,4),(204,1425792600,3),(204,1446352200,4),(204,1457847000,3),(204,1478406600,4),(204,1489296600,3),(204,1509856200,4),(204,1520746200,3),(204,1541305800,4),(204,1552195800,3),(204,1572755400,4),(204,1583645400,3),(204,1604205000,4),(204,1615699800,3),(204,1636259400,4),(204,1647149400,3),(204,1667709000,4),(204,1678599000,3),(204,1699158600,4),(204,1710048600,3),(204,1730608200,4),(204,1741498200,3),(204,1762057800,4),(204,1772947800,3),(204,1793507400,4),(204,1805002200,3),(204,1825561800,4),(204,1836451800,3),(204,1857011400,4),(204,1867901400,3),(204,1888461000,4),(204,1899351000,3),(204,1919910600,4),(204,1930800600,3),(204,1951360200,4),(204,1962855000,3),(204,1983414600,4),(204,1994304600,3),(204,2014864200,4),(204,2025754200,3),(204,2046313800,4),(204,2057203800,3),(204,2077763400,4),(204,2088653400,3),(204,2109213000,4),(204,2120103000,3),(204,2140662600,4),(205,-2147483648,0),(205,-1825098836,1),(206,-2147483648,0),(206,-1825098836,1),(207,-2147483648,0),(207,-1825098836,1),(208,-2147483648,0),(208,-1825098836,1),(209,-2147483648,0),(209,-2030201320,2),(209,-1632063600,1),(209,-1615132800,2),(209,-880210800,3),(209,-769395600,4),(209,-765388800,2),(209,-747241200,1),(209,-732729600,2),(209,-715791600,1),(209,-702489600,2),(209,-684342000,1),(209,-671040000,2),(209,-652892400,1),(209,-639590400,2),(209,-400086000,1),(209,-384364800,2),(209,-337186800,1),(209,-321465600,2),(209,-305737200,1),(209,-292435200,2),(209,-273682800,1),(209,-260985600,2),(209,73472400,5),(210,-2147483648,0),(210,-1538503868,2),(210,547020000,1),(210,559717200,2),(210,578469600,1),(210,591166800,2),(210,1146981600,1),(210,1154926800,2),(211,-2147483648,0),(211,-1686079492,2),(211,670399200,1),(211,686120400,2),(211,701848800,1),(211,717570000,2),(211,733903200,1),(211,752043600,2),(211,765352800,1),(211,783493200,2),(211,796802400,1),(211,814942800,2),(211,828856800,1),(211,846392400,2),(211,860306400,1),(211,877842000,2),(211,891756000,1),(211,909291600,2),(211,923205600,1),(211,941346000,2),(211,954655200,1),(211,972795600,2),(211,986104800,1),(211,1004245200,2),(211,1018159200,1),(211,1035694800,2),(211,1049608800,1),(211,1067144400,2),(211,1081058400,1),(211,1099198800,2),(211,1112508000,1),(211,1130648400,2),(211,1143957600,1),(211,1162098000,2),(211,1173592800,1),(211,1194152400,2),(211,1205042400,1),(211,1225602000,2),(211,1236492000,1),(211,1257051600,2),(211,1268546400,1),(211,1289106000,2),(211,1299996000,1),(211,1320555600,2),(211,1331445600,1),(211,1352005200,2),(211,1362895200,1),(211,1383454800,2),(211,1394344800,1),(211,1414904400,2),(211,1425794400,1),(211,1446354000,2),(211,1457848800,1),(211,1478408400,2),(211,1489298400,1),(211,1509858000,2),(211,1520748000,1),(211,1541307600,2),(211,1552197600,1),(211,1572757200,2),(211,1583647200,1),(211,1604206800,2),(211,1615701600,1),(211,1636261200,2),(211,1647151200,1),(211,1667710800,2),(211,1678600800,1),(211,1699160400,2),(211,1710050400,1),(211,1730610000,2),(211,1741500000,1),(211,1762059600,2),(211,1772949600,1),(211,1793509200,2),(211,1805004000,1),(211,1825563600,2),(211,1836453600,1),(211,1857013200,2),(211,1867903200,1),(211,1888462800,2),(211,1899352800,1),(211,1919912400,2),(211,1930802400,1),(211,1951362000,2),(211,1962856800,1),(211,1983416400,2),(211,1994306400,1),(211,2014866000,2),(211,2025756000,1),(211,2046315600,2),(211,2057205600,1),(211,2077765200,2),(211,2088655200,1),(211,2109214800,2),(211,2120104800,1),(211,2140664400,2),(212,-2147483648,1),(212,-1893434400,2),(212,-880218000,3),(212,-769395600,4),(212,-765396000,2),(212,9961200,5),(212,25682400,2),(212,41410800,5),(212,57736800,2),(212,73465200,5),(212,89186400,2),(212,136364400,5),(212,152085600,2),(212,167814000,5),(212,183535200,2),(212,199263600,5),(212,215589600,2),(212,230713200,5),(212,247039200,2),(212,262767600,5),(212,278488800,2),(212,294217200,5),(212,309938400,2),(212,325666800,5),(212,341388000,2),(212,357116400,5),(212,372837600,2),(212,388566000,5),(212,404892000,2),(212,420015600,5),(212,436341600,2),(212,452070000,5),(212,467791200,2),(212,483519600,5),(212,499240800,2),(212,514969200,5),(212,530690400,2),(212,544604400,5),(212,562140000,2),(212,576054000,5),(212,594194400,2),(212,607503600,5),(212,625644000,2),(212,638953200,5),(212,657093600,2),(212,671007600,5),(212,688543200,2),(212,702457200,5),(212,719992800,2),(212,733906800,5),(212,752047200,2),(212,765356400,5),(212,783496800,2),(212,796806000,5),(212,814946400,2),(212,828860400,5),(212,846396000,2),(212,860310000,5),(212,877845600,2),(212,891759600,5),(212,909295200,2),(212,923209200,5),(212,941349600,2),(212,954658800,5),(212,972799200,2),(212,986108400,5),(212,1004248800,2),(212,1018162800,5),(212,1035698400,2),(212,1049612400,5),(212,1067148000,2),(212,1081062000,5),(212,1099202400,2),(212,1112511600,5),(212,1130652000,2),(212,1143961200,5),(212,1162101600,2),(212,1173596400,5),(212,1194156000,2),(212,1205046000,5),(212,1225605600,2),(212,1236495600,5),(212,1257055200,2),(212,1268550000,5),(212,1289109600,2),(212,1299999600,5),(212,1320559200,2),(212,1331449200,5),(212,1352008800,2),(212,1362898800,5),(212,1383458400,2),(212,1394348400,5),(212,1414908000,2),(212,1425798000,5),(212,1446357600,2),(212,1457852400,5),(212,1478412000,2),(212,1489302000,5),(212,1509861600,2),(212,1520751600,5),(212,1541311200,2),(212,1552201200,5),(212,1572760800,2),(212,1583650800,5),(212,1604210400,2),(212,1615705200,5),(212,1636264800,2),(212,1647154800,5),(212,1667714400,2),(212,1678604400,5),(212,1699164000,2),(212,1710054000,5),(212,1730613600,2),(212,1741503600,5),(212,1762063200,2),(212,1772953200,5),(212,1793512800,2),(212,1805007600,5),(212,1825567200,2),(212,1836457200,5),(212,1857016800,2),(212,1867906800,5),(212,1888466400,2),(212,1899356400,5),(212,1919916000,2),(212,1930806000,5),(212,1951365600,2),(212,1962860400,5),(212,1983420000,2),(212,1994310000,5),(212,2014869600,2),(212,2025759600,5),(212,2046319200,2),(212,2057209200,5),(212,2077768800,2),(212,2088658800,5),(212,2109218400,2),(212,2120108400,5),(212,2140668000,2),(213,-2147483648,0),(213,-1514736000,1),(213,-1451667600,2),(213,-1343062800,1),(213,-1234803600,2),(213,-1222963200,3),(213,-1207242000,2),(213,-873820800,4),(213,-769395600,5),(213,-761677200,2),(213,-686073600,3),(213,-661539600,2),(213,-495039600,3),(213,-481734000,2),(213,-463590000,3),(213,-450284400,2),(213,-431535600,3),(213,-418230000,2),(213,-400086000,3),(213,-386780400,2),(213,-368636400,3),(213,-355330800,2),(213,-337186800,3),(213,-323881200,2),(213,-305737200,3),(213,-292431600,2),(213,199274400,3),(213,215600400,2),(213,230724000,3),(213,247050000,2),(213,262778400,3),(213,278499600,2),(213,294228000,3),(213,309949200,2),(213,325677600,3),(213,341398800,2),(213,357127200,3),(213,372848400,2),(213,388576800,3),(213,404902800,2),(213,420026400,3),(213,436352400,2),(213,452080800,3),(213,467802000,2),(213,483530400,3),(213,499251600,2),(213,514980000,3),(213,530701200,2),(213,544615200,3),(213,562150800,2),(213,576064800,3),(213,594205200,2),(213,607514400,3),(213,625654800,2),(213,638964000,3),(213,657104400,2),(213,671018400,3),(213,688554000,2),(213,702468000,3),(213,720003600,2),(213,733917600,3),(213,752058000,2),(213,765367200,3),(213,783507600,2),(213,796816800,3),(213,814957200,2),(213,828871200,3),(213,846406800,2),(213,860320800,3),(213,877856400,2),(213,891770400,3),(213,909306000,2),(213,923220000,3),(213,941360400,2),(213,954669600,3),(213,972810000,2),(213,986119200,3),(213,1004259600,2),(213,1018173600,3),(213,1035709200,2),(213,1049623200,3),(213,1067158800,2),(213,1081072800,3),(213,1099213200,2),(213,1112522400,3),(213,1130662800,2),(213,1143972000,3),(213,1162112400,2),(213,1175421600,3),(213,1193562000,2),(213,1207476000,3),(213,1225011600,2),(213,1238925600,3),(213,1256461200,2),(213,1268560800,3),(213,1289120400,2),(213,1300010400,3),(213,1320570000,2),(213,1331460000,3),(213,1352019600,2),(213,1362909600,3),(213,1383469200,2),(213,1394359200,3),(213,1414918800,2),(213,1425808800,3),(213,1446368400,2),(213,1457863200,3),(213,1478422800,2),(213,1489312800,3),(213,1509872400,2),(213,1520762400,3),(213,1541322000,2),(213,1552212000,3),(213,1572771600,2),(213,1583661600,3),(213,1604221200,2),(213,1615716000,3),(213,1636275600,2),(213,1647165600,3),(213,1667725200,2),(213,1678615200,3),(213,1699174800,2),(213,1710064800,3),(213,1730624400,2),(213,1741514400,3),(213,1762074000,2),(213,1772964000,3),(213,1793523600,2),(213,1805018400,3),(213,1825578000,2),(213,1836468000,3),(213,1857027600,2),(213,1867917600,3),(213,1888477200,2),(213,1899367200,3),(213,1919926800,2),(213,1930816800,3),(213,1951376400,2),(213,1962871200,3),(213,1983430800,2),(213,1994320800,3),(213,2014880400,2),(213,2025770400,3),(213,2046330000,2),(213,2057220000,3),(213,2077779600,2),(213,2088669600,3),(213,2109229200,2),(213,2120119200,3),(213,2140678800,2),(214,-2147483648,2),(214,-1632070800,1),(214,-1615140000,2),(214,-1601753400,1),(214,-1583697600,2),(214,-1567357200,1),(214,-1554667200,2),(214,-1534698000,1),(214,-1524074400,2),(214,-1503248400,1),(214,-1492365600,2),(214,-1471798800,1),(214,-1460916000,2),(214,-1440954000,1),(214,-1428861600,2),(214,-1409504400,1),(214,-1397412000,2),(214,-1378054800,1),(214,-1365962400,2),(214,-1346605200,1),(214,-1333908000,2),(214,-1315155600,1),(214,-1301853600,2),(214,-1283706000,1),(214,-1270404000,2),(214,-1252256400,1),(214,-1238954400,2),(214,-1220806800,1),(214,-1207504800,2),(214,-1188752400,1),(214,-1176055200,2),(214,-1157302800,1),(214,-1144000800,2),(214,-1125853200,1),(214,-1112551200,2),(214,-1094403600,1),(214,-1081101600,2),(214,-1062954000,1),(214,-1049652000,2),(214,-1031504400,1),(214,-1018202400,2),(214,-1000054800,1),(214,-986752800,2),(214,-968000400,1),(214,-955303200,2),(214,-936550800,1),(214,-880218000,3),(214,-769395600,4),(214,-765396000,2),(214,-747248400,1),(214,-733946400,2),(214,-715806000,1),(214,-702504000,2),(214,-684356400,1),(214,-671054400,2),(214,-652906800,1),(214,-634161600,2),(214,-620845200,1),(214,-602704800,2),(214,-589395600,1),(214,-576093600,2),(214,-557946000,1),(214,-544644000,2),(214,-526496400,1),(214,-513194400,2),(214,-495046800,1),(214,-481744800,2),(214,-463597200,1),(214,-450295200,2),(214,-431542800,1),(214,-418240800,2),(214,-400093200,1),(214,-384372000,2),(214,-368643600,1),(214,-352922400,2),(214,-337194000,1),(214,-321472800,2),(214,-305744400,1),(214,-289418400,2),(214,-273690000,1),(214,-257968800,2),(214,-242240400,1),(214,-226519200,2),(214,-210790800,1),(214,-195069600,2),(214,-179341200,1),(214,-163620000,2),(214,-147891600,1),(214,-131565600,2),(214,-116442000,1),(214,-100116000,2),(214,-84387600,1),(214,-68666400,2),(214,-52938000,1),(214,-37216800,2),(214,-21488400,1),(214,-5767200,2),(214,9961200,1),(214,25682400,2),(214,41410800,1),(214,57736800,2),(214,73465200,1),(214,89186400,2),(214,104914800,1),(214,120636000,2),(214,136364400,1),(214,152085600,2),(214,167814000,1),(214,183535200,2),(214,199263600,1),(214,215589600,2),(214,230713200,1),(214,247039200,2),(214,262767600,1),(214,278488800,2),(214,294217200,1),(214,309938400,2),(214,325666800,1),(214,341388000,2),(214,357116400,1),(214,372837600,2),(214,388566000,1),(214,404892000,2),(214,420015600,1),(214,436341600,2),(214,452070000,1),(214,467791200,2),(214,483519600,1),(214,499240800,2),(214,514969200,1),(214,530690400,2),(214,544604400,1),(214,562140000,2),(214,576054000,1),(214,594194400,2),(214,607503600,1),(214,625644000,2),(214,638953200,1),(214,657093600,2),(214,671007600,1),(214,688543200,2),(214,702457200,1),(214,719992800,2),(214,733906800,1),(214,752047200,2),(214,765356400,1),(214,783496800,2),(214,796806000,1),(214,814946400,2),(214,828860400,1),(214,846396000,2),(214,860310000,1),(214,877845600,2),(214,891759600,1),(214,909295200,2),(214,923209200,1),(214,941349600,2),(214,954658800,1),(214,972799200,2),(214,986108400,1),(214,1004248800,2),(214,1018162800,1),(214,1035698400,2),(214,1049612400,1),(214,1067148000,2),(214,1081062000,1),(214,1099202400,2),(214,1112511600,1),(214,1130652000,2),(214,1143961200,1),(214,1162101600,2),(214,1173596400,1),(214,1194156000,2),(214,1205046000,1),(214,1225605600,2),(214,1236495600,1),(214,1257055200,2),(214,1268550000,1),(214,1289109600,2),(214,1299999600,1),(214,1320559200,2),(214,1331449200,1),(214,1352008800,2),(214,1362898800,1),(214,1383458400,2),(214,1394348400,1),(214,1414908000,2),(214,1425798000,1),(214,1446357600,2),(214,1457852400,1),(214,1478412000,2),(214,1489302000,1),(214,1509861600,2),(214,1520751600,1),(214,1541311200,2),(214,1552201200,1),(214,1572760800,2),(214,1583650800,1),(214,1604210400,2),(214,1615705200,1),(214,1636264800,2),(214,1647154800,1),(214,1667714400,2),(214,1678604400,1),(214,1699164000,2),(214,1710054000,1),(214,1730613600,2),(214,1741503600,1),(214,1762063200,2),(214,1772953200,1),(214,1793512800,2),(214,1805007600,1),(214,1825567200,2),(214,1836457200,1),(214,1857016800,2),(214,1867906800,1),(214,1888466400,2),(214,1899356400,1),(214,1919916000,2),(214,1930806000,1),(214,1951365600,2),(214,1962860400,1),(214,1983420000,2),(214,1994310000,1),(214,2014869600,2),(214,2025759600,1),(214,2046319200,2),(214,2057209200,1),(214,2077768800,2),(214,2088658800,1),(214,2109218400,2),(214,2120108400,1),(214,2140668000,2),(215,-2147483648,0),(215,-1825098836,1),(216,-2147483648,2),(216,-1632060000,1),(216,-1615129200,2),(216,-880207200,3),(216,-769395600,4),(216,-765385200,2),(216,-747237600,1),(216,-733935600,2),(216,-715788000,1),(216,-702486000,2),(216,-684338400,1),(216,-671036400,2),(216,-652888800,1),(216,-639586800,2),(216,-620834400,1),(216,-608137200,2),(216,-589384800,1),(216,-576082800,2),(216,-557935200,1),(216,-544633200,2),(216,-526485600,1),(216,-513183600,2),(216,-495036000,1),(216,-481734000,2),(216,-463586400,1),(216,-450284400,2),(216,-431532000,1),(216,-418230000,2),(216,-400082400,1),(216,-386780400,2),(216,-368632800,1),(216,-355330800,2),(216,-337183200,1),(216,-323881200,2),(216,-305733600,1),(216,-292431600,2),(216,-273679200,1),(216,-260982000,2),(216,-242229600,1),(216,-226508400,2),(216,-210780000,1),(216,-195058800,2),(216,-179330400,1),(216,-163609200,2),(216,-147880800,1),(216,-131554800,2),(216,-116431200,1),(216,-100105200,2),(216,-84376800,1),(216,-68655600,2),(216,-52927200,1),(216,-37206000,2),(216,-21477600,1),(216,-5756400,2),(216,9972000,1),(216,25693200,2),(216,41421600,1),(216,57747600,2),(216,73476000,1),(216,89197200,2),(216,104925600,1),(216,120646800,2),(216,136375200,1),(216,152096400,2),(216,167824800,1),(216,183546000,2),(216,199274400,1),(216,215600400,2),(216,230724000,1),(216,247050000,2),(216,262778400,1),(216,278499600,2),(216,294228000,1),(216,309949200,2),(216,325677600,1),(216,341398800,2),(216,357127200,1),(216,372848400,2),(216,388576800,1),(216,404902800,2),(216,420026400,1),(216,436352400,2),(216,452080800,1),(216,467802000,2),(216,483530400,1),(216,499251600,2),(216,514980000,1),(216,530701200,2),(216,544615200,1),(216,562150800,2),(216,576064800,1),(216,594205200,2),(216,607514400,1),(216,625654800,2),(216,638964000,1),(216,657104400,2),(216,671018400,1),(216,688554000,2),(216,702468000,1),(216,720003600,2),(216,733917600,1),(216,752058000,2),(216,765367200,1),(216,783507600,2),(216,796816800,1),(216,814957200,2),(216,828871200,1),(216,846406800,2),(216,860320800,1),(216,877856400,2),(216,891770400,1),(216,909306000,2),(216,923220000,1),(216,941360400,2),(216,954669600,1),(216,972810000,2),(216,986119200,1),(216,1004259600,2),(216,1018173600,1),(216,1035709200,2),(216,1049623200,1),(216,1067158800,2),(216,1081072800,1),(216,1099213200,2),(216,1112522400,1),(216,1130662800,2),(216,1143972000,1),(216,1162112400,2),(216,1173607200,1),(216,1194166800,2),(216,1205056800,1),(216,1225616400,2),(216,1236506400,1),(216,1257066000,2),(216,1268560800,1),(216,1289120400,2),(216,1300010400,1),(216,1320570000,2),(216,1331460000,1),(216,1352019600,2),(216,1362909600,1),(216,1383469200,2),(216,1394359200,1),(216,1414918800,2),(216,1425808800,1),(216,1446368400,2),(216,1457863200,1),(216,1478422800,2),(216,1489312800,1),(216,1509872400,2),(216,1520762400,1),(216,1541322000,2),(216,1552212000,1),(216,1572771600,2),(216,1583661600,1),(216,1604221200,2),(216,1615716000,1),(216,1636275600,2),(216,1647165600,1),(216,1667725200,2),(216,1678615200,1),(216,1699174800,2),(216,1710064800,1),(216,1730624400,2),(216,1741514400,1),(216,1762074000,2),(216,1772964000,1),(216,1793523600,2),(216,1805018400,1),(216,1825578000,2),(216,1836468000,1),(216,1857027600,2),(216,1867917600,1),(216,1888477200,2),(216,1899367200,1),(216,1919926800,2),(216,1930816800,1),(216,1951376400,2),(216,1962871200,1),(216,1983430800,2),(216,1994320800,1),(216,2014880400,2),(216,2025770400,1),(216,2046330000,2),(216,2057220000,1),(216,2077779600,2),(216,2088669600,1),(216,2109229200,2),(216,2120119200,1),(216,2140678800,2),(217,-2147483648,0),(217,-1825098836,1),(218,-2147483648,2),(218,-1632056400,1),(218,-1615125600,2),(218,-1596978000,1),(218,-1583164800,2),(218,-880203600,3),(218,-769395600,4),(218,-765381600,2),(218,-147884400,5),(218,-131554800,2),(218,-81961200,6),(218,325677600,7),(218,341398800,6),(218,357127200,7),(218,372848400,6),(218,388576800,7),(218,404902800,6),(218,420026400,7),(218,436352400,6),(218,452080800,7),(218,467802000,6),(218,483530400,7),(218,499251600,6),(218,514980000,7),(218,530701200,6),(218,544615200,7),(218,562150800,6),(218,576064800,7),(218,594205200,6),(218,607514400,7),(218,625654800,6),(218,638964000,7),(218,657104400,6),(218,671018400,7),(218,688554000,6),(218,702468000,7),(218,720003600,6),(218,733917600,7),(218,752058000,6),(218,765367200,7),(218,783507600,6),(218,796816800,7),(218,814957200,6),(218,828871200,7),(218,846406800,6),(218,860320800,7),(218,877856400,6),(218,891770400,7),(218,909306000,6),(218,923220000,7),(218,941360400,6),(218,954669600,7),(218,972810000,6),(218,986119200,7),(218,1004259600,6),(218,1018173600,7),(218,1035709200,6),(218,1049623200,7),(218,1067158800,6),(218,1081072800,7),(218,1099213200,6),(218,1112522400,7),(218,1130662800,6),(218,1143972000,7),(218,1162112400,6),(218,1173607200,7),(218,1194166800,6),(218,1205056800,7),(218,1225616400,6),(218,1236506400,7),(218,1257066000,6),(218,1268560800,7),(218,1289120400,6),(218,1300010400,7),(218,1320570000,6),(218,1331460000,7),(218,1352019600,6),(218,1362909600,7),(218,1383469200,6),(218,1394359200,7),(218,1414918800,6),(218,1425808800,7),(218,1446368400,6),(218,1457863200,7),(218,1478422800,6),(218,1489312800,7),(218,1509872400,6),(218,1520762400,7),(218,1541322000,6),(218,1552212000,7),(218,1572771600,6),(218,1583661600,7),(218,1604214000,8),(219,-2147483648,2),(219,-1694368800,1),(219,-1681671600,2),(219,-1632067200,1),(219,-1615136400,2),(219,-1029686400,1),(219,-1018198800,2),(219,-880214400,3),(219,-769395600,4),(219,-765392400,2),(219,-746035200,1),(219,-732733200,2),(219,-715795200,1),(219,-702493200,2),(219,-684345600,1),(219,-671043600,2),(219,-652896000,1),(219,-639594000,2),(219,-620755200,1),(219,-607626000,2),(219,-589392000,1),(219,-576090000,2),(219,-557942400,1),(219,-544640400,2),(219,-526492800,1),(219,-513190800,2),(219,-495043200,1),(219,-481741200,2),(219,-463593600,1),(219,-450291600,2),(219,-431539200,1),(219,-418237200,2),(219,-400089600,1),(219,-386787600,2),(219,-368640000,1),(219,-355338000,2),(219,-337190400,1),(219,-321469200,2),(219,-305740800,1),(219,-292438800,2),(219,-210787200,1),(219,-198090000,2),(219,-116438400,5),(219,-100108800,6),(219,-84384000,5),(219,-68659200,6),(219,-52934400,5),(219,-37209600,6),(219,-21484800,5),(219,-5760000,6),(219,9964800,5),(219,25689600,6),(219,41414400,5),(219,57744000,6),(219,73468800,5),(219,89193600,6),(219,104918400,5),(219,120643200,6),(219,136368000,5),(219,152092800,6),(219,167817600,5),(219,183542400,6),(219,199267200,5),(219,215596800,6),(219,230716800,5),(219,247046400,6),(219,262771200,5),(219,278496000,6),(219,294220800,5),(219,309945600,6),(219,325670400,5),(219,341395200,6),(219,357120000,5),(219,372844800,6),(219,388569600,5),(219,404899200,6),(219,420019200,5),(219,436348800,6),(219,452073600,5),(219,467798400,6),(219,483523200,5),(219,499248000,6),(219,514972800,5),(219,530697600,6),(219,544608000,5),(219,562147200,6),(219,576057600,5),(219,594201600,6),(219,607507200,5),(219,625651200,6),(219,638956800,5),(219,657100800,6),(219,671011200,5),(219,688550400,6),(219,702460800,5),(219,720000000,6),(219,733910400,5),(219,752054400,6),(219,765360000,5),(219,783504000,6),(219,796809600,5),(219,814953600,6),(219,828864000,5),(219,846403200,6),(219,860313600,5),(219,877852800,6),(219,891763200,5),(219,909302400,6),(219,923212800,5),(219,941356800,6),(219,954662400,5),(219,972806400,6),(219,986112000,5),(219,1004256000,6),(219,1018166400,5),(219,1035705600,6),(219,1049616000,5),(219,1067155200,6),(219,1081065600,5),(219,1099209600,6),(219,1112515200,5),(219,1130659200,6),(219,1136095200,2),(219,1143964800,1),(219,1162105200,2),(219,1173600000,1),(219,1194159600,2),(219,1205049600,1),(219,1225609200,2),(219,1236499200,1),(219,1257058800,2),(219,1268553600,1),(219,1289113200,2),(219,1300003200,1),(219,1320562800,2),(219,1331452800,1),(219,1352012400,2),(219,1362902400,1),(219,1383462000,2),(219,1394352000,1),(219,1414911600,2),(219,1425801600,1),(219,1446361200,2),(219,1457856000,1),(219,1478415600,2),(219,1489305600,1),(219,1509865200,2),(219,1520755200,1),(219,1541314800,2),(219,1552204800,1),(219,1572764400,2),(219,1583654400,1),(219,1604214000,2),(219,1615708800,1),(219,1636268400,2),(219,1647158400,1),(219,1667718000,2),(219,1678608000,1),(219,1699167600,2),(219,1710057600,1),(219,1730617200,2),(219,1741507200,1),(219,1762066800,2),(219,1772956800,1),(219,1793516400,2),(219,1805011200,1),(219,1825570800,2),(219,1836460800,1),(219,1857020400,2),(219,1867910400,1),(219,1888470000,2),(219,1899360000,1),(219,1919919600,2),(219,1930809600,1),(219,1951369200,2),(219,1962864000,1),(219,1983423600,2),(219,1994313600,1),(219,2014873200,2),(219,2025763200,1),(219,2046322800,2),(219,2057212800,1),(219,2077772400,2),(219,2088662400,1),(219,2109222000,2),(219,2120112000,1),(219,2140671600,2),(220,-2147483648,1),(220,-880203600,2),(220,-769395600,3),(220,-765381600,1),(220,-21474000,4),(220,-5752800,1),(220,9975600,4),(220,25696800,1),(220,41425200,4),(220,57751200,1),(220,73479600,4),(220,89200800,1),(220,104929200,4),(220,120650400,1),(220,126702000,4),(220,152100000,1),(220,162385200,4),(220,183549600,1),(220,199278000,4),(220,215604000,1),(220,230727600,4),(220,247053600,1),(220,262782000,4),(220,278503200,1),(220,294231600,4),(220,309952800,1),(220,325681200,4),(220,341402400,1),(220,357130800,4),(220,372852000,1),(220,388580400,4),(220,404906400,1),(220,420030000,4),(220,436356000,1),(220,439030800,6),(220,452084400,5),(220,467805600,6),(220,483534000,5),(220,499255200,6),(220,514983600,5),(220,530704800,6),(220,544618800,5),(220,562154400,6),(220,576068400,5),(220,594208800,6),(220,607518000,5),(220,625658400,6),(220,638967600,5),(220,657108000,6),(220,671022000,5),(220,688557600,6),(220,702471600,5),(220,720007200,6),(220,733921200,5),(220,752061600,6),(220,765370800,5),(220,783511200,6),(220,796820400,5),(220,814960800,6),(220,828874800,5),(220,846410400,6),(220,860324400,5),(220,877860000,6),(220,891774000,5),(220,909309600,6),(220,923223600,5),(220,941364000,6),(220,954673200,5),(220,972813600,6),(220,986122800,5),(220,1004263200,6),(220,1018177200,5),(220,1035712800,6),(220,1049626800,5),(220,1067162400,6),(220,1081076400,5),(220,1099216800,6),(220,1112526000,5),(220,1130666400,6),(220,1143975600,5),(220,1162116000,6),(220,1173610800,5),(220,1194170400,6),(220,1205060400,5),(220,1225620000,6),(220,1236510000,5),(220,1257069600,6),(220,1268564400,5),(220,1289124000,6),(220,1300014000,5),(220,1320573600,6),(220,1331463600,5),(220,1352023200,6),(220,1362913200,5),(220,1383472800,6),(220,1394362800,5),(220,1414922400,6),(220,1425812400,5),(220,1446372000,6),(220,1457866800,5),(220,1478426400,6),(220,1489316400,5),(220,1509876000,6),(220,1520766000,5),(220,1541325600,6),(220,1552215600,5),(220,1572775200,6),(220,1583665200,5),(220,1604224800,6),(220,1615719600,5),(220,1636279200,6),(220,1647169200,5),(220,1667728800,6),(220,1678618800,5),(220,1699178400,6),(220,1710068400,5),(220,1730628000,6),(220,1741518000,5),(220,1762077600,6),(220,1772967600,5),(220,1793527200,6),(220,1805022000,5),(220,1825581600,6),(220,1836471600,5),(220,1857031200,6),(220,1867921200,5),(220,1888480800,6),(220,1899370800,5),(220,1919930400,6),(220,1930820400,5),(220,1951380000,6),(220,1962874800,5),(220,1983434400,6),(220,1994324400,5),(220,2014884000,6),(220,2025774000,5),(220,2046333600,6),(220,2057223600,5),(220,2077783200,6),(220,2088673200,5),(220,2109232800,6),(220,2120122800,5),(220,2140682400,6),(221,-2147483648,0),(221,-1104537600,3),(221,-880210800,1),(221,-769395600,2),(221,-765388800,3),(221,-147891600,4),(221,-131562000,3),(221,325674000,5),(221,341395200,3),(221,357123600,5),(221,372844800,3),(221,388573200,5),(221,404899200,3),(221,420022800,5),(221,436348800,3),(221,452077200,5),(221,467798400,3),(221,483526800,5),(221,499248000,3),(221,514976400,5),(221,530697600,3),(221,544611600,5),(221,562147200,3),(221,576061200,5),(221,594201600,3),(221,607510800,5),(221,625651200,3),(221,638960400,5),(221,657100800,3),(221,671014800,5),(221,688550400,3),(221,702464400,5),(221,720000000,3),(221,733914000,5),(221,752054400,3),(221,765363600,5),(221,783504000,3),(221,796813200,5),(221,814953600,3),(221,828867600,5),(221,846403200,3),(221,860317200,5),(221,877852800,3),(221,891766800,5),(221,909302400,3),(221,923216400,5),(221,941356800,3),(221,954666000,5),(221,972806400,3),(221,986115600,5),(221,1004256000,3),(221,1018170000,5),(221,1035705600,3),(221,1049619600,5),(221,1067155200,3),(221,1081069200,5),(221,1099209600,3),(221,1112518800,5),(221,1130659200,3),(221,1143968400,5),(221,1162108800,3),(221,1173603600,5),(221,1194163200,3),(221,1205053200,5),(221,1225612800,3),(221,1236502800,5),(221,1257062400,3),(221,1268557200,5),(221,1289116800,3),(221,1300006800,5),(221,1320566400,3),(221,1331456400,5),(221,1352016000,3),(221,1362906000,5),(221,1383465600,3),(221,1394355600,5),(221,1414915200,3),(221,1425805200,5),(221,1446364800,3),(221,1457859600,5),(221,1478419200,3),(221,1489309200,5),(221,1509868800,3),(221,1520758800,5),(221,1541318400,3),(221,1552208400,5),(221,1572768000,3),(221,1583658000,5),(221,1604217600,3),(221,1615712400,5),(221,1636272000,3),(221,1647162000,5),(221,1667721600,3),(221,1678611600,5),(221,1699171200,3),(221,1710061200,5),(221,1730620800,3),(221,1741510800,5),(221,1762070400,3),(221,1772960400,5),(221,1793520000,3),(221,1805014800,5),(221,1825574400,3),(221,1836464400,5),(221,1857024000,3),(221,1867914000,5),(221,1888473600,3),(221,1899363600,5),(221,1919923200,3),(221,1930813200,5),(221,1951372800,3),(221,1962867600,5),(221,1983427200,3),(221,1994317200,5),(221,2014876800,3),(221,2025766800,5),(221,2046326400,3),(221,2057216400,5),(221,2077776000,3),(221,2088666000,5),(221,2109225600,3),(221,2120115600,5),(221,2140675200,3),(222,-2147483648,0),(222,-31536000,1),(222,1255802400,2),(222,1267714800,1),(222,1319738400,2),(222,1329843600,3),(222,1477065600,2),(222,1520701200,1),(222,1538856000,2),(222,1552752000,1),(222,1570129200,2),(222,1583596800,1),(222,1601740860,2),(222,2147483647,2),(223,-2147483648,0),(223,-409190400,1),(223,-163062000,0),(223,-28857600,1),(223,1255806000,2),(223,1268251200,3),(223,1319742000,2),(223,1329854400,3),(223,2147483647,3),(224,-2147483648,0),(224,-725846400,1),(224,-566992800,0),(224,-415497600,1),(224,2147483647,1),(225,-2147483648,1),(225,-1680508800,2),(225,-1665388800,3),(225,-1601719200,4),(225,-687052800,1),(225,-71136000,5),(225,-55411200,3),(225,-37267200,5),(225,-25776000,3),(225,-5817600,5),(225,5673600,3),(225,25632000,5),(225,37728000,3),(225,57686400,5),(225,67968000,3),(225,89136000,5),(225,100022400,3),(225,120585600,5),(225,131472000,3),(225,152035200,5),(225,162921600,3),(225,183484800,5),(225,194976000,3),(225,215539200,5),(225,226425600,3),(225,246988800,5),(225,257875200,3),(225,278438400,5),(225,289324800,3),(225,309888000,5),(225,320774400,3),(225,341337600,5),(225,352224000,3),(225,372787200,5),(225,386092800,3),(225,404841600,5),(225,417542400,3),(225,436291200,5),(225,447177600,3),(225,467740800,5),(225,478627200,3),(225,499190400,5),(225,510076800,3),(225,530035200,5),(225,542736000,3),(225,562089600,5),(225,574790400,3),(225,594144000,5),(225,606240000,3),(225,625593600,5),(225,637689600,3),(225,657043200,5),(225,670348800,3),(225,686678400,5),(225,701798400,3),(225,718128000,5),(225,733248000,3),(225,749577600,5),(225,764697600,3),(225,781027200,5),(225,796147200,3),(225,812476800,5),(225,828201600,3),(225,844531200,5),(225,859651200,3),(225,875980800,5),(225,891100800,3),(225,907430400,5),(225,922550400,3),(225,938880000,5),(225,954000000,3),(225,967305600,5),(225,985449600,3),(225,1002384000,5),(225,1017504000,3),(225,1033833600,5),(225,1048953600,3),(225,1065283200,5),(225,1080403200,3),(225,1096732800,5),(225,1111852800,3),(225,1128182400,5),(225,1143907200,3),(225,1159632000,5),(225,1174752000,3),(225,1191686400,5),(225,1207411200,3),(225,1223136000,5),(225,1238860800,3),(225,1254585600,5),(225,1262264400,2),(225,1301760000,3),(225,1317484800,5),(225,1333209600,3),(225,1349539200,5),(225,1365264000,3),(225,1380988800,5),(225,1396713600,3),(225,1412438400,5),(225,1428163200,3),(225,1443888000,5),(225,1459612800,3),(225,1475337600,5),(225,1491062400,3),(225,1506787200,5),(225,1522512000,3),(225,1538841600,5),(225,1554566400,3),(225,1570291200,5),(225,1586016000,3),(225,1601740800,5),(225,1617465600,3),(225,1633190400,5),(225,1648915200,3),(225,1664640000,5),(225,1680364800,3),(225,1696089600,5),(225,1712419200,3),(225,1728144000,5),(225,1743868800,3),(225,1759593600,5),(225,1775318400,3),(225,1791043200,5),(225,1806768000,3),(225,1822492800,5),(225,1838217600,3),(225,1853942400,5),(225,1869667200,3),(225,1885996800,5),(225,1901721600,3),(225,1917446400,5),(225,1933171200,3),(225,1948896000,5),(225,1964620800,3),(225,1980345600,5),(225,1996070400,3),(225,2011795200,5),(225,2027520000,3),(225,2043244800,5),(225,2058969600,3),(225,2075299200,5),(225,2091024000,3),(225,2106748800,5),(225,2122473600,3),(225,2138198400,5),(226,-2147483648,0),(226,-501206400,1),(226,1255809600,2),(226,2147483647,2),(227,-2147483648,2),(227,-1330335000,1),(227,-1320057000,2),(227,-1300699800,3),(227,-1287396000,2),(227,-1269250200,3),(227,-1255946400,2),(227,-1237800600,3),(227,-1224496800,2),(227,-1206351000,3),(227,-1192442400,2),(227,-1174901400,3),(227,-1160992800,2),(227,-1143451800,3),(227,-1125914400,2),(227,-1112607000,3),(227,-1094464800,2),(227,-1081157400,3),(227,-1063015200,2),(227,-1049707800,3),(227,-1031565600,2),(227,-1018258200,3),(227,-1000116000,2),(227,-986808600,3),(227,-968061600,2),(227,-955359000,3),(227,-936612000,2),(227,-923304600,3),(227,-757425600,6),(227,152632800,4),(227,162309600,5),(227,183477600,4),(227,194968800,5),(227,215532000,4),(227,226418400,5),(227,246981600,4),(227,257868000,5),(227,278431200,4),(227,289317600,5),(227,309880800,4),(227,320767200,5),(227,341330400,4),(227,352216800,5),(227,372780000,4),(227,384271200,5),(227,404834400,4),(227,415720800,5),(227,436284000,4),(227,447170400,5),(227,467733600,4),(227,478620000,5),(227,499183200,4),(227,510069600,5),(227,530632800,4),(227,541519200,5),(227,562082400,4),(227,573573600,5),(227,594136800,4),(227,605023200,5),(227,623772000,4),(227,637682400,5),(227,655221600,4),(227,669132000,5),(227,686671200,4),(227,700581600,5),(227,718120800,4),(227,732636000,5),(227,749570400,4),(227,764085600,5),(227,781020000,4),(227,795535200,5),(227,812469600,4),(227,826984800,5),(227,844524000,4),(227,858434400,5),(227,875973600,4),(227,889884000,5),(227,907423200,4),(227,921938400,5),(227,938872800,4),(227,953388000,5),(227,970322400,4),(227,984837600,5),(227,1002376800,4),(227,1016287200,5),(227,1033826400,4),(227,1047736800,5),(227,1065276000,4),(227,1079791200,5),(227,1096725600,4),(227,1111240800,5),(227,1128175200,4),(227,1142690400,5),(227,1159624800,4),(227,1174140000,5),(227,1191074400,4),(227,1207404000,5),(227,1222524000,4),(227,1238853600,5),(227,1253973600,4),(227,1270303200,5),(227,1285423200,4),(227,1301752800,5),(227,1316872800,4),(227,1333202400,5),(227,1348927200,4),(227,1365256800,5),(227,1380376800,4),(227,1396706400,5),(227,1411826400,4),(227,1428156000,5),(227,1443276000,4),(227,1459605600,5),(227,1474725600,4),(227,1491055200,5),(227,1506175200,4),(227,1522504800,5),(227,1538229600,4),(227,1554559200,5),(227,1569679200,4),(227,1586008800,5),(227,1601128800,4),(227,1617458400,5),(227,1632578400,4),(227,1648908000,5),(227,1664028000,4),(227,1680357600,5),(227,1695477600,4),(227,1712412000,5),(227,1727532000,4),(227,1743861600,5),(227,1758981600,4),(227,1775311200,5),(227,1790431200,4),(227,1806760800,5),(227,1821880800,4),(227,1838210400,5),(227,1853330400,4),(227,1869660000,5),(227,1885384800,4),(227,1901714400,5),(227,1916834400,4),(227,1933164000,5),(227,1948284000,4),(227,1964613600,5),(227,1979733600,4),(227,1996063200,5),(227,2011183200,4),(227,2027512800,5),(227,2042632800,4),(227,2058962400,5),(227,2074687200,4),(227,2091016800,5),(227,2106136800,4),(227,2122466400,5),(227,2137586400,4),(228,-2147483648,0),(228,-157766400,2),(228,-152658000,1),(228,-132955200,2),(228,-121122000,1),(228,-101419200,2),(228,-86821200,1),(228,-71092800,2),(228,-54766800,1),(228,-39038400,2),(228,-23317200,1),(228,-7588800,4),(228,128142000,3),(228,136605600,4),(228,389070000,1),(228,403070400,5),(228,416372400,6),(228,434520000,5),(228,447822000,6),(228,466574400,5),(228,479271600,6),(228,498024000,5),(228,510721200,6),(228,529473600,5),(228,545194800,6),(228,560923200,5),(228,574225200,6),(228,592372800,5),(228,605674800,6),(228,624427200,5),(228,637124400,6),(228,653457600,5),(228,668574000,6),(228,687326400,5),(228,700628400,6),(228,718776000,5),(228,732078000,6),(228,750225600,5),(228,763527600,6),(228,781675200,5),(228,794977200,6),(228,813729600,5),(228,826426800,6),(228,845179200,5),(228,859690800,6),(228,876628800,5),(228,889930800,6),(228,906868800,5),(228,923194800,6),(228,939528000,5),(228,952830000,6),(228,971582400,5),(228,984279600,6),(228,1003032000,5),(228,1015729200,6),(228,1034481600,5),(228,1047178800,6),(228,1065931200,5),(228,1079233200,6),(228,1097380800,5),(228,1110682800,6),(228,1128830400,5),(228,1142132400,6),(228,1160884800,5),(228,1173582000,6),(228,1192334400,5),(228,1206846000,6),(228,1223784000,5),(228,1237086000,6),(228,1255233600,5),(228,1270350000,6),(228,1286683200,5),(228,1304823600,6),(228,1313899200,5),(228,1335668400,6),(228,1346558400,5),(228,1367118000,6),(228,1378612800,5),(228,1398567600,6),(228,1410062400,5),(228,1463281200,6),(228,1471147200,5),(228,1480820400,4),(228,2147483647,4),(229,-2147483648,0),(229,218246400,1),(229,2147483647,1),(230,-2147483648,2),(230,-1330335000,1),(230,-1320057000,2),(230,-1300699800,3),(230,-1287396000,2),(230,-1269250200,3),(230,-1255946400,2),(230,-1237800600,3),(230,-1224496800,2),(230,-1206351000,3),(230,-1192442400,2),(230,-1174901400,3),(230,-1160992800,2),(230,-1143451800,3),(230,-1125914400,2),(230,-1112607000,3),(230,-1094464800,2),(230,-1081157400,3),(230,-1063015200,2),(230,-1049707800,3),(230,-1031565600,2),(230,-1018258200,3),(230,-1000116000,2),(230,-986808600,3),(230,-968061600,2),(230,-955359000,3),(230,-936612000,2),(230,-923304600,3),(230,-757425600,6),(230,152632800,4),(230,162309600,5),(230,183477600,4),(230,194968800,5),(230,215532000,4),(230,226418400,5),(230,246981600,4),(230,257868000,5),(230,278431200,4),(230,289317600,5),(230,309880800,4),(230,320767200,5),(230,341330400,4),(230,352216800,5),(230,372780000,4),(230,384271200,5),(230,404834400,4),(230,415720800,5),(230,436284000,4),(230,447170400,5),(230,467733600,4),(230,478620000,5),(230,499183200,4),(230,510069600,5),(230,530632800,4),(230,541519200,5),(230,562082400,4),(230,573573600,5),(230,594136800,4),(230,605023200,5),(230,623772000,4),(230,637682400,5),(230,655221600,4),(230,669132000,5),(230,686671200,4),(230,700581600,5),(230,718120800,4),(230,732636000,5),(230,749570400,4),(230,764085600,5),(230,781020000,4),(230,795535200,5),(230,812469600,4),(230,826984800,5),(230,844524000,4),(230,858434400,5),(230,875973600,4),(230,889884000,5),(230,907423200,4),(230,921938400,5),(230,938872800,4),(230,953388000,5),(230,970322400,4),(230,984837600,5),(230,1002376800,4),(230,1016287200,5),(230,1033826400,4),(230,1047736800,5),(230,1065276000,4),(230,1079791200,5),(230,1096725600,4),(230,1111240800,5),(230,1128175200,4),(230,1142690400,5),(230,1159624800,4),(230,1174140000,5),(230,1191074400,4),(230,1207404000,5),(230,1222524000,4),(230,1238853600,5),(230,1253973600,4),(230,1270303200,5),(230,1285423200,4),(230,1301752800,5),(230,1316872800,4),(230,1333202400,5),(230,1348927200,4),(230,1365256800,5),(230,1380376800,4),(230,1396706400,5),(230,1411826400,4),(230,1428156000,5),(230,1443276000,4),(230,1459605600,5),(230,1474725600,4),(230,1491055200,5),(230,1506175200,4),(230,1522504800,5),(230,1538229600,4),(230,1554559200,5),(230,1569679200,4),(230,1586008800,5),(230,1601128800,4),(230,1617458400,5),(230,1632578400,4),(230,1648908000,5),(230,1664028000,4),(230,1680357600,5),(230,1695477600,4),(230,1712412000,5),(230,1727532000,4),(230,1743861600,5),(230,1758981600,4),(230,1775311200,5),(230,1790431200,4),(230,1806760800,5),(230,1821880800,4),(230,1838210400,5),(230,1853330400,4),(230,1869660000,5),(230,1885384800,4),(230,1901714400,5),(230,1916834400,4),(230,1933164000,5),(230,1948284000,4),(230,1964613600,5),(230,1979733600,4),(230,1996063200,5),(230,2011183200,4),(230,2027512800,5),(230,2042632800,4),(230,2058962400,5),(230,2074687200,4),(230,2091016800,5),(230,2106136800,4),(230,2122466400,5),(230,2137586400,4),(231,-2147483648,0),(231,-407808000,1),(231,2147483647,1),(232,-2147483648,0),(232,1108166400,3),(232,1111885200,1),(232,1130634000,2),(232,1143334800,1),(232,1162083600,2),(232,1174784400,1),(232,1193533200,2),(232,1206838800,1),(232,1224982800,2),(232,1238288400,1),(232,1256432400,2),(232,1269738000,1),(232,1288486800,2),(232,1301187600,1),(232,1319936400,2),(232,1332637200,1),(232,1351386000,2),(232,1364691600,1),(232,1382835600,2),(232,1396141200,1),(232,1414285200,2),(232,1427590800,1),(232,1445734800,2),(232,1459040400,1),(232,1477789200,2),(232,1490490000,1),(232,1509238800,2),(232,1521939600,1),(232,1540688400,2),(232,1553994000,1),(232,1572138000,2),(232,1585443600,1),(232,1603587600,2),(232,1616893200,1),(232,1635642000,2),(232,1648342800,1),(232,1667091600,2),(232,1679792400,1),(232,1698541200,2),(232,1711846800,1),(232,1729990800,2),(232,1743296400,1),(232,1761440400,2),(232,1774746000,1),(232,1792890000,2),(232,1806195600,1),(232,1824944400,2),(232,1837645200,1),(232,1856394000,2),(232,1869094800,1),(232,1887843600,2),(232,1901149200,1),(232,1919293200,2),(232,1932598800,1),(232,1950742800,2),(232,1964048400,1),(232,1982797200,2),(232,1995498000,1),(232,2014246800,2),(232,2026947600,1),(232,2045696400,2),(232,2058397200,1),(232,2077146000,2),(232,2090451600,1),(232,2108595600,2),(232,2121901200,1),(232,2140045200,2),(232,2147483647,2),(233,-2147483648,0),(233,-380073600,1),(233,2147483647,1),(234,-2147483648,2),(234,-1691884800,1),(234,-1680573600,2),(234,-927511200,1),(234,-857257200,3),(234,-844556400,4),(234,-828226800,3),(234,-812502000,4),(234,-796777200,3),(234,-781052400,4),(234,-765327600,3),(234,-340844400,4),(234,-324514800,3),(234,-308790000,4),(234,-293065200,3),(234,-277340400,4),(234,-261615600,3),(234,-245890800,4),(234,-230166000,3),(234,-214441200,4),(234,-198716400,3),(234,-182991600,4),(234,-166662000,3),(234,-147913200,4),(234,-135212400,3),(234,315529200,2),(234,323830800,5),(234,338950800,6),(234,354675600,5),(234,370400400,6),(234,386125200,5),(234,401850000,6),(234,417574800,5),(234,433299600,6),(234,449024400,5),(234,465354000,6),(234,481078800,5),(234,496803600,6),(234,512528400,5),(234,528253200,6),(234,543978000,5),(234,559702800,6),(234,575427600,5),(234,591152400,6),(234,606877200,5),(234,622602000,6),(234,638326800,5),(234,654656400,6),(234,670381200,5),(234,686106000,6),(234,701830800,5),(234,717555600,6),(234,733280400,5),(234,749005200,6),(234,764730000,5),(234,780454800,6),(234,796179600,5),(234,811904400,6),(234,828234000,5),(234,846378000,6),(234,859683600,5),(234,877827600,6),(234,891133200,5),(234,909277200,6),(234,922582800,5),(234,941331600,6),(234,954032400,5),(234,972781200,6),(234,985482000,5),(234,1004230800,6),(234,1017536400,5),(234,1035680400,6),(234,1048986000,5),(234,1067130000,6),(234,1080435600,5),(234,1099184400,6),(234,1111885200,5),(234,1130634000,6),(234,1143334800,5),(234,1162083600,6),(234,1174784400,5),(234,1193533200,6),(234,1206838800,5),(234,1224982800,6),(234,1238288400,5),(234,1256432400,6),(234,1269738000,5),(234,1288486800,6),(234,1301187600,5),(234,1319936400,6),(234,1332637200,5),(234,1351386000,6),(234,1364691600,5),(234,1382835600,6),(234,1396141200,5),(234,1414285200,6),(234,1427590800,5),(234,1445734800,6),(234,1459040400,5),(234,1477789200,6),(234,1490490000,5),(234,1509238800,6),(234,1521939600,5),(234,1540688400,6),(234,1553994000,5),(234,1572138000,6),(234,1585443600,5),(234,1603587600,6),(234,1616893200,5),(234,1635642000,6),(234,1648342800,5),(234,1667091600,6),(234,1679792400,5),(234,1698541200,6),(234,1711846800,5),(234,1729990800,6),(234,1743296400,5),(234,1761440400,6),(234,1774746000,5),(234,1792890000,6),(234,1806195600,5),(234,1824944400,6),(234,1837645200,5),(234,1856394000,6),(234,1869094800,5),(234,1887843600,6),(234,1901149200,5),(234,1919293200,6),(234,1932598800,5),(234,1950742800,6),(234,1964048400,5),(234,1982797200,6),(234,1995498000,5),(234,2014246800,6),(234,2026947600,5),(234,2045696400,6),(234,2058397200,5),(234,2077146000,6),(234,2090451600,5),(234,2108595600,6),(234,2121901200,5),(234,2140045200,6),(235,-2147483648,0),(235,-719636812,1),(235,2147483647,1),(236,-2147483648,0),(236,-1441170468,1),(236,-1247547600,3),(236,354909600,2),(236,370717200,3),(236,386445600,2),(236,402253200,3),(236,417981600,2),(236,433789200,3),(236,449604000,2),(236,465336000,4),(236,481060800,5),(236,496785600,4),(236,512510400,5),(236,528235200,4),(236,543960000,5),(236,559684800,4),(236,575409600,5),(236,591134400,4),(236,606859200,5),(236,622584000,4),(236,638308800,5),(236,654638400,4),(236,670363200,6),(236,686091600,7),(236,695768400,4),(236,701812800,5),(236,717537600,4),(236,733262400,5),(236,748987200,4),(236,764712000,5),(236,780436800,4),(236,796161600,5),(236,811886400,4),(236,828216000,5),(236,846360000,4),(236,859665600,5),(236,877809600,4),(236,891115200,5),(236,909259200,4),(236,922564800,5),(236,941313600,4),(236,954014400,5),(236,972763200,4),(236,985464000,5),(236,1004212800,4),(236,1017518400,5),(236,1035662400,4),(236,1048968000,5),(236,1067112000,4),(236,1080417600,5),(236,1099166400,4),(236,2147483647,4),(237,-2147483648,0),(237,-1230776624,2),(237,108165600,1),(237,118270800,2),(237,136591200,1),(237,149806800,2),(237,168127200,1),(237,181342800,2),(237,199749600,1),(237,215643600,2),(237,231285600,1),(237,244501200,2),(237,262735200,1),(237,275950800,2),(237,481154400,1),(237,496962000,2),(237,512949600,1),(237,528670800,2),(237,544399200,1),(237,560120400,2),(237,575848800,1),(237,592174800,2),(237,610581600,1),(237,623624400,2),(237,641167200,1),(237,655074000,2),(237,671839200,1),(237,685918800,2),(237,702856800,1),(237,717973200,2),(237,733701600,1),(237,749422800,2),(237,765151200,1),(237,779662800,2),(237,797205600,1),(237,811116000,3),(237,828655200,1),(237,843170400,3),(237,860104800,1),(237,874620000,3),(237,891554400,1),(237,906069600,3),(237,930780000,4),(237,938124000,3),(237,954367200,4),(237,970178400,3),(237,985816800,4),(237,1001628000,3),(237,1017352800,1),(237,1033077600,3),(237,1048802400,1),(237,1066946400,3),(237,1080252000,1),(237,1097791200,3),(237,1112306400,1),(237,1128031200,3),(237,1143756000,1),(237,1161900000,3),(237,1175205600,1),(237,1193349600,3),(237,1206655200,1),(237,1225404000,3),(237,1238104800,1),(237,1256853600,3),(237,1269554400,1),(237,1288303200,3),(237,1301608800,1),(237,1319752800,3),(237,1333058400,1),(237,1387486800,2),(237,1395957600,1),(237,1414706400,3),(237,1427407200,1),(237,1446156000,3),(237,1459461600,1),(237,1477605600,3),(237,1490911200,1),(237,1509055200,3),(237,1522360800,1),(237,1540504800,3),(237,1553810400,1),(237,1571954400,3),(237,1585260000,1),(237,1604008800,3),(237,1616709600,1),(237,1635458400,3),(237,1648764000,1),(237,1666908000,3),(237,1680213600,1),(237,1698357600,3),(237,1711663200,1),(237,1729807200,3),(237,1743112800,1),(237,1761861600,3),(237,1774562400,1),(237,1793311200,3),(237,1806012000,1),(237,1824760800,3),(237,1838066400,1),(237,1856210400,3),(237,1869516000,1),(237,1887660000,3),(237,1900965600,1),(237,1919109600,3),(237,1932415200,1),(237,1951164000,3),(237,1963864800,1),(237,1982613600,3),(237,1995919200,1),(237,2014063200,3),(237,2027368800,1),(237,2045512800,3),(237,2058818400,1),(237,2076962400,3),(237,2090268000,1),(237,2109016800,3),(237,2121717600,1),(237,2140466400,3),(238,-2147483648,0),(238,-1441194596,1),(238,-1247572800,3),(238,354884400,2),(238,370692000,3),(238,386420400,4),(238,402231600,1),(238,417960000,4),(238,433767600,1),(238,449582400,4),(238,465314400,5),(238,481039200,6),(238,496764000,5),(238,512488800,6),(238,528213600,5),(238,543938400,6),(238,559663200,5),(238,575388000,6),(238,591112800,5),(238,606837600,6),(238,622562400,5),(238,638287200,6),(238,654616800,5),(238,670341600,7),(238,686070000,8),(238,695746800,5),(238,701791200,6),(238,717516000,5),(238,733240800,6),(238,748965600,5),(238,764690400,6),(238,780415200,5),(238,796140000,6),(238,811864800,5),(238,828194400,6),(238,846338400,5),(238,859644000,6),(238,877788000,5),(238,891093600,6),(238,909237600,5),(238,922543200,6),(238,941292000,5),(238,953992800,6),(238,972741600,5),(238,985442400,6),(238,1004191200,5),(238,1017496800,6),(238,1035640800,5),(238,1048946400,6),(238,1067090400,5),(238,1080396000,6),(238,1099144800,5),(238,1111845600,6),(238,1130594400,5),(238,1143295200,6),(238,1162044000,5),(238,1174744800,6),(238,1193493600,5),(238,1206799200,6),(238,1224943200,5),(238,1238248800,6),(238,1256392800,5),(238,1269698400,7),(238,1288450800,8),(238,1301151600,5),(238,2147483647,5),(239,-2147483648,0),(239,-1441164064,1),(239,-1247544000,2),(239,370724400,3),(239,386445600,4),(239,402256800,2),(239,417985200,4),(239,433792800,2),(239,449607600,4),(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,8),(239,796168800,7),(239,811893600,8),(239,828223200,7),(239,846367200,8),(239,859672800,7),(239,877816800,8),(239,891122400,7),(239,909266400,8),(239,922572000,7),(239,941320800,8),(239,954021600,7),(239,972770400,8),(239,985471200,7),(239,1004220000,8),(239,1017525600,7),(239,1035669600,8),(239,1048975200,7),(239,1067119200,8),(239,1080424800,7),(239,1099173600,5),(239,2147483647,5),(240,-2147483648,0),(240,-1441165720,1),(240,-1247544000,2),(240,354913200,3),(240,370720800,4),(240,386445600,3),(240,402256800,2),(240,417985200,3),(240,433792800,2),(240,449607600,3),(240,465339600,5),(240,481064400,6),(240,496789200,5),(240,512514000,6),(240,528238800,5),(240,543963600,6),(240,559688400,5),(240,575413200,6),(240,591138000,5),(240,606862800,6),(240,622587600,5),(240,638312400,6),(240,654642000,5),(240,670366800,7),(240,686095200,8),(240,695772000,5),(240,701816400,6),(240,717541200,5),(240,733266000,6),(240,748990800,5),(240,764715600,6),(240,780440400,5),(240,796165200,6),(240,811890000,5),(240,828219600,6),(240,846363600,5),(240,859669200,6),(240,877813200,5),(240,891118800,6),(240,909262800,5),(240,922568400,6),(240,941317200,5),(240,954018000,6),(240,972766800,5),(240,985467600,6),(240,1004216400,5),(240,1017522000,6),(240,1035666000,5),(240,1048971600,6),(240,1067115600,5),(240,1080421200,6),(240,1099170000,5),(240,2147483647,5),(241,-2147483648,0),(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),(241,2147483647,3),(242,-2147483648,0),(242,-1441166012,1),(242,-1247544000,3),(242,354913200,2),(242,370720800,3),(242,386449200,2),(242,402256800,3),(242,417985200,2),(242,433792800,3),(242,449607600,2),(242,465339600,4),(242,481064400,5),(242,496789200,4),(242,512514000,5),(242,528238800,4),(242,543963600,5),(242,559688400,4),(242,575413200,5),(242,591138000,4),(242,606862800,5),(242,622587600,4),(242,638312400,5),(242,654642000,4),(242,670366800,6),(242,686095200,7),(242,695772000,3),(242,2147483647,3),(243,-2147483648,0),(243,-1441164464,1),(243,-1247540400,2),(243,370724400,3),(243,386445600,4),(243,402256800,2),(243,417985200,4),(243,433792800,2),(243,449607600,4),(243,465339600,5),(243,481064400,6),(243,496789200,5),(243,512514000,6),(243,528238800,5),(243,543963600,6),(243,559688400,5),(243,575413200,6),(243,591138000,5),(243,606862800,6),(243,622587600,5),(243,638312400,6),(243,654642000,5),(243,670366800,7),(243,686095200,8),(243,695772000,5),(243,701816400,6),(243,717541200,5),(243,733266000,6),(243,748990800,5),(243,764715600,6),(243,780440400,5),(243,796165200,6),(243,811890000,5),(243,828219600,6),(243,846363600,5),(243,859669200,6),(243,877813200,5),(243,891118800,6),(243,909262800,5),(243,922568400,7),(243,941320800,8),(243,954021600,7),(243,972770400,8),(243,985471200,7),(243,1004220000,8),(243,1017525600,7),(243,1035669600,8),(243,1048975200,7),(243,1067119200,8),(243,1080424800,7),(243,1099173600,5),(243,2147483647,5),(244,-2147483648,1),(244,-1641005856,2),(244,389048400,3),(244,402264000,2),(244,417906000,3),(244,433800000,2),(244,449614800,3),(244,465422400,2),(244,481150800,3),(244,496792800,4),(244,512517600,5),(244,528242400,4),(244,543967200,5),(244,559692000,4),(244,575416800,5),(244,591141600,4),(244,606866400,5),(244,622591200,4),(244,638316000,5),(244,654645600,4),(244,670464000,5),(244,686275200,4),(244,702086400,5),(244,717897600,4),(244,733622400,5),(244,749433600,4),(244,765158400,5),(244,780969600,4),(244,796694400,5),(244,812505600,4),(244,828316800,5),(244,844128000,4),(244,859852800,5),(244,875664000,4),(244,891388800,5),(244,907200000,4),(244,922924800,5),(244,938736000,4),(244,954547200,5),(244,970358400,4),(244,986083200,5),(244,1001894400,4),(244,1017619200,5),(244,1033430400,4),(244,1049155200,5),(244,1064966400,4),(244,1080777600,5),(244,1096588800,4),(244,1112313600,5),(244,1128124800,4),(244,1143849600,5),(244,1159660800,4),(244,1175385600,5),(244,1191196800,4),(244,2147483647,4),(245,-2147483648,0),(245,-1577935568,1),(245,76190400,2),(245,2147483647,2),(246,-2147483648,0),(246,-1441163964,1),(246,-405140400,3),(246,354916800,2),(246,370724400,3),(246,386452800,2),(246,402260400,3),(246,417988800,2),(246,433796400,3),(246,449611200,2),(246,465343200,4),(246,481068000,5),(246,496792800,4),(246,512517600,5),(246,528242400,4),(246,543967200,5),(246,559692000,4),(246,575416800,5),(246,591141600,4),(246,606866400,5),(246,622591200,4),(246,638316000,5),(246,654645600,4),(246,670370400,6),(246,686098800,7),(246,701823600,6),(246,717548400,4),(246,820440000,3),(246,828234000,8),(246,846378000,9),(246,852062400,3),(246,859680000,2),(246,877824000,3),(246,891129600,2),(246,909273600,3),(246,922579200,2),(246,941328000,3),(246,954028800,2),(246,972777600,3),(246,985478400,2),(246,1004227200,3),(246,1017532800,2),(246,1035676800,3),(246,1048982400,2),(246,1067126400,3),(246,1080432000,2),(246,1099180800,3),(246,1111881600,2),(246,1130630400,3),(246,1143331200,2),(246,1162080000,3),(246,1174780800,2),(246,1193529600,3),(246,1206835200,2),(246,1224979200,3),(246,1238284800,2),(246,1256428800,3),(246,1269734400,2),(246,1288483200,3),(246,1301184000,2),(246,1319932800,3),(246,1332633600,2),(246,1351382400,3),(246,1364688000,2),(246,1382832000,3),(246,1396137600,2),(246,1414281600,3),(246,1427587200,2),(246,1445731200,3),(246,2147483647,3),(247,-2147483648,1),(247,-1570084924,2),(247,2147483647,2),(248,-2147483648,0),(248,-1579844100,1),(248,-1247551200,3),(248,354906000,2),(248,370713600,3),(248,386442000,2),(248,402249600,3),(248,417978000,2),(248,433785600,3),(248,449600400,2),(248,465332400,4),(248,481057200,5),(248,496782000,4),(248,512506800,5),(248,528231600,4),(248,543956400,5),(248,559681200,4),(248,575406000,5),(248,591130800,4),(248,606855600,5),(248,622580400,4),(248,638305200,5),(248,654634800,4),(248,670359600,6),(248,686088000,7),(248,695764800,4),(248,701809200,5),(248,717534000,4),(248,733258800,5),(248,748983600,4),(248,764708400,5),(248,780433200,4),(248,796158000,5),(248,801590400,8),(248,811886400,7),(248,828216000,6),(248,846360000,7),(248,859665600,6),(248,877809600,7),(248,891115200,6),(248,909259200,7),(248,922564800,6),(248,941313600,7),(248,954014400,6),(248,972763200,7),(248,985464000,6),(248,1004212800,7),(248,1017518400,6),(248,1035662400,7),(248,1048968000,6),(248,1067112000,7),(248,1080417600,6),(248,1099166400,7),(248,1111867200,6),(248,1130616000,7),(248,1143316800,6),(248,1162065600,7),(248,1174766400,6),(248,1193515200,7),(248,1206820800,6),(248,1224964800,7),(248,1238270400,6),(248,1256414400,7),(248,1269720000,6),(248,1288468800,7),(248,1301169600,4),(248,1414263600,7),(248,1459022400,4),(248,2147483647,4),(249,-2147483648,2),(249,-1570413600,1),(249,-1552186800,2),(249,-1538359200,1),(249,-1522551600,2),(249,-1507514400,1),(249,-1490583600,2),(249,-1473645600,1),(249,-1460948400,2),(249,-399866400,1),(249,-386650800,2),(249,-368330400,1),(249,-355114800,2),(249,-336794400,1),(249,-323578800,2),(249,-305172000,1),(249,-291956400,2),(249,-273636000,1),(249,-260420400,2),(249,78012000,1),(249,86734800,2),(249,105055200,1),(249,118270800,2),(249,136591200,1),(249,149806800,2),(249,168127200,1),(249,181342800,2),(249,199749600,1),(249,212965200,2),(249,231285600,1),(249,244501200,2),(249,262735200,1),(249,275950800,2),(249,452210400,1),(249,466722000,2),(249,483746400,1),(249,498258000,2),(249,515282400,1),(249,529794000,2),(249,546818400,1),(249,561330000,2),(249,581119200,1),(249,592952400,2),(249,610754400,1),(249,624488400,2),(249,641512800,1),(249,656024400,2),(249,673048800,1),(249,687560400,2),(249,704671200,1),(249,718146000,2),(249,733269600,1),(249,748990800,2),(249,764719200,1),(249,780440400,2),(249,796168800,1),(249,811890000,2),(249,828223200,1),(249,843944400,2),(249,859672800,1),(249,875394000,2),(249,891122400,1),(249,906843600,2),(249,922572000,1),(249,941317200,2),(249,954021600,1),(249,972766800,2),(249,985471200,1),(249,1004216400,2),(249,1017525600,1),(249,1035666000,2),(249,1048975200,1),(249,1067115600,2),(249,1080424800,1),(249,1099170000,2),(249,1111874400,1),(249,1130619600,2),(249,1143324000,1),(249,1162069200,2),(249,1174773600,1),(249,1193518800,2),(249,1206828000,1),(249,1224968400,2),(249,1238277600,1),(249,1256418000,2),(249,1269727200,1),(249,1288472400,2),(249,1301176800,1),(249,1319922000,2),(249,1332626400,1),(249,1351371600,2),(249,1364680800,1),(249,1382821200,2),(249,1396130400,1),(249,1414270800,2),(249,1427580000,1),(249,1445720400,2),(249,1459029600,1),(249,1477774800,2),(249,1490479200,1),(249,1509224400,2),(249,1521928800,1),(249,1540674000,2),(249,1553983200,1),(249,1572123600,2),(249,1585432800,1),(249,1603573200,2),(249,1616882400,1),(249,1635627600,2),(249,1648332000,1),(249,1667077200,2),(249,1679781600,1),(249,1698526800,2),(249,1711836000,1),(249,1729976400,2),(249,1743285600,1),(249,1761426000,2),(249,1774735200,1),(249,1792875600,2),(249,1806184800,1),(249,1824930000,2),(249,1837634400,1),(249,1856379600,2),(249,1869084000,1),(249,1887829200,2),(249,1901138400,1),(249,1919278800,2),(249,1932588000,1),(249,1950728400,2),(249,1964037600,1),(249,1982782800,2),(249,1995487200,1),(249,2014232400,2),(249,2026936800,1),(249,2045682000,2),(249,2058386400,1),(249,2077131600,2),(249,2090440800,1),(249,2108581200,2),(249,2121890400,1),(249,2140030800,2),(250,-2147483648,0),(250,-1441169904,1),(250,-1247547600,3),(250,354909600,2),(250,370717200,3),(250,386445600,2),(250,402253200,3),(250,417981600,2),(250,433789200,3),(250,449604000,2),(250,465336000,4),(250,481060800,5),(250,496785600,4),(250,512510400,5),(250,528235200,4),(250,543960000,5),(250,559684800,4),(250,575409600,5),(250,591134400,4),(250,606859200,5),(250,622584000,4),(250,638308800,5),(250,654638400,4),(250,670363200,6),(250,683582400,1),(250,703018800,6),(250,717530400,1),(250,734468400,6),(250,748980000,1),(250,765918000,6),(250,780429600,1),(250,797367600,6),(250,811879200,1),(250,828817200,6),(250,843933600,1),(250,859671000,8),(250,877811400,1),(250,891120600,8),(250,909261000,1),(250,922570200,8),(250,941315400,1),(250,954019800,8),(250,972765000,1),(250,985469400,8),(250,1004214600,1),(250,1017523800,8),(250,1035664200,1),(250,1048973400,8),(250,1067113800,1),(250,1080423000,8),(250,1099168200,1),(250,1111872600,8),(250,1123783200,3),(250,2147483647,3),(251,-2147483648,0),(251,-1383464380,1),(251,-1167636600,2),(251,2147483647,2),(252,-2147483648,1),(252,-2019705670,2),(252,-891581400,3),(252,-872058600,2),(252,-862637400,3),(252,-764145000,2),(253,-2147483648,0),(253,-1579419232,1),(253,-1247558400,3),(253,354898800,2),(253,370706400,3),(253,386434800,2),(253,402242400,3),(253,417970800,2),(253,433778400,3),(253,449593200,2),(253,465325200,4),(253,481050000,5),(253,496774800,4),(253,512499600,5),(253,528224400,4),(253,543949200,5),(253,559674000,4),(253,575398800,5),(253,591123600,4),(253,606848400,5),(253,622573200,4),(253,638298000,5),(253,654627600,4),(253,670352400,6),(253,686080800,7),(253,695757600,4),(253,701802000,5),(253,717526800,4),(253,733251600,5),(253,748976400,4),(253,764701200,5),(253,780426000,4),(253,796150800,5),(253,811875600,4),(253,828205200,5),(253,846349200,4),(253,859654800,5),(253,877798800,4),(253,891104400,5),(253,909248400,4),(253,922554000,5),(253,941302800,4),(253,954003600,5),(253,972752400,4),(253,985453200,5),(253,1004202000,4),(253,1017507600,5),(253,1035651600,4),(253,1048957200,5),(253,1067101200,4),(253,1080406800,5),(253,1099155600,4),(253,1111856400,5),(253,1130605200,4),(253,1143306000,5),(253,1162054800,4),(253,1174755600,5),(253,1193504400,4),(253,1206810000,5),(253,1224954000,4),(253,1238259600,5),(253,1256403600,4),(253,1269709200,5),(253,1288458000,4),(253,1301158800,8),(253,1414252800,7),(253,1459015200,3),(253,2147483647,3),(254,-2147483648,0),(254,-2032933080,1),(254,252435600,2),(254,417974400,4),(254,433778400,3),(254,449593200,4),(254,465314400,3),(254,481042800,4),(254,496764000,3),(254,512492400,4),(254,528213600,3),(254,543942000,4),(254,559663200,3),(254,575391600,4),(254,591112800,3),(254,606841200,4),(254,622562400,3),(254,638290800,4),(254,654616800,3),(254,670345200,4),(254,686066400,3),(254,701794800,4),(254,717516000,3),(254,733244400,4),(254,748965600,3),(254,764694000,4),(254,780415200,3),(254,796143600,4),(254,811864800,3),(254,828198000,4),(254,843919200,3),(254,859647600,4),(254,875368800,3),(254,891097200,4),(254,906818400,3),(254,988390800,4),(254,1001692800,3),(254,1017421200,4),(254,1033142400,3),(254,1048870800,4),(254,1064592000,3),(254,1080320400,4),(254,1096041600,3),(254,1111770000,4),(254,1127491200,3),(254,1143219600,4),(254,1159545600,3),(254,1206889200,2),(254,1427479200,5),(254,1443193200,2),(254,1458928800,5),(254,1474642800,2),(254,2147483647,2),(255,-2147483648,2),(255,-1600675200,1),(255,-1585904400,2),(255,-933667200,1),(255,-922093200,2),(255,-908870400,1),(255,-888829200,2),(255,-881049600,1),(255,-767869200,2),(255,-745833600,1),(255,-733827600,2),(255,-716889600,1),(255,-699613200,2),(255,-683884800,1),(255,-670669200,2),(255,-652348800,1),(255,-650019600,2),(255,515527200,1),(255,527014800,2),(255,545162400,1),(255,558464400,2),(255,577216800,1),(255,589914000,2),(255,608666400,1),(255,621968400,2),(255,640116000,1),(255,653418000,2),(255,671565600,1),(255,684867600,2),(256,-2147483648,2),(256,-1600675200,1),(256,-1585904400,2),(256,-933667200,1),(256,-922093200,2),(256,-908870400,1),(256,-888829200,2),(256,-881049600,1),(256,-767869200,2),(256,-745833600,1),(256,-733827600,2),(256,-716889600,1),(256,-699613200,2),(256,-683884800,1),(256,-670669200,2),(256,-652348800,1),(256,-650019600,2),(256,515527200,1),(256,527014800,2),(256,545162400,1),(256,558464400,2),(256,577216800,1),(256,589914000,2),(256,608666400,1),(256,621968400,2),(256,640116000,1),(256,653418000,2),(256,671565600,1),(256,684867600,2),(257,-2147483648,1),(257,-2019705572,2),(257,-883287000,3),(257,-862639200,4),(257,-764051400,2),(257,832962600,5),(257,846266400,6),(257,1145039400,2),(257,2147483647,2),(258,-2147483648,1),(258,-891582800,2),(258,-872058600,3),(258,-862637400,2),(258,-576138600,4),(258,1245430800,5),(258,1262278800,4),(258,2147483647,4),(259,-2147483648,0),(259,-1577931912,2),(259,-1568592000,1),(259,-1554080400,2),(259,-1537142400,1),(259,-1522630800,2),(259,-1505692800,1),(259,-1491181200,2),(259,-1474243200,1),(259,-1459126800,2),(259,-242265600,1),(259,-228877200,2),(259,-210556800,1),(259,-197427600,2),(259,-178934400,1),(259,-165718800,2),(259,-147398400,1),(259,-134269200,2),(259,-116467200,1),(259,-102646800,2),(259,-84326400,1),(259,-71110800,2),(259,-52704000,1),(259,-39488400,2),(259,-21168000,1),(259,-7952400,2),(259,10368000,1),(259,23583600,2),(259,41904000,1),(259,55119600,2),(259,73526400,1),(259,86742000,2),(259,105062400,1),(259,118278000,2),(259,136598400,1),(259,149814000,2),(259,168134400,1),(259,181350000,2),(259,199756800,1),(259,212972400,2),(259,231292800,1),(259,241916400,2),(259,262828800,1),(259,273452400,2),(259,418694400,1),(259,433810800,2),(259,450316800,1),(259,465433200,2),(259,508896000,1),(259,529196400,2),(259,541555200,1),(259,562633200,2),(259,574387200,1),(259,594255600,2),(259,607305600,1),(259,623199600,2),(259,638928000,1),(259,654649200,2),(259,670456800,1),(259,686264400,2),(259,702684000,1),(259,717886800,2),(259,733096800,1),(259,748904400,2),(259,765151200,1),(259,780958800,2),(259,796687200,1),(259,812494800,2),(259,828309600,1),(259,844117200,2),(259,859759200,1),(259,875653200,2),(259,891208800,1),(259,907189200,2),(259,922917600,1),(259,938725200,2),(259,954540000,1),(259,970347600,2),(259,986076000,1),(259,1001883600,2),(259,1017612000,1),(259,1033419600,2),(259,1049148000,1),(259,1064955600,2),(259,1080770400,1),(259,1096578000,2),(259,1112306400,1),(259,1128114000,2),(259,1143842400,1),(259,1158872400,2),(259,1175205600,1),(259,1193950800,2),(259,1207260000,1),(259,1225486800,2),(259,1238104800,1),(259,1256850000,2),(259,1270159200,1),(259,1288299600,2),(259,1301608800,1),(259,1319749200,2),(259,1333058400,1),(259,1351198800,2),(259,1364508000,1),(259,1382648400,2),(259,1395957600,1),(259,1414702800,2),(259,1427407200,1),(259,1446152400,2),(259,1458856800,1),(259,1477602000,2),(259,1490911200,1),(259,1509051600,2),(259,1522360800,1),(259,1540501200,2),(259,1553810400,1),(259,1571950800,2),(259,1585260000,1),(259,1604005200,2),(259,1616709600,1),(259,1635454800,2),(259,1648159200,1),(259,1666904400,2),(259,1680213600,1),(259,1698354000,2),(259,1711663200,1),(259,1729803600,2),(259,1743112800,1),(259,1761858000,2),(259,1774562400,1),(259,1793307600,2),(259,1806012000,1),(259,1824757200,2),(259,1838066400,1),(259,1856206800,2),(259,1869516000,1),(259,1887656400,2),(259,1900965600,1),(259,1919106000,2),(259,1932415200,1),(259,1951160400,2),(259,1963864800,1),(259,1982610000,2),(259,1995314400,1),(259,2014059600,2),(259,2027368800,1),(259,2045509200,2),(259,2058818400,1),(259,2076958800,2),(259,2090268000,1),(259,2109013200,2),(259,2121717600,1),(259,2140462800,2),(260,-2147483648,1),(260,-891582800,2),(260,-872058600,3),(260,-862637400,2),(260,-576138600,4),(260,1245430800,5),(260,1262278800,4),(260,2147483647,4),(261,-2147483648,0),(261,-1830414140,1),(261,-879152400,2),(261,199897200,1),(261,969120000,2),(261,2147483647,2),(262,-2147483648,0),(262,-1577936472,1),(262,2147483647,1),(263,-2147483648,0),(263,-1441168512,1),(263,-1247547600,3),(263,354909600,2),(263,370717200,3),(263,386445600,2),(263,402253200,3),(263,417981600,2),(263,433789200,3),(263,449604000,2),(263,465336000,4),(263,481060800,5),(263,496785600,4),(263,512510400,5),(263,528235200,4),(263,543960000,5),(263,559684800,4),(263,575409600,5),(263,591134400,4),(263,606859200,5),(263,622584000,4),(263,638308800,5),(263,654638400,4),(263,670363200,6),(263,684363600,7),(263,2147483647,7),(264,-2147483648,0),(264,-1518920148,2),(264,166572000,1),(264,182293200,2),(264,200959200,1),(264,213829200,2),(264,228866400,1),(264,243982800,2),(264,260316000,1),(264,276123600,2),(264,291765600,1),(264,307486800,2),(264,323820000,1),(264,338936400,2),(264,354664800,1),(264,370386000,2),(264,386114400,1),(264,401835600,2),(264,417564000,1),(264,433285200,2),(264,449013600,1),(264,465339600,2),(264,481068000,1),(264,496789200,2),(264,512517600,1),(264,528238800,2),(264,543967200,1),(264,559688400,2),(264,575416800,1),(264,591138000,2),(264,606866400,1),(264,622587600,2),(264,638316000,1),(264,654642000,2),(264,670370400,1),(264,686091600,2),(264,701820000,1),(264,717541200,2),(264,733269600,1),(264,748990800,2),(264,764719200,1),(264,780440400,2),(264,796168800,1),(264,811890000,2),(264,828223200,1),(264,843944400,2),(264,859672800,1),(264,875394000,2),(264,891122400,1),(264,909277200,3),(264,922582800,4),(264,941331600,3),(264,954032400,4),(264,972781200,3),(264,985482000,4),(264,1004230800,3),(264,1017536400,4),(264,1035680400,3),(264,1048986000,4),(264,1067130000,3),(264,1080435600,4),(264,1099184400,3),(264,1111885200,4),(264,1130634000,3),(264,1143334800,4),(264,1162083600,3),(264,1174784400,4),(264,1193533200,3),(264,1206838800,4),(264,1224982800,3),(264,1238288400,4),(264,1256432400,3),(264,1269738000,4),(264,1288486800,3),(264,1301187600,4),(264,1319936400,3),(264,1332637200,4),(264,1351386000,3),(264,1364691600,4),(264,1382835600,3),(264,1396141200,4),(264,1414285200,3),(264,1427590800,4),(264,1445734800,3),(264,1459040400,4),(264,1473282000,5),(264,1509238800,3),(264,1521939600,4),(264,1540688400,3),(264,1553994000,4),(264,1572138000,3),(264,1585443600,4),(264,1603587600,3),(264,1616893200,4),(264,1635642000,3),(264,1648342800,4),(264,1667091600,3),(264,1679792400,4),(264,1698541200,3),(264,1711846800,4),(264,1729990800,3),(264,1743296400,4),(264,1761440400,3),(264,1774746000,4),(264,1792890000,3),(264,1806195600,4),(264,1824944400,3),(264,1837645200,4),(264,1856394000,3),(264,1869094800,4),(264,1887843600,3),(264,1901149200,4),(264,1919293200,3),(264,1932598800,4),(264,1950742800,3),(264,1964048400,4),(264,1982797200,3),(264,1995498000,4),(264,2014246800,3),(264,2026947600,4),(264,2045696400,3),(264,2058397200,4),(264,2077146000,3),(264,2090451600,4),(264,2108595600,3),(264,2121901200,4),(264,2140045200,3),(265,-2147483648,3),(265,-933638400,1),(265,-923097600,2),(265,-919036800,1),(265,-857347200,2),(265,-844300800,1),(265,-825811200,2),(265,-812678400,1),(265,-794188800,2),(265,-779846400,1),(265,-762652800,2),(265,-748310400,1),(265,-731116800,2),(265,-682653600,3),(265,-399088800,4),(265,-386650800,3),(265,-368330400,4),(265,-355114800,3),(265,-336790800,4),(265,-323654400,3),(265,-305168400,4),(265,-292032000,3),(265,-273632400,4),(265,-260496000,3),(265,-242096400,4),(265,-228960000,3),(265,-210560400,4),(265,-197424000,3),(265,-178938000,4),(265,-165801600,3),(265,-147402000,4),(265,-134265600,3),(265,-115866000,4),(265,-102643200,3),(265,-84330000,4),(265,-81313200,6),(265,142380000,5),(265,150843600,6),(265,167176800,5),(265,178664400,6),(265,334101600,7),(265,337730400,8),(265,452642400,7),(265,462319200,8),(265,482277600,5),(265,494370000,6),(265,516751200,5),(265,526424400,6),(265,545436000,5),(265,558478800,6),(265,576626400,5),(265,589323600,6),(265,609890400,5),(265,620773200,6),(265,638316000,5),(265,651618000,6),(265,669765600,5),(265,683672400,6),(265,701820000,5),(265,715726800,6),(265,733701600,5),(265,747176400,6),(265,765151200,5),(265,778021200,6),(265,796600800,5),(265,810075600,6),(265,820447200,3),(265,828655200,4),(265,843170400,9),(265,860104800,4),(265,874620000,9),(265,891554400,4),(265,906069600,9),(265,915141600,3),(265,924213600,4),(265,939934800,3),(265,956268000,4),(265,971989200,3),(265,987717600,4),(265,1003438800,3),(265,1019167200,4),(265,1034888400,3),(265,1050616800,4),(265,1066338000,3),(265,1082066400,4),(265,1096581600,3),(265,1113516000,4),(265,1128380400,3),(265,1143842400,4),(265,1158872400,3),(265,1175378400,4),(265,1189638000,3),(265,1206655200,4),(265,1219957200,3),(265,1238104800,4),(265,1252015200,3),(265,1269640860,4),(265,1281474000,3),(265,1301608860,4),(265,1312146000,3),(265,1333058400,4),(265,1348178400,3),(265,1364508000,4),(265,1380229200,3),(265,1395957600,4),(265,1414098000,3),(265,1427493600,4),(265,1445551200,3),(265,1458946800,4),(265,1477692000,3),(265,1490396400,4),(265,1509141600,3),(265,1521846000,4),(265,1540591200,3),(265,1553810400,4),(265,1572037200,3),(265,1585346400,4),(265,1603490400,3),(265,1616796000,4),(265,1635544800,3),(265,1648245600,4),(265,1666994400,3),(265,1679695200,4),(265,1698444000,3),(265,1711749600,4),(265,1729893600,3),(265,1743199200,4),(265,1761343200,3),(265,1774648800,4),(265,1792792800,3),(265,1806098400,4),(265,1824847200,3),(265,1837548000,4),(265,1856296800,3),(265,1868997600,4),(265,1887746400,3),(265,1901052000,4),(265,1919196000,3),(265,1932501600,4),(265,1950645600,3),(265,1963951200,4),(265,1982700000,3),(265,1995400800,4),(265,2014149600,3),(265,2026850400,4),(265,2045599200,3),(265,2058300000,4),(265,2077048800,3),(265,2090354400,4),(265,2108498400,3),(265,2121804000,4),(265,2139948000,3),(266,-2147483648,2),(266,-1600675200,1),(266,-1585904400,2),(266,-933667200,1),(266,-922093200,2),(266,-908870400,1),(266,-888829200,2),(266,-881049600,1),(266,-767869200,2),(266,-745833600,1),(266,-733827600,2),(266,-716889600,1),(266,-699613200,2),(266,-683884800,1),(266,-670669200,2),(266,-652348800,1),(266,-650019600,2),(266,515527200,1),(266,527014800,2),(266,545162400,1),(266,558464400,2),(266,577216800,1),(266,589914000,2),(266,608666400,1),(266,621968400,2),(266,640116000,1),(266,653418000,2),(266,671565600,1),(266,684867600,2),(267,-2147483648,3),(267,-933638400,1),(267,-923097600,2),(267,-919036800,1),(267,-857347200,2),(267,-844300800,1),(267,-825811200,2),(267,-812678400,1),(267,-794188800,2),(267,-779846400,1),(267,-762652800,2),(267,-748310400,1),(267,-731116800,2),(267,-682653600,3),(267,-399088800,4),(267,-386650800,3),(267,-368330400,4),(267,-355114800,3),(267,-336790800,4),(267,-323654400,3),(267,-305168400,4),(267,-292032000,3),(267,-273632400,4),(267,-260496000,3),(267,-242096400,4),(267,-228960000,3),(267,-210560400,4),(267,-197424000,3),(267,-178938000,4),(267,-165801600,3),(267,-147402000,4),(267,-134265600,3),(267,-115866000,4),(267,-102643200,3),(267,-84330000,4),(267,-81313200,6),(267,142380000,5),(267,150843600,6),(267,167176800,5),(267,178664400,6),(267,334101600,7),(267,337730400,8),(267,452642400,7),(267,462319200,8),(267,482277600,5),(267,494370000,6),(267,516751200,5),(267,526424400,6),(267,545436000,5),(267,558478800,6),(267,576626400,5),(267,589323600,6),(267,609890400,5),(267,620773200,6),(267,638316000,5),(267,651618000,6),(267,669765600,5),(267,683672400,6),(267,701820000,5),(267,715726800,6),(267,733701600,5),(267,747176400,6),(267,765151200,5),(267,778021200,6),(267,796600800,5),(267,810075600,6),(267,820447200,3),(267,828655200,4),(267,843170400,9),(267,860104800,4),(267,874620000,9),(267,891554400,4),(267,906069600,9),(267,915141600,3),(267,924213600,4),(267,939934800,3),(267,956268000,4),(267,971989200,3),(267,987717600,4),(267,1003438800,3),(267,1019167200,4),(267,1034888400,3),(267,1050616800,4),(267,1066338000,3),(267,1082066400,4),(267,1096581600,3),(267,1113516000,4),(267,1128380400,3),(267,1143842400,4),(267,1158872400,3),(267,1175378400,4),(267,1189638000,3),(267,1206655200,4),(267,1220216400,3),(267,1238104800,4),(267,1252015200,3),(267,1269554400,4),(267,1281474000,3),(267,1301608860,4),(267,1312146000,3),(267,1314655200,4),(267,1317330000,3),(267,1333058400,4),(267,1348178400,3),(267,1364508000,4),(267,1380229200,3),(267,1395957600,4),(267,1414098000,3),(267,1427493600,4),(267,1445551200,3),(267,1458946800,4),(267,1477692000,3),(267,1490396400,4),(267,1509141600,3),(267,1521846000,4),(267,1540591200,3),(267,1553810400,4),(267,1572037200,3),(267,1585346400,4),(267,1603490400,3),(267,1616796000,4),(267,1635544800,3),(267,1648245600,4),(267,1666994400,3),(267,1679695200,4),(267,1698444000,3),(267,1711749600,4),(267,1729893600,3),(267,1743199200,4),(267,1761343200,3),(267,1774648800,4),(267,1792792800,3),(267,1806098400,4),(267,1824847200,3),(267,1837548000,4),(267,1856296800,3),(267,1868997600,4),(267,1887746400,3),(267,1901052000,4),(267,1919196000,3),(267,1932501600,4),(267,1950645600,3),(267,1963951200,4),(267,1982700000,3),(267,1995400800,4),(267,2014149600,3),(267,2026850400,4),(267,2045599200,3),(267,2058300000,4),(267,2077048800,3),(267,2090354400,4),(267,2108498400,3),(267,2121804000,4),(267,2139948000,3),(268,-2147483648,0),(268,-2004073600,1),(268,-1851577590,2),(268,-852105600,3),(268,-782643600,4),(268,-767869200,2),(268,-718095600,3),(268,-457776000,2),(268,-315648000,3),(268,171820800,2),(268,2147483647,2),(269,-2147483648,0),(269,-2056690800,1),(269,-900910800,2),(269,-891579600,3),(269,-884248200,4),(269,-761209200,1),(269,-747907200,2),(269,-728541000,5),(269,-717049800,6),(269,-697091400,5),(269,-683785800,6),(269,-668061000,5),(269,-654755400,2),(269,-636611400,5),(269,-623305800,2),(269,-605161800,5),(269,-591856200,2),(269,-573712200,5),(269,-559801800,2),(269,-541657800,5),(269,-528352200,2),(269,-510211800,1),(269,-498112200,2),(269,-478762200,1),(269,-466662600,2),(269,-446707800,1),(269,-435213000,2),(269,-415258200,1),(269,-403158600,2),(269,-383808600,1),(269,-371709000,2),(269,-352359000,1),(269,-340259400,2),(269,-320909400,1),(269,-308809800,2),(269,-288855000,1),(269,-277360200,2),(269,-257405400,1),(269,-245910600,2),(269,-225955800,1),(269,-213856200,2),(269,-194506200,1),(269,-182406600,2),(269,-163056600,1),(269,-148537800,2),(269,-132816600,1),(269,-117088200,2),(269,-101367000,1),(269,-85638600,2),(269,-69312600,1),(269,-53584200,2),(269,-37863000,1),(269,-22134600,2),(269,-6413400,1),(269,9315000,2),(269,25036200,1),(269,40764600,2),(269,56485800,1),(269,72214200,2),(269,88540200,1),(269,104268600,2),(269,119989800,1),(269,126041400,2),(269,151439400,1),(269,167167800,2),(269,182889000,1),(269,198617400,2),(269,214338600,1),(269,295385400,2),(269,309292200,1),(270,-2147483648,0),(270,-2032927596,1),(270,252439200,3),(270,417978000,2),(270,433785600,3),(270,449600400,2),(270,465321600,3),(270,481050000,2),(270,496771200,3),(270,512499600,2),(270,528220800,3),(270,543949200,2),(270,559670400,3),(270,575398800,2),(270,591120000,3),(270,606848400,2),(270,622569600,3),(270,638298000,2),(270,654624000,3),(270,670352400,2),(270,686073600,3),(270,701802000,2),(270,717523200,3),(270,733251600,2),(270,748972800,3),(270,764701200,2),(270,780422400,3),(270,796150800,2),(270,811872000,3),(270,828205200,2),(270,843926400,3),(270,859654800,2),(270,875376000,3),(270,891104400,2),(270,906825600,3),(270,988398000,2),(270,1001700000,3),(270,1017428400,2),(270,1033149600,3),(270,1048878000,2),(270,1064599200,3),(270,1080327600,2),(270,1096048800,3),(270,1111777200,2),(270,1127498400,3),(270,1143226800,2),(270,1159552800,3),(270,1427482800,2),(270,1443196800,3),(270,1458932400,2),(270,1474646400,3),(270,2147483647,3),(271,-2147483648,1),(271,-1575874625,2),(271,-1247554800,4),(271,354902400,3),(271,370710000,4),(271,386438400,3),(271,402246000,4),(271,417974400,3),(271,433782000,4),(271,449596800,3),(271,465328800,5),(271,481053600,6),(271,496778400,5),(271,512503200,6),(271,528228000,5),(271,543952800,6),(271,559677600,5),(271,575402400,6),(271,591127200,5),(271,606852000,6),(271,622576800,5),(271,638301600,6),(271,654631200,5),(271,670356000,7),(271,686084400,8),(271,695761200,5),(271,701805600,6),(271,717530400,5),(271,733255200,6),(271,748980000,5),(271,764704800,6),(271,780429600,5),(271,796154400,6),(271,811879200,5),(271,828208800,6),(271,846352800,5),(271,859658400,6),(271,877802400,5),(271,891108000,6),(271,909252000,5),(271,922557600,6),(271,941306400,5),(271,954007200,6),(271,972756000,5),(271,985456800,6),(271,1004205600,5),(271,1017511200,6),(271,1035655200,5),(271,1048960800,6),(271,1067104800,5),(271,1080410400,6),(271,1099159200,5),(271,1111860000,6),(271,1130608800,5),(271,1143309600,6),(271,1162058400,5),(271,1174759200,6),(271,1193508000,5),(271,1206813600,6),(271,1224957600,5),(271,1238263200,6),(271,1256407200,5),(271,1269712800,6),(271,1288461600,5),(271,1301162400,9),(271,1414256400,5),(271,2147483647,5),(272,-2147483648,1),(272,-1869875816,3),(272,-1693706400,2),(272,-1680490800,3),(272,-1570413600,2),(272,-1552186800,3),(272,-1538359200,2),(272,-1522551600,3),(272,-1507514400,2),(272,-1490583600,3),(272,-1440208800,2),(272,-1428030000,3),(272,-1409709600,2),(272,-1396494000,3),(272,-931053600,2),(272,-922676400,3),(272,-917834400,2),(272,-892436400,3),(272,-875844000,2),(272,-764737200,3),(272,-744343200,2),(272,-733806000,3),(272,-716436000,2),(272,-701924400,3),(272,-684986400,2),(272,-670474800,3),(272,-654141600,2),(272,-639025200,3),(272,-622087200,2),(272,-606970800,3),(272,-590032800,2),(272,-575521200,3),(272,-235620000,2),(272,-194842800,3),(272,-177732000,2),(272,-165726000,3),(272,107910000,2),(272,121215600,3),(272,133920000,2),(272,152665200,3),(272,164678400,2),(272,184114800,3),(272,196214400,2),(272,215564400,3),(272,228873600,2),(272,245804400,3),(272,260323200,2),(272,267915600,4),(272,428454000,5),(272,433893600,4),(272,468111600,3),(272,482799600,6),(272,496710000,7),(272,512521200,6),(272,528246000,7),(272,543970800,6),(272,559695600,7),(272,575420400,6),(272,591145200,7),(272,606870000,6),(272,622594800,7),(272,638319600,6),(272,654649200,7),(272,670374000,6),(272,686098800,7),(272,701823600,6),(272,717548400,7),(272,733273200,6),(272,748998000,7),(272,764118000,6),(272,780447600,7),(272,796172400,6),(272,811897200,7),(272,828226800,6),(272,846370800,7),(272,859676400,6),(272,877820400,7),(272,891126000,6),(272,909270000,7),(272,922575600,6),(272,941324400,7),(272,954025200,6),(272,972774000,7),(272,985474800,6),(272,1004223600,7),(272,1017529200,6),(272,1035673200,7),(272,1048978800,6),(272,1067122800,7),(272,1080428400,6),(272,1099177200,7),(272,1111878000,6),(272,1130626800,7),(272,1143327600,6),(272,1162076400,7),(272,1167602400,3),(272,1174784400,8),(272,1193533200,9),(272,1206838800,8),(272,1224982800,9),(272,1238288400,8),(272,1256432400,9),(272,1269738000,8),(272,1288486800,9),(272,1301274000,8),(272,1319936400,9),(272,1332637200,8),(272,1351386000,9),(272,1364691600,8),(272,1382835600,9),(272,1396227600,8),(272,1414285200,9),(272,1427590800,8),(272,1446944400,9),(272,1459040400,8),(272,1473195600,4),(272,2147483647,4),(273,-2147483648,1),(273,-1451719200,2),(273,-1172906400,3),(273,-876641400,4),(273,-766054800,3),(273,-683883000,5),(273,-620812800,3),(273,-189415800,6),(274,-2147483648,0),(274,-1172913768,1),(274,-799491600,2),(274,-189423000,3),(275,-2147483648,1),(275,-1641003640,6),(275,-933638400,2),(275,-923097600,3),(275,-919036800,2),(275,-857347200,3),(275,-844300800,2),(275,-825811200,3),(275,-812678400,2),(275,-794188800,3),(275,-779846400,2),(275,-762652800,3),(275,-748310400,2),(275,-731116800,3),(275,-681955200,4),(275,-673228800,2),(275,-667958400,3),(275,-652320000,2),(275,-636422400,3),(275,-622080000,2),(275,-608947200,3),(275,-591840000,2),(275,-572486400,3),(275,-558576000,2),(275,-542851200,3),(275,-527731200,2),(275,-514425600,3),(275,-490838400,2),(275,-482976000,3),(275,-459388800,2),(275,-451526400,3),(275,-428544000,2),(275,-418262400,3),(275,-400118400,2),(275,-387417600,3),(275,142380000,5),(275,150843600,6),(275,167176800,5),(275,178664400,6),(275,334101600,7),(275,337730400,8),(275,452642400,7),(275,462319200,8),(275,482277600,5),(275,494370000,6),(275,516751200,5),(275,526424400,6),(275,545436000,5),(275,558478800,6),(275,576626400,5),(275,589323600,6),(275,609890400,5),(275,620773200,6),(275,638316000,5),(275,651618000,6),(275,669765600,5),(275,683672400,6),(275,701820000,5),(275,715726800,6),(275,733701600,5),(275,747176400,6),(275,765151200,5),(275,778021200,6),(275,796600800,5),(275,810075600,6),(275,826840800,5),(275,842821200,6),(275,858895200,5),(275,874184400,6),(275,890344800,5),(275,905029200,6),(275,923011200,5),(275,936313200,6),(275,955670400,5),(275,970783200,6),(275,986770800,5),(275,1001282400,6),(275,1017356400,5),(275,1033941600,6),(275,1048806000,5),(275,1065132000,6),(275,1081292400,5),(275,1095804000,6),(275,1112313600,5),(275,1128812400,6),(275,1143763200,5),(275,1159657200,6),(275,1175212800,5),(275,1189897200,6),(275,1206662400,5),(275,1223161200,6),(275,1238112000,5),(275,1254006000,6),(275,1269561600,5),(275,1284246000,6),(275,1301616000,5),(275,1317510000,6),(275,1333065600,5),(275,1348354800,6),(275,1364515200,5),(275,1382828400,6),(275,1395964800,5),(275,1414278000,6),(275,1427414400,5),(275,1445727600,6),(275,1458864000,5),(275,1477782000,6),(275,1490313600,5),(275,1509231600,6),(275,1521763200,5),(275,1540681200,6),(275,1553817600,5),(275,1572130800,6),(275,1585267200,5),(275,1603580400,6),(275,1616716800,5),(275,1635634800,6),(275,1648166400,5),(275,1667084400,6),(275,1679616000,5),(275,1698534000,6),(275,1711670400,5),(275,1729983600,6),(275,1743120000,5),(275,1761433200,6),(275,1774569600,5),(275,1792882800,6),(275,1806019200,5),(275,1824937200,6),(275,1837468800,5),(275,1856386800,6),(275,1868918400,5),(275,1887836400,6),(275,1900972800,5),(275,1919286000,6),(275,1932422400,5),(275,1950735600,6),(275,1963872000,5),(275,1982790000,6),(275,1995321600,5),(275,2014239600,6),(275,2026771200,5),(275,2045689200,6),(275,2058220800,5),(275,2077138800,6),(275,2090275200,5),(275,2108588400,6),(275,2121724800,5),(275,2140038000,6),(276,-2147483648,1),(276,-788932800,2),(276,2147483647,2),(277,-2147483648,0),(277,-1487759676,1),(277,-1247569200,3),(277,354888000,2),(277,370695600,3),(277,386424000,2),(277,402231600,3),(277,417960000,2),(277,433767600,3),(277,449582400,2),(277,465314400,4),(277,481039200,5),(277,496764000,4),(277,512488800,5),(277,528213600,4),(277,543938400,5),(277,559663200,4),(277,575388000,5),(277,591112800,4),(277,606837600,5),(277,622562400,4),(277,638287200,5),(277,654616800,4),(277,670341600,6),(277,686070000,7),(277,695746800,4),(277,701791200,5),(277,717516000,4),(277,733240800,5),(277,748965600,4),(277,764690400,5),(277,780415200,4),(277,796140000,5),(277,811864800,4),(277,828194400,5),(277,846338400,4),(277,859644000,5),(277,877788000,4),(277,891093600,5),(277,909237600,4),(277,922543200,5),(277,941292000,4),(277,953992800,5),(277,972741600,4),(277,985442400,5),(277,1004191200,4),(277,1017496800,5),(277,1035640800,4),(277,1048946400,5),(277,1067090400,4),(277,1080396000,5),(277,1099144800,4),(277,1111845600,5),(277,1130594400,4),(277,1143295200,5),(277,1162044000,4),(277,1174744800,5),(277,1193493600,4),(277,1206799200,5),(277,1224943200,4),(277,1238248800,5),(277,1256392800,4),(277,1269698400,6),(277,1288450800,7),(277,1301151600,4),(277,2147483647,4),(278,-2147483648,0),(278,-1988166492,1),(278,-862637400,2),(278,-764145000,1),(278,-576135000,3),(278,38775600,5),(278,1018119600,4),(278,1033840800,5),(278,1212260400,4),(278,1225476000,5),(278,1239735600,4),(278,1257012000,5),(279,-2147483648,0),(279,-1325483420,1),(279,2147483647,1),(280,-2147483648,0),(280,-1577943676,1),(280,504901800,2),(280,2147483647,2),(281,-2147483648,0),(281,-1577943676,1),(281,504901800,2),(281,2147483647,2),(282,-2147483648,0),(282,-1579424533,1),(282,-1247558400,3),(282,354898800,2),(282,370706400,3),(282,386434800,2),(282,402242400,3),(282,417970800,2),(282,433778400,3),(282,449593200,2),(282,465325200,4),(282,481050000,5),(282,496774800,4),(282,512499600,5),(282,528224400,4),(282,543949200,5),(282,559674000,4),(282,575398800,5),(282,591123600,4),(282,606848400,5),(282,622573200,4),(282,638298000,5),(282,654627600,4),(282,670352400,6),(282,686080800,7),(282,695757600,4),(282,701802000,5),(282,717526800,4),(282,733251600,5),(282,748976400,4),(282,764701200,5),(282,780426000,4),(282,796150800,5),(282,811875600,4),(282,828205200,5),(282,846349200,4),(282,859654800,5),(282,877798800,4),(282,891104400,5),(282,909248400,4),(282,922554000,5),(282,941302800,4),(282,954003600,5),(282,972752400,4),(282,985453200,5),(282,1004202000,4),(282,1017507600,5),(282,1035651600,4),(282,1048957200,5),(282,1067101200,4),(282,1072882800,10),(282,1080403200,8),(282,1099152000,9),(282,1111852800,8),(282,1130601600,9),(282,1143302400,8),(282,1162051200,9),(282,1174752000,8),(282,1193500800,9),(282,1206806400,8),(282,1224950400,9),(282,1238256000,8),(282,1256400000,9),(282,1269705600,8),(282,1288454400,9),(282,1301155200,11),(282,1315832400,9),(282,1414252800,4),(282,2147483647,4),(283,-2147483648,1),(283,-2019705670,2),(283,-891581400,3),(283,-872058600,2),(283,-862637400,3),(283,-764145000,2),(284,-2147483648,0),(284,-1577513486,1),(284,-1247551200,3),(284,354906000,2),(284,370713600,3),(284,386442000,2),(284,402249600,3),(284,417978000,2),(284,433785600,3),(284,449600400,2),(284,465332400,4),(284,481057200,5),(284,496782000,4),(284,512506800,5),(284,528231600,4),(284,543956400,5),(284,559681200,4),(284,575406000,5),(284,591130800,4),(284,606855600,5),(284,622580400,4),(284,638305200,5),(284,654634800,4),(284,670359600,6),(284,686088000,7),(284,695764800,4),(284,701809200,5),(284,717534000,4),(284,733258800,5),(284,748983600,4),(284,764708400,5),(284,780433200,4),(284,796158000,5),(284,811882800,4),(284,828212400,5),(284,846356400,4),(284,859662000,5),(284,877806000,4),(284,891111600,5),(284,909255600,4),(284,922561200,5),(284,941310000,4),(284,954010800,5),(284,972759600,4),(284,985460400,5),(284,1004209200,4),(284,1017514800,5),(284,1035658800,4),(284,1048964400,5),(284,1067108400,4),(284,1080414000,5),(284,1099162800,4),(284,1111863600,5),(284,1130612400,4),(284,1143313200,5),(284,1162062000,4),(284,1174762800,5),(284,1193511600,4),(284,1206817200,5),(284,1224961200,4),(284,1238266800,5),(284,1256410800,4),(284,1269716400,5),(284,1288465200,4),(284,1301166000,8),(284,1414260000,4),(284,2147483647,4),(285,-2147483648,1),(285,-2038200925,2),(285,-1167634800,3),(285,-1073028000,4),(285,-894180000,5),(285,-879665400,6),(285,-767005200,5),(285,378664200,7),(285,2147483647,7),(286,-2147483648,0),(286,-1383463280,1),(286,-1167636600,3),(286,-1082448000,2),(286,-1074586800,3),(286,-1050825600,2),(286,-1042964400,3),(286,-1019289600,2),(286,-1011428400,3),(286,-987753600,2),(286,-979892400,3),(286,-956217600,2),(286,-948356400,3),(286,-924595200,2),(286,-916734000,3),(286,-893059200,2),(286,-885198000,3),(286,-879667200,4),(286,-767005200,3),(286,2147483647,3),(287,-2147483648,0),(287,-719636812,1),(287,2147483647,1),(288,-2147483648,0),(288,-2056692850,1),(288,-884509200,3),(288,-873280800,2),(288,-855918000,3),(288,-841744800,2),(288,-828529200,3),(288,-765363600,1),(288,-747046800,4),(288,-733827600,5),(288,-716461200,4),(288,-697021200,5),(288,-683715600,4),(288,-667990800,5),(288,-654771600,4),(288,-636627600,5),(288,-623322000,4),(288,-605178000,5),(288,-591872400,4),(288,-573642000,5),(288,-559818000,4),(288,-541674000,5),(288,-528368400,4),(288,-510224400,5),(288,-498128400,4),(288,-478774800,5),(288,-466678800,4),(288,-446720400,5),(288,-435229200,4),(288,-415258200,1),(288,-403158600,6),(288,-383808600,1),(288,-371709000,6),(288,-352359000,1),(288,-340259400,6),(288,-320909400,1),(288,-308809800,6),(288,-288855000,1),(288,-277360200,6),(288,-257405400,1),(288,-245910600,6),(288,-225955800,1),(288,-213856200,6),(288,-194506200,1),(288,-182406600,6),(288,-163056600,1),(288,-148537800,6),(288,-132820200,1),(288,-117088200,6),(288,-101370600,1),(288,-85638600,6),(288,-69312600,1),(288,-53584200,6),(288,-37863000,1),(288,-22134600,6),(288,-6413400,1),(288,9315000,6),(288,25036200,1),(288,40764600,6),(288,56485800,1),(288,72214200,6),(288,88540200,1),(288,104268600,6),(288,119989800,1),(288,126041400,6),(288,151439400,1),(288,167167800,6),(288,182889000,1),(288,198617400,6),(288,214338600,1),(288,295385400,6),(288,309292200,1),(289,-2147483648,0),(289,-2056692850,1),(289,-884509200,3),(289,-873280800,2),(289,-855918000,3),(289,-841744800,2),(289,-828529200,3),(289,-765363600,1),(289,-747046800,4),(289,-733827600,5),(289,-716461200,4),(289,-697021200,5),(289,-683715600,4),(289,-667990800,5),(289,-654771600,4),(289,-636627600,5),(289,-623322000,4),(289,-605178000,5),(289,-591872400,4),(289,-573642000,5),(289,-559818000,4),(289,-541674000,5),(289,-528368400,4),(289,-510224400,5),(289,-498128400,4),(289,-478774800,5),(289,-466678800,4),(289,-446720400,5),(289,-435229200,4),(289,-415258200,1),(289,-403158600,6),(289,-383808600,1),(289,-371709000,6),(289,-352359000,1),(289,-340259400,6),(289,-320909400,1),(289,-308809800,6),(289,-288855000,1),(289,-277360200,6),(289,-257405400,1),(289,-245910600,6),(289,-225955800,1),(289,-213856200,6),(289,-194506200,1),(289,-182406600,6),(289,-163056600,1),(289,-148537800,6),(289,-132820200,1),(289,-117088200,6),(289,-101370600,1),(289,-85638600,6),(289,-69312600,1),(289,-53584200,6),(289,-37863000,1),(289,-22134600,6),(289,-6413400,1),(289,9315000,6),(289,25036200,1),(289,40764600,6),(289,56485800,1),(289,72214200,6),(289,88540200,1),(289,104268600,6),(289,119989800,1),(289,126041400,6),(289,151439400,1),(289,167167800,6),(289,182889000,1),(289,198617400,6),(289,214338600,1),(289,295385400,6),(289,309292200,1),(290,-2147483648,0),(290,-1441188192,1),(290,-1247565600,3),(290,354891600,2),(290,370699200,3),(290,386427600,2),(290,402235200,3),(290,417963600,2),(290,433771200,3),(290,449586000,2),(290,465318000,4),(290,481042800,5),(290,496767600,4),(290,512492400,5),(290,528217200,4),(290,543942000,5),(290,559666800,4),(290,575391600,5),(290,591116400,4),(290,606841200,5),(290,622566000,4),(290,638290800,5),(290,654620400,4),(290,670345200,6),(290,686073600,7),(290,695750400,4),(290,701794800,5),(290,717519600,4),(290,733244400,5),(290,748969200,4),(290,764694000,5),(290,780418800,4),(290,796143600,5),(290,811868400,4),(290,828198000,5),(290,846342000,4),(290,859647600,5),(290,877791600,4),(290,891097200,5),(290,909241200,4),(290,922546800,5),(290,941295600,4),(290,953996400,5),(290,972745200,4),(290,985446000,5),(290,1004194800,4),(290,1017500400,5),(290,1035644400,4),(290,1048950000,5),(290,1067094000,4),(290,1080399600,5),(290,1099148400,4),(290,1111849200,5),(290,1130598000,4),(290,1143298800,5),(290,1162047600,4),(290,1174748400,5),(290,1193497200,4),(290,1206802800,5),(290,1224946800,4),(290,1238252400,5),(290,1256396400,4),(290,1269702000,5),(290,1288450800,4),(290,1301151600,8),(290,1414245600,7),(290,1461427200,4),(290,2147483647,4),(291,-2147483648,0),(291,-1577951856,1),(291,-1172908656,2),(291,-880272000,3),(291,-766054800,4),(292,-2147483648,2),(292,-1046678400,1),(292,-1038733200,2),(292,-873273600,3),(292,-794221200,2),(292,-496224000,1),(292,-489315600,2),(292,259344000,1),(292,275151600,2),(293,-2147483648,0),(293,-1577936472,1),(293,2147483647,1),(294,-2147483648,0),(294,-1518920008,2),(294,166572000,1),(294,182293200,2),(294,200959200,1),(294,213829200,2),(294,228866400,1),(294,243982800,2),(294,260316000,1),(294,276123600,2),(294,291765600,1),(294,307486800,2),(294,323820000,1),(294,338936400,2),(294,354664800,1),(294,370386000,2),(294,386114400,1),(294,401835600,2),(294,417564000,1),(294,433285200,2),(294,449013600,1),(294,465339600,2),(294,481068000,1),(294,496789200,2),(294,512517600,1),(294,528238800,2),(294,543967200,1),(294,559688400,2),(294,575416800,1),(294,591138000,2),(294,606866400,1),(294,622587600,2),(294,638316000,1),(294,654642000,2),(294,670370400,1),(294,686091600,2),(294,701820000,1),(294,717541200,2),(294,733269600,1),(294,748990800,2),(294,764719200,1),(294,780440400,2),(294,796168800,1),(294,811890000,2),(294,828223200,1),(294,843944400,2),(294,859672800,1),(294,875394000,2),(294,891122400,1),(294,909277200,3),(294,922582800,4),(294,941331600,3),(294,954032400,4),(294,972781200,3),(294,985482000,4),(294,1004230800,3),(294,1017536400,4),(294,1035680400,3),(294,1048986000,4),(294,1067130000,3),(294,1080435600,4),(294,1099184400,3),(294,1111885200,4),(294,1130634000,3),(294,1143334800,4),(294,1162083600,3),(294,1174784400,4),(294,1193533200,3),(294,1206838800,4),(294,1224982800,3),(294,1238288400,4),(294,1256432400,3),(294,1269738000,4),(294,1288486800,3),(294,1301187600,4),(294,1319936400,3),(294,1332637200,4),(294,1351386000,3),(294,1364691600,4),(294,1382835600,3),(294,1396141200,4),(294,1414285200,3),(294,1427590800,4),(294,1445734800,3),(294,1459040400,4),(294,1477789200,3),(294,1490490000,4),(294,1509238800,3),(294,1521939600,4),(294,1540688400,3),(294,1553994000,4),(294,1572138000,3),(294,1585443600,4),(294,1603587600,3),(294,1616893200,4),(294,1635642000,3),(294,1648342800,4),(294,1667091600,3),(294,1679792400,4),(294,1698541200,3),(294,1711846800,4),(294,1729990800,3),(294,1743296400,4),(294,1761440400,3),(294,1774746000,4),(294,1792890000,3),(294,1806195600,4),(294,1824944400,3),(294,1837645200,4),(294,1856394000,3),(294,1869094800,4),(294,1887843600,3),(294,1901149200,4),(294,1919293200,3),(294,1932598800,4),(294,1950742800,3),(294,1964048400,4),(294,1982797200,3),(294,1995498000,4),(294,2014246800,3),(294,2026947600,4),(294,2045696400,3),(294,2058397200,4),(294,2077146000,3),(294,2090451600,4),(294,2108595600,3),(294,2121901200,4),(294,2140045200,3),(295,-2147483648,0),(295,-1441259328,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,748983600,4),(295,764708400,5),(295,780433200,4),(295,796158000,5),(295,811882800,4),(295,828212400,5),(295,846356400,4),(295,859662000,5),(295,877806000,4),(295,891111600,5),(295,909255600,4),(295,922561200,5),(295,941310000,4),(295,954010800,5),(295,972759600,4),(295,985460400,5),(295,1004209200,4),(295,1017514800,5),(295,1035658800,4),(295,1048964400,5),(295,1067108400,4),(295,1080414000,5),(295,1099162800,4),(295,1111863600,5),(295,1130612400,4),(295,1143313200,5),(295,1162062000,4),(295,1174762800,5),(295,1193511600,4),(295,1206817200,5),(295,1224961200,4),(295,1238266800,5),(295,1256410800,4),(295,1269716400,6),(295,1288468800,7),(295,1301169600,4),(295,2147483647,4),(296,-2147483648,0),(296,-1579476700,1),(296,-1247551200,3),(296,354906000,2),(296,370713600,3),(296,386442000,2),(296,402249600,3),(296,417978000,2),(296,433785600,3),(296,449600400,2),(296,465332400,4),(296,481057200,5),(296,496782000,4),(296,512506800,5),(296,528231600,4),(296,543956400,5),(296,559681200,4),(296,575406000,5),(296,591130800,4),(296,606855600,5),(296,622580400,4),(296,638305200,5),(296,654634800,4),(296,670359600,6),(296,686088000,7),(296,695764800,4),(296,701809200,5),(296,717534000,4),(296,733258800,5),(296,738086400,8),(296,748987200,7),(296,764712000,6),(296,780436800,7),(296,796161600,6),(296,811886400,7),(296,828216000,6),(296,846360000,7),(296,859665600,6),(296,877809600,7),(296,891115200,6),(296,909259200,7),(296,922564800,6),(296,941313600,7),(296,954014400,6),(296,972763200,7),(296,985464000,6),(296,1004212800,7),(296,1017518400,6),(296,1035662400,7),(296,1048968000,6),(296,1067112000,7),(296,1080417600,6),(296,1099166400,7),(296,1111867200,6),(296,1130616000,7),(296,1143316800,6),(296,1162065600,7),(296,1174766400,6),(296,1193515200,7),(296,1206820800,6),(296,1224964800,7),(296,1238270400,6),(296,1256414400,7),(296,1269720000,6),(296,1288468800,7),(296,1301169600,4),(296,1414263600,7),(296,1469304000,4),(296,2147483647,4),(297,-2147483648,0),(297,-1582088010,1),(297,-1247547600,3),(297,354909600,2),(297,370717200,3),(297,386445600,2),(297,402253200,3),(297,417981600,2),(297,433789200,3),(297,449604000,2),(297,465336000,4),(297,481060800,5),(297,496785600,4),(297,512510400,5),(297,528235200,4),(297,543960000,5),(297,559684800,4),(297,575409600,5),(297,591134400,4),(297,606859200,5),(297,622584000,4),(297,638308800,5),(297,654638400,4),(297,670363200,6),(297,686091600,7),(297,695768400,4),(297,701812800,5),(297,717537600,4),(297,733262400,5),(297,748987200,4),(297,764712000,5),(297,780436800,4),(297,796161600,5),(297,811886400,4),(297,828216000,5),(297,846360000,4),(297,859665600,5),(297,877809600,4),(297,891115200,5),(297,909259200,4),(297,922564800,5),(297,941313600,4),(297,954014400,5),(297,972763200,4),(297,985464000,5),(297,1004212800,4),(297,1017518400,5),(297,1035662400,4),(297,1048968000,5),(297,1067112000,4),(297,1080417600,5),(297,1099166400,4),(297,1111867200,5),(297,1130616000,4),(297,1143316800,5),(297,1162065600,4),(297,1174766400,5),(297,1193515200,4),(297,1206820800,5),(297,1224964800,4),(297,1238270400,5),(297,1256414400,4),(297,1269720000,5),(297,1288468800,4),(297,1301169600,8),(297,1414263600,4),(297,2147483647,4),(298,-2147483648,0),(298,-1441164324,1),(298,-1247540400,2),(298,354913200,3),(298,370720800,4),(298,386445600,3),(298,402256800,2),(298,417985200,3),(298,433792800,2),(298,449607600,3),(298,465339600,5),(298,481064400,6),(298,496789200,5),(298,512514000,6),(298,528238800,5),(298,543963600,6),(298,559688400,5),(298,575413200,6),(298,591138000,5),(298,606862800,7),(298,622591200,8),(298,638316000,7),(298,654645600,8),(298,670370400,7),(298,686095200,8),(298,695772000,5),(298,701816400,7),(298,717544800,8),(298,733269600,7),(298,748994400,8),(298,764719200,7),(298,780444000,8),(298,796168800,7),(298,811893600,8),(298,828223200,7),(298,846367200,8),(298,859672800,7),(298,877816800,8),(298,891122400,7),(298,909266400,8),(298,922572000,7),(298,941320800,8),(298,954021600,7),(298,972770400,8),(298,985471200,7),(298,1004220000,8),(298,1017525600,7),(298,1035669600,8),(298,1048975200,7),(298,1067119200,8),(298,1080424800,7),(298,1099173600,5),(298,2147483647,5),(299,-2147483648,1),(299,-1570084924,2),(299,2147483647,2),(300,-2147483648,0),(300,-1946186240,1),(300,-1172906240,2),(300,-881220600,3),(300,-766054800,2),(300,-683883000,4),(300,-620812800,2),(300,-189415800,5),(300,567964800,6),(301,-2147483648,0),(301,-1948782180,1),(301,-1830414600,2),(301,-768646800,3),(301,1439564400,1),(301,1525446000,3),(302,-2147483648,0),(302,-1577935568,1),(302,76190400,2),(302,2147483647,2),(303,-2147483648,0),(303,-1441167268,1),(303,-1247544000,2),(303,354913200,3),(303,370720800,4),(303,386445600,3),(303,402256800,2),(303,417985200,3),(303,433792800,2),(303,449607600,3),(303,465339600,5),(303,481064400,6),(303,496789200,5),(303,512514000,6),(303,528238800,5),(303,543963600,6),(303,559688400,5),(303,575413200,6),(303,591138000,5),(303,606862800,6),(303,622587600,5),(303,638312400,6),(303,654642000,5),(303,670366800,7),(303,686095200,8),(303,695772000,5),(303,701816400,6),(303,717541200,5),(303,733266000,6),(303,748990800,5),(303,764715600,6),(303,780440400,5),(303,796165200,6),(303,811890000,5),(303,828219600,6),(303,846363600,5),(303,859669200,6),(303,877813200,5),(303,891118800,6),(303,909262800,5),(303,922568400,6),(303,941317200,5),(303,954018000,6),(303,972766800,5),(303,985467600,6),(303,1004216400,5),(303,1017522000,6),(303,1035666000,5),(303,1048971600,6),(303,1067115600,5),(303,1080421200,6),(303,1099170000,9),(303,2147483647,9),(304,-2147483648,0),(304,-1441167712,1),(304,-1247544000,2),(304,354913200,3),(304,370720800,4),(304,386445600,3),(304,402256800,2),(304,417985200,3),(304,433792800,2),(304,449607600,3),(304,465339600,5),(304,481064400,6),(304,496789200,5),(304,512514000,6),(304,528238800,5),(304,543963600,6),(304,559688400,5),(304,575413200,6),(304,591138000,5),(304,606862800,6),(304,622587600,5),(304,638312400,6),(304,654642000,5),(304,670366800,7),(304,686095200,5),(304,695768400,9),(304,701812800,6),(304,717541200,5),(304,733266000,6),(304,748990800,5),(304,764715600,6),(304,780440400,5),(304,796165200,6),(304,811890000,5),(304,828219600,6),(304,846363600,5),(304,859669200,6),(304,877813200,5),(304,891118800,6),(304,909262800,5),(304,922568400,6),(304,941317200,5),(304,954018000,6),(304,972766800,5),(304,985467600,6),(304,1004216400,5),(304,1017522000,6),(304,1035666000,5),(304,1048971600,6),(304,1067115600,5),(304,1080421200,6),(304,1099170000,9),(304,1545328800,2),(304,2147483647,2),(305,-2147483648,1),(305,-1577946287,2),(305,-873268200,3),(305,-778410000,2),(305,2147483647,2),(306,-2147483648,0),(306,-719636812,1),(306,2147483647,1),(307,-2147483648,0),(307,-2004073600,1),(307,-1851577590,2),(307,-852105600,3),(307,-782643600,4),(307,-767869200,2),(307,-718095600,3),(307,-457776000,2),(307,-315648000,3),(307,171820800,2),(307,2147483647,2),(308,-2147483648,0),(308,-2031039048,1),(308,-768560400,3),(308,354891600,2),(308,370699200,3),(308,386427600,2),(308,402235200,3),(308,417963600,2),(308,433771200,3),(308,449586000,2),(308,465318000,4),(308,481042800,5),(308,496767600,4),(308,512492400,5),(308,528217200,4),(308,543942000,5),(308,559666800,4),(308,575391600,5),(308,591116400,4),(308,606841200,5),(308,622566000,4),(308,638290800,5),(308,654620400,4),(308,670345200,6),(308,686073600,7),(308,695750400,4),(308,701794800,5),(308,717519600,4),(308,733244400,5),(308,748969200,4),(308,764694000,5),(308,780418800,4),(308,796143600,5),(308,811868400,4),(308,828198000,5),(308,846342000,4),(308,859647600,6),(308,877795200,7),(308,891100800,6),(308,909244800,7),(308,922550400,6),(308,941299200,7),(308,954000000,6),(308,972748800,7),(308,985449600,6),(308,1004198400,7),(308,1017504000,6),(308,1035648000,7),(308,1048953600,6),(308,1067097600,7),(308,1080403200,6),(308,1099152000,7),(308,1111852800,6),(308,1130601600,7),(308,1143302400,6),(308,1162051200,7),(308,1174752000,6),(308,1193500800,7),(308,1206806400,6),(308,1224950400,7),(308,1238256000,6),(308,1256400000,7),(308,1269705600,6),(308,1288454400,7),(308,1301155200,4),(308,1414249200,7),(308,1459008000,4),(308,2147483647,4),(309,-2147483648,0),(309,-1441168073,1),(309,-1247544000,2),(309,354913200,3),(309,370720800,4),(309,386445600,3),(309,402256800,2),(309,417985200,3),(309,433792800,2),(309,449607600,3),(309,465339600,5),(309,481064400,6),(309,496789200,5),(309,512514000,6),(309,528238800,5),(309,543963600,6),(309,559688400,5),(309,575413200,6),(309,591138000,5),(309,606862800,6),(309,622587600,5),(309,638312400,6),(309,654642000,5),(309,670366800,6),(309,686091600,5),(309,694206000,2),(309,2147483647,2),(310,-2147483648,0),(310,-1948782472,1),(310,-1830414600,2),(310,-767350800,4),(310,-681210000,3),(310,-672228000,4),(310,-654771600,3),(310,-640864800,4),(310,-623408400,3),(310,-609415200,4),(310,-588848400,3),(310,-577965600,4),(310,-498128400,1),(310,-462702600,5),(310,-451733400,1),(310,-429784200,5),(310,-418296600,1),(310,-399544200,5),(310,-387451800,1),(310,-368094600,5),(310,-356002200,1),(310,-336645000,5),(310,-324552600,1),(310,-305195400,5),(310,-293103000,1),(310,-264933000,4),(310,547578000,3),(310,560883600,4),(310,579027600,3),(310,592333200,4),(311,-2147483648,2),(311,-1600675200,1),(311,-1585904400,2),(311,-933667200,1),(311,-922093200,2),(311,-908870400,1),(311,-888829200,2),(311,-881049600,1),(311,-767869200,2),(311,-745833600,1),(311,-733827600,2),(311,-716889600,1),(311,-699613200,2),(311,-683884800,1),(311,-670669200,2),(311,-652348800,1),(311,-650019600,2),(311,515527200,1),(311,527014800,2),(311,545162400,1),(311,558464400,2),(311,577216800,1),(311,589914000,2),(311,608666400,1),(311,621968400,2),(311,640116000,1),(311,653418000,2),(311,671565600,1),(311,684867600,2),(312,-2147483648,1),(312,-2038200925,2),(312,-1167634800,3),(312,-1073028000,4),(312,-894180000,5),(312,-879665400,6),(312,-767005200,5),(312,378664200,7),(312,2147483647,7),(313,-2147483648,0),(313,-1441188892,1),(313,-1247565600,3),(313,354891600,2),(313,370699200,3),(313,386427600,2),(313,402235200,3),(313,417963600,2),(313,433771200,3),(313,449586000,2),(313,465318000,4),(313,481042800,5),(313,496767600,4),(313,512492400,5),(313,528217200,4),(313,543942000,5),(313,559666800,4),(313,575391600,5),(313,591116400,4),(313,606841200,5),(313,622566000,4),(313,638290800,5),(313,654620400,4),(313,670345200,6),(313,686073600,7),(313,695750400,4),(313,701794800,5),(313,717519600,4),(313,733244400,5),(313,748969200,4),(313,764694000,5),(313,780418800,4),(313,796143600,5),(313,811868400,4),(313,828198000,5),(313,846342000,4),(313,859647600,5),(313,877791600,4),(313,891097200,5),(313,909241200,4),(313,922546800,5),(313,941295600,4),(313,953996400,5),(313,972745200,4),(313,985446000,5),(313,1004194800,4),(313,1017500400,5),(313,1035644400,4),(313,1048950000,5),(313,1067094000,4),(313,1080399600,5),(313,1099148400,4),(313,1111849200,5),(313,1130598000,4),(313,1143298800,5),(313,1162047600,4),(313,1174748400,5),(313,1193497200,4),(313,1206802800,5),(313,1224946800,4),(313,1238252400,5),(313,1256396400,4),(313,1269702000,5),(313,1288450800,4),(313,1301151600,8),(313,1414245600,4),(313,2147483647,4),(314,-2147483648,1),(314,-1017820800,2),(314,-766224000,1),(314,-745833600,3),(314,-733827600,1),(314,-716889600,3),(314,-699613200,1),(314,-683884800,3),(314,-670669200,1),(314,-652348800,3),(314,-639133200,1),(314,-620812800,3),(314,-607597200,1),(314,-589276800,3),(314,-576061200,1),(314,-562924800,3),(314,-541760400,1),(314,-528710400,3),(314,-510224400,1),(314,-497174400,3),(314,-478688400,1),(314,-465638400,3),(314,-449830800,1),(314,-434016000,3),(314,-418208400,1),(314,-402480000,3),(314,-386672400,1),(314,-370944000,3),(314,-355136400,1),(314,-339408000,3),(314,-323600400,1),(314,-302515200,3),(314,-291978000,1),(314,-270979200,3),(314,-260442000,1),(314,133977600,3),(314,149785200,1),(314,165513600,3),(314,181321200,1),(314,299606400,3),(314,307551600,1),(315,-2147483648,0),(315,-1441168631,1),(315,-1247547600,3),(315,354909600,2),(315,370717200,3),(315,386445600,2),(315,402253200,3),(315,417981600,2),(315,433789200,3),(315,449604000,2),(315,465336000,4),(315,481060800,5),(315,496785600,4),(315,512510400,5),(315,528235200,4),(315,543960000,5),(315,559684800,4),(315,575409600,5),(315,591134400,4),(315,606859200,5),(315,622584000,4),(315,638308800,5),(315,654638400,4),(315,670363200,6),(315,686091600,7),(315,694206000,1),(315,2147483647,1),(316,-2147483648,1),(316,-1441162751,2),(316,-405140400,4),(316,354916800,3),(316,370724400,4),(316,386452800,3),(316,402260400,4),(316,417988800,3),(316,433796400,4),(316,449611200,3),(316,465343200,5),(316,481068000,6),(316,496792800,5),(316,512517600,6),(316,528242400,5),(316,543967200,6),(316,559692000,5),(316,575416800,6),(316,591141600,5),(316,606866400,6),(316,622591200,5),(316,638316000,6),(316,654645600,5),(316,670370400,7),(316,686098800,8),(316,694213200,2),(316,701816400,9),(316,717537600,2),(316,733266000,9),(316,748987200,2),(316,764715600,9),(316,780436800,4),(316,796161600,3),(316,811882800,4),(316,828216000,3),(316,859662000,3),(316,877806000,4),(316,891115200,3),(316,909255600,4),(316,922564800,3),(316,941310000,4),(316,954014400,3),(316,972759600,4),(316,985464000,3),(316,1004209200,4),(316,1017518400,3),(316,1035658800,4),(316,1048968000,3),(316,1067108400,4),(316,1080417600,3),(316,1088276400,9),(316,1099177200,8),(316,1111878000,4),(316,2147483647,4),(317,-2147483648,0),(317,-1704165944,1),(317,-757394744,2),(317,247177800,4),(317,259272000,3),(317,277758000,4),(317,283982400,2),(317,290809800,5),(317,306531000,2),(317,322432200,5),(317,338499000,2),(317,673216200,5),(317,685481400,2),(317,701209800,5),(317,717103800,2),(317,732745800,5),(317,748639800,2),(317,764281800,5),(317,780175800,2),(317,795817800,5),(317,811711800,2),(317,827353800,5),(317,843247800,2),(317,858976200,5),(317,874870200,2),(317,890512200,5),(317,906406200,2),(317,922048200,5),(317,937942200,2),(317,953584200,5),(317,969478200,2),(317,985206600,5),(317,1001100600,2),(317,1016742600,5),(317,1032636600,2),(317,1048278600,5),(317,1064172600,2),(317,1079814600,5),(317,1095708600,2),(317,1111437000,5),(317,1127331000,2),(317,1206045000,5),(317,1221939000,2),(317,1237667400,5),(317,1253561400,2),(317,1269203400,5),(317,1285097400,2),(317,1300739400,5),(317,1316633400,2),(317,1332275400,5),(317,1348169400,2),(317,1363897800,5),(317,1379791800,2),(317,1395433800,5),(317,1411327800,2),(317,1426969800,5),(317,1442863800,2),(317,1458505800,5),(317,1474399800,2),(317,1490128200,5),(317,1506022200,2),(317,1521664200,5),(317,1537558200,2),(317,1553200200,5),(317,1569094200,2),(317,1584736200,5),(317,1600630200,2),(317,1616358600,5),(317,1632252600,2),(317,1647894600,5),(317,1663788600,2),(317,1679430600,5),(317,1695324600,2),(317,1710966600,5),(317,1726860600,2),(317,1742589000,5),(317,1758483000,2),(317,1774125000,5),(317,1790019000,2),(317,1805661000,5),(317,1821555000,2),(317,1837197000,5),(317,1853091000,2),(317,1868733000,5),(317,1884627000,2),(317,1900355400,5),(317,1916249400,2),(317,1931891400,5),(317,1947785400,2),(317,1963427400,5),(317,1979321400,2),(317,1994963400,5),(317,2010857400,2),(317,2026585800,5),(317,2042479800,2),(317,2058121800,5),(317,2074015800,2),(317,2089657800,5),(317,2105551800,2),(317,2121193800,5),(317,2137087800,2),(318,-2147483648,1),(318,-1641003640,6),(318,-933638400,2),(318,-923097600,3),(318,-919036800,2),(318,-857347200,3),(318,-844300800,2),(318,-825811200,3),(318,-812678400,2),(318,-794188800,3),(318,-779846400,2),(318,-762652800,3),(318,-748310400,2),(318,-731116800,3),(318,-681955200,4),(318,-673228800,2),(318,-667958400,3),(318,-652320000,2),(318,-636422400,3),(318,-622080000,2),(318,-608947200,3),(318,-591840000,2),(318,-572486400,3),(318,-558576000,2),(318,-542851200,3),(318,-527731200,2),(318,-514425600,3),(318,-490838400,2),(318,-482976000,3),(318,-459388800,2),(318,-451526400,3),(318,-428544000,2),(318,-418262400,3),(318,-400118400,2),(318,-387417600,3),(318,142380000,5),(318,150843600,6),(318,167176800,5),(318,178664400,6),(318,334101600,7),(318,337730400,8),(318,452642400,7),(318,462319200,8),(318,482277600,5),(318,494370000,6),(318,516751200,5),(318,526424400,6),(318,545436000,5),(318,558478800,6),(318,576626400,5),(318,589323600,6),(318,609890400,5),(318,620773200,6),(318,638316000,5),(318,651618000,6),(318,669765600,5),(318,683672400,6),(318,701820000,5),(318,715726800,6),(318,733701600,5),(318,747176400,6),(318,765151200,5),(318,778021200,6),(318,796600800,5),(318,810075600,6),(318,826840800,5),(318,842821200,6),(318,858895200,5),(318,874184400,6),(318,890344800,5),(318,905029200,6),(318,923011200,5),(318,936313200,6),(318,955670400,5),(318,970783200,6),(318,986770800,5),(318,1001282400,6),(318,1017356400,5),(318,1033941600,6),(318,1048806000,5),(318,1065132000,6),(318,1081292400,5),(318,1095804000,6),(318,1112313600,5),(318,1128812400,6),(318,1143763200,5),(318,1159657200,6),(318,1175212800,5),(318,1189897200,6),(318,1206662400,5),(318,1223161200,6),(318,1238112000,5),(318,1254006000,6),(318,1269561600,5),(318,1284246000,6),(318,1301616000,5),(318,1317510000,6),(318,1333065600,5),(318,1348354800,6),(318,1364515200,5),(318,1382828400,6),(318,1395964800,5),(318,1414278000,6),(318,1427414400,5),(318,1445727600,6),(318,1458864000,5),(318,1477782000,6),(318,1490313600,5),(318,1509231600,6),(318,1521763200,5),(318,1540681200,6),(318,1553817600,5),(318,1572130800,6),(318,1585267200,5),(318,1603580400,6),(318,1616716800,5),(318,1635634800,6),(318,1648166400,5),(318,1667084400,6),(318,1679616000,5),(318,1698534000,6),(318,1711670400,5),(318,1729983600,6),(318,1743120000,5),(318,1761433200,6),(318,1774569600,5),(318,1792882800,6),(318,1806019200,5),(318,1824937200,6),(318,1837468800,5),(318,1856386800,6),(318,1868918400,5),(318,1887836400,6),(318,1900972800,5),(318,1919286000,6),(318,1932422400,5),(318,1950735600,6),(318,1963872000,5),(318,1982790000,6),(318,1995321600,5),(318,2014239600,6),(318,2026771200,5),(318,2045689200,6),(318,2058220800,5),(318,2077138800,6),(318,2090275200,5),(318,2108588400,6),(318,2121724800,5),(318,2140038000,6),(319,-2147483648,0),(319,-706341516,1),(319,560025000,2),(319,2147483647,2),(320,-2147483648,0),(320,-706341516,1),(320,560025000,2),(320,2147483647,2),(321,-2147483648,3),(321,-683802000,1),(321,-672310800,2),(321,-654771600,1),(321,-640861200,2),(321,-620298000,1),(321,-609411600,2),(321,-588848400,1),(321,-577962000,2),(322,-2147483648,0),(322,-1578807591,1),(322,-1247551200,3),(322,354906000,2),(322,370713600,3),(322,386442000,2),(322,402249600,3),(322,417978000,2),(322,433785600,3),(322,449600400,2),(322,465332400,4),(322,481057200,5),(322,496782000,4),(322,512506800,5),(322,528231600,4),(322,543956400,5),(322,559681200,4),(322,575406000,5),(322,591130800,4),(322,606855600,5),(322,622580400,4),(322,638305200,5),(322,654634800,4),(322,670359600,6),(322,686088000,7),(322,695764800,4),(322,701809200,5),(322,717534000,4),(322,733258800,5),(322,748983600,4),(322,764708400,5),(322,780433200,4),(322,796158000,5),(322,811882800,4),(322,828212400,5),(322,846356400,4),(322,859662000,5),(322,877806000,4),(322,891111600,5),(322,909255600,4),(322,922561200,5),(322,941310000,4),(322,954010800,5),(322,972759600,4),(322,985460400,5),(322,1004209200,4),(322,1017514800,5),(322,1020193200,8),(322,1035662400,7),(322,1048968000,6),(322,1067112000,7),(322,1080417600,6),(322,1099166400,7),(322,1111867200,6),(322,1130616000,7),(322,1143316800,6),(322,1162065600,7),(322,1174766400,6),(322,1193515200,7),(322,1206820800,6),(322,1224964800,7),(322,1238270400,6),(322,1256414400,7),(322,1269720000,6),(322,1288468800,7),(322,1301169600,4),(322,1414263600,7),(322,1464465600,4),(322,2147483647,4),(323,-2147483648,0),(323,-1577951856,1),(323,-1172908656,2),(323,-880272000,3),(323,-766054800,4),(324,-2147483648,0),(324,-2032931252,1),(324,252435600,3),(324,417974400,2),(324,433782000,3),(324,449596800,2),(324,465318000,3),(324,481046400,2),(324,496767600,3),(324,512496000,2),(324,528217200,3),(324,543945600,2),(324,559666800,3),(324,575395200,2),(324,591116400,3),(324,606844800,2),(324,622566000,3),(324,638294400,2),(324,654620400,3),(324,670348800,2),(324,686070000,3),(324,701798400,2),(324,717519600,3),(324,733248000,2),(324,748969200,3),(324,764697600,2),(324,780418800,3),(324,796147200,2),(324,811868400,3),(324,828201600,2),(324,843922800,3),(324,859651200,2),(324,875372400,3),(324,891100800,2),(324,906822000,3),(324,988394400,2),(324,1001696400,3),(324,1017424800,2),(324,1033146000,3),(324,1048874400,2),(324,1064595600,3),(324,1080324000,2),(324,1096045200,3),(324,1111773600,2),(324,1127494800,3),(324,1143223200,2),(324,1159549200,3),(324,1427479200,2),(324,1443193200,3),(324,1458928800,2),(324,1474642800,3),(324,2147483647,3),(325,-2147483648,0),(325,-2032931252,1),(325,252435600,3),(325,417974400,2),(325,433782000,3),(325,449596800,2),(325,465318000,3),(325,481046400,2),(325,496767600,3),(325,512496000,2),(325,528217200,3),(325,543945600,2),(325,559666800,3),(325,575395200,2),(325,591116400,3),(325,606844800,2),(325,622566000,3),(325,638294400,2),(325,654620400,3),(325,670348800,2),(325,686070000,3),(325,701798400,2),(325,717519600,3),(325,733248000,2),(325,748969200,3),(325,764697600,2),(325,780418800,3),(325,796147200,2),(325,811868400,3),(325,828201600,2),(325,843922800,3),(325,859651200,2),(325,875372400,3),(325,891100800,2),(325,906822000,3),(325,988394400,2),(325,1001696400,3),(325,1017424800,2),(325,1033146000,3),(325,1048874400,2),(325,1064595600,3),(325,1080324000,2),(325,1096045200,3),(325,1111773600,2),(325,1127494800,3),(325,1143223200,2),(325,1159549200,3),(325,1427479200,2),(325,1443193200,3),(325,1458928800,2),(325,1474642800,3),(325,2147483647,3),(326,-2147483648,0),(326,-1325483420,1),(326,2147483647,1),(327,-2147483648,0),(327,-1579426374,1),(327,-1247558400,2),(327,354898800,4),(327,370699200,3),(327,386427600,4),(327,402235200,3),(327,417963600,4),(327,433771200,3),(327,449586000,4),(327,465318000,5),(327,481042800,6),(327,496767600,5),(327,512492400,6),(327,528217200,5),(327,543942000,6),(327,559666800,5),(327,575391600,6),(327,591116400,5),(327,606841200,6),(327,622566000,5),(327,638290800,6),(327,654620400,5),(327,670345200,7),(327,686073600,8),(327,695750400,5),(327,701794800,6),(327,717519600,5),(327,733244400,6),(327,748969200,5),(327,764694000,6),(327,780418800,5),(327,796143600,6),(327,811868400,5),(327,828198000,6),(327,846342000,5),(327,859647600,6),(327,877791600,5),(327,891097200,6),(327,909241200,5),(327,922546800,6),(327,941295600,5),(327,953996400,6),(327,972745200,5),(327,985446000,6),(327,1004194800,5),(327,1017500400,6),(327,1035644400,5),(327,1048950000,6),(327,1067094000,5),(327,1080399600,6),(327,1099148400,5),(327,1111849200,6),(327,1130598000,5),(327,1143298800,6),(327,1162047600,5),(327,1174748400,6),(327,1193497200,5),(327,1206802800,6),(327,1224946800,5),(327,1238252400,6),(327,1256396400,5),(327,1269702000,6),(327,1288450800,5),(327,1301151600,9),(327,1315828800,5),(327,1414249200,8),(327,2147483647,8),(328,-2147483648,1),(328,-1570084924,2),(328,2147483647,2),(329,-2147483648,0),(329,-1487321251,1),(329,-1247562000,3),(329,354895200,2),(329,370702800,3),(329,386431200,2),(329,402238800,3),(329,417967200,2),(329,433774800,3),(329,449589600,2),(329,465321600,4),(329,481046400,5),(329,496771200,4),(329,512496000,5),(329,528220800,4),(329,543945600,5),(329,559670400,4),(329,575395200,5),(329,591120000,4),(329,606844800,5),(329,622569600,4),(329,638294400,5),(329,654624000,4),(329,670348800,6),(329,686077200,7),(329,695754000,4),(329,701798400,5),(329,717523200,4),(329,733248000,5),(329,748972800,4),(329,764697600,5),(329,780422400,4),(329,796147200,5),(329,811872000,4),(329,828201600,5),(329,846345600,4),(329,859651200,5),(329,877795200,4),(329,891100800,5),(329,909244800,4),(329,922550400,5),(329,941299200,4),(329,954000000,5),(329,972748800,4),(329,985449600,5),(329,1004198400,4),(329,1017504000,5),(329,1035648000,4),(329,1048953600,5),(329,1067097600,4),(329,1080403200,5),(329,1099152000,4),(329,1111852800,5),(329,1130601600,4),(329,1143302400,5),(329,1162051200,4),(329,1174752000,5),(329,1193500800,4),(329,1206806400,5),(329,1224950400,4),(329,1238256000,5),(329,1256400000,4),(329,1269705600,5),(329,1288454400,4),(329,1301155200,8),(329,1414249200,4),(329,2147483647,4),(330,-2147483648,0),(330,-1579423138,1),(330,-1247558400,3),(330,354898800,2),(330,370706400,3),(330,386434800,2),(330,402242400,3),(330,417970800,2),(330,433778400,3),(330,449593200,2),(330,465325200,4),(330,481050000,5),(330,496774800,4),(330,512499600,5),(330,528224400,4),(330,543949200,5),(330,559674000,4),(330,575398800,5),(330,591123600,4),(330,606848400,5),(330,622573200,4),(330,638298000,5),(330,654627600,4),(330,670352400,6),(330,686080800,7),(330,695757600,4),(330,701802000,5),(330,717526800,4),(330,733251600,5),(330,748976400,4),(330,764701200,5),(330,780426000,4),(330,796150800,5),(330,811875600,4),(330,828205200,5),(330,846349200,4),(330,859654800,5),(330,877798800,4),(330,891104400,5),(330,909248400,4),(330,922554000,5),(330,941302800,4),(330,954003600,5),(330,972752400,4),(330,985453200,5),(330,1004202000,4),(330,1017507600,5),(330,1035651600,4),(330,1048957200,5),(330,1067101200,4),(330,1080406800,5),(330,1099155600,4),(330,1111856400,5),(330,1130605200,4),(330,1143306000,5),(330,1162054800,4),(330,1174755600,5),(330,1193504400,4),(330,1206810000,5),(330,1224954000,4),(330,1238259600,5),(330,1256403600,4),(330,1269709200,5),(330,1288458000,4),(330,1301158800,8),(330,1414252800,4),(330,2147483647,4),(331,-2147483648,1),(331,-1577946287,2),(331,-873268200,3),(331,-778410000,2),(331,2147483647,2),(332,-2147483648,0),(332,-1688270553,1),(332,-1592610305,2),(332,-1247544000,4),(332,354913200,3),(332,370720800,4),(332,386449200,3),(332,402256800,4),(332,417985200,3),(332,433792800,4),(332,449607600,3),(332,465339600,5),(332,481064400,6),(332,496789200,5),(332,512514000,6),(332,528238800,5),(332,543963600,6),(332,559688400,5),(332,575413200,6),(332,591138000,5),(332,606862800,6),(332,622587600,5),(332,638312400,6),(332,654642000,5),(332,670366800,7),(332,686095200,8),(332,695772000,5),(332,701816400,6),(332,717541200,5),(332,733266000,6),(332,748990800,5),(332,764715600,6),(332,780440400,5),(332,796165200,6),(332,811890000,5),(332,828219600,6),(332,846363600,5),(332,859669200,6),(332,877813200,5),(332,891118800,6),(332,909262800,5),(332,922568400,6),(332,941317200,5),(332,954018000,6),(332,972766800,5),(332,985467600,6),(332,1004216400,5),(332,1017522000,6),(332,1035666000,5),(332,1048971600,6),(332,1067115600,5),(332,1080421200,6),(332,1099170000,5),(332,1111870800,6),(332,1130619600,5),(332,1143320400,6),(332,1162069200,5),(332,1174770000,6),(332,1193518800,5),(332,1206824400,6),(332,1224968400,5),(332,1238274000,6),(332,1256418000,5),(332,1269723600,6),(332,1288472400,5),(332,1301173200,9),(332,1414267200,5),(332,2147483647,5),(333,-2147483648,0),(333,-1441162680,1),(333,-405140400,3),(333,354916800,2),(333,370724400,3),(333,386452800,2),(333,402260400,3),(333,417988800,2),(333,433796400,3),(333,449611200,2),(333,465343200,4),(333,481068000,5),(333,496792800,4),(333,512517600,5),(333,528242400,4),(333,543967200,5),(333,559692000,4),(333,575416800,5),(333,591141600,4),(333,606866400,5),(333,622591200,4),(333,638316000,5),(333,654645600,4),(333,670370400,6),(333,686098800,7),(333,701823600,6),(333,717548400,7),(333,733273200,6),(333,748998000,7),(333,764722800,6),(333,780447600,7),(333,796172400,6),(333,811897200,4),(333,852062400,3),(333,859672800,5),(333,877816800,4),(333,891122400,5),(333,909266400,4),(333,922572000,5),(333,941320800,4),(333,954021600,5),(333,972770400,4),(333,985471200,5),(333,1004220000,4),(333,1017525600,5),(333,1035669600,4),(333,1048975200,5),(333,1067119200,4),(333,1080424800,5),(333,1099173600,4),(333,1111874400,5),(333,1130623200,4),(333,1143324000,5),(333,1162072800,4),(333,1174773600,5),(333,1193522400,4),(333,1206828000,5),(333,1224972000,4),(333,1238277600,5),(333,1256421600,4),(333,1269727200,5),(333,1288476000,4),(333,1293825600,3),(333,1301176800,5),(333,1319925600,4),(333,2147483647,4),(334,-2147483648,1),(334,-1830376800,6),(334,-1689548400,2),(334,-1677794400,3),(334,-1667430000,4),(334,-1647730800,5),(334,-1635807600,4),(334,-1616194800,5),(334,-1604358000,4),(334,-1584658800,5),(334,-1572735600,4),(334,-1553036400,5),(334,-1541199600,4),(334,-1521500400,5),(334,-1442444400,4),(334,-1426806000,5),(334,-1379286000,4),(334,-1364770800,5),(334,-1348441200,4),(334,-1333321200,5),(334,-1316386800,4),(334,-1301266800,5),(334,-1284332400,4),(334,-1269817200,5),(334,-1221433200,4),(334,-1206918000,5),(334,-1191193200,4),(334,-1175468400,5),(334,-1127689200,4),(334,-1111964400,5),(334,-1096844400,4),(334,-1080514800,5),(334,-1063580400,4),(334,-1049065200,5),(334,-1033340400,4),(334,-1017615600,5),(334,-1002495600,4),(334,-986166000,5),(334,-969231600,4),(334,-950482800,5),(334,-942015600,4),(334,-922662000,5),(334,-906937200,4),(334,-891126000,5),(334,-877302000,4),(334,-873676800,7),(334,-864000000,4),(334,-857948400,5),(334,-845852400,4),(334,-842832000,7),(334,-831340800,4),(334,-825894000,5),(334,-814402800,4),(334,-810777600,7),(334,-799891200,4),(334,-794444400,5),(334,-782953200,4),(334,-779328000,7),(334,-768441600,4),(334,-762994800,5),(334,-749084400,4),(334,-733359600,5),(334,-717624000,4),(334,-701899200,5),(334,-686174400,4),(334,-670449600,5),(334,-654724800,4),(334,-639000000,5),(334,-591825600,4),(334,-575496000,5),(334,-559771200,4),(334,-544046400,5),(334,-528321600,4),(334,-512596800,5),(334,-496872000,4),(334,-481147200,5),(334,-465422400,4),(334,-449697600,5),(334,-433972800,4),(334,-417643200,5),(334,-401918400,4),(334,-386193600,5),(334,-370468800,4),(334,-354744000,5),(334,-339019200,4),(334,-323294400,5),(334,-307569600,4),(334,-291844800,5),(334,-276120000,4),(334,-260395200,5),(334,-244670400,4),(334,-228340800,5),(334,-212616000,4),(334,-196891200,5),(334,-181166400,4),(334,-165441600,5),(334,-149716800,4),(334,-133992000,5),(334,-118267200,9),(334,228272400,7),(334,243997200,8),(334,260326800,7),(334,276051600,8),(334,291776400,7),(334,307504800,8),(334,323226000,7),(334,338954400,8),(334,354679200,7),(334,370404000,8),(334,386128800,7),(334,401853600,8),(334,417582000,7),(334,433303200,8),(334,449028000,7),(334,465357600,8),(334,481082400,7),(334,496807200,8),(334,512532000,7),(334,528256800,8),(334,543981600,7),(334,559706400,8),(334,575431200,7),(334,591156000,8),(334,606880800,7),(334,622605600,8),(334,638330400,7),(334,654660000,8),(334,670384800,7),(334,686109600,8),(334,701834400,7),(334,717559200,10),(334,733280400,11),(334,749005200,12),(334,764730000,11),(334,780454800,12),(334,796179600,11),(334,811904400,12),(334,828234000,11),(334,846378000,12),(334,859683600,11),(334,877827600,12),(334,891133200,11),(334,909277200,12),(334,922582800,11),(334,941331600,12),(334,954032400,11),(334,972781200,12),(334,985482000,11),(334,1004230800,12),(334,1017536400,11),(334,1035680400,12),(334,1048986000,11),(334,1067130000,12),(334,1080435600,11),(334,1099184400,12),(334,1111885200,11),(334,1130634000,12),(334,1143334800,11),(334,1162083600,12),(334,1174784400,11),(334,1193533200,12),(334,1206838800,11),(334,1224982800,12),(334,1238288400,11),(334,1256432400,12),(334,1269738000,11),(334,1288486800,12),(334,1301187600,11),(334,1319936400,12),(334,1332637200,11),(334,1351386000,12),(334,1364691600,11),(334,1382835600,12),(334,1396141200,11),(334,1414285200,12),(334,1427590800,11),(334,1445734800,12),(334,1459040400,11),(334,1477789200,12),(334,1490490000,11),(334,1509238800,12),(334,1521939600,11),(334,1540688400,12),(334,1553994000,11),(334,1572138000,12),(334,1585443600,11),(334,1603587600,12),(334,1616893200,11),(334,1635642000,12),(334,1648342800,11),(334,1667091600,12),(334,1679792400,11),(334,1698541200,12),(334,1711846800,11),(334,1729990800,12),(334,1743296400,11),(334,1761440400,12),(334,1774746000,11),(334,1792890000,12),(334,1806195600,11),(334,1824944400,12),(334,1837645200,11),(334,1856394000,12),(334,1869094800,11),(334,1887843600,12),(334,1901149200,11),(334,1919293200,12),(334,1932598800,11),(334,1950742800,12),(334,1964048400,11),(334,1982797200,12),(334,1995498000,11),(334,2014246800,12),(334,2026947600,11),(334,2045696400,12),(334,2058397200,11),(334,2077146000,12),(334,2090451600,11),(334,2108595600,12),(334,2121901200,11),(334,2140045200,12),(334,2147483647,12),(335,-2147483648,2),(335,-1664307642,1),(335,-1648932042,2),(335,-1632080442,1),(335,-1618692042,2),(335,-1262281242,4),(335,-882727200,3),(335,-858538800,4),(335,-845229600,3),(335,-825879600,4),(335,-814384800,3),(335,-793825200,4),(335,-782935200,3),(335,-762375600,4),(335,-713988000,3),(335,-703710000,4),(335,-681933600,3),(335,-672865200,4),(335,-650484000,3),(335,-641415600,4),(335,-618429600,3),(335,-609966000,4),(335,-586980000,3),(335,-578516400,4),(335,-555530400,3),(335,-546462000,4),(335,-429127200,3),(335,-415825200,4),(335,136360800,3),(335,152082000,4),(335,167810400,3),(335,183531600,4),(335,199260000,3),(335,215586000,4),(335,230709600,3),(335,247035600,4),(335,262764000,3),(335,278485200,4),(335,294213600,3),(335,309934800,4),(335,325663200,3),(335,341384400,4),(335,357112800,3),(335,372834000,4),(335,388562400,3),(335,404888400,4),(335,420012000,3),(335,436338000,4),(335,452066400,3),(335,467787600,4),(335,483516000,3),(335,499237200,4),(335,514965600,3),(335,530686800,4),(335,544600800,3),(335,562136400,4),(335,576050400,3),(335,594190800,4),(335,607500000,3),(335,625640400,4),(335,638949600,3),(335,657090000,4),(335,671004000,3),(335,688539600,4),(335,702453600,3),(335,719989200,4),(335,733903200,3),(335,752043600,4),(335,765352800,3),(335,783493200,4),(335,796802400,3),(335,814942800,4),(335,828856800,3),(335,846392400,4),(335,860306400,3),(335,877842000,4),(335,891756000,3),(335,909291600,4),(335,923205600,3),(335,941346000,4),(335,954655200,3),(335,972795600,4),(335,986104800,3),(335,1004245200,4),(335,1018159200,3),(335,1035694800,4),(335,1049608800,3),(335,1067144400,4),(335,1081058400,3),(335,1099198800,4),(335,1112508000,3),(335,1130648400,4),(335,1143957600,3),(335,1162098000,4),(335,1173592800,3),(335,1194152400,4),(335,1205042400,3),(335,1225602000,4),(335,1236492000,3),(335,1257051600,4),(335,1268546400,3),(335,1289106000,4),(335,1299996000,3),(335,1320555600,4),(335,1331445600,3),(335,1352005200,4),(335,1362895200,3),(335,1383454800,4),(335,1394344800,3),(335,1414904400,4),(335,1425794400,3),(335,1446354000,4),(335,1457848800,3),(335,1478408400,4),(335,1489298400,3),(335,1509858000,4),(335,1520748000,3),(335,1541307600,4),(335,1552197600,3),(335,1572757200,4),(335,1583647200,3),(335,1604206800,4),(335,1615701600,3),(335,1636261200,4),(335,1647151200,3),(335,1667710800,4),(335,1678600800,3),(335,1699160400,4),(335,1710050400,3),(335,1730610000,4),(335,1741500000,3),(335,1762059600,4),(335,1772949600,3),(335,1793509200,4),(335,1805004000,3),(335,1825563600,4),(335,1836453600,3),(335,1857013200,4),(335,1867903200,3),(335,1888462800,4),(335,1899352800,3),(335,1919912400,4),(335,1930802400,3),(335,1951362000,4),(335,1962856800,3),(335,1983416400,4),(335,1994306400,3),(335,2014866000,4),(335,2025756000,3),(335,2046315600,4),(335,2057205600,3),(335,2077765200,4),(335,2088655200,3),(335,2109214800,4),(335,2120104800,3),(335,2140664400,4),(336,-2147483648,0),(336,-1509663504,1),(336,-733874400,2),(336,323827200,3),(336,338950800,4),(336,354675600,5),(336,370400400,4),(336,386125200,5),(336,401850000,4),(336,417574800,5),(336,433299600,4),(336,449024400,5),(336,465354000,4),(336,481078800,5),(336,496803600,4),(336,512528400,5),(336,528253200,4),(336,543978000,5),(336,559702800,4),(336,575427600,5),(336,591152400,4),(336,606877200,5),(336,622602000,4),(336,638326800,5),(336,654656400,4),(336,670381200,5),(336,686106000,4),(336,701830800,5),(336,717555600,4),(336,733280400,5),(336,749005200,4),(336,764730000,5),(336,780454800,4),(336,796179600,5),(336,811904400,4),(336,828234000,5),(336,846378000,4),(336,859683600,5),(336,877827600,4),(336,891133200,5),(336,909277200,4),(336,922582800,5),(336,941331600,4),(336,954032400,5),(336,972781200,4),(336,985482000,5),(336,1004230800,4),(336,1017536400,5),(336,1035680400,4),(336,1048986000,5),(336,1067130000,4),(336,1080435600,5),(336,1099184400,4),(336,1111885200,5),(336,1130634000,4),(336,1143334800,5),(336,1162083600,4),(336,1174784400,5),(336,1193533200,4),(336,1206838800,5),(336,1224982800,4),(336,1238288400,5),(336,1256432400,4),(336,1269738000,5),(336,1288486800,4),(336,1301187600,5),(336,1319936400,4),(336,1332637200,5),(336,1351386000,4),(336,1364691600,5),(336,1382835600,4),(336,1396141200,5),(336,1414285200,4),(336,1427590800,5),(336,1445734800,4),(336,1459040400,5),(336,1477789200,4),(336,1490490000,5),(336,1509238800,4),(336,1521939600,5),(336,1540688400,4),(336,1553994000,5),(336,1572138000,4),(336,1585443600,5),(336,1603587600,4),(336,1616893200,5),(336,1635642000,4),(336,1648342800,5),(336,1667091600,4),(336,1679792400,5),(336,1698541200,4),(336,1711846800,5),(336,1729990800,4),(336,1743296400,5),(336,1761440400,4),(336,1774746000,5),(336,1792890000,4),(336,1806195600,5),(336,1824944400,4),(336,1837645200,5),(336,1856394000,4),(336,1869094800,5),(336,1887843600,4),(336,1901149200,5),(336,1919293200,4),(336,1932598800,5),(336,1950742800,4),(336,1964048400,5),(336,1982797200,4),(336,1995498000,5),(336,2014246800,4),(336,2026947600,5),(336,2045696400,4),(336,2058397200,5),(336,2077146000,4),(336,2090451600,5),(336,2108595600,4),(336,2121901200,5),(336,2140045200,4),(337,-2147483648,0),(337,-1830376800,1),(337,-862610400,2),(337,-764118000,3),(337,186120000,4),(337,2147483647,4),(338,-2147483648,0),(338,-1955748776,1),(338,354675600,2),(338,370400400,3),(338,386125200,2),(338,401850000,3),(338,417574800,2),(338,433299600,3),(338,449024400,2),(338,465354000,3),(338,481078800,2),(338,496803600,3),(338,512528400,2),(338,528253200,3),(338,543978000,2),(338,559702800,3),(338,575427600,2),(338,591152400,3),(338,606877200,2),(338,622602000,3),(338,638326800,2),(338,654656400,3),(338,670381200,2),(338,686106000,3),(338,701830800,2),(338,717555600,3),(338,733280400,2),(338,749005200,3),(338,764730000,2),(338,780454800,3),(338,796179600,2),(338,811904400,3),(338,828234000,2),(338,846378000,3),(338,859683600,2),(338,877827600,3),(338,891133200,2),(338,909277200,3),(338,922582800,2),(338,941331600,3),(338,954032400,2),(338,972781200,3),(338,985482000,2),(338,1004230800,3),(338,1017536400,2),(338,1035680400,3),(338,1048986000,2),(338,1067130000,3),(338,1080435600,2),(338,1099184400,3),(338,1111885200,2),(338,1130634000,3),(338,1143334800,2),(338,1162083600,3),(338,1174784400,2),(338,1193533200,3),(338,1206838800,2),(338,1224982800,3),(338,1238288400,2),(338,1256432400,3),(338,1269738000,2),(338,1288486800,3),(338,1301187600,2),(338,1319936400,3),(338,1332637200,2),(338,1351386000,3),(338,1364691600,2),(338,1382835600,3),(338,1396141200,2),(338,1414285200,3),(338,1427590800,2),(338,1445734800,3),(338,1459040400,2),(338,1477789200,3),(338,1490490000,2),(338,1509238800,3),(338,1521939600,2),(338,1540688400,3),(338,1553994000,2),(338,1572138000,3),(338,1585443600,2),(338,1603587600,3),(338,1616893200,2),(338,1635642000,3),(338,1648342800,2),(338,1667091600,3),(338,1679792400,2),(338,1698541200,3),(338,1711846800,2),(338,1729990800,3),(338,1743296400,2),(338,1761440400,3),(338,1774746000,2),(338,1792890000,3),(338,1806195600,2),(338,1824944400,3),(338,1837645200,2),(338,1856394000,3),(338,1869094800,2),(338,1887843600,3),(338,1901149200,2),(338,1919293200,3),(338,1932598800,2),(338,1950742800,3),(338,1964048400,2),(338,1982797200,3),(338,1995498000,2),(338,2014246800,3),(338,2026947600,2),(338,2045696400,3),(338,2058397200,2),(338,2077146000,3),(338,2090451600,2),(338,2108595600,3),(338,2121901200,2),(338,2140045200,3),(339,-2147483648,0),(339,-1955748776,1),(339,354675600,2),(339,370400400,3),(339,386125200,2),(339,401850000,3),(339,417574800,2),(339,433299600,3),(339,449024400,2),(339,465354000,3),(339,481078800,2),(339,496803600,3),(339,512528400,2),(339,528253200,3),(339,543978000,2),(339,559702800,3),(339,575427600,2),(339,591152400,3),(339,606877200,2),(339,622602000,3),(339,638326800,2),(339,654656400,3),(339,670381200,2),(339,686106000,3),(339,701830800,2),(339,717555600,3),(339,733280400,2),(339,749005200,3),(339,764730000,2),(339,780454800,3),(339,796179600,2),(339,811904400,3),(339,828234000,2),(339,846378000,3),(339,859683600,2),(339,877827600,3),(339,891133200,2),(339,909277200,3),(339,922582800,2),(339,941331600,3),(339,954032400,2),(339,972781200,3),(339,985482000,2),(339,1004230800,3),(339,1017536400,2),(339,1035680400,3),(339,1048986000,2),(339,1067130000,3),(339,1080435600,2),(339,1099184400,3),(339,1111885200,2),(339,1130634000,3),(339,1143334800,2),(339,1162083600,3),(339,1174784400,2),(339,1193533200,3),(339,1206838800,2),(339,1224982800,3),(339,1238288400,2),(339,1256432400,3),(339,1269738000,2),(339,1288486800,3),(339,1301187600,2),(339,1319936400,3),(339,1332637200,2),(339,1351386000,3),(339,1364691600,2),(339,1382835600,3),(339,1396141200,2),(339,1414285200,3),(339,1427590800,2),(339,1445734800,3),(339,1459040400,2),(339,1477789200,3),(339,1490490000,2),(339,1509238800,3),(339,1521939600,2),(339,1540688400,3),(339,1553994000,2),(339,1572138000,3),(339,1585443600,2),(339,1603587600,3),(339,1616893200,2),(339,1635642000,3),(339,1648342800,2),(339,1667091600,3),(339,1679792400,2),(339,1698541200,3),(339,1711846800,2),(339,1729990800,3),(339,1743296400,2),(339,1761440400,3),(339,1774746000,2),(339,1792890000,3),(339,1806195600,2),(339,1824944400,3),(339,1837645200,2),(339,1856394000,3),(339,1869094800,2),(339,1887843600,3),(339,1901149200,2),(339,1919293200,3),(339,1932598800,2),(339,1950742800,3),(339,1964048400,2),(339,1982797200,3),(339,1995498000,2),(339,2014246800,3),(339,2026947600,2),(339,2045696400,3),(339,2058397200,2),(339,2077146000,3),(339,2090451600,2),(339,2108595600,3),(339,2121901200,2),(339,2140045200,3),(340,-2147483648,2),(340,-1691884800,1),(340,-1680573600,2),(340,-927511200,1),(340,-857257200,3),(340,-844556400,4),(340,-828226800,3),(340,-812502000,4),(340,-796777200,3),(340,-781052400,4),(340,-765327600,3),(340,-340844400,4),(340,-324514800,3),(340,-308790000,4),(340,-293065200,3),(340,-277340400,4),(340,-261615600,3),(340,-245890800,4),(340,-230166000,3),(340,-214441200,4),(340,-198716400,3),(340,-182991600,4),(340,-166662000,3),(340,-147913200,4),(340,-135212400,3),(340,315529200,2),(340,323830800,5),(340,338950800,6),(340,354675600,5),(340,370400400,6),(340,386125200,5),(340,401850000,6),(340,417574800,5),(340,433299600,6),(340,449024400,5),(340,465354000,6),(340,481078800,5),(340,496803600,6),(340,512528400,5),(340,528253200,6),(340,543978000,5),(340,559702800,6),(340,575427600,5),(340,591152400,6),(340,606877200,5),(340,622602000,6),(340,638326800,5),(340,654656400,6),(340,670381200,5),(340,686106000,6),(340,701830800,5),(340,717555600,6),(340,733280400,5),(340,749005200,6),(340,764730000,5),(340,780454800,6),(340,796179600,5),(340,811904400,6),(340,828234000,5),(340,846378000,6),(340,859683600,5),(340,877827600,6),(340,891133200,5),(340,909277200,6),(340,922582800,5),(340,941331600,6),(340,954032400,5),(340,972781200,6),(340,985482000,5),(340,1004230800,6),(340,1017536400,5),(340,1035680400,6),(340,1048986000,5),(340,1067130000,6),(340,1080435600,5),(340,1099184400,6),(340,1111885200,5),(340,1130634000,6),(340,1143334800,5),(340,1162083600,6),(340,1174784400,5),(340,1193533200,6),(340,1206838800,5),(340,1224982800,6),(340,1238288400,5),(340,1256432400,6),(340,1269738000,5),(340,1288486800,6),(340,1301187600,5),(340,1319936400,6),(340,1332637200,5),(340,1351386000,6),(340,1364691600,5),(340,1382835600,6),(340,1396141200,5),(340,1414285200,6),(340,1427590800,5),(340,1445734800,6),(340,1459040400,5),(340,1477789200,6),(340,1490490000,5),(340,1509238800,6),(340,1521939600,5),(340,1540688400,6),(340,1553994000,5),(340,1572138000,6),(340,1585443600,5),(340,1603587600,6),(340,1616893200,5),(340,1635642000,6),(340,1648342800,5),(340,1667091600,6),(340,1679792400,5),(340,1698541200,6),(340,1711846800,5),(340,1729990800,6),(340,1743296400,5),(340,1761440400,6),(340,1774746000,5),(340,1792890000,6),(340,1806195600,5),(340,1824944400,6),(340,1837645200,5),(340,1856394000,6),(340,1869094800,5),(340,1887843600,6),(340,1901149200,5),(340,1919293200,6),(340,1932598800,5),(340,1950742800,6),(340,1964048400,5),(340,1982797200,6),(340,1995498000,5),(340,2014246800,6),(340,2026947600,5),(340,2045696400,6),(340,2058397200,5),(340,2077146000,6),(340,2090451600,5),(340,2108595600,6),(340,2121901200,5),(340,2140045200,6),(341,-2147483648,1),(341,-1830380400,6),(341,-1689552000,2),(341,-1677798000,3),(341,-1667433600,4),(341,-1647734400,5),(341,-1635811200,4),(341,-1616198400,5),(341,-1604361600,4),(341,-1584662400,5),(341,-1572739200,4),(341,-1553040000,5),(341,-1541203200,4),(341,-1521504000,5),(341,-1442448000,4),(341,-1426809600,5),(341,-1379289600,4),(341,-1364774400,5),(341,-1348444800,4),(341,-1333324800,5),(341,-1316390400,4),(341,-1301270400,5),(341,-1284336000,4),(341,-1269820800,5),(341,-1221436800,4),(341,-1206921600,5),(341,-1191196800,4),(341,-1175472000,5),(341,-1127692800,4),(341,-1111968000,5),(341,-1096848000,4),(341,-1080518400,5),(341,-1063584000,4),(341,-1049068800,5),(341,-1033344000,4),(341,-1017619200,5),(341,-1002499200,4),(341,-986169600,5),(341,-969235200,4),(341,-950486400,5),(341,-942019200,4),(341,-922665600,5),(341,-906940800,4),(341,-891129600,5),(341,-877305600,4),(341,-873680400,7),(341,-864003600,4),(341,-857952000,5),(341,-845856000,4),(341,-842835600,7),(341,-831344400,4),(341,-825897600,5),(341,-814406400,4),(341,-810781200,7),(341,-799894800,4),(341,-794448000,5),(341,-782956800,4),(341,-779331600,7),(341,-768445200,4),(341,-762998400,5),(341,-749088000,4),(341,-733363200,5),(341,-717627600,4),(341,-701902800,5),(341,-686178000,4),(341,-670453200,5),(341,-654728400,4),(341,-639003600,5),(341,-591829200,4),(341,-575499600,5),(341,-559774800,4),(341,-544050000,5),(341,-528325200,4),(341,-512600400,5),(341,-496875600,4),(341,-481150800,5),(341,-465426000,4),(341,-449701200,5),(341,-433976400,4),(341,-417646800,5),(341,-401922000,4),(341,-386197200,5),(341,-370472400,4),(341,-354747600,5),(341,-339022800,4),(341,-323298000,5),(341,-307573200,4),(341,-291848400,5),(341,-276123600,4),(341,-260398800,5),(341,-244674000,4),(341,-228344400,5),(341,-212619600,4),(341,-196894800,5),(341,-181170000,4),(341,-165445200,5),(341,-149720400,4),(341,-133995600,5),(341,-118270800,10),(341,228268800,8),(341,243993600,9),(341,260323200,8),(341,276048000,9),(341,291772800,8),(341,307501200,9),(341,323222400,8),(341,338950800,9),(341,354675600,8),(341,370400400,9),(341,386125200,8),(341,401850000,9),(341,417578400,8),(341,433299600,11),(341,449024400,12),(341,465354000,11),(341,481078800,12),(341,496803600,11),(341,512528400,12),(341,528253200,11),(341,543978000,12),(341,559702800,11),(341,575427600,12),(341,591152400,11),(341,606877200,12),(341,622602000,11),(341,638326800,12),(341,654656400,11),(341,670381200,12),(341,686106000,11),(341,701830800,12),(341,717555600,11),(341,733280400,12),(341,749005200,11),(341,764730000,12),(341,780454800,11),(341,796179600,12),(341,811904400,11),(341,828234000,12),(341,846378000,11),(341,859683600,12),(341,877827600,11),(341,891133200,12),(341,909277200,11),(341,922582800,12),(341,941331600,11),(341,954032400,12),(341,972781200,11),(341,985482000,12),(341,1004230800,11),(341,1017536400,12),(341,1035680400,11),(341,1048986000,12),(341,1067130000,11),(341,1080435600,12),(341,1099184400,11),(341,1111885200,12),(341,1130634000,11),(341,1143334800,12),(341,1162083600,11),(341,1174784400,12),(341,1193533200,11),(341,1206838800,12),(341,1224982800,11),(341,1238288400,12),(341,1256432400,11),(341,1269738000,12),(341,1288486800,11),(341,1301187600,12),(341,1319936400,11),(341,1332637200,12),(341,1351386000,11),(341,1364691600,12),(341,1382835600,11),(341,1396141200,12),(341,1414285200,11),(341,1427590800,12),(341,1445734800,11),(341,1459040400,12),(341,1477789200,11),(341,1490490000,12),(341,1509238800,11),(341,1521939600,12),(341,1540688400,11),(341,1553994000,12),(341,1572138000,11),(341,1585443600,12),(341,1603587600,11),(341,1616893200,12),(341,1635642000,11),(341,1648342800,12),(341,1667091600,11),(341,1679792400,12),(341,1698541200,11),(341,1711846800,12),(341,1729990800,11),(341,1743296400,12),(341,1761440400,11),(341,1774746000,12),(341,1792890000,11),(341,1806195600,12),(341,1824944400,11),(341,1837645200,12),(341,1856394000,11),(341,1869094800,12),(341,1887843600,11),(341,1901149200,12),(341,1919293200,11),(341,1932598800,12),(341,1950742800,11),(341,1964048400,12),(341,1982797200,11),(341,1995498000,12),(341,2014246800,11),(341,2026947600,12),(341,2045696400,11),(341,2058397200,12),(341,2077146000,11),(341,2090451600,12),(341,2108595600,11),(341,2121901200,12),(341,2140045200,11),(342,-2147483648,0),(342,-1956609120,2),(342,-1668211200,1),(342,-1647212400,2),(342,-1636675200,1),(342,-1613430000,2),(342,-1605139200,1),(342,-1581894000,2),(342,-1539561600,1),(342,-1531350000,2),(342,-968025600,1),(342,-952293600,2),(342,-942008400,1),(342,-920239200,3),(342,-909957600,4),(342,-888789600,3),(342,-877903200,4),(342,-857944800,3),(342,-846453600,4),(342,-826495200,3),(342,-815004000,4),(342,-795045600,3),(342,-783554400,4),(342,-762991200,3),(342,-752104800,4),(342,-731541600,3),(342,-717631200,4),(342,-700092000,3),(342,-686181600,4),(342,-668642400,3),(342,-654732000,4),(342,-636588000,3),(342,-623282400,4),(342,-605743200,3),(342,-591832800,4),(342,-573688800,3),(342,-559778400,4),(342,-542239200,3),(342,-528328800,4),(342,-510789600,3),(342,-496879200,4),(342,-479340000,3),(342,-465429600,4),(342,-447890400,3),(342,-433980000,4),(342,-415836000,3),(342,-401925600,4),(342,-384386400,3),(342,-370476000,4),(342,-352936800,3),(342,-339026400,4),(342,-321487200,3),(342,-307576800,4),(342,-290037600,3),(342,-276127200,4),(342,-258588000,3),(342,-244677600,4),(342,-226533600,3),(342,-212623200,4),(342,-195084000,3),(342,-181173600,4),(342,-163634400,3),(342,-149724000,4),(342,-132184800,3),(342,-118274400,4),(342,-100735200,3),(342,-86824800,4),(342,-68680800,3),(342,-54770400,5),(343,-2147483648,1),(343,2147483647,1),(344,-2147483648,0),(344,-1830383032,1),(345,-2147483648,1),(345,-1824235716,3),(345,-1018209600,2),(345,-1003093200,3),(345,-986760000,2),(345,-971643600,3),(345,-954705600,2),(345,-939589200,3),(345,-923256000,2),(345,-908139600,3),(345,-891806400,2),(345,-876690000,3),(345,-860356800,2),(345,-852066000,3),(345,420609600,5),(345,433306800,4),(345,452052000,5),(345,464151600,4),(345,483501600,5),(345,495601200,2),(345,514350000,3),(345,527054400,2),(345,545799600,3),(345,558504000,2),(345,577249200,3),(345,589953600,2),(345,608698800,3),(345,621403200,2),(345,640753200,3),(345,652852800,2),(345,672202800,3),(345,684907200,2),(345,703652400,3),(345,716356800,2),(345,735102000,3),(345,747806400,2),(345,766551600,3),(345,779256000,2),(345,798001200,3),(345,810705600,2),(345,830055600,3),(345,842760000,2),(345,861505200,3),(345,874209600,2),(345,892954800,3),(345,905659200,2),(345,924404400,3),(345,937108800,2),(345,955854000,3),(345,968558400,2),(345,987310800,3),(345,999410400,2),(345,1019365200,3),(345,1030860000,2),(345,1050814800,3),(345,1062914400,2),(345,1082264400,3),(345,1094364000,2),(345,1113714000,3),(345,1125813600,2),(345,1145163600,3),(345,1157263200,2),(345,1176613200,3),(345,1188712800,2),(345,1208667600,3),(345,1220767200,2),(345,1240117200,3),(345,1252216800,2),(345,1271566800,3),(345,1283666400,5),(345,2147483647,5),(346,-2147483648,3),(346,-1672560000,1),(346,-1665388800,2),(346,-883641600,1),(346,-876124800,2),(346,-860400000,1),(346,-844675200,2),(346,-828345600,1),(346,-813225600,2),(346,31500000,3),(346,57686400,1),(346,67968000,2),(346,89136000,1),(346,100022400,2),(346,120585600,1),(346,131472000,2),(346,152035200,1),(346,162921600,2),(346,183484800,1),(346,194976000,2),(346,215539200,1),(346,226425600,2),(346,246988800,1),(346,257875200,2),(346,278438400,1),(346,289324800,2),(346,309888000,1),(346,320774400,2),(346,341337600,1),(346,352224000,2),(346,372787200,1),(346,386697600,2),(346,404841600,1),(346,415728000,2),(346,436291200,1),(346,447177600,2),(346,467740800,1),(346,478627200,2),(346,499190400,1),(346,511286400,2),(346,530035200,1),(346,542736000,2),(346,562089600,1),(346,574790400,2),(346,594144000,1),(346,606240000,2),(346,625593600,1),(346,636480000,2),(346,657043200,1),(346,667929600,2),(346,688492800,1),(346,699379200,2),(346,719942400,1),(346,731433600,2),(346,751996800,1),(346,762883200,2),(346,783446400,1),(346,794332800,2),(346,814896000,1),(346,828201600,2),(346,846345600,1),(346,859651200,2),(346,877795200,1),(346,891100800,2),(346,909244800,1),(346,922550400,2),(346,941299200,1),(346,954000000,2),(346,967305600,1),(346,985449600,2),(346,1004198400,1),(346,1017504000,2),(346,1035648000,1),(346,1048953600,2),(346,1067097600,1),(346,1080403200,2),(346,1099152000,1),(346,1111852800,2),(346,1130601600,1),(346,1143907200,2),(346,1162051200,1),(346,1174752000,2),(346,1193500800,1),(346,1207411200,2),(346,1223136000,1),(346,1238860800,2),(346,1254585600,1),(346,1270310400,2),(346,1286035200,1),(346,1301760000,2),(346,1317484800,1),(346,1333209600,2),(346,1349539200,1),(346,1365264000,2),(346,1380988800,1),(346,1396713600,2),(346,1412438400,1),(346,1428163200,2),(346,1443888000,1),(346,1459612800,2),(346,1475337600,1),(346,1491062400,2),(346,1506787200,1),(346,1522512000,2),(346,1538841600,1),(346,1554566400,2),(346,1570291200,1),(346,1586016000,2),(346,1601740800,1),(346,1617465600,2),(346,1633190400,1),(346,1648915200,2),(346,1664640000,1),(346,1680364800,2),(346,1696089600,1),(346,1712419200,2),(346,1728144000,1),(346,1743868800,2),(346,1759593600,1),(346,1775318400,2),(346,1791043200,1),(346,1806768000,2),(346,1822492800,1),(346,1838217600,2),(346,1853942400,1),(346,1869667200,2),(346,1885996800,1),(346,1901721600,2),(346,1917446400,1),(346,1933171200,2),(346,1948896000,1),(346,1964620800,2),(346,1980345600,1),(346,1996070400,2),(346,2011795200,1),(346,2027520000,2),(346,2043244800,1),(346,2058969600,2),(346,2075299200,1),(346,2091024000,2),(346,2106748800,1),(346,2122473600,2),(346,2138198400,1),(347,-2147483648,3),(347,-1672558200,1),(347,-1665387000,2),(347,-883639800,1),(347,-876123000,2),(347,-860398200,1),(347,-844673400,2),(347,-828343800,1),(347,-813223800,2),(347,31501800,3),(347,57688200,1),(347,67969800,2),(347,89137800,1),(347,100024200,2),(347,120587400,1),(347,131473800,2),(347,152037000,1),(347,162923400,2),(347,183486600,1),(347,194977800,2),(347,215541000,1),(347,226427400,2),(347,246990600,1),(347,257877000,2),(347,278440200,1),(347,289326600,2),(347,309889800,1),(347,320776200,2),(347,341339400,1),(347,352225800,2),(347,372789000,1),(347,384280200,2),(347,404843400,1),(347,415729800,2),(347,436293000,1),(347,447179400,2),(347,467742600,1),(347,478629000,2),(347,499192200,1),(347,511288200,2),(347,530037000,1),(347,542737800,2),(347,562091400,1),(347,574792200,2),(347,594145800,1),(347,606241800,2),(347,625595400,1),(347,637691400,2),(347,657045000,1),(347,667931400,2),(347,688494600,1),(347,701195400,2),(347,719944200,1),(347,731435400,2),(347,751998600,1),(347,764094600,2),(347,783448200,1),(347,796149000,2),(347,814897800,1),(347,828203400,2),(347,846347400,1),(347,859653000,2),(347,877797000,1),(347,891102600,2),(347,909246600,1),(347,922552200,2),(347,941301000,1),(347,954001800,2),(347,972750600,1),(347,985451400,2),(347,1004200200,1),(347,1017505800,2),(347,1035649800,1),(347,1048955400,2),(347,1067099400,1),(347,1080405000,2),(347,1099153800,1),(347,1111854600,2),(347,1130603400,1),(347,1143909000,2),(347,1162053000,1),(347,1174753800,2),(347,1193502600,1),(347,1207413000,2),(347,1223137800,1),(347,1238862600,2),(347,1254587400,1),(347,1270312200,2),(347,1286037000,1),(347,1301761800,2),(347,1317486600,1),(347,1333211400,2),(347,1349541000,1),(347,1365265800,2),(347,1380990600,1),(347,1396715400,2),(347,1412440200,1),(347,1428165000,2),(347,1443889800,1),(347,1459614600,2),(347,1475339400,1),(347,1491064200,2),(347,1506789000,1),(347,1522513800,2),(347,1538843400,1),(347,1554568200,2),(347,1570293000,1),(347,1586017800,2),(347,1601742600,1),(347,1617467400,2),(347,1633192200,1),(347,1648917000,2),(347,1664641800,1),(347,1680366600,2),(347,1696091400,1),(347,1712421000,2),(347,1728145800,1),(347,1743870600,2),(347,1759595400,1),(347,1775320200,2),(347,1791045000,1),(347,1806769800,2),(347,1822494600,1),(347,1838219400,2),(347,1853944200,1),(347,1869669000,2),(347,1885998600,1),(347,1901723400,2),(347,1917448200,1),(347,1933173000,2),(347,1948897800,1),(347,1964622600,2),(347,1980347400,1),(347,1996072200,2),(347,2011797000,1),(347,2027521800,2),(347,2043246600,1),(347,2058971400,2),(347,2075301000,1),(347,2091025800,2),(347,2106750600,1),(347,2122475400,2),(347,2138200200,1),(348,-2147483648,3),(348,-1672560000,1),(348,-1665388800,2),(348,-883641600,1),(348,-876124800,2),(348,-860400000,1),(348,-844675200,2),(348,-828345600,1),(348,-813225600,2),(348,31500000,3),(348,57686400,1),(348,67968000,2),(348,625593600,1),(348,636480000,2),(348,657043200,1),(348,667929600,2),(348,688492800,1),(348,699379200,2),(349,-2147483648,3),(349,-1672558200,1),(349,-1665387000,2),(349,-883639800,1),(349,-876123000,2),(349,-860398200,1),(349,-844673400,2),(349,-828343800,1),(349,-813223800,2),(349,31501800,3),(349,57688200,1),(349,67969800,2),(349,89137800,1),(349,100024200,2),(349,120587400,1),(349,131473800,2),(349,152037000,1),(349,162923400,2),(349,183486600,1),(349,194977800,2),(349,215541000,1),(349,226427400,2),(349,246990600,1),(349,257877000,2),(349,278440200,1),(349,289326600,2),(349,309889800,1),(349,320776200,2),(349,341339400,1),(349,352225800,2),(349,372789000,1),(349,386699400,2),(349,404843400,1),(349,415729800,2),(349,436293000,1),(349,447179400,2),(349,467742600,1),(349,478629000,2),(349,499192200,1),(349,511288200,2),(349,530037000,1),(349,542737800,2),(349,562091400,1),(349,574792200,2),(349,594145800,1),(349,606241800,2),(349,625595400,1),(349,636481800,2),(349,657045000,1),(349,667931400,2),(349,688494600,1),(349,699381000,2),(349,719944200,1),(349,731435400,2),(349,751998600,1),(349,762885000,2),(349,783448200,1),(349,794334600,2),(349,814897800,1),(349,828203400,2),(349,846347400,1),(349,859653000,2),(349,877797000,1),(349,891102600,2),(349,909246600,1),(349,922552200,2),(349,941301000,1),(349,946647000,4),(349,954001800,2),(349,972750600,1),(349,985451400,2),(349,1004200200,1),(349,1017505800,2),(349,1035649800,1),(349,1048955400,2),(349,1067099400,1),(349,1080405000,2),(349,1099153800,1),(349,1111854600,2),(349,1130603400,1),(349,1143909000,2),(349,1162053000,1),(349,1174753800,2),(349,1193502600,1),(349,1207413000,2),(349,1223137800,1),(349,1238862600,2),(349,1254587400,1),(349,1270312200,2),(349,1286037000,1),(349,1301761800,2),(349,1317486600,1),(349,1333211400,2),(349,1349541000,1),(349,1365265800,2),(349,1380990600,1),(349,1396715400,2),(349,1412440200,1),(349,1428165000,2),(349,1443889800,1),(349,1459614600,2),(349,1475339400,1),(349,1491064200,2),(349,1506789000,1),(349,1522513800,2),(349,1538843400,1),(349,1554568200,2),(349,1570293000,1),(349,1586017800,2),(349,1601742600,1),(349,1617467400,2),(349,1633192200,1),(349,1648917000,2),(349,1664641800,1),(349,1680366600,2),(349,1696091400,1),(349,1712421000,2),(349,1728145800,1),(349,1743870600,2),(349,1759595400,1),(349,1775320200,2),(349,1791045000,1),(349,1806769800,2),(349,1822494600,1),(349,1838219400,2),(349,1853944200,1),(349,1869669000,2),(349,1885998600,1),(349,1901723400,2),(349,1917448200,1),(349,1933173000,2),(349,1948897800,1),(349,1964622600,2),(349,1980347400,1),(349,1996072200,2),(349,2011797000,1),(349,2027521800,2),(349,2043246600,1),(349,2058971400,2),(349,2075301000,1),(349,2091025800,2),(349,2106750600,1),(349,2122475400,2),(349,2138200200,1),(350,-2147483648,3),(350,-1672560000,1),(350,-1665388800,2),(350,-883641600,1),(350,-876124800,2),(350,-860400000,1),(350,-844675200,2),(350,-828345600,1),(350,-813225600,2),(350,31500000,3),(350,57686400,1),(350,67968000,2),(350,89136000,1),(350,100022400,2),(350,120585600,1),(350,131472000,2),(350,152035200,1),(350,162921600,2),(350,183484800,1),(350,194976000,2),(350,215539200,1),(350,226425600,2),(350,246988800,1),(350,257875200,2),(350,278438400,1),(350,289324800,2),(350,309888000,1),(350,320774400,2),(350,341337600,1),(350,352224000,2),(350,372787200,1),(350,386697600,2),(350,404841600,1),(350,415728000,2),(350,436291200,1),(350,447177600,2),(350,467740800,1),(350,478627200,2),(350,499190400,1),(350,511286400,2),(350,530035200,1),(350,542736000,2),(350,562089600,1),(350,574790400,2),(350,594144000,1),(350,606240000,2),(350,625593600,1),(350,636480000,2),(350,657043200,1),(350,667929600,2),(350,688492800,1),(350,699379200,2),(350,719942400,1),(350,731433600,2),(350,751996800,1),(350,762883200,2),(350,783446400,1),(350,794332800,2),(350,814896000,1),(350,828201600,2),(350,846345600,1),(350,859651200,2),(350,877795200,1),(350,891100800,2),(350,909244800,1),(350,922550400,2),(350,941299200,1),(350,954000000,2),(350,967305600,1),(350,985449600,2),(350,1004198400,1),(350,1017504000,2),(350,1035648000,1),(350,1048953600,2),(350,1067097600,1),(350,1080403200,2),(350,1099152000,1),(350,1111852800,2),(350,1130601600,1),(350,1143907200,2),(350,1162051200,1),(350,1174752000,2),(350,1193500800,1),(350,1207411200,2),(350,1223136000,1),(350,1238860800,2),(350,1254585600,1),(350,1270310400,2),(350,1286035200,1),(350,1301760000,2),(350,1317484800,1),(350,1333209600,2),(350,1349539200,1),(350,1365264000,2),(350,1380988800,1),(350,1396713600,2),(350,1412438400,1),(350,1428163200,2),(350,1443888000,1),(350,1459612800,2),(350,1475337600,1),(350,1491062400,2),(350,1506787200,1),(350,1522512000,2),(350,1538841600,1),(350,1554566400,2),(350,1570291200,1),(350,1586016000,2),(350,1601740800,1),(350,1617465600,2),(350,1633190400,1),(350,1648915200,2),(350,1664640000,1),(350,1680364800,2),(350,1696089600,1),(350,1712419200,2),(350,1728144000,1),(350,1743868800,2),(350,1759593600,1),(350,1775318400,2),(350,1791043200,1),(350,1806768000,2),(350,1822492800,1),(350,1838217600,2),(350,1853942400,1),(350,1869667200,2),(350,1885996800,1),(350,1901721600,2),(350,1917446400,1),(350,1933171200,2),(350,1948896000,1),(350,1964620800,2),(350,1980345600,1),(350,1996070400,2),(350,2011795200,1),(350,2027520000,2),(350,2043244800,1),(350,2058969600,2),(350,2075299200,1),(350,2091024000,2),(350,2106748800,1),(350,2122473600,2),(350,2138198400,1),(351,-2147483648,3),(351,-1680508800,1),(351,-1665388800,2),(351,-1646640000,1),(351,-1635753600,2),(351,-1615190400,1),(351,-1604304000,2),(351,-1583920800,3),(351,-883641600,1),(351,-876124800,2),(351,-860400000,1),(351,-844675200,2),(351,-828345600,1),(351,-813225600,2),(351,-94730400,3),(351,-71136000,1),(351,-55411200,2),(351,-37267200,1),(351,-25776000,2),(351,-5817600,1),(351,5673600,2),(351,25632000,1),(351,37728000,2),(351,57686400,1),(351,67968000,2),(351,89136000,1),(351,100022400,2),(351,120585600,1),(351,131472000,2),(351,152035200,1),(351,162921600,2),(351,183484800,1),(351,194976000,2),(351,215539200,1),(351,226425600,2),(351,246988800,1),(351,257875200,2),(351,278438400,1),(351,289324800,2),(351,309888000,1),(351,320774400,2),(351,341337600,1),(351,352224000,2),(351,372787200,1),(351,386092800,2),(351,404841600,1),(351,417542400,2),(351,436291200,1),(351,447177600,2),(351,467740800,1),(351,478627200,2),(351,499190400,1),(351,510076800,2),(351,530035200,1),(351,542736000,2),(351,562089600,1),(351,574790400,2),(351,594144000,1),(351,606240000,2),(351,625593600,1),(351,637689600,2),(351,657043200,1),(351,670348800,2),(351,686678400,1),(351,701798400,2),(351,718128000,1),(351,733248000,2),(351,749577600,1),(351,764697600,2),(351,781027200,1),(351,796147200,2),(351,812476800,1),(351,828201600,2),(351,844531200,1),(351,859651200,2),(351,875980800,1),(351,891100800,2),(351,907430400,1),(351,922550400,2),(351,938880000,1),(351,954000000,2),(351,967305600,1),(351,985449600,2),(351,1002384000,1),(351,1017504000,2),(351,1033833600,1),(351,1048953600,2),(351,1065283200,1),(351,1080403200,2),(351,1096732800,1),(351,1111852800,2),(351,1128182400,1),(351,1143907200,2),(351,1159632000,1),(351,1174752000,2),(351,1191686400,1),(351,1207411200,2),(351,1223136000,1),(351,1238860800,2),(351,1254585600,1),(351,1270310400,2),(351,1286035200,1),(351,1301760000,2),(351,1317484800,1),(351,1333209600,2),(351,1349539200,1),(351,1365264000,2),(351,1380988800,1),(351,1396713600,2),(351,1412438400,1),(351,1428163200,2),(351,1443888000,1),(351,1459612800,2),(351,1475337600,1),(351,1491062400,2),(351,1506787200,1),(351,1522512000,2),(351,1538841600,1),(351,1554566400,2),(351,1570291200,1),(351,1586016000,2),(351,1601740800,1),(351,1617465600,2),(351,1633190400,1),(351,1648915200,2),(351,1664640000,1),(351,1680364800,2),(351,1696089600,1),(351,1712419200,2),(351,1728144000,1),(351,1743868800,2),(351,1759593600,1),(351,1775318400,2),(351,1791043200,1),(351,1806768000,2),(351,1822492800,1),(351,1838217600,2),(351,1853942400,1),(351,1869667200,2),(351,1885996800,1),(351,1901721600,2),(351,1917446400,1),(351,1933171200,2),(351,1948896000,1),(351,1964620800,2),(351,1980345600,1),(351,1996070400,2),(351,2011795200,1),(351,2027520000,2),(351,2043244800,1),(351,2058969600,2),(351,2075299200,1),(351,2091024000,2),(351,2106748800,1),(351,2122473600,2),(351,2138198400,1),(352,-2147483648,3),(352,-1672558200,1),(352,-1665387000,2),(352,-883639800,1),(352,-876123000,2),(352,-860398200,1),(352,-844673400,2),(352,-828343800,1),(352,-813223800,2),(353,-2147483648,3),(353,-1672555500,1),(353,-1665384300,2),(353,-883637100,1),(353,-876120300,2),(353,-860395500,1),(353,-844670700,2),(353,-836469900,3),(353,152039700,1),(353,162926100,2),(353,436295700,1),(353,447182100,2),(353,690311700,1),(353,699383700,2),(353,1165079700,1),(353,1174756500,2),(353,1193505300,1),(353,1206810900,2),(353,1224954900,1),(353,1238260500,2),(353,2147483647,2),(354,-2147483648,3),(354,-1680508800,1),(354,-1665388800,2),(354,-1646640000,1),(354,-1635753600,2),(354,-1615190400,1),(354,-1604304000,2),(354,-1583920800,3),(354,-883641600,1),(354,-876124800,2),(354,-860400000,1),(354,-844675200,2),(354,-828345600,1),(354,-813225600,2),(354,-94730400,3),(354,-71136000,1),(354,-55411200,2),(354,-37267200,1),(354,-25776000,2),(354,-5817600,1),(354,5673600,2),(354,25632000,1),(354,37728000,2),(354,57686400,1),(354,67968000,2),(354,89136000,1),(354,100022400,2),(354,120585600,1),(354,131472000,2),(354,152035200,1),(354,162921600,2),(354,183484800,1),(354,194976000,2),(354,215539200,1),(354,226425600,2),(354,246988800,1),(354,257875200,2),(354,278438400,1),(354,289324800,2),(354,309888000,1),(354,320774400,2),(354,341337600,1),(354,352224000,2),(354,372787200,1),(354,386092800,2),(354,404841600,1),(354,417542400,2),(354,436291200,1),(354,447177600,2),(354,467740800,1),(354,478627200,2),(354,499190400,1),(354,510076800,2),(354,530035200,1),(354,542736000,2),(354,562089600,1),(354,574790400,2),(354,594144000,1),(354,606240000,2),(354,625593600,1),(354,637689600,2),(354,657043200,1),(354,670348800,2),(354,686678400,1),(354,701798400,2),(354,718128000,1),(354,733248000,2),(354,749577600,1),(354,764697600,2),(354,781027200,1),(354,796147200,2),(354,812476800,1),(354,828201600,2),(354,844531200,1),(354,859651200,2),(354,875980800,1),(354,891100800,2),(354,907430400,1),(354,922550400,2),(354,938880000,1),(354,954000000,2),(354,967305600,1),(354,985449600,2),(354,1002384000,1),(354,1017504000,2),(354,1033833600,1),(354,1048953600,2),(354,1065283200,1),(354,1080403200,2),(354,1096732800,1),(354,1111852800,2),(354,1128182400,1),(354,1143907200,2),(354,1159632000,1),(354,1174752000,2),(354,1191686400,1),(354,1207411200,2),(354,1223136000,1),(354,1238860800,2),(354,1254585600,1),(354,1270310400,2),(354,1286035200,1),(354,1301760000,2),(354,1317484800,1),(354,1333209600,2),(354,1349539200,1),(354,1365264000,2),(354,1380988800,1),(354,1396713600,2),(354,1412438400,1),(354,1428163200,2),(354,1443888000,1),(354,1459612800,2),(354,1475337600,1),(354,1491062400,2),(354,1506787200,1),(354,1522512000,2),(354,1538841600,1),(354,1554566400,2),(354,1570291200,1),(354,1586016000,2),(354,1601740800,1),(354,1617465600,2),(354,1633190400,1),(354,1648915200,2),(354,1664640000,1),(354,1680364800,2),(354,1696089600,1),(354,1712419200,2),(354,1728144000,1),(354,1743868800,2),(354,1759593600,1),(354,1775318400,2),(354,1791043200,1),(354,1806768000,2),(354,1822492800,1),(354,1838217600,2),(354,1853942400,1),(354,1869667200,2),(354,1885996800,1),(354,1901721600,2),(354,1917446400,1),(354,1933171200,2),(354,1948896000,1),(354,1964620800,2),(354,1980345600,1),(354,1996070400,2),(354,2011795200,1),(354,2027520000,2),(354,2043244800,1),(354,2058969600,2),(354,2075299200,1),(354,2091024000,2),(354,2106748800,1),(354,2122473600,2),(354,2138198400,1),(355,-2147483648,1),(355,352216800,3),(355,372785400,2),(355,384273000,3),(355,404839800,2),(355,415722600,3),(355,436289400,2),(355,447172200,3),(355,467739000,2),(355,478621800,3),(355,499188600,4),(355,511282800,3),(355,530033400,4),(355,542732400,3),(355,562087800,4),(355,574786800,3),(355,594142200,4),(355,606236400,3),(355,625591800,4),(355,636476400,3),(355,657041400,4),(355,667926000,3),(355,688491000,4),(355,699375600,3),(355,719940600,4),(355,731430000,3),(355,751995000,4),(355,762879600,3),(355,783444600,4),(355,794329200,3),(355,814894200,4),(355,828198000,3),(355,846343800,4),(355,859647600,3),(355,877793400,4),(355,891097200,3),(355,909243000,4),(355,922546800,3),(355,941297400,4),(355,953996400,3),(355,967303800,4),(355,985446000,3),(355,1004196600,4),(355,1017500400,3),(355,1035646200,4),(355,1048950000,3),(355,1067095800,4),(355,1080399600,3),(355,1099150200,4),(355,1111849200,3),(355,1130599800,4),(355,1143903600,3),(355,1162049400,4),(355,1174748400,3),(355,1193499000,4),(355,1207407600,3),(355,1223134200,4),(355,1238857200,3),(355,1254583800,4),(355,1270306800,3),(355,1286033400,4),(355,1301756400,3),(355,1317483000,4),(355,1333206000,3),(355,1349537400,4),(355,1365260400,3),(355,1380987000,4),(355,1396710000,3),(355,1412436600,4),(355,1428159600,3),(355,1443886200,4),(355,1459609200,3),(355,1475335800,4),(355,1491058800,3),(355,1506785400,4),(355,1522508400,3),(355,1538839800,4),(355,1554562800,3),(355,1570289400,4),(355,1586012400,3),(355,1601739000,4),(355,1617462000,3),(355,1633188600,4),(355,1648911600,3),(355,1664638200,4),(355,1680361200,3),(355,1696087800,4),(355,1712415600,3),(355,1728142200,4),(355,1743865200,3),(355,1759591800,4),(355,1775314800,3),(355,1791041400,4),(355,1806764400,3),(355,1822491000,4),(355,1838214000,3),(355,1853940600,4),(355,1869663600,3),(355,1885995000,4),(355,1901718000,3),(355,1917444600,4),(355,1933167600,3),(355,1948894200,4),(355,1964617200,3),(355,1980343800,4),(355,1996066800,3),(355,2011793400,4),(355,2027516400,3),(355,2043243000,4),(355,2058966000,3),(355,2075297400,4),(355,2091020400,3),(355,2106747000,4),(355,2122470000,3),(355,2138196600,4),(355,2147483647,4),(356,-2147483648,3),(356,-1672560000,1),(356,-1665388800,2),(356,-883641600,1),(356,-876124800,2),(356,-860400000,1),(356,-844675200,2),(356,-828345600,1),(356,-813225600,2),(356,31500000,3),(356,57686400,1),(356,67968000,2),(356,625593600,1),(356,636480000,2),(356,657043200,1),(356,667929600,2),(356,688492800,1),(356,699379200,2),(356,709912800,3),(356,719942400,1),(356,731433600,2),(356,751996800,1),(356,762883200,2),(357,-2147483648,1),(357,352216800,3),(357,372785400,2),(357,384273000,3),(357,404839800,2),(357,415722600,3),(357,436289400,2),(357,447172200,3),(357,467739000,2),(357,478621800,3),(357,499188600,4),(357,511282800,3),(357,530033400,4),(357,542732400,3),(357,562087800,4),(357,574786800,3),(357,594142200,4),(357,606236400,3),(357,625591800,4),(357,636476400,3),(357,657041400,4),(357,667926000,3),(357,688491000,4),(357,699375600,3),(357,719940600,4),(357,731430000,3),(357,751995000,4),(357,762879600,3),(357,783444600,4),(357,794329200,3),(357,814894200,4),(357,828198000,3),(357,846343800,4),(357,859647600,3),(357,877793400,4),(357,891097200,3),(357,909243000,4),(357,922546800,3),(357,941297400,4),(357,953996400,3),(357,967303800,4),(357,985446000,3),(357,1004196600,4),(357,1017500400,3),(357,1035646200,4),(357,1048950000,3),(357,1067095800,4),(357,1080399600,3),(357,1099150200,4),(357,1111849200,3),(357,1130599800,4),(357,1143903600,3),(357,1162049400,4),(357,1174748400,3),(357,1193499000,4),(357,1207407600,3),(357,1223134200,4),(357,1238857200,3),(357,1254583800,4),(357,1270306800,3),(357,1286033400,4),(357,1301756400,3),(357,1317483000,4),(357,1333206000,3),(357,1349537400,4),(357,1365260400,3),(357,1380987000,4),(357,1396710000,3),(357,1412436600,4),(357,1428159600,3),(357,1443886200,4),(357,1459609200,3),(357,1475335800,4),(357,1491058800,3),(357,1506785400,4),(357,1522508400,3),(357,1538839800,4),(357,1554562800,3),(357,1570289400,4),(357,1586012400,3),(357,1601739000,4),(357,1617462000,3),(357,1633188600,4),(357,1648911600,3),(357,1664638200,4),(357,1680361200,3),(357,1696087800,4),(357,1712415600,3),(357,1728142200,4),(357,1743865200,3),(357,1759591800,4),(357,1775314800,3),(357,1791041400,4),(357,1806764400,3),(357,1822491000,4),(357,1838214000,3),(357,1853940600,4),(357,1869663600,3),(357,1885995000,4),(357,1901718000,3),(357,1917444600,4),(357,1933167600,3),(357,1948894200,4),(357,1964617200,3),(357,1980343800,4),(357,1996066800,3),(357,2011793400,4),(357,2027516400,3),(357,2043243000,4),(357,2058966000,3),(357,2075297400,4),(357,2091020400,3),(357,2106747000,4),(357,2122470000,3),(357,2138196600,4),(357,2147483647,4),(358,-2147483648,3),(358,-1672560000,1),(358,-1665388800,2),(358,-883641600,1),(358,-876124800,2),(358,-860400000,1),(358,-844675200,2),(358,-828345600,1),(358,-813225600,2),(358,31500000,3),(358,57686400,1),(358,67968000,2),(358,89136000,1),(358,100022400,2),(358,120585600,1),(358,131472000,2),(358,152035200,1),(358,162921600,2),(358,183484800,1),(358,194976000,2),(358,215539200,1),(358,226425600,2),(358,246988800,1),(358,257875200,2),(358,278438400,1),(358,289324800,2),(358,309888000,1),(358,320774400,2),(358,341337600,1),(358,352224000,2),(358,372787200,1),(358,384278400,2),(358,404841600,1),(358,415728000,2),(358,436291200,1),(358,447177600,2),(358,467740800,1),(358,478627200,2),(358,499190400,1),(358,511286400,2),(358,530035200,1),(358,542736000,2),(358,561484800,1),(358,574790400,2),(358,594144000,1),(358,606240000,2),(358,625593600,1),(358,637689600,2),(358,657043200,1),(358,667929600,2),(358,688492800,1),(358,699379200,2),(358,719942400,1),(358,731433600,2),(358,751996800,1),(358,762883200,2),(358,783446400,1),(358,796147200,2),(358,814896000,1),(358,828201600,2),(358,846345600,1),(358,859651200,2),(358,877795200,1),(358,891100800,2),(358,909244800,1),(358,922550400,2),(358,941299200,1),(358,954000000,2),(358,967305600,1),(358,985449600,2),(358,1004198400,1),(358,1017504000,2),(358,1035648000,1),(358,1048953600,2),(358,1067097600,1),(358,1080403200,2),(358,1099152000,1),(358,1111852800,2),(358,1130601600,1),(358,1143907200,2),(358,1162051200,1),(358,1174752000,2),(358,1193500800,1),(358,1207411200,2),(358,1223136000,1),(358,1238860800,2),(358,1254585600,1),(358,1270310400,2),(358,1286035200,1),(358,1301760000,2),(358,1317484800,1),(358,1333209600,2),(358,1349539200,1),(358,1365264000,2),(358,1380988800,1),(358,1396713600,2),(358,1412438400,1),(358,1428163200,2),(358,1443888000,1),(358,1459612800,2),(358,1475337600,1),(358,1491062400,2),(358,1506787200,1),(358,1522512000,2),(358,1538841600,1),(358,1554566400,2),(358,1570291200,1),(358,1586016000,2),(358,1601740800,1),(358,1617465600,2),(358,1633190400,1),(358,1648915200,2),(358,1664640000,1),(358,1680364800,2),(358,1696089600,1),(358,1712419200,2),(358,1728144000,1),(358,1743868800,2),(358,1759593600,1),(358,1775318400,2),(358,1791043200,1),(358,1806768000,2),(358,1822492800,1),(358,1838217600,2),(358,1853942400,1),(358,1869667200,2),(358,1885996800,1),(358,1901721600,2),(358,1917446400,1),(358,1933171200,2),(358,1948896000,1),(358,1964620800,2),(358,1980345600,1),(358,1996070400,2),(358,2011795200,1),(358,2027520000,2),(358,2043244800,1),(358,2058969600,2),(358,2075299200,1),(358,2091024000,2),(358,2106748800,1),(358,2122473600,2),(358,2138198400,1),(359,-2147483648,3),(359,-1672560000,1),(359,-1665388800,2),(359,-883641600,1),(359,-876124800,2),(359,-860400000,1),(359,-844675200,2),(359,-828345600,1),(359,-813225600,2),(359,31500000,3),(359,57686400,1),(359,67968000,2),(359,89136000,1),(359,100022400,2),(359,120585600,1),(359,131472000,2),(359,152035200,1),(359,162921600,2),(359,183484800,1),(359,194976000,2),(359,215539200,1),(359,226425600,2),(359,246988800,1),(359,257875200,2),(359,278438400,1),(359,289324800,2),(359,309888000,1),(359,320774400,2),(359,341337600,1),(359,352224000,2),(359,372787200,1),(359,386697600,2),(359,404841600,1),(359,415728000,2),(359,436291200,1),(359,447177600,2),(359,467740800,1),(359,478627200,2),(359,499190400,1),(359,511286400,2),(359,530035200,1),(359,542736000,2),(359,562089600,1),(359,574790400,2),(359,594144000,1),(359,606240000,2),(359,625593600,1),(359,636480000,2),(359,657043200,1),(359,667929600,2),(359,688492800,1),(359,699379200,2),(359,719942400,1),(359,731433600,2),(359,751996800,1),(359,762883200,2),(359,783446400,1),(359,794332800,2),(359,814896000,1),(359,828201600,2),(359,846345600,1),(359,859651200,2),(359,877795200,1),(359,891100800,2),(359,909244800,1),(359,922550400,2),(359,941299200,1),(359,954000000,2),(359,967305600,1),(359,985449600,2),(359,1004198400,1),(359,1017504000,2),(359,1035648000,1),(359,1048953600,2),(359,1067097600,1),(359,1080403200,2),(359,1099152000,1),(359,1111852800,2),(359,1130601600,1),(359,1143907200,2),(359,1162051200,1),(359,1174752000,2),(359,1193500800,1),(359,1207411200,2),(359,1223136000,1),(359,1238860800,2),(359,1254585600,1),(359,1270310400,2),(359,1286035200,1),(359,1301760000,2),(359,1317484800,1),(359,1333209600,2),(359,1349539200,1),(359,1365264000,2),(359,1380988800,1),(359,1396713600,2),(359,1412438400,1),(359,1428163200,2),(359,1443888000,1),(359,1459612800,2),(359,1475337600,1),(359,1491062400,2),(359,1506787200,1),(359,1522512000,2),(359,1538841600,1),(359,1554566400,2),(359,1570291200,1),(359,1586016000,2),(359,1601740800,1),(359,1617465600,2),(359,1633190400,1),(359,1648915200,2),(359,1664640000,1),(359,1680364800,2),(359,1696089600,1),(359,1712419200,2),(359,1728144000,1),(359,1743868800,2),(359,1759593600,1),(359,1775318400,2),(359,1791043200,1),(359,1806768000,2),(359,1822492800,1),(359,1838217600,2),(359,1853942400,1),(359,1869667200,2),(359,1885996800,1),(359,1901721600,2),(359,1917446400,1),(359,1933171200,2),(359,1948896000,1),(359,1964620800,2),(359,1980345600,1),(359,1996070400,2),(359,2011795200,1),(359,2027520000,2),(359,2043244800,1),(359,2058969600,2),(359,2075299200,1),(359,2091024000,2),(359,2106748800,1),(359,2122473600,2),(359,2138198400,1),(360,-2147483648,3),(360,-1672558200,1),(360,-1665387000,2),(360,-883639800,1),(360,-876123000,2),(360,-860398200,1),(360,-844673400,2),(360,-828343800,1),(360,-813223800,2),(361,-2147483648,3),(361,-1672552800,1),(361,-1665381600,2),(361,-883634400,1),(361,-876117600,2),(361,-860392800,1),(361,-844668000,2),(361,-836467200,3),(361,152042400,1),(361,162928800,2),(361,436298400,1),(361,447184800,2),(361,690314400,1),(361,699386400,2),(361,1165082400,1),(361,1174759200,2),(361,1193508000,1),(361,1206813600,2),(361,1224957600,1),(361,1238263200,2),(362,-2147483648,3),(362,-1672560000,1),(362,-1665388800,2),(362,-883641600,1),(362,-876124800,2),(362,-860400000,1),(362,-844675200,2),(362,-828345600,1),(362,-813225600,2),(362,31500000,3),(362,57686400,1),(362,67968000,2),(362,625593600,1),(362,636480000,2),(362,657043200,1),(362,667929600,2),(362,688492800,1),(362,699379200,2),(363,-2147483648,3),(363,-1672558200,1),(363,-1665387000,2),(363,-883639800,1),(363,-876123000,2),(363,-860398200,1),(363,-844673400,2),(363,-828343800,1),(363,-813223800,2),(363,31501800,3),(363,57688200,1),(363,67969800,2),(363,89137800,1),(363,100024200,2),(363,120587400,1),(363,131473800,2),(363,152037000,1),(363,162923400,2),(363,183486600,1),(363,194977800,2),(363,215541000,1),(363,226427400,2),(363,246990600,1),(363,257877000,2),(363,278440200,1),(363,289326600,2),(363,309889800,1),(363,320776200,2),(363,341339400,1),(363,352225800,2),(363,372789000,1),(363,384280200,2),(363,404843400,1),(363,415729800,2),(363,436293000,1),(363,447179400,2),(363,467742600,1),(363,478629000,2),(363,499192200,1),(363,511288200,2),(363,530037000,1),(363,542737800,2),(363,562091400,1),(363,574792200,2),(363,594145800,1),(363,606241800,2),(363,625595400,1),(363,637691400,2),(363,657045000,1),(363,667931400,2),(363,688494600,1),(363,701195400,2),(363,719944200,1),(363,731435400,2),(363,751998600,1),(363,764094600,2),(363,783448200,1),(363,796149000,2),(363,814897800,1),(363,828203400,2),(363,846347400,1),(363,859653000,2),(363,877797000,1),(363,891102600,2),(363,909246600,1),(363,922552200,2),(363,941301000,1),(363,954001800,2),(363,972750600,1),(363,985451400,2),(363,1004200200,1),(363,1017505800,2),(363,1035649800,1),(363,1048955400,2),(363,1067099400,1),(363,1080405000,2),(363,1099153800,1),(363,1111854600,2),(363,1130603400,1),(363,1143909000,2),(363,1162053000,1),(363,1174753800,2),(363,1193502600,1),(363,1207413000,2),(363,1223137800,1),(363,1238862600,2),(363,1254587400,1),(363,1270312200,2),(363,1286037000,1),(363,1301761800,2),(363,1317486600,1),(363,1333211400,2),(363,1349541000,1),(363,1365265800,2),(363,1380990600,1),(363,1396715400,2),(363,1412440200,1),(363,1428165000,2),(363,1443889800,1),(363,1459614600,2),(363,1475339400,1),(363,1491064200,2),(363,1506789000,1),(363,1522513800,2),(363,1538843400,1),(363,1554568200,2),(363,1570293000,1),(363,1586017800,2),(363,1601742600,1),(363,1617467400,2),(363,1633192200,1),(363,1648917000,2),(363,1664641800,1),(363,1680366600,2),(363,1696091400,1),(363,1712421000,2),(363,1728145800,1),(363,1743870600,2),(363,1759595400,1),(363,1775320200,2),(363,1791045000,1),(363,1806769800,2),(363,1822494600,1),(363,1838219400,2),(363,1853944200,1),(363,1869669000,2),(363,1885998600,1),(363,1901723400,2),(363,1917448200,1),(363,1933173000,2),(363,1948897800,1),(363,1964622600,2),(363,1980347400,1),(363,1996072200,2),(363,2011797000,1),(363,2027521800,2),(363,2043246600,1),(363,2058971400,2),(363,2075301000,1),(363,2091025800,2),(363,2106750600,1),(363,2122475400,2),(363,2138200200,1),(364,-2147483648,3),(364,-1672560000,1),(364,-1665388800,2),(364,-883641600,1),(364,-876124800,2),(364,-860400000,1),(364,-844675200,2),(364,-828345600,1),(364,-813225600,2),(364,31500000,3),(364,57686400,1),(364,67968000,2),(364,89136000,1),(364,100022400,2),(364,120585600,1),(364,131472000,2),(364,152035200,1),(364,162921600,2),(364,183484800,1),(364,194976000,2),(364,215539200,1),(364,226425600,2),(364,246988800,1),(364,257875200,2),(364,278438400,1),(364,289324800,2),(364,309888000,1),(364,320774400,2),(364,341337600,1),(364,352224000,2),(364,372787200,1),(364,386697600,2),(364,404841600,1),(364,415728000,2),(364,436291200,1),(364,447177600,2),(364,467740800,1),(364,478627200,2),(364,499190400,1),(364,511286400,2),(364,530035200,1),(364,542736000,2),(364,562089600,1),(364,574790400,2),(364,594144000,1),(364,606240000,2),(364,625593600,1),(364,636480000,2),(364,657043200,1),(364,667929600,2),(364,688492800,1),(364,699379200,2),(364,719942400,1),(364,731433600,2),(364,751996800,1),(364,762883200,2),(364,783446400,1),(364,794332800,2),(364,814896000,1),(364,828201600,2),(364,846345600,1),(364,859651200,2),(364,877795200,1),(364,891100800,2),(364,909244800,1),(364,922550400,2),(364,941299200,1),(364,954000000,2),(364,967305600,1),(364,985449600,2),(364,1004198400,1),(364,1017504000,2),(364,1035648000,1),(364,1048953600,2),(364,1067097600,1),(364,1080403200,2),(364,1099152000,1),(364,1111852800,2),(364,1130601600,1),(364,1143907200,2),(364,1162051200,1),(364,1174752000,2),(364,1193500800,1),(364,1207411200,2),(364,1223136000,1),(364,1238860800,2),(364,1254585600,1),(364,1270310400,2),(364,1286035200,1),(364,1301760000,2),(364,1317484800,1),(364,1333209600,2),(364,1349539200,1),(364,1365264000,2),(364,1380988800,1),(364,1396713600,2),(364,1412438400,1),(364,1428163200,2),(364,1443888000,1),(364,1459612800,2),(364,1475337600,1),(364,1491062400,2),(364,1506787200,1),(364,1522512000,2),(364,1538841600,1),(364,1554566400,2),(364,1570291200,1),(364,1586016000,2),(364,1601740800,1),(364,1617465600,2),(364,1633190400,1),(364,1648915200,2),(364,1664640000,1),(364,1680364800,2),(364,1696089600,1),(364,1712419200,2),(364,1728144000,1),(364,1743868800,2),(364,1759593600,1),(364,1775318400,2),(364,1791043200,1),(364,1806768000,2),(364,1822492800,1),(364,1838217600,2),(364,1853942400,1),(364,1869667200,2),(364,1885996800,1),(364,1901721600,2),(364,1917446400,1),(364,1933171200,2),(364,1948896000,1),(364,1964620800,2),(364,1980345600,1),(364,1996070400,2),(364,2011795200,1),(364,2027520000,2),(364,2043244800,1),(364,2058969600,2),(364,2075299200,1),(364,2091024000,2),(364,2106748800,1),(364,2122473600,2),(364,2138198400,1),(365,-2147483648,3),(365,-1680508800,1),(365,-1665388800,2),(365,-1646640000,1),(365,-1635753600,2),(365,-1615190400,1),(365,-1604304000,2),(365,-1583920800,3),(365,-883641600,1),(365,-876124800,2),(365,-860400000,1),(365,-844675200,2),(365,-828345600,1),(365,-813225600,2),(365,-94730400,3),(365,-71136000,1),(365,-55411200,2),(365,-37267200,1),(365,-25776000,2),(365,-5817600,1),(365,5673600,2),(365,25632000,1),(365,37728000,2),(365,57686400,1),(365,67968000,2),(365,89136000,1),(365,100022400,2),(365,120585600,1),(365,131472000,2),(365,152035200,1),(365,162921600,2),(365,183484800,1),(365,194976000,2),(365,215539200,1),(365,226425600,2),(365,246988800,1),(365,257875200,2),(365,278438400,1),(365,289324800,2),(365,309888000,1),(365,320774400,2),(365,341337600,1),(365,352224000,2),(365,372787200,1),(365,386092800,2),(365,404841600,1),(365,417542400,2),(365,436291200,1),(365,447177600,2),(365,467740800,1),(365,478627200,2),(365,499190400,1),(365,510076800,2),(365,530035200,1),(365,542736000,2),(365,562089600,1),(365,574790400,2),(365,594144000,1),(365,606240000,2),(365,625593600,1),(365,637689600,2),(365,657043200,1),(365,670348800,2),(365,686678400,1),(365,701798400,2),(365,718128000,1),(365,733248000,2),(365,749577600,1),(365,764697600,2),(365,781027200,1),(365,796147200,2),(365,812476800,1),(365,828201600,2),(365,844531200,1),(365,859651200,2),(365,875980800,1),(365,891100800,2),(365,907430400,1),(365,922550400,2),(365,938880000,1),(365,954000000,2),(365,967305600,1),(365,985449600,2),(365,1002384000,1),(365,1017504000,2),(365,1033833600,1),(365,1048953600,2),(365,1065283200,1),(365,1080403200,2),(365,1096732800,1),(365,1111852800,2),(365,1128182400,1),(365,1143907200,2),(365,1159632000,1),(365,1174752000,2),(365,1191686400,1),(365,1207411200,2),(365,1223136000,1),(365,1238860800,2),(365,1254585600,1),(365,1270310400,2),(365,1286035200,1),(365,1301760000,2),(365,1317484800,1),(365,1333209600,2),(365,1349539200,1),(365,1365264000,2),(365,1380988800,1),(365,1396713600,2),(365,1412438400,1),(365,1428163200,2),(365,1443888000,1),(365,1459612800,2),(365,1475337600,1),(365,1491062400,2),(365,1506787200,1),(365,1522512000,2),(365,1538841600,1),(365,1554566400,2),(365,1570291200,1),(365,1586016000,2),(365,1601740800,1),(365,1617465600,2),(365,1633190400,1),(365,1648915200,2),(365,1664640000,1),(365,1680364800,2),(365,1696089600,1),(365,1712419200,2),(365,1728144000,1),(365,1743868800,2),(365,1759593600,1),(365,1775318400,2),(365,1791043200,1),(365,1806768000,2),(365,1822492800,1),(365,1838217600,2),(365,1853942400,1),(365,1869667200,2),(365,1885996800,1),(365,1901721600,2),(365,1917446400,1),(365,1933171200,2),(365,1948896000,1),(365,1964620800,2),(365,1980345600,1),(365,1996070400,2),(365,2011795200,1),(365,2027520000,2),(365,2043244800,1),(365,2058969600,2),(365,2075299200,1),(365,2091024000,2),(365,2106748800,1),(365,2122473600,2),(365,2138198400,1),(366,-2147483648,3),(366,-1672560000,1),(366,-1665388800,2),(366,-883641600,1),(366,-876124800,2),(366,-860400000,1),(366,-844675200,2),(366,-828345600,1),(366,-813225600,2),(366,31500000,3),(366,57686400,1),(366,67968000,2),(366,89136000,1),(366,100022400,2),(366,120585600,1),(366,131472000,2),(366,152035200,1),(366,162921600,2),(366,183484800,1),(366,194976000,2),(366,215539200,1),(366,226425600,2),(366,246988800,1),(366,257875200,2),(366,278438400,1),(366,289324800,2),(366,309888000,1),(366,320774400,2),(366,341337600,1),(366,352224000,2),(366,372787200,1),(366,384278400,2),(366,404841600,1),(366,415728000,2),(366,436291200,1),(366,447177600,2),(366,467740800,1),(366,478627200,2),(366,499190400,1),(366,511286400,2),(366,530035200,1),(366,542736000,2),(366,561484800,1),(366,574790400,2),(366,594144000,1),(366,606240000,2),(366,625593600,1),(366,637689600,2),(366,657043200,1),(366,667929600,2),(366,688492800,1),(366,699379200,2),(366,719942400,1),(366,731433600,2),(366,751996800,1),(366,762883200,2),(366,783446400,1),(366,796147200,2),(366,814896000,1),(366,828201600,2),(366,846345600,1),(366,859651200,2),(366,877795200,1),(366,891100800,2),(366,909244800,1),(366,922550400,2),(366,941299200,1),(366,954000000,2),(366,967305600,1),(366,985449600,2),(366,1004198400,1),(366,1017504000,2),(366,1035648000,1),(366,1048953600,2),(366,1067097600,1),(366,1080403200,2),(366,1099152000,1),(366,1111852800,2),(366,1130601600,1),(366,1143907200,2),(366,1162051200,1),(366,1174752000,2),(366,1193500800,1),(366,1207411200,2),(366,1223136000,1),(366,1238860800,2),(366,1254585600,1),(366,1270310400,2),(366,1286035200,1),(366,1301760000,2),(366,1317484800,1),(366,1333209600,2),(366,1349539200,1),(366,1365264000,2),(366,1380988800,1),(366,1396713600,2),(366,1412438400,1),(366,1428163200,2),(366,1443888000,1),(366,1459612800,2),(366,1475337600,1),(366,1491062400,2),(366,1506787200,1),(366,1522512000,2),(366,1538841600,1),(366,1554566400,2),(366,1570291200,1),(366,1586016000,2),(366,1601740800,1),(366,1617465600,2),(366,1633190400,1),(366,1648915200,2),(366,1664640000,1),(366,1680364800,2),(366,1696089600,1),(366,1712419200,2),(366,1728144000,1),(366,1743868800,2),(366,1759593600,1),(366,1775318400,2),(366,1791043200,1),(366,1806768000,2),(366,1822492800,1),(366,1838217600,2),(366,1853942400,1),(366,1869667200,2),(366,1885996800,1),(366,1901721600,2),(366,1917446400,1),(366,1933171200,2),(366,1948896000,1),(366,1964620800,2),(366,1980345600,1),(366,1996070400,2),(366,2011795200,1),(366,2027520000,2),(366,2043244800,1),(366,2058969600,2),(366,2075299200,1),(366,2091024000,2),(366,2106748800,1),(366,2122473600,2),(366,2138198400,1),(367,-2147483648,3),(367,-1672552800,1),(367,-1665381600,2),(367,-883634400,1),(367,-876117600,2),(367,-860392800,1),(367,-844668000,2),(367,-836467200,3),(367,152042400,1),(367,162928800,2),(367,436298400,1),(367,447184800,2),(367,690314400,1),(367,699386400,2),(367,1165082400,1),(367,1174759200,2),(367,1193508000,1),(367,1206813600,2),(367,1224957600,1),(367,1238263200,2),(368,-2147483648,3),(368,-1672558200,1),(368,-1665387000,2),(368,-883639800,1),(368,-876123000,2),(368,-860398200,1),(368,-844673400,2),(368,-828343800,1),(368,-813223800,2),(368,31501800,3),(368,57688200,1),(368,67969800,2),(368,89137800,1),(368,100024200,2),(368,120587400,1),(368,131473800,2),(368,152037000,1),(368,162923400,2),(368,183486600,1),(368,194977800,2),(368,215541000,1),(368,226427400,2),(368,246990600,1),(368,257877000,2),(368,278440200,1),(368,289326600,2),(368,309889800,1),(368,320776200,2),(368,341339400,1),(368,352225800,2),(368,372789000,1),(368,386699400,2),(368,404843400,1),(368,415729800,2),(368,436293000,1),(368,447179400,2),(368,467742600,1),(368,478629000,2),(368,499192200,1),(368,511288200,2),(368,530037000,1),(368,542737800,2),(368,562091400,1),(368,574792200,2),(368,594145800,1),(368,606241800,2),(368,625595400,1),(368,636481800,2),(368,657045000,1),(368,667931400,2),(368,688494600,1),(368,699381000,2),(368,719944200,1),(368,731435400,2),(368,751998600,1),(368,762885000,2),(368,783448200,1),(368,794334600,2),(368,814897800,1),(368,828203400,2),(368,846347400,1),(368,859653000,2),(368,877797000,1),(368,891102600,2),(368,909246600,1),(368,922552200,2),(368,941301000,1),(368,946647000,4),(368,954001800,2),(368,972750600,1),(368,985451400,2),(368,1004200200,1),(368,1017505800,2),(368,1035649800,1),(368,1048955400,2),(368,1067099400,1),(368,1080405000,2),(368,1099153800,1),(368,1111854600,2),(368,1130603400,1),(368,1143909000,2),(368,1162053000,1),(368,1174753800,2),(368,1193502600,1),(368,1207413000,2),(368,1223137800,1),(368,1238862600,2),(368,1254587400,1),(368,1270312200,2),(368,1286037000,1),(368,1301761800,2),(368,1317486600,1),(368,1333211400,2),(368,1349541000,1),(368,1365265800,2),(368,1380990600,1),(368,1396715400,2),(368,1412440200,1),(368,1428165000,2),(368,1443889800,1),(368,1459614600,2),(368,1475339400,1),(368,1491064200,2),(368,1506789000,1),(368,1522513800,2),(368,1538843400,1),(368,1554568200,2),(368,1570293000,1),(368,1586017800,2),(368,1601742600,1),(368,1617467400,2),(368,1633192200,1),(368,1648917000,2),(368,1664641800,1),(368,1680366600,2),(368,1696091400,1),(368,1712421000,2),(368,1728145800,1),(368,1743870600,2),(368,1759595400,1),(368,1775320200,2),(368,1791045000,1),(368,1806769800,2),(368,1822494600,1),(368,1838219400,2),(368,1853944200,1),(368,1869669000,2),(368,1885998600,1),(368,1901723400,2),(368,1917448200,1),(368,1933173000,2),(368,1948897800,1),(368,1964622600,2),(368,1980347400,1),(368,1996072200,2),(368,2011797000,1),(368,2027521800,2),(368,2043246600,1),(368,2058971400,2),(368,2075301000,1),(368,2091025800,2),(368,2106750600,1),(368,2122475400,2),(368,2138200200,1),(369,-2147483648,0),(369,-1767209328,2),(369,-1206950400,1),(369,-1191355200,2),(369,-1175367600,1),(369,-1159819200,2),(369,-633812400,1),(369,-622062000,2),(369,-602276400,1),(369,-591825600,2),(369,-570740400,1),(369,-560203200,2),(369,-539118000,1),(369,-531345600,2),(369,-191358000,1),(369,-184190400,2),(369,-155156400,1),(369,-150062400,2),(369,-128890800,1),(369,-121118400,2),(369,-99946800,1),(369,-89582400,2),(369,-68410800,1),(369,-57960000,2),(369,499755600,1),(369,511243200,2),(369,530600400,1),(369,540273600,2),(369,562136400,1),(369,571204800,2),(369,1214283600,3),(369,1384056000,2),(369,2147483647,2),(370,-2147483648,0),(370,-1767217820,2),(370,-1206961200,1),(370,-1191366000,2),(370,-1175378400,1),(370,-1159830000,2),(370,-633823200,1),(370,-622072800,2),(370,-602287200,1),(370,-591836400,2),(370,-570751200,1),(370,-560214000,2),(370,-539128800,1),(370,-531356400,2),(370,-191368800,1),(370,-184201200,2),(370,-155167200,1),(370,-150073200,2),(370,-128901600,1),(370,-121129200,2),(370,-99957600,1),(370,-89593200,2),(370,-68421600,1),(370,-57970800,2),(370,499744800,1),(370,511232400,2),(370,530589600,1),(370,540262800,2),(370,562125600,1),(370,571194000,2),(370,592970400,1),(370,602038800,2),(370,624420000,1),(370,634698000,2),(370,938916000,1),(370,951613200,2),(370,970970400,1),(370,971571600,2),(370,1003024800,1),(370,1013907600,2),(370,2147483647,2),(371,-2147483648,0),(371,-1767214412,2),(371,-1206957600,1),(371,-1191362400,2),(371,-1175374800,1),(371,-1159826400,2),(371,-633819600,1),(371,-622069200,2),(371,-602283600,1),(371,-591832800,2),(371,-570747600,1),(371,-560210400,2),(371,-539125200,1),(371,-531352800,2),(371,-195426000,1),(371,-184197600,2),(371,-155163600,1),(371,-150069600,2),(371,-128898000,1),(371,-121125600,2),(371,-99954000,1),(371,-89589600,2),(371,-68418000,1),(371,-57967200,2),(371,499748400,1),(371,511236000,2),(371,530593200,1),(371,540266400,2),(371,562129200,1),(371,571197600,2),(371,592974000,1),(371,602042400,2),(371,624423600,1),(371,634701600,2),(371,656478000,1),(371,666756000,2),(371,687927600,1),(371,697600800,2),(371,719982000,1),(371,728445600,2),(371,750826800,1),(371,761709600,2),(371,782276400,1),(371,793159200,2),(371,813726000,1),(371,824004000,2),(371,844570800,1),(371,856058400,2),(371,876106800,1),(371,888717600,2),(371,908074800,1),(371,919562400,2),(371,938919600,1),(371,951616800,2),(371,970974000,1),(371,982461600,2),(371,1003028400,1),(371,1013911200,2),(371,1036292400,1),(371,1045360800,2),(371,1066532400,1),(371,1076810400,2),(371,1099364400,1),(371,1108864800,2),(371,1129431600,1),(371,1140314400,2),(371,1162695600,1),(371,1172368800,2),(371,1192330800,1),(371,1203213600,2),(371,1224385200,1),(371,1234663200,2),(371,1255834800,1),(371,1266717600,2),(371,1287284400,1),(371,1298167200,2),(371,1318734000,1),(371,1330221600,2),(371,1350788400,1),(371,1361066400,2),(371,1382238000,1),(371,1392516000,2),(371,1413687600,1),(371,1424570400,2),(371,1445137200,1),(371,1456020000,2),(371,1476586800,1),(371,1487469600,2),(371,1508036400,1),(371,1518919200,2),(371,1541300400,1),(371,1550368800,2),(371,2147483647,2),(372,-2147483648,0),(372,-1767211196,2),(372,-1206954000,1),(372,-1191358800,2),(372,-1175371200,1),(372,-1159822800,2),(372,-633816000,1),(372,-622065600,2),(372,-602280000,1),(372,-591829200,2),(372,-570744000,1),(372,-560206800,2),(372,-539121600,1),(372,-531349200,2),(372,-191361600,1),(372,-184194000,2),(372,-155160000,1),(372,-150066000,2),(372,-128894400,1),(372,-121122000,2),(372,-99950400,1),(372,-89586000,2),(372,-68414400,1),(372,-57963600,2),(372,499752000,1),(372,511239600,2),(372,530596800,1),(372,540270000,2),(372,562132800,1),(372,571201200,2),(372,750830400,1),(372,761713200,2),(372,2147483647,2),(373,-1693706400,0),(373,-1680483600,1),(373,-1663455600,2),(373,-1650150000,3),(373,-1632006000,2),(373,-1618700400,3),(373,-938905200,2),(373,-857257200,3),(373,-844556400,2),(373,-828226800,3),(373,-812502000,2),(373,-796777200,3),(373,-781052400,2),(373,-766623600,3),(373,228877200,2),(373,243997200,3),(373,260326800,2),(373,276051600,3),(373,291776400,2),(373,307501200,3),(373,323830800,2),(373,338950800,3),(373,354675600,2),(373,370400400,3),(373,386125200,2),(373,401850000,3),(373,417574800,2),(373,433299600,3),(373,449024400,2),(373,465354000,3),(373,481078800,2),(373,496803600,3),(373,512528400,2),(373,528253200,3),(373,543978000,2),(373,559702800,3),(373,575427600,2),(373,591152400,3),(373,606877200,2),(373,622602000,3),(373,638326800,2),(373,654656400,3),(373,670381200,2),(373,686106000,3),(373,701830800,2),(373,717555600,3),(373,733280400,2),(373,749005200,3),(373,764730000,2),(373,780454800,3),(373,796179600,2),(373,811904400,3),(373,828234000,2),(373,846378000,3),(373,859683600,2),(373,877827600,3),(373,891133200,2),(373,909277200,3),(373,922582800,2),(373,941331600,3),(373,954032400,2),(373,972781200,3),(373,985482000,2),(373,1004230800,3),(373,1017536400,2),(373,1035680400,3),(373,1048986000,2),(373,1067130000,3),(373,1080435600,2),(373,1099184400,3),(373,1111885200,2),(373,1130634000,3),(373,1143334800,2),(373,1162083600,3),(373,1174784400,2),(373,1193533200,3),(373,1206838800,2),(373,1224982800,3),(373,1238288400,2),(373,1256432400,3),(373,1269738000,2),(373,1288486800,3),(373,1301187600,2),(373,1319936400,3),(373,1332637200,2),(373,1351386000,3),(373,1364691600,2),(373,1382835600,3),(373,1396141200,2),(373,1414285200,3),(373,1427590800,2),(373,1445734800,3),(373,1459040400,2),(373,1477789200,3),(373,1490490000,2),(373,1509238800,3),(373,1521939600,2),(373,1540688400,3),(373,1553994000,2),(373,1572138000,3),(373,1585443600,2),(373,1603587600,3),(373,1616893200,2),(373,1635642000,3),(373,1648342800,2),(373,1667091600,3),(373,1679792400,2),(373,1698541200,3),(373,1711846800,2),(373,1729990800,3),(373,1743296400,2),(373,1761440400,3),(373,1774746000,2),(373,1792890000,3),(373,1806195600,2),(373,1824944400,3),(373,1837645200,2),(373,1856394000,3),(373,1869094800,2),(373,1887843600,3),(373,1901149200,2),(373,1919293200,3),(373,1932598800,2),(373,1950742800,3),(373,1964048400,2),(373,1982797200,3),(373,1995498000,2),(373,2014246800,3),(373,2026947600,2),(373,2045696400,3),(373,2058397200,2),(373,2077146000,3),(373,2090451600,2),(373,2108595600,3),(373,2121901200,2),(373,2140045200,3),(374,-1633276800,0),(374,-1615136400,1),(374,-1601827200,0),(374,-1583686800,1),(374,-880214400,2),(374,-769395600,3),(374,-765392400,1),(374,-84384000,0),(374,-68662800,1),(374,-52934400,0),(374,-37213200,1),(374,-21484800,0),(374,-5763600,1),(374,9964800,0),(374,25686000,1),(374,41414400,0),(374,57740400,1),(374,73468800,0),(374,89190000,1),(374,104918400,0),(374,120639600,1),(374,126691200,0),(374,152089200,1),(374,162374400,0),(374,183538800,1),(374,199267200,0),(374,215593200,1),(374,230716800,0),(374,247042800,1),(374,262771200,0),(374,278492400,1),(374,294220800,0),(374,309942000,1),(374,325670400,0),(374,341391600,1),(374,357120000,0),(374,372841200,1),(374,388569600,0),(374,404895600,1),(374,420019200,0),(374,436345200,1),(374,452073600,0),(374,467794800,1),(374,483523200,0),(374,499244400,1),(374,514972800,0),(374,530694000,1),(374,544608000,0),(374,562143600,1),(374,576057600,0),(374,594198000,1),(374,607507200,0),(374,625647600,1),(374,638956800,0),(374,657097200,1),(374,671011200,0),(374,688546800,1),(374,702460800,0),(374,719996400,1),(374,733910400,0),(374,752050800,1),(374,765360000,0),(374,783500400,1),(374,796809600,0),(374,814950000,1),(374,828864000,0),(374,846399600,1),(374,860313600,0),(374,877849200,1),(374,891763200,0),(374,909298800,1),(374,923212800,0),(374,941353200,1),(374,954662400,0),(374,972802800,1),(374,986112000,0),(374,1004252400,1),(374,1018166400,0),(374,1035702000,1),(374,1049616000,0),(374,1067151600,1),(374,1081065600,0),(374,1099206000,1),(374,1112515200,0),(374,1130655600,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,-2147483648,0),(375,-2131645536,2),(375,-1696276800,1),(375,-1680469200,2),(375,-1632074400,1),(375,-1615143600,2),(375,-1566763200,1),(375,-1557090000,2),(375,-1535486400,1),(375,-1524949200,2),(375,-1504468800,1),(375,-1493413200,2),(375,-1472414400,1),(375,-1461963600,2),(375,-1440964800,1),(375,-1429390800,2),(375,-1409515200,1),(375,-1396731600,2),(375,-1376856000,1),(375,-1366491600,2),(375,-1346616000,1),(375,-1333832400,2),(375,-1313956800,1),(375,-1303678800,2),(375,-1282507200,1),(375,-1272661200,2),(375,-1251057600,1),(375,-1240088400,2),(375,-1219608000,1),(375,-1207429200,2),(375,-1188763200,1),(375,-1175979600,2),(375,-1157313600,1),(375,-1143925200,2),(375,-1124049600,1),(375,-1113771600,2),(375,-1091390400,1),(375,-1081026000,2),(375,-1059854400,1),(375,-1050786000,2),(375,-1030910400,1),(375,-1018126800,2),(375,-999460800,1),(375,-986677200,2),(375,-965592000,1),(375,-955227600,2),(375,-935956800,1),(375,-923173200,2),(375,-904507200,1),(375,-891723600,2),(375,-880221600,3),(375,-769395600,4),(375,-765399600,2),(375,-747252000,1),(375,-733950000,2),(375,-715802400,1),(375,-702500400,2),(375,-684352800,1),(375,-671050800,2),(375,-652903200,1),(375,-639601200,2),(375,-589399200,1),(375,-576097200,2),(375,-557949600,1),(375,-544647600,2),(375,-526500000,1),(375,-513198000,2),(375,-495050400,1),(375,-481748400,2),(375,-431546400,1),(375,-418244400,2),(375,-400096800,1),(375,-386794800,2),(375,-368647200,1),(375,-355345200,2),(375,-337197600,1),(375,-323895600,2),(375,-242244000,1),(375,-226522800,2),(375,-210794400,1),(375,-195073200,2),(375,-179344800,1),(375,-163623600,2),(375,-147895200,1),(375,-131569200,2),(375,-116445600,1),(375,-100119600,2),(375,-84391200,1),(375,-68670000,2),(375,-52941600,1),(375,-37220400,2),(375,-21492000,1),(375,-5770800,2),(375,9957600,1),(375,25678800,2),(375,41407200,1),(375,57733200,2),(375,73461600,1),(375,89182800,2),(375,104911200,1),(375,120632400,2),(375,136360800,1),(375,152082000,2),(375,167810400,1),(375,183531600,2),(375,199260000,1),(375,215586000,2),(375,230709600,1),(375,247035600,2),(375,262764000,1),(375,278485200,2),(375,294213600,1),(375,309934800,2),(375,325663200,1),(375,341384400,2),(375,357112800,1),(375,372834000,2),(375,388562400,1),(375,404888400,2),(375,420012000,1),(375,436338000,2),(375,452066400,1),(375,467787600,2),(375,483516000,1),(375,499237200,2),(375,514965600,1),(375,530686800,2),(375,544600800,1),(375,562136400,2),(375,576050400,1),(375,594190800,2),(375,607500000,1),(375,625640400,2),(375,638949600,1),(375,657090000,2),(375,671004000,1),(375,688539600,2),(375,702453600,1),(375,719989200,2),(375,733903200,1),(375,752043600,2),(375,765352800,1),(375,783493200,2),(375,796802400,1),(375,814942800,2),(375,828856800,1),(375,846392400,2),(375,860306400,1),(375,877842000,2),(375,891756000,1),(375,909291600,2),(375,923205600,1),(375,941346000,2),(375,954655200,1),(375,972795600,2),(375,986104800,1),(375,1004245200,2),(375,1018159200,1),(375,1035694800,2),(375,1049608800,1),(375,1067144400,2),(375,1081058400,1),(375,1099198800,2),(375,1112508000,1),(375,1130648400,2),(375,1143957600,1),(375,1162098000,2),(375,1173592800,1),(375,1194152400,2),(375,1205042400,1),(375,1225602000,2),(375,1236492000,1),(375,1257051600,2),(375,1268546400,1),(375,1289106000,2),(375,1299996000,1),(375,1320555600,2),(375,1331445600,1),(375,1352005200,2),(375,1362895200,1),(375,1383454800,2),(375,1394344800,1),(375,1414904400,2),(375,1425794400,1),(375,1446354000,2),(375,1457848800,1),(375,1478408400,2),(375,1489298400,1),(375,1509858000,2),(375,1520748000,1),(375,1541307600,2),(375,1552197600,1),(375,1572757200,2),(375,1583647200,1),(375,1604206800,2),(375,1615701600,1),(375,1636261200,2),(375,1647151200,1),(375,1667710800,2),(375,1678600800,1),(375,1699160400,2),(375,1710050400,1),(375,1730610000,2),(375,1741500000,1),(375,1762059600,2),(375,1772949600,1),(375,1793509200,2),(375,1805004000,1),(375,1825563600,2),(375,1836453600,1),(375,1857013200,2),(375,1867903200,1),(375,1888462800,2),(375,1899352800,1),(375,1919912400,2),(375,1930802400,1),(375,1951362000,2),(375,1962856800,1),(375,1983416400,2),(375,1994306400,1),(375,2014866000,2),(375,2025756000,1),(375,2046315600,2),(375,2057205600,1),(375,2077765200,2),(375,2088655200,1),(375,2109214800,2),(375,2120104800,1),(375,2140664400,2),(376,-2147483648,2),(376,-1694368800,1),(376,-1681671600,2),(376,-1632067200,1),(376,-1615136400,2),(376,-1029686400,1),(376,-1018198800,2),(376,-880214400,3),(376,-769395600,4),(376,-765392400,2),(376,-746035200,1),(376,-732733200,2),(376,-715795200,1),(376,-702493200,2),(376,-684345600,1),(376,-671043600,2),(376,-652896000,1),(376,-639594000,2),(376,-620755200,1),(376,-607626000,2),(376,-589392000,1),(376,-576090000,2),(376,-557942400,1),(376,-544640400,2),(376,-526492800,1),(376,-513190800,2),(376,-495043200,1),(376,-481741200,2),(376,-463593600,1),(376,-450291600,2),(376,-431539200,1),(376,-418237200,2),(376,-400089600,1),(376,-386787600,2),(376,-368640000,1),(376,-355338000,2),(376,-337190400,1),(376,-321469200,2),(376,-305740800,1),(376,-292438800,2),(376,-210787200,1),(376,-198090000,2),(376,-116438400,5),(376,-100108800,6),(376,-84384000,5),(376,-68659200,6),(376,-52934400,5),(376,-37209600,6),(376,-21484800,5),(376,-5760000,6),(376,9964800,5),(376,25689600,6),(376,41414400,5),(376,57744000,6),(376,73468800,5),(376,89193600,6),(376,104918400,5),(376,120643200,6),(376,136368000,5),(376,152092800,6),(376,167817600,5),(376,183542400,6),(376,199267200,5),(376,215596800,6),(376,230716800,5),(376,247046400,6),(376,262771200,5),(376,278496000,6),(376,294220800,5),(376,309945600,6),(376,325670400,5),(376,341395200,6),(376,357120000,5),(376,372844800,6),(376,388569600,5),(376,404899200,6),(376,420019200,5),(376,436348800,6),(376,452073600,5),(376,467798400,6),(376,483523200,5),(376,499248000,6),(376,514972800,5),(376,530697600,6),(376,544608000,5),(376,562147200,6),(376,576057600,5),(376,594201600,6),(376,607507200,5),(376,625651200,6),(376,638956800,5),(376,657100800,6),(376,671011200,5),(376,688550400,6),(376,702460800,5),(376,720000000,6),(376,733910400,5),(376,752054400,6),(376,765360000,5),(376,783504000,6),(376,796809600,5),(376,814953600,6),(376,828864000,5),(376,846403200,6),(376,860313600,5),(376,877852800,6),(376,891763200,5),(376,909302400,6),(376,923212800,5),(376,941356800,6),(376,954662400,5),(376,972806400,6),(376,986112000,5),(376,1004256000,6),(376,1018166400,5),(376,1035705600,6),(376,1049616000,5),(376,1067155200,6),(376,1081065600,5),(376,1099209600,6),(376,1112515200,5),(376,1130659200,6),(376,1136095200,2),(376,1143964800,1),(376,1162105200,2),(376,1173600000,1),(376,1194159600,2),(376,1205049600,1),(376,1225609200,2),(376,1236499200,1),(376,1257058800,2),(376,1268553600,1),(376,1289113200,2),(376,1300003200,1),(376,1320562800,2),(376,1331452800,1),(376,1352012400,2),(376,1362902400,1),(376,1383462000,2),(376,1394352000,1),(376,1414911600,2),(376,1425801600,1),(376,1446361200,2),(376,1457856000,1),(376,1478415600,2),(376,1489305600,1),(376,1509865200,2),(376,1520755200,1),(376,1541314800,2),(376,1552204800,1),(376,1572764400,2),(376,1583654400,1),(376,1604214000,2),(376,1615708800,1),(376,1636268400,2),(376,1647158400,1),(376,1667718000,2),(376,1678608000,1),(376,1699167600,2),(376,1710057600,1),(376,1730617200,2),(376,1741507200,1),(376,1762066800,2),(376,1772956800,1),(376,1793516400,2),(376,1805011200,1),(376,1825570800,2),(376,1836460800,1),(376,1857020400,2),(376,1867910400,1),(376,1888470000,2),(376,1899360000,1),(376,1919919600,2),(376,1930809600,1),(376,1951369200,2),(376,1962864000,1),(376,1983423600,2),(376,1994313600,1),(376,2014873200,2),(376,2025763200,1),(376,2046322800,2),(376,2057212800,1),(376,2077772400,2),(376,2088662400,1),(376,2109222000,2),(376,2120112000,1),(376,2140671600,2),(377,-2147483648,2),(377,-1632070800,1),(377,-1615140000,2),(377,-1601753400,1),(377,-1583697600,2),(377,-1567357200,1),(377,-1554667200,2),(377,-1534698000,1),(377,-1524074400,2),(377,-1503248400,1),(377,-1492365600,2),(377,-1471798800,1),(377,-1460916000,2),(377,-1440954000,1),(377,-1428861600,2),(377,-1409504400,1),(377,-1397412000,2),(377,-1378054800,1),(377,-1365962400,2),(377,-1346605200,1),(377,-1333908000,2),(377,-1315155600,1),(377,-1301853600,2),(377,-1283706000,1),(377,-1270404000,2),(377,-1252256400,1),(377,-1238954400,2),(377,-1220806800,1),(377,-1207504800,2),(377,-1188752400,1),(377,-1176055200,2),(377,-1157302800,1),(377,-1144000800,2),(377,-1125853200,1),(377,-1112551200,2),(377,-1094403600,1),(377,-1081101600,2),(377,-1062954000,1),(377,-1049652000,2),(377,-1031504400,1),(377,-1018202400,2),(377,-1000054800,1),(377,-986752800,2),(377,-968000400,1),(377,-955303200,2),(377,-936550800,1),(377,-880218000,3),(377,-769395600,4),(377,-765396000,2),(377,-747248400,1),(377,-733946400,2),(377,-715806000,1),(377,-702504000,2),(377,-684356400,1),(377,-671054400,2),(377,-652906800,1),(377,-634161600,2),(377,-620845200,1),(377,-602704800,2),(377,-589395600,1),(377,-576093600,2),(377,-557946000,1),(377,-544644000,2),(377,-526496400,1),(377,-513194400,2),(377,-495046800,1),(377,-481744800,2),(377,-463597200,1),(377,-450295200,2),(377,-431542800,1),(377,-418240800,2),(377,-400093200,1),(377,-384372000,2),(377,-368643600,1),(377,-352922400,2),(377,-337194000,1),(377,-321472800,2),(377,-305744400,1),(377,-289418400,2),(377,-273690000,1),(377,-257968800,2),(377,-242240400,1),(377,-226519200,2),(377,-210790800,1),(377,-195069600,2),(377,-179341200,1),(377,-163620000,2),(377,-147891600,1),(377,-131565600,2),(377,-116442000,1),(377,-100116000,2),(377,-84387600,1),(377,-68666400,2),(377,-52938000,1),(377,-37216800,2),(377,-21488400,1),(377,-5767200,2),(377,9961200,1),(377,25682400,2),(377,41410800,1),(377,57736800,2),(377,73465200,1),(377,89186400,2),(377,104914800,1),(377,120636000,2),(377,136364400,1),(377,152085600,2),(377,167814000,1),(377,183535200,2),(377,199263600,1),(377,215589600,2),(377,230713200,1),(377,247039200,2),(377,262767600,1),(377,278488800,2),(377,294217200,1),(377,309938400,2),(377,325666800,1),(377,341388000,2),(377,357116400,1),(377,372837600,2),(377,388566000,1),(377,404892000,2),(377,420015600,1),(377,436341600,2),(377,452070000,1),(377,467791200,2),(377,483519600,1),(377,499240800,2),(377,514969200,1),(377,530690400,2),(377,544604400,1),(377,562140000,2),(377,576054000,1),(377,594194400,2),(377,607503600,1),(377,625644000,2),(377,638953200,1),(377,657093600,2),(377,671007600,1),(377,688543200,2),(377,702457200,1),(377,719992800,2),(377,733906800,1),(377,752047200,2),(377,765356400,1),(377,783496800,2),(377,796806000,1),(377,814946400,2),(377,828860400,1),(377,846396000,2),(377,860310000,1),(377,877845600,2),(377,891759600,1),(377,909295200,2),(377,923209200,1),(377,941349600,2),(377,954658800,1),(377,972799200,2),(377,986108400,1),(377,1004248800,2),(377,1018162800,1),(377,1035698400,2),(377,1049612400,1),(377,1067148000,2),(377,1081062000,1),(377,1099202400,2),(377,1112511600,1),(377,1130652000,2),(377,1143961200,1),(377,1162101600,2),(377,1173596400,1),(377,1194156000,2),(377,1205046000,1),(377,1225605600,2),(377,1236495600,1),(377,1257055200,2),(377,1268550000,1),(377,1289109600,2),(377,1299999600,1),(377,1320559200,2),(377,1331449200,1),(377,1352008800,2),(377,1362898800,1),(377,1383458400,2),(377,1394348400,1),(377,1414908000,2),(377,1425798000,1),(377,1446357600,2),(377,1457852400,1),(377,1478412000,2),(377,1489302000,1),(377,1509861600,2),(377,1520751600,1),(377,1541311200,2),(377,1552201200,1),(377,1572760800,2),(377,1583650800,1),(377,1604210400,2),(377,1615705200,1),(377,1636264800,2),(377,1647154800,1),(377,1667714400,2),(377,1678604400,1),(377,1699164000,2),(377,1710054000,1),(377,1730613600,2),(377,1741503600,1),(377,1762063200,2),(377,1772953200,1),(377,1793512800,2),(377,1805007600,1),(377,1825567200,2),(377,1836457200,1),(377,1857016800,2),(377,1867906800,1),(377,1888466400,2),(377,1899356400,1),(377,1919916000,2),(377,1930806000,1),(377,1951365600,2),(377,1962860400,1),(377,1983420000,2),(377,1994310000,1),(377,2014869600,2),(377,2025759600,1),(377,2046319200,2),(377,2057209200,1),(377,2077768800,2),(377,2088658800,1),(377,2109218400,2),(377,2120108400,1),(377,2140668000,2),(378,-2147483648,0),(378,-1998663968,2),(378,-1632063600,1),(378,-1615132800,2),(378,-1600614000,1),(378,-1596816000,2),(378,-1567954800,1),(378,-1551628800,2),(378,-1536505200,1),(378,-1523203200,2),(378,-1504450800,1),(378,-1491753600,2),(378,-1473001200,1),(378,-1459699200,2),(378,-880210800,3),(378,-769395600,4),(378,-765388800,2),(378,-715791600,1),(378,-702489600,2),(378,73472400,1),(378,89193600,2),(378,104922000,1),(378,120643200,2),(378,136371600,1),(378,152092800,2),(378,167821200,1),(378,183542400,2),(378,199270800,1),(378,215596800,2),(378,230720400,1),(378,247046400,2),(378,262774800,1),(378,278496000,2),(378,294224400,1),(378,309945600,2),(378,325674000,1),(378,341395200,2),(378,357123600,1),(378,372844800,2),(378,388573200,1),(378,404899200,2),(378,420022800,1),(378,436348800,2),(378,452077200,1),(378,467798400,2),(378,483526800,1),(378,499248000,2),(378,514976400,1),(378,530697600,2),(378,544611600,1),(378,562147200,2),(378,576061200,1),(378,594201600,2),(378,607510800,1),(378,625651200,2),(378,638960400,1),(378,657100800,2),(378,671014800,1),(378,688550400,2),(378,702464400,1),(378,720000000,2),(378,733914000,1),(378,752054400,2),(378,765363600,1),(378,783504000,2),(378,796813200,1),(378,814953600,2),(378,828867600,1),(378,846403200,2),(378,860317200,1),(378,877852800,2),(378,891766800,1),(378,909302400,2),(378,923216400,1),(378,941356800,2),(378,954666000,1),(378,972806400,2),(378,986115600,1),(378,1004256000,2),(378,1018170000,1),(378,1035705600,2),(378,1049619600,1),(378,1067155200,2),(378,1081069200,1),(378,1099209600,2),(378,1112518800,1),(378,1130659200,2),(378,1143968400,1),(378,1162108800,2),(378,1173603600,1),(378,1194163200,2),(378,1205053200,1),(378,1225612800,2),(378,1236502800,1),(378,1257062400,2),(378,1268557200,1),(378,1289116800,2),(378,1300006800,1),(378,1320566400,2),(378,1331456400,1),(378,1352016000,2),(378,1362906000,1),(378,1383465600,2),(378,1394355600,1),(378,1414915200,2),(378,1425805200,1),(378,1446364800,2),(378,1457859600,1),(378,1478419200,2),(378,1489309200,1),(378,1509868800,2),(378,1520758800,1),(378,1541318400,2),(378,1552208400,1),(378,1572768000,2),(378,1583658000,1),(378,1604217600,2),(378,1615712400,1),(378,1636272000,2),(378,1647162000,1),(378,1667721600,2),(378,1678611600,1),(378,1699171200,2),(378,1710061200,1),(378,1730620800,2),(378,1741510800,1),(378,1762070400,2),(378,1772960400,1),(378,1793520000,2),(378,1805014800,1),(378,1825574400,2),(378,1836464400,1),(378,1857024000,2),(378,1867914000,1),(378,1888473600,2),(378,1899363600,1),(378,1919923200,2),(378,1930813200,1),(378,1951372800,2),(378,1962867600,1),(378,1983427200,2),(378,1994317200,1),(378,2014876800,2),(378,2025766800,1),(378,2046326400,2),(378,2057216400,1),(378,2077776000,2),(378,2088666000,1),(378,2109225600,2),(378,2120115600,1),(378,2140675200,2),(379,-2147483648,2),(379,-1664130548,1),(379,-1650137348,2),(379,-1632076148,1),(379,-1615145348,2),(379,-1598650148,1),(379,-1590100148,2),(379,-1567286948,1),(379,-1551565748,2),(379,-1535837348,1),(379,-1520116148,2),(379,-1503782948,1),(379,-1488666548,2),(379,-1472333348,1),(379,-1457216948,2),(379,-1440883748,1),(379,-1425767348,2),(379,-1409434148,1),(379,-1394317748,2),(379,-1377984548,1),(379,-1362263348,2),(379,-1346534948,1),(379,-1330813748,2),(379,-1314480548,1),(379,-1299364148,2),(379,-1283030948,1),(379,-1267914548,2),(379,-1251581348,1),(379,-1236464948,2),(379,-1220131748,1),(379,-1205015348,2),(379,-1188682148,1),(379,-1172960948,2),(379,-1156627748,1),(379,-1141511348,2),(379,-1125178148,1),(379,-1110061748,2),(379,-1096921748,4),(379,-1093728600,3),(379,-1078612200,4),(379,-1061670600,3),(379,-1048973400,4),(379,-1030221000,3),(379,-1017523800,4),(379,-998771400,3),(379,-986074200,4),(379,-966717000,3),(379,-954624600,4),(379,-935267400,3),(379,-922570200,4),(379,-903817800,3),(379,-891120600,4),(379,-872368200,6),(379,-769395600,5),(379,-765401400,4),(379,-746044200,3),(379,-733347000,4),(379,-714594600,3),(379,-701897400,4),(379,-683145000,3),(379,-670447800,4),(379,-651695400,3),(379,-638998200,4),(379,-619641000,3),(379,-606943800,4),(379,-589401000,3),(379,-576099000,4),(379,-557951400,3),(379,-544649400,4),(379,-526501800,3),(379,-513199800,4),(379,-495052200,3),(379,-481750200,4),(379,-463602600,3),(379,-450300600,4),(379,-431548200,3),(379,-418246200,4),(379,-400098600,3),(379,-386796600,4),(379,-368649000,3),(379,-355347000,4),(379,-337199400,3),(379,-323897400,4),(379,-305749800,3),(379,-289423800,4),(379,-273695400,3),(379,-257974200,4),(379,-242245800,3),(379,-226524600,4),(379,-210796200,3),(379,-195075000,4),(379,-179346600,3),(379,-163625400,4),(379,-147897000,3),(379,-131571000,4),(379,-116447400,3),(379,-100121400,4),(379,-84393000,3),(379,-68671800,4),(379,-52943400,3),(379,-37222200,4),(379,-21493800,3),(379,-5772600,4),(379,9955800,3),(379,25677000,4),(379,41405400,3),(379,57731400,4),(379,73459800,3),(379,89181000,4),(379,104909400,3),(379,120630600,4),(379,136359000,3),(379,152080200,4),(379,167808600,3),(379,183529800,4),(379,199258200,3),(379,215584200,4),(379,230707800,3),(379,247033800,4),(379,262762200,3),(379,278483400,4),(379,294211800,3),(379,309933000,4),(379,325661400,3),(379,341382600,4),(379,357111000,3),(379,372832200,4),(379,388560600,3),(379,404886600,4),(379,420010200,3),(379,436336200,4),(379,452064600,3),(379,467785800,4),(379,483514200,3),(379,499235400,4),(379,514963800,3),(379,530685000,4),(379,544591860,3),(379,562127460,4),(379,576041460,7),(379,594178260,4),(379,607491060,3),(379,625631460,4),(379,638940660,3),(379,657081060,4),(379,670995060,3),(379,688530660,4),(379,702444660,3),(379,719980260,4),(379,733894260,3),(379,752034660,4),(379,765343860,3),(379,783484260,4),(379,796793460,3),(379,814933860,4),(379,828847860,3),(379,846383460,4),(379,860297460,3),(379,877833060,4),(379,891747060,3),(379,909282660,4),(379,923196660,3),(379,941337060,4),(379,954646260,3),(379,972786660,4),(379,986095860,3),(379,1004236260,4),(379,1018150260,3),(379,1035685860,4),(379,1049599860,3),(379,1067135460,4),(379,1081049460,3),(379,1099189860,4),(379,1112499060,3),(379,1130639460,4),(379,1143948660,3),(379,1162089060,4),(379,1173583860,3),(379,1194143460,4),(379,1205033460,3),(379,1225593060,4),(379,1236483060,3),(379,1257042660,4),(379,1268537460,3),(379,1289097060,4),(379,1299987060,3),(379,1320553800,4),(379,1331443800,3),(379,1352003400,4),(379,1362893400,3),(379,1383453000,4),(379,1394343000,3),(379,1414902600,4),(379,1425792600,3),(379,1446352200,4),(379,1457847000,3),(379,1478406600,4),(379,1489296600,3),(379,1509856200,4),(379,1520746200,3),(379,1541305800,4),(379,1552195800,3),(379,1572755400,4),(379,1583645400,3),(379,1604205000,4),(379,1615699800,3),(379,1636259400,4),(379,1647149400,3),(379,1667709000,4),(379,1678599000,3),(379,1699158600,4),(379,1710048600,3),(379,1730608200,4),(379,1741498200,3),(379,1762057800,4),(379,1772947800,3),(379,1793507400,4),(379,1805002200,3),(379,1825561800,4),(379,1836451800,3),(379,1857011400,4),(379,1867901400,3),(379,1888461000,4),(379,1899351000,3),(379,1919910600,4),(379,1930800600,3),(379,1951360200,4),(379,1962855000,3),(379,1983414600,4),(379,1994304600,3),(379,2014864200,4),(379,2025754200,3),(379,2046313800,4),(379,2057203800,3),(379,2077763400,4),(379,2088653400,3),(379,2109213000,4),(379,2120103000,3),(379,2140662600,4),(380,-2147483648,2),(380,-1632060000,1),(380,-1615129200,2),(380,-880207200,3),(380,-769395600,4),(380,-765385200,2),(380,-747237600,1),(380,-733935600,2),(380,-715788000,1),(380,-702486000,2),(380,-684338400,1),(380,-671036400,2),(380,-652888800,1),(380,-639586800,2),(380,-620834400,1),(380,-608137200,2),(380,-589384800,1),(380,-576082800,2),(380,-557935200,1),(380,-544633200,2),(380,-526485600,1),(380,-513183600,2),(380,-495036000,1),(380,-481734000,2),(380,-463586400,1),(380,-450284400,2),(380,-431532000,1),(380,-418230000,2),(380,-400082400,1),(380,-386780400,2),(380,-368632800,1),(380,-355330800,2),(380,-337183200,1),(380,-323881200,2),(380,-305733600,1),(380,-292431600,2),(380,-273679200,1),(380,-260982000,2),(380,-242229600,1),(380,-226508400,2),(380,-210780000,1),(380,-195058800,2),(380,-179330400,1),(380,-163609200,2),(380,-147880800,1),(380,-131554800,2),(380,-116431200,1),(380,-100105200,2),(380,-84376800,1),(380,-68655600,2),(380,-52927200,1),(380,-37206000,2),(380,-21477600,1),(380,-5756400,2),(380,9972000,1),(380,25693200,2),(380,41421600,1),(380,57747600,2),(380,73476000,1),(380,89197200,2),(380,104925600,1),(380,120646800,2),(380,136375200,1),(380,152096400,2),(380,167824800,1),(380,183546000,2),(380,199274400,1),(380,215600400,2),(380,230724000,1),(380,247050000,2),(380,262778400,1),(380,278499600,2),(380,294228000,1),(380,309949200,2),(380,325677600,1),(380,341398800,2),(380,357127200,1),(380,372848400,2),(380,388576800,1),(380,404902800,2),(380,420026400,1),(380,436352400,2),(380,452080800,1),(380,467802000,2),(380,483530400,1),(380,499251600,2),(380,514980000,1),(380,530701200,2),(380,544615200,1),(380,562150800,2),(380,576064800,1),(380,594205200,2),(380,607514400,1),(380,625654800,2),(380,638964000,1),(380,657104400,2),(380,671018400,1),(380,688554000,2),(380,702468000,1),(380,720003600,2),(380,733917600,1),(380,752058000,2),(380,765367200,1),(380,783507600,2),(380,796816800,1),(380,814957200,2),(380,828871200,1),(380,846406800,2),(380,860320800,1),(380,877856400,2),(380,891770400,1),(380,909306000,2),(380,923220000,1),(380,941360400,2),(380,954669600,1),(380,972810000,2),(380,986119200,1),(380,1004259600,2),(380,1018173600,1),(380,1035709200,2),(380,1049623200,1),(380,1067158800,2),(380,1081072800,1),(380,1099213200,2),(380,1112522400,1),(380,1130662800,2),(380,1143972000,1),(380,1162112400,2),(380,1173607200,1),(380,1194166800,2),(380,1205056800,1),(380,1225616400,2),(380,1236506400,1),(380,1257066000,2),(380,1268560800,1),(380,1289120400,2),(380,1300010400,1),(380,1320570000,2),(380,1331460000,1),(380,1352019600,2),(380,1362909600,1),(380,1383469200,2),(380,1394359200,1),(380,1414918800,2),(380,1425808800,1),(380,1446368400,2),(380,1457863200,1),(380,1478422800,2),(380,1489312800,1),(380,1509872400,2),(380,1520762400,1),(380,1541322000,2),(380,1552212000,1),(380,1572771600,2),(380,1583661600,1),(380,1604221200,2),(380,1615716000,1),(380,1636275600,2),(380,1647165600,1),(380,1667725200,2),(380,1678615200,1),(380,1699174800,2),(380,1710064800,1),(380,1730624400,2),(380,1741514400,1),(380,1762074000,2),(380,1772964000,1),(380,1793523600,2),(380,1805018400,1),(380,1825578000,2),(380,1836468000,1),(380,1857027600,2),(380,1867917600,1),(380,1888477200,2),(380,1899367200,1),(380,1919926800,2),(380,1930816800,1),(380,1951376400,2),(380,1962871200,1),(380,1983430800,2),(380,1994320800,1),(380,2014880400,2),(380,2025770400,1),(380,2046330000,2),(380,2057220000,1),(380,2077779600,2),(380,2088669600,1),(380,2109229200,2),(380,2120119200,1),(380,2140678800,2),(381,-2147483648,0),(381,-2030202084,2),(381,-1632063600,1),(381,-1615132800,2),(381,-1251651600,1),(381,-1238349600,2),(381,-1220202000,1),(381,-1206900000,2),(381,-1188752400,1),(381,-1175450400,2),(381,-1156698000,1),(381,-1144000800,2),(381,-1125248400,1),(381,-1111946400,2),(381,-1032714000,1),(381,-1016992800,2),(381,-1001264400,1),(381,-986148000,2),(381,-969814800,1),(381,-954093600,2),(381,-937760400,1),(381,-922039200,2),(381,-906310800,1),(381,-890589600,2),(381,-880210800,3),(381,-769395600,4),(381,-765388800,2),(381,-748450800,1),(381,-732729600,2),(381,-715791600,1),(381,-702489600,2),(381,-684342000,1),(381,-671040000,2),(381,-652892400,1),(381,-639590400,2),(381,-620838000,1),(381,-608140800,2),(381,-589388400,1),(381,-576086400,2),(381,-557938800,1),(381,-544636800,2),(381,-526489200,1),(381,-513187200,2),(381,-495039600,1),(381,-481737600,2),(381,-463590000,1),(381,-450288000,2),(381,-431535600,1),(381,-418233600,2),(381,-400086000,1),(381,-386784000,2),(381,-337186800,1),(381,-321465600,2),(381,-305737200,5),(382,-2147483648,2),(382,-1632056400,1),(382,-1615125600,2),(382,-1596978000,1),(382,-1583164800,2),(382,-880203600,3),(382,-769395600,4),(382,-765381600,2),(382,-147884400,5),(382,-131554800,2),(382,-81961200,6),(382,325677600,7),(382,341398800,6),(382,357127200,7),(382,372848400,6),(382,388576800,7),(382,404902800,6),(382,420026400,7),(382,436352400,6),(382,452080800,7),(382,467802000,6),(382,483530400,7),(382,499251600,6),(382,514980000,7),(382,530701200,6),(382,544615200,7),(382,562150800,6),(382,576064800,7),(382,594205200,6),(382,607514400,7),(382,625654800,6),(382,638964000,7),(382,657104400,6),(382,671018400,7),(382,688554000,6),(382,702468000,7),(382,720003600,6),(382,733917600,7),(382,752058000,6),(382,765367200,7),(382,783507600,6),(382,796816800,7),(382,814957200,6),(382,828871200,7),(382,846406800,6),(382,860320800,7),(382,877856400,6),(382,891770400,7),(382,909306000,6),(382,923220000,7),(382,941360400,6),(382,954669600,7),(382,972810000,6),(382,986119200,7),(382,1004259600,6),(382,1018173600,7),(382,1035709200,6),(382,1049623200,7),(382,1067158800,6),(382,1081072800,7),(382,1099213200,6),(382,1112522400,7),(382,1130662800,6),(382,1143972000,7),(382,1162112400,6),(382,1173607200,7),(382,1194166800,6),(382,1205056800,7),(382,1225616400,6),(382,1236506400,7),(382,1257066000,6),(382,1268560800,7),(382,1289120400,6),(382,1300010400,7),(382,1320570000,6),(382,1331460000,7),(382,1352019600,6),(382,1362909600,7),(382,1383469200,6),(382,1394359200,7),(382,1414918800,6),(382,1425808800,7),(382,1446368400,6),(382,1457863200,7),(382,1478422800,6),(382,1489312800,7),(382,1509872400,6),(382,1520762400,7),(382,1541322000,6),(382,1552212000,7),(382,1572771600,6),(382,1583661600,7),(382,1604214000,8),(383,-2147483648,1),(383,-1892661434,2),(383,-1688410800,1),(383,-1619205434,3),(383,-1593806400,1),(383,-1335986234,4),(383,-1317585600,2),(383,-1304362800,4),(383,-1286049600,2),(383,-1272826800,4),(383,-1254513600,2),(383,-1241290800,4),(383,-1222977600,2),(383,-1209754800,4),(383,-1191355200,2),(383,-1178132400,3),(383,-870552000,2),(383,-865278000,3),(383,-740520000,5),(383,-736376400,3),(383,-718056000,2),(383,-713649600,3),(383,-36619200,6),(383,-23922000,7),(383,-3355200,6),(383,7527600,7),(383,24465600,6),(383,37767600,7),(383,55915200,6),(383,69217200,7),(383,87969600,6),(383,100666800,7),(383,118209600,6),(383,132116400,7),(383,150868800,6),(383,163566000,7),(383,182318400,6),(383,195620400,7),(383,213768000,6),(383,227070000,7),(383,245217600,6),(383,258519600,7),(383,277272000,6),(383,289969200,7),(383,308721600,6),(383,321418800,7),(383,340171200,6),(383,353473200,7),(383,371620800,6),(383,384922800,7),(383,403070400,6),(383,416372400,7),(383,434520000,6),(383,447822000,7),(383,466574400,6),(383,479271600,7),(383,498024000,6),(383,510721200,7),(383,529473600,6),(383,545194800,7),(383,560923200,6),(383,574225200,7),(383,592372800,6),(383,605674800,7),(383,624427200,6),(383,637124400,7),(383,653457600,6),(383,668574000,7),(383,687326400,6),(383,700628400,7),(383,718776000,6),(383,732078000,7),(383,750225600,6),(383,763527600,7),(383,781675200,6),(383,794977200,7),(383,813729600,6),(383,826426800,7),(383,845179200,6),(383,859690800,7),(383,876628800,6),(383,889930800,7),(383,906868800,6),(383,923194800,7),(383,939528000,6),(383,952830000,7),(383,971582400,6),(383,984279600,7),(383,1003032000,6),(383,1015729200,7),(383,1034481600,6),(383,1047178800,7),(383,1065931200,6),(383,1079233200,7),(383,1097380800,6),(383,1110682800,7),(383,1128830400,6),(383,1142132400,7),(383,1160884800,6),(383,1173582000,7),(383,1192334400,6),(383,1206846000,7),(383,1223784000,6),(383,1237086000,7),(383,1255233600,6),(383,1270350000,7),(383,1286683200,6),(383,1304823600,7),(383,1313899200,6),(383,1335668400,7),(383,1346558400,6),(383,1367118000,7),(383,1378612800,6),(383,1398567600,7),(383,1410062400,6),(383,1463281200,7),(383,1471147200,6),(383,1494730800,7),(383,1502596800,6),(383,1526180400,7),(383,1534046400,6),(383,1554606000,7),(383,1567915200,6),(383,1586055600,7),(383,1599364800,6),(383,1617505200,7),(383,1630814400,6),(383,1648954800,7),(383,1662264000,6),(383,1680404400,7),(383,1693713600,6),(383,1712458800,7),(383,1725768000,6),(383,1743908400,7),(383,1757217600,6),(383,1775358000,7),(383,1788667200,6),(383,1806807600,7),(383,1820116800,6),(383,1838257200,7),(383,1851566400,6),(383,1870311600,7),(383,1883016000,6),(383,1901761200,7),(383,1915070400,6),(383,1933210800,7),(383,1946520000,6),(383,1964660400,7),(383,1977969600,6),(383,1996110000,7),(383,2009419200,6),(383,2027559600,7),(383,2040868800,6),(383,2059614000,7),(383,2072318400,6),(383,2091063600,7),(383,2104372800,6),(383,2122513200,7),(383,2135822400,6),(383,2147483647,6),(384,-2147483648,1),(384,-1178124152,4),(384,-36619200,2),(384,-23922000,3),(384,-3355200,2),(384,7527600,3),(384,24465600,2),(384,37767600,3),(384,55915200,2),(384,69217200,3),(384,87969600,2),(384,100666800,3),(384,118209600,2),(384,132116400,3),(384,150868800,2),(384,163566000,3),(384,182318400,2),(384,195620400,3),(384,213768000,2),(384,227070000,3),(384,245217600,2),(384,258519600,3),(384,277272000,2),(384,289969200,3),(384,308721600,2),(384,321418800,3),(384,340171200,2),(384,353473200,3),(384,371620800,2),(384,384922800,5),(384,403070400,6),(384,416372400,5),(384,434520000,6),(384,447822000,5),(384,466574400,6),(384,479271600,5),(384,498024000,6),(384,510721200,5),(384,529473600,6),(384,545194800,5),(384,560923200,6),(384,574225200,5),(384,592372800,6),(384,605674800,5),(384,624427200,6),(384,637124400,5),(384,653457600,6),(384,668574000,5),(384,687326400,6),(384,700628400,5),(384,718776000,6),(384,732078000,5),(384,750225600,6),(384,763527600,5),(384,781675200,6),(384,794977200,5),(384,813729600,6),(384,826426800,5),(384,845179200,6),(384,859690800,5),(384,876628800,6),(384,889930800,5),(384,906868800,6),(384,923194800,5),(384,939528000,6),(384,952830000,5),(384,971582400,6),(384,984279600,5),(384,1003032000,6),(384,1015729200,5),(384,1034481600,6),(384,1047178800,5),(384,1065931200,6),(384,1079233200,5),(384,1097380800,6),(384,1110682800,5),(384,1128830400,6),(384,1142132400,5),(384,1160884800,6),(384,1173582000,5),(384,1192334400,6),(384,1206846000,5),(384,1223784000,6),(384,1237086000,5),(384,1255233600,6),(384,1270350000,5),(384,1286683200,6),(384,1304823600,5),(384,1313899200,6),(384,1335668400,5),(384,1346558400,6),(384,1367118000,5),(384,1378612800,6),(384,1398567600,5),(384,1410062400,6),(384,1463281200,5),(384,1471147200,6),(384,1494730800,5),(384,1502596800,6),(384,1526180400,5),(384,1534046400,6),(384,1554606000,5),(384,1567915200,6),(384,1586055600,5),(384,1599364800,6),(384,1617505200,5),(384,1630814400,6),(384,1648954800,5),(384,1662264000,6),(384,1680404400,5),(384,1693713600,6),(384,1712458800,5),(384,1725768000,6),(384,1743908400,5),(384,1757217600,6),(384,1775358000,5),(384,1788667200,6),(384,1806807600,5),(384,1820116800,6),(384,1838257200,5),(384,1851566400,6),(384,1870311600,5),(384,1883016000,6),(384,1901761200,5),(384,1915070400,6),(384,1933210800,5),(384,1946520000,6),(384,1964660400,5),(384,1977969600,6),(384,1996110000,5),(384,2009419200,6),(384,2027559600,5),(384,2040868800,6),(384,2059614000,5),(384,2072318400,6),(384,2091063600,5),(384,2104372800,6),(384,2122513200,5),(384,2135822400,6),(384,2147483647,6),(385,-2147483648,1),(385,-1402813824,3),(385,-1311534000,2),(385,-1300996800,3),(385,-933534000,2),(385,-925675200,3),(385,-902084400,2),(385,-893620800,3),(385,-870030000,2),(385,-862171200,3),(385,-775681200,2),(385,-767822400,3),(385,-744231600,2),(385,-736372800,3),(385,-144702000,2),(385,-134251200,3),(385,-113425200,2),(385,-102542400,3),(385,-86295600,2),(385,-72907200,3),(385,-54154800,2),(385,-41457600,3),(385,-21495600,2),(385,-5774400,3),(385,9954000,2),(385,25675200,3),(385,41403600,2),(385,57729600,3),(385,73458000,2),(385,87364800,3),(385,104907600,2),(385,118900800,3),(385,136357200,2),(385,150436800,3),(385,167806800,2),(385,183528000,3),(385,199256400,2),(385,215582400,3),(385,230706000,2),(385,247032000,3),(385,263365200,2),(385,276667200,3),(385,290581200,2),(385,308721600,3),(385,322030800,2),(385,340171200,3),(385,358318800,2),(385,371620800,3),(385,389768400,2),(385,403070400,3),(385,421218000,2),(385,434520000,3),(385,452667600,2),(385,466574400,3),(385,484117200,2),(385,498024000,3),(385,511333200,2),(385,529473600,3),(385,542782800,2),(385,560923200,3),(385,574837200,2),(385,592372800,3),(385,606286800,2),(385,623822400,3),(385,638946000,2),(385,655876800,3),(385,671000400,2),(385,687330000,4),(385,702450000,2),(385,718779600,4),(385,733899600,2),(385,750229200,4),(385,765349200,2),(385,781678800,4),(385,796798800,2),(385,813128400,4),(385,828853200,2),(385,844578000,4),(385,860302800,2),(385,876632400,4),(385,891147600,5),(385,909291600,4),(385,922597200,5),(385,941346000,4),(385,954651600,5),(385,972795600,4),(385,986101200,5),(385,1004245200,4),(385,1018155600,5),(385,1035694800,4),(385,1049605200,5),(385,1067144400,4),(385,1080450000,5),(385,1162098000,4),(385,1173589200,5),(385,1193547600,4),(385,1205643600,5),(385,1224997200,4),(385,1236488400,5),(385,1256446800,4),(385,1268542800,5),(385,1288501200,4),(385,1300597200,5),(385,1321160400,4),(385,1333256400,5),(385,1352005200,4),(385,1362891600,5),(385,1383454800,4),(385,1394341200,5),(385,1414904400,4),(385,1425790800,5),(385,1446354000,4),(385,1457845200,5),(385,1478408400,4),(385,1489294800,5),(385,1509858000,4),(385,1520744400,5),(385,1541307600,4),(385,1552194000,5),(385,1572757200,4),(385,1583643600,5),(385,1604206800,4),(385,1615698000,5),(385,1636261200,4),(385,1647147600,5),(385,1667710800,4),(385,1678597200,5),(385,1699160400,4),(385,1710046800,5),(385,1730610000,4),(385,1741496400,5),(385,1762059600,4),(385,1772946000,5),(385,1793509200,4),(385,1805000400,5),(385,1825563600,4),(385,1836450000,5),(385,1857013200,4),(385,1867899600,5),(385,1888462800,4),(385,1899349200,5),(385,1919912400,4),(385,1930798800,5),(385,1951362000,4),(385,1962853200,5),(385,1983416400,4),(385,1994302800,5),(385,2014866000,4),(385,2025752400,5),(385,2046315600,4),(385,2057202000,5),(385,2077765200,4),(385,2088651600,5),(385,2109214800,4),(385,2120101200,5),(385,2140664400,4),(386,228877200,0),(386,243997200,1),(386,260326800,0),(386,276051600,1),(386,291776400,0),(386,307501200,1),(386,323830800,0),(386,338950800,1),(386,354675600,0),(386,370400400,1),(386,386125200,0),(386,401850000,1),(386,417574800,0),(386,433299600,1),(386,449024400,0),(386,465354000,1),(386,481078800,0),(386,496803600,1),(386,512528400,0),(386,528253200,1),(386,543978000,0),(386,559702800,1),(386,575427600,0),(386,591152400,1),(386,606877200,0),(386,622602000,1),(386,638326800,0),(386,654656400,1),(386,670381200,0),(386,686106000,1),(386,701830800,0),(386,717555600,1),(386,733280400,0),(386,749005200,1),(386,764730000,0),(386,780454800,1),(386,796179600,0),(386,811904400,1),(386,828234000,0),(386,846378000,1),(386,859683600,0),(386,877827600,1),(386,891133200,0),(386,909277200,1),(386,922582800,0),(386,941331600,1),(386,954032400,0),(386,972781200,1),(386,985482000,0),(386,1004230800,1),(386,1017536400,0),(386,1035680400,1),(386,1048986000,0),(386,1067130000,1),(386,1080435600,0),(386,1099184400,1),(386,1111885200,0),(386,1130634000,1),(386,1143334800,0),(386,1162083600,1),(386,1174784400,0),(386,1193533200,1),(386,1206838800,0),(386,1224982800,1),(386,1238288400,0),(386,1256432400,1),(386,1269738000,0),(386,1288486800,1),(386,1301187600,0),(386,1319936400,1),(386,1332637200,0),(386,1351386000,1),(386,1364691600,0),(386,1382835600,1),(386,1396141200,0),(386,1414285200,1),(386,1427590800,0),(386,1445734800,1),(386,1459040400,0),(386,1477789200,1),(386,1490490000,0),(386,1509238800,1),(386,1521939600,0),(386,1540688400,1),(386,1553994000,0),(386,1572138000,1),(386,1585443600,0),(386,1603587600,1),(386,1616893200,0),(386,1635642000,1),(386,1648342800,0),(386,1667091600,1),(386,1679792400,0),(386,1698541200,1),(386,1711846800,0),(386,1729990800,1),(386,1743296400,0),(386,1761440400,1),(386,1774746000,0),(386,1792890000,1),(386,1806195600,0),(386,1824944400,1),(386,1837645200,0),(386,1856394000,1),(386,1869094800,0),(386,1887843600,1),(386,1901149200,0),(386,1919293200,1),(386,1932598800,0),(386,1950742800,1),(386,1964048400,0),(386,1982797200,1),(386,1995498000,0),(386,2014246800,1),(386,2026947600,0),(386,2045696400,1),(386,2058397200,0),(386,2077146000,1),(386,2090451600,0),(386,2108595600,1),(386,2121901200,0),(386,2140045200,1),(388,-1633280400,0),(388,-1615140000,1),(388,-1601830800,0),(388,-1583690400,1),(388,-880218000,2),(388,-769395600,3),(388,-765396000,1),(388,-84387600,0),(388,-68666400,1),(388,-52938000,0),(388,-37216800,1),(388,-21488400,0),(388,-5767200,1),(388,9961200,0),(388,25682400,1),(388,41410800,0),(388,57736800,1),(388,73465200,0),(388,89186400,1),(388,104914800,0),(388,120636000,1),(388,126687600,0),(388,152085600,1),(388,162370800,0),(388,183535200,1),(388,199263600,0),(388,215589600,1),(388,230713200,0),(388,247039200,1),(388,262767600,0),(388,278488800,1),(388,294217200,0),(388,309938400,1),(388,325666800,0),(388,341388000,1),(388,357116400,0),(388,372837600,1),(388,388566000,0),(388,404892000,1),(388,420015600,0),(388,436341600,1),(388,452070000,0),(388,467791200,1),(388,483519600,0),(388,499240800,1),(388,514969200,0),(388,530690400,1),(388,544604400,0),(388,562140000,1),(388,576054000,0),(388,594194400,1),(388,607503600,0),(388,625644000,1),(388,638953200,0),(388,657093600,1),(388,671007600,0),(388,688543200,1),(388,702457200,0),(388,719992800,1),(388,733906800,0),(388,752047200,1),(388,765356400,0),(388,783496800,1),(388,796806000,0),(388,814946400,1),(388,828860400,0),(388,846396000,1),(388,860310000,0),(388,877845600,1),(388,891759600,0),(388,909295200,1),(388,923209200,0),(388,941349600,1),(388,954658800,0),(388,972799200,1),(388,986108400,0),(388,1004248800,1),(388,1018162800,0),(388,1035698400,1),(388,1049612400,0),(388,1067148000,1),(388,1081062000,0),(388,1099202400,1),(388,1112511600,0),(388,1130652000,1),(388,1143961200,0),(388,1162101600,1),(388,1173596400,0),(388,1194156000,1),(388,1205046000,0),(388,1225605600,1),(388,1236495600,0),(388,1257055200,1),(388,1268550000,0),(388,1289109600,1),(388,1299999600,0),(388,1320559200,1),(388,1331449200,0),(388,1352008800,1),(388,1362898800,0),(388,1383458400,1),(388,1394348400,0),(388,1414908000,1),(388,1425798000,0),(388,1446357600,1),(388,1457852400,0),(388,1478412000,1),(388,1489302000,0),(388,1509861600,1),(388,1520751600,0),(388,1541311200,1),(388,1552201200,0),(388,1572760800,1),(388,1583650800,0),(388,1604210400,1),(388,1615705200,0),(388,1636264800,1),(388,1647154800,0),(388,1667714400,1),(388,1678604400,0),(388,1699164000,1),(388,1710054000,0),(388,1730613600,1),(388,1741503600,0),(388,1762063200,1),(388,1772953200,0),(388,1793512800,1),(388,1805007600,0),(388,1825567200,1),(388,1836457200,0),(388,1857016800,1),(388,1867906800,0),(388,1888466400,1),(388,1899356400,0),(388,1919916000,1),(388,1930806000,0),(388,1951365600,1),(388,1962860400,0),(388,1983420000,1),(388,1994310000,0),(388,2014869600,1),(388,2025759600,0),(388,2046319200,1),(388,2057209200,0),(388,2077768800,1),(388,2088658800,0),(388,2109218400,1),(388,2120108400,0),(388,2140668000,1),(389,-2147483648,2),(389,-929844000,1),(389,-923108400,2),(389,-906170400,1),(389,-892868400,2),(389,-875844000,1),(389,-857790000,2),(389,-844308000,1),(389,-825822000,2),(389,-812685600,1),(389,-794199600,2),(389,-779853600,1),(389,-762663600,2),(389,-399088800,1),(389,-386650800,2),(389,-368330400,1),(389,-355114800,2),(389,-336790800,1),(389,-323654400,2),(389,-305168400,1),(389,-292032000,2),(389,-273632400,1),(389,-260496000,2),(389,-242096400,1),(389,-228960000,2),(389,-210560400,1),(389,-197424000,2),(389,-178938000,1),(389,-165801600,2),(389,-147402000,1),(389,-134265600,2),(389,-115866000,1),(389,-102643200,2),(389,-84330000,1),(389,-71107200,2),(389,-52707600,1),(389,-39484800,2),(389,-21171600,1),(389,-7948800,2),(389,10364400,1),(389,23587200,2),(389,41900400,1),(389,55123200,2),(389,73522800,1),(389,86745600,2),(389,105058800,1),(389,118281600,2),(389,136594800,1),(389,149817600,2),(389,168130800,1),(389,181353600,2),(389,199753200,1),(389,212976000,2),(389,231289200,1),(389,244512000,2),(389,262825200,1),(389,276048000,2),(389,294361200,1),(389,307584000,2),(389,325983600,1),(389,339206400,2),(389,357519600,1),(389,370742400,2),(389,396399600,1),(389,402278400,2),(389,426812400,1),(389,433814400,2),(389,452214000,1),(389,465436800,2),(389,483750000,1),(389,496972800,2),(389,515286000,1),(389,528508800,2),(389,546822000,1),(389,560044800,2),(389,578444400,1),(389,591667200,2),(389,610412400,1),(389,623203200,2),(389,641516400,1),(389,654739200,2),(389,673052400,1),(389,686275200,2),(389,704674800,1),(389,717897600,2),(389,736210800,1),(389,749433600,2),(389,767746800,1),(389,780969600,2),(389,799020000,3),(389,812322000,2),(389,830469600,3),(389,843771600,2),(389,861919200,3),(389,875221200,2),(389,893368800,3),(389,906670800,2),(389,925423200,3),(389,938725200,2),(389,956872800,3),(389,970174800,2),(389,988322400,3),(389,1001624400,2),(389,1019772000,3),(389,1033074000,2),(389,1051221600,3),(389,1064523600,2),(389,1083276000,3),(389,1096578000,2),(389,1114725600,3),(389,1128027600,2),(389,1146175200,3),(389,1158872400,2),(389,1177624800,3),(389,1189112400,2),(389,1209074400,3),(389,1219957200,2),(389,1240524000,3),(389,1250802000,2),(389,1272578400,3),(389,1281474000,2),(389,1284069600,1),(389,1285880400,2),(389,1400191200,1),(389,1403816400,2),(389,1406844000,1),(389,1411678800,2),(390,-2147483648,1),(390,-1691962479,2),(390,-1680471279,4),(390,-1664143200,3),(390,-1650146400,4),(390,-1633903200,3),(390,-1617487200,4),(390,-1601848800,3),(390,-1586037600,4),(390,-1570399200,3),(390,-1552168800,4),(390,-1538344800,3),(390,-1522533600,4),(390,-1517011200,6),(390,-1507500000,5),(390,-1490565600,4),(390,-1473631200,5),(390,-1460930400,4),(390,-1442786400,5),(390,-1428876000,4),(390,-1410732000,5),(390,-1396216800,4),(390,-1379282400,5),(390,-1364767200,4),(390,-1348437600,5),(390,-1333317600,4),(390,-1315778400,5),(390,-1301263200,4),(390,-1284328800,5),(390,-1269813600,4),(390,-1253484000,5),(390,-1238364000,4),(390,-1221429600,5),(390,-1206914400,4),(390,-1189980000,5),(390,-1175464800,4),(390,-1159135200,5),(390,-1143410400,4),(390,-1126476000,5),(390,-1111960800,4),(390,-1095631200,5),(390,-1080511200,4),(390,-1063576800,5),(390,-1049061600,4),(390,-1032127200,5),(390,-1017612000,4),(390,-1001282400,5),(390,-986162400,4),(390,-969228000,5),(390,-950479200,4),(390,-942012000,5),(390,-733356000,4),(390,-719445600,5),(390,-699487200,4),(390,-684972000,5),(390,-668037600,4),(390,-654732000,5),(390,-636588000,4),(390,-622072800,5),(390,-605743200,4),(390,-590623200,5),(390,-574293600,4),(390,-558568800,5),(390,-542239200,4),(390,-527119200,5),(390,-512604000,4),(390,-496274400,5),(390,-481154400,4),(390,-464220000,5),(390,-449704800,4),(390,-432165600,5),(390,-417650400,4),(390,-401320800,5),(390,-386200800,4),(390,-369266400,5),(390,-354751200,4),(390,-337816800,5),(390,-323301600,4),(390,-306972000,5),(390,-291852000,4),(390,-276732000,5),(390,-257983200,4),(390,-245282400,5),(390,-226533600,4),(390,-213228000,5),(390,-195084000,4),(390,-182383200,5),(390,-163634400,4),(390,-150933600,5),(390,-132184800,4),(390,-119484000,5),(390,-100735200,4),(390,-88034400,5),(390,-68680800,4),(390,-59004000,5),(390,-37242000,9),(390,57722400,7),(390,69818400,8),(390,89172000,7),(390,101268000,8),(390,120621600,7),(390,132717600,8),(390,152071200,7),(390,164167200,8),(390,183520800,7),(390,196221600,8),(390,214970400,7),(390,227671200,8),(390,246420000,7),(390,259120800,8),(390,278474400,7),(390,290570400,8),(390,309924000,7),(390,322020000,8),(390,341373600,7),(390,354675600,8),(390,372819600,7),(390,386125200,8),(390,404269200,7),(390,417574800,8),(390,435718800,7),(390,449024400,8),(390,467773200,7),(390,481078800,8),(390,499222800,7),(390,512528400,8),(390,530672400,7),(390,543978000,8),(390,562122000,7),(390,575427600,8),(390,593571600,7),(390,606877200,8),(390,625626000,7),(390,638326800,8),(390,657075600,7),(390,670381200,8),(390,688525200,7),(390,701830800,8),(390,719974800,7),(390,733280400,8),(390,751424400,7),(390,764730000,8),(390,782874000,7),(390,796179600,8),(390,814323600,7),(390,828234000,8),(390,846378000,7),(390,859683600,8),(390,877827600,7),(390,891133200,8),(390,909277200,7),(390,922582800,8),(390,941331600,7),(390,954032400,8),(390,972781200,7),(390,985482000,8),(390,1004230800,7),(390,1017536400,8),(390,1035680400,7),(390,1048986000,8),(390,1067130000,7),(390,1080435600,8),(390,1099184400,7),(390,1111885200,8),(390,1130634000,7),(390,1143334800,8),(390,1162083600,7),(390,1174784400,8),(390,1193533200,7),(390,1206838800,8),(390,1224982800,7),(390,1238288400,8),(390,1256432400,7),(390,1269738000,8),(390,1288486800,7),(390,1301187600,8),(390,1319936400,7),(390,1332637200,8),(390,1351386000,7),(390,1364691600,8),(390,1382835600,7),(390,1396141200,8),(390,1414285200,7),(390,1427590800,8),(390,1445734800,7),(390,1459040400,8),(390,1477789200,7),(390,1490490000,8),(390,1509238800,7),(390,1521939600,8),(390,1540688400,7),(390,1553994000,8),(390,1572138000,7),(390,1585443600,8),(390,1603587600,7),(390,1616893200,8),(390,1635642000,7),(390,1648342800,8),(390,1667091600,7),(390,1679792400,8),(390,1698541200,7),(390,1711846800,8),(390,1729990800,7),(390,1743296400,8),(390,1761440400,7),(390,1774746000,8),(390,1792890000,7),(390,1806195600,8),(390,1824944400,7),(390,1837645200,8),(390,1856394000,7),(390,1869094800,8),(390,1887843600,7),(390,1901149200,8),(390,1919293200,7),(390,1932598800,8),(390,1950742800,7),(390,1964048400,8),(390,1982797200,7),(390,1995498000,8),(390,2014246800,7),(390,2026947600,8),(390,2045696400,7),(390,2058397200,8),(390,2077146000,7),(390,2090451600,8),(390,2108595600,7),(390,2121901200,8),(390,2140045200,7),(393,-2147483648,0),(393,2147483647,0),(394,-2147483648,0),(394,2147483647,0),(395,-2147483648,0),(395,2147483647,0),(396,-2147483648,0),(396,2147483647,0),(397,-2147483648,0),(397,2147483647,0),(398,-2147483648,0),(398,2147483647,0),(399,-2147483648,0),(399,2147483647,0),(400,-2147483648,0),(400,2147483647,0),(401,-2147483648,0),(401,2147483647,0),(402,-2147483648,0),(402,2147483647,0),(403,-2147483648,0),(403,2147483647,0),(404,-2147483648,0),(404,2147483647,0),(406,-2147483648,0),(406,2147483647,0),(407,-2147483648,0),(407,2147483647,0),(408,-2147483648,0),(408,2147483647,0),(409,-2147483648,0),(409,2147483647,0),(410,-2147483648,0),(410,2147483647,0),(411,-2147483648,0),(411,2147483647,0),(412,-2147483648,0),(412,2147483647,0),(413,-2147483648,0),(413,2147483647,0),(414,-2147483648,0),(414,2147483647,0),(415,-2147483648,0),(415,2147483647,0),(416,-2147483648,0),(416,2147483647,0),(417,-2147483648,0),(417,2147483647,0),(418,-2147483648,0),(418,2147483647,0),(419,-2147483648,0),(419,2147483647,0),(426,-2147483648,2),(426,-1693700372,1),(426,-1680484772,2),(426,-1663453172,3),(426,-1650147572,4),(426,-1633213172,3),(426,-1617488372,4),(426,-1601158772,3),(426,-1586038772,4),(426,-1569709172,3),(426,-1554589172,4),(426,-1538259572,3),(426,-1523139572,4),(426,-1507501172,3),(426,-1490566772,4),(426,-1470176372,3),(426,-1459117172,4),(426,-1443997172,3),(426,-1427667572,4),(426,-1406672372,3),(426,-1396217972,4),(426,-1376950772,3),(426,-1364768372,4),(426,-1345414772,3),(426,-1333318772,4),(426,-1313792372,3),(426,-1301264372,4),(426,-1282256372,3),(426,-1269814772,4),(426,-1250720372,3),(426,-1238365172,4),(426,-1219184372,3),(426,-1206915572,4),(426,-1186957172,3),(426,-1175465972,4),(426,-1156025972,3),(426,-1143411572,4),(426,-1124489972,3),(426,-1111961972,4),(426,-1092953972,3),(426,-1080512372,4),(426,-1061331572,3),(426,-1049062772,4),(426,-1029190772,3),(426,-1025745572,7),(426,-1017613200,5),(426,-998259600,6),(426,-986163600,5),(426,-966723600,6),(426,-954109200,5),(426,-935022000,10),(426,-857257200,8),(426,-844556400,9),(426,-828226800,8),(426,-812502000,9),(426,-796777200,8),(426,-781052400,9),(426,-766623600,8),(426,220921200,13),(426,228877200,11),(426,243997200,12),(426,260326800,11),(426,276051600,12),(426,291776400,11),(426,307501200,12),(426,323830800,11),(426,338950800,12),(426,354675600,11),(426,370400400,12),(426,386125200,11),(426,401850000,12),(426,417574800,11),(426,433299600,12),(426,449024400,11),(426,465354000,12),(426,481078800,11),(426,496803600,12),(426,512528400,11),(426,528253200,12),(426,543978000,11),(426,559702800,12),(426,575427600,11),(426,591152400,12),(426,606877200,11),(426,622602000,12),(426,638326800,11),(426,654656400,12),(426,670381200,11),(426,686106000,12),(426,701830800,11),(426,717555600,12),(426,733280400,11),(426,749005200,12),(426,764730000,11),(426,780454800,12),(426,796179600,11),(426,811904400,12),(426,828234000,11),(426,846378000,12),(426,859683600,11),(426,877827600,12),(426,891133200,11),(426,909277200,12),(426,922582800,11),(426,941331600,12),(426,954032400,11),(426,972781200,12),(426,985482000,11),(426,1004230800,12),(426,1017536400,11),(426,1035680400,12),(426,1048986000,11),(426,1067130000,12),(426,1080435600,11),(426,1099184400,12),(426,1111885200,11),(426,1130634000,12),(426,1143334800,11),(426,1162083600,12),(426,1174784400,11),(426,1193533200,12),(426,1206838800,11),(426,1224982800,12),(426,1238288400,11),(426,1256432400,12),(426,1269738000,11),(426,1288486800,12),(426,1301187600,11),(426,1319936400,12),(426,1332637200,11),(426,1351386000,12),(426,1364691600,11),(426,1382835600,12),(426,1396141200,11),(426,1414285200,12),(426,1427590800,11),(426,1445734800,12),(426,1459040400,11),(426,1477789200,12),(426,1490490000,11),(426,1509238800,12),(426,1521939600,11),(426,1540688400,12),(426,1553994000,11),(426,1572138000,12),(426,1585443600,11),(426,1603587600,12),(426,1616893200,11),(426,1635642000,12),(426,1648342800,11),(426,1667091600,12),(426,1679792400,11),(426,1698541200,12),(426,1711846800,11),(426,1729990800,12),(426,1743296400,11),(426,1761440400,12),(426,1774746000,11),(426,1792890000,12),(426,1806195600,11),(426,1824944400,12),(426,1837645200,11),(426,1856394000,12),(426,1869094800,11),(426,1887843600,12),(426,1901149200,11),(426,1919293200,12),(426,1932598800,11),(426,1950742800,12),(426,1964048400,11),(426,1982797200,12),(426,1995498000,11),(426,2014246800,12),(426,2026947600,11),(426,2045696400,12),(426,2058397200,11),(426,2077146000,12),(426,2090451600,11),(426,2108595600,12),(426,2121901200,11),(426,2140045200,12),(427,-2147483648,1),(427,-733881600,2),(427,481078800,3),(427,496803600,4),(427,512528400,3),(427,528253200,4),(427,543978000,3),(427,559702800,4),(427,575427600,3),(427,591152400,4),(427,606877200,3),(427,622602000,4),(427,638326800,3),(427,654656400,4),(427,670381200,3),(427,686106000,4),(427,701830800,3),(427,717555600,4),(427,733280400,3),(427,749005200,4),(427,764730000,3),(427,780454800,4),(427,796179600,3),(427,811904400,4),(427,828234000,3),(427,846378000,4),(427,859683600,3),(427,877827600,4),(427,891133200,3),(427,909277200,4),(427,922582800,3),(427,941331600,4),(427,954032400,3),(427,972781200,4),(427,985482000,3),(427,1004230800,4),(427,1017536400,3),(427,1035680400,4),(427,1048986000,3),(427,1067130000,4),(427,1080435600,3),(427,1099184400,4),(427,1111885200,3),(427,1130634000,4),(427,1143334800,3),(427,1162083600,4),(427,1174784400,3),(427,1193533200,4),(427,1206838800,3),(427,1224982800,4),(427,1238288400,3),(427,1256432400,4),(427,1269738000,3),(427,1288486800,4),(427,1301187600,3),(427,1319936400,4),(427,1332637200,3),(427,1351386000,4),(427,1364691600,3),(427,1382835600,4),(427,1396141200,3),(427,1414285200,4),(427,1427590800,3),(427,1445734800,4),(427,1459040400,3),(427,1477789200,4),(427,1490490000,3),(427,1509238800,4),(427,1521939600,3),(427,1540688400,4),(427,1553994000,3),(427,1572138000,4),(427,1585443600,3),(427,1603587600,4),(427,1616893200,3),(427,1635642000,4),(427,1648342800,3),(427,1667091600,4),(427,1679792400,3),(427,1698541200,4),(427,1711846800,3),(427,1729990800,4),(427,1743296400,3),(427,1761440400,4),(427,1774746000,3),(427,1792890000,4),(427,1806195600,3),(427,1824944400,4),(427,1837645200,3),(427,1856394000,4),(427,1869094800,3),(427,1887843600,4),(427,1901149200,3),(427,1919293200,4),(427,1932598800,3),(427,1950742800,4),(427,1964048400,3),(427,1982797200,4),(427,1995498000,3),(427,2014246800,4),(427,2026947600,3),(427,2045696400,4),(427,2058397200,3),(427,2077146000,4),(427,2090451600,3),(427,2108595600,4),(427,2121901200,3),(427,2140045200,4),(428,-2147483648,0),(428,-1441249932,1),(428,-1247540400,3),(428,354916800,2),(428,370724400,3),(428,386452800,2),(428,402260400,3),(428,417988800,2),(428,433796400,3),(428,449611200,2),(428,465343200,4),(428,481068000,5),(428,496792800,4),(428,512517600,5),(428,528242400,4),(428,543967200,5),(428,559692000,4),(428,575416800,5),(428,591141600,4),(428,606866400,6),(428,622594800,7),(428,638319600,6),(428,654649200,7),(428,670374000,4),(428,701820000,6),(428,717548400,7),(428,733273200,6),(428,748998000,7),(428,764722800,6),(428,780447600,7),(428,796172400,6),(428,811897200,7),(428,828226800,6),(428,846370800,7),(428,859676400,6),(428,877820400,7),(428,891126000,6),(428,909270000,7),(428,922575600,6),(428,941324400,7),(428,954025200,6),(428,972774000,7),(428,985474800,6),(428,1004223600,7),(428,1017529200,6),(428,1035673200,7),(428,1048978800,6),(428,1067122800,7),(428,1080428400,6),(428,1099177200,7),(428,1111878000,6),(428,1130626800,7),(428,1143327600,6),(428,1162076400,7),(428,1174777200,6),(428,1193526000,7),(428,1206831600,6),(428,1224975600,7),(428,1238281200,6),(428,1256425200,7),(428,1269730800,6),(428,1288479600,7),(428,1301180400,4),(428,1414274400,7),(428,1459033200,4),(428,2147483647,4),(429,-2147483648,1),(429,-1686101632,3),(429,-1182996000,2),(429,-1178161200,3),(429,-906861600,2),(429,-904878000,5),(429,-857257200,4),(429,-844477200,5),(429,-828237600,4),(429,-812422800,3),(429,-552362400,2),(429,-541652400,3),(429,166485600,6),(429,186184800,7),(429,198028800,6),(429,213753600,7),(429,228873600,6),(429,244080000,7),(429,260323200,6),(429,275446800,3),(429,291798000,2),(429,307407600,3),(429,323388000,2),(429,338936400,3),(429,354675600,8),(429,370400400,9),(429,386125200,8),(429,401850000,9),(429,417574800,8),(429,433299600,9),(429,449024400,8),(429,465354000,9),(429,481078800,8),(429,496803600,9),(429,512528400,8),(429,528253200,9),(429,543978000,8),(429,559702800,9),(429,575427600,8),(429,591152400,9),(429,606877200,8),(429,622602000,9),(429,638326800,8),(429,654656400,9),(429,670381200,8),(429,686106000,9),(429,701830800,8),(429,717555600,9),(429,733280400,8),(429,749005200,9),(429,764730000,8),(429,780454800,9),(429,796179600,8),(429,811904400,9),(429,828234000,8),(429,846378000,9),(429,859683600,8),(429,877827600,9),(429,891133200,8),(429,909277200,9),(429,922582800,8),(429,941331600,9),(429,954032400,8),(429,972781200,9),(429,985482000,8),(429,1004230800,9),(429,1017536400,8),(429,1035680400,9),(429,1048986000,8),(429,1067130000,9),(429,1080435600,8),(429,1099184400,9),(429,1111885200,8),(429,1130634000,9),(429,1143334800,8),(429,1162083600,9),(429,1174784400,8),(429,1193533200,9),(429,1206838800,8),(429,1224982800,9),(429,1238288400,8),(429,1256432400,9),(429,1269738000,8),(429,1288486800,9),(429,1301187600,8),(429,1319936400,9),(429,1332637200,8),(429,1351386000,9),(429,1364691600,8),(429,1382835600,9),(429,1396141200,8),(429,1414285200,9),(429,1427590800,8),(429,1445734800,9),(429,1459040400,8),(429,1477789200,9),(429,1490490000,8),(429,1509238800,9),(429,1521939600,8),(429,1540688400,9),(429,1553994000,8),(429,1572138000,9),(429,1585443600,8),(429,1603587600,9),(429,1616893200,8),(429,1635642000,9),(429,1648342800,8),(429,1667091600,9),(429,1679792400,8),(429,1698541200,9),(429,1711846800,8),(429,1729990800,9),(429,1743296400,8),(429,1761440400,9),(429,1774746000,8),(429,1792890000,9),(429,1806195600,8),(429,1824944400,9),(429,1837645200,8),(429,1856394000,9),(429,1869094800,8),(429,1887843600,9),(429,1901149200,8),(429,1919293200,9),(429,1932598800,8),(429,1950742800,9),(429,1964048400,8),(429,1982797200,9),(429,1995498000,8),(429,2014246800,9),(429,2026947600,8),(429,2045696400,9),(429,2058397200,8),(429,2077146000,9),(429,2090451600,8),(429,2108595600,9),(429,2121901200,8),(429,2140045200,9),(430,-2147483648,2),(430,-1691964000,1),(430,-1680472800,2),(430,-1664143200,1),(430,-1650146400,2),(430,-1633903200,1),(430,-1617487200,2),(430,-1601848800,1),(430,-1586037600,2),(430,-1570399200,1),(430,-1552168800,2),(430,-1538344800,1),(430,-1522533600,2),(430,-1507500000,1),(430,-1490565600,2),(430,-1473631200,1),(430,-1460930400,2),(430,-1442786400,1),(430,-1428876000,2),(430,-1410732000,1),(430,-1396216800,2),(430,-1379282400,1),(430,-1364767200,2),(430,-1348437600,1),(430,-1333317600,2),(430,-1315778400,1),(430,-1301263200,2),(430,-1284328800,1),(430,-1269813600,2),(430,-1253484000,1),(430,-1238364000,2),(430,-1221429600,1),(430,-1206914400,2),(430,-1189980000,1),(430,-1175464800,2),(430,-1159135200,1),(430,-1143410400,2),(430,-1126476000,1),(430,-1111960800,2),(430,-1095631200,1),(430,-1080511200,2),(430,-1063576800,1),(430,-1049061600,2),(430,-1032127200,1),(430,-1017612000,2),(430,-1001282400,1),(430,-986162400,2),(430,-969228000,1),(430,-950479200,2),(430,-942012000,1),(430,-904518000,3),(430,-896050800,1),(430,-875487600,3),(430,-864601200,1),(430,-844038000,3),(430,-832546800,1),(430,-812588400,3),(430,-798073200,1),(430,-781052400,3),(430,-772066800,1),(430,-764805600,2),(430,-748476000,1),(430,-733356000,2),(430,-719445600,1),(430,-717030000,3),(430,-706748400,1),(430,-699487200,2),(430,-687996000,1),(430,-668037600,2),(430,-654732000,1),(430,-636588000,2),(430,-622072800,1),(430,-605743200,2),(430,-590623200,1),(430,-574293600,2),(430,-558568800,1),(430,-542239200,2),(430,-527119200,1),(430,-512604000,2),(430,-496274400,1),(430,-481154400,2),(430,-464220000,1),(430,-449704800,2),(430,-432165600,1),(430,-417650400,2),(430,-401320800,1),(430,-386200800,2),(430,-369266400,1),(430,-354751200,2),(430,-337816800,1),(430,-323301600,2),(430,-306972000,1),(430,-291852000,2),(430,-276732000,1),(430,-257983200,2),(430,-245282400,1),(430,-226533600,2),(430,-213228000,1),(430,-195084000,2),(430,-182383200,1),(430,-163634400,2),(430,-150933600,1),(430,-132184800,2),(430,-119484000,1),(430,-100735200,2),(430,-88034400,1),(430,-68680800,2),(430,-59004000,1),(430,-37242000,4),(430,57722400,6),(430,69818400,1),(430,89172000,2),(430,101268000,1),(430,120621600,2),(430,132717600,1),(430,152071200,2),(430,164167200,1),(430,183520800,2),(430,196221600,1),(430,214970400,2),(430,227671200,1),(430,246420000,2),(430,259120800,1),(430,278474400,2),(430,290570400,1),(430,309924000,2),(430,322020000,1),(430,341373600,2),(430,354675600,5),(430,372819600,6),(430,386125200,5),(430,404269200,6),(430,417574800,5),(430,435718800,6),(430,449024400,5),(430,467773200,6),(430,481078800,5),(430,499222800,6),(430,512528400,5),(430,530672400,6),(430,543978000,5),(430,562122000,6),(430,575427600,5),(430,593571600,6),(430,606877200,5),(430,625626000,6),(430,638326800,5),(430,657075600,6),(430,670381200,5),(430,688525200,6),(430,701830800,5),(430,719974800,6),(430,733280400,5),(430,751424400,6),(430,764730000,5),(430,782874000,6),(430,796179600,5),(430,814323600,6),(430,820454400,7),(430,828234000,5),(430,846378000,6),(430,859683600,5),(430,877827600,6),(430,891133200,5),(430,909277200,6),(430,922582800,5),(430,941331600,6),(430,954032400,5),(430,972781200,6),(430,985482000,5),(430,1004230800,6),(430,1017536400,5),(430,1035680400,6),(430,1048986000,5),(430,1067130000,6),(430,1080435600,5),(430,1099184400,6),(430,1111885200,5),(430,1130634000,6),(430,1143334800,5),(430,1162083600,6),(430,1174784400,5),(430,1193533200,6),(430,1206838800,5),(430,1224982800,6),(430,1238288400,5),(430,1256432400,6),(430,1269738000,5),(430,1288486800,6),(430,1301187600,5),(430,1319936400,6),(430,1332637200,5),(430,1351386000,6),(430,1364691600,5),(430,1382835600,6),(430,1396141200,5),(430,1414285200,6),(430,1427590800,5),(430,1445734800,6),(430,1459040400,5),(430,1477789200,6),(430,1490490000,5),(430,1509238800,6),(430,1521939600,5),(430,1540688400,6),(430,1553994000,5),(430,1572138000,6),(430,1585443600,5),(430,1603587600,6),(430,1616893200,5),(430,1635642000,6),(430,1648342800,5),(430,1667091600,6),(430,1679792400,5),(430,1698541200,6),(430,1711846800,5),(430,1729990800,6),(430,1743296400,5),(430,1761440400,6),(430,1774746000,5),(430,1792890000,6),(430,1806195600,5),(430,1824944400,6),(430,1837645200,5),(430,1856394000,6),(430,1869094800,5),(430,1887843600,6),(430,1901149200,5),(430,1919293200,6),(430,1932598800,5),(430,1950742800,6),(430,1964048400,5),(430,1982797200,6),(430,1995498000,5),(430,2014246800,6),(430,2026947600,5),(430,2045696400,6),(430,2058397200,5),(430,2077146000,6),(430,2090451600,5),(430,2108595600,6),(430,2121901200,5),(430,2140045200,6),(431,-2147483648,1),(431,-905824800,4),(431,-857257200,2),(431,-844556400,3),(431,-828226800,2),(431,-812502000,3),(431,-796777200,2),(431,-788922000,1),(431,-777942000,3),(431,-766623600,2),(431,407199600,1),(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,-2147483648,2),(432,-1693706400,1),(432,-1680483600,2),(432,-1663455600,3),(432,-1650150000,4),(432,-1632006000,3),(432,-1618700400,4),(432,-938905200,3),(432,-857257200,4),(432,-844556400,3),(432,-828226800,4),(432,-812502000,3),(432,-796777200,4),(432,-781052400,3),(432,-776563200,5),(432,-765936000,1),(432,-761180400,4),(432,-757386000,2),(432,-748479600,3),(432,-733273200,4),(432,-717631200,3),(432,-714610800,6),(432,-710380800,1),(432,-701910000,4),(432,-684975600,3),(432,-670460400,4),(432,-654130800,3),(432,-639010800,4),(432,315529200,2),(432,323830800,7),(432,338950800,8),(432,354675600,7),(432,370400400,8),(432,386125200,7),(432,401850000,8),(432,417574800,7),(432,433299600,8),(432,449024400,7),(432,465354000,8),(432,481078800,7),(432,496803600,8),(432,512528400,7),(432,528253200,8),(432,543978000,7),(432,559702800,8),(432,575427600,7),(432,591152400,8),(432,606877200,7),(432,622602000,8),(432,638326800,7),(432,654656400,8),(432,670381200,7),(432,686106000,8),(432,701830800,7),(432,717555600,8),(432,733280400,7),(432,749005200,8),(432,764730000,7),(432,780454800,8),(432,796179600,7),(432,811904400,8),(432,828234000,7),(432,846378000,8),(432,859683600,7),(432,877827600,8),(432,891133200,7),(432,909277200,8),(432,922582800,7),(432,941331600,8),(432,954032400,7),(432,972781200,8),(432,985482000,7),(432,1004230800,8),(432,1017536400,7),(432,1035680400,8),(432,1048986000,7),(432,1067130000,8),(432,1080435600,7),(432,1099184400,8),(432,1111885200,7),(432,1130634000,8),(432,1143334800,7),(432,1162083600,8),(432,1174784400,7),(432,1193533200,8),(432,1206838800,7),(432,1224982800,8),(432,1238288400,7),(432,1256432400,8),(432,1269738000,7),(432,1288486800,8),(432,1301187600,7),(432,1319936400,8),(432,1332637200,7),(432,1351386000,8),(432,1364691600,7),(432,1382835600,8),(432,1396141200,7),(432,1414285200,8),(432,1427590800,7),(432,1445734800,8),(432,1459040400,7),(432,1477789200,8),(432,1490490000,7),(432,1509238800,8),(432,1521939600,7),(432,1540688400,8),(432,1553994000,7),(432,1572138000,8),(432,1585443600,7),(432,1603587600,8),(432,1616893200,7),(432,1635642000,8),(432,1648342800,7),(432,1667091600,8),(432,1679792400,7),(432,1698541200,8),(432,1711846800,7),(432,1729990800,8),(432,1743296400,7),(432,1761440400,8),(432,1774746000,7),(432,1792890000,8),(432,1806195600,7),(432,1824944400,8),(432,1837645200,7),(432,1856394000,8),(432,1869094800,7),(432,1887843600,8),(432,1901149200,7),(432,1919293200,8),(432,1932598800,7),(432,1950742800,8),(432,1964048400,7),(432,1982797200,8),(432,1995498000,7),(432,2014246800,8),(432,2026947600,7),(432,2045696400,8),(432,2058397200,7),(432,2077146000,8),(432,2090451600,7),(432,2108595600,8),(432,2121901200,7),(432,2140045200,8),(433,-2147483648,2),(433,-1693706400,1),(433,-1680483600,2),(433,-1663455600,3),(433,-1650150000,4),(433,-1632006000,3),(433,-1618700400,4),(433,-938905200,3),(433,-857257200,4),(433,-844556400,3),(433,-828226800,4),(433,-812502000,3),(433,-796777200,4),(433,-781052400,3),(433,-777866400,1),(433,-765327600,4),(433,-746578800,3),(433,-733359600,4),(433,-728517600,5),(433,-721260000,2),(433,-716425200,3),(433,-701910000,4),(433,-684975600,3),(433,-670460400,4),(433,-654217200,3),(433,-639010800,4),(433,283993200,2),(433,291776400,6),(433,307501200,7),(433,323830800,6),(433,338950800,7),(433,354675600,6),(433,370400400,7),(433,386125200,6),(433,401850000,7),(433,417574800,6),(433,433299600,7),(433,449024400,6),(433,465354000,7),(433,481078800,6),(433,496803600,7),(433,512528400,6),(433,528253200,7),(433,543978000,6),(433,559702800,7),(433,575427600,6),(433,591152400,7),(433,606877200,6),(433,622602000,7),(433,638326800,6),(433,654656400,7),(433,670381200,6),(433,686106000,7),(433,701830800,6),(433,717555600,7),(433,733280400,6),(433,749005200,7),(433,764730000,6),(433,780454800,7),(433,796179600,6),(433,811904400,7),(433,828234000,6),(433,846378000,7),(433,859683600,6),(433,877827600,7),(433,891133200,6),(433,909277200,7),(433,922582800,6),(433,941331600,7),(433,954032400,6),(433,972781200,7),(433,985482000,6),(433,1004230800,7),(433,1017536400,6),(433,1035680400,7),(433,1048986000,6),(433,1067130000,7),(433,1080435600,6),(433,1099184400,7),(433,1111885200,6),(433,1130634000,7),(433,1143334800,6),(433,1162083600,7),(433,1174784400,6),(433,1193533200,7),(433,1206838800,6),(433,1224982800,7),(433,1238288400,6),(433,1256432400,7),(433,1269738000,6),(433,1288486800,7),(433,1301187600,6),(433,1319936400,7),(433,1332637200,6),(433,1351386000,7),(433,1364691600,6),(433,1382835600,7),(433,1396141200,6),(433,1414285200,7),(433,1427590800,6),(433,1445734800,7),(433,1459040400,6),(433,1477789200,7),(433,1490490000,6),(433,1509238800,7),(433,1521939600,6),(433,1540688400,7),(433,1553994000,6),(433,1572138000,7),(433,1585443600,6),(433,1603587600,7),(433,1616893200,6),(433,1635642000,7),(433,1648342800,6),(433,1667091600,7),(433,1679792400,6),(433,1698541200,7),(433,1711846800,6),(433,1729990800,7),(433,1743296400,6),(433,1761440400,7),(433,1774746000,6),(433,1792890000,7),(433,1806195600,6),(433,1824944400,7),(433,1837645200,6),(433,1856394000,7),(433,1869094800,6),(433,1887843600,7),(433,1901149200,6),(433,1919293200,7),(433,1932598800,6),(433,1950742800,7),(433,1964048400,6),(433,1982797200,7),(433,1995498000,6),(433,2014246800,7),(433,2026947600,6),(433,2045696400,7),(433,2058397200,6),(433,2077146000,7),(433,2090451600,6),(433,2108595600,7),(433,2121901200,6),(433,2140045200,7),(434,-2147483648,1),(434,-1740355200,2),(434,-1693702800,5),(434,-1680483600,2),(434,-1663455600,3),(434,-1650150000,4),(434,-1632006000,3),(434,-1618700400,4),(434,-1613826000,8),(434,-1604278800,6),(434,-1585530000,7),(434,-1574038800,6),(434,-1552266000,7),(434,-1539997200,6),(434,-1520557200,7),(434,-1507510800,6),(434,-1490576400,7),(434,-1473642000,6),(434,-1459126800,7),(434,-1444006800,6),(434,-1427677200,7),(434,-1411952400,6),(434,-1396227600,7),(434,-1379293200,6),(434,-1364778000,7),(434,-1348448400,6),(434,-1333328400,7),(434,-1316394000,6),(434,-1301263200,7),(434,-1284328800,6),(434,-1269813600,7),(434,-1253484000,6),(434,-1238364000,7),(434,-1221429600,6),(434,-1206914400,7),(434,-1191189600,6),(434,-1175464800,7),(434,-1160344800,6),(434,-1143410400,7),(434,-1127685600,6),(434,-1111960800,7),(434,-1096840800,6),(434,-1080511200,7),(434,-1063576800,6),(434,-1049061600,7),(434,-1033336800,6),(434,-1017612000,7),(434,-1002492000,6),(434,-986162400,7),(434,-969228000,6),(434,-950479200,7),(434,-942012000,6),(434,-934668000,3),(434,-857257200,4),(434,-844556400,3),(434,-828226800,4),(434,-812502000,3),(434,-799293600,5),(434,-798073200,4),(434,-781052400,3),(434,-766623600,4),(434,-745455600,3),(434,-733273200,4),(434,220921200,2),(434,228877200,9),(434,243997200,10),(434,260326800,9),(434,276051600,10),(434,291776400,9),(434,307501200,10),(434,323830800,9),(434,338950800,10),(434,354675600,9),(434,370400400,10),(434,386125200,9),(434,401850000,10),(434,417574800,9),(434,433299600,10),(434,449024400,9),(434,465354000,10),(434,481078800,9),(434,496803600,10),(434,512528400,9),(434,528253200,10),(434,543978000,9),(434,559702800,10),(434,575427600,9),(434,591152400,10),(434,606877200,9),(434,622602000,10),(434,638326800,9),(434,654656400,10),(434,670381200,9),(434,686106000,10),(434,701830800,9),(434,717555600,10),(434,733280400,9),(434,749005200,10),(434,764730000,9),(434,780454800,10),(434,796179600,9),(434,811904400,10),(434,828234000,9),(434,846378000,10),(434,859683600,9),(434,877827600,10),(434,891133200,9),(434,909277200,10),(434,922582800,9),(434,941331600,10),(434,954032400,9),(434,972781200,10),(434,985482000,9),(434,1004230800,10),(434,1017536400,9),(434,1035680400,10),(434,1048986000,9),(434,1067130000,10),(434,1080435600,9),(434,1099184400,10),(434,1111885200,9),(434,1130634000,10),(434,1143334800,9),(434,1162083600,10),(434,1174784400,9),(434,1193533200,10),(434,1206838800,9),(434,1224982800,10),(434,1238288400,9),(434,1256432400,10),(434,1269738000,9),(434,1288486800,10),(434,1301187600,9),(434,1319936400,10),(434,1332637200,9),(434,1351386000,10),(434,1364691600,9),(434,1382835600,10),(434,1396141200,9),(434,1414285200,10),(434,1427590800,9),(434,1445734800,10),(434,1459040400,9),(434,1477789200,10),(434,1490490000,9),(434,1509238800,10),(434,1521939600,9),(434,1540688400,10),(434,1553994000,9),(434,1572138000,10),(434,1585443600,9),(434,1603587600,10),(434,1616893200,9),(434,1635642000,10),(434,1648342800,9),(434,1667091600,10),(434,1679792400,9),(434,1698541200,10),(434,1711846800,9),(434,1729990800,10),(434,1743296400,9),(434,1761440400,10),(434,1774746000,9),(434,1792890000,10),(434,1806195600,9),(434,1824944400,10),(434,1837645200,9),(434,1856394000,10),(434,1869094800,9),(434,1887843600,10),(434,1901149200,9),(434,1919293200,10),(434,1932598800,9),(434,1950742800,10),(434,1964048400,9),(434,1982797200,10),(434,1995498000,9),(434,2014246800,10),(434,2026947600,9),(434,2045696400,10),(434,2058397200,9),(434,2077146000,10),(434,2090451600,9),(434,2108595600,10),(434,2121901200,9),(434,2140045200,10),(435,-2147483648,1),(435,-1213148664,5),(435,-1187056800,2),(435,-1175479200,3),(435,-1159754400,2),(435,-1144029600,3),(435,-1127700000,2),(435,-1111975200,3),(435,-1096250400,2),(435,-1080525600,3),(435,-1064800800,2),(435,-1049076000,3),(435,-1033351200,2),(435,-1017626400,3),(435,-1001901600,2),(435,-986176800,3),(435,-970452000,2),(435,-954727200,3),(435,296604000,4),(435,307486800,5),(435,323816400,4),(435,338940000,5),(435,354672000,2),(435,370396800,3),(435,386121600,2),(435,401846400,3),(435,417571200,2),(435,433296000,3),(435,449020800,2),(435,465350400,3),(435,481075200,2),(435,496800000,3),(435,512524800,2),(435,528249600,3),(435,543974400,2),(435,559699200,3),(435,575424000,2),(435,591148800,3),(435,606873600,2),(435,622598400,3),(435,638323200,2),(435,654652800,3),(435,662680800,5),(435,670370400,2),(435,686095200,3),(435,701820000,2),(435,717544800,3),(435,733269600,2),(435,748994400,3),(435,757375200,5),(435,764719200,4),(435,780440400,5),(435,796168800,4),(435,811890000,5),(435,828223200,4),(435,846363600,5),(435,859683600,6),(435,877827600,7),(435,891133200,6),(435,909277200,7),(435,922582800,6),(435,941331600,7),(435,954032400,6),(435,972781200,7),(435,985482000,6),(435,1004230800,7),(435,1017536400,6),(435,1035680400,7),(435,1048986000,6),(435,1067130000,7),(435,1080435600,6),(435,1099184400,7),(435,1111885200,6),(435,1130634000,7),(435,1143334800,6),(435,1162083600,7),(435,1174784400,6),(435,1193533200,7),(435,1206838800,6),(435,1224982800,7),(435,1238288400,6),(435,1256432400,7),(435,1269738000,6),(435,1288486800,7),(435,1301187600,6),(435,1319936400,7),(435,1332637200,6),(435,1351386000,7),(435,1364691600,6),(435,1382835600,7),(435,1396141200,6),(435,1414285200,7),(435,1427590800,6),(435,1445734800,7),(435,1459040400,6),(435,1477789200,7),(435,1490490000,6),(435,1509238800,7),(435,1521939600,6),(435,1540688400,7),(435,1553994000,6),(435,1572138000,7),(435,1585443600,6),(435,1603587600,7),(435,1616893200,6),(435,1635642000,7),(435,1648342800,6),(435,1667091600,7),(435,1679792400,6),(435,1698541200,7),(435,1711846800,6),(435,1729990800,7),(435,1743296400,6),(435,1761440400,7),(435,1774746000,6),(435,1792890000,7),(435,1806195600,6),(435,1824944400,7),(435,1837645200,6),(435,1856394000,7),(435,1869094800,6),(435,1887843600,7),(435,1901149200,6),(435,1919293200,7),(435,1932598800,6),(435,1950742800,7),(435,1964048400,6),(435,1982797200,7),(435,1995498000,6),(435,2014246800,7),(435,2026947600,6),(435,2045696400,7),(435,2058397200,6),(435,2077146000,7),(435,2090451600,6),(435,2108595600,7),(435,2121901200,6),(435,2140045200,7),(436,-2147483648,2),(436,-1693706400,1),(436,-1680483600,2),(436,-1663455600,3),(436,-1650150000,4),(436,-1640998800,2),(436,-1632006000,1),(436,-1618700400,2),(436,-1600470000,1),(436,-1587250800,2),(436,-1569711600,1),(436,-1555196400,2),(436,-906775200,1),(436,-857257200,4),(436,-844556400,3),(436,-828226800,4),(436,-812502000,3),(436,-796777200,4),(436,-788922000,2),(436,-778471200,1),(436,-762656400,2),(436,-749689200,3),(436,-733276800,2),(436,-717634800,3),(436,-701910000,4),(436,-686185200,3),(436,-670460400,4),(436,-654130800,3),(436,-639010800,4),(436,-492656400,1),(436,-481168800,2),(436,-461199600,1),(436,-449708400,2),(436,-428540400,1),(436,-418258800,2),(436,-397090800,1),(436,-386809200,2),(436,323823600,1),(436,338943600,2),(436,354668400,1),(436,370393200,2),(436,386118000,1),(436,401842800,2),(436,417567600,1),(436,433292400,2),(436,449024400,5),(436,465354000,6),(436,481078800,5),(436,496803600,6),(436,512528400,5),(436,528253200,6),(436,543978000,5),(436,559702800,6),(436,575427600,5),(436,591152400,6),(436,606877200,5),(436,622602000,6),(436,638326800,5),(436,654656400,6),(436,670381200,5),(436,686106000,6),(436,701830800,5),(436,717555600,6),(436,733280400,5),(436,749005200,6),(436,764730000,5),(436,780454800,6),(436,796179600,5),(436,811904400,6),(436,828234000,5),(436,846378000,6),(436,859683600,5),(436,877827600,6),(436,891133200,5),(436,909277200,6),(436,922582800,5),(436,941331600,6),(436,954032400,5),(436,972781200,6),(436,985482000,5),(436,1004230800,6),(436,1017536400,5),(436,1035680400,6),(436,1048986000,5),(436,1067130000,6),(436,1080435600,5),(436,1099184400,6),(436,1111885200,5),(436,1130634000,6),(436,1143334800,5),(436,1162083600,6),(436,1174784400,5),(436,1193533200,6),(436,1206838800,5),(436,1224982800,6),(436,1238288400,5),(436,1256432400,6),(436,1269738000,5),(436,1288486800,6),(436,1301187600,5),(436,1319936400,6),(436,1332637200,5),(436,1351386000,6),(436,1364691600,5),(436,1382835600,6),(436,1396141200,5),(436,1414285200,6),(436,1427590800,5),(436,1445734800,6),(436,1459040400,5),(436,1477789200,6),(436,1490490000,5),(436,1509238800,6),(436,1521939600,5),(436,1540688400,6),(436,1553994000,5),(436,1572138000,6),(436,1585443600,5),(436,1603587600,6),(436,1616893200,5),(436,1635642000,6),(436,1648342800,5),(436,1667091600,6),(436,1679792400,5),(436,1698541200,6),(436,1711846800,5),(436,1729990800,6),(436,1743296400,5),(436,1761440400,6),(436,1774746000,5),(436,1792890000,6),(436,1806195600,5),(436,1824944400,6),(436,1837645200,5),(436,1856394000,6),(436,1869094800,5),(436,1887843600,6),(436,1901149200,5),(436,1919293200,6),(436,1932598800,5),(436,1950742800,6),(436,1964048400,5),(436,1982797200,6),(436,1995498000,5),(436,2014246800,6),(436,2026947600,5),(436,2045696400,6),(436,2058397200,5),(436,2077146000,6),(436,2090451600,5),(436,2108595600,6),(436,2121901200,5),(436,2140045200,6),(437,-2147483648,2),(437,-904435200,1),(437,-891129600,2),(437,-872985600,1),(437,-859680000,2),(437,354675600,3),(437,370400400,4),(437,386125200,3),(437,401850000,4),(437,417574800,3),(437,433299600,4),(437,449024400,3),(437,465354000,4),(437,481078800,3),(437,496803600,4),(437,512528400,3),(437,528253200,4),(437,543978000,3),(437,559702800,4),(437,575427600,3),(437,591152400,4),(437,606877200,3),(437,622602000,4),(437,638326800,3),(437,654656400,4),(437,670381200,3),(437,686106000,4),(437,701830800,3),(437,717555600,4),(437,733280400,3),(437,749005200,4),(437,764730000,3),(437,780454800,4),(437,796179600,3),(437,811904400,4),(437,828234000,3),(437,846378000,4),(437,859683600,3),(437,877827600,4),(437,891133200,3),(437,909277200,4),(437,922582800,3),(437,941331600,4),(437,954032400,3),(437,972781200,4),(437,985482000,3),(437,1004230800,4),(437,1017536400,3),(437,1035680400,4),(437,1048986000,3),(437,1067130000,4),(437,1080435600,3),(437,1099184400,4),(437,1111885200,3),(437,1130634000,4),(437,1143334800,3),(437,1162083600,4),(437,1174784400,3),(437,1193533200,4),(437,1206838800,3),(437,1224982800,4),(437,1238288400,3),(437,1256432400,4),(437,1269738000,3),(437,1288486800,4),(437,1301187600,3),(437,1319936400,4),(437,1332637200,3),(437,1351386000,4),(437,1364691600,3),(437,1382835600,4),(437,1396141200,3),(437,1414285200,4),(437,1427590800,3),(437,1445734800,4),(437,1459040400,3),(437,1477789200,4),(437,1490490000,3),(437,1509238800,4),(437,1521939600,3),(437,1540688400,4),(437,1553994000,3),(437,1572138000,4),(437,1585443600,3),(437,1603587600,4),(437,1616893200,3),(437,1635642000,4),(437,1648342800,3),(437,1667091600,4),(437,1679792400,3),(437,1698541200,4),(437,1711846800,3),(437,1729990800,4),(437,1743296400,3),(437,1761440400,4),(437,1774746000,3),(437,1792890000,4),(437,1806195600,3),(437,1824944400,4),(437,1837645200,3),(437,1856394000,4),(437,1869094800,3),(437,1887843600,4),(437,1901149200,3),(437,1919293200,4),(437,1932598800,3),(437,1950742800,4),(437,1964048400,3),(437,1982797200,4),(437,1995498000,3),(437,2014246800,4),(437,2026947600,3),(437,2045696400,4),(437,2058397200,3),(437,2077146000,4),(437,2090451600,3),(437,2108595600,4),(437,2121901200,3),(437,2140045200,4),(438,-2147483648,1),(438,-1637114100,2),(438,-1213148664,5),(438,-1187056800,3),(438,-1175479200,4),(438,-1159754400,3),(438,-1144029600,4),(438,-1127700000,3),(438,-1111975200,4),(438,-1096250400,3),(438,-1080525600,4),(438,-1064800800,3),(438,-1049076000,4),(438,-1033351200,3),(438,-1017626400,4),(438,-1001901600,3),(438,-986176800,4),(438,-970452000,3),(438,-954727200,4),(438,-927165600,6),(438,-898138800,9),(438,-857257200,7),(438,-844556400,8),(438,-828226800,7),(438,-812502000,8),(438,-800157600,11),(438,354920400,10),(438,370728000,11),(438,386456400,10),(438,402264000,11),(438,417992400,10),(438,433800000,11),(438,449614800,10),(438,465346800,12),(438,481071600,13),(438,496796400,12),(438,512521200,13),(438,528246000,12),(438,543970800,13),(438,559695600,12),(438,575420400,13),(438,591145200,12),(438,606870000,13),(438,622594800,12),(438,638319600,13),(438,641944800,6),(438,654652800,4),(438,670377600,3),(438,686102400,4),(438,694216800,5),(438,701820000,6),(438,717541200,5),(438,733269600,6),(438,748990800,5),(438,764719200,6),(438,780440400,5),(438,796168800,6),(438,811890000,5),(438,828223200,6),(438,846363600,5),(438,859680000,6),(438,877824000,5),(438,891129600,6),(438,909273600,5),(438,922579200,6),(438,941328000,5),(438,954028800,6),(438,972777600,5),(438,985478400,6),(438,1004227200,5),(438,1017532800,6),(438,1035676800,5),(438,1048982400,6),(438,1067126400,5),(438,1080432000,6),(438,1099180800,5),(438,1111881600,6),(438,1130630400,5),(438,1143331200,6),(438,1162080000,5),(438,1174780800,6),(438,1193529600,5),(438,1206835200,6),(438,1224979200,5),(438,1238284800,6),(438,1256428800,5),(438,1269734400,6),(438,1288483200,5),(438,1301184000,6),(438,1319932800,5),(438,1332633600,6),(438,1351382400,5),(438,1364688000,6),(438,1382832000,5),(438,1396137600,6),(438,1414281600,5),(438,1427587200,6),(438,1445731200,5),(438,1459036800,6),(438,1477785600,5),(438,1490486400,6),(438,1509235200,5),(438,1521936000,6),(438,1540684800,5),(438,1553990400,6),(438,1572134400,5),(438,1585440000,6),(438,1603584000,5),(438,1616889600,6),(438,1635638400,5),(438,1648339200,6),(438,1667088000,5),(438,1679788800,6),(438,1698537600,5),(438,1711843200,6),(438,1729987200,5),(438,1743292800,6),(438,1761436800,5),(438,1774742400,6),(438,1792886400,5),(438,1806192000,6),(438,1824940800,5),(438,1837641600,6),(438,1856390400,5),(438,1869091200,6),(438,1887840000,5),(438,1901145600,6),(438,1919289600,5),(438,1932595200,6),(438,1950739200,5),(438,1964044800,6),(438,1982793600,5),(438,1995494400,6),(438,2014243200,5),(438,2026944000,6),(438,2045692800,5),(438,2058393600,6),(438,2077142400,5),(438,2090448000,6),(438,2108592000,5),(438,2121897600,6),(438,2140041600,5),(439,-2147483648,2),(439,-1692496800,1),(439,-1680490800,2),(439,-935110800,1),(439,-857257200,3),(439,-844556400,4),(439,-828226800,3),(439,-812502000,4),(439,-796777200,3),(439,-781052400,4),(439,-769388400,3),(439,-747010800,4),(439,-736383600,3),(439,-715215600,4),(439,-706748400,3),(439,-683161200,4),(439,-675298800,3),(439,315529200,2),(439,323830800,5),(439,338950800,6),(439,354675600,5),(439,370400400,6),(439,386125200,5),(439,401850000,6),(439,417574800,5),(439,433299600,6),(439,449024400,5),(439,465354000,6),(439,481078800,5),(439,496803600,6),(439,512528400,5),(439,528253200,6),(439,543978000,5),(439,559702800,6),(439,575427600,5),(439,591152400,6),(439,606877200,5),(439,622602000,6),(439,638326800,5),(439,654656400,6),(439,670381200,5),(439,686106000,6),(439,701830800,5),(439,717555600,6),(439,733280400,5),(439,749005200,6),(439,764730000,5),(439,780454800,6),(439,796179600,5),(439,811904400,6),(439,828234000,5),(439,846378000,6),(439,859683600,5),(439,877827600,6),(439,891133200,5),(439,909277200,6),(439,922582800,5),(439,941331600,6),(439,954032400,5),(439,972781200,6),(439,985482000,5),(439,1004230800,6),(439,1017536400,5),(439,1035680400,6),(439,1048986000,5),(439,1067130000,6),(439,1080435600,5),(439,1099184400,6),(439,1111885200,5),(439,1130634000,6),(439,1143334800,5),(439,1162083600,6),(439,1174784400,5),(439,1193533200,6),(439,1206838800,5),(439,1224982800,6),(439,1238288400,5),(439,1256432400,6),(439,1269738000,5),(439,1288486800,6),(439,1301187600,5),(439,1319936400,6),(439,1332637200,5),(439,1351386000,6),(439,1364691600,5),(439,1382835600,6),(439,1396141200,5),(439,1414285200,6),(439,1427590800,5),(439,1445734800,6),(439,1459040400,5),(439,1477789200,6),(439,1490490000,5),(439,1509238800,6),(439,1521939600,5),(439,1540688400,6),(439,1553994000,5),(439,1572138000,6),(439,1585443600,5),(439,1603587600,6),(439,1616893200,5),(439,1635642000,6),(439,1648342800,5),(439,1667091600,6),(439,1679792400,5),(439,1698541200,6),(439,1711846800,5),(439,1729990800,6),(439,1743296400,5),(439,1761440400,6),(439,1774746000,5),(439,1792890000,6),(439,1806195600,5),(439,1824944400,6),(439,1837645200,5),(439,1856394000,6),(439,1869094800,5),(439,1887843600,6),(439,1901149200,5),(439,1919293200,6),(439,1932598800,5),(439,1950742800,6),(439,1964048400,5),(439,1982797200,6),(439,1995498000,5),(439,2014246800,6),(439,2026947600,5),(439,2045696400,6),(439,2058397200,5),(439,2077146000,6),(439,2090451600,5),(439,2108595600,6),(439,2121901200,5),(439,2140045200,6),(440,-2147483648,1),(440,-1691962479,2),(440,-1680471279,4),(440,-1664143200,3),(440,-1650146400,4),(440,-1633903200,3),(440,-1617487200,4),(440,-1601848800,3),(440,-1586037600,4),(440,-1570399200,3),(440,-1552168800,4),(440,-1538344800,3),(440,-1522533600,4),(440,-1517011200,6),(440,-1507500000,5),(440,-1490565600,4),(440,-1473631200,5),(440,-1460930400,4),(440,-1442786400,5),(440,-1428876000,4),(440,-1410732000,5),(440,-1396216800,4),(440,-1379282400,5),(440,-1364767200,4),(440,-1348437600,5),(440,-1333317600,4),(440,-1315778400,5),(440,-1301263200,4),(440,-1284328800,5),(440,-1269813600,4),(440,-1253484000,5),(440,-1238364000,4),(440,-1221429600,5),(440,-1206914400,4),(440,-1189980000,5),(440,-1175464800,4),(440,-1159135200,5),(440,-1143410400,4),(440,-1126476000,5),(440,-1111960800,4),(440,-1095631200,5),(440,-1080511200,4),(440,-1063576800,5),(440,-1049061600,4),(440,-1032127200,5),(440,-1017612000,4),(440,-1001282400,5),(440,-986162400,4),(440,-969228000,5),(440,-950479200,4),(440,-942012000,5),(440,-733356000,4),(440,-719445600,5),(440,-699487200,4),(440,-684972000,5),(440,-668037600,4),(440,-654732000,5),(440,-636588000,4),(440,-622072800,5),(440,-605743200,4),(440,-590623200,5),(440,-574293600,4),(440,-558568800,5),(440,-542239200,4),(440,-527119200,5),(440,-512604000,4),(440,-496274400,5),(440,-481154400,4),(440,-464220000,5),(440,-449704800,4),(440,-432165600,5),(440,-417650400,4),(440,-401320800,5),(440,-386200800,4),(440,-369266400,5),(440,-354751200,4),(440,-337816800,5),(440,-323301600,4),(440,-306972000,5),(440,-291852000,4),(440,-276732000,5),(440,-257983200,4),(440,-245282400,5),(440,-226533600,4),(440,-213228000,5),(440,-195084000,4),(440,-182383200,5),(440,-163634400,4),(440,-150933600,5),(440,-132184800,4),(440,-119484000,5),(440,-100735200,4),(440,-88034400,5),(440,-68680800,4),(440,-59004000,5),(440,-37242000,9),(440,57722400,7),(440,69818400,8),(440,89172000,7),(440,101268000,8),(440,120621600,7),(440,132717600,8),(440,152071200,7),(440,164167200,8),(440,183520800,7),(440,196221600,8),(440,214970400,7),(440,227671200,8),(440,246420000,7),(440,259120800,8),(440,278474400,7),(440,290570400,8),(440,309924000,7),(440,322020000,8),(440,341373600,7),(440,354675600,8),(440,372819600,7),(440,386125200,8),(440,404269200,7),(440,417574800,8),(440,435718800,7),(440,449024400,8),(440,467773200,7),(440,481078800,8),(440,499222800,7),(440,512528400,8),(440,530672400,7),(440,543978000,8),(440,562122000,7),(440,575427600,8),(440,593571600,7),(440,606877200,8),(440,625626000,7),(440,638326800,8),(440,657075600,7),(440,670381200,8),(440,688525200,7),(440,701830800,8),(440,719974800,7),(440,733280400,8),(440,751424400,7),(440,764730000,8),(440,782874000,7),(440,796179600,8),(440,814323600,7),(440,828234000,8),(440,846378000,7),(440,859683600,8),(440,877827600,7),(440,891133200,8),(440,909277200,7),(440,922582800,8),(440,941331600,7),(440,954032400,8),(440,972781200,7),(440,985482000,8),(440,1004230800,7),(440,1017536400,8),(440,1035680400,7),(440,1048986000,8),(440,1067130000,7),(440,1080435600,8),(440,1099184400,7),(440,1111885200,8),(440,1130634000,7),(440,1143334800,8),(440,1162083600,7),(440,1174784400,8),(440,1193533200,7),(440,1206838800,8),(440,1224982800,7),(440,1238288400,8),(440,1256432400,7),(440,1269738000,8),(440,1288486800,7),(440,1301187600,8),(440,1319936400,7),(440,1332637200,8),(440,1351386000,7),(440,1364691600,8),(440,1382835600,7),(440,1396141200,8),(440,1414285200,7),(440,1427590800,8),(440,1445734800,7),(440,1459040400,8),(440,1477789200,7),(440,1490490000,8),(440,1509238800,7),(440,1521939600,8),(440,1540688400,7),(440,1553994000,8),(440,1572138000,7),(440,1585443600,8),(440,1603587600,7),(440,1616893200,8),(440,1635642000,7),(440,1648342800,8),(440,1667091600,7),(440,1679792400,8),(440,1698541200,7),(440,1711846800,8),(440,1729990800,7),(440,1743296400,8),(440,1761440400,7),(440,1774746000,8),(440,1792890000,7),(440,1806195600,8),(440,1824944400,7),(440,1837645200,8),(440,1856394000,7),(440,1869094800,8),(440,1887843600,7),(440,1901149200,8),(440,1919293200,7),(440,1932598800,8),(440,1950742800,7),(440,1964048400,8),(440,1982797200,7),(440,1995498000,8),(440,2014246800,7),(440,2026947600,8),(440,2045696400,7),(440,2058397200,8),(440,2077146000,7),(440,2090451600,8),(440,2108595600,7),(440,2121901200,8),(440,2140045200,7),(441,-2147483648,2),(441,-1691964000,1),(441,-1680472800,2),(441,-1664143200,1),(441,-1650146400,2),(441,-1633903200,1),(441,-1617487200,2),(441,-1601848800,1),(441,-1586037600,2),(441,-1570399200,1),(441,-1552168800,2),(441,-1538344800,1),(441,-1522533600,2),(441,-1507500000,1),(441,-1490565600,2),(441,-1473631200,1),(441,-1460930400,2),(441,-1442786400,1),(441,-1428876000,2),(441,-1410732000,1),(441,-1396216800,2),(441,-1379282400,1),(441,-1364767200,2),(441,-1348437600,1),(441,-1333317600,2),(441,-1315778400,1),(441,-1301263200,2),(441,-1284328800,1),(441,-1269813600,2),(441,-1253484000,1),(441,-1238364000,2),(441,-1221429600,1),(441,-1206914400,2),(441,-1189980000,1),(441,-1175464800,2),(441,-1159135200,1),(441,-1143410400,2),(441,-1126476000,1),(441,-1111960800,2),(441,-1095631200,1),(441,-1080511200,2),(441,-1063576800,1),(441,-1049061600,2),(441,-1032127200,1),(441,-1017612000,2),(441,-1001282400,1),(441,-986162400,2),(441,-969228000,1),(441,-950479200,2),(441,-942012000,1),(441,-904518000,3),(441,-896050800,1),(441,-875487600,3),(441,-864601200,1),(441,-844038000,3),(441,-832546800,1),(441,-812588400,3),(441,-798073200,1),(441,-781052400,3),(441,-772066800,1),(441,-764805600,2),(441,-748476000,1),(441,-733356000,2),(441,-719445600,1),(441,-717030000,3),(441,-706748400,1),(441,-699487200,2),(441,-687996000,1),(441,-668037600,2),(441,-654732000,1),(441,-636588000,2),(441,-622072800,1),(441,-605743200,2),(441,-590623200,1),(441,-574293600,2),(441,-558568800,1),(441,-542239200,2),(441,-527119200,1),(441,-512604000,2),(441,-496274400,1),(441,-481154400,2),(441,-464220000,1),(441,-449704800,2),(441,-432165600,1),(441,-417650400,2),(441,-401320800,4),(441,386125200,5),(441,401850000,6),(441,417574800,5),(441,433299600,6),(441,449024400,5),(441,465354000,6),(441,481078800,5),(441,496803600,6),(441,512528400,5),(441,528253200,6),(441,543978000,5),(441,559702800,6),(441,575427600,5),(441,591152400,6),(441,606877200,5),(441,622602000,6),(441,638326800,5),(441,654656400,6),(441,670381200,5),(441,686106000,6),(441,701830800,5),(441,717555600,6),(441,733280400,5),(441,749005200,6),(441,764730000,5),(441,780454800,6),(441,796179600,5),(441,811904400,6),(441,828234000,5),(441,846378000,6),(441,859683600,5),(441,877827600,6),(441,891133200,5),(441,909277200,6),(441,922582800,5),(441,941331600,6),(441,954032400,5),(441,972781200,6),(441,985482000,5),(441,1004230800,6),(441,1017536400,5),(441,1035680400,6),(441,1048986000,5),(441,1067130000,6),(441,1080435600,5),(441,1099184400,6),(441,1111885200,5),(441,1130634000,6),(441,1143334800,5),(441,1162083600,6),(441,1174784400,5),(441,1193533200,6),(441,1206838800,5),(441,1224982800,6),(441,1238288400,5),(441,1256432400,6),(441,1269738000,5),(441,1288486800,6),(441,1301187600,5),(441,1319936400,6),(441,1332637200,5),(441,1351386000,6),(441,1364691600,5),(441,1382835600,6),(441,1396141200,5),(441,1414285200,6),(441,1427590800,5),(441,1445734800,6),(441,1459040400,5),(441,1477789200,6),(441,1490490000,5),(441,1509238800,6),(441,1521939600,5),(441,1540688400,6),(441,1553994000,5),(441,1572138000,6),(441,1585443600,5),(441,1603587600,6),(441,1616893200,5),(441,1635642000,6),(441,1648342800,5),(441,1667091600,6),(441,1679792400,5),(441,1698541200,6),(441,1711846800,5),(441,1729990800,6),(441,1743296400,5),(441,1761440400,6),(441,1774746000,5),(441,1792890000,6),(441,1806195600,5),(441,1824944400,6),(441,1837645200,5),(441,1856394000,6),(441,1869094800,5),(441,1887843600,6),(441,1901149200,5),(441,1919293200,6),(441,1932598800,5),(441,1950742800,6),(441,1964048400,5),(441,1982797200,6),(441,1995498000,5),(441,2014246800,6),(441,2026947600,5),(441,2045696400,6),(441,2058397200,5),(441,2077146000,6),(441,2090451600,5),(441,2108595600,6),(441,2121901200,5),(441,2140045200,6),(442,-2147483648,2),(442,-1691964000,1),(442,-1680472800,2),(442,-1664143200,1),(442,-1650146400,2),(442,-1633903200,1),(442,-1617487200,2),(442,-1601848800,1),(442,-1586037600,2),(442,-1570399200,1),(442,-1552168800,2),(442,-1538344800,1),(442,-1522533600,2),(442,-1507500000,1),(442,-1490565600,2),(442,-1473631200,1),(442,-1460930400,2),(442,-1442786400,1),(442,-1428876000,2),(442,-1410732000,1),(442,-1396216800,2),(442,-1379282400,1),(442,-1364767200,2),(442,-1348437600,1),(442,-1333317600,2),(442,-1315778400,1),(442,-1301263200,2),(442,-1284328800,1),(442,-1269813600,2),(442,-1253484000,1),(442,-1238364000,2),(442,-1221429600,1),(442,-1206914400,2),(442,-1189980000,1),(442,-1175464800,2),(442,-1159135200,1),(442,-1143410400,2),(442,-1126476000,1),(442,-1111960800,2),(442,-1095631200,1),(442,-1080511200,2),(442,-1063576800,1),(442,-1049061600,2),(442,-1032127200,1),(442,-1017612000,2),(442,-1001282400,1),(442,-986162400,2),(442,-969228000,1),(442,-950479200,2),(442,-942012000,1),(442,-904518000,3),(442,-896050800,1),(442,-875487600,3),(442,-864601200,1),(442,-844038000,3),(442,-832546800,1),(442,-812588400,3),(442,-798073200,1),(442,-781052400,3),(442,-772066800,1),(442,-764805600,2),(442,-748476000,1),(442,-733356000,2),(442,-719445600,1),(442,-717030000,3),(442,-706748400,1),(442,-699487200,2),(442,-687996000,1),(442,-668037600,2),(442,-654732000,1),(442,-636588000,2),(442,-622072800,1),(442,-605743200,2),(442,-590623200,1),(442,-574293600,2),(442,-558568800,1),(442,-542239200,2),(442,-527119200,1),(442,-512604000,2),(442,-496274400,1),(442,-481154400,2),(442,-464220000,1),(442,-449704800,2),(442,-432165600,1),(442,-417650400,2),(442,-401320800,1),(442,-386200800,2),(442,-369266400,1),(442,-354751200,2),(442,-337816800,1),(442,-323301600,2),(442,-306972000,1),(442,-291852000,2),(442,-276732000,1),(442,-257983200,2),(442,-245282400,1),(442,-226533600,2),(442,-213228000,1),(442,-195084000,2),(442,-182383200,1),(442,-163634400,2),(442,-150933600,1),(442,-132184800,2),(442,-119484000,1),(442,-100735200,2),(442,-88034400,1),(442,-68680800,2),(442,-59004000,1),(442,-37242000,4),(442,57722400,6),(442,69818400,1),(442,89172000,2),(442,101268000,1),(442,120621600,2),(442,132717600,1),(442,152071200,2),(442,164167200,1),(442,183520800,2),(442,196221600,1),(442,214970400,2),(442,227671200,1),(442,246420000,2),(442,259120800,1),(442,278474400,2),(442,290570400,1),(442,309924000,2),(442,322020000,1),(442,341373600,2),(442,354675600,5),(442,372819600,6),(442,386125200,5),(442,404269200,6),(442,417574800,5),(442,435718800,6),(442,449024400,5),(442,467773200,6),(442,481078800,5),(442,499222800,6),(442,512528400,5),(442,530672400,6),(442,543978000,5),(442,562122000,6),(442,575427600,5),(442,593571600,6),(442,606877200,5),(442,625626000,6),(442,638326800,5),(442,657075600,6),(442,670381200,5),(442,688525200,6),(442,701830800,5),(442,719974800,6),(442,733280400,5),(442,751424400,6),(442,764730000,5),(442,782874000,6),(442,796179600,5),(442,814323600,6),(442,820454400,7),(442,828234000,5),(442,846378000,6),(442,859683600,5),(442,877827600,6),(442,891133200,5),(442,909277200,6),(442,922582800,5),(442,941331600,6),(442,954032400,5),(442,972781200,6),(442,985482000,5),(442,1004230800,6),(442,1017536400,5),(442,1035680400,6),(442,1048986000,5),(442,1067130000,6),(442,1080435600,5),(442,1099184400,6),(442,1111885200,5),(442,1130634000,6),(442,1143334800,5),(442,1162083600,6),(442,1174784400,5),(442,1193533200,6),(442,1206838800,5),(442,1224982800,6),(442,1238288400,5),(442,1256432400,6),(442,1269738000,5),(442,1288486800,6),(442,1301187600,5),(442,1319936400,6),(442,1332637200,5),(442,1351386000,6),(442,1364691600,5),(442,1382835600,6),(442,1396141200,5),(442,1414285200,6),(442,1427590800,5),(442,1445734800,6),(442,1459040400,5),(442,1477789200,6),(442,1490490000,5),(442,1509238800,6),(442,1521939600,5),(442,1540688400,6),(442,1553994000,5),(442,1572138000,6),(442,1585443600,5),(442,1603587600,6),(442,1616893200,5),(442,1635642000,6),(442,1648342800,5),(442,1667091600,6),(442,1679792400,5),(442,1698541200,6),(442,1711846800,5),(442,1729990800,6),(442,1743296400,5),(442,1761440400,6),(442,1774746000,5),(442,1792890000,6),(442,1806195600,5),(442,1824944400,6),(442,1837645200,5),(442,1856394000,6),(442,1869094800,5),(442,1887843600,6),(442,1901149200,5),(442,1919293200,6),(442,1932598800,5),(442,1950742800,6),(442,1964048400,5),(442,1982797200,6),(442,1995498000,5),(442,2014246800,6),(442,2026947600,5),(442,2045696400,6),(442,2058397200,5),(442,2077146000,6),(442,2090451600,5),(442,2108595600,6),(442,2121901200,5),(442,2140045200,6),(443,-2147483648,1),(443,-1535938789,3),(443,-875671200,2),(443,-859773600,3),(443,354672000,2),(443,370396800,3),(443,386121600,2),(443,401846400,3),(443,417574800,4),(443,433299600,5),(443,449024400,4),(443,465354000,5),(443,481078800,4),(443,496803600,5),(443,512528400,4),(443,528253200,5),(443,543978000,4),(443,559702800,5),(443,575427600,4),(443,591152400,5),(443,606877200,4),(443,622602000,5),(443,638326800,4),(443,654656400,5),(443,670381200,4),(443,686106000,5),(443,701830800,4),(443,717555600,5),(443,733280400,4),(443,749005200,5),(443,764730000,4),(443,780454800,5),(443,796179600,4),(443,811904400,5),(443,828234000,4),(443,846378000,5),(443,859683600,4),(443,877827600,5),(443,891133200,4),(443,909277200,5),(443,922582800,4),(443,941331600,5),(443,954032400,4),(443,972781200,5),(443,985482000,4),(443,1004230800,5),(443,1017536400,4),(443,1035680400,5),(443,1048986000,4),(443,1067130000,5),(443,1080435600,4),(443,1099184400,5),(443,1111885200,4),(443,1130634000,5),(443,1143334800,4),(443,1162083600,5),(443,1174784400,4),(443,1193533200,5),(443,1206838800,4),(443,1224982800,5),(443,1238288400,4),(443,1256432400,5),(443,1269738000,4),(443,1288486800,5),(443,1301187600,4),(443,1319936400,5),(443,1332637200,4),(443,1351386000,5),(443,1364691600,4),(443,1382835600,5),(443,1396141200,4),(443,1414285200,5),(443,1427590800,4),(443,1445734800,5),(443,1459040400,4),(443,1477789200,5),(443,1490490000,4),(443,1509238800,5),(443,1521939600,4),(443,1540688400,5),(443,1553994000,4),(443,1572138000,5),(443,1585443600,4),(443,1603587600,5),(443,1616893200,4),(443,1635642000,5),(443,1648342800,4),(443,1667091600,5),(443,1679792400,4),(443,1698541200,5),(443,1711846800,4),(443,1729990800,5),(443,1743296400,4),(443,1761440400,5),(443,1774746000,4),(443,1792890000,5),(443,1806195600,4),(443,1824944400,5),(443,1837645200,4),(443,1856394000,5),(443,1869094800,4),(443,1887843600,5),(443,1901149200,4),(443,1919293200,5),(443,1932598800,4),(443,1950742800,5),(443,1964048400,4),(443,1982797200,5),(443,1995498000,4),(443,2014246800,5),(443,2026947600,4),(443,2045696400,5),(443,2058397200,4),(443,2077146000,5),(443,2090451600,4),(443,2108595600,5),(443,2121901200,4),(443,2140045200,5),(444,-2147483648,2),(444,-1691964000,1),(444,-1680472800,2),(444,-1664143200,1),(444,-1650146400,2),(444,-1633903200,1),(444,-1617487200,2),(444,-1601848800,1),(444,-1586037600,2),(444,-1570399200,1),(444,-1552168800,2),(444,-1538344800,1),(444,-1522533600,2),(444,-1507500000,1),(444,-1490565600,2),(444,-1473631200,1),(444,-1460930400,2),(444,-1442786400,1),(444,-1428876000,2),(444,-1410732000,1),(444,-1396216800,2),(444,-1379282400,1),(444,-1364767200,2),(444,-1348437600,1),(444,-1333317600,2),(444,-1315778400,1),(444,-1301263200,2),(444,-1284328800,1),(444,-1269813600,2),(444,-1253484000,1),(444,-1238364000,2),(444,-1221429600,1),(444,-1206914400,2),(444,-1189980000,1),(444,-1175464800,2),(444,-1159135200,1),(444,-1143410400,2),(444,-1126476000,1),(444,-1111960800,2),(444,-1095631200,1),(444,-1080511200,2),(444,-1063576800,1),(444,-1049061600,2),(444,-1032127200,1),(444,-1017612000,2),(444,-1001282400,1),(444,-986162400,2),(444,-969228000,1),(444,-950479200,2),(444,-942012000,1),(444,-904518000,3),(444,-896050800,1),(444,-875487600,3),(444,-864601200,1),(444,-844038000,3),(444,-832546800,1),(444,-812588400,3),(444,-798073200,1),(444,-781052400,3),(444,-772066800,1),(444,-764805600,2),(444,-748476000,1),(444,-733356000,2),(444,-719445600,1),(444,-717030000,3),(444,-706748400,1),(444,-699487200,2),(444,-687996000,1),(444,-668037600,2),(444,-654732000,1),(444,-636588000,2),(444,-622072800,1),(444,-605743200,2),(444,-590623200,1),(444,-574293600,2),(444,-558568800,1),(444,-542239200,2),(444,-527119200,1),(444,-512604000,2),(444,-496274400,1),(444,-481154400,2),(444,-464220000,1),(444,-449704800,2),(444,-432165600,1),(444,-417650400,2),(444,-401320800,1),(444,-386200800,2),(444,-369266400,1),(444,-354751200,2),(444,-337816800,1),(444,-323301600,2),(444,-306972000,1),(444,-291852000,2),(444,-276732000,1),(444,-257983200,2),(444,-245282400,1),(444,-226533600,2),(444,-213228000,1),(444,-195084000,2),(444,-182383200,1),(444,-163634400,2),(444,-150933600,1),(444,-132184800,2),(444,-119484000,1),(444,-100735200,2),(444,-88034400,1),(444,-68680800,2),(444,-59004000,1),(444,-37242000,4),(444,57722400,6),(444,69818400,1),(444,89172000,2),(444,101268000,1),(444,120621600,2),(444,132717600,1),(444,152071200,2),(444,164167200,1),(444,183520800,2),(444,196221600,1),(444,214970400,2),(444,227671200,1),(444,246420000,2),(444,259120800,1),(444,278474400,2),(444,290570400,1),(444,309924000,2),(444,322020000,1),(444,341373600,2),(444,354675600,5),(444,372819600,6),(444,386125200,5),(444,404269200,6),(444,417574800,5),(444,435718800,6),(444,449024400,5),(444,467773200,6),(444,481078800,5),(444,499222800,6),(444,512528400,5),(444,530672400,6),(444,543978000,5),(444,562122000,6),(444,575427600,5),(444,593571600,6),(444,606877200,5),(444,625626000,6),(444,638326800,5),(444,657075600,6),(444,670381200,5),(444,688525200,6),(444,701830800,5),(444,719974800,6),(444,733280400,5),(444,751424400,6),(444,764730000,5),(444,782874000,6),(444,796179600,5),(444,814323600,6),(444,820454400,7),(444,828234000,5),(444,846378000,6),(444,859683600,5),(444,877827600,6),(444,891133200,5),(444,909277200,6),(444,922582800,5),(444,941331600,6),(444,954032400,5),(444,972781200,6),(444,985482000,5),(444,1004230800,6),(444,1017536400,5),(444,1035680400,6),(444,1048986000,5),(444,1067130000,6),(444,1080435600,5),(444,1099184400,6),(444,1111885200,5),(444,1130634000,6),(444,1143334800,5),(444,1162083600,6),(444,1174784400,5),(444,1193533200,6),(444,1206838800,5),(444,1224982800,6),(444,1238288400,5),(444,1256432400,6),(444,1269738000,5),(444,1288486800,6),(444,1301187600,5),(444,1319936400,6),(444,1332637200,5),(444,1351386000,6),(444,1364691600,5),(444,1382835600,6),(444,1396141200,5),(444,1414285200,6),(444,1427590800,5),(444,1445734800,6),(444,1459040400,5),(444,1477789200,6),(444,1490490000,5),(444,1509238800,6),(444,1521939600,5),(444,1540688400,6),(444,1553994000,5),(444,1572138000,6),(444,1585443600,5),(444,1603587600,6),(444,1616893200,5),(444,1635642000,6),(444,1648342800,5),(444,1667091600,6),(444,1679792400,5),(444,1698541200,6),(444,1711846800,5),(444,1729990800,6),(444,1743296400,5),(444,1761440400,6),(444,1774746000,5),(444,1792890000,6),(444,1806195600,5),(444,1824944400,6),(444,1837645200,5),(444,1856394000,6),(444,1869094800,5),(444,1887843600,6),(444,1901149200,5),(444,1919293200,6),(444,1932598800,5),(444,1950742800,6),(444,1964048400,5),(444,1982797200,6),(444,1995498000,5),(444,2014246800,6),(444,2026947600,5),(444,2045696400,6),(444,2058397200,5),(444,2077146000,6),(444,2090451600,5),(444,2108595600,6),(444,2121901200,5),(444,2140045200,6),(445,-2147483648,1),(445,-1869875816,3),(445,-1693706400,2),(445,-1680490800,3),(445,-1570413600,2),(445,-1552186800,3),(445,-1538359200,2),(445,-1522551600,3),(445,-1507514400,2),(445,-1490583600,3),(445,-1440208800,2),(445,-1428030000,3),(445,-1409709600,2),(445,-1396494000,3),(445,-931053600,2),(445,-922676400,3),(445,-917834400,2),(445,-892436400,3),(445,-875844000,2),(445,-764737200,3),(445,-744343200,2),(445,-733806000,3),(445,-716436000,2),(445,-701924400,3),(445,-684986400,2),(445,-670474800,3),(445,-654141600,2),(445,-639025200,3),(445,-622087200,2),(445,-606970800,3),(445,-590032800,2),(445,-575521200,3),(445,-235620000,2),(445,-194842800,3),(445,-177732000,2),(445,-165726000,3),(445,107910000,2),(445,121215600,3),(445,133920000,2),(445,152665200,3),(445,164678400,2),(445,184114800,3),(445,196214400,2),(445,215564400,3),(445,228873600,2),(445,245804400,3),(445,260323200,2),(445,267915600,4),(445,428454000,5),(445,433893600,4),(445,468111600,3),(445,482799600,6),(445,496710000,7),(445,512521200,6),(445,528246000,7),(445,543970800,6),(445,559695600,7),(445,575420400,6),(445,591145200,7),(445,606870000,6),(445,622594800,7),(445,638319600,6),(445,654649200,7),(445,670374000,6),(445,686098800,7),(445,701823600,6),(445,717548400,7),(445,733273200,6),(445,748998000,7),(445,764118000,6),(445,780447600,7),(445,796172400,6),(445,811897200,7),(445,828226800,6),(445,846370800,7),(445,859676400,6),(445,877820400,7),(445,891126000,6),(445,909270000,7),(445,922575600,6),(445,941324400,7),(445,954025200,6),(445,972774000,7),(445,985474800,6),(445,1004223600,7),(445,1017529200,6),(445,1035673200,7),(445,1048978800,6),(445,1067122800,7),(445,1080428400,6),(445,1099177200,7),(445,1111878000,6),(445,1130626800,7),(445,1143327600,6),(445,1162076400,7),(445,1167602400,3),(445,1174784400,8),(445,1193533200,9),(445,1206838800,8),(445,1224982800,9),(445,1238288400,8),(445,1256432400,9),(445,1269738000,8),(445,1288486800,9),(445,1301274000,8),(445,1319936400,9),(445,1332637200,8),(445,1351386000,9),(445,1364691600,8),(445,1382835600,9),(445,1396227600,8),(445,1414285200,9),(445,1427590800,8),(445,1446944400,9),(445,1459040400,8),(445,1473195600,4),(445,2147483647,4),(446,-2147483648,2),(446,-1691964000,1),(446,-1680472800,2),(446,-1664143200,1),(446,-1650146400,2),(446,-1633903200,1),(446,-1617487200,2),(446,-1601848800,1),(446,-1586037600,2),(446,-1570399200,1),(446,-1552168800,2),(446,-1538344800,1),(446,-1522533600,2),(446,-1507500000,1),(446,-1490565600,2),(446,-1473631200,1),(446,-1460930400,2),(446,-1442786400,1),(446,-1428876000,2),(446,-1410732000,1),(446,-1396216800,2),(446,-1379282400,1),(446,-1364767200,2),(446,-1348437600,1),(446,-1333317600,2),(446,-1315778400,1),(446,-1301263200,2),(446,-1284328800,1),(446,-1269813600,2),(446,-1253484000,1),(446,-1238364000,2),(446,-1221429600,1),(446,-1206914400,2),(446,-1189980000,1),(446,-1175464800,2),(446,-1159135200,1),(446,-1143410400,2),(446,-1126476000,1),(446,-1111960800,2),(446,-1095631200,1),(446,-1080511200,2),(446,-1063576800,1),(446,-1049061600,2),(446,-1032127200,1),(446,-1017612000,2),(446,-1001282400,1),(446,-986162400,2),(446,-969228000,1),(446,-950479200,2),(446,-942012000,1),(446,-904518000,3),(446,-896050800,1),(446,-875487600,3),(446,-864601200,1),(446,-844038000,3),(446,-832546800,1),(446,-812588400,3),(446,-798073200,1),(446,-781052400,3),(446,-772066800,1),(446,-764805600,2),(446,-748476000,1),(446,-733356000,2),(446,-719445600,1),(446,-717030000,3),(446,-706748400,1),(446,-699487200,2),(446,-687996000,1),(446,-668037600,2),(446,-654732000,1),(446,-636588000,2),(446,-622072800,1),(446,-605743200,2),(446,-590623200,1),(446,-574293600,2),(446,-558568800,1),(446,-542239200,2),(446,-527119200,1),(446,-512604000,2),(446,-496274400,1),(446,-481154400,2),(446,-464220000,1),(446,-449704800,2),(446,-432165600,1),(446,-417650400,2),(446,-401320800,1),(446,-386200800,2),(446,-369266400,1),(446,-354751200,2),(446,-337816800,1),(446,-323301600,2),(446,-306972000,1),(446,-291852000,2),(446,-276732000,1),(446,-257983200,2),(446,-245282400,1),(446,-226533600,2),(446,-213228000,1),(446,-195084000,2),(446,-182383200,1),(446,-163634400,2),(446,-150933600,1),(446,-132184800,2),(446,-119484000,1),(446,-100735200,2),(446,-88034400,1),(446,-68680800,2),(446,-59004000,1),(446,-37242000,4),(446,57722400,6),(446,69818400,1),(446,89172000,2),(446,101268000,1),(446,120621600,2),(446,132717600,1),(446,152071200,2),(446,164167200,1),(446,183520800,2),(446,196221600,1),(446,214970400,2),(446,227671200,1),(446,246420000,2),(446,259120800,1),(446,278474400,2),(446,290570400,1),(446,309924000,2),(446,322020000,1),(446,341373600,2),(446,354675600,5),(446,372819600,6),(446,386125200,5),(446,404269200,6),(446,417574800,5),(446,435718800,6),(446,449024400,5),(446,467773200,6),(446,481078800,5),(446,499222800,6),(446,512528400,5),(446,530672400,6),(446,543978000,5),(446,562122000,6),(446,575427600,5),(446,593571600,6),(446,606877200,5),(446,625626000,6),(446,638326800,5),(446,657075600,6),(446,670381200,5),(446,688525200,6),(446,701830800,5),(446,719974800,6),(446,733280400,5),(446,751424400,6),(446,764730000,5),(446,782874000,6),(446,796179600,5),(446,814323600,6),(446,820454400,7),(446,828234000,5),(446,846378000,6),(446,859683600,5),(446,877827600,6),(446,891133200,5),(446,909277200,6),(446,922582800,5),(446,941331600,6),(446,954032400,5),(446,972781200,6),(446,985482000,5),(446,1004230800,6),(446,1017536400,5),(446,1035680400,6),(446,1048986000,5),(446,1067130000,6),(446,1080435600,5),(446,1099184400,6),(446,1111885200,5),(446,1130634000,6),(446,1143334800,5),(446,1162083600,6),(446,1174784400,5),(446,1193533200,6),(446,1206838800,5),(446,1224982800,6),(446,1238288400,5),(446,1256432400,6),(446,1269738000,5),(446,1288486800,6),(446,1301187600,5),(446,1319936400,6),(446,1332637200,5),(446,1351386000,6),(446,1364691600,5),(446,1382835600,6),(446,1396141200,5),(446,1414285200,6),(446,1427590800,5),(446,1445734800,6),(446,1459040400,5),(446,1477789200,6),(446,1490490000,5),(446,1509238800,6),(446,1521939600,5),(446,1540688400,6),(446,1553994000,5),(446,1572138000,6),(446,1585443600,5),(446,1603587600,6),(446,1616893200,5),(446,1635642000,6),(446,1648342800,5),(446,1667091600,6),(446,1679792400,5),(446,1698541200,6),(446,1711846800,5),(446,1729990800,6),(446,1743296400,5),(446,1761440400,6),(446,1774746000,5),(446,1792890000,6),(446,1806195600,5),(446,1824944400,6),(446,1837645200,5),(446,1856394000,6),(446,1869094800,5),(446,1887843600,6),(446,1901149200,5),(446,1919293200,6),(446,1932598800,5),(446,1950742800,6),(446,1964048400,5),(446,1982797200,6),(446,1995498000,5),(446,2014246800,6),(446,2026947600,5),(446,2045696400,6),(446,2058397200,5),(446,2077146000,6),(446,2090451600,5),(446,2108595600,6),(446,2121901200,5),(446,2140045200,6),(447,-2147483648,2),(447,-1693706400,1),(447,-1680483600,2),(447,-1663455600,3),(447,-1650150000,4),(447,-1632006000,3),(447,-1618700400,4),(447,-938905200,3),(447,-857257200,4),(447,-844556400,3),(447,-828226800,4),(447,-812502000,3),(447,-796777200,4),(447,-781052400,3),(447,-780372000,6),(447,-778730400,5),(447,-762663600,6),(447,-749095200,8),(447,354920400,7),(447,370728000,8),(447,386456400,7),(447,402264000,8),(447,417992400,7),(447,433800000,8),(447,449614800,7),(447,465346800,9),(447,481071600,10),(447,496796400,9),(447,512521200,10),(447,528246000,9),(447,543970800,10),(447,559695600,9),(447,575420400,10),(447,591145200,9),(447,606870000,11),(447,622598400,12),(447,638323200,11),(447,654652800,12),(447,670377600,11),(447,686102400,12),(447,701827200,11),(447,717552000,12),(447,733276800,11),(447,749001600,12),(447,764726400,11),(447,780451200,12),(447,796176000,11),(447,811900800,12),(447,828230400,11),(447,846374400,12),(447,859680000,11),(447,877824000,12),(447,891129600,11),(447,909273600,12),(447,922579200,11),(447,941328000,12),(447,954028800,11),(447,972777600,12),(447,985478400,11),(447,1004227200,12),(447,1017532800,11),(447,1035676800,12),(447,1048982400,11),(447,1067126400,12),(447,1080432000,11),(447,1099180800,12),(447,1111881600,11),(447,1130630400,12),(447,1143331200,11),(447,1162080000,12),(447,1174780800,11),(447,1193529600,12),(447,1206835200,11),(447,1224979200,12),(447,1238284800,11),(447,1256428800,12),(447,1269734400,11),(447,1288483200,12),(447,1301184000,13),(447,1414278000,12),(448,-2147483648,1),(448,-1441159324,2),(448,-1247536800,3),(448,-892522800,6),(448,-857257200,4),(448,-844556400,5),(448,-828226800,4),(448,-825382800,3),(448,354920400,7),(448,370728000,3),(448,386456400,7),(448,402264000,3),(448,417992400,7),(448,433800000,3),(448,449614800,7),(448,465346800,8),(448,481071600,9),(448,496796400,8),(448,512521200,9),(448,528246000,8),(448,543970800,9),(448,559695600,8),(448,575420400,9),(448,591145200,8),(448,606870000,9),(448,622594800,8),(448,638319600,9),(448,646783200,10),(448,686102400,2),(448,701820000,10),(448,717541200,2),(448,733269600,10),(448,748990800,2),(448,764719200,10),(448,780440400,2),(448,796179600,11),(448,811904400,12),(448,828234000,11),(448,846378000,12),(448,859683600,11),(448,877827600,12),(448,891133200,11),(448,909277200,12),(448,922582800,11),(448,941331600,12),(448,954032400,11),(448,972781200,12),(448,985482000,11),(448,1004230800,12),(448,1017536400,11),(448,1035680400,12),(448,1048986000,11),(448,1067130000,12),(448,1080435600,11),(448,1099184400,12),(448,1111885200,11),(448,1130634000,12),(448,1143334800,11),(448,1162083600,12),(448,1174784400,11),(448,1193533200,12),(448,1206838800,11),(448,1224982800,12),(448,1238288400,11),(448,1256432400,12),(448,1269738000,11),(448,1288486800,12),(448,1301187600,11),(448,1319936400,12),(448,1332637200,11),(448,1351386000,12),(448,1364691600,11),(448,1382835600,12),(448,1396141200,11),(448,1414285200,12),(448,1427590800,11),(448,1445734800,12),(448,1459040400,11),(448,1477789200,12),(448,1490490000,11),(448,1509238800,12),(448,1521939600,11),(448,1540688400,12),(448,1553994000,11),(448,1572138000,12),(448,1585443600,11),(448,1603587600,12),(448,1616893200,11),(448,1635642000,12),(448,1648342800,11),(448,1667091600,12),(448,1679792400,11),(448,1698541200,12),(448,1711846800,11),(448,1729990800,12),(448,1743296400,11),(448,1761440400,12),(448,1774746000,11),(448,1792890000,12),(448,1806195600,11),(448,1824944400,12),(448,1837645200,11),(448,1856394000,12),(448,1869094800,11),(448,1887843600,12),(448,1901149200,11),(448,1919293200,12),(448,1932598800,11),(448,1950742800,12),(448,1964048400,11),(448,1982797200,12),(448,1995498000,11),(448,2014246800,12),(448,2026947600,11),(448,2045696400,12),(448,2058397200,11),(448,2077146000,12),(448,2090451600,11),(448,2108595600,12),(448,2121901200,11),(448,2140045200,12),(449,-2147483648,0),(449,-1593820800,1),(449,-1247540400,3),(449,354916800,2),(449,370724400,3),(449,386452800,2),(449,402260400,3),(449,417988800,2),(449,433796400,3),(449,449611200,2),(449,465343200,4),(449,481068000,5),(449,496792800,4),(449,512517600,5),(449,528242400,4),(449,543967200,5),(449,559692000,4),(449,575416800,5),(449,591141600,4),(449,606866400,6),(449,622594800,7),(449,638319600,6),(449,654649200,7),(449,670374000,4),(449,701820000,6),(449,717548400,7),(449,733273200,6),(449,748998000,7),(449,764722800,6),(449,780447600,7),(449,796172400,6),(449,811897200,7),(449,828226800,6),(449,846370800,7),(449,859676400,6),(449,877820400,7),(449,891126000,6),(449,909270000,7),(449,922575600,6),(449,941324400,7),(449,954025200,6),(449,972774000,7),(449,985474800,6),(449,1004223600,7),(449,1017529200,6),(449,1035673200,7),(449,1048978800,6),(449,1067122800,7),(449,1080428400,6),(449,1099177200,7),(449,1111878000,6),(449,1130626800,7),(449,1143327600,6),(449,1162076400,7),(449,1174777200,6),(449,1193526000,7),(449,1206831600,6),(449,1224975600,7),(449,1238281200,6),(449,1256425200,7),(449,1269730800,6),(449,1288479600,7),(449,1301180400,4),(449,1414274400,7),(449,2147483647,7),(450,-2147483648,0),(450,-1830384000,6),(450,-1689555600,1),(450,-1677801600,2),(450,-1667437200,3),(450,-1647738000,4),(450,-1635814800,3),(450,-1616202000,4),(450,-1604365200,3),(450,-1584666000,4),(450,-1572742800,3),(450,-1553043600,4),(450,-1541206800,3),(450,-1521507600,4),(450,-1442451600,3),(450,-1426813200,4),(450,-1379293200,3),(450,-1364778000,4),(450,-1348448400,3),(450,-1333328400,4),(450,-1316394000,3),(450,-1301274000,4),(450,-1284339600,3),(450,-1269824400,4),(450,-1221440400,3),(450,-1206925200,4),(450,-1191200400,3),(450,-1175475600,4),(450,-1127696400,3),(450,-1111971600,4),(450,-1096851600,3),(450,-1080522000,4),(450,-1063587600,3),(450,-1049072400,4),(450,-1033347600,3),(450,-1017622800,4),(450,-1002502800,3),(450,-986173200,4),(450,-969238800,3),(450,-950490000,4),(450,-942022800,3),(450,-922669200,4),(450,-906944400,3),(450,-891133200,4),(450,-877309200,3),(450,-873684000,5),(450,-864007200,3),(450,-857955600,4),(450,-845859600,3),(450,-842839200,5),(450,-831348000,3),(450,-825901200,4),(450,-814410000,3),(450,-810784800,5),(450,-799898400,3),(450,-794451600,4),(450,-782960400,3),(450,-779335200,5),(450,-768448800,3),(450,-763002000,4),(450,-749091600,3),(450,-733366800,4),(450,-717631200,3),(450,-701906400,4),(450,-686181600,3),(450,-670456800,4),(450,-654732000,3),(450,-639007200,4),(450,-591832800,3),(450,-575503200,4),(450,-559778400,3),(450,-544053600,4),(450,-528328800,3),(450,-512604000,4),(450,-496879200,3),(450,-481154400,4),(450,-465429600,3),(450,-449704800,4),(450,-433980000,3),(450,-417650400,4),(450,-401925600,3),(450,-386200800,4),(450,-370476000,3),(450,-354751200,4),(450,-339026400,3),(450,-323301600,4),(450,-307576800,3),(450,-291852000,4),(450,-276127200,3),(450,-260402400,4),(450,-244677600,3),(450,-228348000,4),(450,-212623200,3),(450,-196898400,4),(450,-181173600,3),(450,-165448800,4),(450,-149724000,3),(450,-133999200,4),(450,-118274400,7),(450,212544000,2),(450,228268800,3),(450,243993600,4),(450,260323200,3),(450,276048000,4),(450,291772800,3),(450,307501200,4),(450,323222400,3),(450,338950800,4),(450,354675600,3),(450,370400400,4),(450,386125200,3),(450,401850000,4),(450,417578400,3),(450,433299600,4),(450,449024400,3),(450,465354000,4),(450,481078800,3),(450,496803600,4),(450,512528400,3),(450,528253200,4),(450,543978000,3),(450,559702800,4),(450,575427600,3),(450,591152400,4),(450,606877200,3),(450,622602000,4),(450,638326800,3),(450,654656400,4),(450,670381200,3),(450,686106000,4),(450,701830800,3),(450,717555600,8),(450,733280400,9),(450,749005200,8),(450,764730000,9),(450,780454800,8),(450,796179600,9),(450,811904400,8),(450,828234000,10),(450,846378000,6),(450,859683600,10),(450,877827600,6),(450,891133200,10),(450,909277200,6),(450,922582800,10),(450,941331600,6),(450,954032400,10),(450,972781200,6),(450,985482000,10),(450,1004230800,6),(450,1017536400,10),(450,1035680400,6),(450,1048986000,10),(450,1067130000,6),(450,1080435600,10),(450,1099184400,6),(450,1111885200,10),(450,1130634000,6),(450,1143334800,10),(450,1162083600,6),(450,1174784400,10),(450,1193533200,6),(450,1206838800,10),(450,1224982800,6),(450,1238288400,10),(450,1256432400,6),(450,1269738000,10),(450,1288486800,6),(450,1301187600,10),(450,1319936400,6),(450,1332637200,10),(450,1351386000,6),(450,1364691600,10),(450,1382835600,6),(450,1396141200,10),(450,1414285200,6),(450,1427590800,10),(450,1445734800,6),(450,1459040400,10),(450,1477789200,6),(450,1490490000,10),(450,1509238800,6),(450,1521939600,10),(450,1540688400,6),(450,1553994000,10),(450,1572138000,6),(450,1585443600,10),(450,1603587600,6),(450,1616893200,10),(450,1635642000,6),(450,1648342800,10),(450,1667091600,6),(450,1679792400,10),(450,1698541200,6),(450,1711846800,10),(450,1729990800,6),(450,1743296400,10),(450,1761440400,6),(450,1774746000,10),(450,1792890000,6),(450,1806195600,10),(450,1824944400,6),(450,1837645200,10),(450,1856394000,6),(450,1869094800,10),(450,1887843600,6),(450,1901149200,10),(450,1919293200,6),(450,1932598800,10),(450,1950742800,6),(450,1964048400,10),(450,1982797200,6),(450,1995498000,10),(450,2014246800,6),(450,2026947600,10),(450,2045696400,6),(450,2058397200,10),(450,2077146000,6),(450,2090451600,10),(450,2108595600,6),(450,2121901200,10),(450,2140045200,6),(451,-2147483648,1),(451,-905824800,4),(451,-857257200,2),(451,-844556400,3),(451,-828226800,2),(451,-812502000,3),(451,-796777200,2),(451,-788922000,1),(451,-777942000,3),(451,-766623600,2),(451,407199600,1),(451,417574800,5),(451,433299600,6),(451,449024400,5),(451,465354000,6),(451,481078800,5),(451,496803600,6),(451,512528400,5),(451,528253200,6),(451,543978000,5),(451,559702800,6),(451,575427600,5),(451,591152400,6),(451,606877200,5),(451,622602000,6),(451,638326800,5),(451,654656400,6),(451,670381200,5),(451,686106000,6),(451,701830800,5),(451,717555600,6),(451,733280400,5),(451,749005200,6),(451,764730000,5),(451,780454800,6),(451,796179600,5),(451,811904400,6),(451,828234000,5),(451,846378000,6),(451,859683600,5),(451,877827600,6),(451,891133200,5),(451,909277200,6),(451,922582800,5),(451,941331600,6),(451,954032400,5),(451,972781200,6),(451,985482000,5),(451,1004230800,6),(451,1017536400,5),(451,1035680400,6),(451,1048986000,5),(451,1067130000,6),(451,1080435600,5),(451,1099184400,6),(451,1111885200,5),(451,1130634000,6),(451,1143334800,5),(451,1162083600,6),(451,1174784400,5),(451,1193533200,6),(451,1206838800,5),(451,1224982800,6),(451,1238288400,5),(451,1256432400,6),(451,1269738000,5),(451,1288486800,6),(451,1301187600,5),(451,1319936400,6),(451,1332637200,5),(451,1351386000,6),(451,1364691600,5),(451,1382835600,6),(451,1396141200,5),(451,1414285200,6),(451,1427590800,5),(451,1445734800,6),(451,1459040400,5),(451,1477789200,6),(451,1490490000,5),(451,1509238800,6),(451,1521939600,5),(451,1540688400,6),(451,1553994000,5),(451,1572138000,6),(451,1585443600,5),(451,1603587600,6),(451,1616893200,5),(451,1635642000,6),(451,1648342800,5),(451,1667091600,6),(451,1679792400,5),(451,1698541200,6),(451,1711846800,5),(451,1729990800,6),(451,1743296400,5),(451,1761440400,6),(451,1774746000,5),(451,1792890000,6),(451,1806195600,5),(451,1824944400,6),(451,1837645200,5),(451,1856394000,6),(451,1869094800,5),(451,1887843600,6),(451,1901149200,5),(451,1919293200,6),(451,1932598800,5),(451,1950742800,6),(451,1964048400,5),(451,1982797200,6),(451,1995498000,5),(451,2014246800,6),(451,2026947600,5),(451,2045696400,6),(451,2058397200,5),(451,2077146000,6),(451,2090451600,5),(451,2108595600,6),(451,2121901200,5),(451,2140045200,6),(452,-2147483648,2),(452,-1691964000,1),(452,-1680472800,2),(452,-1664143200,1),(452,-1650146400,2),(452,-1633903200,1),(452,-1617487200,2),(452,-1601848800,1),(452,-1586037600,2),(452,-1570399200,1),(452,-1552168800,2),(452,-1538344800,1),(452,-1522533600,2),(452,-1507500000,1),(452,-1490565600,2),(452,-1473631200,1),(452,-1460930400,2),(452,-1442786400,1),(452,-1428876000,2),(452,-1410732000,1),(452,-1396216800,2),(452,-1379282400,1),(452,-1364767200,2),(452,-1348437600,1),(452,-1333317600,2),(452,-1315778400,1),(452,-1301263200,2),(452,-1284328800,1),(452,-1269813600,2),(452,-1253484000,1),(452,-1238364000,2),(452,-1221429600,1),(452,-1206914400,2),(452,-1189980000,1),(452,-1175464800,2),(452,-1159135200,1),(452,-1143410400,2),(452,-1126476000,1),(452,-1111960800,2),(452,-1095631200,1),(452,-1080511200,2),(452,-1063576800,1),(452,-1049061600,2),(452,-1032127200,1),(452,-1017612000,2),(452,-1001282400,1),(452,-986162400,2),(452,-969228000,1),(452,-950479200,2),(452,-942012000,1),(452,-904518000,3),(452,-896050800,1),(452,-875487600,3),(452,-864601200,1),(452,-844038000,3),(452,-832546800,1),(452,-812588400,3),(452,-798073200,1),(452,-781052400,3),(452,-772066800,1),(452,-764805600,2),(452,-748476000,1),(452,-733356000,2),(452,-719445600,1),(452,-717030000,3),(452,-706748400,1),(452,-699487200,2),(452,-687996000,1),(452,-668037600,2),(452,-654732000,1),(452,-636588000,2),(452,-622072800,1),(452,-605743200,2),(452,-590623200,1),(452,-574293600,2),(452,-558568800,1),(452,-542239200,2),(452,-527119200,1),(452,-512604000,2),(452,-496274400,1),(452,-481154400,2),(452,-464220000,1),(452,-449704800,2),(452,-432165600,1),(452,-417650400,2),(452,-401320800,1),(452,-386200800,2),(452,-369266400,1),(452,-354751200,2),(452,-337816800,1),(452,-323301600,2),(452,-306972000,1),(452,-291852000,2),(452,-276732000,1),(452,-257983200,2),(452,-245282400,1),(452,-226533600,2),(452,-213228000,1),(452,-195084000,2),(452,-182383200,1),(452,-163634400,2),(452,-150933600,1),(452,-132184800,2),(452,-119484000,1),(452,-100735200,2),(452,-88034400,1),(452,-68680800,2),(452,-59004000,1),(452,-37242000,4),(452,57722400,6),(452,69818400,1),(452,89172000,2),(452,101268000,1),(452,120621600,2),(452,132717600,1),(452,152071200,2),(452,164167200,1),(452,183520800,2),(452,196221600,1),(452,214970400,2),(452,227671200,1),(452,246420000,2),(452,259120800,1),(452,278474400,2),(452,290570400,1),(452,309924000,2),(452,322020000,1),(452,341373600,2),(452,354675600,5),(452,372819600,6),(452,386125200,5),(452,404269200,6),(452,417574800,5),(452,435718800,6),(452,449024400,5),(452,467773200,6),(452,481078800,5),(452,499222800,6),(452,512528400,5),(452,530672400,6),(452,543978000,5),(452,562122000,6),(452,575427600,5),(452,593571600,6),(452,606877200,5),(452,625626000,6),(452,638326800,5),(452,657075600,6),(452,670381200,5),(452,688525200,6),(452,701830800,5),(452,719974800,6),(452,733280400,5),(452,751424400,6),(452,764730000,5),(452,782874000,6),(452,796179600,5),(452,814323600,6),(452,820454400,7),(452,828234000,5),(452,846378000,6),(452,859683600,5),(452,877827600,6),(452,891133200,5),(452,909277200,6),(452,922582800,5),(452,941331600,6),(452,954032400,5),(452,972781200,6),(452,985482000,5),(452,1004230800,6),(452,1017536400,5),(452,1035680400,6),(452,1048986000,5),(452,1067130000,6),(452,1080435600,5),(452,1099184400,6),(452,1111885200,5),(452,1130634000,6),(452,1143334800,5),(452,1162083600,6),(452,1174784400,5),(452,1193533200,6),(452,1206838800,5),(452,1224982800,6),(452,1238288400,5),(452,1256432400,6),(452,1269738000,5),(452,1288486800,6),(452,1301187600,5),(452,1319936400,6),(452,1332637200,5),(452,1351386000,6),(452,1364691600,5),(452,1382835600,6),(452,1396141200,5),(452,1414285200,6),(452,1427590800,5),(452,1445734800,6),(452,1459040400,5),(452,1477789200,6),(452,1490490000,5),(452,1509238800,6),(452,1521939600,5),(452,1540688400,6),(452,1553994000,5),(452,1572138000,6),(452,1585443600,5),(452,1603587600,6),(452,1616893200,5),(452,1635642000,6),(452,1648342800,5),(452,1667091600,6),(452,1679792400,5),(452,1698541200,6),(452,1711846800,5),(452,1729990800,6),(452,1743296400,5),(452,1761440400,6),(452,1774746000,5),(452,1792890000,6),(452,1806195600,5),(452,1824944400,6),(452,1837645200,5),(452,1856394000,6),(452,1869094800,5),(452,1887843600,6),(452,1901149200,5),(452,1919293200,6),(452,1932598800,5),(452,1950742800,6),(452,1964048400,5),(452,1982797200,6),(452,1995498000,5),(452,2014246800,6),(452,2026947600,5),(452,2045696400,6),(452,2058397200,5),(452,2077146000,6),(452,2090451600,5),(452,2108595600,6),(452,2121901200,5),(452,2140045200,6),(453,-2147483648,0),(453,-2069713476,2),(453,-1692496800,1),(453,-1680483600,2),(453,-1662343200,1),(453,-1650157200,2),(453,-1632006000,3),(453,-1618700400,4),(453,-1612659600,6),(453,-1604278800,5),(453,-1585519200,6),(453,-1574038800,5),(453,-1552258800,6),(453,-1539997200,5),(453,-1520550000,6),(453,-1507510800,5),(453,-1490572800,6),(453,-1473642000,5),(453,-1459119600,6),(453,-1444006800,5),(453,-1427673600,6),(453,-1411866000,5),(453,-1396224000,6),(453,-1379293200,5),(453,-1364774400,6),(453,-1348448400,5),(453,-1333324800,6),(453,-1316394000,5),(453,-1301270400,6),(453,-1284339600,5),(453,-1269813600,7),(453,-1253484000,8),(453,-1238364000,7),(453,-1221429600,8),(453,-1206914400,7),(453,-1191189600,8),(453,-1175464800,7),(453,-1160344800,8),(453,-1143410400,7),(453,-1127685600,8),(453,-1111960800,7),(453,-1096840800,8),(453,-1080511200,7),(453,-1063576800,8),(453,-1049061600,7),(453,-1033336800,8),(453,-1017612000,7),(453,-1002492000,8),(453,-986162400,7),(453,-969228000,8),(453,-950479200,7),(453,-942012000,8),(453,-935186400,11),(453,-857257200,9),(453,-844556400,10),(453,-828226800,9),(453,-812502000,10),(453,-797986800,2),(453,-781052400,3),(453,-766623600,4),(453,-745455600,3),(453,-733273200,4),(453,220921200,2),(453,228877200,12),(453,243997200,13),(453,260326800,12),(453,276051600,13),(453,291776400,12),(453,307501200,13),(453,323830800,12),(453,338950800,13),(453,354675600,12),(453,370400400,13),(453,386125200,12),(453,401850000,13),(453,417574800,12),(453,433299600,13),(453,449024400,12),(453,465354000,13),(453,481078800,12),(453,496803600,13),(453,512528400,12),(453,528253200,13),(453,543978000,12),(453,559702800,13),(453,575427600,12),(453,591152400,13),(453,606877200,12),(453,622602000,13),(453,638326800,12),(453,654656400,13),(453,670381200,12),(453,686106000,13),(453,701830800,12),(453,717555600,13),(453,733280400,12),(453,749005200,13),(453,764730000,12),(453,780454800,13),(453,796179600,12),(453,811904400,13),(453,828234000,12),(453,846378000,13),(453,859683600,12),(453,877827600,13),(453,891133200,12),(453,909277200,13),(453,922582800,12),(453,941331600,13),(453,954032400,12),(453,972781200,13),(453,985482000,12),(453,1004230800,13),(453,1017536400,12),(453,1035680400,13),(453,1048986000,12),(453,1067130000,13),(453,1080435600,12),(453,1099184400,13),(453,1111885200,12),(453,1130634000,13),(453,1143334800,12),(453,1162083600,13),(453,1174784400,12),(453,1193533200,13),(453,1206838800,12),(453,1224982800,13),(453,1238288400,12),(453,1256432400,13),(453,1269738000,12),(453,1288486800,13),(453,1301187600,12),(453,1319936400,13),(453,1332637200,12),(453,1351386000,13),(453,1364691600,12),(453,1382835600,13),(453,1396141200,12),(453,1414285200,13),(453,1427590800,12),(453,1445734800,13),(453,1459040400,12),(453,1477789200,13),(453,1490490000,12),(453,1509238800,13),(453,1521939600,12),(453,1540688400,13),(453,1553994000,12),(453,1572138000,13),(453,1585443600,12),(453,1603587600,13),(453,1616893200,12),(453,1635642000,13),(453,1648342800,12),(453,1667091600,13),(453,1679792400,12),(453,1698541200,13),(453,1711846800,12),(453,1729990800,13),(453,1743296400,12),(453,1761440400,13),(453,1774746000,12),(453,1792890000,13),(453,1806195600,12),(453,1824944400,13),(453,1837645200,12),(453,1856394000,13),(453,1869094800,12),(453,1887843600,13),(453,1901149200,12),(453,1919293200,13),(453,1932598800,12),(453,1950742800,13),(453,1964048400,12),(453,1982797200,13),(453,1995498000,12),(453,2014246800,13),(453,2026947600,12),(453,2045696400,13),(453,2058397200,12),(453,2077146000,13),(453,2090451600,12),(453,2108595600,13),(453,2121901200,12),(453,2140045200,13),(454,-2147483648,4),(454,-1631926800,1),(454,-1616889600,2),(454,-1601168400,1),(454,-1585353600,2),(454,-1442451600,1),(454,-1427673600,2),(454,-1379293200,1),(454,-1364774400,2),(454,-1348448400,1),(454,-1333324800,2),(454,-1316390400,1),(454,-1301270400,2),(454,-1284339600,1),(454,-1269820800,2),(454,-1026954000,1),(454,-1017619200,2),(454,-1001898000,1),(454,-999482400,3),(454,-986090400,1),(454,-954115200,2),(454,-940208400,6),(454,-873079200,5),(454,-862621200,6),(454,-842839200,5),(454,-828320400,6),(454,-811389600,5),(454,-796870800,6),(454,-779940000,5),(454,-765421200,6),(454,-748490400,5),(454,-733971600,6),(454,-652327200,5),(454,-639018000,6),(454,135122400,5),(454,150246000,6),(454,166572000,5),(454,181695600,6),(454,196812000,5),(454,212540400,6),(454,228866400,5),(454,243990000,6),(454,260326800,7),(454,276051600,8),(454,283993200,6),(454,291776400,9),(454,307501200,10),(454,323830800,9),(454,338950800,10),(454,354675600,9),(454,370400400,10),(454,386125200,9),(454,401850000,10),(454,417574800,9),(454,433299600,10),(454,449024400,9),(454,465354000,10),(454,481078800,9),(454,496803600,10),(454,512528400,9),(454,528253200,10),(454,543978000,9),(454,559702800,10),(454,575427600,9),(454,591152400,10),(454,606877200,9),(454,622602000,10),(454,638326800,9),(454,654656400,10),(454,670381200,9),(454,686106000,10),(454,701830800,9),(454,717555600,10),(454,733280400,9),(454,749005200,10),(454,764730000,9),(454,780454800,10),(454,796179600,9),(454,811904400,10),(454,828234000,9),(454,846378000,10),(454,859683600,9),(454,877827600,10),(454,891133200,9),(454,909277200,10),(454,922582800,9),(454,941331600,10),(454,954032400,9),(454,972781200,10),(454,985482000,9),(454,1004230800,10),(454,1017536400,9),(454,1035680400,10),(454,1048986000,9),(454,1067130000,10),(454,1080435600,9),(454,1099184400,10),(454,1111885200,9),(454,1130634000,10),(454,1143334800,9),(454,1162083600,10),(454,1174784400,9),(454,1193533200,10),(454,1206838800,9),(454,1224982800,10),(454,1238288400,9),(454,1256432400,10),(454,1269738000,9),(454,1288486800,10),(454,1301187600,9),(454,1319936400,10),(454,1332637200,9),(454,1351386000,10),(454,1364691600,9),(454,1382835600,10),(454,1396141200,9),(454,1414285200,10),(454,1427590800,9),(454,1445734800,10),(454,1459040400,9),(454,1477789200,10),(454,1490490000,9),(454,1509238800,10),(454,1521939600,9),(454,1540688400,10),(454,1553994000,9),(454,1572138000,10),(454,1585443600,9),(454,1603587600,10),(454,1616893200,9),(454,1635642000,10),(454,1648342800,9),(454,1667091600,10),(454,1679792400,9),(454,1698541200,10),(454,1711846800,9),(454,1729990800,10),(454,1743296400,9),(454,1761440400,10),(454,1774746000,9),(454,1792890000,10),(454,1806195600,9),(454,1824944400,10),(454,1837645200,9),(454,1856394000,10),(454,1869094800,9),(454,1887843600,10),(454,1901149200,9),(454,1919293200,10),(454,1932598800,9),(454,1950742800,10),(454,1964048400,9),(454,1982797200,10),(454,1995498000,9),(454,2014246800,10),(454,2026947600,9),(454,2045696400,10),(454,2058397200,9),(454,2077146000,10),(454,2090451600,9),(454,2108595600,10),(454,2121901200,9),(454,2140045200,10),(455,-2147483648,3),(455,-1690765200,1),(455,-1680487200,2),(455,-1664758800,1),(455,-1648951200,2),(455,-1635123600,1),(455,-1616896800,2),(455,-1604278800,1),(455,-1585533600,2),(455,-1571014800,1),(455,-1555293600,2),(455,-932432400,1),(455,-857257200,3),(455,-844556400,4),(455,-828226800,3),(455,-812588400,4),(455,-798073200,3),(455,-781052400,1),(455,-766717200,2),(455,-750898800,4),(455,-733359600,3),(455,-719456400,4),(455,-701917200,3),(455,-689209200,4),(455,-670460400,3),(455,-114051600,4),(455,-103168800,2),(455,-81997200,4),(455,-71715600,3),(455,-50547600,4),(455,-40266000,3),(455,-18493200,4),(455,-8211600,3),(455,12956400,4),(455,23238000,3),(455,43801200,4),(455,54687600,3),(455,75855600,4),(455,86742000,3),(455,102380400,4),(455,118105200,3),(455,135730800,4),(455,148518000,3),(455,167187600,1),(455,180489600,2),(455,198637200,1),(455,211939200,2),(455,230086800,1),(455,243388800,2),(455,261536400,1),(455,274838400,2),(455,292986000,1),(455,306288000,2),(455,323312400,1),(455,338342400,2),(455,354675600,5),(455,370400400,6),(455,386125200,5),(455,401850000,6),(455,417574800,5),(455,433299600,6),(455,449024400,5),(455,465354000,6),(455,481078800,5),(455,496803600,6),(455,512528400,5),(455,528253200,6),(455,543978000,5),(455,559702800,6),(455,575427600,5),(455,591152400,6),(455,606877200,5),(455,622602000,6),(455,638326800,5),(455,654656400,6),(455,670381200,5),(455,686106000,6),(455,701830800,5),(455,717555600,6),(455,733280400,5),(455,749005200,6),(455,764730000,5),(455,780454800,6),(455,796179600,5),(455,811904400,6),(455,828234000,5),(455,846378000,6),(455,859683600,5),(455,877827600,6),(455,891133200,5),(455,909277200,6),(455,922582800,5),(455,941331600,6),(455,954032400,5),(455,972781200,6),(455,985482000,5),(455,1004230800,6),(455,1017536400,5),(455,1035680400,6),(455,1048986000,5),(455,1067130000,6),(455,1080435600,5),(455,1099184400,6),(455,1111885200,5),(455,1130634000,6),(455,1143334800,5),(455,1162083600,6),(455,1174784400,5),(455,1193533200,6),(455,1206838800,5),(455,1224982800,6),(455,1238288400,5),(455,1256432400,6),(455,1269738000,5),(455,1288486800,6),(455,1301187600,5),(455,1319936400,6),(455,1332637200,5),(455,1351386000,6),(455,1364691600,5),(455,1382835600,6),(455,1396141200,5),(455,1414285200,6),(455,1427590800,5),(455,1445734800,6),(455,1459040400,5),(455,1477789200,6),(455,1490490000,5),(455,1509238800,6),(455,1521939600,5),(455,1540688400,6),(455,1553994000,5),(455,1572138000,6),(455,1585443600,5),(455,1603587600,6),(455,1616893200,5),(455,1635642000,6),(455,1648342800,5),(455,1667091600,6),(455,1679792400,5),(455,1698541200,6),(455,1711846800,5),(455,1729990800,6),(455,1743296400,5),(455,1761440400,6),(455,1774746000,5),(455,1792890000,6),(455,1806195600,5),(455,1824944400,6),(455,1837645200,5),(455,1856394000,6),(455,1869094800,5),(455,1887843600,6),(455,1901149200,5),(455,1919293200,6),(455,1932598800,5),(455,1950742800,6),(455,1964048400,5),(455,1982797200,6),(455,1995498000,5),(455,2014246800,6),(455,2026947600,5),(455,2045696400,6),(455,2058397200,5),(455,2077146000,6),(455,2090451600,5),(455,2108595600,6),(455,2121901200,5),(455,2140045200,6),(456,-2147483648,1),(456,-1535938789,3),(456,-875671200,2),(456,-859773600,3),(456,354672000,2),(456,370396800,3),(456,386121600,2),(456,401846400,3),(456,417574800,4),(456,433299600,5),(456,449024400,4),(456,465354000,5),(456,481078800,4),(456,496803600,5),(456,512528400,4),(456,528253200,5),(456,543978000,4),(456,559702800,5),(456,575427600,4),(456,591152400,5),(456,606877200,4),(456,622602000,5),(456,638326800,4),(456,654656400,5),(456,670381200,4),(456,686106000,5),(456,701830800,4),(456,717555600,5),(456,733280400,4),(456,749005200,5),(456,764730000,4),(456,780454800,5),(456,796179600,4),(456,811904400,5),(456,828234000,4),(456,846378000,5),(456,859683600,4),(456,877827600,5),(456,891133200,4),(456,909277200,5),(456,922582800,4),(456,941331600,5),(456,954032400,4),(456,972781200,5),(456,985482000,4),(456,1004230800,5),(456,1017536400,4),(456,1035680400,5),(456,1048986000,4),(456,1067130000,5),(456,1080435600,4),(456,1099184400,5),(456,1111885200,4),(456,1130634000,5),(456,1143334800,4),(456,1162083600,5),(456,1174784400,4),(456,1193533200,5),(456,1206838800,4),(456,1224982800,5),(456,1238288400,4),(456,1256432400,5),(456,1269738000,4),(456,1288486800,5),(456,1301187600,4),(456,1319936400,5),(456,1332637200,4),(456,1351386000,5),(456,1364691600,4),(456,1382835600,5),(456,1396141200,4),(456,1414285200,5),(456,1427590800,4),(456,1445734800,5),(456,1459040400,4),(456,1477789200,5),(456,1490490000,4),(456,1509238800,5),(456,1521939600,4),(456,1540688400,5),(456,1553994000,4),(456,1572138000,5),(456,1585443600,4),(456,1603587600,5),(456,1616893200,4),(456,1635642000,5),(456,1648342800,4),(456,1667091600,5),(456,1679792400,4),(456,1698541200,5),(456,1711846800,4),(456,1729990800,5),(456,1743296400,4),(456,1761440400,5),(456,1774746000,4),(456,1792890000,5),(456,1806195600,4),(456,1824944400,5),(456,1837645200,4),(456,1856394000,5),(456,1869094800,4),(456,1887843600,5),(456,1901149200,4),(456,1919293200,5),(456,1932598800,4),(456,1950742800,5),(456,1964048400,4),(456,1982797200,5),(456,1995498000,4),(456,2014246800,5),(456,2026947600,4),(456,2045696400,5),(456,2058397200,4),(456,2077146000,5),(456,2090451600,4),(456,2108595600,5),(456,2121901200,4),(456,2140045200,5),(457,-2147483648,1),(457,-1441158600,2),(457,-1247536800,3),(457,-899780400,6),(457,-857257200,4),(457,-844556400,5),(457,-828226800,4),(457,-812502000,5),(457,-804650400,3),(457,354920400,7),(457,370728000,3),(457,386456400,7),(457,402264000,3),(457,417992400,7),(457,433800000,3),(457,449614800,7),(457,465346800,8),(457,481071600,9),(457,496796400,8),(457,512521200,9),(457,528246000,8),(457,543970800,9),(457,559695600,8),(457,575420400,9),(457,591145200,8),(457,606870000,9),(457,622594800,8),(457,631141200,3),(457,670374000,10),(457,686102400,11),(457,701827200,10),(457,717552000,11),(457,733276800,10),(457,749001600,11),(457,764726400,10),(457,780451200,11),(457,796176000,10),(457,811900800,11),(457,828230400,10),(457,846374400,11),(457,859680000,10),(457,877824000,11),(457,891129600,10),(457,909273600,11),(457,922579200,10),(457,941328000,11),(457,954028800,10),(457,972777600,11),(457,985478400,10),(457,1004227200,11),(457,1017532800,10),(457,1035676800,11),(457,1048982400,10),(457,1067126400,11),(457,1080432000,10),(457,1099180800,11),(457,1111881600,10),(457,1130630400,11),(457,1143331200,10),(457,1162080000,11),(457,1174780800,10),(457,1193529600,11),(457,1206835200,10),(457,1224979200,11),(457,1238284800,10),(457,1256428800,11),(457,1269734400,10),(457,1288483200,11),(457,1301184000,12),(457,2147483647,12),(458,-2147483648,1),(458,-1854403761,6),(458,-1689814800,2),(458,-1680397200,3),(458,-1665363600,2),(458,-1648342800,3),(458,-1635123600,2),(458,-1616893200,3),(458,-1604278800,2),(458,-1585443600,3),(458,-1574038800,2),(458,-1552266000,3),(458,-1539997200,2),(458,-1520557200,3),(458,-1507510800,2),(458,-1490576400,3),(458,-1470618000,2),(458,-1459126800,3),(458,-1444006800,2),(458,-1427677200,3),(458,-1411952400,2),(458,-1396227600,3),(458,-1379293200,2),(458,-1364778000,3),(458,-1348448400,2),(458,-1333328400,3),(458,-1316394000,2),(458,-1301274000,3),(458,-1284339600,2),(458,-1269824400,3),(458,-1253494800,2),(458,-1238374800,3),(458,-1221440400,2),(458,-1206925200,3),(458,-1191200400,2),(458,-1175475600,3),(458,-1160355600,2),(458,-1143421200,3),(458,-1127696400,2),(458,-1111971600,3),(458,-1096851600,2),(458,-1080522000,3),(458,-1063587600,2),(458,-1049072400,3),(458,-1033347600,2),(458,-1017622800,3),(458,-1002502800,2),(458,-986173200,3),(458,-969238800,2),(458,-950490000,3),(458,-942012000,4),(458,-904438800,5),(458,-891136800,4),(458,-877827600,5),(458,-857257200,4),(458,-844556400,5),(458,-828226800,4),(458,-812502000,5),(458,-796266000,4),(458,-781052400,5),(458,-766623600,8),(458,196819200,7),(458,212540400,8),(458,228877200,9),(458,243997200,10),(458,260326800,9),(458,276051600,10),(458,291776400,9),(458,307501200,10),(458,323830800,9),(458,338950800,10),(458,354675600,9),(458,370400400,10),(458,386125200,9),(458,401850000,10),(458,417574800,9),(458,433299600,10),(458,449024400,9),(458,465354000,10),(458,481078800,9),(458,496803600,10),(458,512528400,9),(458,528253200,10),(458,543978000,9),(458,559702800,10),(458,575427600,9),(458,591152400,10),(458,606877200,9),(458,622602000,10),(458,638326800,9),(458,654656400,10),(458,670381200,9),(458,686106000,10),(458,701830800,9),(458,717555600,10),(458,733280400,9),(458,749005200,10),(458,764730000,9),(458,780454800,10),(458,796179600,9),(458,811904400,10),(458,828234000,9),(458,846378000,10),(458,859683600,9),(458,877827600,10),(458,891133200,9),(458,909277200,10),(458,922582800,9),(458,941331600,10),(458,954032400,9),(458,972781200,10),(458,985482000,9),(458,1004230800,10),(458,1017536400,9),(458,1035680400,10),(458,1048986000,9),(458,1067130000,10),(458,1080435600,9),(458,1099184400,10),(458,1111885200,9),(458,1130634000,10),(458,1143334800,9),(458,1162083600,10),(458,1174784400,9),(458,1193533200,10),(458,1206838800,9),(458,1224982800,10),(458,1238288400,9),(458,1256432400,10),(458,1269738000,9),(458,1288486800,10),(458,1301187600,9),(458,1319936400,10),(458,1332637200,9),(458,1351386000,10),(458,1364691600,9),(458,1382835600,10),(458,1396141200,9),(458,1414285200,10),(458,1427590800,9),(458,1445734800,10),(458,1459040400,9),(458,1477789200,10),(458,1490490000,9),(458,1509238800,10),(458,1521939600,9),(458,1540688400,10),(458,1553994000,9),(458,1572138000,10),(458,1585443600,9),(458,1603587600,10),(458,1616893200,9),(458,1635642000,10),(458,1648342800,9),(458,1667091600,10),(458,1679792400,9),(458,1698541200,10),(458,1711846800,9),(458,1729990800,10),(458,1743296400,9),(458,1761440400,10),(458,1774746000,9),(458,1792890000,10),(458,1806195600,9),(458,1824944400,10),(458,1837645200,9),(458,1856394000,10),(458,1869094800,9),(458,1887843600,10),(458,1901149200,9),(458,1919293200,10),(458,1932598800,9),(458,1950742800,10),(458,1964048400,9),(458,1982797200,10),(458,1995498000,9),(458,2014246800,10),(458,2026947600,9),(458,2045696400,10),(458,2058397200,9),(458,2077146000,10),(458,2090451600,9),(458,2108595600,10),(458,2121901200,9),(458,2140045200,10),(459,-2147483648,1),(459,-1688265017,3),(459,-1656819079,2),(459,-1641353479,3),(459,-1627965079,4),(459,-1618716679,2),(459,-1596429079,4),(459,-1593820800,5),(459,-1589860800,6),(459,-1542427200,7),(459,-1539493200,8),(459,-1525323600,7),(459,-1522728000,6),(459,-1491188400,9),(459,-1247536800,6),(459,354920400,7),(459,370728000,6),(459,386456400,7),(459,402264000,6),(459,417992400,7),(459,433800000,6),(459,449614800,7),(459,465346800,10),(459,481071600,11),(459,496796400,10),(459,512521200,11),(459,528246000,10),(459,543970800,11),(459,559695600,10),(459,575420400,11),(459,591145200,10),(459,606870000,11),(459,622594800,10),(459,638319600,11),(459,654649200,10),(459,670374000,12),(459,686102400,13),(459,695779200,10),(459,701823600,11),(459,717548400,10),(459,733273200,11),(459,748998000,10),(459,764722800,11),(459,780447600,10),(459,796172400,11),(459,811897200,10),(459,828226800,11),(459,846370800,10),(459,859676400,11),(459,877820400,10),(459,891126000,11),(459,909270000,10),(459,922575600,11),(459,941324400,10),(459,954025200,11),(459,972774000,10),(459,985474800,11),(459,1004223600,10),(459,1017529200,11),(459,1035673200,10),(459,1048978800,11),(459,1067122800,10),(459,1080428400,11),(459,1099177200,10),(459,1111878000,11),(459,1130626800,10),(459,1143327600,11),(459,1162076400,10),(459,1174777200,11),(459,1193526000,10),(459,1206831600,11),(459,1224975600,10),(459,1238281200,11),(459,1256425200,10),(459,1269730800,11),(459,1288479600,10),(459,1301180400,14),(459,1414274400,10),(460,-2147483648,0),(460,-1518920008,2),(460,166572000,1),(460,182293200,2),(460,200959200,1),(460,213829200,2),(460,228866400,1),(460,243982800,2),(460,260316000,1),(460,276123600,2),(460,291765600,1),(460,307486800,2),(460,323820000,1),(460,338936400,2),(460,354664800,1),(460,370386000,2),(460,386114400,1),(460,401835600,2),(460,417564000,1),(460,433285200,2),(460,449013600,1),(460,465339600,2),(460,481068000,1),(460,496789200,2),(460,512517600,1),(460,528238800,2),(460,543967200,1),(460,559688400,2),(460,575416800,1),(460,591138000,2),(460,606866400,1),(460,622587600,2),(460,638316000,1),(460,654642000,2),(460,670370400,1),(460,686091600,2),(460,701820000,1),(460,717541200,2),(460,733269600,1),(460,748990800,2),(460,764719200,1),(460,780440400,2),(460,796168800,1),(460,811890000,2),(460,828223200,1),(460,843944400,2),(460,859672800,1),(460,875394000,2),(460,891122400,1),(460,909277200,3),(460,922582800,4),(460,941331600,3),(460,954032400,4),(460,972781200,3),(460,985482000,4),(460,1004230800,3),(460,1017536400,4),(460,1035680400,3),(460,1048986000,4),(460,1067130000,3),(460,1080435600,4),(460,1099184400,3),(460,1111885200,4),(460,1130634000,3),(460,1143334800,4),(460,1162083600,3),(460,1174784400,4),(460,1193533200,3),(460,1206838800,4),(460,1224982800,3),(460,1238288400,4),(460,1256432400,3),(460,1269738000,4),(460,1288486800,3),(460,1301187600,4),(460,1319936400,3),(460,1332637200,4),(460,1351386000,3),(460,1364691600,4),(460,1382835600,3),(460,1396141200,4),(460,1414285200,3),(460,1427590800,4),(460,1445734800,3),(460,1459040400,4),(460,1477789200,3),(460,1490490000,4),(460,1509238800,3),(460,1521939600,4),(460,1540688400,3),(460,1553994000,4),(460,1572138000,3),(460,1585443600,4),(460,1603587600,3),(460,1616893200,4),(460,1635642000,3),(460,1648342800,4),(460,1667091600,3),(460,1679792400,4),(460,1698541200,3),(460,1711846800,4),(460,1729990800,3),(460,1743296400,4),(460,1761440400,3),(460,1774746000,4),(460,1792890000,3),(460,1806195600,4),(460,1824944400,3),(460,1837645200,4),(460,1856394000,3),(460,1869094800,4),(460,1887843600,3),(460,1901149200,4),(460,1919293200,3),(460,1932598800,4),(460,1950742800,3),(460,1964048400,4),(460,1982797200,3),(460,1995498000,4),(460,2014246800,3),(460,2026947600,4),(460,2045696400,3),(460,2058397200,4),(460,2077146000,3),(460,2090451600,4),(460,2108595600,3),(460,2121901200,4),(460,2140045200,3),(461,-2147483648,2),(461,-1691884800,1),(461,-1680573600,2),(461,-927511200,1),(461,-857257200,3),(461,-844556400,4),(461,-828226800,3),(461,-812502000,4),(461,-796777200,3),(461,-781052400,4),(461,-765327600,3),(461,-340844400,4),(461,-324514800,3),(461,-308790000,4),(461,-293065200,3),(461,-277340400,4),(461,-261615600,3),(461,-245890800,4),(461,-230166000,3),(461,-214441200,4),(461,-198716400,3),(461,-182991600,4),(461,-166662000,3),(461,-147913200,4),(461,-135212400,3),(461,315529200,2),(461,323830800,5),(461,338950800,6),(461,354675600,5),(461,370400400,6),(461,386125200,5),(461,401850000,6),(461,417574800,5),(461,433299600,6),(461,449024400,5),(461,465354000,6),(461,481078800,5),(461,496803600,6),(461,512528400,5),(461,528253200,6),(461,543978000,5),(461,559702800,6),(461,575427600,5),(461,591152400,6),(461,606877200,5),(461,622602000,6),(461,638326800,5),(461,654656400,6),(461,670381200,5),(461,686106000,6),(461,701830800,5),(461,717555600,6),(461,733280400,5),(461,749005200,6),(461,764730000,5),(461,780454800,6),(461,796179600,5),(461,811904400,6),(461,828234000,5),(461,846378000,6),(461,859683600,5),(461,877827600,6),(461,891133200,5),(461,909277200,6),(461,922582800,5),(461,941331600,6),(461,954032400,5),(461,972781200,6),(461,985482000,5),(461,1004230800,6),(461,1017536400,5),(461,1035680400,6),(461,1048986000,5),(461,1067130000,6),(461,1080435600,5),(461,1099184400,6),(461,1111885200,5),(461,1130634000,6),(461,1143334800,5),(461,1162083600,6),(461,1174784400,5),(461,1193533200,6),(461,1206838800,5),(461,1224982800,6),(461,1238288400,5),(461,1256432400,6),(461,1269738000,5),(461,1288486800,6),(461,1301187600,5),(461,1319936400,6),(461,1332637200,5),(461,1351386000,6),(461,1364691600,5),(461,1382835600,6),(461,1396141200,5),(461,1414285200,6),(461,1427590800,5),(461,1445734800,6),(461,1459040400,5),(461,1477789200,6),(461,1490490000,5),(461,1509238800,6),(461,1521939600,5),(461,1540688400,6),(461,1553994000,5),(461,1572138000,6),(461,1585443600,5),(461,1603587600,6),(461,1616893200,5),(461,1635642000,6),(461,1648342800,5),(461,1667091600,6),(461,1679792400,5),(461,1698541200,6),(461,1711846800,5),(461,1729990800,6),(461,1743296400,5),(461,1761440400,6),(461,1774746000,5),(461,1792890000,6),(461,1806195600,5),(461,1824944400,6),(461,1837645200,5),(461,1856394000,6),(461,1869094800,5),(461,1887843600,6),(461,1901149200,5),(461,1919293200,6),(461,1932598800,5),(461,1950742800,6),(461,1964048400,5),(461,1982797200,6),(461,1995498000,5),(461,2014246800,6),(461,2026947600,5),(461,2045696400,6),(461,2058397200,5),(461,2077146000,6),(461,2090451600,5),(461,2108595600,6),(461,2121901200,5),(461,2140045200,6),(462,-2147483648,1),(462,-1855958961,5),(462,-1689814800,2),(462,-1680397200,3),(462,-1665363600,2),(462,-1648342800,3),(462,-1635123600,2),(462,-1616893200,3),(462,-1604278800,2),(462,-1585443600,3),(462,-1574038800,2),(462,-1552266000,3),(462,-1539997200,2),(462,-1520557200,3),(462,-1507510800,2),(462,-1490576400,3),(462,-1470618000,2),(462,-1459126800,3),(462,-1444006800,2),(462,-1427677200,3),(462,-1411952400,2),(462,-1396227600,3),(462,-1379293200,2),(462,-1364778000,3),(462,-1348448400,2),(462,-1333328400,3),(462,-1316394000,2),(462,-1301274000,3),(462,-1284339600,2),(462,-1269824400,3),(462,-1253494800,2),(462,-1238374800,3),(462,-1221440400,2),(462,-1206925200,3),(462,-1191200400,2),(462,-1175475600,3),(462,-1160355600,2),(462,-1143421200,3),(462,-1127696400,2),(462,-1111971600,3),(462,-1096851600,2),(462,-1080522000,3),(462,-1063587600,2),(462,-1049072400,3),(462,-1033347600,2),(462,-1017622800,3),(462,-1002502800,2),(462,-986173200,3),(462,-969238800,2),(462,-950490000,3),(462,-942012000,4),(462,-932436000,8),(462,-857257200,6),(462,-844556400,7),(462,-828226800,6),(462,-812502000,7),(462,-800071200,9),(462,-796266000,4),(462,-781052400,9),(462,-766623600,10),(462,196819200,8),(462,212540400,10),(462,228877200,11),(462,243997200,12),(462,260326800,11),(462,276051600,12),(462,291776400,11),(462,307501200,12),(462,323830800,11),(462,338950800,12),(462,354675600,11),(462,370400400,12),(462,386125200,11),(462,401850000,12),(462,417574800,11),(462,433299600,12),(462,449024400,11),(462,465354000,12),(462,481078800,11),(462,496803600,12),(462,512528400,11),(462,528253200,12),(462,543978000,11),(462,559702800,12),(462,575427600,11),(462,591152400,12),(462,606877200,11),(462,622602000,12),(462,638326800,11),(462,654656400,12),(462,670381200,11),(462,686106000,12),(462,701830800,11),(462,717555600,12),(462,733280400,11),(462,749005200,12),(462,764730000,11),(462,780454800,12),(462,796179600,11),(462,811904400,12),(462,828234000,11),(462,846378000,12),(462,859683600,11),(462,877827600,12),(462,891133200,11),(462,909277200,12),(462,922582800,11),(462,941331600,12),(462,954032400,11),(462,972781200,12),(462,985482000,11),(462,1004230800,12),(462,1017536400,11),(462,1035680400,12),(462,1048986000,11),(462,1067130000,12),(462,1080435600,11),(462,1099184400,12),(462,1111885200,11),(462,1130634000,12),(462,1143334800,11),(462,1162083600,12),(462,1174784400,11),(462,1193533200,12),(462,1206838800,11),(462,1224982800,12),(462,1238288400,11),(462,1256432400,12),(462,1269738000,11),(462,1288486800,12),(462,1301187600,11),(462,1319936400,12),(462,1332637200,11),(462,1351386000,12),(462,1364691600,11),(462,1382835600,12),(462,1396141200,11),(462,1414285200,12),(462,1427590800,11),(462,1445734800,12),(462,1459040400,11),(462,1477789200,12),(462,1490490000,11),(462,1509238800,12),(462,1521939600,11),(462,1540688400,12),(462,1553994000,11),(462,1572138000,12),(462,1585443600,11),(462,1603587600,12),(462,1616893200,11),(462,1635642000,12),(462,1648342800,11),(462,1667091600,12),(462,1679792400,11),(462,1698541200,12),(462,1711846800,11),(462,1729990800,12),(462,1743296400,11),(462,1761440400,12),(462,1774746000,11),(462,1792890000,12),(462,1806195600,11),(462,1824944400,12),(462,1837645200,11),(462,1856394000,12),(462,1869094800,11),(462,1887843600,12),(462,1901149200,11),(462,1919293200,12),(462,1932598800,11),(462,1950742800,12),(462,1964048400,11),(462,1982797200,12),(462,1995498000,11),(462,2014246800,12),(462,2026947600,11),(462,2045696400,12),(462,2058397200,11),(462,2077146000,12),(462,2090451600,11),(462,2108595600,12),(462,2121901200,11),(462,2140045200,12),(463,-2147483648,1),(463,-905824800,4),(463,-857257200,2),(463,-844556400,3),(463,-828226800,2),(463,-812502000,3),(463,-796777200,2),(463,-788922000,1),(463,-777942000,3),(463,-766623600,2),(463,407199600,1),(463,417574800,5),(463,433299600,6),(463,449024400,5),(463,465354000,6),(463,481078800,5),(463,496803600,6),(463,512528400,5),(463,528253200,6),(463,543978000,5),(463,559702800,6),(463,575427600,5),(463,591152400,6),(463,606877200,5),(463,622602000,6),(463,638326800,5),(463,654656400,6),(463,670381200,5),(463,686106000,6),(463,701830800,5),(463,717555600,6),(463,733280400,5),(463,749005200,6),(463,764730000,5),(463,780454800,6),(463,796179600,5),(463,811904400,6),(463,828234000,5),(463,846378000,6),(463,859683600,5),(463,877827600,6),(463,891133200,5),(463,909277200,6),(463,922582800,5),(463,941331600,6),(463,954032400,5),(463,972781200,6),(463,985482000,5),(463,1004230800,6),(463,1017536400,5),(463,1035680400,6),(463,1048986000,5),(463,1067130000,6),(463,1080435600,5),(463,1099184400,6),(463,1111885200,5),(463,1130634000,6),(463,1143334800,5),(463,1162083600,6),(463,1174784400,5),(463,1193533200,6),(463,1206838800,5),(463,1224982800,6),(463,1238288400,5),(463,1256432400,6),(463,1269738000,5),(463,1288486800,6),(463,1301187600,5),(463,1319936400,6),(463,1332637200,5),(463,1351386000,6),(463,1364691600,5),(463,1382835600,6),(463,1396141200,5),(463,1414285200,6),(463,1427590800,5),(463,1445734800,6),(463,1459040400,5),(463,1477789200,6),(463,1490490000,5),(463,1509238800,6),(463,1521939600,5),(463,1540688400,6),(463,1553994000,5),(463,1572138000,6),(463,1585443600,5),(463,1603587600,6),(463,1616893200,5),(463,1635642000,6),(463,1648342800,5),(463,1667091600,6),(463,1679792400,5),(463,1698541200,6),(463,1711846800,5),(463,1729990800,6),(463,1743296400,5),(463,1761440400,6),(463,1774746000,5),(463,1792890000,6),(463,1806195600,5),(463,1824944400,6),(463,1837645200,5),(463,1856394000,6),(463,1869094800,5),(463,1887843600,6),(463,1901149200,5),(463,1919293200,6),(463,1932598800,5),(463,1950742800,6),(463,1964048400,5),(463,1982797200,6),(463,1995498000,5),(463,2014246800,6),(463,2026947600,5),(463,2045696400,6),(463,2058397200,5),(463,2077146000,6),(463,2090451600,5),(463,2108595600,6),(463,2121901200,5),(463,2140045200,6),(464,-2147483648,2),(464,-1693706400,1),(464,-1680483600,2),(464,-1663455600,3),(464,-1650150000,4),(464,-1632006000,3),(464,-1618700400,4),(464,-938905200,3),(464,-857257200,4),(464,-844556400,3),(464,-828226800,4),(464,-812502000,3),(464,-796777200,4),(464,-781052400,3),(464,-777866400,1),(464,-765327600,4),(464,-746578800,3),(464,-733359600,4),(464,-728517600,5),(464,-721260000,2),(464,-716425200,3),(464,-701910000,4),(464,-684975600,3),(464,-670460400,4),(464,-654217200,3),(464,-639010800,4),(464,283993200,2),(464,291776400,6),(464,307501200,7),(464,323830800,6),(464,338950800,7),(464,354675600,6),(464,370400400,7),(464,386125200,6),(464,401850000,7),(464,417574800,6),(464,433299600,7),(464,449024400,6),(464,465354000,7),(464,481078800,6),(464,496803600,7),(464,512528400,6),(464,528253200,7),(464,543978000,6),(464,559702800,7),(464,575427600,6),(464,591152400,7),(464,606877200,6),(464,622602000,7),(464,638326800,6),(464,654656400,7),(464,670381200,6),(464,686106000,7),(464,701830800,6),(464,717555600,7),(464,733280400,6),(464,749005200,7),(464,764730000,6),(464,780454800,7),(464,796179600,6),(464,811904400,7),(464,828234000,6),(464,846378000,7),(464,859683600,6),(464,877827600,7),(464,891133200,6),(464,909277200,7),(464,922582800,6),(464,941331600,7),(464,954032400,6),(464,972781200,7),(464,985482000,6),(464,1004230800,7),(464,1017536400,6),(464,1035680400,7),(464,1048986000,6),(464,1067130000,7),(464,1080435600,6),(464,1099184400,7),(464,1111885200,6),(464,1130634000,7),(464,1143334800,6),(464,1162083600,7),(464,1174784400,6),(464,1193533200,7),(464,1206838800,6),(464,1224982800,7),(464,1238288400,6),(464,1256432400,7),(464,1269738000,6),(464,1288486800,7),(464,1301187600,6),(464,1319936400,7),(464,1332637200,6),(464,1351386000,7),(464,1364691600,6),(464,1382835600,7),(464,1396141200,6),(464,1414285200,7),(464,1427590800,6),(464,1445734800,7),(464,1459040400,6),(464,1477789200,7),(464,1490490000,6),(464,1509238800,7),(464,1521939600,6),(464,1540688400,7),(464,1553994000,6),(464,1572138000,7),(464,1585443600,6),(464,1603587600,7),(464,1616893200,6),(464,1635642000,7),(464,1648342800,6),(464,1667091600,7),(464,1679792400,6),(464,1698541200,7),(464,1711846800,6),(464,1729990800,7),(464,1743296400,6),(464,1761440400,7),(464,1774746000,6),(464,1792890000,7),(464,1806195600,6),(464,1824944400,7),(464,1837645200,6),(464,1856394000,7),(464,1869094800,6),(464,1887843600,7),(464,1901149200,6),(464,1919293200,7),(464,1932598800,6),(464,1950742800,7),(464,1964048400,6),(464,1982797200,7),(464,1995498000,6),(464,2014246800,7),(464,2026947600,6),(464,2045696400,7),(464,2058397200,6),(464,2077146000,7),(464,2090451600,6),(464,2108595600,7),(464,2121901200,6),(464,2140045200,7),(465,-2147483648,1),(465,-1632008194,2),(465,-1618702594,1),(465,-1601681794,2),(465,-1597275394,1),(465,-1377308194,3),(465,-928029600,4),(465,-899521200,7),(465,-857257200,5),(465,-844556400,6),(465,-828226800,5),(465,-812502000,6),(465,-796777200,5),(465,-795834000,4),(465,354920400,8),(465,370728000,4),(465,386456400,8),(465,402264000,4),(465,417992400,8),(465,433800000,4),(465,449614800,8),(465,465346800,9),(465,481071600,10),(465,496796400,9),(465,512521200,10),(465,528246000,9),(465,543970800,10),(465,559695600,9),(465,575420400,10),(465,591145200,9),(465,606870000,11),(465,622598400,12),(465,638323200,11),(465,654652800,12),(465,670377600,11),(465,686102400,12),(465,701827200,11),(465,717552000,12),(465,733276800,11),(465,749001600,12),(465,764726400,11),(465,780451200,12),(465,796176000,11),(465,811900800,12),(465,828230400,11),(465,843955200,12),(465,853797600,3),(465,859683600,13),(465,877827600,14),(465,891133200,13),(465,909277200,14),(465,922582800,13),(465,941331600,14),(465,951775200,3),(465,985482000,13),(465,1004230800,14),(465,1017536400,13),(465,1035680400,14),(465,1048986000,13),(465,1067130000,14),(465,1080435600,13),(465,1099184400,14),(465,1111885200,13),(465,1130634000,14),(465,1143334800,13),(465,1162083600,14),(465,1174784400,13),(465,1193533200,14),(465,1206838800,13),(465,1224982800,14),(465,1238288400,13),(465,1256432400,14),(465,1269738000,13),(465,1288486800,14),(465,1301187600,13),(465,1319936400,14),(465,1332637200,13),(465,1351386000,14),(465,1364691600,13),(465,1382835600,14),(465,1396141200,13),(465,1414285200,14),(465,1427590800,13),(465,1445734800,14),(465,1459040400,13),(465,1477789200,14),(465,1490490000,13),(465,1509238800,14),(465,1521939600,13),(465,1540688400,14),(465,1553994000,13),(465,1572138000,14),(465,1585443600,13),(465,1603587600,14),(465,1616893200,13),(465,1635642000,14),(465,1648342800,13),(465,1667091600,14),(465,1679792400,13),(465,1698541200,14),(465,1711846800,13),(465,1729990800,14),(465,1743296400,13),(465,1761440400,14),(465,1774746000,13),(465,1792890000,14),(465,1806195600,13),(465,1824944400,14),(465,1837645200,13),(465,1856394000,14),(465,1869094800,13),(465,1887843600,14),(465,1901149200,13),(465,1919293200,14),(465,1932598800,13),(465,1950742800,14),(465,1964048400,13),(465,1982797200,14),(465,1995498000,13),(465,2014246800,14),(465,2026947600,13),(465,2045696400,14),(465,2058397200,13),(465,2077146000,14),(465,2090451600,13),(465,2108595600,14),(465,2121901200,13),(465,2140045200,14),(466,-2147483648,2),(466,-1690765200,1),(466,-1680487200,2),(466,-1664758800,1),(466,-1648951200,2),(466,-1635123600,1),(466,-1616896800,2),(466,-1604278800,1),(466,-1585533600,2),(466,-1571014800,1),(466,-1555293600,2),(466,-932432400,1),(466,-857257200,3),(466,-844556400,4),(466,-830311200,1),(466,-828226800,3),(466,-812502000,4),(466,-807156000,1),(466,-798073200,3),(466,-781052400,1),(466,-766717200,2),(466,-750898800,4),(466,-733359600,3),(466,-719456400,4),(466,-701917200,3),(466,-689209200,4),(466,-670460400,3),(466,-114051600,4),(466,-103168800,2),(466,-81997200,4),(466,-71715600,3),(466,-50547600,4),(466,-40266000,3),(466,-18493200,4),(466,-8211600,3),(466,12956400,4),(466,23238000,3),(466,43801200,4),(466,54687600,3),(466,75855600,4),(466,86742000,3),(466,107910000,4),(466,118191600,3),(466,138754800,4),(466,149641200,3),(466,170809200,4),(466,181090800,3),(466,202258800,4),(466,212540400,3),(466,233103600,4),(466,243990000,3),(466,265158000,4),(466,276044400,3),(466,296607600,4),(466,307494000,3),(466,315529200,2),(466,323830800,5),(466,338950800,6),(466,354675600,5),(466,370400400,6),(466,386125200,5),(466,401850000,6),(466,417574800,5),(466,433299600,6),(466,449024400,5),(466,465354000,6),(466,481078800,5),(466,496803600,6),(466,512528400,5),(466,528253200,6),(466,543978000,5),(466,559702800,6),(466,575427600,5),(466,591152400,6),(466,606877200,5),(466,622602000,6),(466,638326800,5),(466,654656400,6),(466,670381200,5),(466,686106000,6),(466,701830800,5),(466,717555600,6),(466,733280400,5),(466,749005200,6),(466,764730000,5),(466,780454800,6),(466,796179600,5),(466,811904400,6),(466,828234000,5),(466,846378000,6),(466,859683600,5),(466,877827600,6),(466,891133200,5),(466,909277200,6),(466,922582800,5),(466,941331600,6),(466,954032400,5),(466,972781200,6),(466,985482000,5),(466,1004230800,6),(466,1017536400,5),(466,1035680400,6),(466,1048986000,5),(466,1067130000,6),(466,1080435600,5),(466,1099184400,6),(466,1111885200,5),(466,1130634000,6),(466,1143334800,5),(466,1162083600,6),(466,1174784400,5),(466,1193533200,6),(466,1206838800,5),(466,1224982800,6),(466,1238288400,5),(466,1256432400,6),(466,1269738000,5),(466,1288486800,6),(466,1301187600,5),(466,1319936400,6),(466,1332637200,5),(466,1351386000,6),(466,1364691600,5),(466,1382835600,6),(466,1396141200,5),(466,1414285200,6),(466,1427590800,5),(466,1445734800,6),(466,1459040400,5),(466,1477789200,6),(466,1490490000,5),(466,1509238800,6),(466,1521939600,5),(466,1540688400,6),(466,1553994000,5),(466,1572138000,6),(466,1585443600,5),(466,1603587600,6),(466,1616893200,5),(466,1635642000,6),(466,1648342800,5),(466,1667091600,6),(466,1679792400,5),(466,1698541200,6),(466,1711846800,5),(466,1729990800,6),(466,1743296400,5),(466,1761440400,6),(466,1774746000,5),(466,1792890000,6),(466,1806195600,5),(466,1824944400,6),(466,1837645200,5),(466,1856394000,6),(466,1869094800,5),(466,1887843600,6),(466,1901149200,5),(466,1919293200,6),(466,1932598800,5),(466,1950742800,6),(466,1964048400,5),(466,1982797200,6),(466,1995498000,5),(466,2014246800,6),(466,2026947600,5),(466,2045696400,6),(466,2058397200,5),(466,2077146000,6),(466,2090451600,5),(466,2108595600,6),(466,2121901200,5),(466,2140045200,6),(467,-2147483648,0),(467,-1593820800,1),(467,-1247540400,2),(467,354916800,3),(467,370724400,2),(467,386452800,3),(467,402260400,2),(467,417988800,3),(467,433796400,2),(467,449611200,3),(467,465343200,4),(467,481068000,5),(467,496792800,4),(467,512517600,5),(467,528242400,4),(467,543967200,5),(467,559692000,4),(467,575416800,5),(467,591141600,4),(467,606866400,6),(467,622594800,7),(467,638319600,6),(467,654649200,7),(467,670374000,8),(467,686102400,7),(467,687916800,2),(467,701820000,5),(467,717544800,4),(467,733269600,5),(467,748994400,4),(467,764719200,5),(467,780444000,4),(467,796168800,5),(467,811893600,4),(467,828223200,5),(467,846367200,4),(467,859672800,5),(467,877816800,4),(467,891122400,5),(467,909266400,4),(467,922572000,5),(467,941320800,4),(467,954021600,5),(467,972770400,4),(467,985471200,5),(467,1004220000,4),(467,1017525600,5),(467,1035669600,4),(467,1048975200,5),(467,1067119200,4),(467,1080424800,5),(467,1099173600,4),(467,1111874400,5),(467,1130623200,4),(467,1143324000,5),(467,1162072800,4),(467,1174773600,5),(467,1193522400,4),(467,1206828000,5),(467,1224972000,4),(467,1238277600,5),(467,1256421600,4),(467,1269727200,6),(467,1288479600,7),(467,1301180400,4),(467,2147483647,4),(468,-2147483648,2),(468,-1690765200,1),(468,-1680487200,2),(468,-1664758800,1),(468,-1648951200,2),(468,-1635123600,1),(468,-1616896800,2),(468,-1604278800,1),(468,-1585533600,2),(468,-1571014800,1),(468,-1555293600,2),(468,-932432400,1),(468,-857257200,3),(468,-844556400,4),(468,-830311200,1),(468,-828226800,3),(468,-812502000,4),(468,-807156000,1),(468,-798073200,3),(468,-781052400,1),(468,-766717200,2),(468,-750898800,4),(468,-733359600,3),(468,-719456400,4),(468,-701917200,3),(468,-689209200,4),(468,-670460400,3),(468,-114051600,4),(468,-103168800,2),(468,-81997200,4),(468,-71715600,3),(468,-50547600,4),(468,-40266000,3),(468,-18493200,4),(468,-8211600,3),(468,12956400,4),(468,23238000,3),(468,43801200,4),(468,54687600,3),(468,75855600,4),(468,86742000,3),(468,107910000,4),(468,118191600,3),(468,138754800,4),(468,149641200,3),(468,170809200,4),(468,181090800,3),(468,202258800,4),(468,212540400,3),(468,233103600,4),(468,243990000,3),(468,265158000,4),(468,276044400,3),(468,296607600,4),(468,307494000,3),(468,315529200,2),(468,323830800,5),(468,338950800,6),(468,354675600,5),(468,370400400,6),(468,386125200,5),(468,401850000,6),(468,417574800,5),(468,433299600,6),(468,449024400,5),(468,465354000,6),(468,481078800,5),(468,496803600,6),(468,512528400,5),(468,528253200,6),(468,543978000,5),(468,559702800,6),(468,575427600,5),(468,591152400,6),(468,606877200,5),(468,622602000,6),(468,638326800,5),(468,654656400,6),(468,670381200,5),(468,686106000,6),(468,701830800,5),(468,717555600,6),(468,733280400,5),(468,749005200,6),(468,764730000,5),(468,780454800,6),(468,796179600,5),(468,811904400,6),(468,828234000,5),(468,846378000,6),(468,859683600,5),(468,877827600,6),(468,891133200,5),(468,909277200,6),(468,922582800,5),(468,941331600,6),(468,954032400,5),(468,972781200,6),(468,985482000,5),(468,1004230800,6),(468,1017536400,5),(468,1035680400,6),(468,1048986000,5),(468,1067130000,6),(468,1080435600,5),(468,1099184400,6),(468,1111885200,5),(468,1130634000,6),(468,1143334800,5),(468,1162083600,6),(468,1174784400,5),(468,1193533200,6),(468,1206838800,5),(468,1224982800,6),(468,1238288400,5),(468,1256432400,6),(468,1269738000,5),(468,1288486800,6),(468,1301187600,5),(468,1319936400,6),(468,1332637200,5),(468,1351386000,6),(468,1364691600,5),(468,1382835600,6),(468,1396141200,5),(468,1414285200,6),(468,1427590800,5),(468,1445734800,6),(468,1459040400,5),(468,1477789200,6),(468,1490490000,5),(468,1509238800,6),(468,1521939600,5),(468,1540688400,6),(468,1553994000,5),(468,1572138000,6),(468,1585443600,5),(468,1603587600,6),(468,1616893200,5),(468,1635642000,6),(468,1648342800,5),(468,1667091600,6),(468,1679792400,5),(468,1698541200,6),(468,1711846800,5),(468,1729990800,6),(468,1743296400,5),(468,1761440400,6),(468,1774746000,5),(468,1792890000,6),(468,1806195600,5),(468,1824944400,6),(468,1837645200,5),(468,1856394000,6),(468,1869094800,5),(468,1887843600,6),(468,1901149200,5),(468,1919293200,6),(468,1932598800,5),(468,1950742800,6),(468,1964048400,5),(468,1982797200,6),(468,1995498000,5),(468,2014246800,6),(468,2026947600,5),(468,2045696400,6),(468,2058397200,5),(468,2077146000,6),(468,2090451600,5),(468,2108595600,6),(468,2121901200,5),(468,2140045200,6),(469,-2147483648,1),(469,-905824800,4),(469,-857257200,2),(469,-844556400,3),(469,-828226800,2),(469,-812502000,3),(469,-796777200,2),(469,-788922000,1),(469,-777942000,3),(469,-766623600,2),(469,407199600,1),(469,417574800,5),(469,433299600,6),(469,449024400,5),(469,465354000,6),(469,481078800,5),(469,496803600,6),(469,512528400,5),(469,528253200,6),(469,543978000,5),(469,559702800,6),(469,575427600,5),(469,591152400,6),(469,606877200,5),(469,622602000,6),(469,638326800,5),(469,654656400,6),(469,670381200,5),(469,686106000,6),(469,701830800,5),(469,717555600,6),(469,733280400,5),(469,749005200,6),(469,764730000,5),(469,780454800,6),(469,796179600,5),(469,811904400,6),(469,828234000,5),(469,846378000,6),(469,859683600,5),(469,877827600,6),(469,891133200,5),(469,909277200,6),(469,922582800,5),(469,941331600,6),(469,954032400,5),(469,972781200,6),(469,985482000,5),(469,1004230800,6),(469,1017536400,5),(469,1035680400,6),(469,1048986000,5),(469,1067130000,6),(469,1080435600,5),(469,1099184400,6),(469,1111885200,5),(469,1130634000,6),(469,1143334800,5),(469,1162083600,6),(469,1174784400,5),(469,1193533200,6),(469,1206838800,5),(469,1224982800,6),(469,1238288400,5),(469,1256432400,6),(469,1269738000,5),(469,1288486800,6),(469,1301187600,5),(469,1319936400,6),(469,1332637200,5),(469,1351386000,6),(469,1364691600,5),(469,1382835600,6),(469,1396141200,5),(469,1414285200,6),(469,1427590800,5),(469,1445734800,6),(469,1459040400,5),(469,1477789200,6),(469,1490490000,5),(469,1509238800,6),(469,1521939600,5),(469,1540688400,6),(469,1553994000,5),(469,1572138000,6),(469,1585443600,5),(469,1603587600,6),(469,1616893200,5),(469,1635642000,6),(469,1648342800,5),(469,1667091600,6),(469,1679792400,5),(469,1698541200,6),(469,1711846800,5),(469,1729990800,6),(469,1743296400,5),(469,1761440400,6),(469,1774746000,5),(469,1792890000,6),(469,1806195600,5),(469,1824944400,6),(469,1837645200,5),(469,1856394000,6),(469,1869094800,5),(469,1887843600,6),(469,1901149200,5),(469,1919293200,6),(469,1932598800,5),(469,1950742800,6),(469,1964048400,5),(469,1982797200,6),(469,1995498000,5),(469,2014246800,6),(469,2026947600,5),(469,2045696400,6),(469,2058397200,5),(469,2077146000,6),(469,2090451600,5),(469,2108595600,6),(469,2121901200,5),(469,2140045200,6),(470,-2147483648,0),(470,-1593820800,1),(470,-1247540400,3),(470,354916800,2),(470,370724400,3),(470,386452800,2),(470,402260400,3),(470,417988800,2),(470,433796400,3),(470,449611200,2),(470,465343200,4),(470,481068000,5),(470,496792800,4),(470,512517600,5),(470,528242400,4),(470,543967200,5),(470,559692000,4),(470,575416800,6),(470,591145200,7),(470,606870000,6),(470,622594800,7),(470,638319600,6),(470,654649200,7),(470,670374000,4),(470,701820000,6),(470,717548400,7),(470,733273200,6),(470,748998000,7),(470,764722800,6),(470,780447600,7),(470,796172400,6),(470,811897200,7),(470,828226800,6),(470,846370800,7),(470,859676400,6),(470,877820400,7),(470,891126000,6),(470,909270000,7),(470,922575600,6),(470,941324400,7),(470,954025200,6),(470,972774000,7),(470,985474800,6),(470,1004223600,7),(470,1017529200,6),(470,1035673200,7),(470,1048978800,6),(470,1067122800,7),(470,1080428400,6),(470,1099177200,7),(470,1111878000,6),(470,1130626800,7),(470,1143327600,6),(470,1162076400,7),(470,1174777200,6),(470,1193526000,7),(470,1206831600,6),(470,1224975600,7),(470,1238281200,6),(470,1256425200,7),(470,1269730800,6),(470,1288479600,7),(470,1301180400,4),(470,1414274400,7),(470,1480806000,4),(470,2147483647,4),(471,-2147483648,1),(471,-1441160160,2),(471,-1247536800,3),(471,-888894000,6),(471,-857257200,4),(471,-844556400,5),(471,-828226800,4),(471,-812502000,5),(471,-811648800,3),(471,354920400,7),(471,370728000,3),(471,386456400,7),(471,402264000,3),(471,417992400,7),(471,433800000,3),(471,449614800,7),(471,465346800,8),(471,481071600,9),(471,496796400,8),(471,512521200,9),(471,528246000,8),(471,543970800,9),(471,559695600,8),(471,575420400,9),(471,591145200,8),(471,606870000,9),(471,622594800,8),(471,631141200,3),(471,646786800,2),(471,701820000,10),(471,717541200,2),(471,733269600,10),(471,748990800,2),(471,764719200,10),(471,767739600,7),(471,780436800,3),(471,796165200,7),(471,811886400,3),(471,828219600,9),(471,846374400,8),(471,852066000,3),(471,859683600,11),(471,877827600,12),(471,891133200,11),(471,909277200,12),(471,922582800,11),(471,941331600,12),(471,954032400,11),(471,972781200,12),(471,985482000,11),(471,1004230800,12),(471,1017536400,11),(471,1035680400,12),(471,1048986000,11),(471,1067130000,12),(471,1080435600,11),(471,1099184400,12),(471,1111885200,11),(471,1130634000,12),(471,1143334800,11),(471,1162083600,12),(471,1174784400,11),(471,1193533200,12),(471,1206838800,11),(471,1224982800,12),(471,1238288400,11),(471,1256432400,12),(471,1269738000,11),(471,1288486800,12),(471,1301187600,11),(471,1319936400,12),(471,1332637200,11),(471,1351386000,12),(471,1364691600,11),(471,1382835600,12),(471,1396137600,13),(471,1414274400,8),(472,-2147483648,1),(472,-905824800,4),(472,-857257200,2),(472,-844556400,3),(472,-828226800,2),(472,-812502000,3),(472,-796777200,2),(472,-788922000,1),(472,-777942000,3),(472,-766623600,2),(472,407199600,1),(472,417574800,5),(472,433299600,6),(472,449024400,5),(472,465354000,6),(472,481078800,5),(472,496803600,6),(472,512528400,5),(472,528253200,6),(472,543978000,5),(472,559702800,6),(472,575427600,5),(472,591152400,6),(472,606877200,5),(472,622602000,6),(472,638326800,5),(472,654656400,6),(472,670381200,5),(472,686106000,6),(472,701830800,5),(472,717555600,6),(472,733280400,5),(472,749005200,6),(472,764730000,5),(472,780454800,6),(472,796179600,5),(472,811904400,6),(472,828234000,5),(472,846378000,6),(472,859683600,5),(472,877827600,6),(472,891133200,5),(472,909277200,6),(472,922582800,5),(472,941331600,6),(472,954032400,5),(472,972781200,6),(472,985482000,5),(472,1004230800,6),(472,1017536400,5),(472,1035680400,6),(472,1048986000,5),(472,1067130000,6),(472,1080435600,5),(472,1099184400,6),(472,1111885200,5),(472,1130634000,6),(472,1143334800,5),(472,1162083600,6),(472,1174784400,5),(472,1193533200,6),(472,1206838800,5),(472,1224982800,6),(472,1238288400,5),(472,1256432400,6),(472,1269738000,5),(472,1288486800,6),(472,1301187600,5),(472,1319936400,6),(472,1332637200,5),(472,1351386000,6),(472,1364691600,5),(472,1382835600,6),(472,1396141200,5),(472,1414285200,6),(472,1427590800,5),(472,1445734800,6),(472,1459040400,5),(472,1477789200,6),(472,1490490000,5),(472,1509238800,6),(472,1521939600,5),(472,1540688400,6),(472,1553994000,5),(472,1572138000,6),(472,1585443600,5),(472,1603587600,6),(472,1616893200,5),(472,1635642000,6),(472,1648342800,5),(472,1667091600,6),(472,1679792400,5),(472,1698541200,6),(472,1711846800,5),(472,1729990800,6),(472,1743296400,5),(472,1761440400,6),(472,1774746000,5),(472,1792890000,6),(472,1806195600,5),(472,1824944400,6),(472,1837645200,5),(472,1856394000,6),(472,1869094800,5),(472,1887843600,6),(472,1901149200,5),(472,1919293200,6),(472,1932598800,5),(472,1950742800,6),(472,1964048400,5),(472,1982797200,6),(472,1995498000,5),(472,2014246800,6),(472,2026947600,5),(472,2045696400,6),(472,2058397200,5),(472,2077146000,6),(472,2090451600,5),(472,2108595600,6),(472,2121901200,5),(472,2140045200,6),(473,-2147483648,1),(473,-857257200,2),(473,-844556400,3),(473,-828226800,2),(473,-812502000,3),(473,-796777200,2),(473,-788922000,4),(473,-781048800,1),(473,291762000,5),(473,307576800,1),(473,323816400,5),(473,339026400,1),(473,355266000,5),(473,370393200,1),(473,386715600,5),(473,401846400,6),(473,417571200,7),(473,433296000,6),(473,449020800,7),(473,465350400,6),(473,481075200,7),(473,496800000,6),(473,512524800,7),(473,528249600,6),(473,543974400,7),(473,559699200,6),(473,575424000,7),(473,591148800,6),(473,606873600,7),(473,622598400,6),(473,638323200,7),(473,654652800,6),(473,662680800,1),(473,670370400,5),(473,686091600,1),(473,701820000,5),(473,717541200,1),(473,733269600,5),(473,748990800,1),(473,764719200,5),(473,780440400,1),(473,796168800,5),(473,811890000,1),(473,828223200,5),(473,846363600,1),(473,859683600,8),(473,877827600,9),(473,891133200,8),(473,909277200,9),(473,922582800,8),(473,941331600,9),(473,954032400,8),(473,972781200,9),(473,985482000,8),(473,1004230800,9),(473,1017536400,8),(473,1035680400,9),(473,1048986000,8),(473,1067130000,9),(473,1080435600,8),(473,1099184400,9),(473,1111885200,8),(473,1130634000,9),(473,1143334800,8),(473,1162083600,9),(473,1174784400,8),(473,1193533200,9),(473,1206838800,8),(473,1224982800,9),(473,1238288400,8),(473,1256432400,9),(473,1269738000,8),(473,1288486800,9),(473,1301187600,8),(473,1319936400,9),(473,1332637200,8),(473,1351386000,9),(473,1364691600,8),(473,1382835600,9),(473,1396141200,8),(473,1414285200,9),(473,1427590800,8),(473,1445734800,9),(473,1459040400,8),(473,1477789200,9),(473,1490490000,8),(473,1509238800,9),(473,1521939600,8),(473,1540688400,9),(473,1553994000,8),(473,1572138000,9),(473,1585443600,8),(473,1603587600,9),(473,1616893200,8),(473,1635642000,9),(473,1648342800,8),(473,1667091600,9),(473,1679792400,8),(473,1698541200,9),(473,1711846800,8),(473,1729990800,9),(473,1743296400,8),(473,1761440400,9),(473,1774746000,8),(473,1792890000,9),(473,1806195600,8),(473,1824944400,9),(473,1837645200,8),(473,1856394000,9),(473,1869094800,8),(473,1887843600,9),(473,1901149200,8),(473,1919293200,9),(473,1932598800,8),(473,1950742800,9),(473,1964048400,8),(473,1982797200,9),(473,1995498000,8),(473,2014246800,9),(473,2026947600,8),(473,2045696400,9),(473,2058397200,8),(473,2077146000,9),(473,2090451600,8),(473,2108595600,9),(473,2121901200,8),(473,2140045200,9),(474,-2147483648,1),(474,-1692496800,2),(474,-1680483600,1),(474,323830800,3),(474,338950800,4),(474,354675600,3),(474,370400400,4),(474,386125200,3),(474,401850000,4),(474,417574800,3),(474,433299600,4),(474,449024400,3),(474,465354000,4),(474,481078800,3),(474,496803600,4),(474,512528400,3),(474,528253200,4),(474,543978000,3),(474,559702800,4),(474,575427600,3),(474,591152400,4),(474,606877200,3),(474,622602000,4),(474,638326800,3),(474,654656400,4),(474,670381200,3),(474,686106000,4),(474,701830800,3),(474,717555600,4),(474,733280400,3),(474,749005200,4),(474,764730000,3),(474,780454800,4),(474,796179600,3),(474,811904400,4),(474,828234000,3),(474,846378000,4),(474,859683600,3),(474,877827600,4),(474,891133200,3),(474,909277200,4),(474,922582800,3),(474,941331600,4),(474,954032400,3),(474,972781200,4),(474,985482000,3),(474,1004230800,4),(474,1017536400,3),(474,1035680400,4),(474,1048986000,3),(474,1067130000,4),(474,1080435600,3),(474,1099184400,4),(474,1111885200,3),(474,1130634000,4),(474,1143334800,3),(474,1162083600,4),(474,1174784400,3),(474,1193533200,4),(474,1206838800,3),(474,1224982800,4),(474,1238288400,3),(474,1256432400,4),(474,1269738000,3),(474,1288486800,4),(474,1301187600,3),(474,1319936400,4),(474,1332637200,3),(474,1351386000,4),(474,1364691600,3),(474,1382835600,4),(474,1396141200,3),(474,1414285200,4),(474,1427590800,3),(474,1445734800,4),(474,1459040400,3),(474,1477789200,4),(474,1490490000,3),(474,1509238800,4),(474,1521939600,3),(474,1540688400,4),(474,1553994000,3),(474,1572138000,4),(474,1585443600,3),(474,1603587600,4),(474,1616893200,3),(474,1635642000,4),(474,1648342800,3),(474,1667091600,4),(474,1679792400,3),(474,1698541200,4),(474,1711846800,3),(474,1729990800,4),(474,1743296400,3),(474,1761440400,4),(474,1774746000,3),(474,1792890000,4),(474,1806195600,3),(474,1824944400,4),(474,1837645200,3),(474,1856394000,4),(474,1869094800,3),(474,1887843600,4),(474,1901149200,3),(474,1919293200,4),(474,1932598800,3),(474,1950742800,4),(474,1964048400,3),(474,1982797200,4),(474,1995498000,3),(474,2014246800,4),(474,2026947600,3),(474,2045696400,4),(474,2058397200,3),(474,2077146000,4),(474,2090451600,3),(474,2108595600,4),(474,2121901200,3),(474,2140045200,4),(475,-2147483648,1),(475,-1638322740,4),(475,-1632006000,2),(475,-1618700400,3),(475,-1593824400,1),(475,-1535938740,5),(475,-927943200,6),(475,-892954800,7),(475,-857257200,3),(475,-844556400,2),(475,-828226800,3),(475,-812502000,2),(475,-797652000,6),(475,354920400,8),(475,370728000,6),(475,386456400,8),(475,402264000,6),(475,417992400,8),(475,433800000,6),(475,449614800,8),(475,465346800,9),(475,481071600,10),(475,496796400,9),(475,512521200,10),(475,528246000,9),(475,543970800,10),(475,559695600,9),(475,575420400,10),(475,591145200,9),(475,606870000,11),(475,622598400,12),(475,638323200,11),(475,654652800,12),(475,670377600,11),(475,686102400,12),(475,701827200,11),(475,717552000,12),(475,733276800,11),(475,749001600,12),(475,764726400,11),(475,780451200,12),(475,796176000,11),(475,811900800,12),(475,828230400,11),(475,846374400,12),(475,859680000,11),(475,877824000,12),(475,891129600,11),(475,906411600,15),(475,909277200,13),(475,922582800,14),(475,941331600,5),(475,1017536400,14),(475,1035680400,13),(475,1048986000,14),(475,1067130000,13),(475,1080435600,14),(475,1099184400,13),(475,1111885200,14),(475,1130634000,13),(475,1143334800,14),(475,1162083600,13),(475,1174784400,14),(475,1193533200,13),(475,1206838800,14),(475,1224982800,13),(475,1238288400,14),(475,1256432400,13),(475,1269738000,14),(475,1288486800,13),(475,1301187600,14),(475,1319936400,13),(475,1332637200,14),(475,1351386000,13),(475,1364691600,14),(475,1382835600,13),(475,1396141200,14),(475,1414285200,13),(475,1427590800,14),(475,1445734800,13),(475,1459040400,14),(475,1477789200,13),(475,1490490000,14),(475,1509238800,13),(475,1521939600,14),(475,1540688400,13),(475,1553994000,14),(475,1572138000,13),(475,1585443600,14),(475,1603587600,13),(475,1616893200,14),(475,1635642000,13),(475,1648342800,14),(475,1667091600,13),(475,1679792400,14),(475,1698541200,13),(475,1711846800,14),(475,1729990800,13),(475,1743296400,14),(475,1761440400,13),(475,1774746000,14),(475,1792890000,13),(475,1806195600,14),(475,1824944400,13),(475,1837645200,14),(475,1856394000,13),(475,1869094800,14),(475,1887843600,13),(475,1901149200,14),(475,1919293200,13),(475,1932598800,14),(475,1950742800,13),(475,1964048400,14),(475,1982797200,13),(475,1995498000,14),(475,2014246800,13),(475,2026947600,14),(475,2045696400,13),(475,2058397200,14),(475,2077146000,13),(475,2090451600,14),(475,2108595600,13),(475,2121901200,14),(475,2140045200,13),(476,-2147483648,0),(476,-1767230360,1),(476,-932346000,2),(476,-857257200,1),(476,-844556400,2),(476,-843519600,1),(476,136854000,2),(476,149896800,1),(476,168130800,2),(476,181432800,1),(476,199839600,2),(476,213141600,1),(476,231894000,2),(476,244591200,1),(476,263257200,2),(476,276040800,1),(476,294706800,2),(476,307490400,1),(476,326156400,2),(476,339458400,1),(476,357087600,2),(476,370389600,1),(476,389142000,2),(476,402444000,1),(476,419468400,2),(476,433807200,1),(476,449622000,2),(476,465354000,3),(476,481078800,4),(476,496803600,3),(476,512528400,4),(476,528253200,3),(476,543978000,4),(476,559702800,3),(476,575427600,4),(476,591152400,3),(476,606877200,4),(476,622602000,3),(476,638326800,4),(476,654656400,3),(476,670381200,4),(476,686106000,3),(476,701830800,4),(476,717555600,3),(476,733280400,4),(476,749005200,3),(476,764730000,4),(476,780454800,3),(476,796179600,4),(476,811904400,3),(476,828234000,4),(476,846378000,3),(476,859683600,4),(476,877827600,3),(476,891133200,4),(476,909277200,3),(476,922582800,4),(476,941331600,3),(476,954032400,4),(476,972781200,3),(476,985482000,4),(476,1004230800,3),(476,1017536400,4),(476,1035680400,3),(476,1048986000,4),(476,1067130000,3),(476,1080435600,4),(476,1099184400,3),(476,1111885200,4),(476,1130634000,3),(476,1143334800,4),(476,1162083600,3),(476,1174784400,4),(476,1193533200,3),(476,1206838800,4),(476,1224982800,3),(476,1238288400,4),(476,1256432400,3),(476,1269738000,4),(476,1288486800,3),(476,1301187600,4),(476,1319936400,3),(476,1332637200,4),(476,1351386000,3),(476,1364691600,4),(476,1382835600,3),(476,1396141200,4),(476,1414285200,3),(476,1427590800,4),(476,1445734800,3),(476,1459040400,4),(476,1477789200,3),(476,1490490000,4),(476,1509238800,3),(476,1521939600,4),(476,1540688400,3),(476,1553994000,4),(476,1572138000,3),(476,1585443600,4),(476,1603587600,3),(476,1616893200,4),(476,1635642000,3),(476,1648342800,4),(476,1667091600,3),(476,1679792400,4),(476,1698541200,3),(476,1711846800,4),(476,1729990800,3),(476,1743296400,4),(476,1761440400,3),(476,1774746000,4),(476,1792890000,3),(476,1806195600,4),(476,1824944400,3),(476,1837645200,4),(476,1856394000,3),(476,1869094800,4),(476,1887843600,3),(476,1901149200,4),(476,1919293200,3),(476,1932598800,4),(476,1950742800,3),(476,1964048400,4),(476,1982797200,3),(476,1995498000,4),(476,2014246800,3),(476,2026947600,4),(476,2045696400,3),(476,2058397200,4),(476,2077146000,3),(476,2090451600,4),(476,2108595600,3),(476,2121901200,4),(476,2140045200,3),(477,-2147483648,1),(477,-1637114100,2),(477,-1213148664,5),(477,-1187056800,3),(477,-1175479200,4),(477,-1159754400,3),(477,-1144029600,4),(477,-1127700000,3),(477,-1111975200,4),(477,-1096250400,3),(477,-1080525600,4),(477,-1064800800,3),(477,-1049076000,4),(477,-1033351200,3),(477,-1017626400,4),(477,-1001901600,3),(477,-986176800,4),(477,-970452000,3),(477,-954727200,4),(477,-927165600,6),(477,-898138800,9),(477,-857257200,7),(477,-844556400,8),(477,-828226800,7),(477,-812502000,8),(477,-800157600,11),(477,354920400,10),(477,370728000,11),(477,386456400,10),(477,402264000,11),(477,417992400,10),(477,433800000,11),(477,449614800,10),(477,465346800,12),(477,481071600,13),(477,496796400,12),(477,512521200,13),(477,528246000,12),(477,543970800,13),(477,559695600,12),(477,575420400,13),(477,591145200,12),(477,606870000,13),(477,622594800,12),(477,638319600,13),(477,641944800,6),(477,654652800,4),(477,670377600,3),(477,686102400,4),(477,694216800,5),(477,701820000,6),(477,717541200,5),(477,733269600,6),(477,748990800,5),(477,764719200,6),(477,780440400,5),(477,796168800,6),(477,811890000,5),(477,828223200,6),(477,846363600,5),(477,859680000,6),(477,877824000,5),(477,891129600,6),(477,909273600,5),(477,922579200,6),(477,941328000,5),(477,954028800,6),(477,972777600,5),(477,985478400,6),(477,1004227200,5),(477,1017532800,6),(477,1035676800,5),(477,1048982400,6),(477,1067126400,5),(477,1080432000,6),(477,1099180800,5),(477,1111881600,6),(477,1130630400,5),(477,1143331200,6),(477,1162080000,5),(477,1174780800,6),(477,1193529600,5),(477,1206835200,6),(477,1224979200,5),(477,1238284800,6),(477,1256428800,5),(477,1269734400,6),(477,1288483200,5),(477,1301184000,6),(477,1319932800,5),(477,1332633600,6),(477,1351382400,5),(477,1364688000,6),(477,1382832000,5),(477,1396137600,6),(477,1414281600,5),(477,1427587200,6),(477,1445731200,5),(477,1459036800,6),(477,1477785600,5),(477,1490486400,6),(477,1509235200,5),(477,1521936000,6),(477,1540684800,5),(477,1553990400,6),(477,1572134400,5),(477,1585440000,6),(477,1603584000,5),(477,1616889600,6),(477,1635638400,5),(477,1648339200,6),(477,1667088000,5),(477,1679788800,6),(477,1698537600,5),(477,1711843200,6),(477,1729987200,5),(477,1743292800,6),(477,1761436800,5),(477,1774742400,6),(477,1792886400,5),(477,1806192000,6),(477,1824940800,5),(477,1837641600,6),(477,1856390400,5),(477,1869091200,6),(477,1887840000,5),(477,1901145600,6),(477,1919289600,5),(477,1932595200,6),(477,1950739200,5),(477,1964044800,6),(477,1982793600,5),(477,1995494400,6),(477,2014243200,5),(477,2026944000,6),(477,2045692800,5),(477,2058393600,6),(477,2077142400,5),(477,2090448000,6),(477,2108592000,5),(477,2121897600,6),(477,2140041600,5),(478,-2147483648,0),(478,-1593820800,1),(478,-1247540400,3),(478,354916800,2),(478,370724400,3),(478,386452800,2),(478,402260400,3),(478,417988800,2),(478,433796400,3),(478,449611200,2),(478,465343200,4),(478,481068000,5),(478,496792800,4),(478,512517600,5),(478,528242400,4),(478,543967200,5),(478,559692000,4),(478,575416800,5),(478,591141600,4),(478,606866400,6),(478,622594800,7),(478,638319600,6),(478,654649200,7),(478,670374000,8),(478,686102400,9),(478,695779200,7),(478,701823600,6),(478,717548400,7),(478,733273200,6),(478,748998000,7),(478,764722800,6),(478,780447600,7),(478,796172400,6),(478,811897200,7),(478,828226800,6),(478,846370800,7),(478,859676400,6),(478,877820400,7),(478,891126000,6),(478,909270000,7),(478,922575600,6),(478,941324400,7),(478,954025200,6),(478,972774000,7),(478,985474800,6),(478,1004223600,7),(478,1017529200,6),(478,1035673200,7),(478,1048978800,6),(478,1067122800,7),(478,1080428400,6),(478,1099177200,7),(478,1111878000,6),(478,1130626800,7),(478,1143327600,6),(478,1162076400,7),(478,1174777200,6),(478,1193526000,7),(478,1206831600,6),(478,1224975600,7),(478,1238281200,6),(478,1256425200,7),(478,1269730800,6),(478,1288479600,7),(478,1301180400,4),(478,1414274400,7),(478,1459033200,4),(478,2147483647,4),(479,-2147483648,1),(479,-938905200,2),(479,-857257200,3),(479,-844556400,2),(479,-828226800,3),(479,-812502000,2),(479,-796874400,4),(479,-794714400,1),(479,-773456400,6),(479,354920400,5),(479,370728000,6),(479,386456400,5),(479,402264000,6),(479,417992400,5),(479,433800000,6),(479,449614800,5),(479,465346800,7),(479,481071600,8),(479,496796400,7),(479,512521200,8),(479,528246000,7),(479,543970800,8),(479,559695600,7),(479,575420400,8),(479,591145200,7),(479,606870000,8),(479,622594800,7),(479,631141200,6),(479,646786800,1),(479,670384800,9),(479,701820000,10),(479,717541200,9),(479,733269600,10),(479,748990800,9),(479,764719200,10),(479,780440400,9),(479,796179600,11),(479,811904400,12),(479,828234000,11),(479,846378000,12),(479,859683600,11),(479,877827600,12),(479,891133200,11),(479,909277200,12),(479,922582800,11),(479,941331600,12),(479,954032400,11),(479,972781200,12),(479,985482000,11),(479,1004230800,12),(479,1017536400,11),(479,1035680400,12),(479,1048986000,11),(479,1067130000,12),(479,1080435600,11),(479,1099184400,12),(479,1111885200,11),(479,1130634000,12),(479,1143334800,11),(479,1162083600,12),(479,1174784400,11),(479,1193533200,12),(479,1206838800,11),(479,1224982800,12),(479,1238288400,11),(479,1256432400,12),(479,1269738000,11),(479,1288486800,12),(479,1301187600,11),(479,1319936400,12),(479,1332637200,11),(479,1351386000,12),(479,1364691600,11),(479,1382835600,12),(479,1396141200,11),(479,1414285200,12),(479,1427590800,11),(479,1445734800,12),(479,1459040400,11),(479,1477789200,12),(479,1490490000,11),(479,1509238800,12),(479,1521939600,11),(479,1540688400,12),(479,1553994000,11),(479,1572138000,12),(479,1585443600,11),(479,1603587600,12),(479,1616893200,11),(479,1635642000,12),(479,1648342800,11),(479,1667091600,12),(479,1679792400,11),(479,1698541200,12),(479,1711846800,11),(479,1729990800,12),(479,1743296400,11),(479,1761440400,12),(479,1774746000,11),(479,1792890000,12),(479,1806195600,11),(479,1824944400,12),(479,1837645200,11),(479,1856394000,12),(479,1869094800,11),(479,1887843600,12),(479,1901149200,11),(479,1919293200,12),(479,1932598800,11),(479,1950742800,12),(479,1964048400,11),(479,1982797200,12),(479,1995498000,11),(479,2014246800,12),(479,2026947600,11),(479,2045696400,12),(479,2058397200,11),(479,2077146000,12),(479,2090451600,11),(479,2108595600,12),(479,2121901200,11),(479,2140045200,12),(480,-2147483648,2),(480,-904435200,1),(480,-891129600,2),(480,-872985600,1),(480,-859680000,2),(480,354675600,3),(480,370400400,4),(480,386125200,3),(480,401850000,4),(480,417574800,3),(480,433299600,4),(480,449024400,3),(480,465354000,4),(480,481078800,3),(480,496803600,4),(480,512528400,3),(480,528253200,4),(480,543978000,3),(480,559702800,4),(480,575427600,3),(480,591152400,4),(480,606877200,3),(480,622602000,4),(480,638326800,3),(480,654656400,4),(480,670381200,3),(480,686106000,4),(480,701830800,3),(480,717555600,4),(480,733280400,3),(480,749005200,4),(480,764730000,3),(480,780454800,4),(480,796179600,3),(480,811904400,4),(480,828234000,3),(480,846378000,4),(480,859683600,3),(480,877827600,4),(480,891133200,3),(480,909277200,4),(480,922582800,3),(480,941331600,4),(480,954032400,3),(480,972781200,4),(480,985482000,3),(480,1004230800,4),(480,1017536400,3),(480,1035680400,4),(480,1048986000,3),(480,1067130000,4),(480,1080435600,3),(480,1099184400,4),(480,1111885200,3),(480,1130634000,4),(480,1143334800,3),(480,1162083600,4),(480,1174784400,3),(480,1193533200,4),(480,1206838800,3),(480,1224982800,4),(480,1238288400,3),(480,1256432400,4),(480,1269738000,3),(480,1288486800,4),(480,1301187600,3),(480,1319936400,4),(480,1332637200,3),(480,1351386000,4),(480,1364691600,3),(480,1382835600,4),(480,1396141200,3),(480,1414285200,4),(480,1427590800,3),(480,1445734800,4),(480,1459040400,3),(480,1477789200,4),(480,1490490000,3),(480,1509238800,4),(480,1521939600,3),(480,1540688400,4),(480,1553994000,3),(480,1572138000,4),(480,1585443600,3),(480,1603587600,4),(480,1616893200,3),(480,1635642000,4),(480,1648342800,3),(480,1667091600,4),(480,1679792400,3),(480,1698541200,4),(480,1711846800,3),(480,1729990800,4),(480,1743296400,3),(480,1761440400,4),(480,1774746000,3),(480,1792890000,4),(480,1806195600,3),(480,1824944400,4),(480,1837645200,3),(480,1856394000,4),(480,1869094800,3),(480,1887843600,4),(480,1901149200,3),(480,1919293200,4),(480,1932598800,3),(480,1950742800,4),(480,1964048400,3),(480,1982797200,4),(480,1995498000,3),(480,2014246800,4),(480,2026947600,3),(480,2045696400,4),(480,2058397200,3),(480,2077146000,4),(480,2090451600,3),(480,2108595600,4),(480,2121901200,3),(480,2140045200,4),(481,-2147483648,2),(481,-1690765200,1),(481,-1680487200,2),(481,-1664758800,1),(481,-1648951200,2),(481,-1635123600,1),(481,-1616896800,2),(481,-1604278800,1),(481,-1585533600,2),(481,-1571014800,1),(481,-1555293600,2),(481,-932432400,1),(481,-857257200,3),(481,-844556400,4),(481,-830311200,1),(481,-828226800,3),(481,-812502000,4),(481,-807156000,1),(481,-798073200,3),(481,-781052400,1),(481,-766717200,2),(481,-750898800,4),(481,-733359600,3),(481,-719456400,4),(481,-701917200,3),(481,-689209200,4),(481,-670460400,3),(481,-114051600,4),(481,-103168800,2),(481,-81997200,4),(481,-71715600,3),(481,-50547600,4),(481,-40266000,3),(481,-18493200,4),(481,-8211600,3),(481,12956400,4),(481,23238000,3),(481,43801200,4),(481,54687600,3),(481,75855600,4),(481,86742000,3),(481,107910000,4),(481,118191600,3),(481,138754800,4),(481,149641200,3),(481,170809200,4),(481,181090800,3),(481,202258800,4),(481,212540400,3),(481,233103600,4),(481,243990000,3),(481,265158000,4),(481,276044400,3),(481,296607600,4),(481,307494000,3),(481,315529200,2),(481,323830800,5),(481,338950800,6),(481,354675600,5),(481,370400400,6),(481,386125200,5),(481,401850000,6),(481,417574800,5),(481,433299600,6),(481,449024400,5),(481,465354000,6),(481,481078800,5),(481,496803600,6),(481,512528400,5),(481,528253200,6),(481,543978000,5),(481,559702800,6),(481,575427600,5),(481,591152400,6),(481,606877200,5),(481,622602000,6),(481,638326800,5),(481,654656400,6),(481,670381200,5),(481,686106000,6),(481,701830800,5),(481,717555600,6),(481,733280400,5),(481,749005200,6),(481,764730000,5),(481,780454800,6),(481,796179600,5),(481,811904400,6),(481,828234000,5),(481,846378000,6),(481,859683600,5),(481,877827600,6),(481,891133200,5),(481,909277200,6),(481,922582800,5),(481,941331600,6),(481,954032400,5),(481,972781200,6),(481,985482000,5),(481,1004230800,6),(481,1017536400,5),(481,1035680400,6),(481,1048986000,5),(481,1067130000,6),(481,1080435600,5),(481,1099184400,6),(481,1111885200,5),(481,1130634000,6),(481,1143334800,5),(481,1162083600,6),(481,1174784400,5),(481,1193533200,6),(481,1206838800,5),(481,1224982800,6),(481,1238288400,5),(481,1256432400,6),(481,1269738000,5),(481,1288486800,6),(481,1301187600,5),(481,1319936400,6),(481,1332637200,5),(481,1351386000,6),(481,1364691600,5),(481,1382835600,6),(481,1396141200,5),(481,1414285200,6),(481,1427590800,5),(481,1445734800,6),(481,1459040400,5),(481,1477789200,6),(481,1490490000,5),(481,1509238800,6),(481,1521939600,5),(481,1540688400,6),(481,1553994000,5),(481,1572138000,6),(481,1585443600,5),(481,1603587600,6),(481,1616893200,5),(481,1635642000,6),(481,1648342800,5),(481,1667091600,6),(481,1679792400,5),(481,1698541200,6),(481,1711846800,5),(481,1729990800,6),(481,1743296400,5),(481,1761440400,6),(481,1774746000,5),(481,1792890000,6),(481,1806195600,5),(481,1824944400,6),(481,1837645200,5),(481,1856394000,6),(481,1869094800,5),(481,1887843600,6),(481,1901149200,5),(481,1919293200,6),(481,1932598800,5),(481,1950742800,6),(481,1964048400,5),(481,1982797200,6),(481,1995498000,5),(481,2014246800,6),(481,2026947600,5),(481,2045696400,6),(481,2058397200,5),(481,2077146000,6),(481,2090451600,5),(481,2108595600,6),(481,2121901200,5),(481,2140045200,6),(482,-2147483648,2),(482,-1693706400,1),(482,-1680483600,2),(482,-1663455600,3),(482,-1650150000,4),(482,-1632006000,3),(482,-1618700400,4),(482,-1577926800,2),(482,-1569711600,3),(482,-1555801200,4),(482,-938905200,3),(482,-857257200,4),(482,-844556400,3),(482,-828226800,4),(482,-812502000,3),(482,-796777200,4),(482,-781052400,3),(482,-780188400,4),(482,-757386000,2),(482,-748479600,3),(482,-733273200,4),(482,-717634800,3),(482,-701910000,4),(482,-684975600,3),(482,-670460400,4),(482,323823600,1),(482,338940000,2),(482,354675600,5),(482,370400400,6),(482,386125200,5),(482,401850000,6),(482,417574800,5),(482,433299600,6),(482,449024400,5),(482,465354000,6),(482,481078800,5),(482,496803600,6),(482,512528400,5),(482,528253200,6),(482,543978000,5),(482,559702800,6),(482,575427600,5),(482,591152400,6),(482,606877200,5),(482,622602000,6),(482,638326800,5),(482,654656400,6),(482,670381200,5),(482,686106000,6),(482,701830800,5),(482,717555600,6),(482,733280400,5),(482,749005200,6),(482,764730000,5),(482,780454800,6),(482,796179600,5),(482,811904400,6),(482,828234000,5),(482,846378000,6),(482,859683600,5),(482,877827600,6),(482,891133200,5),(482,909277200,6),(482,922582800,5),(482,941331600,6),(482,954032400,5),(482,972781200,6),(482,985482000,5),(482,1004230800,6),(482,1017536400,5),(482,1035680400,6),(482,1048986000,5),(482,1067130000,6),(482,1080435600,5),(482,1099184400,6),(482,1111885200,5),(482,1130634000,6),(482,1143334800,5),(482,1162083600,6),(482,1174784400,5),(482,1193533200,6),(482,1206838800,5),(482,1224982800,6),(482,1238288400,5),(482,1256432400,6),(482,1269738000,5),(482,1288486800,6),(482,1301187600,5),(482,1319936400,6),(482,1332637200,5),(482,1351386000,6),(482,1364691600,5),(482,1382835600,6),(482,1396141200,5),(482,1414285200,6),(482,1427590800,5),(482,1445734800,6),(482,1459040400,5),(482,1477789200,6),(482,1490490000,5),(482,1509238800,6),(482,1521939600,5),(482,1540688400,6),(482,1553994000,5),(482,1572138000,6),(482,1585443600,5),(482,1603587600,6),(482,1616893200,5),(482,1635642000,6),(482,1648342800,5),(482,1667091600,6),(482,1679792400,5),(482,1698541200,6),(482,1711846800,5),(482,1729990800,6),(482,1743296400,5),(482,1761440400,6),(482,1774746000,5),(482,1792890000,6),(482,1806195600,5),(482,1824944400,6),(482,1837645200,5),(482,1856394000,6),(482,1869094800,5),(482,1887843600,6),(482,1901149200,5),(482,1919293200,6),(482,1932598800,5),(482,1950742800,6),(482,1964048400,5),(482,1982797200,6),(482,1995498000,5),(482,2014246800,6),(482,2026947600,5),(482,2045696400,6),(482,2058397200,5),(482,2077146000,6),(482,2090451600,5),(482,2108595600,6),(482,2121901200,5),(482,2140045200,6),(483,-2147483648,1),(483,-1672536240,2),(483,-1585100136,3),(483,-1561251600,4),(483,-1553565600,3),(483,-928198800,5),(483,-900126000,8),(483,-857257200,6),(483,-844556400,7),(483,-828226800,6),(483,-812502000,7),(483,-802144800,5),(483,354920400,9),(483,370728000,5),(483,386456400,9),(483,402264000,5),(483,417992400,9),(483,433800000,5),(483,449614800,9),(483,465346800,10),(483,481071600,11),(483,496796400,10),(483,512521200,11),(483,528246000,10),(483,543970800,11),(483,559695600,10),(483,575420400,11),(483,591145200,10),(483,606870000,12),(483,622598400,13),(483,638323200,12),(483,654652800,13),(483,670377600,12),(483,686102400,13),(483,701827200,12),(483,717552000,13),(483,733276800,12),(483,749001600,13),(483,764726400,12),(483,780451200,13),(483,796176000,12),(483,811900800,13),(483,828230400,12),(483,846374400,13),(483,859680000,12),(483,877824000,13),(483,883605600,4),(483,891133200,14),(483,909277200,15),(483,922582800,14),(483,941331600,16),(483,1041372000,4),(483,1048986000,17),(483,1067130000,16),(483,1080435600,17),(483,1099184400,16),(483,1111885200,17),(483,1130634000,16),(483,1143334800,17),(483,1162083600,16),(483,1174784400,17),(483,1193533200,16),(483,1206838800,17),(483,1224982800,16),(483,1238288400,17),(483,1256432400,16),(483,1269738000,17),(483,1288486800,16),(483,1301187600,17),(483,1319936400,16),(483,1332637200,17),(483,1351386000,16),(483,1364691600,17),(483,1382835600,16),(483,1396141200,17),(483,1414285200,16),(483,1427590800,17),(483,1445734800,16),(483,1459040400,17),(483,1477789200,16),(483,1490490000,17),(483,1509238800,16),(483,1521939600,17),(483,1540688400,16),(483,1553994000,17),(483,1572138000,16),(483,1585443600,17),(483,1603587600,16),(483,1616893200,17),(483,1635642000,16),(483,1648342800,17),(483,1667091600,16),(483,1679792400,17),(483,1698541200,16),(483,1711846800,17),(483,1729990800,16),(483,1743296400,17),(483,1761440400,16),(483,1774746000,17),(483,1792890000,16),(483,1806195600,17),(483,1824944400,16),(483,1837645200,17),(483,1856394000,16),(483,1869094800,17),(483,1887843600,16),(483,1901149200,17),(483,1919293200,16),(483,1932598800,17),(483,1950742800,16),(483,1964048400,17),(483,1982797200,16),(483,1995498000,17),(483,2014246800,16),(483,2026947600,17),(483,2045696400,16),(483,2058397200,17),(483,2077146000,16),(483,2090451600,17),(483,2108595600,16),(483,2121901200,17),(483,2140045200,16),(484,-2147483648,0),(484,-1577761060,1),(484,-1247540400,2),(484,354916800,3),(484,370724400,2),(484,386452800,3),(484,402260400,2),(484,417988800,3),(484,433796400,2),(484,449611200,3),(484,465343200,4),(484,481068000,5),(484,496792800,4),(484,512517600,5),(484,528242400,4),(484,543967200,5),(484,559692000,4),(484,575416800,6),(484,591145200,7),(484,606870000,6),(484,622594800,7),(484,638319600,6),(484,654649200,7),(484,670374000,4),(484,701820000,6),(484,717548400,7),(484,733273200,6),(484,748998000,7),(484,764722800,6),(484,780447600,7),(484,796172400,6),(484,811897200,7),(484,828226800,6),(484,846370800,7),(484,859676400,6),(484,877820400,7),(484,891126000,6),(484,909270000,7),(484,922575600,6),(484,941324400,7),(484,954025200,6),(484,972774000,7),(484,985474800,6),(484,1004223600,7),(484,1017529200,6),(484,1035673200,7),(484,1048978800,6),(484,1067122800,7),(484,1080428400,6),(484,1099177200,7),(484,1111878000,6),(484,1130626800,7),(484,1143327600,6),(484,1162076400,7),(484,1174777200,6),(484,1193526000,7),(484,1206831600,6),(484,1224975600,7),(484,1238281200,6),(484,1256425200,7),(484,1269730800,6),(484,1288479600,7),(484,1301180400,4),(484,1414274400,7),(484,1540681200,4),(484,1609020000,7),(484,2147483647,7),(485,-2147483648,1),(485,-1717032240,3),(485,-1693706400,2),(485,-1680483600,3),(485,-1663455600,4),(485,-1650150000,5),(485,-1632006000,4),(485,-1618700400,8),(485,-1600473600,6),(485,-1587168000,7),(485,-1501725600,3),(485,-931734000,2),(485,-857257200,5),(485,-844556400,4),(485,-828226800,5),(485,-812502000,4),(485,-796874400,2),(485,-796608000,3),(485,-778726800,2),(485,-762660000,3),(485,-748486800,4),(485,-733273200,5),(485,-715215600,4),(485,-701910000,5),(485,-684975600,4),(485,-670460400,5),(485,-654130800,4),(485,-639010800,5),(485,-397094400,4),(485,-386812800,5),(485,-371088000,4),(485,-355363200,5),(485,-334195200,4),(485,-323308800,5),(485,-307584000,4),(485,-291859200,5),(485,-271296000,4),(485,-260409600,5),(485,-239846400,4),(485,-228960000,5),(485,-208396800,4),(485,-197510400,5),(485,-176342400,4),(485,-166060800,5),(485,220921200,3),(485,228873600,4),(485,243993600,5),(485,260323200,4),(485,276048000,5),(485,291772800,4),(485,307497600,5),(485,323827200,4),(485,338947200,5),(485,354672000,4),(485,370396800,5),(485,386121600,4),(485,401846400,5),(485,417571200,4),(485,433296000,5),(485,449020800,4),(485,465350400,5),(485,481075200,4),(485,496800000,5),(485,512524800,4),(485,528249600,5),(485,543974400,4),(485,559699200,5),(485,567990000,3),(485,575427600,9),(485,591152400,10),(485,606877200,9),(485,622602000,10),(485,638326800,9),(485,654656400,10),(485,670381200,9),(485,686106000,10),(485,701830800,9),(485,717555600,10),(485,733280400,9),(485,749005200,10),(485,764730000,9),(485,780454800,10),(485,796179600,9),(485,811904400,10),(485,828234000,9),(485,846378000,10),(485,859683600,9),(485,877827600,10),(485,891133200,9),(485,909277200,10),(485,922582800,9),(485,941331600,10),(485,954032400,9),(485,972781200,10),(485,985482000,9),(485,1004230800,10),(485,1017536400,9),(485,1035680400,10),(485,1048986000,9),(485,1067130000,10),(485,1080435600,9),(485,1099184400,10),(485,1111885200,9),(485,1130634000,10),(485,1143334800,9),(485,1162083600,10),(485,1174784400,9),(485,1193533200,10),(485,1206838800,9),(485,1224982800,10),(485,1238288400,9),(485,1256432400,10),(485,1269738000,9),(485,1288486800,10),(485,1301187600,9),(485,1319936400,10),(485,1332637200,9),(485,1351386000,10),(485,1364691600,9),(485,1382835600,10),(485,1396141200,9),(485,1414285200,10),(485,1427590800,9),(485,1445734800,10),(485,1459040400,9),(485,1477789200,10),(485,1490490000,9),(485,1509238800,10),(485,1521939600,9),(485,1540688400,10),(485,1553994000,9),(485,1572138000,10),(485,1585443600,9),(485,1603587600,10),(485,1616893200,9),(485,1635642000,10),(485,1648342800,9),(485,1667091600,10),(485,1679792400,9),(485,1698541200,10),(485,1711846800,9),(485,1729990800,10),(485,1743296400,9),(485,1761440400,10),(485,1774746000,9),(485,1792890000,10),(485,1806195600,9),(485,1824944400,10),(485,1837645200,9),(485,1856394000,10),(485,1869094800,9),(485,1887843600,10),(485,1901149200,9),(485,1919293200,10),(485,1932598800,9),(485,1950742800,10),(485,1964048400,9),(485,1982797200,10),(485,1995498000,9),(485,2014246800,10),(485,2026947600,9),(485,2045696400,10),(485,2058397200,9),(485,2077146000,10),(485,2090451600,9),(485,2108595600,10),(485,2121901200,9),(485,2140045200,10),(486,-2147483648,1),(486,-905824800,4),(486,-857257200,2),(486,-844556400,3),(486,-828226800,2),(486,-812502000,3),(486,-796777200,2),(486,-788922000,1),(486,-777942000,3),(486,-766623600,2),(486,407199600,1),(486,417574800,5),(486,433299600,6),(486,449024400,5),(486,465354000,6),(486,481078800,5),(486,496803600,6),(486,512528400,5),(486,528253200,6),(486,543978000,5),(486,559702800,6),(486,575427600,5),(486,591152400,6),(486,606877200,5),(486,622602000,6),(486,638326800,5),(486,654656400,6),(486,670381200,5),(486,686106000,6),(486,701830800,5),(486,717555600,6),(486,733280400,5),(486,749005200,6),(486,764730000,5),(486,780454800,6),(486,796179600,5),(486,811904400,6),(486,828234000,5),(486,846378000,6),(486,859683600,5),(486,877827600,6),(486,891133200,5),(486,909277200,6),(486,922582800,5),(486,941331600,6),(486,954032400,5),(486,972781200,6),(486,985482000,5),(486,1004230800,6),(486,1017536400,5),(486,1035680400,6),(486,1048986000,5),(486,1067130000,6),(486,1080435600,5),(486,1099184400,6),(486,1111885200,5),(486,1130634000,6),(486,1143334800,5),(486,1162083600,6),(486,1174784400,5),(486,1193533200,6),(486,1206838800,5),(486,1224982800,6),(486,1238288400,5),(486,1256432400,6),(486,1269738000,5),(486,1288486800,6),(486,1301187600,5),(486,1319936400,6),(486,1332637200,5),(486,1351386000,6),(486,1364691600,5),(486,1382835600,6),(486,1396141200,5),(486,1414285200,6),(486,1427590800,5),(486,1445734800,6),(486,1459040400,5),(486,1477789200,6),(486,1490490000,5),(486,1509238800,6),(486,1521939600,5),(486,1540688400,6),(486,1553994000,5),(486,1572138000,6),(486,1585443600,5),(486,1603587600,6),(486,1616893200,5),(486,1635642000,6),(486,1648342800,5),(486,1667091600,6),(486,1679792400,5),(486,1698541200,6),(486,1711846800,5),(486,1729990800,6),(486,1743296400,5),(486,1761440400,6),(486,1774746000,5),(486,1792890000,6),(486,1806195600,5),(486,1824944400,6),(486,1837645200,5),(486,1856394000,6),(486,1869094800,5),(486,1887843600,6),(486,1901149200,5),(486,1919293200,6),(486,1932598800,5),(486,1950742800,6),(486,1964048400,5),(486,1982797200,6),(486,1995498000,5),(486,2014246800,6),(486,2026947600,5),(486,2045696400,6),(486,2058397200,5),(486,2077146000,6),(486,2090451600,5),(486,2108595600,6),(486,2121901200,5),(486,2140045200,6),(487,-2147483648,1),(487,-1441160400,2),(487,-1247536800,3),(487,-894769200,6),(487,-857257200,4),(487,-844556400,5),(487,-828226800,4),(487,-826419600,3),(487,354920400,7),(487,370728000,3),(487,386456400,7),(487,402264000,3),(487,417992400,7),(487,433800000,3),(487,449614800,7),(487,465346800,8),(487,481071600,9),(487,496796400,8),(487,512521200,9),(487,528246000,8),(487,543970800,9),(487,559695600,8),(487,575420400,9),(487,591145200,8),(487,606870000,9),(487,622594800,8),(487,638319600,9),(487,654649200,8),(487,670374000,10),(487,686091600,2),(487,701820000,10),(487,717541200,2),(487,733269600,10),(487,748990800,2),(487,764719200,10),(487,780440400,2),(487,796179600,11),(487,811904400,12),(487,828234000,11),(487,846378000,12),(487,859683600,11),(487,877827600,12),(487,891133200,11),(487,909277200,12),(487,922582800,11),(487,941331600,12),(487,954032400,11),(487,972781200,12),(487,985482000,11),(487,1004230800,12),(487,1017536400,11),(487,1035680400,12),(487,1048986000,11),(487,1067130000,12),(487,1080435600,11),(487,1099184400,12),(487,1111885200,11),(487,1130634000,12),(487,1143334800,11),(487,1162083600,12),(487,1174784400,11),(487,1193533200,12),(487,1206838800,11),(487,1224982800,12),(487,1238288400,11),(487,1256432400,12),(487,1269738000,11),(487,1288486800,12),(487,1301187600,11),(487,1319936400,12),(487,1332637200,11),(487,1351386000,12),(487,1364691600,11),(487,1382835600,12),(487,1396141200,11),(487,1414285200,12),(487,1427590800,11),(487,1445734800,12),(487,1459040400,11),(487,1477789200,12),(487,1490490000,11),(487,1509238800,12),(487,1521939600,11),(487,1540688400,12),(487,1553994000,11),(487,1572138000,12),(487,1585443600,11),(487,1603587600,12),(487,1616893200,11),(487,1635642000,12),(487,1648342800,11),(487,1667091600,12),(487,1679792400,11),(487,1698541200,12),(487,1711846800,11),(487,1729990800,12),(487,1743296400,11),(487,1761440400,12),(487,1774746000,11),(487,1792890000,12),(487,1806195600,11),(487,1824944400,12),(487,1837645200,11),(487,1856394000,12),(487,1869094800,11),(487,1887843600,12),(487,1901149200,11),(487,1919293200,12),(487,1932598800,11),(487,1950742800,12),(487,1964048400,11),(487,1982797200,12),(487,1995498000,11),(487,2014246800,12),(487,2026947600,11),(487,2045696400,12),(487,2058397200,11),(487,2077146000,12),(487,2090451600,11),(487,2108595600,12),(487,2121901200,11),(487,2140045200,12),(488,-2147483648,2),(488,-904435200,1),(488,-891129600,2),(488,-872985600,1),(488,-859680000,2),(488,354675600,3),(488,370400400,4),(488,386125200,3),(488,401850000,4),(488,417574800,3),(488,433299600,4),(488,449024400,3),(488,465354000,4),(488,481078800,3),(488,496803600,4),(488,512528400,3),(488,528253200,4),(488,543978000,3),(488,559702800,4),(488,575427600,3),(488,591152400,4),(488,606877200,3),(488,622602000,4),(488,638326800,3),(488,654656400,4),(488,670381200,3),(488,686106000,4),(488,701830800,3),(488,717555600,4),(488,733280400,3),(488,749005200,4),(488,764730000,3),(488,780454800,4),(488,796179600,3),(488,811904400,4),(488,828234000,3),(488,846378000,4),(488,859683600,3),(488,877827600,4),(488,891133200,3),(488,909277200,4),(488,922582800,3),(488,941331600,4),(488,954032400,3),(488,972781200,4),(488,985482000,3),(488,1004230800,4),(488,1017536400,3),(488,1035680400,4),(488,1048986000,3),(488,1067130000,4),(488,1080435600,3),(488,1099184400,4),(488,1111885200,3),(488,1130634000,4),(488,1143334800,3),(488,1162083600,4),(488,1174784400,3),(488,1193533200,4),(488,1206838800,3),(488,1224982800,4),(488,1238288400,3),(488,1256432400,4),(488,1269738000,3),(488,1288486800,4),(488,1301187600,3),(488,1319936400,4),(488,1332637200,3),(488,1351386000,4),(488,1364691600,3),(488,1382835600,4),(488,1396141200,3),(488,1414285200,4),(488,1427590800,3),(488,1445734800,4),(488,1459040400,3),(488,1477789200,4),(488,1490490000,3),(488,1509238800,4),(488,1521939600,3),(488,1540688400,4),(488,1553994000,3),(488,1572138000,4),(488,1585443600,3),(488,1603587600,4),(488,1616893200,3),(488,1635642000,4),(488,1648342800,3),(488,1667091600,4),(488,1679792400,3),(488,1698541200,4),(488,1711846800,3),(488,1729990800,4),(488,1743296400,3),(488,1761440400,4),(488,1774746000,3),(488,1792890000,4),(488,1806195600,3),(488,1824944400,4),(488,1837645200,3),(488,1856394000,4),(488,1869094800,3),(488,1887843600,4),(488,1901149200,3),(488,1919293200,4),(488,1932598800,3),(488,1950742800,4),(488,1964048400,3),(488,1982797200,4),(488,1995498000,3),(488,2014246800,4),(488,2026947600,3),(488,2045696400,4),(488,2058397200,3),(488,2077146000,4),(488,2090451600,3),(488,2108595600,4),(488,2121901200,3),(488,2140045200,4),(489,-2147483648,0),(489,2147483647,0),(490,-2147483648,2),(490,-1691964000,1),(490,-1680472800,2),(490,-1664143200,1),(490,-1650146400,2),(490,-1633903200,1),(490,-1617487200,2),(490,-1601848800,1),(490,-1586037600,2),(490,-1570399200,1),(490,-1552168800,2),(490,-1538344800,1),(490,-1522533600,2),(490,-1507500000,1),(490,-1490565600,2),(490,-1473631200,1),(490,-1460930400,2),(490,-1442786400,1),(490,-1428876000,2),(490,-1410732000,1),(490,-1396216800,2),(490,-1379282400,1),(490,-1364767200,2),(490,-1348437600,1),(490,-1333317600,2),(490,-1315778400,1),(490,-1301263200,2),(490,-1284328800,1),(490,-1269813600,2),(490,-1253484000,1),(490,-1238364000,2),(490,-1221429600,1),(490,-1206914400,2),(490,-1189980000,1),(490,-1175464800,2),(490,-1159135200,1),(490,-1143410400,2),(490,-1126476000,1),(490,-1111960800,2),(490,-1095631200,1),(490,-1080511200,2),(490,-1063576800,1),(490,-1049061600,2),(490,-1032127200,1),(490,-1017612000,2),(490,-1001282400,1),(490,-986162400,2),(490,-969228000,1),(490,-950479200,2),(490,-942012000,1),(490,-904518000,3),(490,-896050800,1),(490,-875487600,3),(490,-864601200,1),(490,-844038000,3),(490,-832546800,1),(490,-812588400,3),(490,-798073200,1),(490,-781052400,3),(490,-772066800,1),(490,-764805600,2),(490,-748476000,1),(490,-733356000,2),(490,-719445600,1),(490,-717030000,3),(490,-706748400,1),(490,-699487200,2),(490,-687996000,1),(490,-668037600,2),(490,-654732000,1),(490,-636588000,2),(490,-622072800,1),(490,-605743200,2),(490,-590623200,1),(490,-574293600,2),(490,-558568800,1),(490,-542239200,2),(490,-527119200,1),(490,-512604000,2),(490,-496274400,1),(490,-481154400,2),(490,-464220000,1),(490,-449704800,2),(490,-432165600,1),(490,-417650400,2),(490,-401320800,1),(490,-386200800,2),(490,-369266400,1),(490,-354751200,2),(490,-337816800,1),(490,-323301600,2),(490,-306972000,1),(490,-291852000,2),(490,-276732000,1),(490,-257983200,2),(490,-245282400,1),(490,-226533600,2),(490,-213228000,1),(490,-195084000,2),(490,-182383200,1),(490,-163634400,2),(490,-150933600,1),(490,-132184800,2),(490,-119484000,1),(490,-100735200,2),(490,-88034400,1),(490,-68680800,2),(490,-59004000,1),(490,-37242000,4),(490,57722400,6),(490,69818400,1),(490,89172000,2),(490,101268000,1),(490,120621600,2),(490,132717600,1),(490,152071200,2),(490,164167200,1),(490,183520800,2),(490,196221600,1),(490,214970400,2),(490,227671200,1),(490,246420000,2),(490,259120800,1),(490,278474400,2),(490,290570400,1),(490,309924000,2),(490,322020000,1),(490,341373600,2),(490,354675600,5),(490,372819600,6),(490,386125200,5),(490,404269200,6),(490,417574800,5),(490,435718800,6),(490,449024400,5),(490,467773200,6),(490,481078800,5),(490,499222800,6),(490,512528400,5),(490,530672400,6),(490,543978000,5),(490,562122000,6),(490,575427600,5),(490,593571600,6),(490,606877200,5),(490,625626000,6),(490,638326800,5),(490,657075600,6),(490,670381200,5),(490,688525200,6),(490,701830800,5),(490,719974800,6),(490,733280400,5),(490,751424400,6),(490,764730000,5),(490,782874000,6),(490,796179600,5),(490,814323600,6),(490,820454400,7),(490,828234000,5),(490,846378000,6),(490,859683600,5),(490,877827600,6),(490,891133200,5),(490,909277200,6),(490,922582800,5),(490,941331600,6),(490,954032400,5),(490,972781200,6),(490,985482000,5),(490,1004230800,6),(490,1017536400,5),(490,1035680400,6),(490,1048986000,5),(490,1067130000,6),(490,1080435600,5),(490,1099184400,6),(490,1111885200,5),(490,1130634000,6),(490,1143334800,5),(490,1162083600,6),(490,1174784400,5),(490,1193533200,6),(490,1206838800,5),(490,1224982800,6),(490,1238288400,5),(490,1256432400,6),(490,1269738000,5),(490,1288486800,6),(490,1301187600,5),(490,1319936400,6),(490,1332637200,5),(490,1351386000,6),(490,1364691600,5),(490,1382835600,6),(490,1396141200,5),(490,1414285200,6),(490,1427590800,5),(490,1445734800,6),(490,1459040400,5),(490,1477789200,6),(490,1490490000,5),(490,1509238800,6),(490,1521939600,5),(490,1540688400,6),(490,1553994000,5),(490,1572138000,6),(490,1585443600,5),(490,1603587600,6),(490,1616893200,5),(490,1635642000,6),(490,1648342800,5),(490,1667091600,6),(490,1679792400,5),(490,1698541200,6),(490,1711846800,5),(490,1729990800,6),(490,1743296400,5),(490,1761440400,6),(490,1774746000,5),(490,1792890000,6),(490,1806195600,5),(490,1824944400,6),(490,1837645200,5),(490,1856394000,6),(490,1869094800,5),(490,1887843600,6),(490,1901149200,5),(490,1919293200,6),(490,1932598800,5),(490,1950742800,6),(490,1964048400,5),(490,1982797200,6),(490,1995498000,5),(490,2014246800,6),(490,2026947600,5),(490,2045696400,6),(490,2058397200,5),(490,2077146000,6),(490,2090451600,5),(490,2108595600,6),(490,2121901200,5),(490,2140045200,6),(491,-2147483648,2),(491,-1691964000,1),(491,-1680472800,2),(491,-1664143200,1),(491,-1650146400,2),(491,-1633903200,1),(491,-1617487200,2),(491,-1601848800,1),(491,-1586037600,2),(491,-1570399200,1),(491,-1552168800,2),(491,-1538344800,1),(491,-1522533600,2),(491,-1507500000,1),(491,-1490565600,2),(491,-1473631200,1),(491,-1460930400,2),(491,-1442786400,1),(491,-1428876000,2),(491,-1410732000,1),(491,-1396216800,2),(491,-1379282400,1),(491,-1364767200,2),(491,-1348437600,1),(491,-1333317600,2),(491,-1315778400,1),(491,-1301263200,2),(491,-1284328800,1),(491,-1269813600,2),(491,-1253484000,1),(491,-1238364000,2),(491,-1221429600,1),(491,-1206914400,2),(491,-1189980000,1),(491,-1175464800,2),(491,-1159135200,1),(491,-1143410400,2),(491,-1126476000,1),(491,-1111960800,2),(491,-1095631200,1),(491,-1080511200,2),(491,-1063576800,1),(491,-1049061600,2),(491,-1032127200,1),(491,-1017612000,2),(491,-1001282400,1),(491,-986162400,2),(491,-969228000,1),(491,-950479200,2),(491,-942012000,1),(491,-904518000,3),(491,-896050800,1),(491,-875487600,3),(491,-864601200,1),(491,-844038000,3),(491,-832546800,1),(491,-812588400,3),(491,-798073200,1),(491,-781052400,3),(491,-772066800,1),(491,-764805600,2),(491,-748476000,1),(491,-733356000,2),(491,-719445600,1),(491,-717030000,3),(491,-706748400,1),(491,-699487200,2),(491,-687996000,1),(491,-668037600,2),(491,-654732000,1),(491,-636588000,2),(491,-622072800,1),(491,-605743200,2),(491,-590623200,1),(491,-574293600,2),(491,-558568800,1),(491,-542239200,2),(491,-527119200,1),(491,-512604000,2),(491,-496274400,1),(491,-481154400,2),(491,-464220000,1),(491,-449704800,2),(491,-432165600,1),(491,-417650400,2),(491,-401320800,1),(491,-386200800,2),(491,-369266400,1),(491,-354751200,2),(491,-337816800,1),(491,-323301600,2),(491,-306972000,1),(491,-291852000,2),(491,-276732000,1),(491,-257983200,2),(491,-245282400,1),(491,-226533600,2),(491,-213228000,1),(491,-195084000,2),(491,-182383200,1),(491,-163634400,2),(491,-150933600,1),(491,-132184800,2),(491,-119484000,1),(491,-100735200,2),(491,-88034400,1),(491,-68680800,2),(491,-59004000,1),(491,-37242000,4),(491,57722400,6),(491,69818400,1),(491,89172000,2),(491,101268000,1),(491,120621600,2),(491,132717600,1),(491,152071200,2),(491,164167200,1),(491,183520800,2),(491,196221600,1),(491,214970400,2),(491,227671200,1),(491,246420000,2),(491,259120800,1),(491,278474400,2),(491,290570400,1),(491,309924000,2),(491,322020000,1),(491,341373600,2),(491,354675600,5),(491,372819600,6),(491,386125200,5),(491,404269200,6),(491,417574800,5),(491,435718800,6),(491,449024400,5),(491,467773200,6),(491,481078800,5),(491,499222800,6),(491,512528400,5),(491,530672400,6),(491,543978000,5),(491,562122000,6),(491,575427600,5),(491,593571600,6),(491,606877200,5),(491,625626000,6),(491,638326800,5),(491,657075600,6),(491,670381200,5),(491,688525200,6),(491,701830800,5),(491,719974800,6),(491,733280400,5),(491,751424400,6),(491,764730000,5),(491,782874000,6),(491,796179600,5),(491,814323600,6),(491,820454400,7),(491,828234000,5),(491,846378000,6),(491,859683600,5),(491,877827600,6),(491,891133200,5),(491,909277200,6),(491,922582800,5),(491,941331600,6),(491,954032400,5),(491,972781200,6),(491,985482000,5),(491,1004230800,6),(491,1017536400,5),(491,1035680400,6),(491,1048986000,5),(491,1067130000,6),(491,1080435600,5),(491,1099184400,6),(491,1111885200,5),(491,1130634000,6),(491,1143334800,5),(491,1162083600,6),(491,1174784400,5),(491,1193533200,6),(491,1206838800,5),(491,1224982800,6),(491,1238288400,5),(491,1256432400,6),(491,1269738000,5),(491,1288486800,6),(491,1301187600,5),(491,1319936400,6),(491,1332637200,5),(491,1351386000,6),(491,1364691600,5),(491,1382835600,6),(491,1396141200,5),(491,1414285200,6),(491,1427590800,5),(491,1445734800,6),(491,1459040400,5),(491,1477789200,6),(491,1490490000,5),(491,1509238800,6),(491,1521939600,5),(491,1540688400,6),(491,1553994000,5),(491,1572138000,6),(491,1585443600,5),(491,1603587600,6),(491,1616893200,5),(491,1635642000,6),(491,1648342800,5),(491,1667091600,6),(491,1679792400,5),(491,1698541200,6),(491,1711846800,5),(491,1729990800,6),(491,1743296400,5),(491,1761440400,6),(491,1774746000,5),(491,1792890000,6),(491,1806195600,5),(491,1824944400,6),(491,1837645200,5),(491,1856394000,6),(491,1869094800,5),(491,1887843600,6),(491,1901149200,5),(491,1919293200,6),(491,1932598800,5),(491,1950742800,6),(491,1964048400,5),(491,1982797200,6),(491,1995498000,5),(491,2014246800,6),(491,2026947600,5),(491,2045696400,6),(491,2058397200,5),(491,2077146000,6),(491,2090451600,5),(491,2108595600,6),(491,2121901200,5),(491,2140045200,6),(498,-2147483648,0),(498,-2056690800,1),(498,-900910800,2),(498,-891579600,3),(498,-884248200,4),(498,-761209200,1),(498,-747907200,2),(498,-728541000,5),(498,-717049800,6),(498,-697091400,5),(498,-683785800,6),(498,-668061000,5),(498,-654755400,2),(498,-636611400,5),(498,-623305800,2),(498,-605161800,5),(498,-591856200,2),(498,-573712200,5),(498,-559801800,2),(498,-541657800,5),(498,-528352200,2),(498,-510211800,1),(498,-498112200,2),(498,-478762200,1),(498,-466662600,2),(498,-446707800,1),(498,-435213000,2),(498,-415258200,1),(498,-403158600,2),(498,-383808600,1),(498,-371709000,2),(498,-352359000,1),(498,-340259400,2),(498,-320909400,1),(498,-308809800,2),(498,-288855000,1),(498,-277360200,2),(498,-257405400,1),(498,-245910600,2),(498,-225955800,1),(498,-213856200,2),(498,-194506200,1),(498,-182406600,2),(498,-163056600,1),(498,-148537800,2),(498,-132816600,1),(498,-117088200,2),(498,-101367000,1),(498,-85638600,2),(498,-69312600,1),(498,-53584200,2),(498,-37863000,1),(498,-22134600,2),(498,-6413400,1),(498,9315000,2),(498,25036200,1),(498,40764600,2),(498,56485800,1),(498,72214200,2),(498,88540200,1),(498,104268600,2),(498,119989800,1),(498,126041400,2),(498,151439400,1),(498,167167800,2),(498,182889000,1),(498,198617400,2),(498,214338600,1),(498,295385400,2),(498,309292200,1),(499,-2147483648,0),(499,-1956609120,2),(499,-1668211200,1),(499,-1647212400,2),(499,-1636675200,1),(499,-1613430000,2),(499,-1605139200,1),(499,-1581894000,2),(499,-1539561600,1),(499,-1531350000,2),(499,-968025600,1),(499,-952293600,2),(499,-942008400,1),(499,-920239200,3),(499,-909957600,4),(499,-888789600,3),(499,-877903200,4),(499,-857944800,3),(499,-846453600,4),(499,-826495200,3),(499,-815004000,4),(499,-795045600,3),(499,-783554400,4),(499,-762991200,3),(499,-752104800,4),(499,-731541600,3),(499,-717631200,4),(499,-700092000,3),(499,-686181600,4),(499,-668642400,3),(499,-654732000,4),(499,-636588000,3),(499,-623282400,4),(499,-605743200,3),(499,-591832800,4),(499,-573688800,3),(499,-559778400,4),(499,-542239200,3),(499,-528328800,4),(499,-510789600,3),(499,-496879200,4),(499,-479340000,3),(499,-465429600,4),(499,-447890400,3),(499,-433980000,4),(499,-415836000,3),(499,-401925600,4),(499,-384386400,3),(499,-370476000,4),(499,-352936800,3),(499,-339026400,4),(499,-321487200,3),(499,-307576800,4),(499,-290037600,3),(499,-276127200,4),(499,-258588000,3),(499,-244677600,4),(499,-226533600,3),(499,-212623200,4),(499,-195084000,3),(499,-181173600,4),(499,-163634400,3),(499,-149724000,4),(499,-132184800,3),(499,-118274400,4),(499,-100735200,3),(499,-86824800,4),(499,-68680800,3),(499,-54770400,5),(500,-2147483648,0),(500,-1946168836,1),(500,-1309746600,2),(500,-1261969200,1),(500,-1041388200,3),(500,-865305900,2),(501,-2147483648,0),(501,-1988167780,1),(501,820436400,2),(501,2147483647,2),(502,-2147483648,1),(502,2147483647,1),(503,-2147483648,1),(503,2147483647,1),(504,-2147483648,0),(504,-1946168836,1),(504,-1309746600,2),(504,-1261969200,1),(504,-1041388200,3),(504,-865305900,2),(505,-2147483648,0),(505,-631152000,1),(505,2147483647,1),(506,-2147483648,0),(506,-1988163708,1),(506,2147483647,1),(507,-2147483648,1),(507,-315636840,2),(507,2147483647,2),(508,-2147483648,0),(508,-1988164200,2),(508,403041600,1),(508,417034800,2),(508,1224972000,1),(508,1238274000,2),(508,2147483647,2),(509,-2147483648,0),(509,-1946168836,1),(509,-1309746600,2),(509,-1261969200,1),(509,-1041388200,3),(509,-865305900,2),(510,-2147483648,0),(510,-1848886912,1),(510,2147483647,1),(511,-2147483648,0),(511,-1704165944,1),(511,-757394744,2),(511,247177800,4),(511,259272000,3),(511,277758000,4),(511,283982400,2),(511,290809800,5),(511,306531000,2),(511,322432200,5),(511,338499000,2),(511,673216200,5),(511,685481400,2),(511,701209800,5),(511,717103800,2),(511,732745800,5),(511,748639800,2),(511,764281800,5),(511,780175800,2),(511,795817800,5),(511,811711800,2),(511,827353800,5),(511,843247800,2),(511,858976200,5),(511,874870200,2),(511,890512200,5),(511,906406200,2),(511,922048200,5),(511,937942200,2),(511,953584200,5),(511,969478200,2),(511,985206600,5),(511,1001100600,2),(511,1016742600,5),(511,1032636600,2),(511,1048278600,5),(511,1064172600,2),(511,1079814600,5),(511,1095708600,2),(511,1111437000,5),(511,1127331000,2),(511,1206045000,5),(511,1221939000,2),(511,1237667400,5),(511,1253561400,2),(511,1269203400,5),(511,1285097400,2),(511,1300739400,5),(511,1316633400,2),(511,1332275400,5),(511,1348169400,2),(511,1363897800,5),(511,1379791800,2),(511,1395433800,5),(511,1411327800,2),(511,1426969800,5),(511,1442863800,2),(511,1458505800,5),(511,1474399800,2),(511,1490128200,5),(511,1506022200,2),(511,1521664200,5),(511,1537558200,2),(511,1553200200,5),(511,1569094200,2),(511,1584736200,5),(511,1600630200,2),(511,1616358600,5),(511,1632252600,2),(511,1647894600,5),(511,1663788600,2),(511,1679430600,5),(511,1695324600,2),(511,1710966600,5),(511,1726860600,2),(511,1742589000,5),(511,1758483000,2),(511,1774125000,5),(511,1790019000,2),(511,1805661000,5),(511,1821555000,2),(511,1837197000,5),(511,1853091000,2),(511,1868733000,5),(511,1884627000,2),(511,1900355400,5),(511,1916249400,2),(511,1931891400,5),(511,1947785400,2),(511,1963427400,5),(511,1979321400,2),(511,1994963400,5),(511,2010857400,2),(511,2026585800,5),(511,2042479800,2),(511,2058121800,5),(511,2074015800,2),(511,2089657800,5),(511,2105551800,2),(511,2121193800,5),(511,2137087800,2),(512,-2147483648,1),(512,-1641003640,6),(512,-933638400,2),(512,-923097600,3),(512,-919036800,2),(512,-857347200,3),(512,-844300800,2),(512,-825811200,3),(512,-812678400,2),(512,-794188800,3),(512,-779846400,2),(512,-762652800,3),(512,-748310400,2),(512,-731116800,3),(512,-681955200,4),(512,-673228800,2),(512,-667958400,3),(512,-652320000,2),(512,-636422400,3),(512,-622080000,2),(512,-608947200,3),(512,-591840000,2),(512,-572486400,3),(512,-558576000,2),(512,-542851200,3),(512,-527731200,2),(512,-514425600,3),(512,-490838400,2),(512,-482976000,3),(512,-459388800,2),(512,-451526400,3),(512,-428544000,2),(512,-418262400,3),(512,-400118400,2),(512,-387417600,3),(512,142380000,5),(512,150843600,6),(512,167176800,5),(512,178664400,6),(512,334101600,7),(512,337730400,8),(512,452642400,7),(512,462319200,8),(512,482277600,5),(512,494370000,6),(512,516751200,5),(512,526424400,6),(512,545436000,5),(512,558478800,6),(512,576626400,5),(512,589323600,6),(512,609890400,5),(512,620773200,6),(512,638316000,5),(512,651618000,6),(512,669765600,5),(512,683672400,6),(512,701820000,5),(512,715726800,6),(512,733701600,5),(512,747176400,6),(512,765151200,5),(512,778021200,6),(512,796600800,5),(512,810075600,6),(512,826840800,5),(512,842821200,6),(512,858895200,5),(512,874184400,6),(512,890344800,5),(512,905029200,6),(512,923011200,5),(512,936313200,6),(512,955670400,5),(512,970783200,6),(512,986770800,5),(512,1001282400,6),(512,1017356400,5),(512,1033941600,6),(512,1048806000,5),(512,1065132000,6),(512,1081292400,5),(512,1095804000,6),(512,1112313600,5),(512,1128812400,6),(512,1143763200,5),(512,1159657200,6),(512,1175212800,5),(512,1189897200,6),(512,1206662400,5),(512,1223161200,6),(512,1238112000,5),(512,1254006000,6),(512,1269561600,5),(512,1284246000,6),(512,1301616000,5),(512,1317510000,6),(512,1333065600,5),(512,1348354800,6),(512,1364515200,5),(512,1382828400,6),(512,1395964800,5),(512,1414278000,6),(512,1427414400,5),(512,1445727600,6),(512,1458864000,5),(512,1477782000,6),(512,1490313600,5),(512,1509231600,6),(512,1521763200,5),(512,1540681200,6),(512,1553817600,5),(512,1572130800,6),(512,1585267200,5),(512,1603580400,6),(512,1616716800,5),(512,1635634800,6),(512,1648166400,5),(512,1667084400,6),(512,1679616000,5),(512,1698534000,6),(512,1711670400,5),(512,1729983600,6),(512,1743120000,5),(512,1761433200,6),(512,1774569600,5),(512,1792882800,6),(512,1806019200,5),(512,1824937200,6),(512,1837468800,5),(512,1856386800,6),(512,1868918400,5),(512,1887836400,6),(512,1900972800,5),(512,1919286000,6),(512,1932422400,5),(512,1950735600,6),(512,1963872000,5),(512,1982790000,6),(512,1995321600,5),(512,2014239600,6),(512,2026771200,5),(512,2045689200,6),(512,2058220800,5),(512,2077138800,6),(512,2090275200,5),(512,2108588400,6),(512,2121724800,5),(512,2140038000,6),(513,-2147483648,1),(513,-1827687170,2),(513,126687600,3),(513,152085600,2),(513,162370800,3),(513,183535200,2),(513,199263600,3),(513,215589600,2),(513,230713200,3),(513,247039200,2),(513,262767600,3),(513,278488800,2),(513,294217200,3),(513,309938400,2),(513,325666800,3),(513,341388000,2),(513,357116400,3),(513,372837600,2),(513,388566000,3),(513,404892000,2),(513,420015600,3),(513,436341600,2),(514,-2147483648,3),(514,-683802000,1),(514,-672310800,2),(514,-654771600,1),(514,-640861200,2),(514,-620298000,1),(514,-609411600,2),(514,-588848400,1),(514,-577962000,2),(515,-2147483648,1),(515,-1041418800,2),(515,-907408800,3),(515,-817462800,1),(515,-7988400,4),(515,745934400,5),(515,2147483647,5),(516,-2147483648,0),(516,-1577926364,2),(516,-574902000,1),(516,-568087200,2),(516,-512175600,1),(516,-504928800,2),(516,-449888400,1),(516,-441856800,2),(516,-347158800,3),(516,378684000,2),(516,386463600,1),(516,402271200,2),(516,417999600,1),(516,433807200,2),(516,449622000,1),(516,465429600,2),(516,481590000,1),(516,496965600,2),(516,512953200,1),(516,528674400,2),(516,544230000,1),(516,560037600,2),(516,575852400,1),(516,591660000,2),(516,607388400,1),(516,623196000,2),(516,641775600,3),(516,844034400,2),(516,860108400,1),(516,875916000,3),(516,1352505600,2),(516,1364515200,1),(516,1382659200,3),(517,-1693706400,0),(517,-1680483600,1),(517,-1663455600,2),(517,-1650150000,3),(517,-1632006000,2),(517,-1618700400,3),(517,-938905200,2),(517,-857257200,3),(517,-844556400,2),(517,-828226800,3),(517,-812502000,2),(517,-796777200,3),(517,-781052400,2),(517,-766623600,3),(517,228877200,2),(517,243997200,3),(517,260326800,2),(517,276051600,3),(517,291776400,2),(517,307501200,3),(517,323830800,2),(517,338950800,3),(517,354675600,2),(517,370400400,3),(517,386125200,2),(517,401850000,3),(517,417574800,2),(517,433299600,3),(517,449024400,2),(517,465354000,3),(517,481078800,2),(517,496803600,3),(517,512528400,2),(517,528253200,3),(517,543978000,2),(517,559702800,3),(517,575427600,2),(517,591152400,3),(517,606877200,2),(517,622602000,3),(517,638326800,2),(517,654656400,3),(517,670381200,2),(517,686106000,3),(517,701830800,2),(517,717555600,3),(517,733280400,2),(517,749005200,3),(517,764730000,2),(517,780454800,3),(517,796179600,2),(517,811904400,3),(517,828234000,2),(517,846378000,3),(517,859683600,2),(517,877827600,3),(517,891133200,2),(517,909277200,3),(517,922582800,2),(517,941331600,3),(517,954032400,2),(517,972781200,3),(517,985482000,2),(517,1004230800,3),(517,1017536400,2),(517,1035680400,3),(517,1048986000,2),(517,1067130000,3),(517,1080435600,2),(517,1099184400,3),(517,1111885200,2),(517,1130634000,3),(517,1143334800,2),(517,1162083600,3),(517,1174784400,2),(517,1193533200,3),(517,1206838800,2),(517,1224982800,3),(517,1238288400,2),(517,1256432400,3),(517,1269738000,2),(517,1288486800,3),(517,1301187600,2),(517,1319936400,3),(517,1332637200,2),(517,1351386000,3),(517,1364691600,2),(517,1382835600,3),(517,1396141200,2),(517,1414285200,3),(517,1427590800,2),(517,1445734800,3),(517,1459040400,2),(517,1477789200,3),(517,1490490000,2),(517,1509238800,3),(517,1521939600,2),(517,1540688400,3),(517,1553994000,2),(517,1572138000,3),(517,1585443600,2),(517,1603587600,3),(517,1616893200,2),(517,1635642000,3),(517,1648342800,2),(517,1667091600,3),(517,1679792400,2),(517,1698541200,3),(517,1711846800,2),(517,1729990800,3),(517,1743296400,2),(517,1761440400,3),(517,1774746000,2),(517,1792890000,3),(517,1806195600,2),(517,1824944400,3),(517,1837645200,2),(517,1856394000,3),(517,1869094800,2),(517,1887843600,3),(517,1901149200,2),(517,1919293200,3),(517,1932598800,2),(517,1950742800,3),(517,1964048400,2),(517,1982797200,3),(517,1995498000,2),(517,2014246800,3),(517,2026947600,2),(517,2045696400,3),(517,2058397200,2),(517,2077146000,3),(517,2090451600,2),(517,2108595600,3),(517,2121901200,2),(517,2140045200,3),(519,-1633273200,0),(519,-1615132800,1),(519,-1601823600,0),(519,-1583683200,1),(519,-880210800,2),(519,-769395600,3),(519,-765388800,1),(519,-84380400,0),(519,-68659200,1),(519,-52930800,0),(519,-37209600,1),(519,-21481200,0),(519,-5760000,1),(519,9968400,0),(519,25689600,1),(519,41418000,0),(519,57744000,1),(519,73472400,0),(519,89193600,1),(519,104922000,0),(519,120643200,1),(519,126694800,0),(519,152092800,1),(519,162378000,0),(519,183542400,1),(519,199270800,0),(519,215596800,1),(519,230720400,0),(519,247046400,1),(519,262774800,0),(519,278496000,1),(519,294224400,0),(519,309945600,1),(519,325674000,0),(519,341395200,1),(519,357123600,0),(519,372844800,1),(519,388573200,0),(519,404899200,1),(519,420022800,0),(519,436348800,1),(519,452077200,0),(519,467798400,1),(519,483526800,0),(519,499248000,1),(519,514976400,0),(519,530697600,1),(519,544611600,0),(519,562147200,1),(519,576061200,0),(519,594201600,1),(519,607510800,0),(519,625651200,1),(519,638960400,0),(519,657100800,1),(519,671014800,0),(519,688550400,1),(519,702464400,0),(519,720000000,1),(519,733914000,0),(519,752054400,1),(519,765363600,0),(519,783504000,1),(519,796813200,0),(519,814953600,1),(519,828867600,0),(519,846403200,1),(519,860317200,0),(519,877852800,1),(519,891766800,0),(519,909302400,1),(519,923216400,0),(519,941356800,1),(519,954666000,0),(519,972806400,1),(519,986115600,0),(519,1004256000,1),(519,1018170000,0),(519,1035705600,1),(519,1049619600,0),(519,1067155200,1),(519,1081069200,0),(519,1099209600,1),(519,1112518800,0),(519,1130659200,1),(519,1143968400,0),(519,1162108800,1),(519,1173603600,0),(519,1194163200,1),(519,1205053200,0),(519,1225612800,1),(519,1236502800,0),(519,1257062400,1),(519,1268557200,0),(519,1289116800,1),(519,1300006800,0),(519,1320566400,1),(519,1331456400,0),(519,1352016000,1),(519,1362906000,0),(519,1383465600,1),(519,1394355600,0),(519,1414915200,1),(519,1425805200,0),(519,1446364800,1),(519,1457859600,0),(519,1478419200,1),(519,1489309200,0),(519,1509868800,1),(519,1520758800,0),(519,1541318400,1),(519,1552208400,0),(519,1572768000,1),(519,1583658000,0),(519,1604217600,1),(519,1615712400,0),(519,1636272000,1),(519,1647162000,0),(519,1667721600,1),(519,1678611600,0),(519,1699171200,1),(519,1710061200,0),(519,1730620800,1),(519,1741510800,0),(519,1762070400,1),(519,1772960400,0),(519,1793520000,1),(519,1805014800,0),(519,1825574400,1),(519,1836464400,0),(519,1857024000,1),(519,1867914000,0),(519,1888473600,1),(519,1899363600,0),(519,1919923200,1),(519,1930813200,0),(519,1951372800,1),(519,1962867600,0),(519,1983427200,1),(519,1994317200,0),(519,2014876800,1),(519,2025766800,0),(519,2046326400,1),(519,2057216400,0),(519,2077776000,1),(519,2088666000,0),(519,2109225600,1),(519,2120115600,0),(519,2140675200,1),(520,-2147483648,0),(520,-1514736000,1),(520,-1451667600,2),(520,-1343062800,1),(520,-1234803600,2),(520,-1222963200,3),(520,-1207242000,2),(520,-873820800,4),(520,-769395600,5),(520,-761677200,2),(520,-686073600,3),(520,-661539600,2),(520,-495039600,3),(520,-481734000,2),(520,-463590000,3),(520,-450284400,2),(520,-431535600,3),(520,-418230000,2),(520,-400086000,3),(520,-386780400,2),(520,-368636400,3),(520,-355330800,2),(520,-337186800,3),(520,-323881200,2),(520,-305737200,3),(520,-292431600,2),(520,199274400,3),(520,215600400,2),(520,230724000,3),(520,247050000,2),(520,262778400,3),(520,278499600,2),(520,294228000,3),(520,309949200,2),(520,325677600,3),(520,341398800,2),(520,357127200,3),(520,372848400,2),(520,388576800,3),(520,404902800,2),(520,420026400,3),(520,436352400,2),(520,452080800,3),(520,467802000,2),(520,483530400,3),(520,499251600,2),(520,514980000,3),(520,530701200,2),(520,544615200,3),(520,562150800,2),(520,576064800,3),(520,594205200,2),(520,607514400,3),(520,625654800,2),(520,638964000,3),(520,657104400,2),(520,671018400,3),(520,688554000,2),(520,702468000,3),(520,720003600,2),(520,733917600,3),(520,752058000,2),(520,765367200,3),(520,783507600,2),(520,796816800,3),(520,814957200,2),(520,828871200,3),(520,846406800,2),(520,860320800,3),(520,877856400,2),(520,891770400,3),(520,909306000,2),(520,923220000,3),(520,941360400,2),(520,954669600,3),(520,972810000,2),(520,986119200,3),(520,1004259600,2),(520,1018173600,3),(520,1035709200,2),(520,1049623200,3),(520,1067158800,2),(520,1081072800,3),(520,1099213200,2),(520,1112522400,3),(520,1130662800,2),(520,1143972000,3),(520,1162112400,2),(520,1175421600,3),(520,1193562000,2),(520,1207476000,3),(520,1225011600,2),(520,1238925600,3),(520,1256461200,2),(520,1268560800,3),(520,1289120400,2),(520,1300010400,3),(520,1320570000,2),(520,1331460000,3),(520,1352019600,2),(520,1362909600,3),(520,1383469200,2),(520,1394359200,3),(520,1414918800,2),(520,1425808800,3),(520,1446368400,2),(520,1457863200,3),(520,1478422800,2),(520,1489312800,3),(520,1509872400,2),(520,1520762400,3),(520,1541322000,2),(520,1552212000,3),(520,1572771600,2),(520,1583661600,3),(520,1604221200,2),(520,1615716000,3),(520,1636275600,2),(520,1647165600,3),(520,1667725200,2),(520,1678615200,3),(520,1699174800,2),(520,1710064800,3),(520,1730624400,2),(520,1741514400,3),(520,1762074000,2),(520,1772964000,3),(520,1793523600,2),(520,1805018400,3),(520,1825578000,2),(520,1836468000,3),(520,1857027600,2),(520,1867917600,3),(520,1888477200,2),(520,1899367200,3),(520,1919926800,2),(520,1930816800,3),(520,1951376400,2),(520,1962871200,3),(520,1983430800,2),(520,1994320800,3),(520,2014880400,2),(520,2025770400,3),(520,2046330000,2),(520,2057220000,3),(520,2077779600,2),(520,2088669600,3),(520,2109229200,2),(520,2120119200,3),(520,2140678800,2),(521,-2147483648,0),(521,-1514739600,1),(521,-1343066400,2),(521,-1234807200,1),(521,-1220292000,2),(521,-1207159200,1),(521,-1191344400,2),(521,-873828000,1),(521,-661539600,3),(521,28800,1),(521,828867600,4),(521,846403200,1),(521,860317200,4),(521,877852800,1),(521,891766800,4),(521,909302400,1),(521,923216400,4),(521,941356800,1),(521,954666000,4),(521,972806400,1),(521,989139600,4),(521,1001836800,1),(521,1018170000,4),(521,1035705600,1),(521,1049619600,4),(521,1067155200,1),(521,1081069200,4),(521,1099209600,1),(521,1112518800,4),(521,1130659200,1),(521,1143968400,4),(521,1162108800,1),(521,1175418000,4),(521,1193558400,1),(521,1207472400,4),(521,1225008000,1),(521,1238922000,4),(521,1256457600,1),(521,1270371600,4),(521,1288512000,1),(521,1301821200,4),(521,1319961600,1),(521,1333270800,4),(521,1351411200,1),(521,1365325200,4),(521,1382860800,1),(521,1396774800,4),(521,1414310400,1),(521,1428224400,4),(521,1445760000,1),(521,1459674000,4),(521,1477814400,1),(521,1491123600,4),(521,1509264000,1),(521,1522573200,4),(521,1540713600,1),(521,1554627600,4),(521,1572163200,1),(521,1586077200,4),(521,1603612800,1),(521,1617526800,4),(521,1635667200,1),(521,1648976400,4),(521,1667116800,1),(521,1680426000,4),(521,1698566400,1),(521,1712480400,4),(521,1730016000,1),(521,1743930000,4),(521,1761465600,1),(521,1775379600,4),(521,1792915200,1),(521,1806829200,4),(521,1824969600,1),(521,1838278800,4),(521,1856419200,1),(521,1869728400,4),(521,1887868800,1),(521,1901782800,4),(521,1919318400,1),(521,1933232400,4),(521,1950768000,1),(521,1964682000,4),(521,1982822400,1),(521,1996131600,4),(521,2014272000,1),(521,2027581200,4),(521,2045721600,1),(521,2059030800,4),(521,2077171200,1),(521,2091085200,4),(521,2108620800,1),(521,2122534800,4),(521,2140070400,1),(522,-2147483648,0),(522,-1514739600,1),(522,-1343066400,2),(522,-1234807200,1),(522,-1220292000,2),(522,-1207159200,1),(522,-1191344400,2),(522,-975261600,3),(522,-963169200,2),(522,-917114400,3),(522,-907354800,2),(522,-821901600,4),(522,-810068400,2),(522,-627501600,3),(522,-612990000,2),(522,828864000,3),(522,846399600,2),(522,860313600,3),(522,877849200,2),(522,891763200,3),(522,909298800,2),(522,923212800,3),(522,941353200,2),(522,954662400,3),(522,972802800,2),(522,989136000,3),(522,1001833200,2),(522,1018166400,3),(522,1035702000,2),(522,1049616000,3),(522,1067151600,2),(522,1081065600,3),(522,1099206000,2),(522,1112515200,3),(522,1130655600,2),(522,1143964800,3),(522,1162105200,2),(522,1175414400,3),(522,1193554800,2),(522,1207468800,3),(522,1225004400,2),(522,1238918400,3),(522,1256454000,2),(522,1270368000,3),(522,1288508400,2),(522,1301817600,3),(522,1319958000,2),(522,1333267200,3),(522,1351407600,2),(522,1365321600,3),(522,1382857200,2),(522,1396771200,3),(522,1414306800,2),(522,1428220800,3),(522,1445756400,2),(522,1459670400,3),(522,1477810800,2),(522,1491120000,3),(522,1509260400,2),(522,1522569600,3),(522,1540710000,2),(522,1554624000,3),(522,1572159600,2),(522,1586073600,3),(522,1603609200,2),(522,1617523200,3),(522,1635663600,2),(522,1648972800,3),(522,1667113200,2),(522,1680422400,3),(522,1698562800,2),(522,1712476800,3),(522,1730012400,2),(522,1743926400,3),(522,1761462000,2),(522,1775376000,3),(522,1792911600,2),(522,1806825600,3),(522,1824966000,2),(522,1838275200,3),(522,1856415600,2),(522,1869724800,3),(522,1887865200,2),(522,1901779200,3),(522,1919314800,2),(522,1933228800,3),(522,1950764400,2),(522,1964678400,3),(522,1982818800,2),(522,1996128000,3),(522,2014268400,2),(522,2027577600,3),(522,2045718000,2),(522,2059027200,3),(522,2077167600,2),(522,2091081600,3),(522,2108617200,2),(522,2122531200,3),(522,2140066800,2),(523,-2147483648,2),(523,-1330335000,1),(523,-1320057000,2),(523,-1300699800,3),(523,-1287396000,2),(523,-1269250200,3),(523,-1255946400,2),(523,-1237800600,3),(523,-1224496800,2),(523,-1206351000,3),(523,-1192442400,2),(523,-1174901400,3),(523,-1160992800,2),(523,-1143451800,3),(523,-1125914400,2),(523,-1112607000,3),(523,-1094464800,2),(523,-1081157400,3),(523,-1063015200,2),(523,-1049707800,3),(523,-1031565600,2),(523,-1018258200,3),(523,-1000116000,2),(523,-986808600,3),(523,-968061600,2),(523,-955359000,3),(523,-936612000,2),(523,-923304600,3),(523,-757425600,6),(523,152632800,4),(523,162309600,5),(523,183477600,4),(523,194968800,5),(523,215532000,4),(523,226418400,5),(523,246981600,4),(523,257868000,5),(523,278431200,4),(523,289317600,5),(523,309880800,4),(523,320767200,5),(523,341330400,4),(523,352216800,5),(523,372780000,4),(523,384271200,5),(523,404834400,4),(523,415720800,5),(523,436284000,4),(523,447170400,5),(523,467733600,4),(523,478620000,5),(523,499183200,4),(523,510069600,5),(523,530632800,4),(523,541519200,5),(523,562082400,4),(523,573573600,5),(523,594136800,4),(523,605023200,5),(523,623772000,4),(523,637682400,5),(523,655221600,4),(523,669132000,5),(523,686671200,4),(523,700581600,5),(523,718120800,4),(523,732636000,5),(523,749570400,4),(523,764085600,5),(523,781020000,4),(523,795535200,5),(523,812469600,4),(523,826984800,5),(523,844524000,4),(523,858434400,5),(523,875973600,4),(523,889884000,5),(523,907423200,4),(523,921938400,5),(523,938872800,4),(523,953388000,5),(523,970322400,4),(523,984837600,5),(523,1002376800,4),(523,1016287200,5),(523,1033826400,4),(523,1047736800,5),(523,1065276000,4),(523,1079791200,5),(523,1096725600,4),(523,1111240800,5),(523,1128175200,4),(523,1142690400,5),(523,1159624800,4),(523,1174140000,5),(523,1191074400,4),(523,1207404000,5),(523,1222524000,4),(523,1238853600,5),(523,1253973600,4),(523,1270303200,5),(523,1285423200,4),(523,1301752800,5),(523,1316872800,4),(523,1333202400,5),(523,1348927200,4),(523,1365256800,5),(523,1380376800,4),(523,1396706400,5),(523,1411826400,4),(523,1428156000,5),(523,1443276000,4),(523,1459605600,5),(523,1474725600,4),(523,1491055200,5),(523,1506175200,4),(523,1522504800,5),(523,1538229600,4),(523,1554559200,5),(523,1569679200,4),(523,1586008800,5),(523,1601128800,4),(523,1617458400,5),(523,1632578400,4),(523,1648908000,5),(523,1664028000,4),(523,1680357600,5),(523,1695477600,4),(523,1712412000,5),(523,1727532000,4),(523,1743861600,5),(523,1758981600,4),(523,1775311200,5),(523,1790431200,4),(523,1806760800,5),(523,1821880800,4),(523,1838210400,5),(523,1853330400,4),(523,1869660000,5),(523,1885384800,4),(523,1901714400,5),(523,1916834400,4),(523,1933164000,5),(523,1948284000,4),(523,1964613600,5),(523,1979733600,4),(523,1996063200,5),(523,2011183200,4),(523,2027512800,5),(523,2042632800,4),(523,2058962400,5),(523,2074687200,4),(523,2091016800,5),(523,2106136800,4),(523,2122466400,5),(523,2137586400,4),(524,-2147483648,1),(524,-757426500,4),(524,152632800,2),(524,162309600,3),(524,183477600,2),(524,194968800,3),(524,215532000,2),(524,226418400,3),(524,246981600,2),(524,257868000,3),(524,278431200,2),(524,289317600,3),(524,309880800,2),(524,320767200,3),(524,341330400,2),(524,352216800,3),(524,372780000,2),(524,384271200,3),(524,404834400,2),(524,415720800,3),(524,436284000,2),(524,447170400,3),(524,467733600,2),(524,478620000,3),(524,499183200,2),(524,510069600,3),(524,530632800,2),(524,541519200,3),(524,562082400,2),(524,573573600,3),(524,594136800,2),(524,605023200,3),(524,623772000,2),(524,637682400,3),(524,655221600,2),(524,669132000,3),(524,686671200,2),(524,700581600,3),(524,718120800,2),(524,732636000,3),(524,749570400,2),(524,764085600,3),(524,781020000,2),(524,795535200,3),(524,812469600,2),(524,826984800,3),(524,844524000,2),(524,858434400,3),(524,875973600,2),(524,889884000,3),(524,907423200,2),(524,921938400,3),(524,938872800,2),(524,953388000,3),(524,970322400,2),(524,984837600,3),(524,1002376800,2),(524,1016287200,3),(524,1033826400,2),(524,1047736800,3),(524,1065276000,2),(524,1079791200,3),(524,1096725600,2),(524,1111240800,3),(524,1128175200,2),(524,1142690400,3),(524,1159624800,2),(524,1174140000,3),(524,1191074400,2),(524,1207404000,3),(524,1222524000,2),(524,1238853600,3),(524,1253973600,2),(524,1270303200,3),(524,1285423200,2),(524,1301752800,3),(524,1316872800,2),(524,1333202400,3),(524,1348927200,2),(524,1365256800,3),(524,1380376800,2),(524,1396706400,3),(524,1411826400,2),(524,1428156000,3),(524,1443276000,2),(524,1459605600,3),(524,1474725600,2),(524,1491055200,3),(524,1506175200,2),(524,1522504800,3),(524,1538229600,2),(524,1554559200,3),(524,1569679200,2),(524,1586008800,3),(524,1601128800,2),(524,1617458400,3),(524,1632578400,2),(524,1648908000,3),(524,1664028000,2),(524,1680357600,3),(524,1695477600,2),(524,1712412000,3),(524,1727532000,2),(524,1743861600,3),(524,1758981600,2),(524,1775311200,3),(524,1790431200,2),(524,1806760800,3),(524,1821880800,2),(524,1838210400,3),(524,1853330400,2),(524,1869660000,3),(524,1885384800,2),(524,1901714400,3),(524,1916834400,2),(524,1933164000,3),(524,1948284000,2),(524,1964613600,3),(524,1979733600,2),(524,1996063200,3),(524,2011183200,2),(524,2027512800,3),(524,2042632800,2),(524,2058962400,3),(524,2074687200,2),(524,2091016800,3),(524,2106136800,2),(524,2122466400,3),(524,2137586400,2),(524,2147483647,2),(525,-2147483648,2),(525,-1633273200,1),(525,-1615132800,2),(525,-1601823600,1),(525,-1583683200,2),(525,-1570374000,1),(525,-1551628800,2),(525,-1538924400,1),(525,-1534089600,2),(525,-880210800,3),(525,-769395600,4),(525,-765388800,2),(525,-147884400,1),(525,-131558400,2),(525,-116434800,1),(525,-100108800,2),(525,-84380400,1),(525,-68659200,2),(525,-52930800,1),(525,-37209600,2),(525,-21481200,1),(525,-5760000,2),(525,9968400,1),(525,25689600,2),(525,41418000,1),(525,57744000,2),(525,73472400,1),(525,89193600,2),(525,104922000,1),(525,120643200,2),(525,126694800,1),(525,152092800,2),(525,162378000,1),(525,183542400,2),(525,199270800,1),(525,215596800,2),(525,230720400,1),(525,247046400,2),(525,262774800,1),(525,278496000,2),(525,294224400,1),(525,309945600,2),(525,325674000,1),(525,341395200,2),(525,357123600,1),(525,372844800,2),(525,388573200,1),(525,404899200,2),(525,420022800,1),(525,436348800,2),(525,452077200,1),(525,467798400,2),(525,483526800,1),(525,499248000,2),(525,514976400,1),(525,530697600,2),(525,544611600,1),(525,562147200,2),(525,576061200,1),(525,594201600,2),(525,607510800,1),(525,625651200,2),(525,638960400,1),(525,657100800,2),(525,671014800,1),(525,688550400,2),(525,702464400,1),(525,720000000,2),(525,733914000,1),(525,752054400,2),(525,765363600,1),(525,783504000,2),(525,796813200,1),(525,814953600,2),(525,828867600,1),(525,846403200,2),(525,860317200,1),(525,877852800,2),(525,891766800,1),(525,909302400,2),(525,923216400,1),(525,941356800,2),(525,954666000,1),(525,972806400,2),(525,986115600,1),(525,1004256000,2),(525,1018170000,1),(525,1035705600,2),(525,1049619600,1),(525,1067155200,2),(525,1081069200,1),(525,1099209600,2),(525,1112518800,1),(525,1130659200,2),(525,1143968400,1),(525,1162108800,2),(525,1173603600,1),(525,1194163200,2),(525,1205053200,1),(525,1225612800,2),(525,1236502800,1),(525,1257062400,2),(525,1268557200,1),(525,1289116800,2),(525,1300006800,1),(525,1320566400,2),(525,1331456400,1),(525,1352016000,2),(525,1362906000,1),(525,1383465600,2),(525,1394355600,1),(525,1414915200,2),(525,1425805200,1),(525,1446364800,2),(525,1457859600,1),(525,1478419200,2),(525,1489309200,1),(525,1509868800,2),(525,1520758800,1),(525,1541318400,2),(525,1552208400,1),(525,1572768000,2),(525,1583658000,1),(525,1604217600,2),(525,1615712400,1),(525,1636272000,2),(525,1647162000,1),(525,1667721600,2),(525,1678611600,1),(525,1699171200,2),(525,1710061200,1),(525,1730620800,2),(525,1741510800,1),(525,1762070400,2),(525,1772960400,1),(525,1793520000,2),(525,1805014800,1),(525,1825574400,2),(525,1836464400,1),(525,1857024000,2),(525,1867914000,1),(525,1888473600,2),(525,1899363600,1),(525,1919923200,2),(525,1930813200,1),(525,1951372800,2),(525,1962867600,1),(525,1983427200,2),(525,1994317200,1),(525,2014876800,2),(525,2025766800,1),(525,2046326400,2),(525,2057216400,1),(525,2077776000,2),(525,2088666000,1),(525,2109225600,2),(525,2120115600,1),(525,2140675200,2),(526,-2147483648,2),(526,-1600675200,1),(526,-1585904400,2),(526,-933667200,1),(526,-922093200,2),(526,-908870400,1),(526,-888829200,2),(526,-881049600,1),(526,-767869200,2),(526,-745833600,1),(526,-733827600,2),(526,-716889600,1),(526,-699613200,2),(526,-683884800,1),(526,-670669200,2),(526,-652348800,1),(526,-650019600,2),(526,515527200,1),(526,527014800,2),(526,545162400,1),(526,558464400,2),(526,577216800,1),(526,589914000,2),(526,608666400,1),(526,621968400,2),(526,640116000,1),(526,653418000,2),(526,671565600,1),(526,684867600,2),(527,-1633269600,0),(527,-1615129200,1),(527,-1601820000,0),(527,-1583679600,1),(527,-880207200,2),(527,-769395600,3),(527,-765385200,1),(527,-84376800,0),(527,-68655600,1),(527,-52927200,0),(527,-37206000,1),(527,-21477600,0),(527,-5756400,1),(527,9972000,0),(527,25693200,1),(527,41421600,0),(527,57747600,1),(527,73476000,0),(527,89197200,1),(527,104925600,0),(527,120646800,1),(527,126698400,0),(527,152096400,1),(527,162381600,0),(527,183546000,1),(527,199274400,0),(527,215600400,1),(527,230724000,0),(527,247050000,1),(527,262778400,0),(527,278499600,1),(527,294228000,0),(527,309949200,1),(527,325677600,0),(527,341398800,1),(527,357127200,0),(527,372848400,1),(527,388576800,0),(527,404902800,1),(527,420026400,0),(527,436352400,1),(527,452080800,0),(527,467802000,1),(527,483530400,0),(527,499251600,1),(527,514980000,0),(527,530701200,1),(527,544615200,0),(527,562150800,1),(527,576064800,0),(527,594205200,1),(527,607514400,0),(527,625654800,1),(527,638964000,0),(527,657104400,1),(527,671018400,0),(527,688554000,1),(527,702468000,0),(527,720003600,1),(527,733917600,0),(527,752058000,1),(527,765367200,0),(527,783507600,1),(527,796816800,0),(527,814957200,1),(527,828871200,0),(527,846406800,1),(527,860320800,0),(527,877856400,1),(527,891770400,0),(527,909306000,1),(527,923220000,0),(527,941360400,1),(527,954669600,0),(527,972810000,1),(527,986119200,0),(527,1004259600,1),(527,1018173600,0),(527,1035709200,1),(527,1049623200,0),(527,1067158800,1),(527,1081072800,0),(527,1099213200,1),(527,1112522400,0),(527,1130662800,1),(527,1143972000,0),(527,1162112400,1),(527,1173607200,0),(527,1194166800,1),(527,1205056800,0),(527,1225616400,1),(527,1236506400,0),(527,1257066000,1),(527,1268560800,0),(527,1289120400,1),(527,1300010400,0),(527,1320570000,1),(527,1331460000,0),(527,1352019600,1),(527,1362909600,0),(527,1383469200,1),(527,1394359200,0),(527,1414918800,1),(527,1425808800,0),(527,1446368400,1),(527,1457863200,0),(527,1478422800,1),(527,1489312800,0),(527,1509872400,1),(527,1520762400,0),(527,1541322000,1),(527,1552212000,0),(527,1572771600,1),(527,1583661600,0),(527,1604221200,1),(527,1615716000,0),(527,1636275600,1),(527,1647165600,0),(527,1667725200,1),(527,1678615200,0),(527,1699174800,1),(527,1710064800,0),(527,1730624400,1),(527,1741514400,0),(527,1762074000,1),(527,1772964000,0),(527,1793523600,1),(527,1805018400,0),(527,1825578000,1),(527,1836468000,0),(527,1857027600,1),(527,1867917600,0),(527,1888477200,1),(527,1899367200,0),(527,1919926800,1),(527,1930816800,0),(527,1951376400,1),(527,1962871200,0),(527,1983430800,1),(527,1994320800,0),(527,2014880400,1),(527,2025770400,0),(527,2046330000,1),(527,2057220000,0),(527,2077779600,1),(527,2088669600,0),(527,2109229200,1),(527,2120119200,0),(527,2140678800,1),(528,-2147483648,1),(528,-1861878784,2),(528,-631110600,4),(528,1285498800,3),(528,1301752800,4),(528,1316872800,3),(528,1325239200,6),(528,1333202400,5),(528,1348927200,6),(528,1365256800,5),(528,1380376800,6),(528,1396706400,5),(528,1411826400,6),(528,1428156000,5),(528,1443276000,6),(528,1459605600,5),(528,1474725600,6),(528,1491055200,5),(528,1506175200,6),(528,1522504800,5),(528,1538229600,6),(528,1554559200,5),(528,1569679200,6),(528,1586008800,5),(528,1601128800,6),(528,1617458400,5),(528,1632578400,6),(528,1648908000,5),(528,1664028000,6),(528,1680357600,5),(528,1695477600,6),(528,1712412000,5),(528,1727532000,6),(528,1743861600,5),(528,1758981600,6),(528,1775311200,5),(528,1790431200,6),(528,1806760800,5),(528,1821880800,6),(528,1838210400,5),(528,1853330400,6),(528,1869660000,5),(528,1885384800,6),(528,1901714400,5),(528,1916834400,6),(528,1933164000,5),(528,1948284000,6),(528,1964613600,5),(528,1979733600,6),(528,1996063200,5),(528,2011183200,6),(528,2027512800,5),(528,2042632800,6),(528,2058962400,5),(528,2074687200,6),(528,2091016800,5),(528,2106136800,6),(528,2122466400,5),(528,2137586400,6),(528,2147483647,6),(529,-2147483648,2),(529,-1330335000,1),(529,-1320057000,2),(529,-1300699800,3),(529,-1287396000,2),(529,-1269250200,3),(529,-1255946400,2),(529,-1237800600,3),(529,-1224496800,2),(529,-1206351000,3),(529,-1192442400,2),(529,-1174901400,3),(529,-1160992800,2),(529,-1143451800,3),(529,-1125914400,2),(529,-1112607000,3),(529,-1094464800,2),(529,-1081157400,3),(529,-1063015200,2),(529,-1049707800,3),(529,-1031565600,2),(529,-1018258200,3),(529,-1000116000,2),(529,-986808600,3),(529,-968061600,2),(529,-955359000,3),(529,-936612000,2),(529,-923304600,3),(529,-757425600,6),(529,152632800,4),(529,162309600,5),(529,183477600,4),(529,194968800,5),(529,215532000,4),(529,226418400,5),(529,246981600,4),(529,257868000,5),(529,278431200,4),(529,289317600,5),(529,309880800,4),(529,320767200,5),(529,341330400,4),(529,352216800,5),(529,372780000,4),(529,384271200,5),(529,404834400,4),(529,415720800,5),(529,436284000,4),(529,447170400,5),(529,467733600,4),(529,478620000,5),(529,499183200,4),(529,510069600,5),(529,530632800,4),(529,541519200,5),(529,562082400,4),(529,573573600,5),(529,594136800,4),(529,605023200,5),(529,623772000,4),(529,637682400,5),(529,655221600,4),(529,669132000,5),(529,686671200,4),(529,700581600,5),(529,718120800,4),(529,732636000,5),(529,749570400,4),(529,764085600,5),(529,781020000,4),(529,795535200,5),(529,812469600,4),(529,826984800,5),(529,844524000,4),(529,858434400,5),(529,875973600,4),(529,889884000,5),(529,907423200,4),(529,921938400,5),(529,938872800,4),(529,953388000,5),(529,970322400,4),(529,984837600,5),(529,1002376800,4),(529,1016287200,5),(529,1033826400,4),(529,1047736800,5),(529,1065276000,4),(529,1079791200,5),(529,1096725600,4),(529,1111240800,5),(529,1128175200,4),(529,1142690400,5),(529,1159624800,4),(529,1174140000,5),(529,1191074400,4),(529,1207404000,5),(529,1222524000,4),(529,1238853600,5),(529,1253973600,4),(529,1270303200,5),(529,1285423200,4),(529,1301752800,5),(529,1316872800,4),(529,1333202400,5),(529,1348927200,4),(529,1365256800,5),(529,1380376800,4),(529,1396706400,5),(529,1411826400,4),(529,1428156000,5),(529,1443276000,4),(529,1459605600,5),(529,1474725600,4),(529,1491055200,5),(529,1506175200,4),(529,1522504800,5),(529,1538229600,4),(529,1554559200,5),(529,1569679200,4),(529,1586008800,5),(529,1601128800,4),(529,1617458400,5),(529,1632578400,4),(529,1648908000,5),(529,1664028000,4),(529,1680357600,5),(529,1695477600,4),(529,1712412000,5),(529,1727532000,4),(529,1743861600,5),(529,1758981600,4),(529,1775311200,5),(529,1790431200,4),(529,1806760800,5),(529,1821880800,4),(529,1838210400,5),(529,1853330400,4),(529,1869660000,5),(529,1885384800,4),(529,1901714400,5),(529,1916834400,4),(529,1933164000,5),(529,1948284000,4),(529,1964613600,5),(529,1979733600,4),(529,1996063200,5),(529,2011183200,4),(529,2027512800,5),(529,2042632800,4),(529,2058962400,5),(529,2074687200,4),(529,2091016800,5),(529,2106136800,4),(529,2122466400,5),(529,2137586400,4),(530,-2147483648,1),(530,-868010400,2),(530,-768906000,1),(530,1419696000,3),(530,2147483647,3),(531,-2147483648,1),(531,-757426500,4),(531,152632800,2),(531,162309600,3),(531,183477600,2),(531,194968800,3),(531,215532000,2),(531,226418400,3),(531,246981600,2),(531,257868000,3),(531,278431200,2),(531,289317600,3),(531,309880800,2),(531,320767200,3),(531,341330400,2),(531,352216800,3),(531,372780000,2),(531,384271200,3),(531,404834400,2),(531,415720800,3),(531,436284000,2),(531,447170400,3),(531,467733600,2),(531,478620000,3),(531,499183200,2),(531,510069600,3),(531,530632800,2),(531,541519200,3),(531,562082400,2),(531,573573600,3),(531,594136800,2),(531,605023200,3),(531,623772000,2),(531,637682400,3),(531,655221600,2),(531,669132000,3),(531,686671200,2),(531,700581600,3),(531,718120800,2),(531,732636000,3),(531,749570400,2),(531,764085600,3),(531,781020000,2),(531,795535200,3),(531,812469600,2),(531,826984800,3),(531,844524000,2),(531,858434400,3),(531,875973600,2),(531,889884000,3),(531,907423200,2),(531,921938400,3),(531,938872800,2),(531,953388000,3),(531,970322400,2),(531,984837600,3),(531,1002376800,2),(531,1016287200,3),(531,1033826400,2),(531,1047736800,3),(531,1065276000,2),(531,1079791200,3),(531,1096725600,2),(531,1111240800,3),(531,1128175200,2),(531,1142690400,3),(531,1159624800,2),(531,1174140000,3),(531,1191074400,2),(531,1207404000,3),(531,1222524000,2),(531,1238853600,3),(531,1253973600,2),(531,1270303200,3),(531,1285423200,2),(531,1301752800,3),(531,1316872800,2),(531,1333202400,3),(531,1348927200,2),(531,1365256800,3),(531,1380376800,2),(531,1396706400,3),(531,1411826400,2),(531,1428156000,3),(531,1443276000,2),(531,1459605600,3),(531,1474725600,2),(531,1491055200,3),(531,1506175200,2),(531,1522504800,3),(531,1538229600,2),(531,1554559200,3),(531,1569679200,2),(531,1586008800,3),(531,1601128800,2),(531,1617458400,3),(531,1632578400,2),(531,1648908000,3),(531,1664028000,2),(531,1680357600,3),(531,1695477600,2),(531,1712412000,3),(531,1727532000,2),(531,1743861600,3),(531,1758981600,2),(531,1775311200,3),(531,1790431200,2),(531,1806760800,3),(531,1821880800,2),(531,1838210400,3),(531,1853330400,2),(531,1869660000,3),(531,1885384800,2),(531,1901714400,3),(531,1916834400,2),(531,1933164000,3),(531,1948284000,2),(531,1964613600,3),(531,1979733600,2),(531,1996063200,3),(531,2011183200,2),(531,2027512800,3),(531,2042632800,2),(531,2058962400,3),(531,2074687200,2),(531,2091016800,3),(531,2106136800,2),(531,2122466400,3),(531,2137586400,2),(531,2147483647,2),(532,-2147483648,1),(532,-1743674400,2),(532,-1606813200,1),(532,-907408800,2),(532,-770634000,1),(532,2147483647,1),(533,-2147483648,1),(533,-1178124152,4),(533,-36619200,2),(533,-23922000,3),(533,-3355200,2),(533,7527600,3),(533,24465600,2),(533,37767600,3),(533,55915200,2),(533,69217200,3),(533,87969600,2),(533,100666800,3),(533,118209600,2),(533,132116400,3),(533,150868800,2),(533,163566000,3),(533,182318400,2),(533,195620400,3),(533,213768000,2),(533,227070000,3),(533,245217600,2),(533,258519600,3),(533,277272000,2),(533,289969200,3),(533,308721600,2),(533,321418800,3),(533,340171200,2),(533,353473200,3),(533,371620800,2),(533,384922800,5),(533,403070400,6),(533,416372400,5),(533,434520000,6),(533,447822000,5),(533,466574400,6),(533,479271600,5),(533,498024000,6),(533,510721200,5),(533,529473600,6),(533,545194800,5),(533,560923200,6),(533,574225200,5),(533,592372800,6),(533,605674800,5),(533,624427200,6),(533,637124400,5),(533,653457600,6),(533,668574000,5),(533,687326400,6),(533,700628400,5),(533,718776000,6),(533,732078000,5),(533,750225600,6),(533,763527600,5),(533,781675200,6),(533,794977200,5),(533,813729600,6),(533,826426800,5),(533,845179200,6),(533,859690800,5),(533,876628800,6),(533,889930800,5),(533,906868800,6),(533,923194800,5),(533,939528000,6),(533,952830000,5),(533,971582400,6),(533,984279600,5),(533,1003032000,6),(533,1015729200,5),(533,1034481600,6),(533,1047178800,5),(533,1065931200,6),(533,1079233200,5),(533,1097380800,6),(533,1110682800,5),(533,1128830400,6),(533,1142132400,5),(533,1160884800,6),(533,1173582000,5),(533,1192334400,6),(533,1206846000,5),(533,1223784000,6),(533,1237086000,5),(533,1255233600,6),(533,1270350000,5),(533,1286683200,6),(533,1304823600,5),(533,1313899200,6),(533,1335668400,5),(533,1346558400,6),(533,1367118000,5),(533,1378612800,6),(533,1398567600,5),(533,1410062400,6),(533,1463281200,5),(533,1471147200,6),(533,1494730800,5),(533,1502596800,6),(533,1526180400,5),(533,1534046400,6),(533,1554606000,5),(533,1567915200,6),(533,1586055600,5),(533,1599364800,6),(533,1617505200,5),(533,1630814400,6),(533,1648954800,5),(533,1662264000,6),(533,1680404400,5),(533,1693713600,6),(533,1712458800,5),(533,1725768000,6),(533,1743908400,5),(533,1757217600,6),(533,1775358000,5),(533,1788667200,6),(533,1806807600,5),(533,1820116800,6),(533,1838257200,5),(533,1851566400,6),(533,1870311600,5),(533,1883016000,6),(533,1901761200,5),(533,1915070400,6),(533,1933210800,5),(533,1946520000,6),(533,1964660400,5),(533,1977969600,6),(533,1996110000,5),(533,2009419200,6),(533,2027559600,5),(533,2040868800,6),(533,2059614000,5),(533,2072318400,6),(533,2091063600,5),(533,2104372800,6),(533,2122513200,5),(533,2135822400,6),(533,2147483647,6),(534,-2147483648,0),(534,-1829387596,4),(534,125409600,1),(534,133876800,2),(534,433256400,3),(534,448977600,4),(534,464706000,3),(534,480427200,4),(534,496760400,3),(534,511876800,4),(534,528210000,3),(534,543931200,4),(534,559659600,3),(534,575380800,4),(534,591109200,3),(534,606830400,4),(534,622558800,3),(534,638280000,4),(534,654008400,3),(534,669729600,4),(534,686062800,3),(534,696340800,4),(534,719931600,3),(534,727790400,4),(534,2147483647,4),(535,-2147483648,1),(535,307627200,2),(535,788871600,3),(535,2147483647,3),(536,-2147483648,1),(536,1325242800,2),(536,2147483647,2),(537,-2147483648,0),(537,-1709985344,2),(537,909842400,1),(537,920124000,2),(537,941896800,1),(537,951573600,2),(537,1259416800,1),(537,1269698400,2),(537,1287842400,1),(537,1299333600,2),(537,1319292000,1),(537,1327154400,2),(537,1350741600,1),(537,1358604000,2),(537,1382796000,1),(537,1390050000,2),(537,1414850400,1),(537,1421503200,2),(537,1446300000,1),(537,1452952800,2),(537,1478354400,1),(537,1484402400,2),(537,1509804000,1),(537,1515852000,2),(537,1541253600,1),(537,1547301600,2),(537,1573308000,1),(537,1578751200,2),(537,1608386400,1),(537,1610805600,2),(537,1636812000,1),(537,1642255200,2),(537,1668261600,1),(537,1673704800,2),(537,1699711200,1),(537,1705154400,2),(537,1731160800,1),(537,1736604000,2),(537,1762610400,1),(537,1768658400,2),(537,1794060000,1),(537,1800108000,2),(537,1826114400,1),(537,1831557600,2),(537,1857564000,1),(537,1863007200,2),(537,1889013600,1),(537,1894456800,2),(537,1920463200,1),(537,1925906400,2),(537,1951912800,1),(537,1957960800,2),(537,1983967200,1),(537,1989410400,2),(537,2015416800,1),(537,2020860000,2),(537,2046866400,1),(537,2052309600,2),(537,2078316000,1),(537,2083759200,2),(537,2109765600,1),(537,2115813600,2),(537,2141215200,1),(537,2147263200,2),(537,2147483647,2),(538,-2147483648,1),(538,2147483647,1),(539,-2147483648,0),(539,-1230746496,1),(539,504939600,3),(539,722930400,2),(539,728888400,3),(539,2147483647,3),(540,-2147483648,0),(540,-1806678012,1),(540,2147483647,1),(541,-2147483648,0),(541,-1806748788,1),(541,2147483647,1),(542,-2147483648,1),(542,-885549600,2),(542,-802256400,1),(542,-331891200,3),(542,-281610000,1),(542,-73728000,3),(542,-29415540,1),(542,-16704000,3),(542,-10659600,1),(542,9907200,3),(542,21394800,1),(542,41356800,3),(542,52844400,1),(542,124819200,3),(542,130863600,1),(542,201888000,3),(542,209487660,1),(542,230659200,3),(542,241542000,1),(542,977493600,4),(543,-2147483648,1),(543,-1157283000,2),(543,-1155436200,1),(543,-880198200,3),(543,-769395600,4),(543,-765376200,1),(543,-712150200,5),(544,-2147483648,1),(544,-1157283000,2),(544,-1155436200,1),(544,-880198200,3),(544,-769395600,4),(544,-765376200,1),(544,-712150200,5),(545,-2147483648,1),(545,307622400,2),(545,788868000,3),(545,2147483647,3),(546,-2147483648,1),(546,-1743678000,2),(546,-1606813200,1),(546,-1041418800,3),(546,-907408800,2),(546,-770634000,1),(546,-7988400,4),(546,915105600,1),(546,2147483647,1),(547,-2147483648,1),(547,-1041418800,2),(547,-907408800,3),(547,-817462800,1),(547,-7988400,4),(547,745934400,5),(547,2147483647,5),(548,-2147483648,1),(548,-1743678000,2),(548,-1606813200,1),(548,-1041418800,3),(548,-907408800,2),(548,-818067600,1),(548,-7988400,4),(548,2147483647,4),(549,-2147483648,0),(549,-1806676920,1),(549,2147483647,1),(550,-2147483648,1),(550,-1861879032,2),(551,-2147483648,0),(551,-1545131260,1),(551,-862918200,2),(551,-767350800,1),(551,287418600,3),(551,2147483647,3),(552,-2147483648,1),(552,-599575200,2),(552,276089400,3),(552,2147483647,3),(553,-2147483648,1),(553,-599656320,2),(553,152029800,3),(553,162916200,4),(553,1443882600,5),(553,1561899600,7),(553,1570287600,6),(553,1586012400,5),(553,1601737200,6),(553,1617462000,5),(553,1633186800,6),(553,1648911600,5),(553,1664636400,6),(553,1680361200,5),(553,1696086000,6),(553,1712415600,5),(553,1728140400,6),(553,1743865200,5),(553,1759590000,6),(553,1775314800,5),(553,1791039600,6),(553,1806764400,5),(553,1822489200,6),(553,1838214000,5),(553,1853938800,6),(553,1869663600,5),(553,1885993200,6),(553,1901718000,5),(553,1917442800,6),(553,1933167600,5),(553,1948892400,6),(553,1964617200,5),(553,1980342000,6),(553,1996066800,5),(553,2011791600,6),(553,2027516400,5),(553,2043241200,6),(553,2058966000,5),(553,2075295600,6),(553,2091020400,5),(553,2106745200,6),(553,2122470000,5),(553,2138194800,6),(553,2147483647,6),(554,-2147483648,0),(554,-1829387148,2),(554,250002000,1),(554,257342400,2),(554,281451600,1),(554,288878400,2),(554,849366000,3),(554,857228400,4),(554,2147483647,4),(555,-2147483648,1),(555,-1861879032,2),(556,-2147483648,1),(556,2147483647,1),(557,-2147483648,1),(557,893665800,2),(557,2147483647,2),(558,-2147483648,1),(558,-1743678000,2),(558,-1606813200,1),(558,-1041418800,3),(558,-907408800,2),(558,-770634000,1),(558,2147483647,1),(559,-2147483648,1),(559,-1743678000,2),(559,-1606813200,1),(559,-1041418800,3),(559,-907408800,2),(559,-770634000,1),(559,2147483647,1),(560,-2147483648,1),(560,2147483647,1),(561,-2147483648,1),(561,279714600,3),(561,289387800,2),(561,309952800,3),(561,320837400,2),(561,341402400,3),(561,352287000,2),(561,372852000,3),(561,384341400,2),(561,404906400,3),(561,415791000,2),(561,436356000,3),(561,447240600,2),(561,467805600,3),(561,478690200,2),(561,499255200,3),(561,510139800,2),(561,530704800,3),(561,541589400,2),(561,562154400,3),(561,573643800,2),(561,594208800,3),(561,605093400,2),(561,625658400,3),(561,636543000,2),(561,657108000,3),(561,667992600,2),(561,2147483647,2),(562,-2147483648,1),(562,-885549600,2),(562,-802256400,1),(562,-331891200,3),(562,-281610000,1),(562,-73728000,3),(562,-29415540,1),(562,-16704000,3),(562,-10659600,1),(562,9907200,3),(562,21394800,1),(562,41356800,3),(562,52844400,1),(562,124819200,3),(562,130863600,1),(562,201888000,3),(562,209487660,1),(562,230659200,3),(562,241542000,1),(562,977493600,4),(563,-2147483648,1),(563,-1861879032,2),(564,-2147483648,0),(564,-1806674504,1),(564,2147483647,1),(565,-2147483648,1),(565,2147483647,1),(566,-2147483648,1),(566,-915193200,2),(566,939214800,3),(566,953384400,4),(566,973342800,5),(566,980596800,2),(566,1004792400,5),(566,1012046400,2),(566,1478350800,5),(566,1484398800,2),(566,2147483647,2),(567,-2147483648,1),(567,-1743674400,2),(567,-1606813200,1),(567,-907408800,2),(567,-770634000,1),(567,2147483647,1),(568,-2147483648,1),(568,2147483647,1),(569,-2147483648,1),(569,2147483647,1),(570,-2147483648,1),(570,-1743674400,2),(570,-1606813200,1),(570,-907408800,2),(570,-770634000,1),(570,2147483647,1),(571,-2147483648,1),(571,-1717032240,3),(571,-1693706400,2),(571,-1680483600,3),(571,-1663455600,4),(571,-1650150000,5),(571,-1632006000,4),(571,-1618700400,8),(571,-1600473600,6),(571,-1587168000,7),(571,-1501725600,3),(571,-931734000,2),(571,-857257200,5),(571,-844556400,4),(571,-828226800,5),(571,-812502000,4),(571,-796874400,2),(571,-796608000,3),(571,-778726800,2),(571,-762660000,3),(571,-748486800,4),(571,-733273200,5),(571,-715215600,4),(571,-701910000,5),(571,-684975600,4),(571,-670460400,5),(571,-654130800,4),(571,-639010800,5),(571,-397094400,4),(571,-386812800,5),(571,-371088000,4),(571,-355363200,5),(571,-334195200,4),(571,-323308800,5),(571,-307584000,4),(571,-291859200,5),(571,-271296000,4),(571,-260409600,5),(571,-239846400,4),(571,-228960000,5),(571,-208396800,4),(571,-197510400,5),(571,-176342400,4),(571,-166060800,5),(571,220921200,3),(571,228873600,4),(571,243993600,5),(571,260323200,4),(571,276048000,5),(571,291772800,4),(571,307497600,5),(571,323827200,4),(571,338947200,5),(571,354672000,4),(571,370396800,5),(571,386121600,4),(571,401846400,5),(571,417571200,4),(571,433296000,5),(571,449020800,4),(571,465350400,5),(571,481075200,4),(571,496800000,5),(571,512524800,4),(571,528249600,5),(571,543974400,4),(571,559699200,5),(571,567990000,3),(571,575427600,9),(571,591152400,10),(571,606877200,9),(571,622602000,10),(571,638326800,9),(571,654656400,10),(571,670381200,9),(571,686106000,10),(571,701830800,9),(571,717555600,10),(571,733280400,9),(571,749005200,10),(571,764730000,9),(571,780454800,10),(571,796179600,9),(571,811904400,10),(571,828234000,9),(571,846378000,10),(571,859683600,9),(571,877827600,10),(571,891133200,9),(571,909277200,10),(571,922582800,9),(571,941331600,10),(571,954032400,9),(571,972781200,10),(571,985482000,9),(571,1004230800,10),(571,1017536400,9),(571,1035680400,10),(571,1048986000,9),(571,1067130000,10),(571,1080435600,9),(571,1099184400,10),(571,1111885200,9),(571,1130634000,10),(571,1143334800,9),(571,1162083600,10),(571,1174784400,9),(571,1193533200,10),(571,1206838800,9),(571,1224982800,10),(571,1238288400,9),(571,1256432400,10),(571,1269738000,9),(571,1288486800,10),(571,1301187600,9),(571,1319936400,10),(571,1332637200,9),(571,1351386000,10),(571,1364691600,9),(571,1382835600,10),(571,1396141200,9),(571,1414285200,10),(571,1427590800,9),(571,1445734800,10),(571,1459040400,9),(571,1477789200,10),(571,1490490000,9),(571,1509238800,10),(571,1521939600,9),(571,1540688400,10),(571,1553994000,9),(571,1572138000,10),(571,1585443600,9),(571,1603587600,10),(571,1616893200,9),(571,1635642000,10),(571,1648342800,9),(571,1667091600,10),(571,1679792400,9),(571,1698541200,10),(571,1711846800,9),(571,1729990800,10),(571,1743296400,9),(571,1761440400,10),(571,1774746000,9),(571,1792890000,10),(571,1806195600,9),(571,1824944400,10),(571,1837645200,9),(571,1856394000,10),(571,1869094800,9),(571,1887843600,10),(571,1901149200,9),(571,1919293200,10),(571,1932598800,9),(571,1950742800,10),(571,1964048400,9),(571,1982797200,10),(571,1995498000,9),(571,2014246800,10),(571,2026947600,9),(571,2045696400,10),(571,2058397200,9),(571,2077146000,10),(571,2090451600,9),(571,2108595600,10),(571,2121901200,9),(571,2140045200,10),(572,-2147483648,0),(572,-1830384000,6),(572,-1689555600,1),(572,-1677801600,2),(572,-1667437200,3),(572,-1647738000,4),(572,-1635814800,3),(572,-1616202000,4),(572,-1604365200,3),(572,-1584666000,4),(572,-1572742800,3),(572,-1553043600,4),(572,-1541206800,3),(572,-1521507600,4),(572,-1442451600,3),(572,-1426813200,4),(572,-1379293200,3),(572,-1364778000,4),(572,-1348448400,3),(572,-1333328400,4),(572,-1316394000,3),(572,-1301274000,4),(572,-1284339600,3),(572,-1269824400,4),(572,-1221440400,3),(572,-1206925200,4),(572,-1191200400,3),(572,-1175475600,4),(572,-1127696400,3),(572,-1111971600,4),(572,-1096851600,3),(572,-1080522000,4),(572,-1063587600,3),(572,-1049072400,4),(572,-1033347600,3),(572,-1017622800,4),(572,-1002502800,3),(572,-986173200,4),(572,-969238800,3),(572,-950490000,4),(572,-942022800,3),(572,-922669200,4),(572,-906944400,3),(572,-891133200,4),(572,-877309200,3),(572,-873684000,5),(572,-864007200,3),(572,-857955600,4),(572,-845859600,3),(572,-842839200,5),(572,-831348000,3),(572,-825901200,4),(572,-814410000,3),(572,-810784800,5),(572,-799898400,3),(572,-794451600,4),(572,-782960400,3),(572,-779335200,5),(572,-768448800,3),(572,-763002000,4),(572,-749091600,3),(572,-733366800,4),(572,-717631200,3),(572,-701906400,4),(572,-686181600,3),(572,-670456800,4),(572,-654732000,3),(572,-639007200,4),(572,-591832800,3),(572,-575503200,4),(572,-559778400,3),(572,-544053600,4),(572,-528328800,3),(572,-512604000,4),(572,-496879200,3),(572,-481154400,4),(572,-465429600,3),(572,-449704800,4),(572,-433980000,3),(572,-417650400,4),(572,-401925600,3),(572,-386200800,4),(572,-370476000,3),(572,-354751200,4),(572,-339026400,3),(572,-323301600,4),(572,-307576800,3),(572,-291852000,4),(572,-276127200,3),(572,-260402400,4),(572,-244677600,3),(572,-228348000,4),(572,-212623200,3),(572,-196898400,4),(572,-181173600,3),(572,-165448800,4),(572,-149724000,3),(572,-133999200,4),(572,-118274400,7),(572,212544000,2),(572,228268800,3),(572,243993600,4),(572,260323200,3),(572,276048000,4),(572,291772800,3),(572,307501200,4),(572,323222400,3),(572,338950800,4),(572,354675600,3),(572,370400400,4),(572,386125200,3),(572,401850000,4),(572,417578400,3),(572,433299600,4),(572,449024400,3),(572,465354000,4),(572,481078800,3),(572,496803600,4),(572,512528400,3),(572,528253200,4),(572,543978000,3),(572,559702800,4),(572,575427600,3),(572,591152400,4),(572,606877200,3),(572,622602000,4),(572,638326800,3),(572,654656400,4),(572,670381200,3),(572,686106000,4),(572,701830800,3),(572,717555600,8),(572,733280400,9),(572,749005200,8),(572,764730000,9),(572,780454800,8),(572,796179600,9),(572,811904400,8),(572,828234000,10),(572,846378000,6),(572,859683600,10),(572,877827600,6),(572,891133200,10),(572,909277200,6),(572,922582800,10),(572,941331600,6),(572,954032400,10),(572,972781200,6),(572,985482000,10),(572,1004230800,6),(572,1017536400,10),(572,1035680400,6),(572,1048986000,10),(572,1067130000,6),(572,1080435600,10),(572,1099184400,6),(572,1111885200,10),(572,1130634000,6),(572,1143334800,10),(572,1162083600,6),(572,1174784400,10),(572,1193533200,6),(572,1206838800,10),(572,1224982800,6),(572,1238288400,10),(572,1256432400,6),(572,1269738000,10),(572,1288486800,6),(572,1301187600,10),(572,1319936400,6),(572,1332637200,10),(572,1351386000,6),(572,1364691600,10),(572,1382835600,6),(572,1396141200,10),(572,1414285200,6),(572,1427590800,10),(572,1445734800,6),(572,1459040400,10),(572,1477789200,6),(572,1490490000,10),(572,1509238800,6),(572,1521939600,10),(572,1540688400,6),(572,1553994000,10),(572,1572138000,6),(572,1585443600,10),(572,1603587600,6),(572,1616893200,10),(572,1635642000,6),(572,1648342800,10),(572,1667091600,6),(572,1679792400,10),(572,1698541200,6),(572,1711846800,10),(572,1729990800,6),(572,1743296400,10),(572,1761440400,6),(572,1774746000,10),(572,1792890000,6),(572,1806195600,10),(572,1824944400,6),(572,1837645200,10),(572,1856394000,6),(572,1869094800,10),(572,1887843600,6),(572,1901149200,10),(572,1919293200,6),(572,1932598800,10),(572,1950742800,6),(572,1964048400,10),(572,1982797200,6),(572,1995498000,10),(572,2014246800,6),(572,2026947600,10),(572,2045696400,6),(572,2058397200,10),(572,2077146000,6),(572,2090451600,10),(572,2108595600,6),(572,2121901200,10),(572,2140045200,6),(573,-2147483648,1),(573,-1017820800,2),(573,-766224000,1),(573,-745833600,3),(573,-733827600,1),(573,-716889600,3),(573,-699613200,1),(573,-683884800,3),(573,-670669200,1),(573,-652348800,3),(573,-639133200,1),(573,-620812800,3),(573,-607597200,1),(573,-589276800,3),(573,-576061200,1),(573,-562924800,3),(573,-541760400,1),(573,-528710400,3),(573,-510224400,1),(573,-497174400,3),(573,-478688400,1),(573,-465638400,3),(573,-449830800,1),(573,-434016000,3),(573,-418208400,1),(573,-402480000,3),(573,-386672400,1),(573,-370944000,3),(573,-355136400,1),(573,-339408000,3),(573,-323600400,1),(573,-302515200,3),(573,-291978000,1),(573,-270979200,3),(573,-260442000,1),(573,133977600,3),(573,149785200,1),(573,165513600,3),(573,181321200,1),(573,299606400,3),(573,307551600,1),(574,-2147483648,0),(574,-1948782472,1),(574,-1830414600,2),(574,-767350800,4),(574,-681210000,3),(574,-672228000,4),(574,-654771600,3),(574,-640864800,4),(574,-623408400,3),(574,-609415200,4),(574,-588848400,3),(574,-577965600,4),(574,-498128400,1),(574,-462702600,5),(574,-451733400,1),(574,-429784200,5),(574,-418296600,1),(574,-399544200,5),(574,-387451800,1),(574,-368094600,5),(574,-356002200,1),(574,-336645000,5),(574,-324552600,1),(574,-305195400,5),(574,-293103000,1),(574,-264933000,4),(574,547578000,3),(574,560883600,4),(574,579027600,3),(574,592333200,4),(575,-2147483648,1),(575,-2038200925,2),(575,-1167634800,3),(575,-1073028000,4),(575,-894180000,5),(575,-879665400,6),(575,-767005200,5),(575,378664200,7),(575,2147483647,7),(576,-2147483648,1),(576,-873057600,3),(576,-769395600,2),(576,-765399600,1),(577,-2147483648,0),(577,-2131645536,2),(577,-1696276800,1),(577,-1680469200,2),(577,-1632074400,1),(577,-1615143600,2),(577,-1566763200,1),(577,-1557090000,2),(577,-1535486400,1),(577,-1524949200,2),(577,-1504468800,1),(577,-1493413200,2),(577,-1472414400,1),(577,-1461963600,2),(577,-1440964800,1),(577,-1429390800,2),(577,-1409515200,1),(577,-1396731600,2),(577,-1376856000,1),(577,-1366491600,2),(577,-1346616000,1),(577,-1333832400,2),(577,-1313956800,1),(577,-1303678800,2),(577,-1282507200,1),(577,-1272661200,2),(577,-1251057600,1),(577,-1240088400,2),(577,-1219608000,1),(577,-1207429200,2),(577,-1188763200,1),(577,-1175979600,2),(577,-1157313600,1),(577,-1143925200,2),(577,-1124049600,1),(577,-1113771600,2),(577,-1091390400,1),(577,-1081026000,2),(577,-1059854400,1),(577,-1050786000,2),(577,-1030910400,1),(577,-1018126800,2),(577,-999460800,1),(577,-986677200,2),(577,-965592000,1),(577,-955227600,2),(577,-935956800,1),(577,-923173200,2),(577,-904507200,1),(577,-891723600,2),(577,-880221600,3),(577,-769395600,4),(577,-765399600,2),(577,-747252000,1),(577,-733950000,2),(577,-715802400,1),(577,-702500400,2),(577,-684352800,1),(577,-671050800,2),(577,-652903200,1),(577,-639601200,2),(577,-589399200,1),(577,-576097200,2),(577,-557949600,1),(577,-544647600,2),(577,-526500000,1),(577,-513198000,2),(577,-495050400,1),(577,-481748400,2),(577,-431546400,1),(577,-418244400,2),(577,-400096800,1),(577,-386794800,2),(577,-368647200,1),(577,-355345200,2),(577,-337197600,1),(577,-323895600,2),(577,-242244000,1),(577,-226522800,2),(577,-210794400,1),(577,-195073200,2),(577,-179344800,1),(577,-163623600,2),(577,-147895200,1),(577,-131569200,2),(577,-116445600,1),(577,-100119600,2),(577,-84391200,1),(577,-68670000,2),(577,-52941600,1),(577,-37220400,2),(577,-21492000,1),(577,-5770800,2),(577,9957600,1),(577,25678800,2),(577,41407200,1),(577,57733200,2),(577,73461600,1),(577,89182800,2),(577,104911200,1),(577,120632400,2),(577,136360800,1),(577,152082000,2),(577,167810400,1),(577,183531600,2),(577,199260000,1),(577,215586000,2),(577,230709600,1),(577,247035600,2),(577,262764000,1),(577,278485200,2),(577,294213600,1),(577,309934800,2),(577,325663200,1),(577,341384400,2),(577,357112800,1),(577,372834000,2),(577,388562400,1),(577,404888400,2),(577,420012000,1),(577,436338000,2),(577,452066400,1),(577,467787600,2),(577,483516000,1),(577,499237200,2),(577,514965600,1),(577,530686800,2),(577,544600800,1),(577,562136400,2),(577,576050400,1),(577,594190800,2),(577,607500000,1),(577,625640400,2),(577,638949600,1),(577,657090000,2),(577,671004000,1),(577,688539600,2),(577,702453600,1),(577,719989200,2),(577,733903200,1),(577,752043600,2),(577,765352800,1),(577,783493200,2),(577,796802400,1),(577,814942800,2),(577,828856800,1),(577,846392400,2),(577,860306400,1),(577,877842000,2),(577,891756000,1),(577,909291600,2),(577,923205600,1),(577,941346000,2),(577,954655200,1),(577,972795600,2),(577,986104800,1),(577,1004245200,2),(577,1018159200,1),(577,1035694800,2),(577,1049608800,1),(577,1067144400,2),(577,1081058400,1),(577,1099198800,2),(577,1112508000,1),(577,1130648400,2),(577,1143957600,1),(577,1162098000,2),(577,1173592800,1),(577,1194152400,2),(577,1205042400,1),(577,1225602000,2),(577,1236492000,1),(577,1257051600,2),(577,1268546400,1),(577,1289106000,2),(577,1299996000,1),(577,1320555600,2),(577,1331445600,1),(577,1352005200,2),(577,1362895200,1),(577,1383454800,2),(577,1394344800,1),(577,1414904400,2),(577,1425794400,1),(577,1446354000,2),(577,1457848800,1),(577,1478408400,2),(577,1489298400,1),(577,1509858000,2),(577,1520748000,1),(577,1541307600,2),(577,1552197600,1),(577,1572757200,2),(577,1583647200,1),(577,1604206800,2),(577,1615701600,1),(577,1636261200,2),(577,1647151200,1),(577,1667710800,2),(577,1678600800,1),(577,1699160400,2),(577,1710050400,1),(577,1730610000,2),(577,1741500000,1),(577,1762059600,2),(577,1772949600,1),(577,1793509200,2),(577,1805004000,1),(577,1825563600,2),(577,1836453600,1),(577,1857013200,2),(577,1867903200,1),(577,1888462800,2),(577,1899352800,1),(577,1919912400,2),(577,1930802400,1),(577,1951362000,2),(577,1962856800,1),(577,1983416400,2),(577,1994306400,1),(577,2014866000,2),(577,2025756000,1),(577,2046315600,2),(577,2057205600,1),(577,2077765200,2),(577,2088655200,1),(577,2109214800,2),(577,2120104800,1),(577,2140664400,2),(578,-2147483648,0),(578,-2030202084,2),(578,-1632063600,1),(578,-1615132800,2),(578,-1251651600,1),(578,-1238349600,2),(578,-1220202000,1),(578,-1206900000,2),(578,-1188752400,1),(578,-1175450400,2),(578,-1156698000,1),(578,-1144000800,2),(578,-1125248400,1),(578,-1111946400,2),(578,-1032714000,1),(578,-1016992800,2),(578,-1001264400,1),(578,-986148000,2),(578,-969814800,1),(578,-954093600,2),(578,-937760400,1),(578,-922039200,2),(578,-906310800,1),(578,-890589600,2),(578,-880210800,3),(578,-769395600,4),(578,-765388800,2),(578,-748450800,1),(578,-732729600,2),(578,-715791600,1),(578,-702489600,2),(578,-684342000,1),(578,-671040000,2),(578,-652892400,1),(578,-639590400,2),(578,-620838000,1),(578,-608140800,2),(578,-589388400,1),(578,-576086400,2),(578,-557938800,1),(578,-544636800,2),(578,-526489200,1),(578,-513187200,2),(578,-495039600,1),(578,-481737600,2),(578,-463590000,1),(578,-450288000,2),(578,-431535600,1),(578,-418233600,2),(578,-400086000,1),(578,-386784000,2),(578,-337186800,1),(578,-321465600,2),(578,-305737200,5),(579,-2147483648,2),(579,-1633276800,1),(579,-1615136400,2),(579,-1601827200,1),(579,-1583686800,2),(579,-1563724800,1),(579,-1551632400,2),(579,-1538928000,1),(579,-1520182800,2),(579,-1504454400,1),(579,-1491757200,2),(579,-1473004800,1),(579,-1459702800,2),(579,-1441555200,1),(579,-1428253200,2),(579,-1410105600,1),(579,-1396803600,2),(579,-1378656000,1),(579,-1365354000,2),(579,-1347206400,1),(579,-1333904400,2),(579,-1315152000,1),(579,-1301850000,2),(579,-1283702400,1),(579,-1270400400,2),(579,-1252252800,1),(579,-1238950800,2),(579,-1220803200,1),(579,-1207501200,2),(579,-1189353600,1),(579,-1176051600,2),(579,-1157299200,1),(579,-1144602000,2),(579,-1125849600,1),(579,-1112547600,2),(579,-1094400000,1),(579,-1081098000,2),(579,-1067788800,3),(579,-1045414800,2),(579,-1031500800,1),(579,-1018198800,2),(579,-1000051200,1),(579,-986749200,2),(579,-967996800,1),(579,-955299600,2),(579,-936547200,1),(579,-923245200,2),(579,-905097600,1),(579,-891795600,2),(579,-880214400,4),(579,-769395600,5),(579,-765392400,2),(579,-747244800,1),(579,-733942800,2),(579,-715795200,1),(579,-702493200,2),(579,-684345600,1),(579,-671043600,2),(579,-652896000,1),(579,-639594000,2),(579,-620841600,1),(579,-608144400,2),(579,-589392000,1),(579,-576090000,2),(579,-557942400,1),(579,-544640400,2),(579,-526492800,1),(579,-513190800,2),(579,-495043200,1),(579,-481741200,2),(579,-463593600,1),(579,-447267600,2),(579,-431539200,1),(579,-415818000,2),(579,-400089600,1),(579,-384368400,2),(579,-368640000,1),(579,-352918800,2),(579,-337190400,1),(579,-321469200,2),(579,-305740800,1),(579,-289414800,2),(579,-273686400,1),(579,-257965200,2),(579,-242236800,1),(579,-226515600,2),(579,-210787200,1),(579,-195066000,2),(579,-179337600,1),(579,-163616400,2),(579,-147888000,1),(579,-131562000,2),(579,-116438400,1),(579,-100112400,2),(579,-84384000,1),(579,-68662800,2),(579,-52934400,1),(579,-37213200,2),(579,-21484800,1),(579,-5763600,2),(579,9964800,1),(579,25686000,2),(579,41414400,1),(579,57740400,2),(579,73468800,1),(579,89190000,2),(579,104918400,1),(579,120639600,2),(579,126691200,1),(579,152089200,2),(579,162374400,1),(579,183538800,2),(579,199267200,1),(579,215593200,2),(579,230716800,1),(579,247042800,2),(579,262771200,1),(579,278492400,2),(579,294220800,1),(579,309942000,2),(579,325670400,1),(579,341391600,2),(579,357120000,1),(579,372841200,2),(579,388569600,1),(579,404895600,2),(579,420019200,1),(579,436345200,2),(579,452073600,1),(579,467794800,2),(579,483523200,1),(579,499244400,2),(579,514972800,1),(579,530694000,2),(579,544608000,1),(579,562143600,2),(579,576057600,1),(579,594198000,2),(579,607507200,1),(579,625647600,2),(579,638956800,1),(579,657097200,2),(579,671011200,1),(579,688546800,2),(579,702460800,1),(579,719996400,2),(579,733910400,1),(579,752050800,2),(579,765360000,1),(579,783500400,2),(579,796809600,1),(579,814950000,2),(579,828864000,1),(579,846399600,2),(579,860313600,1),(579,877849200,2),(579,891763200,1),(579,909298800,2),(579,923212800,1),(579,941353200,2),(579,954662400,1),(579,972802800,2),(579,986112000,1),(579,1004252400,2),(579,1018166400,1),(579,1035702000,2),(579,1049616000,1),(579,1067151600,2),(579,1081065600,1),(579,1099206000,2),(579,1112515200,1),(579,1130655600,2),(579,1143964800,1),(579,1162105200,2),(579,1173600000,1),(579,1194159600,2),(579,1205049600,1),(579,1225609200,2),(579,1236499200,1),(579,1257058800,2),(579,1268553600,1),(579,1289113200,2),(579,1300003200,1),(579,1320562800,2),(579,1331452800,1),(579,1352012400,2),(579,1362902400,1),(579,1383462000,2),(579,1394352000,1),(579,1414911600,2),(579,1425801600,1),(579,1446361200,2),(579,1457856000,1),(579,1478415600,2),(579,1489305600,1),(579,1509865200,2),(579,1520755200,1),(579,1541314800,2),(579,1552204800,1),(579,1572764400,2),(579,1583654400,1),(579,1604214000,2),(579,1615708800,1),(579,1636268400,2),(579,1647158400,1),(579,1667718000,2),(579,1678608000,1),(579,1699167600,2),(579,1710057600,1),(579,1730617200,2),(579,1741507200,1),(579,1762066800,2),(579,1772956800,1),(579,1793516400,2),(579,1805011200,1),(579,1825570800,2),(579,1836460800,1),(579,1857020400,2),(579,1867910400,1),(579,1888470000,2),(579,1899360000,1),(579,1919919600,2),(579,1930809600,1),(579,1951369200,2),(579,1962864000,1),(579,1983423600,2),(579,1994313600,1),(579,2014873200,2),(579,2025763200,1),(579,2046322800,2),(579,2057212800,1),(579,2077772400,2),(579,2088662400,1),(579,2109222000,2),(579,2120112000,1),(579,2140671600,2),(580,-2147483648,1),(580,-1946918424,2),(581,-2147483648,2),(581,-1633280400,1),(581,-1615140000,2),(581,-1601830800,1),(581,-1583690400,2),(581,-1570381200,1),(581,-1551636000,2),(581,-1536512400,1),(581,-1523210400,2),(581,-1504458000,1),(581,-1491760800,2),(581,-1473008400,1),(581,-1459706400,2),(581,-1441558800,1),(581,-1428256800,2),(581,-1410109200,1),(581,-1396807200,2),(581,-1378659600,1),(581,-1365357600,2),(581,-1347210000,1),(581,-1333908000,2),(581,-1315155600,1),(581,-1301853600,2),(581,-1283706000,1),(581,-1270404000,2),(581,-1252256400,1),(581,-1238954400,2),(581,-1220806800,1),(581,-1207504800,2),(581,-1189357200,1),(581,-1176055200,2),(581,-1157302800,1),(581,-1144605600,2),(581,-1125853200,1),(581,-1112551200,2),(581,-1094403600,1),(581,-1081101600,2),(581,-1062954000,1),(581,-1049652000,2),(581,-1031504400,1),(581,-1018202400,2),(581,-1000054800,1),(581,-986752800,2),(581,-968000400,1),(581,-955303200,2),(581,-936550800,1),(581,-923248800,2),(581,-905101200,1),(581,-891799200,2),(581,-880218000,3),(581,-769395600,4),(581,-765396000,2),(581,-747248400,1),(581,-733946400,2),(581,-715798800,1),(581,-702496800,2),(581,-684349200,1),(581,-671047200,2),(581,-652899600,1),(581,-639597600,2),(581,-620845200,1),(581,-608148000,2),(581,-589395600,1),(581,-576093600,2),(581,-557946000,1),(581,-544644000,2),(581,-526496400,1),(581,-513194400,2),(581,-495046800,1),(581,-481744800,2),(581,-463597200,1),(581,-447271200,2),(581,-431542800,1),(581,-415821600,2),(581,-400093200,1),(581,-384372000,2),(581,-368643600,1),(581,-352922400,2),(581,-337194000,1),(581,-321472800,2),(581,-305744400,1),(581,-289418400,2),(581,-273690000,1),(581,-257968800,2),(581,-242240400,1),(581,-226519200,2),(581,-210790800,1),(581,-195069600,2),(581,-179341200,1),(581,-163620000,2),(581,-147891600,1),(581,-131565600,2),(581,-116442000,1),(581,-100116000,2),(581,-84387600,1),(581,-68666400,2),(581,-52938000,1),(581,-37216800,2),(581,-21488400,1),(581,-5767200,2),(581,9961200,1),(581,25682400,2),(581,41410800,1),(581,57736800,2),(581,73465200,1),(581,89186400,2),(581,104914800,1),(581,120636000,2),(581,126687600,1),(581,152085600,2),(581,162370800,1),(581,183535200,2),(581,199263600,1),(581,215589600,2),(581,230713200,1),(581,247039200,2),(581,262767600,1),(581,278488800,2),(581,294217200,1),(581,309938400,2),(581,325666800,1),(581,341388000,2),(581,357116400,1),(581,372837600,2),(581,388566000,1),(581,404892000,2),(581,420015600,1),(581,436341600,2),(581,452070000,1),(581,467791200,2),(581,483519600,1),(581,499240800,2),(581,514969200,1),(581,530690400,2),(581,544604400,1),(581,562140000,2),(581,576054000,1),(581,594194400,2),(581,607503600,1),(581,625644000,2),(581,638953200,1),(581,657093600,2),(581,671007600,1),(581,688543200,2),(581,702457200,1),(581,719992800,2),(581,733906800,1),(581,752047200,2),(581,765356400,1),(581,783496800,2),(581,796806000,1),(581,814946400,2),(581,828860400,1),(581,846396000,2),(581,860310000,1),(581,877845600,2),(581,891759600,1),(581,909295200,2),(581,923209200,1),(581,941349600,2),(581,954658800,1),(581,972799200,2),(581,986108400,1),(581,1004248800,2),(581,1018162800,1),(581,1035698400,2),(581,1049612400,1),(581,1067148000,2),(581,1081062000,1),(581,1099202400,2),(581,1112511600,1),(581,1130652000,2),(581,1143961200,1),(581,1162101600,2),(581,1173596400,1),(581,1194156000,2),(581,1205046000,1),(581,1225605600,2),(581,1236495600,1),(581,1257055200,2),(581,1268550000,1),(581,1289109600,2),(581,1299999600,1),(581,1320559200,2),(581,1331449200,1),(581,1352008800,2),(581,1362898800,1),(581,1383458400,2),(581,1394348400,1),(581,1414908000,2),(581,1425798000,1),(581,1446357600,2),(581,1457852400,1),(581,1478412000,2),(581,1489302000,1),(581,1509861600,2),(581,1520751600,1),(581,1541311200,2),(581,1552201200,1),(581,1572760800,2),(581,1583650800,1),(581,1604210400,2),(581,1615705200,1),(581,1636264800,2),(581,1647154800,1),(581,1667714400,2),(581,1678604400,1),(581,1699164000,2),(581,1710054000,1),(581,1730613600,2),(581,1741503600,1),(581,1762063200,2),(581,1772953200,1),(581,1793512800,2),(581,1805007600,1),(581,1825567200,2),(581,1836457200,1),(581,1857016800,2),(581,1867906800,1),(581,1888466400,2),(581,1899356400,1),(581,1919916000,2),(581,1930806000,1),(581,1951365600,2),(581,1962860400,1),(581,1983420000,2),(581,1994310000,1),(581,2014869600,2),(581,2025759600,1),(581,2046319200,2),(581,2057209200,1),(581,2077768800,2),(581,2088658800,1),(581,2109218400,2),(581,2120108400,1),(581,2140668000,2),(582,-2147483648,1),(582,-1157283000,2),(582,-1155436200,1),(582,-880198200,3),(582,-769395600,4),(582,-765376200,1),(582,-712150200,5),(583,-2147483648,2),(583,-1633273200,1),(583,-1615132800,2),(583,-1601823600,1),(583,-1583683200,2),(583,-880210800,3),(583,-820519140,2),(583,-812653140,3),(583,-796845540,2),(583,-84380400,1),(583,-68659200,2),(584,-2147483648,2),(584,-1633273200,1),(584,-1615132800,2),(584,-1601823600,1),(584,-1583683200,2),(584,-1570374000,1),(584,-1551628800,2),(584,-1538924400,1),(584,-1534089600,2),(584,-880210800,3),(584,-769395600,4),(584,-765388800,2),(584,-147884400,1),(584,-131558400,2),(584,-116434800,1),(584,-100108800,2),(584,-84380400,1),(584,-68659200,2),(584,-52930800,1),(584,-37209600,2),(584,-21481200,1),(584,-5760000,2),(584,9968400,1),(584,25689600,2),(584,41418000,1),(584,57744000,2),(584,73472400,1),(584,89193600,2),(584,104922000,1),(584,120643200,2),(584,126694800,1),(584,152092800,2),(584,162378000,1),(584,183542400,2),(584,199270800,1),(584,215596800,2),(584,230720400,1),(584,247046400,2),(584,262774800,1),(584,278496000,2),(584,294224400,1),(584,309945600,2),(584,325674000,1),(584,341395200,2),(584,357123600,1),(584,372844800,2),(584,388573200,1),(584,404899200,2),(584,420022800,1),(584,436348800,2),(584,452077200,1),(584,467798400,2),(584,483526800,1),(584,499248000,2),(584,514976400,1),(584,530697600,2),(584,544611600,1),(584,562147200,2),(584,576061200,1),(584,594201600,2),(584,607510800,1),(584,625651200,2),(584,638960400,1),(584,657100800,2),(584,671014800,1),(584,688550400,2),(584,702464400,1),(584,720000000,2),(584,733914000,1),(584,752054400,2),(584,765363600,1),(584,783504000,2),(584,796813200,1),(584,814953600,2),(584,828867600,1),(584,846403200,2),(584,860317200,1),(584,877852800,2),(584,891766800,1),(584,909302400,2),(584,923216400,1),(584,941356800,2),(584,954666000,1),(584,972806400,2),(584,986115600,1),(584,1004256000,2),(584,1018170000,1),(584,1035705600,2),(584,1049619600,1),(584,1067155200,2),(584,1081069200,1),(584,1099209600,2),(584,1112518800,1),(584,1130659200,2),(584,1143968400,1),(584,1162108800,2),(584,1173603600,1),(584,1194163200,2),(584,1205053200,1),(584,1225612800,2),(584,1236502800,1),(584,1257062400,2),(584,1268557200,1),(584,1289116800,2),(584,1300006800,1),(584,1320566400,2),(584,1331456400,1),(584,1352016000,2),(584,1362906000,1),(584,1383465600,2),(584,1394355600,1),(584,1414915200,2),(584,1425805200,1),(584,1446364800,2),(584,1457859600,1),(584,1478419200,2),(584,1489309200,1),(584,1509868800,2),(584,1520758800,1),(584,1541318400,2),(584,1552208400,1),(584,1572768000,2),(584,1583658000,1),(584,1604217600,2),(584,1615712400,1),(584,1636272000,2),(584,1647162000,1),(584,1667721600,2),(584,1678611600,1),(584,1699171200,2),(584,1710061200,1),(584,1730620800,2),(584,1741510800,1),(584,1762070400,2),(584,1772960400,1),(584,1793520000,2),(584,1805014800,1),(584,1825574400,2),(584,1836464400,1),(584,1857024000,2),(584,1867914000,1),(584,1888473600,2),(584,1899363600,1),(584,1919923200,2),(584,1930813200,1),(584,1951372800,2),(584,1962867600,1),(584,1983427200,2),(584,1994317200,1),(584,2014876800,2),(584,2025766800,1),(584,2046326400,2),(584,2057216400,1),(584,2077776000,2),(584,2088666000,1),(584,2109225600,2),(584,2120115600,1),(584,2140675200,2),(585,-2147483648,1),(585,893665800,2),(585,2147483647,2),(586,-2147483648,2),(586,-1633269600,1),(586,-1615129200,2),(586,-1601820000,1),(586,-1583679600,2),(586,-880207200,3),(586,-769395600,4),(586,-765385200,2),(586,-687967140,1),(586,-662655600,2),(586,-620838000,1),(586,-608137200,2),(586,-589388400,1),(586,-576082800,2),(586,-557938800,1),(586,-544633200,2),(586,-526489200,1),(586,-513183600,2),(586,-495039600,1),(586,-481734000,2),(586,-463590000,1),(586,-450284400,2),(586,-431535600,1),(586,-418230000,2),(586,-400086000,1),(586,-386780400,2),(586,-368636400,1),(586,-355330800,2),(586,-337186800,1),(586,-323881200,2),(586,-305737200,1),(586,-292431600,2),(586,-273682800,1),(586,-260982000,2),(586,-242233200,1),(586,-226508400,2),(586,-210783600,1),(586,-195058800,2),(586,-179334000,1),(586,-163609200,2),(586,-147884400,1),(586,-131554800,2),(586,-116434800,1),(586,-100105200,2),(586,-84376800,1),(586,-68655600,2),(586,-52927200,1),(586,-37206000,2),(586,-21477600,1),(586,-5756400,2),(586,9972000,1),(586,25693200,2),(586,41421600,1),(586,57747600,2),(586,73476000,1),(586,89197200,2),(586,104925600,1),(586,120646800,2),(586,126698400,1),(586,152096400,2),(586,162381600,1),(586,183546000,2),(586,199274400,1),(586,215600400,2),(586,230724000,1),(586,247050000,2),(586,262778400,1),(586,278499600,2),(586,294228000,1),(586,309949200,2),(586,325677600,1),(586,341398800,2),(586,357127200,1),(586,372848400,2),(586,388576800,1),(586,404902800,2),(586,420026400,1),(586,436352400,2),(586,452080800,1),(586,467802000,2),(586,483530400,1),(586,499251600,2),(586,514980000,1),(586,530701200,2),(586,544615200,1),(586,562150800,2),(586,576064800,1),(586,594205200,2),(586,607514400,1),(586,625654800,2),(586,638964000,1),(586,657104400,2),(586,671018400,1),(586,688554000,2),(586,702468000,1),(586,720003600,2),(586,733917600,1),(586,752058000,2),(586,765367200,1),(586,783507600,2),(586,796816800,1),(586,814957200,2),(586,828871200,1),(586,846406800,2),(586,860320800,1),(586,877856400,2),(586,891770400,1),(586,909306000,2),(586,923220000,1),(586,941360400,2),(586,954669600,1),(586,972810000,2),(586,986119200,1),(586,1004259600,2),(586,1018173600,1),(586,1035709200,2),(586,1049623200,1),(586,1067158800,2),(586,1081072800,1),(586,1099213200,2),(586,1112522400,1),(586,1130662800,2),(586,1143972000,1),(586,1162112400,2),(586,1173607200,1),(586,1194166800,2),(586,1205056800,1),(586,1225616400,2),(586,1236506400,1),(586,1257066000,2),(586,1268560800,1),(586,1289120400,2),(586,1300010400,1),(586,1320570000,2),(586,1331460000,1),(586,1352019600,2),(586,1362909600,1),(586,1383469200,2),(586,1394359200,1),(586,1414918800,2),(586,1425808800,1),(586,1446368400,2),(586,1457863200,1),(586,1478422800,2),(586,1489312800,1),(586,1509872400,2),(586,1520762400,1),(586,1541322000,2),(586,1552212000,1),(586,1572771600,2),(586,1583661600,1),(586,1604221200,2),(586,1615716000,1),(586,1636275600,2),(586,1647165600,1),(586,1667725200,2),(586,1678615200,1),(586,1699174800,2),(586,1710064800,1),(586,1730624400,2),(586,1741514400,1),(586,1762074000,2),(586,1772964000,1),(586,1793523600,2),(586,1805018400,1),(586,1825578000,2),(586,1836468000,1),(586,1857027600,2),(586,1867917600,1),(586,1888477200,2),(586,1899367200,1),(586,1919926800,2),(586,1930816800,1),(586,1951376400,2),(586,1962871200,1),(586,1983430800,2),(586,1994320800,1),(586,2014880400,2),(586,2025770400,1),(586,2046330000,2),(586,2057220000,1),(586,2077779600,2),(586,2088669600,1),(586,2109229200,2),(586,2120119200,1),(586,2140678800,2),(587,-2147483648,0),(587,-1806678012,1),(587,2147483647,1),(588,-2147483648,1),(588,-880200000,2),(588,-769395600,3),(588,-765378000,1),(588,-86882400,4),(588,-21470400,5),(588,-5749200,4),(588,9979200,5),(588,25700400,4),(588,41428800,5),(588,57754800,4),(588,73483200,5),(588,89204400,4),(588,104932800,5),(588,120654000,4),(588,126705600,5),(588,152103600,4),(588,162388800,5),(588,183553200,4),(588,199281600,5),(588,215607600,4),(588,230731200,5),(588,247057200,4),(588,262785600,5),(588,278506800,4),(588,294235200,5),(588,309956400,4),(588,325684800,5),(588,341406000,4),(588,357134400,5),(588,372855600,4),(588,388584000,5),(588,404910000,4),(588,420033600,5),(588,436359600,6),(588,439030800,8),(588,452084400,7),(588,467805600,8),(588,483534000,7),(588,499255200,8),(588,514983600,7),(588,530704800,8),(588,544618800,7),(588,562154400,8),(588,576068400,7),(588,594208800,8),(588,607518000,7),(588,625658400,8),(588,638967600,7),(588,657108000,8),(588,671022000,7),(588,688557600,8),(588,702471600,7),(588,720007200,8),(588,733921200,7),(588,752061600,8),(588,765370800,7),(588,783511200,8),(588,796820400,7),(588,814960800,8),(588,828874800,7),(588,846410400,8),(588,860324400,7),(588,877860000,8),(588,891774000,7),(588,909309600,8),(588,923223600,7),(588,941364000,8),(588,954673200,7),(588,972813600,8),(588,986122800,7),(588,1004263200,8),(588,1018177200,7),(588,1035712800,8),(588,1049626800,7),(588,1067162400,8),(588,1081076400,7),(588,1099216800,8),(588,1112526000,7),(588,1130666400,8),(588,1143975600,7),(588,1162116000,8),(588,1173610800,7),(588,1194170400,8),(588,1205060400,7),(588,1225620000,8),(588,1236510000,7),(588,1257069600,8),(588,1268564400,7),(588,1289124000,8),(588,1300014000,7),(588,1320573600,8),(588,1331463600,7),(588,1352023200,8),(588,1362913200,7),(588,1383472800,8),(588,1394362800,7),(588,1414922400,8),(588,1425812400,7),(588,1446372000,8),(588,1457866800,7),(588,1478426400,8),(588,1489316400,7),(588,1509876000,8),(588,1520766000,7),(588,1541325600,8),(588,1552215600,7),(588,1572775200,8),(588,1583665200,7),(588,1604224800,8),(588,1615719600,7),(588,1636279200,8),(588,1647169200,7),(588,1667728800,8),(588,1678618800,7),(588,1699178400,8),(588,1710068400,7),(588,1730628000,8),(588,1741518000,7),(588,1762077600,8),(588,1772967600,7),(588,1793527200,8),(588,1805022000,7),(588,1825581600,8),(588,1836471600,7),(588,1857031200,8),(588,1867921200,7),(588,1888480800,8),(588,1899370800,7),(588,1919930400,8),(588,1930820400,7),(588,1951380000,8),(588,1962874800,7),(588,1983434400,8),(588,1994324400,7),(588,2014884000,8),(588,2025774000,7),(588,2046333600,8),(588,2057223600,7),(588,2077783200,8),(588,2088673200,7),(588,2109232800,8),(588,2120122800,7),(588,2140682400,8),(589,-2147483648,1),(589,-1869875816,3),(589,-1693706400,2),(589,-1680490800,3),(589,-1570413600,2),(589,-1552186800,3),(589,-1538359200,2),(589,-1522551600,3),(589,-1507514400,2),(589,-1490583600,3),(589,-1440208800,2),(589,-1428030000,3),(589,-1409709600,2),(589,-1396494000,3),(589,-931053600,2),(589,-922676400,3),(589,-917834400,2),(589,-892436400,3),(589,-875844000,2),(589,-764737200,3),(589,-744343200,2),(589,-733806000,3),(589,-716436000,2),(589,-701924400,3),(589,-684986400,2),(589,-670474800,3),(589,-654141600,2),(589,-639025200,3),(589,-622087200,2),(589,-606970800,3),(589,-590032800,2),(589,-575521200,3),(589,-235620000,2),(589,-194842800,3),(589,-177732000,2),(589,-165726000,3),(589,107910000,2),(589,121215600,3),(589,133920000,2),(589,152665200,3),(589,164678400,2),(589,184114800,3),(589,196214400,2),(589,215564400,3),(589,228873600,2),(589,245804400,3),(589,260323200,2),(589,267915600,4),(589,428454000,5),(589,433893600,4),(589,468111600,3),(589,482799600,6),(589,496710000,7),(589,512521200,6),(589,528246000,7),(589,543970800,6),(589,559695600,7),(589,575420400,6),(589,591145200,7),(589,606870000,6),(589,622594800,7),(589,638319600,6),(589,654649200,7),(589,670374000,6),(589,686098800,7),(589,701823600,6),(589,717548400,7),(589,733273200,6),(589,748998000,7),(589,764118000,6),(589,780447600,7),(589,796172400,6),(589,811897200,7),(589,828226800,6),(589,846370800,7),(589,859676400,6),(589,877820400,7),(589,891126000,6),(589,909270000,7),(589,922575600,6),(589,941324400,7),(589,954025200,6),(589,972774000,7),(589,985474800,6),(589,1004223600,7),(589,1017529200,6),(589,1035673200,7),(589,1048978800,6),(589,1067122800,7),(589,1080428400,6),(589,1099177200,7),(589,1111878000,6),(589,1130626800,7),(589,1143327600,6),(589,1162076400,7),(589,1167602400,3),(589,1174784400,8),(589,1193533200,9),(589,1206838800,8),(589,1224982800,9),(589,1238288400,8),(589,1256432400,9),(589,1269738000,8),(589,1288486800,9),(589,1301274000,8),(589,1319936400,9),(589,1332637200,8),(589,1351386000,9),(589,1364691600,8),(589,1382835600,9),(589,1396227600,8),(589,1414285200,9),(589,1427590800,8),(589,1446944400,9),(589,1459040400,8),(589,1473195600,4),(589,2147483647,4),(591,-2147483648,1),(591,-880200000,2),(591,-769395600,3),(591,-765378000,1),(591,-86882400,4),(591,-21470400,5),(591,-5749200,4),(591,9979200,5),(591,25700400,4),(591,41428800,5),(591,57754800,4),(591,73483200,5),(591,89204400,4),(591,104932800,5),(591,120654000,4),(591,126705600,5),(591,152103600,4),(591,162388800,5),(591,183553200,4),(591,199281600,5),(591,215607600,4),(591,230731200,5),(591,247057200,4),(591,262785600,5),(591,278506800,4),(591,294235200,5),(591,309956400,4),(591,325684800,5),(591,341406000,4),(591,357134400,5),(591,372855600,4),(591,388584000,5),(591,404910000,4),(591,420033600,5),(591,436359600,6),(591,439030800,8),(591,452084400,7),(591,467805600,8),(591,483534000,7),(591,499255200,8),(591,514983600,7),(591,530704800,8),(591,544618800,7),(591,562154400,8),(591,576068400,7),(591,594208800,8),(591,607518000,7),(591,625658400,8),(591,638967600,7),(591,657108000,8),(591,671022000,7),(591,688557600,8),(591,702471600,7),(591,720007200,8),(591,733921200,7),(591,752061600,8),(591,765370800,7),(591,783511200,8),(591,796820400,7),(591,814960800,8),(591,828874800,7),(591,846410400,8),(591,860324400,7),(591,877860000,8),(591,891774000,7),(591,909309600,8),(591,923223600,7),(591,941364000,8),(591,954673200,7),(591,972813600,8),(591,986122800,7),(591,1004263200,8),(591,1018177200,7),(591,1035712800,8),(591,1049626800,7),(591,1067162400,8),(591,1081076400,7),(591,1099216800,8),(591,1112526000,7),(591,1130666400,8),(591,1143975600,7),(591,1162116000,8),(591,1173610800,7),(591,1194170400,8),(591,1205060400,7),(591,1225620000,8),(591,1236510000,7),(591,1257069600,8),(591,1268564400,7),(591,1289124000,8),(591,1300014000,7),(591,1320573600,8),(591,1331463600,7),(591,1352023200,8),(591,1362913200,7),(591,1383472800,8),(591,1394362800,7),(591,1414922400,8),(591,1425812400,7),(591,1446372000,8),(591,1457866800,7),(591,1478426400,8),(591,1489316400,7),(591,1509876000,8),(591,1520766000,7),(591,1541325600,8),(591,1552215600,7),(591,1572775200,8),(591,1583665200,7),(591,1604224800,8),(591,1615719600,7),(591,1636279200,8),(591,1647169200,7),(591,1667728800,8),(591,1678618800,7),(591,1699178400,8),(591,1710068400,7),(591,1730628000,8),(591,1741518000,7),(591,1762077600,8),(591,1772967600,7),(591,1793527200,8),(591,1805022000,7),(591,1825581600,8),(591,1836471600,7),(591,1857031200,8),(591,1867921200,7),(591,1888480800,8),(591,1899370800,7),(591,1919930400,8),(591,1930820400,7),(591,1951380000,8),(591,1962874800,7),(591,1983434400,8),(591,1994324400,7),(591,2014884000,8),(591,2025774000,7),(591,2046333600,8),(591,2057223600,7),(591,2077783200,8),(591,2088673200,7),(591,2109232800,8),(591,2120122800,7),(591,2140682400,8),(592,-2147483648,1),(592,-880196400,2),(592,-769395600,3),(592,-765374400,1),(592,-86878800,4),(592,-21466800,5),(592,-5745600,4),(592,9982800,5),(592,25704000,4),(592,41432400,5),(592,57758400,4),(592,73486800,5),(592,89208000,4),(592,104936400,5),(592,120657600,4),(592,126709200,5),(592,152107200,4),(592,162392400,5),(592,183556800,4),(592,199285200,5),(592,215611200,4),(592,230734800,5),(592,247060800,4),(592,262789200,5),(592,278510400,4),(592,294238800,5),(592,309960000,4),(592,325688400,5),(592,341409600,4),(592,357138000,5),(592,372859200,4),(592,388587600,5),(592,404913600,4),(592,420037200,5),(592,436363200,6),(592,439034400,8),(592,452088000,7),(592,467809200,8),(592,483537600,7),(592,499258800,8),(592,514987200,7),(592,530708400,8),(592,544622400,7),(592,562158000,8),(592,576072000,7),(592,594212400,8),(592,607521600,7),(592,625662000,8),(592,638971200,7),(592,657111600,8),(592,671025600,7),(592,688561200,8),(592,702475200,7),(592,720010800,8),(592,733924800,7),(592,752065200,8),(592,765374400,7),(592,783514800,8),(592,796824000,7),(592,814964400,8),(592,828878400,7),(592,846414000,8),(592,860328000,7),(592,877863600,8),(592,891777600,7),(592,909313200,8),(592,923227200,7),(592,941367600,8),(592,954676800,7),(592,972817200,8),(592,986126400,7),(592,1004266800,8),(592,1018180800,7),(592,1035716400,8),(592,1049630400,7),(592,1067166000,8),(592,1081080000,7),(592,1099220400,8),(592,1112529600,7),(592,1130670000,8),(592,1143979200,7),(592,1162119600,8),(592,1173614400,7),(592,1194174000,8),(592,1205064000,7),(592,1225623600,8),(592,1236513600,7),(592,1257073200,8),(592,1268568000,7),(592,1289127600,8),(592,1300017600,7),(592,1320577200,8),(592,1331467200,7),(592,1352026800,8),(592,1362916800,7),(592,1383476400,8),(592,1394366400,7),(592,1414926000,8),(592,1425816000,7),(592,1446375600,8),(592,1457870400,7),(592,1478430000,8),(592,1489320000,7),(592,1509879600,8),(592,1520769600,7),(592,1541329200,8),(592,1552219200,7),(592,1572778800,8),(592,1583668800,7),(592,1604228400,8),(592,1615723200,7),(592,1636282800,8),(592,1647172800,7),(592,1667732400,8),(592,1678622400,7),(592,1699182000,8),(592,1710072000,7),(592,1730631600,8),(592,1741521600,7),(592,1762081200,8),(592,1772971200,7),(592,1793530800,8),(592,1805025600,7),(592,1825585200,8),(592,1836475200,7),(592,1857034800,8),(592,1867924800,7),(592,1888484400,8),(592,1899374400,7),(592,1919934000,8),(592,1930824000,7),(592,1951383600,8),(592,1962878400,7),(592,1983438000,8),(592,1994328000,7),(592,2014887600,8),(592,2025777600,7),(592,2046337200,8),(592,2057227200,7),(592,2077786800,8),(592,2088676800,7),(592,2109236400,8),(592,2120126400,7),(592,2140686000,8),(593,-2147483648,2),(593,-1633273200,1),(593,-1615132800,2),(593,-1601823600,1),(593,-1583683200,2),(593,-880210800,3),(593,-820519140,2),(593,-812653140,3),(593,-796845540,2),(593,-84380400,1),(593,-68659200,2),(594,-2147483648,2),(594,-1633276800,1),(594,-1615136400,2),(594,-1601827200,1),(594,-1583686800,2),(594,-1563724800,1),(594,-1551632400,2),(594,-1538928000,1),(594,-1520182800,2),(594,-1504454400,1),(594,-1491757200,2),(594,-1473004800,1),(594,-1459702800,2),(594,-1441555200,1),(594,-1428253200,2),(594,-1410105600,1),(594,-1396803600,2),(594,-1378656000,1),(594,-1365354000,2),(594,-1347206400,1),(594,-1333904400,2),(594,-1315152000,1),(594,-1301850000,2),(594,-1283702400,1),(594,-1270400400,2),(594,-1252252800,1),(594,-1238950800,2),(594,-1220803200,1),(594,-1207501200,2),(594,-1189353600,1),(594,-1176051600,2),(594,-1157299200,1),(594,-1144602000,2),(594,-1125849600,1),(594,-1112547600,2),(594,-1094400000,1),(594,-1081098000,2),(594,-1067788800,3),(594,-1045414800,2),(594,-1031500800,1),(594,-1018198800,2),(594,-1000051200,1),(594,-986749200,2),(594,-967996800,1),(594,-955299600,2),(594,-936547200,1),(594,-923245200,2),(594,-905097600,1),(594,-891795600,2),(594,-880214400,4),(594,-769395600,5),(594,-765392400,2),(594,-747244800,1),(594,-733942800,2),(594,-715795200,1),(594,-702493200,2),(594,-684345600,1),(594,-671043600,2),(594,-652896000,1),(594,-639594000,2),(594,-620841600,1),(594,-608144400,2),(594,-589392000,1),(594,-576090000,2),(594,-557942400,1),(594,-544640400,2),(594,-526492800,1),(594,-513190800,2),(594,-495043200,1),(594,-481741200,2),(594,-463593600,1),(594,-447267600,2),(594,-431539200,1),(594,-415818000,2),(594,-400089600,1),(594,-384368400,2),(594,-368640000,1),(594,-352918800,2),(594,-337190400,1),(594,-321469200,2),(594,-305740800,1),(594,-289414800,2),(594,-273686400,1),(594,-257965200,2),(594,-242236800,1),(594,-226515600,2),(594,-210787200,1),(594,-195066000,2),(594,-179337600,1),(594,-163616400,2),(594,-147888000,1),(594,-131562000,2),(594,-116438400,1),(594,-100112400,2),(594,-84384000,1),(594,-68662800,2),(594,-52934400,1),(594,-37213200,2),(594,-21484800,1),(594,-5763600,2),(594,9964800,1),(594,25686000,2),(594,41414400,1),(594,57740400,2),(594,73468800,1),(594,89190000,2),(594,104918400,1),(594,120639600,2),(594,126691200,1),(594,152089200,2),(594,162374400,1),(594,183538800,2),(594,199267200,1),(594,215593200,2),(594,230716800,1),(594,247042800,2),(594,262771200,1),(594,278492400,2),(594,294220800,1),(594,309942000,2),(594,325670400,1),(594,341391600,2),(594,357120000,1),(594,372841200,2),(594,388569600,1),(594,404895600,2),(594,420019200,1),(594,436345200,2),(594,452073600,1),(594,467794800,2),(594,483523200,1),(594,499244400,2),(594,514972800,1),(594,530694000,2),(594,544608000,1),(594,562143600,2),(594,576057600,1),(594,594198000,2),(594,607507200,1),(594,625647600,2),(594,638956800,1),(594,657097200,2),(594,671011200,1),(594,688546800,2),(594,702460800,1),(594,719996400,2),(594,733910400,1),(594,752050800,2),(594,765360000,1),(594,783500400,2),(594,796809600,1),(594,814950000,2),(594,828864000,1),(594,846399600,2),(594,860313600,1),(594,877849200,2),(594,891763200,1),(594,909298800,2),(594,923212800,1),(594,941353200,2),(594,954662400,1),(594,972802800,2),(594,986112000,1),(594,1004252400,2),(594,1018166400,1),(594,1035702000,2),(594,1049616000,1),(594,1067151600,2),(594,1081065600,1),(594,1099206000,2),(594,1112515200,1),(594,1130655600,2),(594,1143964800,1),(594,1162105200,2),(594,1173600000,1),(594,1194159600,2),(594,1205049600,1),(594,1225609200,2),(594,1236499200,1),(594,1257058800,2),(594,1268553600,1),(594,1289113200,2),(594,1300003200,1),(594,1320562800,2),(594,1331452800,1),(594,1352012400,2),(594,1362902400,1),(594,1383462000,2),(594,1394352000,1),(594,1414911600,2),(594,1425801600,1),(594,1446361200,2),(594,1457856000,1),(594,1478415600,2),(594,1489305600,1),(594,1509865200,2),(594,1520755200,1),(594,1541314800,2),(594,1552204800,1),(594,1572764400,2),(594,1583654400,1),(594,1604214000,2),(594,1615708800,1),(594,1636268400,2),(594,1647158400,1),(594,1667718000,2),(594,1678608000,1),(594,1699167600,2),(594,1710057600,1),(594,1730617200,2),(594,1741507200,1),(594,1762066800,2),(594,1772956800,1),(594,1793516400,2),(594,1805011200,1),(594,1825570800,2),(594,1836460800,1),(594,1857020400,2),(594,1867910400,1),(594,1888470000,2),(594,1899360000,1),(594,1919919600,2),(594,1930809600,1),(594,1951369200,2),(594,1962864000,1),(594,1983423600,2),(594,1994313600,1),(594,2014873200,2),(594,2025763200,1),(594,2046322800,2),(594,2057212800,1),(594,2077772400,2),(594,2088662400,1),(594,2109222000,2),(594,2120112000,1),(594,2140671600,2),(595,-2147483648,2),(595,-1633276800,1),(595,-1615136400,2),(595,-1601827200,1),(595,-1583686800,2),(595,-900259200,1),(595,-891795600,2),(595,-880214400,3),(595,-769395600,4),(595,-765392400,2),(595,-747244800,1),(595,-733942800,2),(595,-715795200,1),(595,-702493200,2),(595,-684345600,1),(595,-671043600,2),(595,-652896000,1),(595,-639594000,2),(595,-620841600,1),(595,-608144400,2),(595,-589392000,1),(595,-576090000,2),(595,-557942400,1),(595,-544640400,2),(595,-526492800,1),(595,-513190800,2),(595,-495043200,1),(595,-481741200,2),(595,-463593600,5),(595,-386787600,2),(595,-368640000,5),(595,-21488400,6),(595,-5767200,5),(595,9961200,6),(595,25682400,5),(595,1143961200,6),(595,1162101600,5),(595,1173596400,6),(595,1194156000,5),(595,1205046000,6),(595,1225605600,5),(595,1236495600,6),(595,1257055200,5),(595,1268550000,6),(595,1289109600,5),(595,1299999600,6),(595,1320559200,5),(595,1331449200,6),(595,1352008800,5),(595,1362898800,6),(595,1383458400,5),(595,1394348400,6),(595,1414908000,5),(595,1425798000,6),(595,1446357600,5),(595,1457852400,6),(595,1478412000,5),(595,1489302000,6),(595,1509861600,5),(595,1520751600,6),(595,1541311200,5),(595,1552201200,6),(595,1572760800,5),(595,1583650800,6),(595,1604210400,5),(595,1615705200,6),(595,1636264800,5),(595,1647154800,6),(595,1667714400,5),(595,1678604400,6),(595,1699164000,5),(595,1710054000,6),(595,1730613600,5),(595,1741503600,6),(595,1762063200,5),(595,1772953200,6),(595,1793512800,5),(595,1805007600,6),(595,1825567200,5),(595,1836457200,6),(595,1857016800,5),(595,1867906800,6),(595,1888466400,5),(595,1899356400,6),(595,1919916000,5),(595,1930806000,6),(595,1951365600,5),(595,1962860400,6),(595,1983420000,5),(595,1994310000,6),(595,2014869600,5),(595,2025759600,6),(595,2046319200,5),(595,2057209200,6),(595,2077768800,5),(595,2088658800,6),(595,2109218400,5),(595,2120108400,6),(595,2140668000,5),(596,-2147483648,2),(596,-1633280400,1),(596,-1615140000,2),(596,-1601830800,1),(596,-1583690400,2),(596,-1570381200,1),(596,-1551636000,2),(596,-1536512400,1),(596,-1523210400,2),(596,-1504458000,1),(596,-1491760800,2),(596,-1473008400,1),(596,-1459706400,2),(596,-1441558800,1),(596,-1428256800,2),(596,-1410109200,1),(596,-1396807200,2),(596,-1378659600,1),(596,-1365357600,2),(596,-1347210000,1),(596,-1333908000,2),(596,-1315155600,1),(596,-1301853600,2),(596,-1283706000,1),(596,-1270404000,2),(596,-1252256400,1),(596,-1238954400,2),(596,-1220806800,1),(596,-1207504800,2),(596,-1189357200,1),(596,-1176055200,2),(596,-1157302800,1),(596,-1144605600,2),(596,-1125853200,1),(596,-1112551200,2),(596,-1094403600,1),(596,-1081101600,2),(596,-1062954000,1),(596,-1049652000,2),(596,-1031504400,1),(596,-1018202400,2),(596,-1000054800,1),(596,-986752800,2),(596,-968000400,1),(596,-955303200,2),(596,-936550800,1),(596,-923248800,2),(596,-905101200,1),(596,-891799200,2),(596,-880218000,3),(596,-769395600,4),(596,-765396000,2),(596,-747248400,1),(596,-733946400,2),(596,-715798800,1),(596,-702496800,2),(596,-684349200,1),(596,-671047200,2),(596,-652899600,1),(596,-639597600,2),(596,-620845200,1),(596,-608148000,2),(596,-589395600,1),(596,-576093600,2),(596,-557946000,1),(596,-544644000,2),(596,-526496400,1),(596,-513194400,2),(596,-495046800,1),(596,-481744800,2),(596,-463597200,1),(596,-447271200,2),(596,-431542800,1),(596,-415821600,2),(596,-400093200,1),(596,-384372000,2),(596,-368643600,1),(596,-352922400,2),(596,-337194000,1),(596,-321472800,2),(596,-305744400,1),(596,-289418400,2),(596,-273690000,1),(596,-257968800,2),(596,-242240400,1),(596,-226519200,2),(596,-210790800,1),(596,-195069600,2),(596,-179341200,1),(596,-163620000,2),(596,-147891600,1),(596,-131565600,2),(596,-116442000,1),(596,-100116000,2),(596,-84387600,1),(596,-68666400,2),(596,-52938000,1),(596,-37216800,2),(596,-21488400,1),(596,-5767200,2),(596,9961200,1),(596,25682400,2),(596,41410800,1),(596,57736800,2),(596,73465200,1),(596,89186400,2),(596,104914800,1),(596,120636000,2),(596,126687600,1),(596,152085600,2),(596,162370800,1),(596,183535200,2),(596,199263600,1),(596,215589600,2),(596,230713200,1),(596,247039200,2),(596,262767600,1),(596,278488800,2),(596,294217200,1),(596,309938400,2),(596,325666800,1),(596,341388000,2),(596,357116400,1),(596,372837600,2),(596,388566000,1),(596,404892000,2),(596,420015600,1),(596,436341600,2),(596,452070000,1),(596,467791200,2),(596,483519600,1),(596,499240800,2),(596,514969200,1),(596,530690400,2),(596,544604400,1),(596,562140000,2),(596,576054000,1),(596,594194400,2),(596,607503600,1),(596,625644000,2),(596,638953200,1),(596,657093600,2),(596,671007600,1),(596,688543200,2),(596,702457200,1),(596,719992800,2),(596,733906800,1),(596,752047200,2),(596,765356400,1),(596,783496800,2),(596,796806000,1),(596,814946400,2),(596,828860400,1),(596,846396000,2),(596,860310000,1),(596,877845600,2),(596,891759600,1),(596,909295200,2),(596,923209200,1),(596,941349600,2),(596,954658800,1),(596,972799200,2),(596,986108400,1),(596,1004248800,2),(596,1018162800,1),(596,1035698400,2),(596,1049612400,1),(596,1067148000,2),(596,1081062000,1),(596,1099202400,2),(596,1112511600,1),(596,1130652000,2),(596,1143961200,1),(596,1162101600,2),(596,1173596400,1),(596,1194156000,2),(596,1205046000,1),(596,1225605600,2),(596,1236495600,1),(596,1257055200,2),(596,1268550000,1),(596,1289109600,2),(596,1299999600,1),(596,1320559200,2),(596,1331449200,1),(596,1352008800,2),(596,1362898800,1),(596,1383458400,2),(596,1394348400,1),(596,1414908000,2),(596,1425798000,1),(596,1446357600,2),(596,1457852400,1),(596,1478412000,2),(596,1489302000,1),(596,1509861600,2),(596,1520751600,1),(596,1541311200,2),(596,1552201200,1),(596,1572760800,2),(596,1583650800,1),(596,1604210400,2),(596,1615705200,1),(596,1636264800,2),(596,1647154800,1),(596,1667714400,2),(596,1678604400,1),(596,1699164000,2),(596,1710054000,1),(596,1730613600,2),(596,1741503600,1),(596,1762063200,2),(596,1772953200,1),(596,1793512800,2),(596,1805007600,1),(596,1825567200,2),(596,1836457200,1),(596,1857016800,2),(596,1867906800,1),(596,1888466400,2),(596,1899356400,1),(596,1919916000,2),(596,1930806000,1),(596,1951365600,2),(596,1962860400,1),(596,1983420000,2),(596,1994310000,1),(596,2014869600,2),(596,2025759600,1),(596,2046319200,2),(596,2057209200,1),(596,2077768800,2),(596,2088658800,1),(596,2109218400,2),(596,2120108400,1),(596,2140668000,2),(597,-2147483648,1),(597,-1157283000,2),(597,-1155436200,1),(597,-880198200,3),(597,-769395600,4),(597,-765376200,1),(597,-712150200,5),(598,-2147483648,2),(598,-1633276800,1),(598,-1615136400,2),(598,-1601827200,1),(598,-1583686800,2),(598,-880214400,3),(598,-769395600,4),(598,-765392400,2),(598,-715795200,1),(598,-702493200,2),(598,-684345600,1),(598,-671043600,2),(598,-652896000,1),(598,-639594000,2),(598,-620841600,1),(598,-608144400,2),(598,-589392000,1),(598,-576090000,2),(598,-557942400,1),(598,-544640400,2),(598,-526492800,1),(598,-513190800,2),(598,-495043200,1),(598,-481741200,2),(598,-463593600,1),(598,-447267600,2),(598,-431539200,1),(598,-415818000,2),(598,-400089600,1),(598,-386787600,2),(598,-368640000,1),(598,-355338000,2),(598,-337190400,1),(598,-321469200,2),(598,-305740800,1),(598,-289414800,2),(598,-273686400,1),(598,-257965200,2),(598,-242236800,5),(598,-195066000,2),(598,-84384000,1),(598,-68662800,2),(598,-52934400,1),(598,-37213200,2),(598,-21484800,1),(598,-5763600,2),(598,9964800,1),(598,25686000,2),(598,41414400,1),(598,57740400,2),(598,73468800,1),(598,89190000,2),(598,104918400,1),(598,120639600,2),(598,126691200,1),(598,152089200,2),(598,162374400,1),(598,183538800,2),(598,199267200,1),(598,215593200,2),(598,230716800,1),(598,247042800,2),(598,262771200,1),(598,278492400,2),(598,294220800,1),(598,309942000,2),(598,325670400,1),(598,341391600,2),(598,357120000,1),(598,372841200,2),(598,388569600,1),(598,404895600,2),(598,420019200,1),(598,436345200,2),(598,452073600,1),(598,467794800,2),(598,483523200,1),(598,499244400,2),(598,514972800,1),(598,530694000,2),(598,544608000,1),(598,562143600,2),(598,576057600,1),(598,594198000,2),(598,607507200,1),(598,625647600,2),(598,638956800,1),(598,657097200,2),(598,671011200,1),(598,688546800,5),(598,1143961200,1),(598,1162105200,2),(598,1173600000,1),(598,1194159600,2),(598,1205049600,1),(598,1225609200,2),(598,1236499200,1),(598,1257058800,2),(598,1268553600,1),(598,1289113200,2),(598,1300003200,1),(598,1320562800,2),(598,1331452800,1),(598,1352012400,2),(598,1362902400,1),(598,1383462000,2),(598,1394352000,1),(598,1414911600,2),(598,1425801600,1),(598,1446361200,2),(598,1457856000,1),(598,1478415600,2),(598,1489305600,1),(598,1509865200,2),(598,1520755200,1),(598,1541314800,2),(598,1552204800,1),(598,1572764400,2),(598,1583654400,1),(598,1604214000,2),(598,1615708800,1),(598,1636268400,2),(598,1647158400,1),(598,1667718000,2),(598,1678608000,1),(598,1699167600,2),(598,1710057600,1),(598,1730617200,2),(598,1741507200,1),(598,1762066800,2),(598,1772956800,1),(598,1793516400,2),(598,1805011200,1),(598,1825570800,2),(598,1836460800,1),(598,1857020400,2),(598,1867910400,1),(598,1888470000,2),(598,1899360000,1),(598,1919919600,2),(598,1930809600,1),(598,1951369200,2),(598,1962864000,1),(598,1983423600,2),(598,1994313600,1),(598,2014873200,2),(598,2025763200,1),(598,2046322800,2),(598,2057212800,1),(598,2077772400,2),(598,2088662400,1),(598,2109222000,2),(598,2120112000,1),(598,2140671600,2),(599,-2147483648,0),(599,-2051202469,1),(599,-1724083200,2),(599,-880218000,3),(599,-769395600,4),(599,-765396000,2),(599,-684349200,5),(599,-671047200,2),(599,-80506740,5),(599,-68666400,2),(599,-52938000,5),(599,-37216800,2),(599,104914800,5),(599,120636000,2),(599,126687600,5),(599,152085600,2),(599,167814000,5),(599,183535200,2),(599,199263600,5),(599,215589600,2),(599,230713200,5),(599,247039200,2),(599,262767600,5),(599,278488800,2),(599,294217200,5),(599,309938400,2),(599,325666800,5),(599,341388000,2),(599,357116400,5),(599,372837600,2),(599,388566000,5),(599,404892000,2),(599,420015600,5),(599,436341600,2),(599,452070000,5),(599,467791200,2),(599,483519600,5),(599,499240800,2),(599,514969200,5),(599,530690400,2),(599,544604400,5),(599,562140000,2),(599,576054000,5),(599,594194400,2),(599,607503600,5),(599,625644000,2),(599,638953200,5),(599,657093600,2),(599,671007600,5),(599,688543200,2),(599,702457200,5),(599,719992800,2),(599,733906800,5),(599,752047200,2),(599,765356400,5),(599,783496800,2),(599,796806000,5),(599,814946400,2),(599,828860400,5),(599,846396000,2),(599,860310000,5),(599,877845600,2),(599,891759600,5),(599,909295200,2),(599,923209200,5),(599,941349600,2),(599,954658800,5),(599,972799200,2),(599,986108400,5),(599,1004248800,2),(599,1018162800,5),(599,1035698400,2),(599,1049612400,5),(599,1067148000,2),(599,1081062000,5),(599,1099202400,2),(599,1112511600,5),(599,1130652000,2),(599,1143961200,5),(599,1162101600,2),(599,1173596400,5),(599,1194156000,2),(599,1205046000,5),(599,1225605600,2),(599,1236495600,5),(599,1257055200,2),(599,1268550000,5),(599,1289109600,2),(599,1299999600,5),(599,1320559200,2),(599,1331449200,5),(599,1352008800,2),(599,1362898800,5),(599,1383458400,2),(599,1394348400,5),(599,1414908000,2),(599,1425798000,5),(599,1446357600,2),(599,1457852400,5),(599,1478412000,2),(599,1489302000,5),(599,1509861600,2),(599,1520751600,5),(599,1541311200,2),(599,1552201200,5),(599,1572760800,2),(599,1583650800,5),(599,1604210400,2),(599,1615705200,5),(599,1636264800,2),(599,1647154800,5),(599,1667714400,2),(599,1678604400,5),(599,1699164000,2),(599,1710054000,5),(599,1730613600,2),(599,1741503600,5),(599,1762063200,2),(599,1772953200,5),(599,1793512800,2),(599,1805007600,5),(599,1825567200,2),(599,1836457200,5),(599,1857016800,2),(599,1867906800,5),(599,1888466400,2),(599,1899356400,5),(599,1919916000,2),(599,1930806000,5),(599,1951365600,2),(599,1962860400,5),(599,1983420000,2),(599,1994310000,5),(599,2014869600,2),(599,2025759600,5),(599,2046319200,2),(599,2057209200,5),(599,2077768800,2),(599,2088658800,5),(599,2109218400,2),(599,2120108400,5),(599,2140668000,2),(600,-2147483648,2),(600,-1633273200,1),(600,-1615132800,2),(600,-1601823600,1),(600,-1583683200,2),(600,-1570374000,1),(600,-1551628800,2),(600,-1538924400,1),(600,-1534089600,2),(600,-880210800,3),(600,-769395600,4),(600,-765388800,2),(600,-147884400,1),(600,-131558400,2),(600,-116434800,1),(600,-100108800,2),(600,-84380400,1),(600,-68659200,2),(600,-52930800,1),(600,-37209600,2),(600,-21481200,1),(600,-5760000,2),(600,9968400,1),(600,25689600,2),(600,41418000,1),(600,57744000,2),(600,73472400,1),(600,89193600,2),(600,104922000,1),(600,120643200,2),(600,126694800,1),(600,152092800,2),(600,162378000,1),(600,183542400,2),(600,199270800,1),(600,215596800,2),(600,230720400,1),(600,247046400,2),(600,262774800,1),(600,278496000,2),(600,294224400,1),(600,309945600,2),(600,325674000,1),(600,341395200,2),(600,357123600,1),(600,372844800,2),(600,388573200,1),(600,404899200,2),(600,420022800,1),(600,436348800,2),(600,452077200,1),(600,467798400,2),(600,483526800,1),(600,499248000,2),(600,514976400,1),(600,530697600,2),(600,544611600,1),(600,562147200,2),(600,576061200,1),(600,594201600,2),(600,607510800,1),(600,625651200,2),(600,638960400,1),(600,657100800,2),(600,671014800,1),(600,688550400,2),(600,702464400,1),(600,720000000,2),(600,733914000,1),(600,752054400,2),(600,765363600,1),(600,783504000,2),(600,796813200,1),(600,814953600,2),(600,828867600,1),(600,846403200,2),(600,860317200,1),(600,877852800,2),(600,891766800,1),(600,909302400,2),(600,923216400,1),(600,941356800,2),(600,954666000,1),(600,972806400,2),(600,986115600,1),(600,1004256000,2),(600,1018170000,1),(600,1035705600,2),(600,1049619600,1),(600,1067155200,2),(600,1081069200,1),(600,1099209600,2),(600,1112518800,1),(600,1130659200,2),(600,1143968400,1),(600,1162108800,2),(600,1173603600,1),(600,1194163200,2),(600,1205053200,1),(600,1225612800,2),(600,1236502800,1),(600,1257062400,2),(600,1268557200,1),(600,1289116800,2),(600,1300006800,1),(600,1320566400,2),(600,1331456400,1),(600,1352016000,2),(600,1362906000,1),(600,1383465600,2),(600,1394355600,1),(600,1414915200,2),(600,1425805200,1),(600,1446364800,2),(600,1457859600,1),(600,1478419200,2),(600,1489309200,1),(600,1509868800,2),(600,1520758800,1),(600,1541318400,2),(600,1552208400,1),(600,1572768000,2),(600,1583658000,1),(600,1604217600,2),(600,1615712400,1),(600,1636272000,2),(600,1647162000,1),(600,1667721600,2),(600,1678611600,1),(600,1699171200,2),(600,1710061200,1),(600,1730620800,2),(600,1741510800,1),(600,1762070400,2),(600,1772960400,1),(600,1793520000,2),(600,1805014800,1),(600,1825574400,2),(600,1836464400,1),(600,1857024000,2),(600,1867914000,1),(600,1888473600,2),(600,1899363600,1),(600,1919923200,2),(600,1930813200,1),(600,1951372800,2),(600,1962867600,1),(600,1983427200,2),(600,1994317200,1),(600,2014876800,2),(600,2025766800,1),(600,2046326400,2),(600,2057216400,1),(600,2077776000,2),(600,2088666000,1),(600,2109225600,2),(600,2120115600,1),(600,2140675200,2),(601,-2147483648,2),(601,-1633269600,1),(601,-1615129200,2),(601,-1601820000,1),(601,-1583679600,2),(601,-880207200,3),(601,-769395600,4),(601,-765385200,2),(601,-687967140,1),(601,-662655600,2),(601,-620838000,1),(601,-608137200,2),(601,-589388400,1),(601,-576082800,2),(601,-557938800,1),(601,-544633200,2),(601,-526489200,1),(601,-513183600,2),(601,-495039600,1),(601,-481734000,2),(601,-463590000,1),(601,-450284400,2),(601,-431535600,1),(601,-418230000,2),(601,-400086000,1),(601,-386780400,2),(601,-368636400,1),(601,-355330800,2),(601,-337186800,1),(601,-323881200,2),(601,-305737200,1),(601,-292431600,2),(601,-273682800,1),(601,-260982000,2),(601,-242233200,1),(601,-226508400,2),(601,-210783600,1),(601,-195058800,2),(601,-179334000,1),(601,-163609200,2),(601,-147884400,1),(601,-131554800,2),(601,-116434800,1),(601,-100105200,2),(601,-84376800,1),(601,-68655600,2),(601,-52927200,1),(601,-37206000,2),(601,-21477600,1),(601,-5756400,2),(601,9972000,1),(601,25693200,2),(601,41421600,1),(601,57747600,2),(601,73476000,1),(601,89197200,2),(601,104925600,1),(601,120646800,2),(601,126698400,1),(601,152096400,2),(601,162381600,1),(601,183546000,2),(601,199274400,1),(601,215600400,2),(601,230724000,1),(601,247050000,2),(601,262778400,1),(601,278499600,2),(601,294228000,1),(601,309949200,2),(601,325677600,1),(601,341398800,2),(601,357127200,1),(601,372848400,2),(601,388576800,1),(601,404902800,2),(601,420026400,1),(601,436352400,2),(601,452080800,1),(601,467802000,2),(601,483530400,1),(601,499251600,2),(601,514980000,1),(601,530701200,2),(601,544615200,1),(601,562150800,2),(601,576064800,1),(601,594205200,2),(601,607514400,1),(601,625654800,2),(601,638964000,1),(601,657104400,2),(601,671018400,1),(601,688554000,2),(601,702468000,1),(601,720003600,2),(601,733917600,1),(601,752058000,2),(601,765367200,1),(601,783507600,2),(601,796816800,1),(601,814957200,2),(601,828871200,1),(601,846406800,2),(601,860320800,1),(601,877856400,2),(601,891770400,1),(601,909306000,2),(601,923220000,1),(601,941360400,2),(601,954669600,1),(601,972810000,2),(601,986119200,1),(601,1004259600,2),(601,1018173600,1),(601,1035709200,2),(601,1049623200,1),(601,1067158800,2),(601,1081072800,1),(601,1099213200,2),(601,1112522400,1),(601,1130662800,2),(601,1143972000,1),(601,1162112400,2),(601,1173607200,1),(601,1194166800,2),(601,1205056800,1),(601,1225616400,2),(601,1236506400,1),(601,1257066000,2),(601,1268560800,1),(601,1289120400,2),(601,1300010400,1),(601,1320570000,2),(601,1331460000,1),(601,1352019600,2),(601,1362909600,1),(601,1383469200,2),(601,1394359200,1),(601,1414918800,2),(601,1425808800,1),(601,1446368400,2),(601,1457863200,1),(601,1478422800,2),(601,1489312800,1),(601,1509872400,2),(601,1520762400,1),(601,1541322000,2),(601,1552212000,1),(601,1572771600,2),(601,1583661600,1),(601,1604221200,2),(601,1615716000,1),(601,1636275600,2),(601,1647165600,1),(601,1667725200,2),(601,1678615200,1),(601,1699174800,2),(601,1710064800,1),(601,1730624400,2),(601,1741514400,1),(601,1762074000,2),(601,1772964000,1),(601,1793523600,2),(601,1805018400,1),(601,1825578000,2),(601,1836468000,1),(601,1857027600,2),(601,1867917600,1),(601,1888477200,2),(601,1899367200,1),(601,1919926800,2),(601,1930816800,1),(601,1951376400,2),(601,1962871200,1),(601,1983430800,2),(601,1994320800,1),(601,2014880400,2),(601,2025770400,1),(601,2046330000,2),(601,2057220000,1),(601,2077779600,2),(601,2088669600,1),(601,2109229200,2),(601,2120119200,1),(601,2140678800,2),(602,-2147483648,2),(602,-1633269600,1),(602,-1615129200,2),(602,-1601820000,1),(602,-1583679600,2),(602,-880207200,3),(602,-769395600,4),(602,-765385200,2),(602,-687967140,1),(602,-662655600,2),(602,-620838000,1),(602,-608137200,2),(602,-589388400,1),(602,-576082800,2),(602,-557938800,1),(602,-544633200,2),(602,-526489200,1),(602,-513183600,2),(602,-495039600,1),(602,-481734000,2),(602,-463590000,1),(602,-450284400,2),(602,-431535600,1),(602,-418230000,2),(602,-400086000,1),(602,-386780400,2),(602,-368636400,1),(602,-355330800,2),(602,-337186800,1),(602,-323881200,2),(602,-305737200,1),(602,-292431600,2),(602,-273682800,1),(602,-260982000,2),(602,-242233200,1),(602,-226508400,2),(602,-210783600,1),(602,-195058800,2),(602,-179334000,1),(602,-163609200,2),(602,-147884400,1),(602,-131554800,2),(602,-116434800,1),(602,-100105200,2),(602,-84376800,1),(602,-68655600,2),(602,-52927200,1),(602,-37206000,2),(602,-21477600,1),(602,-5756400,2),(602,9972000,1),(602,25693200,2),(602,41421600,1),(602,57747600,2),(602,73476000,1),(602,89197200,2),(602,104925600,1),(602,120646800,2),(602,126698400,1),(602,152096400,2),(602,162381600,1),(602,183546000,2),(602,199274400,1),(602,215600400,2),(602,230724000,1),(602,247050000,2),(602,262778400,1),(602,278499600,2),(602,294228000,1),(602,309949200,2),(602,325677600,1),(602,341398800,2),(602,357127200,1),(602,372848400,2),(602,388576800,1),(602,404902800,2),(602,420026400,1),(602,436352400,2),(602,452080800,1),(602,467802000,2),(602,483530400,1),(602,499251600,2),(602,514980000,1),(602,530701200,2),(602,544615200,1),(602,562150800,2),(602,576064800,1),(602,594205200,2),(602,607514400,1),(602,625654800,2),(602,638964000,1),(602,657104400,2),(602,671018400,1),(602,688554000,2),(602,702468000,1),(602,720003600,2),(602,733917600,1),(602,752058000,2),(602,765367200,1),(602,783507600,2),(602,796816800,1),(602,814957200,2),(602,828871200,1),(602,846406800,2),(602,860320800,1),(602,877856400,2),(602,891770400,1),(602,909306000,2),(602,923220000,1),(602,941360400,2),(602,954669600,1),(602,972810000,2),(602,986119200,1),(602,1004259600,2),(602,1018173600,1),(602,1035709200,2),(602,1049623200,1),(602,1067158800,2),(602,1081072800,1),(602,1099213200,2),(602,1112522400,1),(602,1130662800,2),(602,1143972000,1),(602,1162112400,2),(602,1173607200,1),(602,1194166800,2),(602,1205056800,1),(602,1225616400,2),(602,1236506400,1),(602,1257066000,2),(602,1268560800,1),(602,1289120400,2),(602,1300010400,1),(602,1320570000,2),(602,1331460000,1),(602,1352019600,2),(602,1362909600,1),(602,1383469200,2),(602,1394359200,1),(602,1414918800,2),(602,1425808800,1),(602,1446368400,2),(602,1457863200,1),(602,1478422800,2),(602,1489312800,1),(602,1509872400,2),(602,1520762400,1),(602,1541322000,2),(602,1552212000,1),(602,1572771600,2),(602,1583661600,1),(602,1604221200,2),(602,1615716000,1),(602,1636275600,2),(602,1647165600,1),(602,1667725200,2),(602,1678615200,1),(602,1699174800,2),(602,1710064800,1),(602,1730624400,2),(602,1741514400,1),(602,1762074000,2),(602,1772964000,1),(602,1793523600,2),(602,1805018400,1),(602,1825578000,2),(602,1836468000,1),(602,1857027600,2),(602,1867917600,1),(602,1888477200,2),(602,1899367200,1),(602,1919926800,2),(602,1930816800,1),(602,1951376400,2),(602,1962871200,1),(602,1983430800,2),(602,1994320800,1),(602,2014880400,2),(602,2025770400,1),(602,2046330000,2),(602,2057220000,1),(602,2077779600,2),(602,2088669600,1),(602,2109229200,2),(602,2120119200,1),(602,2140678800,2),(603,-2147483648,1),(603,-1861879032,2),(606,-2147483648,1),(606,-1688265017,3),(606,-1656819079,2),(606,-1641353479,3),(606,-1627965079,4),(606,-1618716679,2),(606,-1596429079,4),(606,-1593820800,5),(606,-1589860800,6),(606,-1542427200,7),(606,-1539493200,8),(606,-1525323600,7),(606,-1522728000,6),(606,-1491188400,9),(606,-1247536800,6),(606,354920400,7),(606,370728000,6),(606,386456400,7),(606,402264000,6),(606,417992400,7),(606,433800000,6),(606,449614800,7),(606,465346800,10),(606,481071600,11),(606,496796400,10),(606,512521200,11),(606,528246000,10),(606,543970800,11),(606,559695600,10),(606,575420400,11),(606,591145200,10),(606,606870000,11),(606,622594800,10),(606,638319600,11),(606,654649200,10),(606,670374000,12),(606,686102400,13),(606,695779200,10),(606,701823600,11),(606,717548400,10),(606,733273200,11),(606,748998000,10),(606,764722800,11),(606,780447600,10),(606,796172400,11),(606,811897200,10),(606,828226800,11),(606,846370800,10),(606,859676400,11),(606,877820400,10),(606,891126000,11),(606,909270000,10),(606,922575600,11),(606,941324400,10),(606,954025200,11),(606,972774000,10),(606,985474800,11),(606,1004223600,10),(606,1017529200,11),(606,1035673200,10),(606,1048978800,11),(606,1067122800,10),(606,1080428400,11),(606,1099177200,10),(606,1111878000,11),(606,1130626800,10),(606,1143327600,11),(606,1162076400,10),(606,1174777200,11),(606,1193526000,10),(606,1206831600,11),(606,1224975600,10),(606,1238281200,11),(606,1256425200,10),(606,1269730800,11),(606,1288479600,10),(606,1301180400,14),(606,1414274400,10),(607,228877200,0),(607,243997200,1),(607,260326800,0),(607,276051600,1),(607,291776400,0),(607,307501200,1),(607,323830800,0),(607,338950800,1),(607,354675600,0),(607,370400400,1),(607,386125200,0),(607,401850000,1),(607,417574800,0),(607,433299600,1),(607,449024400,0),(607,465354000,1),(607,481078800,0),(607,496803600,1),(607,512528400,0),(607,528253200,1),(607,543978000,0),(607,559702800,1),(607,575427600,0),(607,591152400,1),(607,606877200,0),(607,622602000,1),(607,638326800,0),(607,654656400,1),(607,670381200,0),(607,686106000,1),(607,701830800,0),(607,717555600,1),(607,733280400,0),(607,749005200,1),(607,764730000,0),(607,780454800,1),(607,796179600,0),(607,811904400,1),(607,828234000,0),(607,846378000,1),(607,859683600,0),(607,877827600,1),(607,891133200,0),(607,909277200,1),(607,922582800,0),(607,941331600,1),(607,954032400,0),(607,972781200,1),(607,985482000,0),(607,1004230800,1),(607,1017536400,0),(607,1035680400,1),(607,1048986000,0),(607,1067130000,1),(607,1080435600,0),(607,1099184400,1),(607,1111885200,0),(607,1130634000,1),(607,1143334800,0),(607,1162083600,1),(607,1174784400,0),(607,1193533200,1),(607,1206838800,0),(607,1224982800,1),(607,1238288400,0),(607,1256432400,1),(607,1269738000,0),(607,1288486800,1),(607,1301187600,0),(607,1319936400,1),(607,1332637200,0),(607,1351386000,1),(607,1364691600,0),(607,1382835600,1),(607,1396141200,0),(607,1414285200,1),(607,1427590800,0),(607,1445734800,1),(607,1459040400,0),(607,1477789200,1),(607,1490490000,0),(607,1509238800,1),(607,1521939600,0),(607,1540688400,1),(607,1553994000,0),(607,1572138000,1),(607,1585443600,0),(607,1603587600,1),(607,1616893200,0),(607,1635642000,1),(607,1648342800,0),(607,1667091600,1),(607,1679792400,0),(607,1698541200,1),(607,1711846800,0),(607,1729990800,1),(607,1743296400,0),(607,1761440400,1),(607,1774746000,0),(607,1792890000,1),(607,1806195600,0),(607,1824944400,1),(607,1837645200,0),(607,1856394000,1),(607,1869094800,0),(607,1887843600,1),(607,1901149200,0),(607,1919293200,1),(607,1932598800,0),(607,1950742800,1),(607,1964048400,0),(607,1982797200,1),(607,1995498000,0),(607,2014246800,1),(607,2026947600,0),(607,2045696400,1),(607,2058397200,0),(607,2077146000,1),(607,2090451600,0),(607,2108595600,1),(607,2121901200,0),(607,2140045200,1),(610,-2147483648,0),(610,-1830383032,1),(611,-2147483648,0),(611,-1709337548,2),(611,-1581206400,1),(611,-1577917200,2),(611,-1556834400,1),(611,-1546294800,2),(611,-1525298400,1),(611,-1514758800,2),(611,-1493762400,1),(611,-1483222800,2),(611,-1462226400,1),(611,-1451686800,2),(611,-1430604000,1),(611,-1420064400,2),(611,-1399068000,1),(611,-1388528400,2),(611,-1367532000,1),(611,-1356992400,2),(611,-1335996000,1),(611,-1325456400,2),(611,-1304373600,1),(611,-1293834000,2),(611,-1272837600,1),(611,-1262298000,2),(611,-1241301600,1),(611,-1230762000,2),(611,-1209765600,1),(611,-1199226000,2),(611,-1178143200,1),(611,-1167603600,2),(611,-1146607200,1),(611,-1136067600,2),(611,-1115071200,1),(611,-1104531600,2),(611,-1083535200,1),(611,-1072995600,2),(611,-1051912800,1),(611,-1041373200,2),(611,-1020376800,1),(611,-1009837200,2),(611,-988840800,1),(611,-978301200,2),(611,-957304800,1),(611,-946765200,2),(611,-936309600,1),(611,-915142800,2),(611,-904773600,1),(611,-883606800,2),(611,-880329600,3),(611,-756952200,2),(611,-610149600,4),(611,-599610600,2),(611,-578613600,4),(611,-568074600,2),(611,-546991200,4),(611,-536452200,2),(611,-515455200,4),(611,-504916200,2),(611,-483919200,4),(611,-473380200,2),(611,-452383200,4),(611,-441844200,2),(612,-2147483648,0),(612,-1946168836,1),(612,-1309746600,2),(612,-1261969200,1),(612,-1041388200,3),(612,-865305900,2),(613,-2147483648,1),(613,-1855958961,4),(613,-1689814800,2),(613,-1680397200,3),(613,-1665363600,2),(613,-1648342800,3),(613,-1635123600,2),(613,-1616893200,3),(613,-1604278800,2),(613,-1585443600,3),(613,-1574038800,2),(613,-1552266000,3),(613,-1539997200,2),(613,-1531443600,3),(613,-956365200,2),(613,-950486400,4),(613,-942012000,6),(613,-812502000,5),(613,-796262400,6),(613,-781052400,5),(613,-766630800,6),(613,-733280400,4),(613,-439430400,6),(613,-212029200,4),(613,41468400,2),(613,54774000,3),(613,231724800,7),(613,246236400,6),(613,259545600,5),(613,275274000,6),(613,309740400,4),(613,325468800,7),(613,341802000,4),(613,357523200,6),(614,-2147483648,0),(614,-1946168836,1),(614,-1309746600,2),(614,-1261969200,1),(614,-1041388200,3),(614,-865305900,2),(615,-2147483648,0),(615,-1946168836,1),(615,-1309746600,2),(615,-1261969200,1),(615,-1041388200,3),(615,-865305900,2),(616,-2147483648,0),(616,-1830383032,1),(617,-2147483648,0),(617,-2035584815,1),(617,-1940889600,0),(617,-1767226415,2),(617,-1588465800,3),(618,-2147483648,0),(618,-1830383032,1),(619,-2147483648,0),(619,-1830380400,1),(619,157770000,2),(620,-2147483648,0),(620,-2109291020,1),(621,-2147483648,0),(621,-2035584815,1),(621,-1940889600,0),(621,-1767226415,2),(621,-1588465800,3),(622,-2147483648,0),(622,-2109291020,1),(623,-2147483648,2),(623,-929844000,1),(623,-923108400,2),(623,-906170400,1),(623,-892868400,2),(623,-875844000,1),(623,-857790000,2),(623,-844308000,1),(623,-825822000,2),(623,-812685600,1),(623,-794199600,2),(623,-779853600,1),(623,-762663600,2),(623,-399088800,1),(623,-386650800,2),(623,-368330400,1),(623,-355114800,2),(623,-336790800,1),(623,-323654400,2),(623,-305168400,1),(623,-292032000,2),(623,-273632400,1),(623,-260496000,2),(623,-242096400,1),(623,-228960000,2),(623,-210560400,1),(623,-197424000,2),(623,-178938000,1),(623,-165801600,2),(623,-147402000,1),(623,-134265600,2),(623,-115866000,1),(623,-102643200,2),(623,-84330000,1),(623,-71107200,2),(623,-52707600,1),(623,-39484800,2),(623,-21171600,1),(623,-7948800,2),(623,10364400,1),(623,23587200,2),(623,41900400,1),(623,55123200,2),(623,73522800,1),(623,86745600,2),(623,105058800,1),(623,118281600,2),(623,136594800,1),(623,149817600,2),(623,168130800,1),(623,181353600,2),(623,199753200,1),(623,212976000,2),(623,231289200,1),(623,244512000,2),(623,262825200,1),(623,276048000,2),(623,294361200,1),(623,307584000,2),(623,325983600,1),(623,339206400,2),(623,357519600,1),(623,370742400,2),(623,396399600,1),(623,402278400,2),(623,426812400,1),(623,433814400,2),(623,452214000,1),(623,465436800,2),(623,483750000,1),(623,496972800,2),(623,515286000,1),(623,528508800,2),(623,546822000,1),(623,560044800,2),(623,578444400,1),(623,591667200,2),(623,610412400,1),(623,623203200,2),(623,641516400,1),(623,654739200,2),(623,673052400,1),(623,686275200,2),(623,704674800,1),(623,717897600,2),(623,736210800,1),(623,749433600,2),(623,767746800,1),(623,780969600,2),(623,799020000,3),(623,812322000,2),(623,830469600,3),(623,843771600,2),(623,861919200,3),(623,875221200,2),(623,893368800,3),(623,906670800,2),(623,925423200,3),(623,938725200,2),(623,956872800,3),(623,970174800,2),(623,988322400,3),(623,1001624400,2),(623,1019772000,3),(623,1033074000,2),(623,1051221600,3),(623,1064523600,2),(623,1083276000,3),(623,1096578000,2),(623,1114725600,3),(623,1128027600,2),(623,1146175200,3),(623,1158872400,2),(623,1177624800,3),(623,1189112400,2),(623,1209074400,3),(623,1219957200,2),(623,1240524000,3),(623,1250802000,2),(623,1272578400,3),(623,1281474000,2),(623,1284069600,1),(623,1285880400,2),(623,1400191200,1),(623,1403816400,2),(623,1406844000,1),(623,1411678800,2),(624,-2147483648,0),(624,-1773012580,2),(624,-956361600,1),(624,-950490000,2),(624,-942019200,1),(624,-761187600,2),(624,-617241600,1),(624,-605149200,2),(624,-81432000,1),(624,-71110800,2),(624,141264000,1),(624,147222000,2),(624,199756800,1),(624,207702000,2),(624,231292800,1),(624,244249200,2),(624,265507200,1),(624,271033200,2),(624,448243200,3),(624,504918000,2),(624,1212278400,1),(624,1220223600,2),(624,1243814400,1),(624,1250809200,2),(624,1272758400,1),(624,1281222000,2),(624,1301788800,1),(624,1312066800,2),(624,1335664800,1),(624,1342749600,2),(624,1345428000,1),(624,1348970400,2),(624,1367114400,1),(624,1373162400,2),(624,1376100000,1),(624,1382839200,2),(624,1396144800,1),(624,1403920800,2),(624,1406944800,1),(624,1414288800,2),(624,1427594400,1),(624,1434247200,2),(624,1437271200,1),(624,1445738400,2),(624,1459044000,1),(624,1465092000,2),(624,1468116000,1),(624,1477792800,2),(624,1490493600,1),(624,1495332000,2),(624,1498960800,1),(624,1509242400,2),(624,1521943200,1),(624,1526176800,2),(624,1529200800,1),(624,1540692000,3),(624,1557021600,4),(624,1560045600,3),(624,1587261600,4),(624,1590890400,3),(624,1618106400,4),(624,1621130400,3),(624,1648346400,4),(624,1651975200,3),(624,1679191200,4),(624,1682820000,3),(624,1710036000,4),(624,1713060000,3),(624,1740276000,4),(624,1743904800,3),(624,1771120800,4),(624,1774144800,3),(624,1801965600,4),(624,1804989600,3),(624,1832205600,4),(624,1835834400,3),(624,1863050400,4),(624,1866074400,3),(624,1893290400,4),(624,1896919200,3),(624,1924135200,4),(624,1927764000,3),(624,1954980000,4),(624,1958004000,3),(624,1985220000,4),(624,1988848800,3),(624,2016064800,4),(624,2019088800,3),(624,2046304800,4),(624,2049933600,3),(624,2077149600,4),(624,2080778400,3),(624,2107994400,4),(624,2111018400,3),(624,2138234400,4),(624,2141863200,3),(625,-2147483648,1),(625,-1630112400,2),(625,-1616810400,1),(625,-1442451600,2),(625,-1427673600,3),(625,-1379293200,2),(625,-1364774400,3),(625,-1348448400,2),(625,-1333324800,3),(625,-1316390400,2),(625,-1301270400,3),(625,-1293840000,1),(625,-81432000,2),(625,-71110800,1),(625,141264000,2),(625,147222000,1),(625,199756800,2),(625,207702000,1),(625,231292800,2),(625,244249200,1),(625,265507200,2),(625,271033200,1),(625,448243200,4),(625,512528400,5),(625,528253200,6),(625,543978000,5),(625,559702800,6),(625,575427600,5),(625,591152400,6),(625,606877200,5),(625,622602000,6),(625,638326800,5),(625,654656400,6),(625,670381200,5),(625,686106000,6),(625,701830800,5),(625,717555600,6),(625,733280400,5),(625,749005200,6),(625,764730000,5),(625,780454800,6),(625,796179600,5),(625,811904400,6),(625,828234000,5),(625,846378000,6),(625,859683600,5),(625,877827600,6),(625,891133200,5),(625,909277200,6),(625,922582800,5),(625,941331600,6),(625,954032400,5),(625,972781200,6),(625,985482000,5),(625,1004230800,6),(625,1017536400,5),(625,1035680400,6),(625,1048986000,5),(625,1067130000,6),(625,1080435600,5),(625,1099184400,6),(625,1111885200,5),(625,1130634000,6),(625,1143334800,5),(625,1162083600,6),(625,1174784400,5),(625,1193533200,6),(625,1206838800,5),(625,1224982800,6),(625,1238288400,5),(625,1256432400,6),(625,1269738000,5),(625,1288486800,6),(625,1301187600,5),(625,1319936400,6),(625,1332637200,5),(625,1351386000,6),(625,1364691600,5),(625,1382835600,6),(625,1396141200,5),(625,1414285200,6),(625,1427590800,5),(625,1445734800,6),(625,1459040400,5),(625,1477789200,6),(625,1490490000,5),(625,1509238800,6),(625,1521939600,5),(625,1540688400,6),(625,1553994000,5),(625,1572138000,6),(625,1585443600,5),(625,1603587600,6),(625,1616893200,5),(625,1635642000,6),(625,1648342800,5),(625,1667091600,6),(625,1679792400,5),(625,1698541200,6),(625,1711846800,5),(625,1729990800,6),(625,1743296400,5),(625,1761440400,6),(625,1774746000,5),(625,1792890000,6),(625,1806195600,5),(625,1824944400,6),(625,1837645200,5),(625,1856394000,6),(625,1869094800,5),(625,1887843600,6),(625,1901149200,5),(625,1919293200,6),(625,1932598800,5),(625,1950742800,6),(625,1964048400,5),(625,1982797200,6),(625,1995498000,5),(625,2014246800,6),(625,2026947600,5),(625,2045696400,6),(625,2058397200,5),(625,2077146000,6),(625,2090451600,5),(625,2108595600,6),(625,2121901200,5),(625,2140045200,6),(626,-2147483648,0),(626,-1830383032,1),(627,-2147483648,0),(627,-1830383032,1),(628,-2147483648,0),(628,-1946168836,1),(628,-1309746600,2),(628,-1261969200,1),(628,-1041388200,3),(628,-865305900,2),(629,-2147483648,0),(629,-1946168836,1),(629,-1309746600,2),(629,-1261969200,1),(629,-1041388200,3),(629,-865305900,2),(630,-2147483648,0),(630,-2035584815,1),(630,-1940889600,0),(630,-1767226415,2),(630,-1588465800,3),(631,-2147483648,0),(631,-1136070432,1),(631,198291600,3),(631,199756800,2),(631,207702000,3),(631,231292800,2),(631,244249200,3),(631,265507200,2),(631,271033200,3),(631,1212278400,2),(631,1220223600,3),(631,1243814400,2),(631,1250809200,3),(631,1272758400,2),(631,1281222000,3),(631,1301788800,2),(631,1312066800,3),(631,1335664800,2),(631,1342749600,3),(631,1345428000,2),(631,1348970400,3),(631,1367114400,2),(631,1373162400,3),(631,1376100000,2),(631,1382839200,3),(631,1396144800,2),(631,1403920800,3),(631,1406944800,2),(631,1414288800,3),(631,1427594400,2),(631,1434247200,3),(631,1437271200,2),(631,1445738400,3),(631,1459044000,2),(631,1465092000,3),(631,1468116000,2),(631,1477792800,3),(631,1490493600,2),(631,1495332000,3),(631,1498960800,2),(631,1509242400,3),(631,1521943200,2),(631,1526176800,3),(631,1529200800,2),(631,1540692000,5),(631,1557021600,4),(631,1560045600,5),(631,1587261600,4),(631,1590890400,5),(631,1618106400,4),(631,1621130400,5),(631,1648346400,4),(631,1651975200,5),(631,1679191200,4),(631,1682820000,5),(631,1710036000,4),(631,1713060000,5),(631,1740276000,4),(631,1743904800,5),(631,1771120800,4),(631,1774144800,5),(631,1801965600,4),(631,1804989600,5),(631,1832205600,4),(631,1835834400,5),(631,1863050400,4),(631,1866074400,5),(631,1893290400,4),(631,1896919200,5),(631,1924135200,4),(631,1927764000,5),(631,1954980000,4),(631,1958004000,5),(631,1985220000,4),(631,1988848800,5),(631,2016064800,4),(631,2019088800,5),(631,2046304800,4),(631,2049933600,5),(631,2077149600,4),(631,2080778400,5),(631,2107994400,4),(631,2111018400,5),(631,2138234400,4),(631,2141863200,5),(632,-2147483648,0),(632,-1830383032,1),(633,-2147483648,0),(633,-2109291020,1),(634,-2147483648,0),(634,-2109291020,1),(635,-2147483648,1),(635,-2109288600,3),(635,-860976000,2),(635,-845254800,3),(635,-829526400,2),(635,-813805200,3),(636,-2147483648,0),(636,-1230775588,2),(636,10360800,1),(636,24786000,2),(636,41810400,1),(636,56322000,2),(636,73432800,1),(636,87944400,2),(636,104882400,1),(636,119480400,2),(636,136332000,1),(636,151016400,2),(636,167781600,1),(636,182552400,2),(636,199231200,1),(636,214174800,2),(636,230680800,1),(636,245710800,2),(636,262735200,1),(636,277246800,2),(636,294184800,1),(636,308782800,2),(636,325634400,1),(636,340405200,2),(636,357084000,1),(636,371941200,2),(636,388533600,1),(636,403477200,2),(636,419983200,1),(636,435013200,2),(636,452037600,1),(636,466635600,2),(636,483487200,1),(636,498171600,2),(636,947930400,3),(636,1612126800,2),(637,-2147483648,0),(637,-1946168836,1),(637,-1309746600,2),(637,-1261969200,1),(637,-1041388200,3),(637,-865305900,2),(638,-2147483648,0),(638,-1230775808,2),(638,10360800,1),(638,24786000,2),(638,41810400,1),(638,56322000,2),(638,73432800,1),(638,87944400,2),(638,104882400,1),(638,119480400,2),(638,136332000,1),(638,151016400,2),(638,167781600,1),(638,182552400,2),(638,199231200,1),(638,214174800,2),(638,230680800,1),(638,245710800,2),(638,262735200,1),(638,277246800,2),(638,294184800,1),(638,308782800,2),(638,325634400,1),(638,340405200,2),(638,357084000,1),(638,371941200,2),(638,388533600,1),(638,403477200,2),(638,419983200,1),(638,435013200,2),(638,452037600,1),(638,466635600,2),(638,483487200,1),(638,498171600,2),(638,947930400,3),(638,1509483600,2),(639,-2147483648,0),(639,-2109291020,1),(640,-2147483648,0),(640,-2035584815,1),(640,-1940889600,0),(640,-1767226415,2),(640,-1588465800,3),(641,-2147483648,0),(641,-2035584815,1),(641,-1940889600,0),(641,-1767226415,2),(641,-1588465800,3),(642,-2147483648,0),(642,-2035584815,1),(642,-1940889600,0),(642,-1767226415,2),(642,-1588465800,3),(643,-2147483648,0),(643,-1830383032,1),(644,-2147483648,0),(644,-2035584815,1),(644,-1940889600,0),(644,-1767226415,2),(644,-1588465800,3),(645,-2147483648,0),(645,-2109291020,1),(646,-2147483648,0),(646,-2109291020,1),(647,-2147483648,0),(647,-2035584815,1),(647,-1940889600,0),(647,-1767226415,2),(647,-1588465800,3),(648,-2147483648,0),(648,-2109291020,1),(649,-2147483648,1),(649,-2109288600,3),(649,-860976000,2),(649,-845254800,3),(649,-829526400,2),(649,-813805200,3),(650,-2147483648,1),(650,-2109288600,3),(650,-860976000,2),(650,-845254800,3),(650,-829526400,2),(650,-813805200,3),(651,-2147483648,0),(651,-1946168836,1),(651,-1309746600,2),(651,-1261969200,1),(651,-1041388200,3),(651,-865305900,2),(652,-2147483648,1),(652,-1604359012,2),(652,63593070,3),(653,-2147483648,0),(653,-1946168836,1),(653,-1309746600,2),(653,-1261969200,1),(653,-1041388200,3),(653,-865305900,2),(654,-2147483648,0),(654,-1830387612,1),(654,308703600,2),(654,321314400,1),(655,-2147483648,0),(655,-2035584815,1),(655,-1940889600,0),(655,-1767226415,2),(655,-1588465800,3),(656,-2147483648,0),(656,-1830383032,1),(657,-2147483648,0),(657,-1830383032,1),(658,-2147483648,0),(658,-2035584815,1),(658,-1940889600,0),(658,-1767226415,2),(658,-1588465800,3),(659,-2147483648,1),(659,-1830384000,2),(659,1514768400,3),(659,1546304400,4),(660,-2147483648,0),(660,-1830383032,1),(661,-2147483648,0),(661,-1577926364,2),(661,-574902000,1),(661,-568087200,2),(661,-512175600,1),(661,-504928800,2),(661,-449888400,1),(661,-441856800,2),(661,-347158800,3),(661,378684000,2),(661,386463600,1),(661,402271200,2),(661,417999600,1),(661,433807200,2),(661,449622000,1),(661,465429600,2),(661,481590000,1),(661,496965600,2),(661,512953200,1),(661,528674400,2),(661,544230000,1),(661,560037600,2),(661,575852400,1),(661,591660000,2),(661,607388400,1),(661,623196000,2),(661,641775600,3),(661,844034400,2),(661,860108400,1),(661,875916000,3),(661,1352505600,2),(661,1364515200,1),(661,1382659200,3),(662,-2147483648,1),(662,-1855958961,4),(662,-969242400,2),(662,-950493600,3),(662,-941940000,2),(662,-891136800,4),(662,-877827600,5),(662,-857257200,4),(662,-844556400,5),(662,-842918400,4),(662,-842223600,5),(662,-828230400,4),(662,-812502000,5),(662,-796269600,4),(662,-781052400,5),(662,-766634400,4),(662,231202800,2),(662,243903600,3),(662,262825200,2),(662,276044400,3),(662,581122800,2),(662,591145200,3),(662,606870000,2),(662,622594800,3),(662,641516400,2),(662,654649200,3),(662,1114902000,2),(662,1128038400,3),(662,1143334800,2),(662,1162083600,3),(662,1174784400,2),(662,1193533200,3),(662,1206838800,2),(662,1224982800,3),(663,-2147483648,1),(663,-2109288600,2),(663,-860976000,3),(663,-845254800,2),(663,637970400,5),(663,764200800,4),(663,778640400,5),(663,796780800,4),(663,810090000,5),(663,828835200,4),(663,841539600,5),(663,860284800,4),(663,873594000,5),(663,891734400,4),(663,905043600,5),(663,923184000,4),(663,936493200,5),(663,954633600,4),(663,967942800,5),(663,986083200,4),(663,999392400,5),(663,1018137600,4),(663,1030842000,5),(663,1049587200,4),(663,1062896400,5),(663,1081036800,4),(663,1094346000,5),(663,1112486400,4),(663,1125795600,5),(663,1143936000,4),(663,1157245200,5),(663,1175385600,4),(663,1188694800,5),(663,1207440000,4),(663,1220749200,5),(663,1238889600,4),(663,1252198800,5),(663,1270339200,4),(663,1283648400,5),(663,1301788800,4),(663,1315098000,5),(663,1333238400,4),(663,1346547600,5),(663,1365292800,4),(663,1377997200,5),(663,1396742400,4),(663,1410051600,5),(663,1428192000,4),(663,1441501200,5),(663,1459641600,4),(663,1472950800,5),(663,1491091200,4),(663,1504400400,5),(664,-2147483648,1),(664,-880196400,2),(664,-769395600,3),(664,-765374400,1),(664,-86878800,4),(664,-21466800,5),(664,-5745600,4),(664,9982800,5),(664,25704000,4),(664,41432400,5),(664,57758400,4),(664,73486800,5),(664,89208000,4),(664,104936400,5),(664,120657600,4),(664,126709200,5),(664,152107200,4),(664,162392400,5),(664,183556800,4),(664,199285200,5),(664,215611200,4),(664,230734800,5),(664,247060800,4),(664,262789200,5),(664,278510400,4),(664,294238800,5),(664,309960000,4),(664,325688400,5),(664,341409600,4),(664,357138000,5),(664,372859200,4),(664,388587600,5),(664,404913600,4),(664,420037200,5),(664,436363200,6),(664,439034400,8),(664,452088000,7),(664,467809200,8),(664,483537600,7),(664,499258800,8),(664,514987200,7),(664,530708400,8),(664,544622400,7),(664,562158000,8),(664,576072000,7),(664,594212400,8),(664,607521600,7),(664,625662000,8),(664,638971200,7),(664,657111600,8),(664,671025600,7),(664,688561200,8),(664,702475200,7),(664,720010800,8),(664,733924800,7),(664,752065200,8),(664,765374400,7),(664,783514800,8),(664,796824000,7),(664,814964400,8),(664,828878400,7),(664,846414000,8),(664,860328000,7),(664,877863600,8),(664,891777600,7),(664,909313200,8),(664,923227200,7),(664,941367600,8),(664,954676800,7),(664,972817200,8),(664,986126400,7),(664,1004266800,8),(664,1018180800,7),(664,1035716400,8),(664,1049630400,7),(664,1067166000,8),(664,1081080000,7),(664,1099220400,8),(664,1112529600,7),(664,1130670000,8),(664,1143979200,7),(664,1162119600,8),(664,1173614400,7),(664,1194174000,8),(664,1205064000,7),(664,1225623600,8),(664,1236513600,7),(664,1257073200,8),(664,1268568000,7),(664,1289127600,8),(664,1300017600,7),(664,1320577200,8),(664,1331467200,7),(664,1352026800,8),(664,1362916800,7),(664,1383476400,8),(664,1394366400,7),(664,1414926000,8),(664,1425816000,7),(664,1446375600,8),(664,1457870400,7),(664,1478430000,8),(664,1489320000,7),(664,1509879600,8),(664,1520769600,7),(664,1541329200,8),(664,1552219200,7),(664,1572778800,8),(664,1583668800,7),(664,1604228400,8),(664,1615723200,7),(664,1636282800,8),(664,1647172800,7),(664,1667732400,8),(664,1678622400,7),(664,1699182000,8),(664,1710072000,7),(664,1730631600,8),(664,1741521600,7),(664,1762081200,8),(664,1772971200,7),(664,1793530800,8),(664,1805025600,7),(664,1825585200,8),(664,1836475200,7),(664,1857034800,8),(664,1867924800,7),(664,1888484400,8),(664,1899374400,7),(664,1919934000,8),(664,1930824000,7),(664,1951383600,8),(664,1962878400,7),(664,1983438000,8),(664,1994328000,7),(664,2014887600,8),(664,2025777600,7),(664,2046337200,8),(664,2057227200,7),(664,2077786800,8),(664,2088676800,7),(664,2109236400,8),(664,2120126400,7),(664,2140686000,8),(665,-2147483648,1),(665,-880200000,2),(665,-769395600,3),(665,-765378000,1),(665,-86882400,4),(665,-21470400,5),(665,-5749200,4),(665,9979200,5),(665,25700400,4),(665,41428800,5),(665,57754800,4),(665,73483200,5),(665,89204400,4),(665,104932800,5),(665,120654000,4),(665,126705600,5),(665,152103600,4),(665,162388800,5),(665,183553200,4),(665,199281600,5),(665,215607600,4),(665,230731200,5),(665,247057200,4),(665,262785600,5),(665,278506800,4),(665,294235200,5),(665,309956400,4),(665,325684800,5),(665,341406000,4),(665,357134400,5),(665,372855600,4),(665,388584000,5),(665,404910000,4),(665,420033600,5),(665,436359600,6),(665,439030800,8),(665,452084400,7),(665,467805600,8),(665,483534000,7),(665,499255200,8),(665,514983600,7),(665,530704800,8),(665,544618800,7),(665,562154400,8),(665,576068400,7),(665,594208800,8),(665,607518000,7),(665,625658400,8),(665,638967600,7),(665,657108000,8),(665,671022000,7),(665,688557600,8),(665,702471600,7),(665,720007200,8),(665,733921200,7),(665,752061600,8),(665,765370800,7),(665,783511200,8),(665,796820400,7),(665,814960800,8),(665,828874800,7),(665,846410400,8),(665,860324400,7),(665,877860000,8),(665,891774000,7),(665,909309600,8),(665,923223600,7),(665,941364000,8),(665,954673200,7),(665,972813600,8),(665,986122800,7),(665,1004263200,8),(665,1018177200,7),(665,1035712800,8),(665,1049626800,7),(665,1067162400,8),(665,1081076400,7),(665,1099216800,8),(665,1112526000,7),(665,1130666400,8),(665,1143975600,7),(665,1162116000,8),(665,1173610800,7),(665,1194170400,8),(665,1205060400,7),(665,1225620000,8),(665,1236510000,7),(665,1257069600,8),(665,1268564400,7),(665,1289124000,8),(665,1300014000,7),(665,1320573600,8),(665,1331463600,7),(665,1352023200,8),(665,1362913200,7),(665,1383472800,8),(665,1394362800,7),(665,1414922400,8),(665,1425812400,7),(665,1446372000,8),(665,1457866800,7),(665,1478426400,8),(665,1489316400,7),(665,1509876000,8),(665,1520766000,7),(665,1541325600,8),(665,1552215600,7),(665,1572775200,8),(665,1583665200,7),(665,1604224800,8),(665,1615719600,7),(665,1636279200,8),(665,1647169200,7),(665,1667728800,8),(665,1678618800,7),(665,1699178400,8),(665,1710068400,7),(665,1730628000,8),(665,1741518000,7),(665,1762077600,8),(665,1772967600,7),(665,1793527200,8),(665,1805022000,7),(665,1825581600,8),(665,1836471600,7),(665,1857031200,8),(665,1867921200,7),(665,1888480800,8),(665,1899370800,7),(665,1919930400,8),(665,1930820400,7),(665,1951380000,8),(665,1962874800,7),(665,1983434400,8),(665,1994324400,7),(665,2014884000,8),(665,2025774000,7),(665,2046333600,8),(665,2057223600,7),(665,2077783200,8),(665,2088673200,7),(665,2109232800,8),(665,2120122800,7),(665,2140682400,8),(666,-2147483648,0),(666,-1825098836,1),(667,-2147483648,0),(667,-1825098836,1),(668,-2147483648,0),(668,-1767214032,2),(668,-1206957600,1),(668,-1191362400,2),(668,-1175374800,1),(668,-1159826400,2),(668,-633819600,1),(668,-622069200,2),(668,-602283600,1),(668,-591832800,2),(668,-570747600,1),(668,-560210400,2),(668,-539125200,1),(668,-531352800,2),(668,-191365200,1),(668,-184197600,2),(668,-155163600,1),(668,-150069600,2),(668,-128898000,1),(668,-121125600,2),(668,-99954000,1),(668,-89589600,2),(668,-68418000,1),(668,-57967200,2),(668,499748400,1),(668,511236000,2),(668,530593200,1),(668,540266400,2),(668,562129200,1),(668,571197600,2),(668,592974000,1),(668,602042400,2),(668,624423600,1),(668,634701600,2),(668,813726000,1),(668,824004000,2),(668,844570800,1),(668,856058400,2),(668,876106800,1),(668,888717600,2),(668,908074800,1),(668,919562400,2),(668,938919600,1),(668,951616800,2),(668,970974000,1),(668,982461600,2),(668,1003028400,1),(668,1013911200,2),(668,1036292400,1),(668,1045360800,2),(668,1350788400,1),(668,1361066400,2),(668,2147483647,2),(669,-2147483648,1),(669,-1567453392,2),(669,-1233432000,3),(669,-1222981200,2),(669,-1205956800,3),(669,-1194037200,2),(669,-1172865600,3),(669,-1162501200,2),(669,-1141329600,3),(669,-1130965200,2),(669,-1109793600,3),(669,-1099429200,2),(669,-1078257600,3),(669,-1067806800,2),(669,-1046635200,3),(669,-1036270800,2),(669,-1015099200,3),(669,-1004734800,2),(669,-983563200,3),(669,-973198800,2),(669,-952027200,3),(669,-941576400,2),(669,-931032000,3),(669,-900882000,2),(669,-890337600,3),(669,-833749200,2),(669,-827265600,3),(669,-752274000,2),(669,-733780800,3),(669,-197326800,2),(669,-190843200,3),(669,-184194000,2),(669,-164491200,3),(669,-152658000,2),(669,-132955200,3),(669,-121122000,2),(669,-101419200,3),(669,-86821200,2),(669,-71092800,3),(669,-54766800,2),(669,-39038400,3),(669,-23317200,2),(669,-7588800,5),(669,128142000,4),(669,136605600,5),(669,596948400,4),(669,605066400,5),(669,624423600,4),(669,636516000,5),(669,656478000,4),(669,667965600,5),(669,687927600,4),(669,699415200,5),(669,719377200,4),(669,731469600,5),(669,938919600,3),(669,952052400,5),(669,1198983600,4),(669,1205632800,5),(669,1224385200,4),(669,1237082400,5),(669,2147483647,5),(670,-2147483648,1),(670,-1567453392,2),(670,-1233432000,3),(670,-1222981200,2),(670,-1205956800,3),(670,-1194037200,2),(670,-1172865600,3),(670,-1162501200,2),(670,-1141329600,3),(670,-1130965200,2),(670,-1109793600,3),(670,-1099429200,2),(670,-1078257600,3),(670,-1067806800,2),(670,-1046635200,3),(670,-1036270800,2),(670,-1015099200,3),(670,-1004734800,2),(670,-983563200,3),(670,-973198800,2),(670,-952027200,3),(670,-941576400,2),(670,-931032000,3),(670,-900882000,2),(670,-890337600,3),(670,-833749200,2),(670,-827265600,3),(670,-752274000,2),(670,-733780800,3),(670,-197326800,2),(670,-190843200,3),(670,-184194000,2),(670,-164491200,3),(670,-152658000,2),(670,-132955200,3),(670,-121122000,2),(670,-101419200,3),(670,-86821200,2),(670,-71092800,3),(670,-54766800,2),(670,-39038400,3),(670,-23317200,2),(670,-7588800,5),(670,128142000,4),(670,136605600,5),(670,596948400,4),(670,605066400,5),(670,624423600,4),(670,636516000,5),(670,656478000,4),(670,667965600,2),(670,687931200,4),(670,699415200,5),(670,719377200,4),(670,731469600,5),(670,938919600,3),(670,952052400,5),(670,1086058800,2),(670,1087704000,5),(670,1198983600,4),(670,1205632800,5),(670,2147483647,5),(671,-2147483648,1),(671,-1567453392,2),(671,-1233432000,3),(671,-1222981200,2),(671,-1205956800,3),(671,-1194037200,2),(671,-1172865600,3),(671,-1162501200,2),(671,-1141329600,3),(671,-1130965200,2),(671,-1109793600,3),(671,-1099429200,2),(671,-1078257600,3),(671,-1067806800,2),(671,-1046635200,3),(671,-1036270800,2),(671,-1015099200,3),(671,-1004734800,2),(671,-983563200,3),(671,-973198800,2),(671,-952027200,3),(671,-941576400,2),(671,-931032000,3),(671,-900882000,2),(671,-890337600,3),(671,-833749200,2),(671,-827265600,3),(671,-752274000,2),(671,-733780800,3),(671,-197326800,2),(671,-190843200,3),(671,-184194000,2),(671,-164491200,3),(671,-152658000,2),(671,-132955200,3),(671,-121122000,2),(671,-101419200,3),(671,-86821200,2),(671,-71092800,3),(671,-54766800,2),(671,-39038400,3),(671,-23317200,2),(671,-7588800,5),(671,128142000,4),(671,136605600,5),(671,596948400,4),(671,605066400,5),(671,624423600,4),(671,636516000,5),(671,656478000,4),(671,667965600,2),(671,687931200,4),(671,699415200,5),(671,719377200,4),(671,731469600,5),(671,938919600,3),(671,952052400,5),(671,1086058800,2),(671,1087704000,5),(671,1198983600,4),(671,1205632800,5),(671,2147483647,5),(672,-2147483648,1),(672,-1567453392,2),(672,-1233432000,3),(672,-1222981200,2),(672,-1205956800,3),(672,-1194037200,2),(672,-1172865600,3),(672,-1162501200,2),(672,-1141329600,3),(672,-1130965200,2),(672,-1109793600,3),(672,-1099429200,2),(672,-1078257600,3),(672,-1067806800,2),(672,-1046635200,3),(672,-1036270800,2),(672,-1015099200,3),(672,-1004734800,2),(672,-983563200,3),(672,-973198800,2),(672,-952027200,3),(672,-941576400,2),(672,-931032000,3),(672,-900882000,2),(672,-890337600,3),(672,-833749200,2),(672,-827265600,3),(672,-752274000,2),(672,-733780800,3),(672,-197326800,2),(672,-190843200,3),(672,-184194000,2),(672,-164491200,3),(672,-152658000,2),(672,-132955200,3),(672,-121122000,2),(672,-101419200,3),(672,-86821200,2),(672,-71092800,3),(672,-54766800,2),(672,-39038400,3),(672,-23317200,2),(672,-7588800,5),(672,128142000,4),(672,136605600,5),(672,596948400,4),(672,605066400,5),(672,624423600,4),(672,636516000,5),(672,656478000,4),(672,667965600,2),(672,687931200,4),(672,699415200,5),(672,719377200,4),(672,731469600,5),(672,938919600,3),(672,952052400,5),(672,1198983600,4),(672,1205632800,5),(672,1224385200,4),(672,1237082400,5),(672,2147483647,5),(673,-2147483648,1),(673,-1567453392,2),(673,-1233432000,3),(673,-1222981200,2),(673,-1205956800,3),(673,-1194037200,2),(673,-1172865600,3),(673,-1162501200,2),(673,-1141329600,3),(673,-1130965200,2),(673,-1109793600,3),(673,-1099429200,2),(673,-1078257600,3),(673,-1067806800,2),(673,-1046635200,3),(673,-1036270800,2),(673,-1015099200,3),(673,-1004734800,2),(673,-983563200,3),(673,-973198800,2),(673,-952027200,3),(673,-941576400,2),(673,-931032000,3),(673,-900882000,2),(673,-890337600,3),(673,-833749200,2),(673,-827265600,3),(673,-752274000,2),(673,-733780800,3),(673,-197326800,2),(673,-190843200,3),(673,-184194000,2),(673,-164491200,3),(673,-152658000,2),(673,-132955200,3),(673,-121122000,2),(673,-101419200,3),(673,-86821200,2),(673,-71092800,3),(673,-54766800,2),(673,-39038400,3),(673,-23317200,2),(673,-7588800,5),(673,128142000,4),(673,136605600,5),(673,596948400,4),(673,605066400,5),(673,624423600,4),(673,636516000,2),(673,657086400,3),(673,669178800,2),(673,686721600,4),(673,699415200,5),(673,719377200,4),(673,731469600,5),(673,938919600,3),(673,952052400,5),(673,1198983600,4),(673,1205632800,5),(673,2147483647,5),(674,-2147483648,1),(674,-1567453392,2),(674,-1233432000,3),(674,-1222981200,2),(674,-1205956800,3),(674,-1194037200,2),(674,-1172865600,3),(674,-1162501200,2),(674,-1141329600,3),(674,-1130965200,2),(674,-1109793600,3),(674,-1099429200,2),(674,-1078257600,3),(674,-1067806800,2),(674,-1046635200,3),(674,-1036270800,2),(674,-1015099200,3),(674,-1004734800,2),(674,-983563200,3),(674,-973198800,2),(674,-952027200,3),(674,-941576400,2),(674,-931032000,3),(674,-900882000,2),(674,-890337600,3),(674,-833749200,2),(674,-827265600,3),(674,-752274000,2),(674,-733780800,3),(674,-197326800,2),(674,-190843200,3),(674,-184194000,2),(674,-164491200,3),(674,-152658000,2),(674,-132955200,3),(674,-121122000,2),(674,-101419200,3),(674,-86821200,2),(674,-71092800,3),(674,-54766800,2),(674,-39038400,3),(674,-23317200,2),(674,-7588800,5),(674,128142000,4),(674,136605600,5),(674,596948400,4),(674,605066400,5),(674,624423600,4),(674,636516000,5),(674,656478000,4),(674,667792800,2),(674,673588800,5),(674,687927600,4),(674,699415200,5),(674,719377200,4),(674,731469600,5),(674,938919600,3),(674,952052400,5),(674,1086058800,2),(674,1087704000,5),(674,1198983600,4),(674,1205632800,5),(674,2147483647,5),(675,-2147483648,1),(675,-1567453392,2),(675,-1233432000,3),(675,-1222981200,2),(675,-1205956800,3),(675,-1194037200,2),(675,-1172865600,3),(675,-1162501200,2),(675,-1141329600,3),(675,-1130965200,2),(675,-1109793600,3),(675,-1099429200,2),(675,-1078257600,3),(675,-1067806800,2),(675,-1046635200,3),(675,-1036270800,2),(675,-1015099200,3),(675,-1004734800,2),(675,-983563200,3),(675,-973198800,2),(675,-952027200,3),(675,-941576400,2),(675,-931032000,3),(675,-900882000,2),(675,-890337600,3),(675,-833749200,2),(675,-827265600,3),(675,-752274000,2),(675,-733780800,3),(675,-197326800,2),(675,-190843200,3),(675,-184194000,2),(675,-164491200,3),(675,-152658000,2),(675,-132955200,3),(675,-121122000,2),(675,-101419200,3),(675,-86821200,2),(675,-71092800,3),(675,-54766800,2),(675,-39038400,3),(675,-23317200,2),(675,-7588800,5),(675,128142000,4),(675,136605600,5),(675,596948400,4),(675,605066400,5),(675,624423600,4),(675,636516000,2),(675,655963200,3),(675,667796400,2),(675,687499200,3),(675,699418800,2),(675,719380800,4),(675,731469600,5),(675,938919600,3),(675,952052400,5),(675,1085281200,2),(675,1096171200,5),(675,1198983600,4),(675,1205632800,5),(675,2147483647,5),(676,-2147483648,1),(676,-1567453392,2),(676,-1233432000,3),(676,-1222981200,2),(676,-1205956800,3),(676,-1194037200,2),(676,-1172865600,3),(676,-1162501200,2),(676,-1141329600,3),(676,-1130965200,2),(676,-1109793600,3),(676,-1099429200,2),(676,-1078257600,3),(676,-1067806800,2),(676,-1046635200,3),(676,-1036270800,2),(676,-1015099200,3),(676,-1004734800,2),(676,-983563200,3),(676,-973198800,2),(676,-952027200,3),(676,-941576400,2),(676,-931032000,3),(676,-900882000,2),(676,-890337600,3),(676,-833749200,2),(676,-827265600,3),(676,-752274000,2),(676,-733780800,3),(676,-197326800,2),(676,-190843200,3),(676,-184194000,2),(676,-164491200,3),(676,-152658000,2),(676,-132955200,3),(676,-121122000,2),(676,-101419200,3),(676,-86821200,2),(676,-71092800,3),(676,-54766800,2),(676,-39038400,3),(676,-23317200,2),(676,-7588800,5),(676,128142000,4),(676,136605600,5),(676,596948400,4),(676,605066400,5),(676,624423600,4),(676,636516000,5),(676,656478000,4),(676,667965600,5),(676,687927600,4),(676,699415200,5),(676,719377200,4),(676,731469600,5),(676,938919600,3),(676,952052400,5),(676,1086058800,2),(676,1087704000,5),(676,1198983600,4),(676,1205632800,5),(676,2147483647,5),(677,-2147483648,1),(677,-1567453392,2),(677,-1233432000,3),(677,-1222981200,2),(677,-1205956800,3),(677,-1194037200,2),(677,-1172865600,3),(677,-1162501200,2),(677,-1141329600,3),(677,-1130965200,2),(677,-1109793600,3),(677,-1099429200,2),(677,-1078257600,3),(677,-1067806800,2),(677,-1046635200,3),(677,-1036270800,2),(677,-1015099200,3),(677,-1004734800,2),(677,-983563200,3),(677,-973198800,2),(677,-952027200,3),(677,-941576400,2),(677,-931032000,3),(677,-900882000,2),(677,-890337600,3),(677,-833749200,2),(677,-827265600,3),(677,-752274000,2),(677,-733780800,3),(677,-197326800,2),(677,-190843200,3),(677,-184194000,2),(677,-164491200,3),(677,-152658000,2),(677,-132955200,3),(677,-121122000,2),(677,-101419200,3),(677,-86821200,2),(677,-71092800,3),(677,-54766800,2),(677,-39038400,3),(677,-23317200,2),(677,-7588800,5),(677,128142000,4),(677,136605600,5),(677,596948400,4),(677,605066400,5),(677,624423600,4),(677,636516000,5),(677,656478000,4),(677,667965600,2),(677,687931200,4),(677,699415200,5),(677,719377200,4),(677,731469600,5),(677,938919600,3),(677,952052400,5),(677,1198983600,4),(677,1205632800,5),(677,2147483647,5),(678,-2147483648,1),(678,-1567453392,2),(678,-1233432000,3),(678,-1222981200,2),(678,-1205956800,3),(678,-1194037200,2),(678,-1172865600,3),(678,-1162501200,2),(678,-1141329600,3),(678,-1130965200,2),(678,-1109793600,3),(678,-1099429200,2),(678,-1078257600,3),(678,-1067806800,2),(678,-1046635200,3),(678,-1036270800,2),(678,-1015099200,3),(678,-1004734800,2),(678,-983563200,3),(678,-973198800,2),(678,-952027200,3),(678,-941576400,2),(678,-931032000,3),(678,-900882000,2),(678,-890337600,3),(678,-833749200,2),(678,-827265600,3),(678,-752274000,2),(678,-733780800,3),(678,-197326800,2),(678,-190843200,3),(678,-184194000,2),(678,-164491200,3),(678,-152658000,2),(678,-132955200,3),(678,-121122000,2),(678,-101419200,3),(678,-86821200,2),(678,-71092800,3),(678,-54766800,2),(678,-39038400,3),(678,-23317200,2),(678,-7588800,5),(678,128142000,4),(678,136605600,5),(678,596948400,4),(678,605066400,5),(678,624423600,4),(678,636516000,5),(678,656478000,4),(678,667792800,2),(678,673588800,5),(678,687927600,4),(678,699415200,5),(678,719377200,4),(678,731469600,5),(678,938919600,3),(678,952052400,5),(678,1085972400,2),(678,1090728000,5),(678,1198983600,4),(678,1205632800,5),(678,2147483647,5),(679,-2147483648,1),(679,-1567453392,2),(679,-1233432000,3),(679,-1222981200,2),(679,-1205956800,3),(679,-1194037200,2),(679,-1172865600,3),(679,-1162501200,2),(679,-1141329600,3),(679,-1130965200,2),(679,-1109793600,3),(679,-1099429200,2),(679,-1078257600,3),(679,-1067806800,2),(679,-1046635200,3),(679,-1036270800,2),(679,-1015099200,3),(679,-1004734800,2),(679,-983563200,3),(679,-973198800,2),(679,-952027200,3),(679,-941576400,2),(679,-931032000,3),(679,-900882000,2),(679,-890337600,3),(679,-833749200,2),(679,-827265600,3),(679,-752274000,2),(679,-733780800,3),(679,-197326800,2),(679,-190843200,3),(679,-184194000,2),(679,-164491200,3),(679,-152658000,2),(679,-132955200,3),(679,-121122000,2),(679,-101419200,3),(679,-86821200,2),(679,-71092800,3),(679,-54766800,2),(679,-39038400,3),(679,-23317200,2),(679,-7588800,5),(679,128142000,4),(679,136605600,5),(679,596948400,4),(679,605066400,5),(679,624423600,4),(679,637380000,2),(679,655963200,3),(679,667796400,2),(679,675748800,5),(679,938919600,3),(679,952052400,5),(679,1085972400,2),(679,1090728000,5),(679,1198983600,4),(679,1200880800,3),(679,1205031600,2),(679,1223784000,3),(679,1236481200,2),(679,1255233600,5),(679,2147483647,5),(680,-2147483648,1),(680,-1567453392,2),(680,-1233432000,3),(680,-1222981200,2),(680,-1205956800,3),(680,-1194037200,2),(680,-1172865600,3),(680,-1162501200,2),(680,-1141329600,3),(680,-1130965200,2),(680,-1109793600,3),(680,-1099429200,2),(680,-1078257600,3),(680,-1067806800,2),(680,-1046635200,3),(680,-1036270800,2),(680,-1015099200,3),(680,-1004734800,2),(680,-983563200,3),(680,-973198800,2),(680,-952027200,3),(680,-941576400,2),(680,-931032000,3),(680,-900882000,2),(680,-890337600,3),(680,-833749200,2),(680,-827265600,3),(680,-752274000,2),(680,-733780800,3),(680,-197326800,2),(680,-190843200,3),(680,-184194000,2),(680,-164491200,3),(680,-152658000,2),(680,-132955200,3),(680,-121122000,2),(680,-101419200,3),(680,-86821200,2),(680,-71092800,3),(680,-54766800,2),(680,-39038400,3),(680,-23317200,2),(680,-7588800,5),(680,128142000,4),(680,136605600,5),(680,596948400,4),(680,605066400,5),(680,624423600,4),(680,636516000,5),(680,656478000,4),(680,667965600,2),(680,687931200,4),(680,699415200,5),(680,719377200,4),(680,731469600,5),(680,938919600,3),(680,952052400,5),(680,1086058800,2),(680,1087099200,5),(680,1198983600,4),(680,1205632800,5),(680,1224385200,4),(680,1237082400,5),(680,2147483647,5),(681,-2147483648,1),(681,-1567453392,2),(681,-1233432000,3),(681,-1222981200,2),(681,-1205956800,3),(681,-1194037200,2),(681,-1172865600,3),(681,-1162501200,2),(681,-1141329600,3),(681,-1130965200,2),(681,-1109793600,3),(681,-1099429200,2),(681,-1078257600,3),(681,-1067806800,2),(681,-1046635200,3),(681,-1036270800,2),(681,-1015099200,3),(681,-1004734800,2),(681,-983563200,3),(681,-973198800,2),(681,-952027200,3),(681,-941576400,2),(681,-931032000,3),(681,-900882000,2),(681,-890337600,3),(681,-833749200,2),(681,-827265600,3),(681,-752274000,2),(681,-733780800,3),(681,-197326800,2),(681,-190843200,3),(681,-184194000,2),(681,-164491200,3),(681,-152658000,2),(681,-132955200,3),(681,-121122000,2),(681,-101419200,3),(681,-86821200,2),(681,-71092800,3),(681,-54766800,2),(681,-39038400,3),(681,-23317200,2),(681,-7588800,5),(681,128142000,4),(681,136605600,5),(681,596948400,4),(681,605066400,5),(681,624423600,4),(681,636516000,5),(681,656478000,4),(681,667965600,5),(681,687927600,4),(681,699415200,5),(681,719377200,4),(681,731469600,5),(681,938919600,3),(681,952052400,5),(681,1085886000,2),(681,1087704000,5),(681,1198983600,4),(681,1205632800,5),(681,2147483647,5),(682,-2147483648,0),(682,-1826738653,1),(682,-157750200,2),(683,-2147483648,1),(683,-1206389360,2),(683,86760000,3),(683,134017200,2),(683,181368000,4),(683,194497200,2),(683,212990400,4),(683,226033200,2),(683,244526400,4),(683,257569200,2),(683,276062400,4),(683,291783600,2),(683,307598400,4),(683,323406000,2),(683,339220800,4),(683,354942000,2),(683,370756800,4),(683,386478000,2),(683,402292800,4),(683,418014000,2),(683,433828800,4),(683,449636400,2),(683,465451200,4),(683,481172400,2),(683,496987200,4),(683,512708400,2),(683,528523200,4),(683,544244400,2),(683,560059200,4),(683,575866800,2),(683,591681600,4),(683,607402800,2),(683,625032000,4),(683,638938800,2),(683,654753600,4),(683,670474800,2),(683,686721600,4),(683,699418800,2),(683,718257600,4),(683,733546800,2),(683,749448000,4),(683,762318000,2),(683,780984000,4),(683,793767600,2),(683,812520000,4),(683,825649200,2),(683,844574400,4),(683,856666800,2),(683,876024000,4),(683,888721200,2),(683,907473600,4),(683,920775600,2),(683,938923200,4),(683,952225200,2),(683,970372800,4),(683,983674800,2),(683,1002427200,4),(683,1018148400,2),(683,1030852800,4),(683,1049598000,2),(683,1062907200,4),(683,1081047600,2),(683,1097985600,4),(683,1110682800,2),(683,1129435200,4),(683,1142132400,2),(683,1160884800,4),(683,1173582000,2),(683,1192939200,4),(683,1205031600,2),(683,1224388800,4),(683,1236481200,2),(683,1255838400,4),(683,1270954800,2),(683,1286078400,4),(683,1302404400,2),(683,1317528000,4),(683,1333854000,2),(683,1349582400,4),(683,1364094000,2),(683,1381032000,4),(683,1395543600,2),(683,1412481600,4),(683,1426993200,2),(683,1443931200,4),(683,1459047600,2),(683,1475380800,4),(683,1490497200,2),(683,1506830400,4),(683,1521946800,2),(683,1538884800,4),(683,1553396400,2),(683,1570334400,4),(683,1584846000,2),(683,1601784000,4),(683,1616900400,2),(683,1633233600,4),(683,1648350000,2),(683,1664683200,4),(683,1679799600,2),(683,1696132800,4),(683,1711249200,2),(683,1728187200,4),(683,1742698800,2),(683,1759636800,4),(683,1774148400,2),(683,1791086400,4),(683,1806202800,2),(683,1822536000,4),(683,1837652400,2),(683,1853985600,4),(683,1869102000,2),(683,1886040000,4),(683,1900551600,2),(683,1917489600,4),(683,1932001200,2),(683,1948939200,4),(683,1964055600,2),(683,1980388800,4),(683,1995505200,2),(683,2011838400,4),(683,2026954800,2),(683,2043288000,4),(683,2058404400,2),(683,2075342400,4),(683,2089854000,2),(683,2106792000,4),(683,2121303600,2),(683,2138241600,4),(683,2147483647,4),(684,-2147483648,2),(684,-1632067200,1),(684,-1615136400,2),(684,-923248800,1),(684,-880214400,3),(684,-769395600,4),(684,-765392400,5),(685,-2147483648,1),(685,-880196400,2),(685,-769395600,3),(685,-765374400,1),(685,-86878800,4),(685,-21466800,5),(685,-5745600,4),(685,9982800,5),(685,25704000,4),(685,41432400,5),(685,57758400,4),(685,73486800,5),(685,89208000,4),(685,104936400,5),(685,120657600,4),(685,126709200,5),(685,152107200,4),(685,162392400,5),(685,183556800,4),(685,199285200,5),(685,215611200,4),(685,230734800,5),(685,247060800,4),(685,262789200,5),(685,278510400,4),(685,294238800,5),(685,309960000,4),(685,325688400,5),(685,341409600,4),(685,357138000,5),(685,372859200,4),(685,388587600,5),(685,404913600,4),(685,420037200,5),(685,436363200,6),(685,439034400,8),(685,452088000,7),(685,467809200,8),(685,483537600,7),(685,499258800,8),(685,514987200,7),(685,530708400,8),(685,544622400,7),(685,562158000,8),(685,576072000,7),(685,594212400,8),(685,607521600,7),(685,625662000,8),(685,638971200,7),(685,657111600,8),(685,671025600,7),(685,688561200,8),(685,702475200,7),(685,720010800,8),(685,733924800,7),(685,752065200,8),(685,765374400,7),(685,783514800,8),(685,796824000,7),(685,814964400,8),(685,828878400,7),(685,846414000,8),(685,860328000,7),(685,877863600,8),(685,891777600,7),(685,909313200,8),(685,923227200,7),(685,941367600,8),(685,954676800,7),(685,972817200,8),(685,986126400,7),(685,1004266800,8),(685,1018180800,7),(685,1035716400,8),(685,1049630400,7),(685,1067166000,8),(685,1081080000,7),(685,1099220400,8),(685,1112529600,7),(685,1130670000,8),(685,1143979200,7),(685,1162119600,8),(685,1173614400,7),(685,1194174000,8),(685,1205064000,7),(685,1225623600,8),(685,1236513600,7),(685,1257073200,8),(685,1268568000,7),(685,1289127600,8),(685,1300017600,7),(685,1320577200,8),(685,1331467200,7),(685,1352026800,8),(685,1362916800,7),(685,1383476400,8),(685,1394366400,7),(685,1414926000,8),(685,1425816000,7),(685,1446375600,8),(685,1457870400,7),(685,1478430000,8),(685,1489320000,7),(685,1509879600,8),(685,1520769600,7),(685,1541329200,8),(685,1552219200,7),(685,1572778800,8),(685,1583668800,7),(685,1604228400,8),(685,1615723200,7),(685,1636282800,8),(685,1647172800,7),(685,1667732400,8),(685,1678622400,7),(685,1699182000,8),(685,1710072000,7),(685,1730631600,8),(685,1741521600,7),(685,1762081200,8),(685,1772971200,7),(685,1793530800,8),(685,1805025600,7),(685,1825585200,8),(685,1836475200,7),(685,1857034800,8),(685,1867924800,7),(685,1888484400,8),(685,1899374400,7),(685,1919934000,8),(685,1930824000,7),(685,1951383600,8),(685,1962878400,7),(685,1983438000,8),(685,1994328000,7),(685,2014887600,8),(685,2025777600,7),(685,2046337200,8),(685,2057227200,7),(685,2077786800,8),(685,2088676800,7),(685,2109236400,8),(685,2120126400,7),(685,2140686000,8),(686,-2147483648,0),(686,-1767216356,2),(686,-1206957600,1),(686,-1191362400,2),(686,-1175374800,1),(686,-1159826400,2),(686,-633819600,1),(686,-622069200,2),(686,-602283600,1),(686,-591832800,2),(686,-570747600,1),(686,-560210400,2),(686,-539125200,1),(686,-531352800,2),(686,-191365200,1),(686,-184197600,2),(686,-155163600,1),(686,-150069600,2),(686,-128898000,1),(686,-121125600,2),(686,-99954000,1),(686,-89589600,2),(686,-68418000,1),(686,-57967200,2),(686,499748400,1),(686,511236000,2),(686,530593200,1),(686,540266400,2),(686,562129200,1),(686,571197600,2),(686,592974000,1),(686,602042400,2),(686,624423600,1),(686,634701600,2),(686,656478000,1),(686,666756000,2),(686,687927600,1),(686,697600800,2),(686,719982000,1),(686,728445600,2),(686,750826800,1),(686,761709600,2),(686,782276400,1),(686,793159200,2),(686,813726000,1),(686,824004000,2),(686,844570800,1),(686,856058400,2),(686,876106800,1),(686,888717600,2),(686,908074800,1),(686,919562400,2),(686,938919600,1),(686,951616800,2),(686,970974000,1),(686,982461600,2),(686,1003028400,1),(686,1013911200,2),(686,1036292400,1),(686,1045360800,2),(686,1318734000,1),(686,1330221600,2),(686,2147483647,2),(687,-2147483648,0),(687,-1514739600,1),(687,-1343066400,2),(687,-1234807200,1),(687,-1220292000,2),(687,-1207159200,1),(687,-1191344400,2),(687,-873828000,1),(687,-661539600,3),(687,28800,1),(687,828867600,4),(687,846403200,1),(687,860317200,4),(687,877852800,1),(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,5),(687,1288508400,2),(687,1301817600,5),(687,1319958000,2),(687,1333267200,5),(687,1351407600,2),(687,1365321600,5),(687,1382857200,2),(687,1396771200,5),(687,1414306800,2),(687,1428220800,5),(687,1445756400,2),(687,1459670400,5),(687,1477810800,2),(687,1491120000,5),(687,1509260400,2),(687,1522569600,5),(687,1540710000,2),(687,1554624000,5),(687,1572159600,2),(687,1586073600,5),(687,1603609200,2),(687,1617523200,5),(687,1635663600,2),(687,1648972800,5),(687,1667113200,2),(687,1680422400,5),(687,1698562800,2),(687,1712476800,5),(687,1730012400,2),(687,1743926400,5),(687,1761462000,2),(687,1775376000,5),(687,1792911600,2),(687,1806825600,5),(687,1824966000,2),(687,1838275200,5),(687,1856415600,2),(687,1869724800,5),(687,1887865200,2),(687,1901779200,5),(687,1919314800,2),(687,1933228800,5),(687,1950764400,2),(687,1964678400,5),(687,1982818800,2),(687,1996128000,5),(687,2014268400,2),(687,2027577600,5),(687,2045718000,2),(687,2059027200,5),(687,2077167600,2),(687,2091081600,5),(687,2108617200,2),(687,2122531200,5),(687,2140066800,2),(688,-2147483648,0),(688,-1451678491,1),(688,-1199217691,3),(688,234943200,2),(688,244616400,3),(688,261554400,2),(688,276066000,3),(688,293004000,2),(688,307515600,3),(688,325058400,2),(688,338706000,3),(689,-2147483648,0),(689,-1767213964,2),(689,-1206957600,1),(689,-1191362400,2),(689,-1175374800,1),(689,-1159826400,2),(689,-633819600,1),(689,-622069200,2),(689,-602283600,1),(689,-591832800,2),(689,-570747600,1),(689,-560210400,2),(689,-539125200,1),(689,-531352800,2),(689,-191365200,1),(689,-184197600,2),(689,-155163600,1),(689,-150069600,2),(689,-128898000,1),(689,-121125600,2),(689,-99954000,1),(689,-89589600,2),(689,-68418000,1),(689,-57967200,2),(689,499748400,1),(689,511236000,2),(689,530593200,1),(689,540266400,2),(689,562129200,1),(689,571197600,2),(689,2147483647,2),(690,-2147483648,0),(690,-1822500432,2),(690,-1616954400,1),(690,-1606069800,2),(690,-1585504800,1),(690,-1574015400,2),(690,-1554055200,1),(690,-1542565800,2),(690,-1522605600,1),(690,-1511116200,2),(690,-1490551200,1),(690,-1479666600,2),(690,-1459101600,1),(690,-1448217000,2),(690,-1427652000,1),(690,-1416162600,2),(690,-1396202400,1),(690,-1384713000,2),(690,-1364752800,1),(690,-1353263400,2),(690,-1333303200,1),(690,-1321813800,2),(690,-1301248800,1),(690,-1290364200,2),(690,-1269799200,1),(690,-1258914600,2),(690,-1238349600,1),(690,-1226860200,2),(690,-1206900000,1),(690,-1195410600,2),(690,-1175450400,1),(690,-1163961000,2),(690,-1143396000,1),(690,-1132511400,2),(690,-1111946400,1),(690,-1101061800,2),(690,-1080496800,1),(690,-1069612200,2),(690,-1049047200,1),(690,-1037557800,2),(690,-1017597600,1),(690,-1006108200,2),(690,-986148000,1),(690,-974658600,2),(690,-954093600,1),(690,-943209000,2),(690,-922644000,1),(690,-911759400,2),(690,-891194400,1),(690,-879705000,2),(690,-868212000,3),(690,-769395600,4),(690,-758746800,2),(690,-701892000,1),(690,-690402600,2),(690,-670442400,1),(690,-658953000,2),(690,-638992800,1),(690,-627503400,2),(690,-606938400,1),(690,-596053800,2),(690,-575488800,1),(690,-564604200,2),(690,-544039200,1),(690,-532549800,2),(690,-512589600,1),(690,-501100200,2),(690,-481140000,1),(690,-469650600,2),(690,-449690400,1),(690,-438201000,2),(690,-417636000,1),(690,-406751400,2),(690,-386186400,1),(690,-375301800,2),(690,-354736800,1),(690,-343247400,2),(690,-323287200,1),(690,-311797800,2),(690,-291837600,1),(690,-280348200,2),(690,-259783200,1),(690,-248898600,2),(690,-228333600,1),(690,-217449000,2),(690,-196884000,1),(690,-185999400,2),(690,-165434400,1),(690,-153945000,2),(690,-133984800,1),(690,-122495400,2),(690,-102535200,1),(690,-91045800,2),(690,-70480800,1),(690,-59596200,2),(690,123919200,5),(690,129618000,2),(690,409039200,5),(690,413874000,2),(691,-2147483648,2),(691,-1632074400,1),(691,-1615143600,2),(691,-880221600,3),(691,-769395600,4),(691,-765399600,2),(692,-2147483648,0),(692,-1767211040,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,938923200,1),(692,951620400,2),(692,970977600,1),(692,971578800,2),(692,2147483647,2),(693,-2147483648,1),(693,-1739041424,3),(693,704869200,2),(693,733896000,3),(693,2147483647,3),(694,-2147483648,2),(694,-1633269600,1),(694,-1615129200,2),(694,-1601820000,1),(694,-1583679600,2),(694,-1471788000,5),(694,-880210800,3),(694,-769395600,4),(694,-765388800,5),(694,-84380400,6),(694,-68659200,5),(694,-52930800,6),(694,-37209600,5),(694,-21481200,6),(694,-5760000,5),(694,9968400,6),(694,25689600,5),(694,41418000,6),(694,57744000,5),(694,73472400,6),(694,89193600,5),(694,104922000,6),(694,120643200,5),(694,129114000,6),(694,152092800,5),(694,162378000,6),(694,183542400,5),(694,199270800,6),(694,215596800,5),(694,230720400,6),(694,247046400,5),(694,262774800,6),(694,278496000,5),(694,294224400,6),(694,309945600,5),(694,325674000,6),(694,341395200,5),(694,357123600,6),(694,372844800,5),(694,388573200,6),(694,404899200,5),(694,420022800,6),(694,436348800,5),(694,452077200,6),(694,467798400,5),(694,483526800,6),(694,499248000,5),(694,514976400,6),(694,530697600,5),(694,544611600,6),(694,562147200,5),(694,576061200,6),(694,594201600,5),(694,607510800,6),(694,625651200,5),(694,638960400,6),(694,657100800,5),(694,671014800,6),(694,688550400,5),(694,702464400,6),(694,720000000,5),(694,733914000,6),(694,752054400,5),(694,765363600,6),(694,783504000,5),(694,796813200,6),(694,814953600,5),(694,828867600,6),(694,846403200,5),(694,860317200,6),(694,877852800,5),(694,891766800,6),(694,909302400,5),(694,923216400,6),(694,941356800,5),(694,954666000,6),(694,972806400,5),(694,986115600,6),(694,1004256000,5),(694,1018170000,6),(694,1035705600,5),(694,1049619600,6),(694,1067155200,5),(694,1081069200,6),(694,1099209600,5),(694,1112518800,6),(694,1130659200,5),(694,1143968400,6),(694,1162108800,5),(694,1173603600,6),(694,1194163200,5),(694,1205053200,6),(694,1225612800,5),(694,1236502800,6),(694,1257062400,5),(694,1268557200,6),(694,1289116800,5),(694,1300006800,6),(694,1320566400,5),(694,1331456400,6),(694,1352016000,5),(694,1362906000,6),(694,1383465600,5),(694,1394355600,6),(694,1414915200,5),(694,1425805200,6),(694,1446364800,5),(694,1457859600,6),(694,1478419200,5),(694,1489309200,6),(694,1509868800,5),(694,1520758800,6),(694,1541318400,5),(694,1552208400,6),(694,1572768000,5),(694,1583658000,6),(694,1604217600,5),(694,1615712400,6),(694,1636272000,5),(694,1647162000,6),(694,1667721600,5),(694,1678611600,6),(694,1699171200,5),(694,1710061200,6),(694,1730620800,5),(694,1741510800,6),(694,1762070400,5),(694,1772960400,6),(694,1793520000,5),(694,1805014800,6),(694,1825574400,5),(694,1836464400,6),(694,1857024000,5),(694,1867914000,6),(694,1888473600,5),(694,1899363600,6),(694,1919923200,5),(694,1930813200,6),(694,1951372800,5),(694,1962867600,6),(694,1983427200,5),(694,1994317200,6),(694,2014876800,5),(694,2025766800,6),(694,2046326400,5),(694,2057216400,6),(694,2077776000,5),(694,2088666000,6),(694,2109225600,5),(694,2120115600,6),(694,2140675200,5),(695,-2147483648,1),(695,-1567453392,2),(695,-1233432000,3),(695,-1222981200,2),(695,-1205956800,3),(695,-1194037200,2),(695,-1172865600,3),(695,-1162501200,2),(695,-1141329600,3),(695,-1130965200,2),(695,-1109793600,3),(695,-1099429200,2),(695,-1078257600,3),(695,-1067806800,2),(695,-1046635200,3),(695,-1036270800,2),(695,-1015099200,3),(695,-1004734800,2),(695,-983563200,3),(695,-973198800,2),(695,-952027200,3),(695,-941576400,2),(695,-931032000,3),(695,-900882000,2),(695,-890337600,3),(695,-833749200,2),(695,-827265600,3),(695,-752274000,2),(695,-733780800,3),(695,-197326800,2),(695,-190843200,3),(695,-184194000,2),(695,-164491200,3),(695,-152658000,2),(695,-132955200,3),(695,-121122000,2),(695,-101419200,3),(695,-86821200,2),(695,-71092800,3),(695,-54766800,2),(695,-39038400,3),(695,-23317200,2),(695,-7588800,5),(695,128142000,4),(695,136605600,5),(695,596948400,4),(695,605066400,5),(695,624423600,4),(695,636516000,5),(695,656478000,4),(695,667965600,5),(695,687927600,4),(695,699415200,5),(695,719377200,4),(695,731469600,5),(695,938919600,3),(695,952052400,5),(695,1198983600,4),(695,1205632800,5),(695,1224385200,4),(695,1237082400,5),(695,2147483647,5),(696,-2147483648,0),(696,-1577923200,3),(696,-880210800,1),(696,-769395600,2),(696,-765388800,3),(696,-147891600,4),(696,-131562000,3),(696,325674000,5),(696,341395200,3),(696,357123600,5),(696,372844800,3),(696,388573200,5),(696,404899200,3),(696,420022800,5),(696,436348800,3),(696,452077200,5),(696,467798400,3),(696,483526800,5),(696,499248000,3),(696,514976400,5),(696,530697600,3),(696,544611600,5),(696,562147200,3),(696,576061200,5),(696,594201600,3),(696,607510800,5),(696,625651200,3),(696,638960400,5),(696,657100800,3),(696,671014800,5),(696,688550400,3),(696,702464400,5),(696,720000000,3),(696,733914000,5),(696,752054400,3),(696,765363600,5),(696,783504000,3),(696,796813200,5),(696,814953600,3),(696,828867600,5),(696,846403200,3),(696,860317200,5),(696,877852800,3),(696,891766800,5),(696,909302400,3),(696,923216400,5),(696,941356800,7),(696,954662400,6),(696,972802800,8),(696,973400400,7),(696,986115600,5),(696,1004256000,3),(696,1018170000,5),(696,1035705600,3),(696,1049619600,5),(696,1067155200,3),(696,1081069200,5),(696,1099209600,3),(696,1112518800,5),(696,1130659200,3),(696,1143968400,5),(696,1162108800,3),(696,1173603600,5),(696,1194163200,3),(696,1205053200,5),(696,1225612800,3),(696,1236502800,5),(696,1257062400,3),(696,1268557200,5),(696,1289116800,3),(696,1300006800,5),(696,1320566400,3),(696,1331456400,5),(696,1352016000,3),(696,1362906000,5),(696,1383465600,3),(696,1394355600,5),(696,1414915200,3),(696,1425805200,5),(696,1446364800,3),(696,1457859600,5),(696,1478419200,3),(696,1489309200,5),(696,1509868800,3),(696,1520758800,5),(696,1541318400,3),(696,1552208400,5),(696,1572768000,3),(696,1583658000,5),(696,1604217600,3),(696,1615712400,5),(696,1636272000,3),(696,1647162000,5),(696,1667721600,3),(696,1678611600,5),(696,1699171200,3),(696,1710061200,5),(696,1730620800,3),(696,1741510800,5),(696,1762070400,3),(696,1772960400,5),(696,1793520000,3),(696,1805014800,5),(696,1825574400,3),(696,1836464400,5),(696,1857024000,3),(696,1867914000,5),(696,1888473600,3),(696,1899363600,5),(696,1919923200,3),(696,1930813200,5),(696,1951372800,3),(696,1962867600,5),(696,1983427200,3),(696,1994317200,5),(696,2014876800,3),(696,2025766800,5),(696,2046326400,3),(696,2057216400,5),(696,2077776000,3),(696,2088666000,5),(696,2109225600,3),(696,2120115600,5),(696,2140675200,3),(697,-2147483648,0),(697,-1767212492,2),(697,-1206954000,1),(697,-1191358800,2),(697,-1175371200,1),(697,-1159822800,2),(697,-633816000,1),(697,-622065600,2),(697,-602280000,1),(697,-591829200,2),(697,-570744000,1),(697,-560206800,2),(697,-539121600,1),(697,-531349200,2),(697,-191361600,1),(697,-184194000,2),(697,-155160000,1),(697,-150066000,2),(697,-128894400,1),(697,-121122000,2),(697,-99950400,1),(697,-89586000,2),(697,-68414400,1),(697,-57963600,2),(697,499752000,1),(697,511239600,2),(697,530596800,1),(697,540270000,2),(697,562132800,1),(697,571201200,2),(697,592977600,1),(697,602046000,2),(697,624427200,1),(697,634705200,2),(697,656481600,1),(697,666759600,2),(697,687931200,1),(697,697604400,2),(697,719985600,1),(697,728449200,2),(697,750830400,1),(697,761713200,2),(697,782280000,1),(697,793162800,2),(697,813729600,1),(697,824007600,2),(697,844574400,1),(697,856062000,2),(697,876110400,1),(697,888721200,2),(697,908078400,1),(697,919566000,2),(697,938923200,1),(697,951620400,2),(697,970977600,1),(697,982465200,2),(697,1003032000,1),(697,1013914800,2),(697,1036296000,1),(697,1045364400,2),(697,1066536000,1),(697,1076814000,2),(697,1099368000,1),(697,1108868400,2),(697,1129435200,1),(697,1140318000,2),(697,1162699200,1),(697,1172372400,2),(697,1192334400,1),(697,1203217200,2),(697,1224388800,1),(697,1234666800,2),(697,1255838400,1),(697,1266721200,2),(697,1287288000,1),(697,1298170800,2),(697,1318737600,1),(697,1330225200,2),(697,1350792000,1),(697,1361070000,2),(697,1382241600,1),(697,1392519600,2),(697,1413691200,1),(697,1424574000,2),(697,1445140800,1),(697,1456023600,2),(697,1476590400,1),(697,1487473200,2),(697,1508040000,1),(697,1518922800,2),(697,1541304000,1),(697,1550372400,2),(697,2147483647,2),(698,-2147483648,0),(698,-1514743200,1),(698,377935200,3),(698,828860400,2),(698,846396000,3),(698,860310000,2),(698,877845600,3),(698,891759600,2),(698,902037600,4),(698,909298800,1),(698,923212800,4),(698,941353200,1),(698,954662400,4),(698,972802800,1),(698,989136000,4),(698,1001833200,1),(698,1018166400,4),(698,1035702000,1),(698,1049616000,4),(698,1067151600,1),(698,1081065600,4),(698,1099206000,1),(698,1112515200,4),(698,1130655600,1),(698,1143964800,4),(698,1162105200,1),(698,1175414400,4),(698,1193554800,1),(698,1207468800,4),(698,1225004400,1),(698,1238918400,4),(698,1256454000,1),(698,1270368000,4),(698,1288508400,1),(698,1301817600,4),(698,1319958000,1),(698,1333267200,4),(698,1351407600,1),(698,1365321600,4),(698,1382857200,1),(698,1396771200,4),(698,1414306800,1),(698,1422777600,3),(699,-2147483648,1),(699,-1826739140,2),(699,-157750200,3),(699,1197183600,2),(699,1462086000,3),(699,2147483647,3),(700,-2147483648,1),(700,-1567453392,2),(700,-1233432000,3),(700,-1222981200,2),(700,-1205956800,3),(700,-1194037200,2),(700,-1172865600,3),(700,-1162501200,2),(700,-1141329600,3),(700,-1130965200,2),(700,-1109793600,3),(700,-1099429200,2),(700,-1078257600,3),(700,-1067806800,2),(700,-1046635200,3),(700,-1036270800,2),(700,-1015099200,3),(700,-1004734800,2),(700,-983563200,3),(700,-973198800,2),(700,-952027200,3),(700,-941576400,2),(700,-931032000,3),(700,-900882000,2),(700,-890337600,3),(700,-833749200,2),(700,-827265600,3),(700,-752274000,2),(700,-733780800,3),(700,-197326800,2),(700,-190843200,3),(700,-184194000,2),(700,-164491200,3),(700,-152658000,2),(700,-132955200,3),(700,-121122000,2),(700,-101419200,3),(700,-86821200,2),(700,-71092800,3),(700,-54766800,2),(700,-39038400,3),(700,-23317200,2),(700,-7588800,5),(700,128142000,4),(700,136605600,5),(700,596948400,4),(700,605066400,5),(700,624423600,4),(700,636516000,5),(700,656478000,4),(700,667965600,2),(700,687931200,4),(700,699415200,5),(700,719377200,4),(700,731469600,5),(700,938919600,3),(700,952052400,5),(700,1086058800,2),(700,1087704000,5),(700,1198983600,4),(700,1205632800,5),(700,2147483647,5),(701,-2147483648,0),(701,-1846269040,1),(701,-71092800,2),(701,2147483647,2),(702,-2147483648,1),(702,-1946918424,2),(703,-2147483648,2),(703,-1633276800,1),(703,-1615136400,2),(703,-1601827200,1),(703,-1583686800,2),(703,-1563724800,1),(703,-1551632400,2),(703,-1538928000,1),(703,-1520182800,2),(703,-1504454400,1),(703,-1491757200,2),(703,-1473004800,1),(703,-1459702800,2),(703,-1441555200,1),(703,-1428253200,2),(703,-1410105600,1),(703,-1396803600,2),(703,-1378656000,1),(703,-1365354000,2),(703,-1347206400,1),(703,-1333904400,2),(703,-1315152000,1),(703,-1301850000,2),(703,-1283702400,1),(703,-1270400400,2),(703,-1252252800,1),(703,-1238950800,2),(703,-1220803200,1),(703,-1207501200,2),(703,-1189353600,1),(703,-1176051600,2),(703,-1157299200,1),(703,-1144602000,2),(703,-1125849600,1),(703,-1112547600,2),(703,-1094400000,1),(703,-1081098000,2),(703,-1067788800,3),(703,-1045414800,2),(703,-1031500800,1),(703,-1018198800,2),(703,-1000051200,1),(703,-986749200,2),(703,-967996800,1),(703,-955299600,2),(703,-936547200,1),(703,-923245200,2),(703,-905097600,1),(703,-891795600,2),(703,-880214400,4),(703,-769395600,5),(703,-765392400,2),(703,-747244800,1),(703,-733942800,2),(703,-715795200,1),(703,-702493200,2),(703,-684345600,1),(703,-671043600,2),(703,-652896000,1),(703,-639594000,2),(703,-620841600,1),(703,-608144400,2),(703,-589392000,1),(703,-576090000,2),(703,-557942400,1),(703,-544640400,2),(703,-526492800,1),(703,-513190800,2),(703,-495043200,1),(703,-481741200,2),(703,-463593600,1),(703,-447267600,2),(703,-431539200,1),(703,-415818000,2),(703,-400089600,1),(703,-384368400,2),(703,-368640000,1),(703,-352918800,2),(703,-337190400,1),(703,-321469200,2),(703,-305740800,1),(703,-289414800,2),(703,-273686400,1),(703,-257965200,2),(703,-242236800,1),(703,-226515600,2),(703,-210787200,1),(703,-195066000,2),(703,-179337600,1),(703,-163616400,2),(703,-147888000,1),(703,-131562000,2),(703,-116438400,1),(703,-100112400,2),(703,-84384000,1),(703,-68662800,2),(703,-52934400,1),(703,-37213200,2),(703,-21484800,1),(703,-5763600,2),(703,9964800,1),(703,25686000,2),(703,41414400,1),(703,57740400,2),(703,73468800,1),(703,89190000,2),(703,104918400,1),(703,120639600,2),(703,126691200,1),(703,152089200,2),(703,162374400,1),(703,183538800,2),(703,199267200,1),(703,215593200,2),(703,230716800,1),(703,247042800,2),(703,262771200,1),(703,278492400,2),(703,294220800,1),(703,309942000,2),(703,325670400,1),(703,341391600,2),(703,357120000,1),(703,372841200,2),(703,388569600,1),(703,404895600,2),(703,420019200,1),(703,436345200,2),(703,452073600,1),(703,467794800,2),(703,483523200,1),(703,499244400,2),(703,514972800,1),(703,530694000,2),(703,544608000,1),(703,562143600,2),(703,576057600,1),(703,594198000,2),(703,607507200,1),(703,625647600,2),(703,638956800,1),(703,657097200,2),(703,671011200,1),(703,688546800,2),(703,702460800,1),(703,719996400,2),(703,733910400,1),(703,752050800,2),(703,765360000,1),(703,783500400,2),(703,796809600,1),(703,814950000,2),(703,828864000,1),(703,846399600,2),(703,860313600,1),(703,877849200,2),(703,891763200,1),(703,909298800,2),(703,923212800,1),(703,941353200,2),(703,954662400,1),(703,972802800,2),(703,986112000,1),(703,1004252400,2),(703,1018166400,1),(703,1035702000,2),(703,1049616000,1),(703,1067151600,2),(703,1081065600,1),(703,1099206000,2),(703,1112515200,1),(703,1130655600,2),(703,1143964800,1),(703,1162105200,2),(703,1173600000,1),(703,1194159600,2),(703,1205049600,1),(703,1225609200,2),(703,1236499200,1),(703,1257058800,2),(703,1268553600,1),(703,1289113200,2),(703,1300003200,1),(703,1320562800,2),(703,1331452800,1),(703,1352012400,2),(703,1362902400,1),(703,1383462000,2),(703,1394352000,1),(703,1414911600,2),(703,1425801600,1),(703,1446361200,2),(703,1457856000,1),(703,1478415600,2),(703,1489305600,1),(703,1509865200,2),(703,1520755200,1),(703,1541314800,2),(703,1552204800,1),(703,1572764400,2),(703,1583654400,1),(703,1604214000,2),(703,1615708800,1),(703,1636268400,2),(703,1647158400,1),(703,1667718000,2),(703,1678608000,1),(703,1699167600,2),(703,1710057600,1),(703,1730617200,2),(703,1741507200,1),(703,1762066800,2),(703,1772956800,1),(703,1793516400,2),(703,1805011200,1),(703,1825570800,2),(703,1836460800,1),(703,1857020400,2),(703,1867910400,1),(703,1888470000,2),(703,1899360000,1),(703,1919919600,2),(703,1930809600,1),(703,1951369200,2),(703,1962864000,1),(703,1983423600,2),(703,1994313600,1),(703,2014873200,2),(703,2025763200,1),(703,2046322800,2),(703,2057212800,1),(703,2077772400,2),(703,2088662400,1),(703,2109222000,2),(703,2120112000,1),(703,2140671600,2),(704,-2147483648,0),(704,-1514739600,1),(704,-1343066400,2),(704,-1234807200,1),(704,-1220292000,2),(704,-1207159200,1),(704,-1191344400,2),(704,828864000,3),(704,846399600,2),(704,860313600,3),(704,877849200,2),(704,891766800,4),(704,909302400,1),(704,923216400,4),(704,941356800,1),(704,954666000,4),(704,972806400,1),(704,989139600,4),(704,1001836800,1),(704,1018170000,4),(704,1035705600,1),(704,1049619600,4),(704,1067155200,1),(704,1081069200,4),(704,1099209600,1),(704,1112518800,4),(704,1130659200,1),(704,1143968400,4),(704,1162108800,1),(704,1175418000,4),(704,1193558400,1),(704,1207472400,4),(704,1225008000,1),(704,1238922000,4),(704,1256457600,1),(704,1270371600,4),(704,1288512000,1),(704,1301821200,4),(704,1319961600,1),(704,1333270800,4),(704,1351411200,1),(704,1365325200,4),(704,1382860800,1),(704,1396774800,4),(704,1414310400,1),(704,1428224400,4),(704,1445760000,1),(704,1459674000,4),(704,1477814400,1),(704,1491123600,4),(704,1509264000,1),(704,1522573200,4),(704,1540713600,1),(704,1554627600,4),(704,1572163200,1),(704,1586077200,4),(704,1603612800,1),(704,1617526800,4),(704,1635667200,1),(704,1648976400,4),(704,1667116800,1),(704,1680426000,4),(704,1698566400,1),(704,1712480400,4),(704,1730016000,1),(704,1743930000,4),(704,1761465600,1),(704,1775379600,4),(704,1792915200,1),(704,1806829200,4),(704,1824969600,1),(704,1838278800,4),(704,1856419200,1),(704,1869728400,4),(704,1887868800,1),(704,1901782800,4),(704,1919318400,1),(704,1933232400,4),(704,1950768000,1),(704,1964682000,4),(704,1982822400,1),(704,1996131600,4),(704,2014272000,1),(704,2027581200,4),(704,2045721600,1),(704,2059030800,4),(704,2077171200,1),(704,2091085200,4),(704,2108620800,1),(704,2122534800,4),(704,2140070400,1),(705,-2147483648,2),(705,-1632067200,1),(705,-1615136400,2),(705,-923248800,1),(705,-880214400,3),(705,-769395600,4),(705,-765392400,5),(706,-2147483648,1),(706,-1567453392,2),(706,-1233432000,3),(706,-1222981200,2),(706,-1205956800,3),(706,-1194037200,2),(706,-1172865600,3),(706,-1162501200,2),(706,-1141329600,3),(706,-1130965200,2),(706,-1109793600,3),(706,-1099429200,2),(706,-1078257600,3),(706,-1067806800,2),(706,-1046635200,3),(706,-1036270800,2),(706,-1015099200,3),(706,-1004734800,2),(706,-983563200,3),(706,-973198800,2),(706,-952027200,3),(706,-941576400,2),(706,-931032000,3),(706,-900882000,2),(706,-890337600,3),(706,-833749200,2),(706,-827265600,3),(706,-752274000,2),(706,-733780800,3),(706,-197326800,2),(706,-190843200,3),(706,-184194000,2),(706,-164491200,3),(706,-152658000,2),(706,-132955200,3),(706,-121122000,2),(706,-101419200,3),(706,-86821200,2),(706,-71092800,3),(706,-54766800,2),(706,-39038400,3),(706,-23317200,2),(706,-7588800,5),(706,128142000,4),(706,136605600,5),(706,596948400,4),(706,605066400,5),(706,624423600,4),(706,636516000,5),(706,656478000,4),(706,667965600,2),(706,687931200,4),(706,699415200,5),(706,719377200,4),(706,731469600,5),(706,938919600,3),(706,952052400,5),(706,1198983600,4),(706,1205632800,5),(706,1224385200,4),(706,1237082400,5),(706,2147483647,5),(707,-2147483648,1),(707,-1545071027,3),(707,288770400,2),(707,297234000,3),(707,320220000,2),(707,328683600,3),(707,664264800,2),(707,678344400,3),(707,695714400,2),(707,700635600,3),(708,-2147483648,1),(708,-1680454800,2),(708,-1627833600,1),(709,-2147483648,0),(709,-1767212140,2),(709,-1206954000,1),(709,-1191358800,2),(709,-1175371200,1),(709,-1159822800,2),(709,-633816000,1),(709,-622065600,2),(709,-602280000,1),(709,-591829200,2),(709,-570744000,1),(709,-560206800,2),(709,-539121600,1),(709,-531349200,2),(709,-191361600,1),(709,-184194000,2),(709,-155160000,1),(709,-150066000,2),(709,-128894400,1),(709,-121122000,2),(709,-99950400,1),(709,-89586000,2),(709,-68414400,1),(709,-57963600,2),(709,499752000,1),(709,511239600,2),(709,530596800,1),(709,540270000,2),(709,562132800,1),(709,571201200,2),(709,592977600,1),(709,602046000,2),(709,624427200,1),(709,634705200,2),(709,656481600,1),(709,666759600,2),(709,687931200,1),(709,697604400,2),(709,719985600,1),(709,728449200,2),(709,750830400,1),(709,761713200,2),(709,782280000,1),(709,793162800,2),(709,813729600,1),(709,824007600,2),(709,844574400,1),(709,856062000,2),(709,876110400,1),(709,888721200,2),(709,908078400,1),(709,919566000,2),(709,938923200,1),(709,951620400,2),(709,970977600,1),(709,982465200,2),(709,1003032000,1),(709,1013914800,2),(709,1036296000,1),(709,1045364400,2),(709,1099368000,1),(709,1108868400,2),(709,1129435200,1),(709,1140318000,2),(709,1162699200,1),(709,1172372400,2),(709,1192334400,1),(709,1203217200,2),(709,1224388800,1),(709,1234666800,2),(709,1255838400,1),(709,1266721200,2),(709,1287288000,1),(709,1298170800,2),(709,1318737600,1),(709,1330225200,2),(709,1350792000,1),(709,1361070000,2),(709,1382241600,1),(709,1392519600,2),(709,1413691200,1),(709,1424574000,2),(709,1445140800,1),(709,1456023600,2),(709,1476590400,1),(709,1487473200,2),(709,1508040000,1),(709,1518922800,2),(709,1541304000,1),(709,1550372400,2),(709,2147483647,2),(710,-2147483648,0),(710,-1826738653,1),(710,-157750200,2),(711,-2147483648,0),(711,-1686091520,1),(711,323845200,4),(711,338950800,2),(711,354675600,3),(711,370400400,2),(711,386125200,3),(711,401850000,2),(711,417574800,3),(711,433299600,2),(711,449024400,3),(711,465354000,2),(711,481078800,3),(711,496803600,2),(711,512528400,3),(711,528253200,2),(711,543978000,3),(711,559702800,2),(711,575427600,3),(711,591152400,2),(711,606877200,3),(711,622602000,2),(711,638326800,3),(711,654656400,2),(711,670381200,3),(711,686106000,2),(711,701830800,3),(711,717555600,2),(711,733280400,3),(711,749005200,2),(711,764730000,3),(711,780454800,2),(711,796179600,3),(711,811904400,2),(711,820465200,5),(712,-2147483648,2),(712,-1632056400,1),(712,-1615125600,2),(712,-1596978000,1),(712,-1583164800,2),(712,-880203600,3),(712,-769395600,4),(712,-765381600,2),(712,-147884400,5),(712,-131554800,2),(712,120646800,6),(712,325677600,7),(712,341398800,6),(712,357127200,7),(712,372848400,6),(712,388576800,7),(712,404902800,6),(712,420026400,7),(712,436352400,6),(712,452080800,7),(712,467802000,6),(712,483530400,7),(712,499251600,6),(712,514980000,7),(712,530701200,6),(712,544615200,7),(712,562150800,6),(712,576064800,7),(712,594205200,6),(712,607514400,7),(712,625654800,6),(712,638964000,7),(712,657104400,6),(712,671018400,7),(712,688554000,6),(712,702468000,7),(712,720003600,6),(712,733917600,7),(712,752058000,6),(712,765367200,7),(712,783507600,6),(712,796816800,7),(712,814957200,6),(712,828871200,7),(712,846406800,6),(712,860320800,7),(712,877856400,6),(712,891770400,7),(712,909306000,6),(712,923220000,7),(712,941360400,6),(712,954669600,7),(712,972810000,6),(712,986119200,7),(712,1004259600,6),(712,1018173600,7),(712,1035709200,6),(712,1049623200,7),(712,1067158800,6),(712,1081072800,7),(712,1099213200,6),(712,1112522400,7),(712,1130662800,6),(712,1143972000,7),(712,1162112400,6),(712,1173607200,7),(712,1194166800,6),(712,1205056800,7),(712,1225616400,6),(712,1236506400,7),(712,1257066000,6),(712,1268560800,7),(712,1289120400,6),(712,1300010400,7),(712,1320570000,6),(712,1331460000,7),(712,1352019600,6),(712,1362909600,7),(712,1383469200,6),(712,1394359200,7),(712,1414918800,6),(712,1425808800,7),(712,1446368400,6),(712,1457863200,7),(712,1478422800,6),(712,1489312800,7),(712,1509872400,6),(712,1520762400,7),(712,1541322000,6),(712,1552212000,7),(712,1572771600,6),(712,1583661600,7),(712,1604214000,8),(713,-2147483648,2),(713,-1632060000,1),(713,-1615129200,2),(713,-880207200,3),(713,-769395600,4),(713,-765385200,2),(713,-715788000,1),(713,-702486000,2),(713,-684338400,1),(713,-671036400,2),(713,-652888800,1),(713,-639586800,2),(713,-620834400,1),(713,-608137200,2),(713,-589384800,1),(713,-576082800,2),(713,-557935200,1),(713,-544633200,2),(713,-526485600,1),(713,-513183600,2),(713,-495036000,1),(713,-481734000,2),(713,-463586400,1),(713,-450284400,2),(713,-431532000,1),(713,-418230000,2),(713,-400082400,1),(713,-386780400,2),(713,-368632800,1),(713,-355330800,2),(713,-337183200,1),(713,-323881200,2),(713,-305733600,1),(713,-292431600,2),(713,-273679200,1),(713,-260982000,2),(713,-242229600,1),(713,-226508400,2),(713,-210780000,1),(713,-195058800,2),(713,-179330400,1),(713,-163609200,2),(713,-147880800,1),(713,-131554800,2),(713,-116431200,1),(713,-100105200,2),(713,-84376800,1),(713,-68655600,2),(713,-52927200,1),(713,-37206000,2),(713,-21477600,1),(713,-5756400,2),(713,9972000,1),(713,25693200,2),(713,41421600,1),(713,57747600,2),(713,73476000,1),(713,84013200,5),(714,-2147483648,2),(714,-1633273200,1),(714,-1615132800,2),(714,-1601823600,1),(714,-1583683200,2),(714,-1570374000,1),(714,-1551628800,2),(714,-1538924400,1),(714,-1534089600,2),(714,-880210800,3),(714,-769395600,4),(714,-765388800,2),(714,-147884400,1),(714,-131558400,2),(714,-116434800,1),(714,-100108800,2),(714,-84380400,1),(714,-68659200,2),(714,-52930800,1),(714,-37209600,2),(714,-21481200,1),(714,-5760000,2),(714,9968400,1),(714,25689600,2),(714,41418000,1),(714,57744000,2),(714,73472400,1),(714,89193600,2),(714,104922000,1),(714,120643200,2),(714,126694800,1),(714,152092800,2),(714,162378000,1),(714,183542400,2),(714,199270800,1),(714,215596800,2),(714,230720400,1),(714,247046400,2),(714,262774800,1),(714,278496000,2),(714,294224400,1),(714,309945600,2),(714,325674000,1),(714,341395200,2),(714,357123600,1),(714,372844800,2),(714,388573200,1),(714,404899200,2),(714,420022800,1),(714,436348800,2),(714,452077200,1),(714,467798400,2),(714,483526800,1),(714,499248000,2),(714,514976400,1),(714,530697600,2),(714,544611600,1),(714,562147200,2),(714,576061200,1),(714,594201600,2),(714,607510800,1),(714,625651200,2),(714,638960400,1),(714,657100800,2),(714,671014800,1),(714,688550400,2),(714,702464400,1),(714,720000000,2),(714,733914000,1),(714,752054400,2),(714,765363600,1),(714,783504000,2),(714,796813200,1),(714,814953600,2),(714,828867600,1),(714,846403200,2),(714,860317200,1),(714,877852800,2),(714,891766800,1),(714,909302400,2),(714,923216400,1),(714,941356800,2),(714,954666000,1),(714,972806400,2),(714,986115600,1),(714,1004256000,2),(714,1018170000,1),(714,1035705600,2),(714,1049619600,1),(714,1067155200,2),(714,1081069200,1),(714,1099209600,2),(714,1112518800,1),(714,1130659200,2),(714,1143968400,1),(714,1162108800,2),(714,1173603600,1),(714,1194163200,2),(714,1205053200,1),(714,1225612800,2),(714,1236502800,1),(714,1257062400,2),(714,1268557200,1),(714,1289116800,2),(714,1300006800,1),(714,1320566400,2),(714,1331456400,1),(714,1352016000,2),(714,1362906000,1),(714,1383465600,2),(714,1394355600,1),(714,1414915200,2),(714,1425805200,1),(714,1446364800,2),(714,1457859600,1),(714,1478419200,2),(714,1489309200,1),(714,1509868800,2),(714,1520758800,1),(714,1541318400,2),(714,1552208400,1),(714,1572768000,2),(714,1583658000,1),(714,1604217600,2),(714,1615712400,1),(714,1636272000,2),(714,1647162000,1),(714,1667721600,2),(714,1678611600,1),(714,1699171200,2),(714,1710061200,1),(714,1730620800,2),(714,1741510800,1),(714,1762070400,2),(714,1772960400,1),(714,1793520000,2),(714,1805014800,1),(714,1825574400,2),(714,1836464400,1),(714,1857024000,2),(714,1867914000,1),(714,1888473600,2),(714,1899363600,1),(714,1919923200,2),(714,1930813200,1),(714,1951372800,2),(714,1962867600,1),(714,1983427200,2),(714,1994317200,1),(714,2014876800,2),(714,2025766800,1),(714,2046326400,2),(714,2057216400,1),(714,2077776000,2),(714,2088666000,1),(714,2109225600,2),(714,2120115600,1),(714,2140675200,2),(715,-2147483648,0),(715,-2051202469,1),(715,-1724083200,2),(715,-880218000,3),(715,-769395600,4),(715,-765396000,2),(715,-684349200,5),(715,-671047200,2),(715,-80506740,5),(715,-68666400,2),(715,-52938000,5),(715,-37216800,2),(715,104914800,5),(715,120636000,2),(715,126687600,5),(715,152085600,2),(715,167814000,5),(715,183535200,2),(715,199263600,5),(715,215589600,2),(715,230713200,5),(715,247039200,2),(715,262767600,5),(715,278488800,2),(715,294217200,5),(715,309938400,2),(715,325666800,5),(715,341388000,2),(715,357116400,5),(715,372837600,2),(715,388566000,5),(715,404892000,2),(715,420015600,5),(715,436341600,2),(715,452070000,5),(715,467791200,2),(715,483519600,5),(715,499240800,2),(715,514969200,5),(715,530690400,2),(715,544604400,5),(715,562140000,2),(715,576054000,5),(715,594194400,2),(715,607503600,5),(715,625644000,2),(715,638953200,5),(715,657093600,2),(715,671007600,5),(715,688543200,2),(715,702457200,5),(715,719992800,2),(715,733906800,5),(715,752047200,2),(715,765356400,5),(715,783496800,2),(715,796806000,5),(715,814946400,2),(715,828860400,5),(715,846396000,2),(715,860310000,5),(715,877845600,2),(715,891759600,5),(715,909295200,2),(715,923209200,5),(715,941349600,2),(715,954658800,5),(715,972799200,2),(715,986108400,5),(715,1004248800,2),(715,1018162800,5),(715,1035698400,2),(715,1049612400,5),(715,1067148000,2),(715,1081062000,5),(715,1099202400,2),(715,1112511600,5),(715,1130652000,2),(715,1143961200,5),(715,1162101600,2),(715,1173596400,5),(715,1194156000,2),(715,1205046000,5),(715,1225605600,2),(715,1236495600,5),(715,1257055200,2),(715,1268550000,5),(715,1289109600,2),(715,1299999600,5),(715,1320559200,2),(715,1331449200,5),(715,1352008800,2),(715,1362898800,5),(715,1383458400,2),(715,1394348400,5),(715,1414908000,2),(715,1425798000,5),(715,1446357600,2),(715,1457852400,5),(715,1478412000,2),(715,1489302000,5),(715,1509861600,2),(715,1520751600,5),(715,1541311200,2),(715,1552201200,5),(715,1572760800,2),(715,1583650800,5),(715,1604210400,2),(715,1615705200,5),(715,1636264800,2),(715,1647154800,5),(715,1667714400,2),(715,1678604400,5),(715,1699164000,2),(715,1710054000,5),(715,1730613600,2),(715,1741503600,5),(715,1762063200,2),(715,1772953200,5),(715,1793512800,2),(715,1805007600,5),(715,1825567200,2),(715,1836457200,5),(715,1857016800,2),(715,1867906800,5),(715,1888466400,2),(715,1899356400,5),(715,1919916000,2),(715,1930806000,5),(715,1951365600,2),(715,1962860400,5),(715,1983420000,2),(715,1994310000,5),(715,2014869600,2),(715,2025759600,5),(715,2046319200,2),(715,2057209200,5),(715,2077768800,2),(715,2088658800,5),(715,2109218400,2),(715,2120108400,5),(715,2140668000,2),(716,-2147483648,0),(716,-1825098836,1),(717,-2147483648,0),(717,-1998663968,2),(717,-1632063600,1),(717,-1615132800,2),(717,-1600614000,1),(717,-1596816000,2),(717,-1567954800,1),(717,-1551628800,2),(717,-1536505200,1),(717,-1523203200,2),(717,-1504450800,1),(717,-1491753600,2),(717,-1473001200,1),(717,-1459699200,2),(717,-880210800,3),(717,-769395600,4),(717,-765388800,2),(717,-715791600,1),(717,-702489600,2),(717,73472400,1),(717,89193600,2),(717,104922000,1),(717,120643200,2),(717,136371600,1),(717,152092800,2),(717,167821200,1),(717,183542400,2),(717,199270800,1),(717,215596800,2),(717,230720400,1),(717,247046400,2),(717,262774800,1),(717,278496000,2),(717,294224400,1),(717,309945600,2),(717,325674000,1),(717,341395200,2),(717,357123600,1),(717,372844800,2),(717,388573200,1),(717,404899200,2),(717,420022800,1),(717,436348800,2),(717,452077200,1),(717,467798400,2),(717,483526800,1),(717,499248000,2),(717,514976400,1),(717,530697600,2),(717,544611600,1),(717,562147200,2),(717,576061200,1),(717,594201600,2),(717,607510800,1),(717,625651200,2),(717,638960400,1),(717,657100800,2),(717,671014800,1),(717,688550400,2),(717,702464400,1),(717,720000000,2),(717,733914000,1),(717,752054400,2),(717,765363600,1),(717,783504000,2),(717,796813200,1),(717,814953600,2),(717,828867600,1),(717,846403200,2),(717,860317200,1),(717,877852800,2),(717,891766800,1),(717,909302400,2),(717,923216400,1),(717,941356800,2),(717,954666000,1),(717,972806400,2),(717,986115600,1),(717,1004256000,2),(717,1018170000,1),(717,1035705600,2),(717,1049619600,1),(717,1067155200,2),(717,1081069200,1),(717,1099209600,2),(717,1112518800,1),(717,1130659200,2),(717,1143968400,1),(717,1162108800,2),(717,1173603600,1),(717,1194163200,2),(717,1205053200,1),(717,1225612800,2),(717,1236502800,1),(717,1257062400,2),(717,1268557200,1),(717,1289116800,2),(717,1300006800,1),(717,1320566400,2),(717,1331456400,1),(717,1352016000,2),(717,1362906000,1),(717,1383465600,2),(717,1394355600,1),(717,1414915200,2),(717,1425805200,1),(717,1446364800,2),(717,1457859600,1),(717,1478419200,2),(717,1489309200,1),(717,1509868800,2),(717,1520758800,1),(717,1541318400,2),(717,1552208400,1),(717,1572768000,2),(717,1583658000,1),(717,1604217600,2),(717,1615712400,1),(717,1636272000,2),(717,1647162000,1),(717,1667721600,2),(717,1678611600,1),(717,1699171200,2),(717,1710061200,1),(717,1730620800,2),(717,1741510800,1),(717,1762070400,2),(717,1772960400,1),(717,1793520000,2),(717,1805014800,1),(717,1825574400,2),(717,1836464400,1),(717,1857024000,2),(717,1867914000,1),(717,1888473600,2),(717,1899363600,1),(717,1919923200,2),(717,1930813200,1),(717,1951372800,2),(717,1962867600,1),(717,1983427200,2),(717,1994317200,1),(717,2014876800,2),(717,2025766800,1),(717,2046326400,2),(717,2057216400,1),(717,2077776000,2),(717,2088666000,1),(717,2109225600,2),(717,2120115600,1),(717,2140675200,2),(718,-2147483648,0),(718,-1767208832,2),(718,-1206950400,1),(718,-1191355200,2),(718,-1175367600,1),(718,-1159819200,2),(718,-633812400,1),(718,-622062000,2),(718,-602276400,1),(718,-591825600,2),(718,-570740400,1),(718,-560203200,2),(718,-539118000,1),(718,-531345600,2),(718,-191358000,1),(718,-184190400,2),(718,-155156400,1),(718,-150062400,2),(718,-128890800,1),(718,-121118400,2),(718,-99946800,1),(718,-89582400,2),(718,-68410800,1),(718,-57960000,2),(718,499755600,1),(718,511243200,2),(718,530600400,1),(718,540273600,2),(718,562136400,1),(718,571204800,2),(718,750834000,1),(718,761716800,2),(718,1214283600,3),(718,1384056000,2),(718,2147483647,2),(719,-2147483648,0),(719,-1546279392,2),(719,547020000,1),(719,559717200,2),(719,578469600,1),(719,591166800,2),(720,-2147483648,0),(720,-1514736000,1),(720,-1451667600,2),(720,-1343062800,1),(720,-1234803600,2),(720,-1222963200,3),(720,-1207242000,2),(720,-873820800,4),(720,-769395600,5),(720,-761677200,2),(720,-686073600,3),(720,-661539600,2),(720,-495039600,3),(720,-481734000,2),(720,-463590000,3),(720,-450284400,2),(720,-431535600,3),(720,-418230000,2),(720,-400086000,3),(720,-386780400,2),(720,-368636400,3),(720,-355330800,2),(720,-337186800,3),(720,-323881200,2),(720,-305737200,3),(720,-292431600,2),(720,199274400,3),(720,215600400,2),(720,230724000,3),(720,247050000,2),(720,262778400,3),(720,278499600,2),(720,294228000,3),(720,309949200,2),(720,325677600,3),(720,341398800,2),(720,357127200,3),(720,372848400,2),(720,388576800,3),(720,404902800,2),(720,420026400,3),(720,436352400,2),(720,452080800,3),(720,467802000,2),(720,483530400,3),(720,499251600,2),(720,514980000,3),(720,530701200,2),(720,544615200,3),(720,562150800,2),(720,576064800,3),(720,594205200,2),(720,607514400,3),(720,625654800,2),(720,638964000,3),(720,657104400,2),(720,671018400,3),(720,688554000,2),(720,702468000,3),(720,720003600,2),(720,733917600,3),(720,752058000,2),(720,765367200,3),(720,783507600,2),(720,796816800,3),(720,814957200,2),(720,828871200,3),(720,846406800,2),(720,860320800,3),(720,877856400,2),(720,891770400,3),(720,909306000,2),(720,923220000,3),(720,941360400,2),(720,954669600,3),(720,972810000,2),(720,986119200,3),(720,1004259600,2),(720,1018173600,3),(720,1035709200,2),(720,1049623200,3),(720,1067158800,2),(720,1081072800,3),(720,1099213200,2),(720,1112522400,3),(720,1130662800,2),(720,1143972000,3),(720,1162112400,2),(720,1175421600,3),(720,1193562000,2),(720,1207476000,3),(720,1225011600,2),(720,1238925600,3),(720,1256461200,2),(720,1268560800,3),(720,1289120400,2),(720,1300010400,3),(720,1320570000,2),(720,1331460000,3),(720,1352019600,2),(720,1362909600,3),(720,1383469200,2),(720,1394359200,3),(720,1414918800,2),(720,1425808800,3),(720,1446368400,2),(720,1457863200,3),(720,1478422800,2),(720,1489312800,3),(720,1509872400,2),(720,1520762400,3),(720,1541322000,2),(720,1552212000,3),(720,1572771600,2),(720,1583661600,3),(720,1604221200,2),(720,1615716000,3),(720,1636275600,2),(720,1647165600,3),(720,1667725200,2),(720,1678615200,3),(720,1699174800,2),(720,1710064800,3),(720,1730624400,2),(720,1741514400,3),(720,1762074000,2),(720,1772964000,3),(720,1793523600,2),(720,1805018400,3),(720,1825578000,2),(720,1836468000,3),(720,1857027600,2),(720,1867917600,3),(720,1888477200,2),(720,1899367200,3),(720,1919926800,2),(720,1930816800,3),(720,1951376400,2),(720,1962871200,3),(720,1983430800,2),(720,1994320800,3),(720,2014880400,2),(720,2025770400,3),(720,2046330000,2),(720,2057220000,3),(720,2077779600,2),(720,2088669600,3),(720,2109229200,2),(720,2120119200,3),(720,2140678800,2),(721,-2147483648,2),(721,-1632060000,1),(721,-1615129200,2),(721,-880207200,3),(721,-769395600,4),(721,-765385200,2),(721,-715788000,1),(721,-702486000,2),(721,-684338400,1),(721,-671036400,2),(721,-652888800,1),(721,-639586800,2),(721,-620834400,1),(721,-608137200,2),(721,-589384800,1),(721,-576082800,2),(721,-557935200,1),(721,-544633200,2),(721,-526485600,1),(721,-513183600,2),(721,-495036000,1),(721,-481734000,2),(721,-463586400,1),(721,-450284400,2),(721,-431532000,1),(721,-418230000,2),(721,-400082400,1),(721,-386780400,2),(721,-368632800,1),(721,-355330800,2),(721,-337183200,1),(721,-323881200,2),(721,-305733600,1),(721,-292431600,2),(721,-273679200,1),(721,-260982000,2),(721,-242229600,1),(721,-226508400,2),(721,-210780000,1),(721,-195058800,2),(721,-179330400,1),(721,-163609200,2),(721,-147880800,1),(721,-131554800,2),(721,-116431200,1),(721,-100105200,2),(721,-84376800,1),(721,-68655600,2),(721,-52927200,1),(721,-37206000,2),(721,-21477600,1),(721,-5756400,2),(721,9972000,1),(721,25693200,2),(721,41421600,1),(721,57747600,2),(721,73476000,1),(721,89197200,2),(721,104925600,1),(721,120646800,2),(721,136375200,1),(721,152096400,2),(721,167824800,1),(721,183546000,2),(721,199274400,1),(721,215600400,2),(721,230724000,1),(721,247050000,2),(721,262778400,1),(721,278499600,2),(721,294228000,1),(721,309949200,2),(721,325677600,1),(721,341398800,2),(721,357127200,1),(721,372848400,2),(721,388576800,1),(721,404902800,2),(721,420026400,1),(721,436352400,2),(721,452080800,1),(721,467802000,2),(721,483530400,1),(721,499251600,2),(721,514980000,1),(721,530701200,2),(721,544615200,1),(721,562150800,2),(721,576064800,1),(721,594205200,2),(721,607514400,1),(721,625654800,2),(721,638964000,1),(721,657104400,2),(721,671018400,1),(721,688554000,2),(721,702468000,1),(721,720003600,2),(721,733917600,1),(721,752058000,2),(721,765367200,1),(721,783507600,2),(721,796816800,1),(721,814957200,2),(721,828871200,1),(721,846406800,2),(721,860320800,1),(721,877856400,2),(721,891770400,1),(721,909306000,2),(721,923220000,1),(721,941360400,2),(721,954669600,1),(721,972810000,2),(721,986119200,1),(721,1004259600,2),(721,1018173600,1),(721,1035709200,2),(721,1049623200,1),(721,1067158800,2),(721,1081072800,1),(721,1099213200,2),(721,1112522400,1),(721,1130662800,2),(721,1143972000,1),(721,1162112400,2),(721,1173607200,1),(721,1194166800,2),(721,1205056800,1),(721,1225616400,2),(721,1236506400,1),(721,1257066000,2),(721,1268560800,1),(721,1289120400,2),(721,1300010400,1),(721,1320570000,2),(721,1331460000,1),(721,1352019600,2),(721,1362909600,1),(721,1383469200,2),(721,1394359200,1),(721,1414918800,2),(721,1425808800,5),(722,-2147483648,2),(722,-1633276800,1),(722,-1615136400,2),(722,-1601827200,1),(722,-1583686800,2),(722,-900259200,1),(722,-891795600,2),(722,-880214400,3),(722,-769395600,4),(722,-765392400,2),(722,-747244800,1),(722,-733942800,2),(722,-715795200,1),(722,-702493200,2),(722,-684345600,1),(722,-671043600,2),(722,-652896000,1),(722,-639594000,2),(722,-620841600,1),(722,-608144400,2),(722,-589392000,1),(722,-576090000,2),(722,-557942400,1),(722,-544640400,2),(722,-526492800,1),(722,-513190800,2),(722,-495043200,1),(722,-481741200,2),(722,-463593600,5),(722,-386787600,2),(722,-368640000,5),(722,-21488400,6),(722,-5767200,5),(722,9961200,6),(722,25682400,5),(722,1143961200,6),(722,1162101600,5),(722,1173596400,6),(722,1194156000,5),(722,1205046000,6),(722,1225605600,5),(722,1236495600,6),(722,1257055200,5),(722,1268550000,6),(722,1289109600,5),(722,1299999600,6),(722,1320559200,5),(722,1331449200,6),(722,1352008800,5),(722,1362898800,6),(722,1383458400,5),(722,1394348400,6),(722,1414908000,5),(722,1425798000,6),(722,1446357600,5),(722,1457852400,6),(722,1478412000,5),(722,1489302000,6),(722,1509861600,5),(722,1520751600,6),(722,1541311200,5),(722,1552201200,6),(722,1572760800,5),(722,1583650800,6),(722,1604210400,5),(722,1615705200,6),(722,1636264800,5),(722,1647154800,6),(722,1667714400,5),(722,1678604400,6),(722,1699164000,5),(722,1710054000,6),(722,1730613600,5),(722,1741503600,6),(722,1762063200,5),(722,1772953200,6),(722,1793512800,5),(722,1805007600,6),(722,1825567200,5),(722,1836457200,6),(722,1857016800,5),(722,1867906800,6),(722,1888466400,5),(722,1899356400,6),(722,1919916000,5),(722,1930806000,6),(722,1951365600,5),(722,1962860400,6),(722,1983420000,5),(722,1994310000,6),(722,2014869600,5),(722,2025759600,6),(722,2046319200,5),(722,2057209200,6),(722,2077768800,5),(722,2088658800,6),(722,2109218400,5),(722,2120108400,6),(722,2140668000,5),(723,-2147483648,0),(723,-1767216360,2),(723,-1206957600,1),(723,-1191362400,2),(723,-1175374800,1),(723,-1159826400,2),(723,-633819600,1),(723,-622069200,2),(723,-602283600,1),(723,-591832800,2),(723,-570747600,1),(723,-560210400,2),(723,-539125200,1),(723,-531352800,2),(723,-191365200,1),(723,-184197600,2),(723,-155163600,1),(723,-150069600,2),(723,-128898000,1),(723,-121125600,2),(723,-99954000,1),(723,-89589600,2),(723,-68418000,1),(723,-57967200,2),(723,499748400,1),(723,511236000,2),(723,530593200,1),(723,540266400,2),(723,562129200,1),(723,571197600,2),(723,592974000,1),(723,602042400,2),(723,624423600,1),(723,634701600,2),(723,938919600,1),(723,951616800,2),(723,970974000,1),(723,972180000,2),(723,1003028400,1),(723,1013911200,2),(723,2147483647,2),(724,-2147483648,0),(724,-2131646412,2),(724,-1632074400,1),(724,-1615143600,2),(724,-880221600,3),(724,-769395600,4),(724,-765399600,2),(724,-526500000,1),(724,-513198000,2),(724,73461600,1),(724,89182800,2),(724,104911200,1),(724,120632400,2),(724,136360800,1),(724,152082000,2),(724,167810400,1),(724,183531600,2),(724,199260000,1),(724,215586000,2),(724,230709600,1),(724,247035600,2),(724,262764000,1),(724,278485200,2),(724,294213600,1),(724,309934800,2),(724,325663200,1),(724,341384400,2),(724,357112800,1),(724,372834000,2),(724,388562400,1),(724,404888400,2),(724,420012000,1),(724,436338000,2),(724,452066400,1),(724,467787600,2),(724,483516000,1),(724,499237200,2),(724,514965600,1),(724,530686800,2),(724,544600800,1),(724,562136400,2),(724,576050400,1),(724,594190800,2),(724,607500000,1),(724,625640400,2),(724,638949600,1),(724,657090000,2),(724,671004000,1),(724,688539600,2),(724,702453600,1),(724,719989200,2),(724,733903200,1),(724,752043600,2),(724,765352800,1),(724,783493200,2),(724,796802400,1),(724,814942800,2),(724,828856800,1),(724,846392400,2),(724,860306400,1),(724,877842000,2),(724,891756000,1),(724,909291600,2),(724,923205600,1),(724,941346000,2),(724,954655200,1),(724,972795600,2),(724,986104800,1),(724,1004245200,2),(724,1018159200,1),(724,1035694800,2),(724,1049608800,1),(724,1067144400,2),(724,1081058400,1),(724,1099198800,2),(724,1112508000,1),(724,1130648400,2),(724,1143957600,1),(724,1162098000,2),(724,1173592800,1),(724,1194152400,2),(724,1205042400,1),(724,1225602000,2),(724,1236492000,1),(724,1257051600,2),(724,1268546400,1),(724,1289106000,2),(724,1299996000,1),(724,1320555600,2),(724,1331445600,1),(724,1352005200,2),(724,1362895200,1),(724,1383454800,2),(724,1394344800,1),(724,1414904400,2),(724,1425794400,1),(724,1446354000,2),(724,1457848800,1),(724,1478408400,2),(724,1489298400,1),(724,1509858000,2),(724,1520748000,1),(724,1541307600,2),(724,1552197600,1),(724,1572757200,2),(724,1583647200,1),(724,1604206800,2),(724,1615701600,1),(724,1636261200,2),(724,1647151200,1),(724,1667710800,2),(724,1678600800,1),(724,1699160400,2),(724,1710050400,1),(724,1730610000,2),(724,1741500000,1),(724,1762059600,2),(724,1772949600,1),(724,1793509200,2),(724,1805004000,1),(724,1825563600,2),(724,1836453600,1),(724,1857013200,2),(724,1867903200,1),(724,1888462800,2),(724,1899352800,1),(724,1919912400,2),(724,1930802400,1),(724,1951362000,2),(724,1962856800,1),(724,1983416400,2),(724,1994306400,1),(724,2014866000,2),(724,2025756000,1),(724,2046315600,2),(724,2057205600,1),(724,2077765200,2),(724,2088655200,1),(724,2109214800,2),(724,2120104800,1),(724,2140664400,2),(725,-2147483648,0),(725,-1686083584,1),(725,323845200,4),(725,338950800,2),(725,354675600,3),(725,370400400,2),(725,386125200,3),(725,401850000,2),(725,417574800,3),(725,433299600,2),(725,449024400,3),(725,465354000,2),(725,481078800,3),(725,496803600,2),(725,512528400,3),(725,528253200,2),(725,543978000,3),(725,559702800,2),(725,575427600,3),(725,591152400,2),(725,606877200,3),(725,622602000,2),(725,638326800,3),(725,654656400,2),(725,670381200,3),(725,686106000,2),(725,701830800,3),(725,717555600,2),(725,733280400,3),(725,749005200,2),(725,764730000,3),(725,780454800,2),(725,796179600,3),(725,811904400,2),(725,828234000,3),(725,846378000,2),(725,859683600,3),(725,877827600,2),(725,891133200,3),(725,909277200,2),(725,922582800,3),(725,941331600,2),(725,954032400,3),(725,972781200,2),(725,985482000,3),(725,1004230800,2),(725,1017536400,3),(725,1035680400,2),(725,1048986000,3),(725,1067130000,2),(725,1080435600,3),(725,1099184400,2),(725,1111885200,3),(725,1130634000,2),(725,1143334800,3),(725,1162083600,2),(725,1174784400,3),(725,1193533200,2),(725,1206838800,3),(725,1224982800,2),(725,1238288400,3),(725,1256432400,2),(725,1269738000,3),(725,1288486800,2),(725,1301187600,3),(725,1319936400,2),(725,1332637200,3),(725,1351386000,2),(725,1364691600,3),(725,1382835600,2),(725,1396141200,3),(725,1414285200,2),(725,1427590800,3),(725,1445734800,2),(725,1459040400,3),(725,1477789200,2),(725,1490490000,3),(725,1509238800,2),(725,1521939600,3),(725,1540688400,2),(725,1553994000,3),(725,1572138000,2),(725,1585443600,3),(725,1603587600,2),(725,1616893200,3),(725,1635642000,2),(725,1648342800,3),(725,1667091600,2),(725,1679792400,3),(725,1698541200,2),(725,1711846800,3),(725,1729990800,2),(725,1743296400,3),(725,1761440400,2),(725,1774746000,3),(725,1792890000,2),(725,1806195600,3),(725,1824944400,2),(725,1837645200,3),(725,1856394000,2),(725,1869094800,3),(725,1887843600,2),(725,1901149200,3),(725,1919293200,2),(725,1932598800,3),(725,1950742800,2),(725,1964048400,3),(725,1982797200,2),(725,1995498000,3),(725,2014246800,2),(725,2026947600,3),(725,2045696400,2),(725,2058397200,3),(725,2077146000,2),(725,2090451600,3),(725,2108595600,2),(725,2121901200,3),(725,2140045200,2),(725,2147483647,2),(726,-2147483648,1),(726,-1632076148,2),(726,-1615145348,1),(726,-1096921748,3),(726,-1061670600,4),(726,-1048973400,3),(726,-1030221000,4),(726,-1017523800,3),(726,-998771400,4),(726,-986074200,3),(726,-966717000,4),(726,-954624600,3),(726,-935267400,4),(726,-922570200,3),(726,-903817800,4),(726,-891120600,3),(726,-872368200,6),(726,-769395600,5),(726,-765401400,3),(726,-746044200,4),(726,-733347000,3),(726,-714594600,4),(726,-701897400,3),(726,-683145000,4),(726,-670447800,3),(726,-651695400,4),(726,-638998200,3),(726,-619641000,4),(726,-606943800,3),(726,-589401000,4),(726,-576099000,3),(726,-557951400,4),(726,-544649400,3),(726,-526501800,4),(726,-513199800,3),(726,-495052200,4),(726,-481750200,3),(726,-463602600,4),(726,-450300600,3),(726,-431548200,4),(726,-418246200,3),(726,-400098600,4),(726,-386796600,3),(726,-368649000,4),(726,-355347000,3),(726,-337199400,4),(726,-323897400,3),(726,-305749800,4),(726,-289423800,3),(726,-273695400,4),(726,-257974200,3),(726,-242245800,4),(726,-226524600,3),(726,-210796200,4),(726,-195075000,3),(726,-179346600,4),(726,-163625400,3),(726,-147897000,4),(726,-131571000,3),(726,-119903400,8),(726,-116445600,7),(726,-100119600,8),(726,-84391200,7),(726,-68670000,8),(726,-52941600,7),(726,-37220400,8),(726,-21492000,7),(726,-5770800,8),(726,9957600,7),(726,25678800,8),(726,41407200,7),(726,57733200,8),(726,73461600,7),(726,89182800,8),(726,104911200,7),(726,120632400,8),(726,136360800,7),(726,152082000,8),(726,167810400,7),(726,183531600,8),(726,199260000,7),(726,215586000,8),(726,230709600,7),(726,247035600,8),(726,262764000,7),(726,278485200,8),(726,294213600,7),(726,309934800,8),(726,325663200,7),(726,341384400,8),(726,357112800,7),(726,372834000,8),(726,388562400,7),(726,404888400,8),(726,420012000,7),(726,436338000,8),(726,452066400,7),(726,467787600,8),(726,483516000,7),(726,499237200,8),(726,514965600,7),(726,530686800,8),(726,544593660,7),(726,562129260,8),(726,576043260,9),(726,594180060,8),(726,607492860,7),(726,625633260,8),(726,638942460,7),(726,657082860,8),(726,670996860,7),(726,688532460,8),(726,702446460,7),(726,719982060,8),(726,733896060,7),(726,752036460,8),(726,765345660,7),(726,783486060,8),(726,796795260,7),(726,814935660,8),(726,828849660,7),(726,846385260,8),(726,860299260,7),(726,877834860,8),(726,891748860,7),(726,909284460,8),(726,923198460,7),(726,941338860,8),(726,954648060,7),(726,972788460,8),(726,986097660,7),(726,1004238060,8),(726,1018152060,7),(726,1035687660,8),(726,1049601660,7),(726,1067137260,8),(726,1081051260,7),(726,1099191660,8),(726,1112500860,7),(726,1130641260,8),(726,1143950460,7),(726,1162090860,8),(726,1173585660,7),(726,1194145260,8),(726,1205035260,7),(726,1225594860,8),(726,1236484860,7),(726,1257044460,8),(726,1268539260,7),(726,1289098860,8),(726,1299988860,7),(726,1320555600,8),(726,1331445600,7),(726,1352005200,8),(726,1362895200,7),(726,1383454800,8),(726,1394344800,7),(726,1414904400,8),(726,1425794400,7),(726,1446354000,8),(726,1457848800,7),(726,1478408400,8),(726,1489298400,7),(726,1509858000,8),(726,1520748000,7),(726,1541307600,8),(726,1552197600,7),(726,1572757200,8),(726,1583647200,7),(726,1604206800,8),(726,1615701600,7),(726,1636261200,8),(726,1647151200,7),(726,1667710800,8),(726,1678600800,7),(726,1699160400,8),(726,1710050400,7),(726,1730610000,8),(726,1741500000,7),(726,1762059600,8),(726,1772949600,7),(726,1793509200,8),(726,1805004000,7),(726,1825563600,8),(726,1836453600,7),(726,1857013200,8),(726,1867903200,7),(726,1888462800,8),(726,1899352800,7),(726,1919912400,8),(726,1930802400,7),(726,1951362000,8),(726,1962856800,7),(726,1983416400,8),(726,1994306400,7),(726,2014866000,8),(726,2025756000,7),(726,2046315600,8),(726,2057205600,7),(726,2077765200,8),(726,2088655200,7),(726,2109214800,8),(726,2120104800,7),(726,2140664400,8),(727,-2147483648,1),(727,-1827687170,2),(727,294217200,3),(727,309938400,2),(727,325666800,3),(727,341388000,2),(727,357116400,3),(727,372837600,2),(727,388566000,3),(727,404892000,2),(727,420015600,3),(727,436341600,2),(727,452070000,3),(727,467791200,2),(727,483519600,3),(727,499240800,2),(727,514969200,3),(727,530690400,2),(727,544604400,3),(727,562140000,2),(727,576054000,3),(727,594194400,2),(727,607503600,3),(727,625644000,2),(727,638953200,3),(727,657093600,2),(727,671007600,3),(727,688543200,2),(727,702457200,3),(727,719992800,2),(727,733906800,3),(727,752047200,2),(727,765356400,3),(727,783496800,2),(727,796806000,3),(727,814946400,2),(727,828860400,3),(727,846396000,2),(727,860310000,3),(727,877845600,2),(727,891759600,3),(727,909295200,2),(727,923209200,3),(727,941349600,2),(727,954658800,3),(727,972799200,2),(727,986108400,3),(727,1004248800,2),(727,1018162800,3),(727,1035698400,2),(727,1049612400,3),(727,1067148000,2),(727,1081062000,3),(727,1099202400,2),(727,1112511600,3),(727,1130652000,2),(727,1143961200,3),(727,1162101600,2),(727,1173596400,3),(727,1194156000,2),(727,1205046000,3),(727,1225605600,2),(727,1236495600,3),(727,1257055200,2),(727,1268550000,3),(727,1289109600,2),(727,1299999600,3),(727,1320559200,2),(727,1331449200,3),(727,1352008800,2),(727,1362898800,3),(727,1383458400,2),(727,1394348400,3),(727,1414908000,2),(727,1425798000,4),(727,1520751600,3),(727,1541311200,2),(727,1552201200,3),(727,1572760800,2),(727,1583650800,3),(727,1604210400,2),(727,1615705200,3),(727,1636264800,2),(727,1647154800,3),(727,1667714400,2),(727,1678604400,3),(727,1699164000,2),(727,1710054000,3),(727,1730613600,2),(727,1741503600,3),(727,1762063200,2),(727,1772953200,3),(727,1793512800,2),(727,1805007600,3),(727,1825567200,2),(727,1836457200,3),(727,1857016800,2),(727,1867906800,3),(727,1888466400,2),(727,1899356400,3),(727,1919916000,2),(727,1930806000,3),(727,1951365600,2),(727,1962860400,3),(727,1983420000,2),(727,1994310000,3),(727,2014869600,2),(727,2025759600,3),(727,2046319200,2),(727,2057209200,3),(727,2077768800,2),(727,2088658800,3),(727,2109218400,2),(727,2120108400,3),(727,2140668000,2),(728,-2147483648,0),(728,-1825098836,1),(729,-2147483648,0),(729,-1825098836,1),(730,-2147483648,0),(730,-1617040676,2),(730,123055200,1),(730,130914000,2),(730,422344800,1),(730,433054800,2),(730,669708000,1),(730,684219600,2),(730,1146376800,1),(730,1159678800,2),(731,-2147483648,1),(731,-1230749160,3),(731,722926800,2),(731,728884800,3),(731,2147483647,3),(732,-2147483648,0),(732,-1730578040,1),(732,176010300,2),(732,662698800,3),(732,2147483647,3),(733,-2147483648,0),(733,-2131645536,2),(733,-1696276800,1),(733,-1680469200,2),(733,-1632074400,1),(733,-1615143600,2),(733,-1566763200,1),(733,-1557090000,2),(733,-1535486400,1),(733,-1524949200,2),(733,-1504468800,1),(733,-1493413200,2),(733,-1472414400,1),(733,-1461963600,2),(733,-1440964800,1),(733,-1429390800,2),(733,-1409515200,1),(733,-1396731600,2),(733,-1376856000,1),(733,-1366491600,2),(733,-1346616000,1),(733,-1333832400,2),(733,-1313956800,1),(733,-1303678800,2),(733,-1282507200,1),(733,-1272661200,2),(733,-1251057600,1),(733,-1240088400,2),(733,-1219608000,1),(733,-1207429200,2),(733,-1188763200,1),(733,-1175979600,2),(733,-1157313600,1),(733,-1143925200,2),(733,-1124049600,1),(733,-1113771600,2),(733,-1091390400,1),(733,-1081026000,2),(733,-1059854400,1),(733,-1050786000,2),(733,-1030910400,1),(733,-1018126800,2),(733,-999460800,1),(733,-986677200,2),(733,-965592000,1),(733,-955227600,2),(733,-935956800,1),(733,-923173200,2),(733,-904507200,1),(733,-891723600,2),(733,-880221600,3),(733,-769395600,4),(733,-765399600,2),(733,-747252000,1),(733,-733950000,2),(733,-715802400,1),(733,-702500400,2),(733,-684352800,1),(733,-671050800,2),(733,-652903200,1),(733,-639601200,2),(733,-589399200,1),(733,-576097200,2),(733,-557949600,1),(733,-544647600,2),(733,-526500000,1),(733,-513198000,2),(733,-495050400,1),(733,-481748400,2),(733,-431546400,1),(733,-418244400,2),(733,-400096800,1),(733,-386794800,2),(733,-368647200,1),(733,-355345200,2),(733,-337197600,1),(733,-323895600,2),(733,-242244000,1),(733,-226522800,2),(733,-210794400,1),(733,-195073200,2),(733,-179344800,1),(733,-163623600,2),(733,-147895200,1),(733,-131569200,2),(733,-116445600,1),(733,-100119600,2),(733,-84391200,1),(733,-68670000,2),(733,-52941600,1),(733,-37220400,2),(733,-21492000,1),(733,-5770800,2),(733,9957600,1),(733,25678800,2),(733,41407200,1),(733,57733200,2),(733,73461600,1),(733,89182800,2),(733,104911200,1),(733,120632400,2),(733,136360800,1),(733,152082000,2),(733,167810400,1),(733,183531600,2),(733,199260000,1),(733,215586000,2),(733,230709600,1),(733,247035600,2),(733,262764000,1),(733,278485200,2),(733,294213600,1),(733,309934800,2),(733,325663200,1),(733,341384400,2),(733,357112800,1),(733,372834000,2),(733,388562400,1),(733,404888400,2),(733,420012000,1),(733,436338000,2),(733,452066400,1),(733,467787600,2),(733,483516000,1),(733,499237200,2),(733,514965600,1),(733,530686800,2),(733,544600800,1),(733,562136400,2),(733,576050400,1),(733,594190800,2),(733,607500000,1),(733,625640400,2),(733,638949600,1),(733,657090000,2),(733,671004000,1),(733,688539600,2),(733,702453600,1),(733,719989200,2),(733,733903200,1),(733,752043600,2),(733,765352800,1),(733,783493200,2),(733,796802400,1),(733,814942800,2),(733,828856800,1),(733,846392400,2),(733,860306400,1),(733,877842000,2),(733,891756000,1),(733,909291600,2),(733,923205600,1),(733,941346000,2),(733,954655200,1),(733,972795600,2),(733,986104800,1),(733,1004245200,2),(733,1018159200,1),(733,1035694800,2),(733,1049608800,1),(733,1067144400,2),(733,1081058400,1),(733,1099198800,2),(733,1112508000,1),(733,1130648400,2),(733,1143957600,1),(733,1162098000,2),(733,1173592800,1),(733,1194152400,2),(733,1205042400,1),(733,1225602000,2),(733,1236492000,1),(733,1257051600,2),(733,1268546400,1),(733,1289106000,2),(733,1299996000,1),(733,1320555600,2),(733,1331445600,1),(733,1352005200,2),(733,1362895200,1),(733,1383454800,2),(733,1394344800,1),(733,1414904400,2),(733,1425794400,1),(733,1446354000,2),(733,1457848800,1),(733,1478408400,2),(733,1489298400,1),(733,1509858000,2),(733,1520748000,1),(733,1541307600,2),(733,1552197600,1),(733,1572757200,2),(733,1583647200,1),(733,1604206800,2),(733,1615701600,1),(733,1636261200,2),(733,1647151200,1),(733,1667710800,2),(733,1678600800,1),(733,1699160400,2),(733,1710050400,1),(733,1730610000,2),(733,1741500000,1),(733,1762059600,2),(733,1772949600,1),(733,1793509200,2),(733,1805004000,1),(733,1825563600,2),(733,1836453600,1),(733,1857013200,2),(733,1867903200,1),(733,1888462800,2),(733,1899352800,1),(733,1919912400,2),(733,1930802400,1),(733,1951362000,2),(733,1962856800,1),(733,1983416400,2),(733,1994306400,1),(733,2014866000,2),(733,2025756000,1),(733,2046315600,2),(733,2057205600,1),(733,2077765200,2),(733,2088655200,1),(733,2109214800,2),(733,2120104800,1),(733,2140664400,2),(734,-2147483648,1),(734,-1402813824,3),(734,-1311534000,2),(734,-1300996800,3),(734,-933534000,2),(734,-925675200,3),(734,-902084400,2),(734,-893620800,3),(734,-870030000,2),(734,-862171200,3),(734,-775681200,2),(734,-767822400,3),(734,-744231600,2),(734,-736372800,3),(734,-144702000,2),(734,-134251200,3),(734,-113425200,2),(734,-102542400,3),(734,-86295600,2),(734,-72907200,3),(734,-54154800,2),(734,-41457600,3),(734,-21495600,2),(734,-5774400,3),(734,9954000,2),(734,25675200,3),(734,41403600,2),(734,57729600,3),(734,73458000,2),(734,87364800,3),(734,104907600,2),(734,118900800,3),(734,136357200,2),(734,150436800,3),(734,167806800,2),(734,183528000,3),(734,199256400,2),(734,215582400,3),(734,230706000,2),(734,247032000,3),(734,263365200,2),(734,276667200,3),(734,290581200,2),(734,308721600,3),(734,322030800,2),(734,340171200,3),(734,358318800,2),(734,371620800,3),(734,389768400,2),(734,403070400,3),(734,421218000,2),(734,434520000,3),(734,452667600,2),(734,466574400,3),(734,484117200,2),(734,498024000,3),(734,511333200,2),(734,529473600,3),(734,542782800,2),(734,560923200,3),(734,574837200,2),(734,592372800,3),(734,606286800,2),(734,623822400,3),(734,638946000,2),(734,655876800,3),(734,671000400,2),(734,687330000,4),(734,702450000,2),(734,718779600,4),(734,733899600,2),(734,750229200,4),(734,765349200,2),(734,781678800,4),(734,796798800,2),(734,813128400,4),(734,828853200,2),(734,844578000,4),(734,860302800,2),(734,876632400,4),(734,891147600,5),(734,909291600,4),(734,922597200,5),(734,941346000,4),(734,954651600,5),(734,972795600,4),(734,986101200,5),(734,1004245200,4),(734,1018155600,5),(734,1035694800,4),(734,1049605200,5),(734,1067144400,4),(734,1080450000,5),(734,1162098000,4),(734,1173589200,5),(734,1193547600,4),(734,1205643600,5),(734,1224997200,4),(734,1236488400,5),(734,1256446800,4),(734,1268542800,5),(734,1288501200,4),(734,1300597200,5),(734,1321160400,4),(734,1333256400,5),(734,1352005200,4),(734,1362891600,5),(734,1383454800,4),(734,1394341200,5),(734,1414904400,4),(734,1425790800,5),(734,1446354000,4),(734,1457845200,5),(734,1478408400,4),(734,1489294800,5),(734,1509858000,4),(734,1520744400,5),(734,1541307600,4),(734,1552194000,5),(734,1572757200,4),(734,1583643600,5),(734,1604206800,4),(734,1615698000,5),(734,1636261200,4),(734,1647147600,5),(734,1667710800,4),(734,1678597200,5),(734,1699160400,4),(734,1710046800,5),(734,1730610000,4),(734,1741496400,5),(734,1762059600,4),(734,1772946000,5),(734,1793509200,4),(734,1805000400,5),(734,1825563600,4),(734,1836450000,5),(734,1857013200,4),(734,1867899600,5),(734,1888462800,4),(734,1899349200,5),(734,1919912400,4),(734,1930798800,5),(734,1951362000,4),(734,1962853200,5),(734,1983416400,4),(734,1994302800,5),(734,2014866000,4),(734,2025752400,5),(734,2046315600,4),(734,2057202000,5),(734,2077765200,4),(734,2088651600,5),(734,2109214800,4),(734,2120101200,5),(734,2140664400,4),(735,-2147483648,0),(735,-1514739600,1),(735,-1343066400,2),(735,-1234807200,1),(735,-1220292000,2),(735,-1207159200,1),(735,-1191344400,2),(735,-873828000,1),(735,-661539600,3),(735,28800,1),(735,828867600,4),(735,846403200,1),(735,860317200,4),(735,877852800,1),(735,891766800,4),(735,909302400,1),(736,-2147483648,2),(736,-1633276800,1),(736,-1615136400,2),(736,-1601827200,1),(736,-1583686800,2),(736,-900259200,1),(736,-891795600,2),(736,-880214400,3),(736,-769395600,4),(736,-765392400,2),(736,-747244800,1),(736,-733942800,2),(736,-715795200,1),(736,-702493200,2),(736,-684345600,1),(736,-671043600,2),(736,-652896000,1),(736,-639594000,2),(736,-620841600,1),(736,-608144400,2),(736,-589392000,1),(736,-576090000,2),(736,-557942400,1),(736,-544640400,2),(736,-526492800,1),(736,-513190800,2),(736,-495043200,1),(736,-481741200,2),(736,-463593600,5),(736,-386787600,2),(736,-368640000,5),(736,-21488400,6),(736,-5767200,5),(736,9961200,6),(736,25682400,5),(736,1143961200,6),(736,1162101600,5),(736,1173596400,6),(736,1194156000,5),(736,1205046000,6),(736,1225605600,5),(736,1236495600,6),(736,1257055200,5),(736,1268550000,6),(736,1289109600,5),(736,1299999600,6),(736,1320559200,5),(736,1331449200,6),(736,1352008800,5),(736,1362898800,6),(736,1383458400,5),(736,1394348400,6),(736,1414908000,5),(736,1425798000,6),(736,1446357600,5),(736,1457852400,6),(736,1478412000,5),(736,1489302000,6),(736,1509861600,5),(736,1520751600,6),(736,1541311200,5),(736,1552201200,6),(736,1572760800,5),(736,1583650800,6),(736,1604210400,5),(736,1615705200,6),(736,1636264800,5),(736,1647154800,6),(736,1667714400,5),(736,1678604400,6),(736,1699164000,5),(736,1710054000,6),(736,1730613600,5),(736,1741503600,6),(736,1762063200,5),(736,1772953200,6),(736,1793512800,5),(736,1805007600,6),(736,1825567200,5),(736,1836457200,6),(736,1857016800,5),(736,1867906800,6),(736,1888466400,5),(736,1899356400,6),(736,1919916000,5),(736,1930806000,6),(736,1951365600,5),(736,1962860400,6),(736,1983420000,5),(736,1994310000,6),(736,2014869600,5),(736,2025759600,6),(736,2046319200,5),(736,2057209200,6),(736,2077768800,5),(736,2088658800,6),(736,2109218400,5),(736,2120108400,6),(736,2140668000,5),(737,-2147483648,2),(737,-1633276800,1),(737,-1615136400,2),(737,-1601827200,1),(737,-1583686800,2),(737,-880214400,3),(737,-769395600,4),(737,-765392400,2),(737,-715795200,1),(737,-702493200,2),(737,-684345600,1),(737,-671043600,2),(737,-652896000,1),(737,-639594000,2),(737,-620841600,1),(737,-608144400,2),(737,-589392000,1),(737,-576090000,2),(737,-557942400,1),(737,-544640400,2),(737,-526492800,1),(737,-513190800,2),(737,-495043200,1),(737,-481741200,2),(737,-463593600,1),(737,-447267600,2),(737,-431539200,1),(737,-415818000,2),(737,-400089600,1),(737,-386787600,2),(737,-368640000,1),(737,-355338000,2),(737,-337190400,1),(737,-321469200,2),(737,-305740800,1),(737,-289414800,2),(737,-273686400,1),(737,-257965200,2),(737,-242236800,5),(737,-195066000,2),(737,-84384000,1),(737,-68662800,2),(737,-52934400,1),(737,-37213200,2),(737,-21484800,1),(737,-5763600,2),(737,9964800,1),(737,25686000,2),(737,41414400,1),(737,57740400,2),(737,73468800,1),(737,89190000,2),(737,104918400,1),(737,120639600,2),(737,126691200,1),(737,152089200,2),(737,162374400,1),(737,183538800,2),(737,199267200,1),(737,215593200,2),(737,230716800,1),(737,247042800,2),(737,262771200,1),(737,278492400,2),(737,294220800,1),(737,309942000,2),(737,325670400,1),(737,341391600,2),(737,357120000,1),(737,372841200,2),(737,388569600,1),(737,404895600,2),(737,420019200,1),(737,436345200,2),(737,452073600,1),(737,467794800,2),(737,483523200,1),(737,499244400,2),(737,514972800,1),(737,530694000,2),(737,544608000,1),(737,562143600,2),(737,576057600,1),(737,594198000,2),(737,607507200,1),(737,625647600,2),(737,638956800,1),(737,657097200,2),(737,671011200,1),(737,688546800,5),(737,1143961200,1),(737,1162105200,2),(737,1173600000,1),(737,1194159600,2),(737,1205049600,1),(737,1225609200,2),(737,1236499200,1),(737,1257058800,2),(737,1268553600,1),(737,1289113200,2),(737,1300003200,1),(737,1320562800,2),(737,1331452800,1),(737,1352012400,2),(737,1362902400,1),(737,1383462000,2),(737,1394352000,1),(737,1414911600,2),(737,1425801600,1),(737,1446361200,2),(737,1457856000,1),(737,1478415600,2),(737,1489305600,1),(737,1509865200,2),(737,1520755200,1),(737,1541314800,2),(737,1552204800,1),(737,1572764400,2),(737,1583654400,1),(737,1604214000,2),(737,1615708800,1),(737,1636268400,2),(737,1647158400,1),(737,1667718000,2),(737,1678608000,1),(737,1699167600,2),(737,1710057600,1),(737,1730617200,2),(737,1741507200,1),(737,1762066800,2),(737,1772956800,1),(737,1793516400,2),(737,1805011200,1),(737,1825570800,2),(737,1836460800,1),(737,1857020400,2),(737,1867910400,1),(737,1888470000,2),(737,1899360000,1),(737,1919919600,2),(737,1930809600,1),(737,1951369200,2),(737,1962864000,1),(737,1983423600,2),(737,1994313600,1),(737,2014873200,2),(737,2025763200,1),(737,2046322800,2),(737,2057212800,1),(737,2077772400,2),(737,2088662400,1),(737,2109222000,2),(737,2120112000,1),(737,2140671600,2),(738,-2147483648,2),(738,-1633276800,1),(738,-1615136400,2),(738,-1601827200,1),(738,-1583686800,2),(738,-880214400,3),(738,-769395600,4),(738,-765392400,2),(738,-589392000,1),(738,-576090000,2),(738,-495043200,1),(738,-481741200,2),(738,-463593600,1),(738,-450291600,2),(738,-431539200,1),(738,-418237200,2),(738,-400089600,1),(738,-386787600,2),(738,-368640000,1),(738,-355338000,2),(738,-337190400,1),(738,-323888400,2),(738,-305740800,1),(738,-292438800,2),(738,-273686400,5),(738,-21488400,6),(738,-5767200,5),(738,9961200,6),(738,25682400,5),(738,41410800,6),(738,57736800,5),(738,73465200,6),(738,89186400,5),(738,104914800,6),(738,120636000,5),(738,126687600,1),(738,152089200,5),(738,162370800,6),(738,183535200,5),(738,1143961200,6),(738,1162101600,5),(738,1173596400,6),(738,1194156000,5),(738,1205046000,6),(738,1225605600,5),(738,1236495600,6),(738,1257055200,5),(738,1268550000,6),(738,1289109600,5),(738,1299999600,6),(738,1320559200,5),(738,1331449200,6),(738,1352008800,5),(738,1362898800,6),(738,1383458400,5),(738,1394348400,6),(738,1414908000,5),(738,1425798000,6),(738,1446357600,5),(738,1457852400,6),(738,1478412000,5),(738,1489302000,6),(738,1509861600,5),(738,1520751600,6),(738,1541311200,5),(738,1552201200,6),(738,1572760800,5),(738,1583650800,6),(738,1604210400,5),(738,1615705200,6),(738,1636264800,5),(738,1647154800,6),(738,1667714400,5),(738,1678604400,6),(738,1699164000,5),(738,1710054000,6),(738,1730613600,5),(738,1741503600,6),(738,1762063200,5),(738,1772953200,6),(738,1793512800,5),(738,1805007600,6),(738,1825567200,5),(738,1836457200,6),(738,1857016800,5),(738,1867906800,6),(738,1888466400,5),(738,1899356400,6),(738,1919916000,5),(738,1930806000,6),(738,1951365600,5),(738,1962860400,6),(738,1983420000,5),(738,1994310000,6),(738,2014869600,5),(738,2025759600,6),(738,2046319200,5),(738,2057209200,6),(738,2077768800,5),(738,2088658800,6),(738,2109218400,5),(738,2120108400,6),(738,2140668000,5),(739,-2147483648,2),(739,-1633276800,1),(739,-1615136400,2),(739,-1601827200,1),(739,-1583686800,2),(739,-880214400,3),(739,-769395600,4),(739,-765392400,2),(739,-462996000,1),(739,-450291600,2),(739,-431539200,1),(739,-418237200,2),(739,-400089600,1),(739,-386787600,2),(739,-368640000,1),(739,-355338000,2),(739,-337190400,1),(739,-323888400,2),(739,-305740800,1),(739,-292438800,2),(739,-273686400,1),(739,-257965200,2),(739,-242236800,1),(739,-226515600,2),(739,-210787200,1),(739,-195066000,2),(739,-179337600,1),(739,-163616400,2),(739,-147888000,5),(739,-100112400,2),(739,-84384000,1),(739,-68662800,2),(739,-52934400,1),(739,-37213200,2),(739,-21484800,1),(739,-5763600,2),(739,9964800,1),(739,25686000,2),(739,41414400,1),(739,57740400,2),(739,73468800,1),(739,89190000,2),(739,104918400,1),(739,120639600,2),(739,126691200,1),(739,152089200,2),(739,162374400,1),(739,183538800,2),(739,199267200,1),(739,215593200,2),(739,230716800,1),(739,247042800,5),(739,1143961200,1),(739,1162105200,2),(739,1173600000,1),(739,1194159600,5),(739,1205046000,6),(739,1225605600,5),(739,1236495600,6),(739,1257055200,5),(739,1268550000,6),(739,1289109600,5),(739,1299999600,6),(739,1320559200,5),(739,1331449200,6),(739,1352008800,5),(739,1362898800,6),(739,1383458400,5),(739,1394348400,6),(739,1414908000,5),(739,1425798000,6),(739,1446357600,5),(739,1457852400,6),(739,1478412000,5),(739,1489302000,6),(739,1509861600,5),(739,1520751600,6),(739,1541311200,5),(739,1552201200,6),(739,1572760800,5),(739,1583650800,6),(739,1604210400,5),(739,1615705200,6),(739,1636264800,5),(739,1647154800,6),(739,1667714400,5),(739,1678604400,6),(739,1699164000,5),(739,1710054000,6),(739,1730613600,5),(739,1741503600,6),(739,1762063200,5),(739,1772953200,6),(739,1793512800,5),(739,1805007600,6),(739,1825567200,5),(739,1836457200,6),(739,1857016800,5),(739,1867906800,6),(739,1888466400,5),(739,1899356400,6),(739,1919916000,5),(739,1930806000,6),(739,1951365600,5),(739,1962860400,6),(739,1983420000,5),(739,1994310000,6),(739,2014869600,5),(739,2025759600,6),(739,2046319200,5),(739,2057209200,6),(739,2077768800,5),(739,2088658800,6),(739,2109218400,5),(739,2120108400,6),(739,2140668000,5),(740,-2147483648,2),(740,-1633276800,1),(740,-1615136400,2),(740,-1601827200,1),(740,-1583686800,2),(740,-880214400,3),(740,-769395600,4),(740,-765392400,2),(740,-462996000,1),(740,-450291600,2),(740,-431539200,1),(740,-418237200,2),(740,-400089600,1),(740,-386787600,2),(740,-368640000,1),(740,-355338000,2),(740,-337190400,1),(740,-323888400,2),(740,-305740800,1),(740,-292438800,2),(740,-273686400,1),(740,-257965200,2),(740,-242236800,1),(740,-226515600,2),(740,-210787200,1),(740,-195066000,2),(740,-179337600,5),(740,-68662800,2),(740,-52934400,1),(740,-37213200,2),(740,-21484800,6),(740,-5767200,5),(740,9961200,6),(740,25682400,5),(740,1143961200,1),(740,1162105200,2),(740,1173600000,1),(740,1194159600,2),(740,1205049600,1),(740,1225609200,2),(740,1236499200,1),(740,1257058800,2),(740,1268553600,1),(740,1289113200,2),(740,1300003200,1),(740,1320562800,2),(740,1331452800,1),(740,1352012400,2),(740,1362902400,1),(740,1383462000,2),(740,1394352000,1),(740,1414911600,2),(740,1425801600,1),(740,1446361200,2),(740,1457856000,1),(740,1478415600,2),(740,1489305600,1),(740,1509865200,2),(740,1520755200,1),(740,1541314800,2),(740,1552204800,1),(740,1572764400,2),(740,1583654400,1),(740,1604214000,2),(740,1615708800,1),(740,1636268400,2),(740,1647158400,1),(740,1667718000,2),(740,1678608000,1),(740,1699167600,2),(740,1710057600,1),(740,1730617200,2),(740,1741507200,1),(740,1762066800,2),(740,1772956800,1),(740,1793516400,2),(740,1805011200,1),(740,1825570800,2),(740,1836460800,1),(740,1857020400,2),(740,1867910400,1),(740,1888470000,2),(740,1899360000,1),(740,1919919600,2),(740,1930809600,1),(740,1951369200,2),(740,1962864000,1),(740,1983423600,2),(740,1994313600,1),(740,2014873200,2),(740,2025763200,1),(740,2046322800,2),(740,2057212800,1),(740,2077772400,2),(740,2088662400,1),(740,2109222000,2),(740,2120112000,1),(740,2140671600,2),(741,-2147483648,2),(741,-1633276800,1),(741,-1615136400,2),(741,-1601827200,1),(741,-1583686800,2),(741,-880214400,3),(741,-769395600,4),(741,-765392400,2),(741,-495043200,5),(741,-21488400,6),(741,-5767200,5),(741,9961200,6),(741,25682400,5),(741,41410800,6),(741,57736800,5),(741,73465200,6),(741,89186400,5),(741,1143961200,6),(741,1162101600,5),(741,1173596400,6),(741,1194156000,5),(741,1205046000,6),(741,1225605600,5),(741,1236495600,6),(741,1257055200,5),(741,1268550000,6),(741,1289109600,5),(741,1299999600,6),(741,1320559200,5),(741,1331449200,6),(741,1352008800,5),(741,1362898800,6),(741,1383458400,5),(741,1394348400,6),(741,1414908000,5),(741,1425798000,6),(741,1446357600,5),(741,1457852400,6),(741,1478412000,5),(741,1489302000,6),(741,1509861600,5),(741,1520751600,6),(741,1541311200,5),(741,1552201200,6),(741,1572760800,5),(741,1583650800,6),(741,1604210400,5),(741,1615705200,6),(741,1636264800,5),(741,1647154800,6),(741,1667714400,5),(741,1678604400,6),(741,1699164000,5),(741,1710054000,6),(741,1730613600,5),(741,1741503600,6),(741,1762063200,5),(741,1772953200,6),(741,1793512800,5),(741,1805007600,6),(741,1825567200,5),(741,1836457200,6),(741,1857016800,5),(741,1867906800,6),(741,1888466400,5),(741,1899356400,6),(741,1919916000,5),(741,1930806000,6),(741,1951365600,5),(741,1962860400,6),(741,1983420000,5),(741,1994310000,6),(741,2014869600,5),(741,2025759600,6),(741,2046319200,5),(741,2057209200,6),(741,2077768800,5),(741,2088658800,6),(741,2109218400,5),(741,2120108400,6),(741,2140668000,5),(742,-2147483648,2),(742,-1633276800,1),(742,-1615136400,2),(742,-1601827200,1),(742,-1583686800,2),(742,-880214400,3),(742,-769395600,4),(742,-765392400,2),(742,-747244800,1),(742,-733942800,2),(742,-526492800,1),(742,-513190800,2),(742,-495043200,1),(742,-481741200,2),(742,-462996000,1),(742,-450291600,2),(742,-431539200,1),(742,-418237200,2),(742,-400089600,1),(742,-386787600,2),(742,-368640000,1),(742,-355338000,2),(742,-337190400,1),(742,-323888400,2),(742,-305740800,1),(742,-289414800,2),(742,-273686400,1),(742,-260989200,2),(742,-242236800,1),(742,-226515600,2),(742,-210787200,1),(742,-195066000,2),(742,-179337600,5),(742,-21488400,6),(742,-5767200,5),(742,9961200,6),(742,25682400,5),(742,1143961200,1),(742,1162105200,2),(742,1173600000,1),(742,1194159600,5),(742,1205046000,6),(742,1225605600,5),(742,1236495600,6),(742,1257055200,5),(742,1268550000,6),(742,1289109600,5),(742,1299999600,6),(742,1320559200,5),(742,1331449200,6),(742,1352008800,5),(742,1362898800,6),(742,1383458400,5),(742,1394348400,6),(742,1414908000,5),(742,1425798000,6),(742,1446357600,5),(742,1457852400,6),(742,1478412000,5),(742,1489302000,6),(742,1509861600,5),(742,1520751600,6),(742,1541311200,5),(742,1552201200,6),(742,1572760800,5),(742,1583650800,6),(742,1604210400,5),(742,1615705200,6),(742,1636264800,5),(742,1647154800,6),(742,1667714400,5),(742,1678604400,6),(742,1699164000,5),(742,1710054000,6),(742,1730613600,5),(742,1741503600,6),(742,1762063200,5),(742,1772953200,6),(742,1793512800,5),(742,1805007600,6),(742,1825567200,5),(742,1836457200,6),(742,1857016800,5),(742,1867906800,6),(742,1888466400,5),(742,1899356400,6),(742,1919916000,5),(742,1930806000,6),(742,1951365600,5),(742,1962860400,6),(742,1983420000,5),(742,1994310000,6),(742,2014869600,5),(742,2025759600,6),(742,2046319200,5),(742,2057209200,6),(742,2077768800,5),(742,2088658800,6),(742,2109218400,5),(742,2120108400,6),(742,2140668000,5),(743,-2147483648,2),(743,-1633276800,1),(743,-1615136400,2),(743,-1601827200,1),(743,-1583686800,2),(743,-880214400,3),(743,-769395600,4),(743,-765392400,2),(743,-747244800,1),(743,-733942800,2),(743,-715795200,1),(743,-702493200,2),(743,-684345600,1),(743,-671043600,2),(743,-652896000,1),(743,-639594000,2),(743,-620841600,1),(743,-608144400,2),(743,-589392000,1),(743,-576090000,2),(743,-557942400,1),(743,-544640400,2),(743,-526492800,1),(743,-513190800,2),(743,-495043200,1),(743,-481741200,2),(743,-463593600,1),(743,-447267600,2),(743,-431539200,1),(743,-415818000,2),(743,-400089600,1),(743,-386787600,2),(743,-368640000,1),(743,-355338000,2),(743,-337190400,1),(743,-323888400,2),(743,-305740800,1),(743,-292438800,2),(743,-273686400,5),(743,-21488400,6),(743,-5767200,5),(743,9961200,6),(743,25682400,5),(743,1143961200,1),(743,1162105200,2),(743,1173600000,6),(743,1194156000,5),(743,1205046000,6),(743,1225605600,5),(743,1236495600,6),(743,1257055200,5),(743,1268550000,6),(743,1289109600,5),(743,1299999600,6),(743,1320559200,5),(743,1331449200,6),(743,1352008800,5),(743,1362898800,6),(743,1383458400,5),(743,1394348400,6),(743,1414908000,5),(743,1425798000,6),(743,1446357600,5),(743,1457852400,6),(743,1478412000,5),(743,1489302000,6),(743,1509861600,5),(743,1520751600,6),(743,1541311200,5),(743,1552201200,6),(743,1572760800,5),(743,1583650800,6),(743,1604210400,5),(743,1615705200,6),(743,1636264800,5),(743,1647154800,6),(743,1667714400,5),(743,1678604400,6),(743,1699164000,5),(743,1710054000,6),(743,1730613600,5),(743,1741503600,6),(743,1762063200,5),(743,1772953200,6),(743,1793512800,5),(743,1805007600,6),(743,1825567200,5),(743,1836457200,6),(743,1857016800,5),(743,1867906800,6),(743,1888466400,5),(743,1899356400,6),(743,1919916000,5),(743,1930806000,6),(743,1951365600,5),(743,1962860400,6),(743,1983420000,5),(743,1994310000,6),(743,2014869600,5),(743,2025759600,6),(743,2046319200,5),(743,2057209200,6),(743,2077768800,5),(743,2088658800,6),(743,2109218400,5),(743,2120108400,6),(743,2140668000,5),(744,-2147483648,2),(744,-1633276800,1),(744,-1615136400,2),(744,-1601827200,1),(744,-1583686800,2),(744,-900259200,1),(744,-891795600,2),(744,-880214400,3),(744,-769395600,4),(744,-765392400,2),(744,-747244800,1),(744,-733942800,2),(744,-715795200,1),(744,-702493200,2),(744,-684345600,1),(744,-671043600,2),(744,-652896000,1),(744,-639594000,2),(744,-620841600,1),(744,-608144400,2),(744,-589392000,1),(744,-576090000,2),(744,-557942400,1),(744,-544640400,2),(744,-526492800,1),(744,-513190800,2),(744,-495043200,1),(744,-481741200,2),(744,-463593600,5),(744,-386787600,2),(744,-368640000,5),(744,-21488400,6),(744,-5767200,5),(744,9961200,6),(744,25682400,5),(744,1143961200,6),(744,1162101600,5),(744,1173596400,6),(744,1194156000,5),(744,1205046000,6),(744,1225605600,5),(744,1236495600,6),(744,1257055200,5),(744,1268550000,6),(744,1289109600,5),(744,1299999600,6),(744,1320559200,5),(744,1331449200,6),(744,1352008800,5),(744,1362898800,6),(744,1383458400,5),(744,1394348400,6),(744,1414908000,5),(744,1425798000,6),(744,1446357600,5),(744,1457852400,6),(744,1478412000,5),(744,1489302000,6),(744,1509861600,5),(744,1520751600,6),(744,1541311200,5),(744,1552201200,6),(744,1572760800,5),(744,1583650800,6),(744,1604210400,5),(744,1615705200,6),(744,1636264800,5),(744,1647154800,6),(744,1667714400,5),(744,1678604400,6),(744,1699164000,5),(744,1710054000,6),(744,1730613600,5),(744,1741503600,6),(744,1762063200,5),(744,1772953200,6),(744,1793512800,5),(744,1805007600,6),(744,1825567200,5),(744,1836457200,6),(744,1857016800,5),(744,1867906800,6),(744,1888466400,5),(744,1899356400,6),(744,1919916000,5),(744,1930806000,6),(744,1951365600,5),(744,1962860400,6),(744,1983420000,5),(744,1994310000,6),(744,2014869600,5),(744,2025759600,6),(744,2046319200,5),(744,2057209200,6),(744,2077768800,5),(744,2088658800,6),(744,2109218400,5),(744,2120108400,6),(744,2140668000,5),(745,-2147483648,0),(745,-536457600,2),(745,-147888000,1),(745,-131558400,2),(745,294228000,3),(745,325674000,4),(745,341395200,3),(745,357123600,4),(745,372844800,3),(745,388573200,4),(745,404899200,3),(745,420022800,4),(745,436348800,3),(745,452077200,4),(745,467798400,3),(745,483526800,4),(745,499248000,3),(745,514976400,4),(745,530697600,3),(745,544611600,4),(745,562147200,3),(745,576061200,4),(745,594201600,3),(745,607510800,4),(745,625651200,3),(745,638960400,4),(745,657100800,3),(745,671014800,4),(745,688550400,3),(745,702464400,4),(745,720000000,3),(745,733914000,4),(745,752054400,3),(745,765363600,4),(745,783504000,3),(745,796813200,4),(745,814953600,3),(745,828867600,4),(745,846403200,3),(745,860317200,4),(745,877852800,3),(745,891766800,4),(745,909302400,3),(745,923216400,4),(745,941356800,3),(745,954666000,4),(745,972806400,3),(745,986115600,4),(745,1004256000,3),(745,1018170000,4),(745,1035705600,3),(745,1049619600,4),(745,1067155200,3),(745,1081069200,4),(745,1099209600,3),(745,1112518800,4),(745,1130659200,3),(745,1143968400,4),(745,1162108800,3),(745,1173603600,4),(745,1194163200,3),(745,1205053200,4),(745,1225612800,3),(745,1236502800,4),(745,1257062400,3),(745,1268557200,4),(745,1289116800,3),(745,1300006800,4),(745,1320566400,3),(745,1331456400,4),(745,1352016000,3),(745,1362906000,4),(745,1383465600,3),(745,1394355600,4),(745,1414915200,3),(745,1425805200,4),(745,1446364800,3),(745,1457859600,4),(745,1478419200,3),(745,1489309200,4),(745,1509868800,3),(745,1520758800,4),(745,1541318400,3),(745,1552208400,4),(745,1572768000,3),(745,1583658000,4),(745,1604217600,3),(745,1615712400,4),(745,1636272000,3),(745,1647162000,4),(745,1667721600,3),(745,1678611600,4),(745,1699171200,3),(745,1710061200,4),(745,1730620800,3),(745,1741510800,4),(745,1762070400,3),(745,1772960400,4),(745,1793520000,3),(745,1805014800,4),(745,1825574400,3),(745,1836464400,4),(745,1857024000,3),(745,1867914000,4),(745,1888473600,3),(745,1899363600,4),(745,1919923200,3),(745,1930813200,4),(745,1951372800,3),(745,1962867600,4),(745,1983427200,3),(745,1994317200,4),(745,2014876800,3),(745,2025766800,4),(745,2046326400,3),(745,2057216400,4),(745,2077776000,3),(745,2088666000,4),(745,2109225600,3),(745,2120115600,4),(745,2140675200,3),(746,-2147483648,0),(746,-865296000,5),(746,-769395600,1),(746,-765396000,2),(746,-147898800,3),(746,-131569200,2),(746,325666800,4),(746,341388000,2),(746,357116400,4),(746,372837600,2),(746,388566000,4),(746,404892000,2),(746,420015600,4),(746,436341600,2),(746,452070000,4),(746,467791200,2),(746,483519600,4),(746,499240800,2),(746,514969200,4),(746,530690400,2),(746,544604400,4),(746,562140000,2),(746,576054000,4),(746,594194400,2),(746,607503600,4),(746,625644000,2),(746,638953200,4),(746,657093600,2),(746,671007600,4),(746,688543200,2),(746,702457200,4),(746,719992800,2),(746,733906800,4),(746,752047200,2),(746,765356400,4),(746,783496800,2),(746,796806000,4),(746,814946400,2),(746,828860400,4),(746,846396000,2),(746,860310000,4),(746,877845600,2),(746,891759600,4),(746,909295200,2),(746,923209200,4),(746,941349600,6),(746,954662400,7),(746,972802800,2),(746,986108400,4),(746,1004248800,2),(746,1018162800,4),(746,1035698400,2),(746,1049612400,4),(746,1067148000,2),(746,1081062000,4),(746,1099202400,2),(746,1112511600,4),(746,1130652000,2),(746,1143961200,4),(746,1162101600,2),(746,1173596400,4),(746,1194156000,2),(746,1205046000,4),(746,1225605600,2),(746,1236495600,4),(746,1257055200,2),(746,1268550000,4),(746,1289109600,2),(746,1299999600,4),(746,1320559200,2),(746,1331449200,4),(746,1352008800,2),(746,1362898800,4),(746,1383458400,2),(746,1394348400,4),(746,1414908000,2),(746,1425798000,4),(746,1446357600,2),(746,1457852400,4),(746,1478412000,2),(746,1489302000,4),(746,1509861600,2),(746,1520751600,4),(746,1541311200,2),(746,1552201200,4),(746,1572760800,2),(746,1583650800,4),(746,1604210400,2),(746,1615705200,4),(746,1636264800,2),(746,1647154800,4),(746,1667714400,2),(746,1678604400,4),(746,1699164000,2),(746,1710054000,4),(746,1730613600,2),(746,1741503600,4),(746,1762063200,2),(746,1772953200,4),(746,1793512800,2),(746,1805007600,4),(746,1825567200,2),(746,1836457200,4),(746,1857016800,2),(746,1867906800,4),(746,1888466400,2),(746,1899356400,4),(746,1919916000,2),(746,1930806000,4),(746,1951365600,2),(746,1962860400,4),(746,1983420000,2),(746,1994310000,4),(746,2014869600,2),(746,2025759600,4),(746,2046319200,2),(746,2057209200,4),(746,2077768800,2),(746,2088658800,4),(746,2109218400,2),(746,2120108400,4),(746,2140668000,2),(747,-2147483648,1),(747,-1827687170,2),(747,126687600,3),(747,152085600,2),(747,162370800,3),(747,183535200,2),(747,199263600,3),(747,215589600,2),(747,230713200,3),(747,247039200,2),(747,262767600,3),(747,278488800,2),(747,294217200,3),(747,309938400,2),(747,325666800,3),(747,341388000,2),(747,357116400,3),(747,372837600,2),(747,388566000,3),(747,404892000,2),(747,420015600,3),(747,436341600,2),(748,-2147483648,1),(748,-1567453392,2),(748,-1233432000,3),(748,-1222981200,2),(748,-1205956800,3),(748,-1194037200,2),(748,-1172865600,3),(748,-1162501200,2),(748,-1141329600,3),(748,-1130965200,2),(748,-1109793600,3),(748,-1099429200,2),(748,-1078257600,3),(748,-1067806800,2),(748,-1046635200,3),(748,-1036270800,2),(748,-1015099200,3),(748,-1004734800,2),(748,-983563200,3),(748,-973198800,2),(748,-952027200,3),(748,-941576400,2),(748,-931032000,3),(748,-900882000,2),(748,-890337600,3),(748,-833749200,2),(748,-827265600,3),(748,-752274000,2),(748,-733780800,3),(748,-197326800,2),(748,-190843200,3),(748,-184194000,2),(748,-164491200,3),(748,-152658000,2),(748,-132955200,3),(748,-121122000,2),(748,-101419200,3),(748,-86821200,2),(748,-71092800,3),(748,-54766800,2),(748,-39038400,3),(748,-23317200,2),(748,-7588800,5),(748,128142000,4),(748,136605600,5),(748,596948400,4),(748,605066400,5),(748,624423600,4),(748,636516000,2),(748,657086400,3),(748,669178800,2),(748,686721600,4),(748,699415200,5),(748,719377200,4),(748,731469600,5),(748,938919600,3),(748,952052400,5),(748,1198983600,4),(748,1205632800,5),(748,2147483647,5),(749,-2147483648,1),(749,-880207200,2),(749,-769395600,3),(749,-765385200,1),(749,-21477600,4),(749,-5756400,1),(749,9972000,4),(749,25693200,1),(749,41421600,4),(749,57747600,1),(749,73476000,4),(749,89197200,1),(749,104925600,4),(749,120646800,1),(749,126698400,4),(749,152096400,1),(749,162381600,4),(749,183546000,1),(749,199274400,4),(749,215600400,1),(749,230724000,4),(749,247050000,1),(749,262778400,4),(749,278499600,1),(749,294228000,4),(749,309949200,1),(749,325677600,5),(749,341402400,1),(749,357127200,4),(749,372848400,1),(749,388576800,4),(749,404902800,1),(749,420026400,4),(749,436352400,6),(749,439030800,8),(749,452084400,7),(749,467805600,8),(749,483534000,7),(749,499255200,8),(749,514983600,7),(749,530704800,8),(749,544618800,7),(749,562154400,8),(749,576068400,7),(749,594208800,8),(749,607518000,7),(749,625658400,8),(749,638967600,7),(749,657108000,8),(749,671022000,7),(749,688557600,8),(749,702471600,7),(749,720007200,8),(749,733921200,7),(749,752061600,8),(749,765370800,7),(749,783511200,8),(749,796820400,7),(749,814960800,8),(749,828874800,7),(749,846410400,8),(749,860324400,7),(749,877860000,8),(749,891774000,7),(749,909309600,8),(749,923223600,7),(749,941364000,8),(749,954673200,7),(749,972813600,8),(749,986122800,7),(749,1004263200,8),(749,1018177200,7),(749,1035712800,8),(749,1049626800,7),(749,1067162400,8),(749,1081076400,7),(749,1099216800,8),(749,1112526000,7),(749,1130666400,8),(749,1143975600,7),(749,1162116000,8),(749,1173610800,7),(749,1194170400,8),(749,1205060400,7),(749,1225620000,8),(749,1236510000,7),(749,1257069600,8),(749,1268564400,7),(749,1289124000,8),(749,1300014000,7),(749,1320573600,8),(749,1331463600,7),(749,1352023200,8),(749,1362913200,7),(749,1383472800,8),(749,1394362800,7),(749,1414922400,8),(749,1425812400,7),(749,1446372000,8),(749,1457866800,7),(749,1478426400,8),(749,1489316400,7),(749,1509876000,8),(749,1520766000,7),(749,1541325600,8),(749,1552215600,7),(749,1572775200,8),(749,1583665200,7),(749,1604224800,8),(749,1615719600,7),(749,1636279200,8),(749,1647169200,7),(749,1667728800,8),(749,1678618800,7),(749,1699178400,8),(749,1710068400,7),(749,1730628000,8),(749,1741518000,7),(749,1762077600,8),(749,1772967600,7),(749,1793527200,8),(749,1805022000,7),(749,1825581600,8),(749,1836471600,7),(749,1857031200,8),(749,1867921200,7),(749,1888480800,8),(749,1899370800,7),(749,1919930400,8),(749,1930820400,7),(749,1951380000,8),(749,1962874800,7),(749,1983434400,8),(749,1994324400,7),(749,2014884000,8),(749,2025774000,7),(749,2046333600,8),(749,2057223600,7),(749,2077783200,8),(749,2088673200,7),(749,2109232800,8),(749,2120122800,7),(749,2140682400,8),(750,-2147483648,2),(750,-1633276800,1),(750,-1615136400,2),(750,-1601827200,1),(750,-1583686800,2),(750,-1535904000,1),(750,-1525280400,2),(750,-905097600,1),(750,-891795600,2),(750,-880214400,3),(750,-769395600,4),(750,-765392400,2),(750,-747251940,1),(750,-744224400,2),(750,-620841600,1),(750,-608144400,2),(750,-589392000,1),(750,-576090000,2),(750,-557942400,1),(750,-544640400,2),(750,-526492800,1),(750,-513190800,2),(750,-495043200,1),(750,-481741200,2),(750,-463593600,1),(750,-450291600,2),(750,-431539200,1),(750,-415818000,2),(750,-400089600,1),(750,-384368400,2),(750,-368640000,1),(750,-352918800,2),(750,-337190400,1),(750,-321469200,2),(750,-305740800,1),(750,-289414800,2),(750,-273686400,1),(750,-266432400,5),(750,-52938000,6),(750,-37216800,5),(750,-21488400,6),(750,-5767200,5),(750,9961200,6),(750,25682400,5),(750,41410800,6),(750,57736800,5),(750,73465200,6),(750,89186400,5),(750,104914800,6),(750,120636000,5),(750,126687600,1),(750,152089200,5),(750,162370800,6),(750,183535200,5),(750,199263600,6),(750,215589600,5),(750,230713200,6),(750,247039200,5),(750,262767600,6),(750,278488800,5),(750,294217200,6),(750,309938400,5),(750,325666800,6),(750,341388000,5),(750,357116400,6),(750,372837600,5),(750,388566000,6),(750,404892000,5),(750,420015600,6),(750,436341600,5),(750,452070000,6),(750,467791200,5),(750,483519600,6),(750,499240800,5),(750,514969200,6),(750,530690400,5),(750,544604400,6),(750,562140000,5),(750,576054000,6),(750,594194400,5),(750,607503600,6),(750,625644000,5),(750,638953200,6),(750,657093600,5),(750,671007600,6),(750,688543200,5),(750,702457200,6),(750,719992800,5),(750,733906800,6),(750,752047200,5),(750,765356400,6),(750,783496800,5),(750,796806000,6),(750,814946400,5),(750,828860400,6),(750,846396000,5),(750,860310000,6),(750,877845600,5),(750,891759600,6),(750,909295200,5),(750,923209200,6),(750,941349600,5),(750,954658800,6),(750,972799200,5),(750,986108400,6),(750,1004248800,5),(750,1018162800,6),(750,1035698400,5),(750,1049612400,6),(750,1067148000,5),(750,1081062000,6),(750,1099202400,5),(750,1112511600,6),(750,1130652000,5),(750,1143961200,6),(750,1162101600,5),(750,1173596400,6),(750,1194156000,5),(750,1205046000,6),(750,1225605600,5),(750,1236495600,6),(750,1257055200,5),(750,1268550000,6),(750,1289109600,5),(750,1299999600,6),(750,1320559200,5),(750,1331449200,6),(750,1352008800,5),(750,1362898800,6),(750,1383458400,5),(750,1394348400,6),(750,1414908000,5),(750,1425798000,6),(750,1446357600,5),(750,1457852400,6),(750,1478412000,5),(750,1489302000,6),(750,1509861600,5),(750,1520751600,6),(750,1541311200,5),(750,1552201200,6),(750,1572760800,5),(750,1583650800,6),(750,1604210400,5),(750,1615705200,6),(750,1636264800,5),(750,1647154800,6),(750,1667714400,5),(750,1678604400,6),(750,1699164000,5),(750,1710054000,6),(750,1730613600,5),(750,1741503600,6),(750,1762063200,5),(750,1772953200,6),(750,1793512800,5),(750,1805007600,6),(750,1825567200,5),(750,1836457200,6),(750,1857016800,5),(750,1867906800,6),(750,1888466400,5),(750,1899356400,6),(750,1919916000,5),(750,1930806000,6),(750,1951365600,5),(750,1962860400,6),(750,1983420000,5),(750,1994310000,6),(750,2014869600,5),(750,2025759600,6),(750,2046319200,5),(750,2057209200,6),(750,2077768800,5),(750,2088658800,6),(750,2109218400,5),(750,2120108400,6),(750,2140668000,5),(751,-2147483648,2),(751,-1633276800,1),(751,-1615136400,2),(751,-1601827200,1),(751,-1583686800,2),(751,-880214400,3),(751,-769395600,4),(751,-765392400,2),(751,-52934400,1),(751,-37213200,2),(751,-21484800,1),(751,-5763600,2),(751,9964800,1),(751,25686000,2),(751,41414400,1),(751,57740400,2),(751,73468800,1),(751,89190000,2),(751,104918400,1),(751,120639600,2),(751,126691200,1),(751,152089200,2),(751,162374400,1),(751,183538800,2),(751,199267200,1),(751,215593200,2),(751,230716800,1),(751,247042800,2),(751,262771200,1),(751,278492400,2),(751,294220800,1),(751,309942000,2),(751,325670400,1),(751,341391600,2),(751,357120000,1),(751,372841200,2),(751,388569600,1),(751,404895600,2),(751,420019200,1),(751,436345200,2),(751,452073600,1),(751,467794800,2),(751,483523200,1),(751,499244400,2),(751,514972800,1),(751,530694000,2),(751,544608000,1),(751,562143600,2),(751,576057600,1),(751,594198000,2),(751,607507200,1),(751,625647600,2),(751,638956800,1),(751,657097200,2),(751,671011200,1),(751,688546800,2),(751,702460800,1),(751,719996400,2),(751,733910400,1),(751,752050800,2),(751,765360000,1),(751,783500400,2),(751,796809600,1),(751,814950000,2),(751,828864000,1),(751,846399600,2),(751,860313600,1),(751,877849200,2),(751,891763200,1),(751,909298800,2),(751,923212800,1),(751,941353200,2),(751,954662400,1),(751,972802800,6),(751,986108400,5),(751,1004248800,6),(751,1018162800,5),(751,1035698400,6),(751,1049612400,5),(751,1067148000,6),(751,1081062000,5),(751,1099202400,6),(751,1112511600,5),(751,1130652000,6),(751,1143961200,5),(751,1162101600,6),(751,1173596400,5),(751,1194156000,6),(751,1205046000,5),(751,1225605600,6),(751,1236495600,5),(751,1257055200,6),(751,1268550000,5),(751,1289109600,6),(751,1299999600,5),(751,1320559200,6),(751,1331449200,5),(751,1352008800,6),(751,1362898800,5),(751,1383458400,6),(751,1394348400,5),(751,1414908000,6),(751,1425798000,5),(751,1446357600,6),(751,1457852400,5),(751,1478412000,6),(751,1489302000,5),(751,1509861600,6),(751,1520751600,5),(751,1541311200,6),(751,1552201200,5),(751,1572760800,6),(751,1583650800,5),(751,1604210400,6),(751,1615705200,5),(751,1636264800,6),(751,1647154800,5),(751,1667714400,6),(751,1678604400,5),(751,1699164000,6),(751,1710054000,5),(751,1730613600,6),(751,1741503600,5),(751,1762063200,6),(751,1772953200,5),(751,1793512800,6),(751,1805007600,5),(751,1825567200,6),(751,1836457200,5),(751,1857016800,6),(751,1867906800,5),(751,1888466400,6),(751,1899356400,5),(751,1919916000,6),(751,1930806000,5),(751,1951365600,6),(751,1962860400,5),(751,1983420000,6),(751,1994310000,5),(751,2014869600,6),(751,2025759600,5),(751,2046319200,6),(751,2057209200,5),(751,2077768800,6),(751,2088658800,5),(751,2109218400,6),(751,2120108400,5),(751,2140668000,6),(752,-2147483648,2),(752,-1633276800,1),(752,-1615136400,2),(752,-1601827200,1),(752,-1583686800,2),(752,-880214400,3),(752,-769395600,4),(752,-765392400,2),(752,-715795200,1),(752,-702493200,2),(752,-684345600,1),(752,-671043600,2),(752,-652896000,1),(752,-639594000,2),(752,-620841600,1),(752,-608144400,2),(752,-589392000,1),(752,-576090000,2),(752,-557942400,1),(752,-544640400,2),(752,-526492800,1),(752,-513190800,2),(752,-495043200,1),(752,-481741200,2),(752,-463593600,1),(752,-447267600,2),(752,-431539200,1),(752,-415818000,2),(752,-400089600,1),(752,-386787600,2),(752,-368640000,1),(752,-355338000,2),(752,-337190400,1),(752,-321469200,2),(752,-305740800,1),(752,-289414800,2),(752,-273686400,1),(752,-257965200,2),(752,-242236800,5),(752,-195066000,2),(752,-84384000,1),(752,-68662800,2),(752,-52934400,1),(752,-37213200,2),(752,-21484800,1),(752,-5763600,2),(752,9964800,1),(752,25686000,2),(752,41414400,1),(752,57740400,2),(752,73468800,1),(752,89190000,2),(752,104918400,1),(752,120639600,2),(752,126691200,1),(752,152089200,2),(752,162374400,1),(752,183538800,2),(752,199267200,1),(752,215593200,2),(752,230716800,1),(752,247042800,2),(752,262771200,1),(752,278492400,2),(752,294220800,1),(752,309942000,2),(752,325670400,1),(752,341391600,2),(752,357120000,1),(752,372841200,2),(752,388569600,1),(752,404895600,2),(752,420019200,1),(752,436345200,2),(752,452073600,1),(752,467794800,2),(752,483523200,1),(752,499244400,2),(752,514972800,1),(752,530694000,2),(752,544608000,1),(752,562143600,2),(752,576057600,1),(752,594198000,2),(752,607507200,1),(752,625647600,2),(752,638956800,1),(752,657097200,2),(752,671011200,1),(752,688546800,5),(752,1143961200,1),(752,1162105200,2),(752,1173600000,1),(752,1194159600,2),(752,1205049600,1),(752,1225609200,2),(752,1236499200,1),(752,1257058800,2),(752,1268553600,1),(752,1289113200,2),(752,1300003200,1),(752,1320562800,2),(752,1331452800,1),(752,1352012400,2),(752,1362902400,1),(752,1383462000,2),(752,1394352000,1),(752,1414911600,2),(752,1425801600,1),(752,1446361200,2),(752,1457856000,1),(752,1478415600,2),(752,1489305600,1),(752,1509865200,2),(752,1520755200,1),(752,1541314800,2),(752,1552204800,1),(752,1572764400,2),(752,1583654400,1),(752,1604214000,2),(752,1615708800,1),(752,1636268400,2),(752,1647158400,1),(752,1667718000,2),(752,1678608000,1),(752,1699167600,2),(752,1710057600,1),(752,1730617200,2),(752,1741507200,1),(752,1762066800,2),(752,1772956800,1),(752,1793516400,2),(752,1805011200,1),(752,1825570800,2),(752,1836460800,1),(752,1857020400,2),(752,1867910400,1),(752,1888470000,2),(752,1899360000,1),(752,1919919600,2),(752,1930809600,1),(752,1951369200,2),(752,1962864000,1),(752,1983423600,2),(752,1994313600,1),(752,2014873200,2),(752,2025763200,1),(752,2046322800,2),(752,2057212800,1),(752,2077772400,2),(752,2088662400,1),(752,2109222000,2),(752,2120112000,1),(752,2140671600,2),(753,-2147483648,0),(753,-1826738653,1),(753,-157750200,2),(754,-2147483648,1),(754,-1205954844,2),(754,-1192307244,3),(754,2147483647,3),(755,-2147483648,1),(755,-1938538284,3),(755,-1009825200,2),(755,-1002052800,3),(755,-986756400,2),(755,-971035200,3),(755,-955306800,2),(755,-939585600,3),(755,504939600,2),(755,512712000,3),(755,536475600,2),(755,544248000,3),(755,631170000,2),(755,638942400,3),(755,757400400,2),(755,765172800,3),(755,2147483647,3),(756,-2147483648,2),(756,-1633269600,1),(756,-1615129200,2),(756,-1601820000,1),(756,-1583679600,2),(756,-880207200,3),(756,-769395600,4),(756,-765385200,2),(756,-687967140,1),(756,-662655600,2),(756,-620838000,1),(756,-608137200,2),(756,-589388400,1),(756,-576082800,2),(756,-557938800,1),(756,-544633200,2),(756,-526489200,1),(756,-513183600,2),(756,-495039600,1),(756,-481734000,2),(756,-463590000,1),(756,-450284400,2),(756,-431535600,1),(756,-418230000,2),(756,-400086000,1),(756,-386780400,2),(756,-368636400,1),(756,-355330800,2),(756,-337186800,1),(756,-323881200,2),(756,-305737200,1),(756,-292431600,2),(756,-273682800,1),(756,-260982000,2),(756,-242233200,1),(756,-226508400,2),(756,-210783600,1),(756,-195058800,2),(756,-179334000,1),(756,-163609200,2),(756,-147884400,1),(756,-131554800,2),(756,-116434800,1),(756,-100105200,2),(756,-84376800,1),(756,-68655600,2),(756,-52927200,1),(756,-37206000,2),(756,-21477600,1),(756,-5756400,2),(756,9972000,1),(756,25693200,2),(756,41421600,1),(756,57747600,2),(756,73476000,1),(756,89197200,2),(756,104925600,1),(756,120646800,2),(756,126698400,1),(756,152096400,2),(756,162381600,1),(756,183546000,2),(756,199274400,1),(756,215600400,2),(756,230724000,1),(756,247050000,2),(756,262778400,1),(756,278499600,2),(756,294228000,1),(756,309949200,2),(756,325677600,1),(756,341398800,2),(756,357127200,1),(756,372848400,2),(756,388576800,1),(756,404902800,2),(756,420026400,1),(756,436352400,2),(756,452080800,1),(756,467802000,2),(756,483530400,1),(756,499251600,2),(756,514980000,1),(756,530701200,2),(756,544615200,1),(756,562150800,2),(756,576064800,1),(756,594205200,2),(756,607514400,1),(756,625654800,2),(756,638964000,1),(756,657104400,2),(756,671018400,1),(756,688554000,2),(756,702468000,1),(756,720003600,2),(756,733917600,1),(756,752058000,2),(756,765367200,1),(756,783507600,2),(756,796816800,1),(756,814957200,2),(756,828871200,1),(756,846406800,2),(756,860320800,1),(756,877856400,2),(756,891770400,1),(756,909306000,2),(756,923220000,1),(756,941360400,2),(756,954669600,1),(756,972810000,2),(756,986119200,1),(756,1004259600,2),(756,1018173600,1),(756,1035709200,2),(756,1049623200,1),(756,1067158800,2),(756,1081072800,1),(756,1099213200,2),(756,1112522400,1),(756,1130662800,2),(756,1143972000,1),(756,1162112400,2),(756,1173607200,1),(756,1194166800,2),(756,1205056800,1),(756,1225616400,2),(756,1236506400,1),(756,1257066000,2),(756,1268560800,1),(756,1289120400,2),(756,1300010400,1),(756,1320570000,2),(756,1331460000,1),(756,1352019600,2),(756,1362909600,1),(756,1383469200,2),(756,1394359200,1),(756,1414918800,2),(756,1425808800,1),(756,1446368400,2),(756,1457863200,1),(756,1478422800,2),(756,1489312800,1),(756,1509872400,2),(756,1520762400,1),(756,1541322000,2),(756,1552212000,1),(756,1572771600,2),(756,1583661600,1),(756,1604221200,2),(756,1615716000,1),(756,1636275600,2),(756,1647165600,1),(756,1667725200,2),(756,1678615200,1),(756,1699174800,2),(756,1710064800,1),(756,1730624400,2),(756,1741514400,1),(756,1762074000,2),(756,1772964000,1),(756,1793523600,2),(756,1805018400,1),(756,1825578000,2),(756,1836468000,1),(756,1857027600,2),(756,1867917600,1),(756,1888477200,2),(756,1899367200,1),(756,1919926800,2),(756,1930816800,1),(756,1951376400,2),(756,1962871200,1),(756,1983430800,2),(756,1994320800,1),(756,2014880400,2),(756,2025770400,1),(756,2046330000,2),(756,2057220000,1),(756,2077779600,2),(756,2088669600,1),(756,2109229200,2),(756,2120119200,1),(756,2140678800,2),(757,-2147483648,2),(757,-1633276800,1),(757,-1615136400,2),(757,-1601827200,1),(757,-1583686800,2),(757,-1535904000,1),(757,-1525280400,2),(757,-905097600,1),(757,-891795600,2),(757,-880214400,3),(757,-769395600,4),(757,-765392400,2),(757,-747251940,1),(757,-744224400,2),(757,-620841600,1),(757,-608144400,2),(757,-589392000,1),(757,-576090000,2),(757,-557942400,1),(757,-544640400,2),(757,-526492800,1),(757,-513190800,2),(757,-495043200,1),(757,-481741200,2),(757,-463593600,1),(757,-450291600,2),(757,-431539200,1),(757,-415818000,2),(757,-400089600,1),(757,-384368400,2),(757,-368640000,1),(757,-352918800,2),(757,-337190400,1),(757,-321469200,2),(757,-305740800,1),(757,-289414800,2),(757,-273686400,1),(757,-266432400,5),(757,-52938000,6),(757,-37216800,5),(757,-21488400,6),(757,-5767200,5),(757,9961200,6),(757,25682400,5),(757,41410800,6),(757,57736800,5),(757,73465200,6),(757,89186400,5),(757,104914800,6),(757,120636000,5),(757,126687600,1),(757,152089200,5),(757,162370800,6),(757,183535200,5),(757,199263600,6),(757,215589600,5),(757,230713200,6),(757,247039200,5),(757,262767600,6),(757,278488800,5),(757,294217200,6),(757,309938400,5),(757,325666800,6),(757,341388000,5),(757,357116400,6),(757,372837600,5),(757,388566000,6),(757,404892000,5),(757,420015600,6),(757,436341600,5),(757,452070000,6),(757,467791200,5),(757,483519600,6),(757,499240800,5),(757,514969200,6),(757,530690400,5),(757,544604400,6),(757,562140000,5),(757,576054000,6),(757,594194400,5),(757,607503600,6),(757,625644000,5),(757,638953200,6),(757,657093600,5),(757,671007600,6),(757,688543200,5),(757,702457200,6),(757,719992800,5),(757,733906800,6),(757,752047200,5),(757,765356400,6),(757,783496800,5),(757,796806000,6),(757,814946400,5),(757,828860400,6),(757,846396000,5),(757,860310000,6),(757,877845600,5),(757,891759600,6),(757,909295200,5),(757,923209200,6),(757,941349600,5),(757,954658800,6),(757,972799200,5),(757,986108400,6),(757,1004248800,5),(757,1018162800,6),(757,1035698400,5),(757,1049612400,6),(757,1067148000,5),(757,1081062000,6),(757,1099202400,5),(757,1112511600,6),(757,1130652000,5),(757,1143961200,6),(757,1162101600,5),(757,1173596400,6),(757,1194156000,5),(757,1205046000,6),(757,1225605600,5),(757,1236495600,6),(757,1257055200,5),(757,1268550000,6),(757,1289109600,5),(757,1299999600,6),(757,1320559200,5),(757,1331449200,6),(757,1352008800,5),(757,1362898800,6),(757,1383458400,5),(757,1394348400,6),(757,1414908000,5),(757,1425798000,6),(757,1446357600,5),(757,1457852400,6),(757,1478412000,5),(757,1489302000,6),(757,1509861600,5),(757,1520751600,6),(757,1541311200,5),(757,1552201200,6),(757,1572760800,5),(757,1583650800,6),(757,1604210400,5),(757,1615705200,6),(757,1636264800,5),(757,1647154800,6),(757,1667714400,5),(757,1678604400,6),(757,1699164000,5),(757,1710054000,6),(757,1730613600,5),(757,1741503600,6),(757,1762063200,5),(757,1772953200,6),(757,1793512800,5),(757,1805007600,6),(757,1825567200,5),(757,1836457200,6),(757,1857016800,5),(757,1867906800,6),(757,1888466400,5),(757,1899356400,6),(757,1919916000,5),(757,1930806000,6),(757,1951365600,5),(757,1962860400,6),(757,1983420000,5),(757,1994310000,6),(757,2014869600,5),(757,2025759600,6),(757,2046319200,5),(757,2057209200,6),(757,2077768800,5),(757,2088658800,6),(757,2109218400,5),(757,2120108400,6),(757,2140668000,5),(758,-2147483648,0),(758,-1826738653,1),(758,-157750200,2),(759,-2147483648,0),(759,-1767217028,2),(759,-1206957600,1),(759,-1191362400,2),(759,-1175374800,1),(759,-1159826400,2),(759,-633819600,1),(759,-622069200,2),(759,-602283600,1),(759,-591832800,2),(759,-570747600,1),(759,-560210400,2),(759,-539125200,1),(759,-531352800,2),(759,-191365200,1),(759,-184197600,2),(759,-155163600,1),(759,-150069600,2),(759,-128898000,1),(759,-121125600,2),(759,-99954000,1),(759,-89589600,2),(759,-68418000,1),(759,-57967200,2),(759,499748400,1),(759,511236000,2),(759,530593200,1),(759,540266400,2),(759,562129200,1),(759,571197600,2),(759,592974000,1),(759,602042400,2),(759,624423600,1),(759,634701600,2),(759,813726000,1),(759,824004000,2),(759,938919600,1),(759,951616800,2),(759,970974000,1),(759,972180000,2),(759,1003028400,1),(759,1013911200,2),(759,2147483647,2),(760,-2147483648,1),(760,-1121105688,2),(760,105084000,3),(760,161758800,2),(760,290584800,4),(760,299134800,2),(760,322034400,4),(760,330584400,2),(760,694260000,3),(760,717310800,2),(760,725868000,3),(760,852094800,2),(760,1113112800,4),(760,1128229200,2),(760,1146384000,4),(760,1159682400,2),(761,-2147483648,0),(761,-1767211196,2),(761,-1206954000,1),(761,-1191358800,2),(761,-1175371200,1),(761,-1159822800,2),(761,-633816000,1),(761,-622065600,2),(761,-602280000,1),(761,-591829200,2),(761,-570744000,1),(761,-560206800,2),(761,-539121600,1),(761,-531349200,2),(761,-191361600,1),(761,-184194000,2),(761,-155160000,1),(761,-150066000,2),(761,-128894400,1),(761,-121122000,2),(761,-99950400,1),(761,-89586000,2),(761,-68414400,1),(761,-57963600,2),(761,499752000,1),(761,511239600,2),(761,530596800,1),(761,540270000,2),(761,562132800,1),(761,571201200,2),(761,750830400,1),(761,761713200,2),(761,2147483647,2),(762,-2147483648,0),(762,-1825098836,1),(763,-2147483648,1),(763,-1851537340,2),(763,323841600,3),(763,338958000,2),(764,-2147483648,0),(764,-1514743200,1),(764,576057600,2),(764,594198000,1),(764,828864000,2),(764,846399600,1),(764,860313600,2),(764,877849200,1),(764,891763200,2),(764,909298800,1),(764,923212800,2),(764,941353200,1),(764,954662400,2),(764,972802800,1),(764,989136000,2),(764,1001833200,1),(764,1018166400,2),(764,1035702000,1),(764,1049616000,2),(764,1067151600,1),(764,1081065600,2),(764,1099206000,1),(764,1112515200,2),(764,1130655600,1),(764,1143964800,2),(764,1162105200,1),(764,1175414400,2),(764,1193554800,1),(764,1207468800,2),(764,1225004400,1),(764,1238918400,2),(764,1256454000,1),(764,1268553600,2),(764,1289113200,1),(764,1300003200,2),(764,1320562800,1),(764,1331452800,2),(764,1352012400,1),(764,1362902400,2),(764,1383462000,1),(764,1394352000,2),(764,1414911600,1),(764,1425801600,2),(764,1446361200,1),(764,1457856000,2),(764,1478415600,1),(764,1489305600,2),(764,1509865200,1),(764,1520755200,2),(764,1541314800,1),(764,1552204800,2),(764,1572764400,1),(764,1583654400,2),(764,1604214000,1),(764,1615708800,2),(764,1636268400,1),(764,1647158400,2),(764,1667718000,1),(764,1678608000,2),(764,1699167600,1),(764,1710057600,2),(764,1730617200,1),(764,1741507200,2),(764,1762066800,1),(764,1772956800,2),(764,1793516400,1),(764,1805011200,2),(764,1825570800,1),(764,1836460800,2),(764,1857020400,1),(764,1867910400,2),(764,1888470000,1),(764,1899360000,2),(764,1919919600,1),(764,1930809600,2),(764,1951369200,1),(764,1962864000,2),(764,1983423600,1),(764,1994313600,2),(764,2014873200,1),(764,2025763200,2),(764,2046322800,1),(764,2057212800,2),(764,2077772400,1),(764,2088662400,2),(764,2109222000,1),(764,2120112000,2),(764,2140671600,1),(765,-2147483648,0),(765,-1514739600,1),(765,-1343066400,2),(765,-1234807200,1),(765,-1220292000,2),(765,-1207159200,1),(765,-1191344400,2),(765,-873828000,1),(765,-661539600,3),(765,28800,1),(765,828867600,4),(765,846403200,1),(765,860317200,4),(765,877852800,1),(765,891766800,4),(765,909302400,1),(765,923216400,4),(765,941356800,1),(765,954666000,4),(765,972806400,1),(765,989139600,4),(765,1001836800,1),(765,1018170000,4),(765,1035705600,1),(765,1049619600,4),(765,1067155200,1),(765,1081069200,4),(765,1099209600,1),(765,1112518800,4),(765,1130659200,1),(765,1143968400,4),(765,1162108800,1),(765,1175418000,4),(765,1193558400,1),(765,1207472400,4),(765,1225008000,1),(765,1238922000,4),(765,1256457600,1),(765,1270371600,4),(765,1288512000,1),(765,1301821200,4),(765,1319961600,1),(765,1333270800,4),(765,1351411200,1),(765,1365325200,4),(765,1382860800,1),(765,1396774800,4),(765,1414310400,1),(765,1428224400,4),(765,1445760000,1),(765,1459674000,4),(765,1477814400,1),(765,1491123600,4),(765,1509264000,1),(765,1522573200,4),(765,1540713600,1),(765,1554627600,4),(765,1572163200,1),(765,1586077200,4),(765,1603612800,1),(765,1617526800,4),(765,1635667200,1),(765,1648976400,4),(765,1667116800,1),(765,1680426000,4),(765,1698566400,1),(765,1712480400,4),(765,1730016000,1),(765,1743930000,4),(765,1761465600,1),(765,1775379600,4),(765,1792915200,1),(765,1806829200,4),(765,1824969600,1),(765,1838278800,4),(765,1856419200,1),(765,1869728400,4),(765,1887868800,1),(765,1901782800,4),(765,1919318400,1),(765,1933232400,4),(765,1950768000,1),(765,1964682000,4),(765,1982822400,1),(765,1996131600,4),(765,2014272000,1),(765,2027581200,4),(765,2045721600,1),(765,2059030800,4),(765,2077171200,1),(765,2091085200,4),(765,2108620800,1),(765,2122534800,4),(765,2140070400,1),(766,-2147483648,1),(766,-1567453392,2),(766,-1233432000,3),(766,-1222981200,2),(766,-1205956800,3),(766,-1194037200,2),(766,-1172865600,3),(766,-1162501200,2),(766,-1141329600,3),(766,-1130965200,2),(766,-1109793600,3),(766,-1099429200,2),(766,-1078257600,3),(766,-1067806800,2),(766,-1046635200,3),(766,-1036270800,2),(766,-1015099200,3),(766,-1004734800,2),(766,-983563200,3),(766,-973198800,2),(766,-952027200,3),(766,-941576400,2),(766,-931032000,3),(766,-900882000,2),(766,-890337600,3),(766,-833749200,2),(766,-827265600,3),(766,-752274000,2),(766,-733780800,3),(766,-197326800,2),(766,-190843200,3),(766,-184194000,2),(766,-164491200,3),(766,-152658000,2),(766,-132955200,3),(766,-121122000,2),(766,-101419200,3),(766,-86821200,2),(766,-71092800,3),(766,-54766800,2),(766,-39038400,3),(766,-23317200,2),(766,-7588800,5),(766,128142000,4),(766,136605600,5),(766,596948400,4),(766,605066400,5),(766,624423600,4),(766,636516000,2),(766,655963200,3),(766,667796400,2),(766,687499200,3),(766,699418800,2),(766,719380800,4),(766,731469600,5),(766,938919600,3),(766,952052400,5),(766,1085281200,2),(766,1096171200,5),(766,1198983600,4),(766,1205632800,5),(766,2147483647,5),(767,-2147483648,2),(767,-1633276800,1),(767,-1615136400,2),(767,-1601827200,1),(767,-1583686800,2),(767,-880214400,3),(767,-769395600,4),(767,-765392400,2),(767,-747244800,1),(767,-733942800,2),(767,-116438400,1),(767,-100112400,2),(767,-21484800,5),(767,104914800,1),(767,120639600,2),(767,126691200,1),(767,152089200,2),(767,162374400,1),(767,183538800,2),(767,199267200,1),(767,215593200,2),(767,230716800,1),(767,247042800,2),(767,262771200,1),(767,278492400,2),(767,294220800,1),(767,309942000,2),(767,325670400,1),(767,341391600,2),(767,357120000,1),(767,372841200,2),(767,388569600,1),(767,404895600,2),(767,420019200,1),(767,436345200,2),(767,452073600,1),(767,467794800,2),(767,483523200,1),(767,499244400,2),(767,514972800,1),(767,530694000,2),(767,544608000,1),(767,562143600,2),(767,576057600,1),(767,594198000,2),(767,607507200,1),(767,625647600,2),(767,638956800,1),(767,657097200,2),(767,671011200,1),(767,688546800,2),(767,702460800,1),(767,719996400,2),(767,733910400,1),(767,752050800,2),(767,765360000,1),(767,783500400,2),(767,796809600,1),(767,814950000,2),(767,828864000,1),(767,846399600,2),(767,860313600,1),(767,877849200,2),(767,891763200,1),(767,909298800,2),(767,923212800,1),(767,941353200,2),(767,954662400,1),(767,972802800,2),(767,986112000,1),(767,1004252400,2),(767,1018166400,1),(767,1035702000,2),(767,1049616000,1),(767,1067151600,2),(767,1081065600,1),(767,1099206000,2),(767,1112515200,1),(767,1130655600,2),(767,1143964800,1),(767,1162105200,2),(767,1173600000,1),(767,1194159600,2),(767,1205049600,1),(767,1225609200,2),(767,1236499200,1),(767,1257058800,2),(767,1268553600,1),(767,1289113200,2),(767,1300003200,1),(767,1320562800,2),(767,1331452800,1),(767,1352012400,2),(767,1362902400,1),(767,1383462000,2),(767,1394352000,1),(767,1414911600,2),(767,1425801600,1),(767,1446361200,2),(767,1457856000,1),(767,1478415600,2),(767,1489305600,1),(767,1509865200,2),(767,1520755200,1),(767,1541314800,2),(767,1552204800,1),(767,1572764400,2),(767,1583654400,1),(767,1604214000,2),(767,1615708800,1),(767,1636268400,2),(767,1647158400,1),(767,1667718000,2),(767,1678608000,1),(767,1699167600,2),(767,1710057600,1),(767,1730617200,2),(767,1741507200,1),(767,1762066800,2),(767,1772956800,1),(767,1793516400,2),(767,1805011200,1),(767,1825570800,2),(767,1836460800,1),(767,1857020400,2),(767,1867910400,1),(767,1888470000,2),(767,1899360000,1),(767,1919919600,2),(767,1930809600,1),(767,1951369200,2),(767,1962864000,1),(767,1983423600,2),(767,1994313600,1),(767,2014873200,2),(767,2025763200,1),(767,2046322800,2),(767,2057212800,1),(767,2077772400,2),(767,2088662400,1),(767,2109222000,2),(767,2120112000,1),(767,2140671600,2),(768,-2147483648,0),(768,-1514743200,1),(768,377935200,2),(768,407653200,1),(768,828864000,3),(768,846399600,1),(768,860313600,3),(768,877849200,1),(768,891763200,3),(768,909298800,1),(768,923212800,3),(768,941353200,1),(768,954662400,3),(768,972802800,1),(768,989136000,3),(768,1001833200,1),(768,1018166400,3),(768,1035702000,1),(768,1049616000,3),(768,1067151600,1),(768,1081065600,3),(768,1099206000,1),(768,1112515200,3),(768,1130655600,1),(768,1143964800,3),(768,1162105200,1),(768,1175414400,3),(768,1193554800,1),(768,1207468800,3),(768,1225004400,1),(768,1238918400,3),(768,1256454000,1),(768,1270368000,3),(768,1288508400,1),(768,1301817600,3),(768,1319958000,1),(768,1333267200,3),(768,1351407600,1),(768,1365321600,3),(768,1382857200,1),(768,1396771200,3),(768,1414306800,1),(768,1428220800,3),(768,1445756400,1),(768,1459670400,3),(768,1477810800,1),(768,1491120000,3),(768,1509260400,1),(768,1522569600,3),(768,1540710000,1),(768,1554624000,3),(768,1572159600,1),(768,1586073600,3),(768,1603609200,1),(768,1617523200,3),(768,1635663600,1),(768,1648972800,3),(768,1667113200,1),(768,1680422400,3),(768,1698562800,1),(768,1712476800,3),(768,1730012400,1),(768,1743926400,3),(768,1761462000,1),(768,1775376000,3),(768,1792911600,1),(768,1806825600,3),(768,1824966000,1),(768,1838275200,3),(768,1856415600,1),(768,1869724800,3),(768,1887865200,1),(768,1901779200,3),(768,1919314800,1),(768,1933228800,3),(768,1950764400,1),(768,1964678400,3),(768,1982818800,1),(768,1996128000,3),(768,2014268400,1),(768,2027577600,3),(768,2045718000,1),(768,2059027200,3),(768,2077167600,1),(768,2091081600,3),(768,2108617200,1),(768,2122531200,3),(768,2140066800,1),(769,-2147483648,1),(769,-880207200,2),(769,-769395600,3),(769,-765385200,1),(769,-21477600,4),(769,-5756400,1),(769,9972000,4),(769,25693200,1),(769,41421600,4),(769,57747600,1),(769,73476000,4),(769,89197200,1),(769,104925600,4),(769,120646800,1),(769,126698400,4),(769,152096400,1),(769,162381600,4),(769,183546000,1),(769,199274400,4),(769,215600400,1),(769,230724000,4),(769,247050000,1),(769,262778400,4),(769,278499600,1),(769,294228000,4),(769,309949200,1),(769,325677600,4),(769,341398800,1),(769,357127200,4),(769,372848400,1),(769,388576800,4),(769,404902800,1),(769,420026400,4),(769,436352400,1),(769,1446372000,5),(769,1457866800,6),(769,1478426400,5),(769,1489316400,6),(769,1509876000,5),(769,1520766000,6),(769,1541325600,1),(769,1547978400,5),(769,1552215600,6),(769,1572775200,5),(769,1583665200,6),(769,1604224800,5),(769,1615719600,6),(769,1636279200,5),(769,1647169200,6),(769,1667728800,5),(769,1678618800,6),(769,1699178400,5),(769,1710068400,6),(769,1730628000,5),(769,1741518000,6),(769,1762077600,5),(769,1772967600,6),(769,1793527200,5),(769,1805022000,6),(769,1825581600,5),(769,1836471600,6),(769,1857031200,5),(769,1867921200,6),(769,1888480800,5),(769,1899370800,6),(769,1919930400,5),(769,1930820400,6),(769,1951380000,5),(769,1962874800,6),(769,1983434400,5),(769,1994324400,6),(769,2014884000,5),(769,2025774000,6),(769,2046333600,5),(769,2057223600,6),(769,2077783200,5),(769,2088673200,6),(769,2109232800,5),(769,2120122800,6),(769,2140682400,5),(770,-2147483648,0),(770,-1514739600,1),(770,-1343066400,2),(770,-1234807200,1),(770,-1220292000,2),(770,-1207159200,1),(770,-1191344400,2),(770,-975261600,3),(770,-963169200,2),(770,-917114400,3),(770,-907354800,2),(770,-821901600,4),(770,-810068400,2),(770,-627501600,3),(770,-612990000,2),(770,828864000,3),(770,846399600,2),(770,860313600,3),(770,877849200,2),(770,891763200,3),(770,909298800,2),(770,923212800,3),(770,941353200,2),(770,954662400,3),(770,972802800,2),(770,989136000,3),(770,1001833200,2),(770,1018166400,3),(770,1035702000,2),(770,1049616000,3),(770,1067151600,2),(770,1081065600,3),(770,1099206000,2),(770,1112515200,3),(770,1130655600,2),(770,1143964800,3),(770,1162105200,2),(770,1175414400,3),(770,1193554800,2),(770,1207468800,3),(770,1225004400,2),(770,1238918400,3),(770,1256454000,2),(770,1270368000,3),(770,1288508400,2),(770,1301817600,3),(770,1319958000,2),(770,1333267200,3),(770,1351407600,2),(770,1365321600,3),(770,1382857200,2),(770,1396771200,3),(770,1414306800,2),(770,1428220800,3),(770,1445756400,2),(770,1459670400,3),(770,1477810800,2),(770,1491120000,3),(770,1509260400,2),(770,1522569600,3),(770,1540710000,2),(770,1554624000,3),(770,1572159600,2),(770,1586073600,3),(770,1603609200,2),(770,1617523200,3),(770,1635663600,2),(770,1648972800,3),(770,1667113200,2),(770,1680422400,3),(770,1698562800,2),(770,1712476800,3),(770,1730012400,2),(770,1743926400,3),(770,1761462000,2),(770,1775376000,3),(770,1792911600,2),(770,1806825600,3),(770,1824966000,2),(770,1838275200,3),(770,1856415600,2),(770,1869724800,3),(770,1887865200,2),(770,1901779200,3),(770,1919314800,2),(770,1933228800,3),(770,1950764400,2),(770,1964678400,3),(770,1982818800,2),(770,1996128000,3),(770,2014268400,2),(770,2027577600,3),(770,2045718000,2),(770,2059027200,3),(770,2077167600,2),(770,2091081600,3),(770,2108617200,2),(770,2122531200,3),(770,2140066800,2),(771,-2147483648,0),(771,-1850328920,1),(771,326001600,2),(771,544597200,3),(771,562132800,2),(771,576046800,3),(771,594187200,2),(771,607496400,3),(771,625636800,2),(771,638946000,3),(771,657086400,2),(771,671000400,3),(771,688536000,2),(771,702450000,3),(771,719985600,2),(771,733899600,3),(771,752040000,2),(771,765349200,3),(771,783489600,2),(771,796798800,3),(771,814939200,2),(771,828853200,3),(771,846388800,2),(771,860302800,3),(771,877838400,2),(771,891752400,3),(771,909288000,2),(771,923202000,3),(771,941342400,2),(771,954651600,3),(771,972792000,2),(771,986101200,3),(771,1004241600,2),(771,1018155600,3),(771,1035691200,2),(771,1049605200,3),(771,1067140800,2),(771,1081054800,3),(771,1099195200,2),(771,1112504400,3),(771,1130644800,2),(771,1143954000,3),(771,1162094400,2),(771,1173589200,3),(771,1194148800,2),(771,1205038800,3),(771,1225598400,2),(771,1236488400,3),(771,1257048000,2),(771,1268542800,3),(771,1289102400,2),(771,1299992400,3),(771,1320552000,2),(771,1331442000,3),(771,1352001600,2),(771,1362891600,3),(771,1383451200,2),(771,1394341200,3),(771,1414900800,2),(771,1425790800,3),(771,1446350400,2),(771,1457845200,3),(771,1478404800,2),(771,1489294800,3),(771,1509854400,2),(771,1520744400,3),(771,1541304000,2),(771,1552194000,3),(771,1572753600,2),(771,1583643600,3),(771,1604203200,2),(771,1615698000,3),(771,1636257600,2),(771,1647147600,3),(771,1667707200,2),(771,1678597200,3),(771,1699156800,2),(771,1710046800,3),(771,1730606400,2),(771,1741496400,3),(771,1762056000,2),(771,1772946000,3),(771,1793505600,2),(771,1805000400,3),(771,1825560000,2),(771,1836450000,3),(771,1857009600,2),(771,1867899600,3),(771,1888459200,2),(771,1899349200,3),(771,1919908800,2),(771,1930798800,3),(771,1951358400,2),(771,1962853200,3),(771,1983412800,2),(771,1994302800,3),(771,2014862400,2),(771,2025752400,3),(771,2046312000,2),(771,2057202000,3),(771,2077761600,2),(771,2088651600,3),(771,2109211200,2),(771,2120101200,3),(771,2140660800,2),(771,2147483647,2),(772,-2147483648,1),(772,-2131642800,3),(772,-1632074400,2),(772,-1615143600,3),(772,-1153681200,2),(772,-1145822400,3),(772,-1122231600,2),(772,-1114372800,3),(772,-1090782000,2),(772,-1082923200,3),(772,-1059332400,2),(772,-1051473600,3),(772,-1027882800,2),(772,-1020024000,3),(772,-996433200,2),(772,-988574400,3),(772,-965674800,2),(772,-955396800,3),(772,-934743600,2),(772,-923947200,3),(772,-904503600,2),(772,-891892800,3),(772,-880221600,4),(772,-769395600,5),(772,-765399600,3),(772,-747252000,2),(772,-733950000,3),(772,-715802400,2),(772,-702500400,3),(772,-684352800,2),(772,-671050800,3),(772,-652903200,2),(772,-639601200,3),(772,-620848800,2),(772,-608151600,3),(772,-589399200,2),(772,-576097200,3),(772,-557949600,2),(772,-544647600,3),(772,-526500000,2),(772,-513198000,3),(772,-495050400,2),(772,-481748400,3),(772,-463600800,2),(772,-450298800,3),(772,-431546400,2),(772,-418244400,3),(772,-400096800,2),(772,-384375600,3),(772,-368647200,2),(772,-352926000,3),(772,-337197600,2),(772,-321476400,3),(772,-305748000,2),(772,-289422000,3),(772,-273693600,2),(772,-257972400,3),(772,-242244000,2),(772,-226522800,3),(772,-210794400,2),(772,-195073200,3),(772,-179344800,2),(772,-163623600,3),(772,-147895200,2),(772,-131569200,3),(772,-116445600,2),(772,-100119600,3),(772,-84391200,2),(772,-68670000,3),(772,-52941600,2),(772,-37220400,3),(772,-21492000,2),(772,-5770800,3),(772,9957600,2),(772,25678800,3),(772,41407200,2),(772,57733200,3),(772,73461600,2),(772,89182800,3),(772,136360800,2),(772,152082000,3),(772,167810400,2),(772,183531600,3),(772,199260000,2),(772,215586000,3),(772,230709600,2),(772,247035600,3),(772,262764000,2),(772,278485200,3),(772,294213600,2),(772,309934800,3),(772,325663200,2),(772,341384400,3),(772,357112800,2),(772,372834000,3),(772,388562400,2),(772,404888400,3),(772,420012000,2),(772,436338000,3),(772,452066400,2),(772,467787600,3),(772,483516000,2),(772,499237200,3),(772,514965600,2),(772,530686800,3),(772,544600800,2),(772,562136400,3),(772,576050400,2),(772,594190800,3),(772,607500000,2),(772,625640400,3),(772,638949600,2),(772,657090000,3),(772,671004000,2),(772,688539600,3),(772,702453600,2),(772,719989200,3),(772,733896060,2),(772,752036460,3),(772,765345660,2),(772,783486060,3),(772,796795260,2),(772,814935660,3),(772,828849660,2),(772,846385260,3),(772,860299260,2),(772,877834860,3),(772,891748860,2),(772,909284460,3),(772,923198460,2),(772,941338860,3),(772,954648060,2),(772,972788460,3),(772,986097660,2),(772,1004238060,3),(772,1018152060,2),(772,1035687660,3),(772,1049601660,2),(772,1067137260,3),(772,1081051260,2),(772,1099191660,3),(772,1112500860,2),(772,1130641260,3),(772,1143950460,2),(772,1162090860,3),(772,1173592800,2),(772,1194152400,3),(772,1205042400,2),(772,1225602000,3),(772,1236492000,2),(772,1257051600,3),(772,1268546400,2),(772,1289106000,3),(772,1299996000,2),(772,1320555600,3),(772,1331445600,2),(772,1352005200,3),(772,1362895200,2),(772,1383454800,3),(772,1394344800,2),(772,1414904400,3),(772,1425794400,2),(772,1446354000,3),(772,1457848800,2),(772,1478408400,3),(772,1489298400,2),(772,1509858000,3),(772,1520748000,2),(772,1541307600,3),(772,1552197600,2),(772,1572757200,3),(772,1583647200,2),(772,1604206800,3),(772,1615701600,2),(772,1636261200,3),(772,1647151200,2),(772,1667710800,3),(772,1678600800,2),(772,1699160400,3),(772,1710050400,2),(772,1730610000,3),(772,1741500000,2),(772,1762059600,3),(772,1772949600,2),(772,1793509200,3),(772,1805004000,2),(772,1825563600,3),(772,1836453600,2),(772,1857013200,3),(772,1867903200,2),(772,1888462800,3),(772,1899352800,2),(772,1919912400,3),(772,1930802400,2),(772,1951362000,3),(772,1962856800,2),(772,1983416400,3),(772,1994306400,2),(772,2014866000,3),(772,2025756000,2),(772,2046315600,3),(772,2057205600,2),(772,2077765200,3),(772,2088655200,2),(772,2109214800,3),(772,2120104800,2),(772,2140664400,3),(773,-2147483648,0),(773,-1514743200,1),(773,576057600,2),(773,594198000,1),(773,828864000,2),(773,846399600,1),(773,860313600,2),(773,877849200,1),(773,891763200,2),(773,909298800,1),(773,923212800,2),(773,941353200,1),(773,954662400,2),(773,972802800,1),(773,989136000,2),(773,1001833200,1),(773,1018166400,2),(773,1035702000,1),(773,1049616000,2),(773,1067151600,1),(773,1081065600,2),(773,1099206000,1),(773,1112515200,2),(773,1130655600,1),(773,1143964800,2),(773,1162105200,1),(773,1175414400,2),(773,1193554800,1),(773,1207468800,2),(773,1225004400,1),(773,1238918400,2),(773,1256454000,1),(773,1270368000,2),(773,1288508400,1),(773,1301817600,2),(773,1319958000,1),(773,1333267200,2),(773,1351407600,1),(773,1365321600,2),(773,1382857200,1),(773,1396771200,2),(773,1414306800,1),(773,1428220800,2),(773,1445756400,1),(773,1459670400,2),(773,1477810800,1),(773,1491120000,2),(773,1509260400,1),(773,1522569600,2),(773,1540710000,1),(773,1554624000,2),(773,1572159600,1),(773,1586073600,2),(773,1603609200,1),(773,1617523200,2),(773,1635663600,1),(773,1648972800,2),(773,1667113200,1),(773,1680422400,2),(773,1698562800,1),(773,1712476800,2),(773,1730012400,1),(773,1743926400,2),(773,1761462000,1),(773,1775376000,2),(773,1792911600,1),(773,1806825600,2),(773,1824966000,1),(773,1838275200,2),(773,1856415600,1),(773,1869724800,2),(773,1887865200,1),(773,1901779200,2),(773,1919314800,1),(773,1933228800,2),(773,1950764400,1),(773,1964678400,2),(773,1982818800,1),(773,1996128000,2),(773,2014268400,1),(773,2027577600,2),(773,2045718000,1),(773,2059027200,2),(773,2077167600,1),(773,2091081600,2),(773,2108617200,1),(773,2122531200,2),(773,2140066800,1),(774,-2147483648,0),(774,-1942690509,1),(774,-1567455309,2),(774,-1459627200,4),(774,-1443819600,3),(774,-1428006600,4),(774,-1412283600,3),(774,-1396470600,4),(774,-1380747600,3),(774,-1141590600,4),(774,-1128286800,3),(774,-1110141000,4),(774,-1096837200,3),(774,-1078691400,4),(774,-1065387600,3),(774,-1047241800,4),(774,-1033938000,3),(774,-1015187400,4),(774,-1002488400,3),(774,-983737800,4),(774,-971038800,3),(774,-954707400,4),(774,-938984400,3),(774,-920838600,4),(774,-907534800,3),(774,-896819400,4),(774,-853621200,6),(774,-845847000,5),(774,-334789200,6),(774,-319671000,5),(774,-314226000,7),(774,-309996000,5),(774,-149720400,7),(774,-134604000,5),(774,-50446800,6),(774,-34205400,5),(774,9860400,7),(774,14176800,5),(774,72846000,7),(774,80100000,5),(774,127278000,8),(774,132111000,6),(774,147234600,5),(774,156913200,7),(774,165376800,5),(774,219812400,7),(774,226461600,5),(774,250052400,7),(774,257911200,5),(774,282711600,7),(774,289360800,5),(774,294202800,7),(774,322020000,5),(774,566449200,7),(774,573012000,5),(774,597812400,7),(774,605066400,5),(774,625633200,7),(774,635911200,5),(774,656478000,7),(774,667965600,5),(774,688532400,7),(774,699415200,5),(774,719377200,7),(774,730864800,5),(774,1095562800,7),(774,1111896000,5),(774,1128834000,7),(774,1142136000,5),(774,1159678800,7),(774,1173585600,5),(774,1191733200,7),(774,1205035200,5),(774,1223182800,7),(774,1236484800,5),(774,1254632400,7),(774,1268539200,5),(774,1286082000,7),(774,1299988800,5),(774,1317531600,7),(774,1331438400,5),(774,1349586000,7),(774,1362888000,5),(774,1381035600,7),(774,1394337600,5),(774,1412485200,7),(774,1425787200,5),(774,2147483647,5),(775,-2147483648,2),(775,-1632070800,1),(775,-1615140000,2),(775,-1601753400,1),(775,-1583697600,2),(775,-1567357200,1),(775,-1554667200,2),(775,-1534698000,1),(775,-1524074400,2),(775,-1503248400,1),(775,-1492365600,2),(775,-1471798800,1),(775,-1460916000,2),(775,-1440954000,1),(775,-1428861600,2),(775,-1409504400,1),(775,-1397412000,2),(775,-1378054800,1),(775,-1365962400,2),(775,-1346605200,1),(775,-1333908000,2),(775,-1315155600,1),(775,-1301853600,2),(775,-1283706000,1),(775,-1270404000,2),(775,-1252256400,1),(775,-1238954400,2),(775,-1220806800,1),(775,-1207504800,2),(775,-1188752400,1),(775,-1176055200,2),(775,-1157302800,1),(775,-1144000800,2),(775,-1125853200,1),(775,-1112551200,2),(775,-1094403600,1),(775,-1081101600,2),(775,-1062954000,1),(775,-1049652000,2),(775,-1031504400,1),(775,-1018202400,2),(775,-1000054800,1),(775,-986752800,2),(775,-968000400,1),(775,-955303200,2),(775,-936550800,1),(775,-880218000,3),(775,-769395600,4),(775,-765396000,2),(775,-747248400,1),(775,-733946400,2),(775,-715806000,1),(775,-702504000,2),(775,-684356400,1),(775,-671054400,2),(775,-652906800,1),(775,-634161600,2),(775,-620845200,1),(775,-602704800,2),(775,-589395600,1),(775,-576093600,2),(775,-557946000,1),(775,-544644000,2),(775,-526496400,1),(775,-513194400,2),(775,-495046800,1),(775,-481744800,2),(775,-463597200,1),(775,-450295200,2),(775,-431542800,1),(775,-418240800,2),(775,-400093200,1),(775,-384372000,2),(775,-368643600,1),(775,-352922400,2),(775,-337194000,1),(775,-321472800,2),(775,-305744400,1),(775,-289418400,2),(775,-273690000,1),(775,-257968800,2),(775,-242240400,1),(775,-226519200,2),(775,-210790800,1),(775,-195069600,2),(775,-179341200,1),(775,-163620000,2),(775,-147891600,1),(775,-131565600,2),(775,-116442000,1),(775,-100116000,2),(775,-84387600,1),(775,-68666400,2),(775,-52938000,1),(775,-37216800,2),(775,-21488400,1),(775,-5767200,2),(775,9961200,1),(775,25682400,2),(775,41410800,1),(775,57736800,2),(775,73465200,1),(775,89186400,2),(775,104914800,1),(775,120636000,2),(775,136364400,1),(775,152085600,2),(775,167814000,1),(775,183535200,2),(775,199263600,1),(775,215589600,2),(775,230713200,1),(775,247039200,2),(775,262767600,1),(775,278488800,2),(775,294217200,1),(775,309938400,2),(775,325666800,1),(775,341388000,2),(775,357116400,1),(775,372837600,2),(775,388566000,1),(775,404892000,2),(775,420015600,1),(775,436341600,2),(775,452070000,1),(775,467791200,2),(775,483519600,1),(775,499240800,2),(775,514969200,1),(775,530690400,2),(775,544604400,1),(775,562140000,2),(775,576054000,1),(775,594194400,2),(775,607503600,1),(775,625644000,2),(775,638953200,1),(775,657093600,2),(775,671007600,1),(775,688543200,2),(775,702457200,1),(775,719992800,2),(775,733906800,1),(775,752047200,2),(775,765356400,1),(775,783496800,2),(775,796806000,1),(775,814946400,2),(775,828860400,1),(775,846396000,2),(775,860310000,1),(775,877845600,2),(775,891759600,1),(775,909295200,2),(775,923209200,1),(775,941349600,2),(775,954658800,1),(775,972799200,2),(775,986108400,1),(775,1004248800,2),(775,1018162800,1),(775,1035698400,2),(775,1049612400,1),(775,1067148000,2),(775,1081062000,1),(775,1099202400,2),(775,1112511600,1),(775,1130652000,2),(775,1143961200,1),(775,1162101600,2),(775,1173596400,1),(775,1194156000,2),(775,1205046000,1),(775,1225605600,2),(775,1236495600,1),(775,1257055200,2),(775,1268550000,1),(775,1289109600,2),(775,1299999600,1),(775,1320559200,2),(775,1331449200,1),(775,1352008800,2),(775,1362898800,1),(775,1383458400,2),(775,1394348400,1),(775,1414908000,2),(775,1425798000,1),(775,1446357600,2),(775,1457852400,1),(775,1478412000,2),(775,1489302000,1),(775,1509861600,2),(775,1520751600,1),(775,1541311200,2),(775,1552201200,1),(775,1572760800,2),(775,1583650800,1),(775,1604210400,2),(775,1615705200,1),(775,1636264800,2),(775,1647154800,1),(775,1667714400,2),(775,1678604400,1),(775,1699164000,2),(775,1710054000,1),(775,1730613600,2),(775,1741503600,1),(775,1762063200,2),(775,1772953200,1),(775,1793512800,2),(775,1805007600,1),(775,1825567200,2),(775,1836457200,1),(775,1857016800,2),(775,1867906800,1),(775,1888466400,2),(775,1899356400,1),(775,1919916000,2),(775,1930806000,1),(775,1951365600,2),(775,1962860400,1),(775,1983420000,2),(775,1994310000,1),(775,2014869600,2),(775,2025759600,1),(775,2046319200,2),(775,2057209200,1),(775,2077768800,2),(775,2088658800,1),(775,2109218400,2),(775,2120108400,1),(775,2140668000,2),(776,-2147483648,0),(776,-1825098836,1),(777,-2147483648,0),(777,-1825095030,2),(777,-873140400,1),(777,-788904000,2),(777,-786222000,1),(777,-769395600,3),(777,-763848000,2),(777,-179341200,4),(777,-163620000,2),(777,-147891600,4),(777,-131565600,2),(777,-116442000,4),(777,-100116000,2),(777,-84387600,4),(777,-68666400,2),(777,-52938000,4),(777,-37216800,2),(777,-21488400,4),(777,-5767200,2),(777,9961200,4),(777,25682400,2),(777,41410800,4),(777,57736800,2),(777,73465200,4),(777,89186400,2),(777,104914800,4),(777,120636000,2),(777,136364400,4),(777,152085600,2),(777,167814000,4),(777,183535200,2),(777,199263600,4),(777,215589600,2),(777,230713200,4),(777,247039200,2),(777,262767600,4),(777,278488800,2),(777,294217200,4),(777,309938400,2),(777,325666800,4),(777,341388000,2),(777,357116400,4),(777,372837600,2),(777,388566000,4),(777,404892000,2),(777,420015600,4),(777,436341600,2),(777,452070000,4),(777,467791200,2),(777,483519600,4),(777,499240800,2),(777,514969200,4),(777,530690400,2),(777,544604400,4),(777,562140000,2),(777,576054000,4),(777,594194400,2),(777,607503600,4),(777,625644000,2),(777,638953200,4),(777,657093600,2),(777,671007600,4),(777,688543200,2),(777,702457200,4),(777,719992800,2),(777,733906800,4),(777,752047200,2),(777,765356400,4),(777,783496800,2),(777,796806000,4),(777,814946400,2),(777,828860400,4),(777,846396000,2),(777,860310000,4),(777,877845600,2),(777,891759600,4),(777,909295200,2),(777,923209200,4),(777,941349600,2),(777,954658800,4),(777,972799200,2),(777,986108400,4),(777,1004248800,2),(777,1018162800,4),(777,1035698400,2),(777,1049612400,4),(777,1067148000,2),(777,1081062000,4),(777,1099202400,2),(777,1112511600,4),(777,1130652000,2),(777,1143961200,4),(777,1162101600,2),(777,1173596400,4),(777,1194156000,2),(777,1205046000,4),(777,1225605600,2),(777,1236495600,4),(777,1257055200,2),(777,1268550000,4),(777,1289109600,2),(777,1299999600,4),(777,1320559200,2),(777,1331449200,4),(777,1352008800,2),(777,1362898800,4),(777,1383458400,2),(777,1394348400,4),(777,1414908000,2),(777,1425798000,4),(777,1446357600,2),(777,1457852400,4),(777,1478412000,2),(777,1489302000,4),(777,1509861600,2),(777,1520751600,4),(777,1541311200,2),(777,1552201200,4),(777,1572760800,2),(777,1583650800,4),(777,1604210400,2),(777,1615705200,4),(777,1636264800,2),(777,1647154800,4),(777,1667714400,2),(777,1678604400,4),(777,1699164000,2),(777,1710054000,4),(777,1730613600,2),(777,1741503600,4),(777,1762063200,2),(777,1772953200,4),(777,1793512800,2),(777,1805007600,4),(777,1825567200,2),(777,1836457200,4),(777,1857016800,2),(777,1867906800,4),(777,1888466400,2),(777,1899356400,4),(777,1919916000,2),(777,1930806000,4),(777,1951365600,2),(777,1962860400,4),(777,1983420000,2),(777,1994310000,4),(777,2014869600,2),(777,2025759600,4),(777,2046319200,2),(777,2057209200,4),(777,2077768800,2),(777,2088658800,4),(777,2109218400,2),(777,2120108400,4),(777,2140668000,2),(778,-2147483648,2),(778,-1633280400,1),(778,-1615140000,2),(778,-1601830800,1),(778,-1583690400,2),(778,-1570381200,1),(778,-1551636000,2),(778,-1536512400,1),(778,-1523210400,2),(778,-1504458000,1),(778,-1491760800,2),(778,-1473008400,1),(778,-1459706400,2),(778,-1441558800,1),(778,-1428256800,2),(778,-1410109200,1),(778,-1396807200,2),(778,-1378659600,1),(778,-1365357600,2),(778,-1347210000,1),(778,-1333908000,2),(778,-1315155600,1),(778,-1301853600,2),(778,-1283706000,1),(778,-1270404000,2),(778,-1252256400,1),(778,-1238954400,2),(778,-1220806800,1),(778,-1207504800,2),(778,-1189357200,1),(778,-1176055200,2),(778,-1157302800,1),(778,-1144605600,2),(778,-1125853200,1),(778,-1112551200,2),(778,-1094403600,1),(778,-1081101600,2),(778,-1062954000,1),(778,-1049652000,2),(778,-1031504400,1),(778,-1018202400,2),(778,-1000054800,1),(778,-986752800,2),(778,-968000400,1),(778,-955303200,2),(778,-936550800,1),(778,-923248800,2),(778,-905101200,1),(778,-891799200,2),(778,-880218000,3),(778,-769395600,4),(778,-765396000,2),(778,-747248400,1),(778,-733946400,2),(778,-715798800,1),(778,-702496800,2),(778,-684349200,1),(778,-671047200,2),(778,-652899600,1),(778,-639597600,2),(778,-620845200,1),(778,-608148000,2),(778,-589395600,1),(778,-576093600,2),(778,-557946000,1),(778,-544644000,2),(778,-526496400,1),(778,-513194400,2),(778,-495046800,1),(778,-481744800,2),(778,-463597200,1),(778,-447271200,2),(778,-431542800,1),(778,-415821600,2),(778,-400093200,1),(778,-384372000,2),(778,-368643600,1),(778,-352922400,2),(778,-337194000,1),(778,-321472800,2),(778,-305744400,1),(778,-289418400,2),(778,-273690000,1),(778,-257968800,2),(778,-242240400,1),(778,-226519200,2),(778,-210790800,1),(778,-195069600,2),(778,-179341200,1),(778,-163620000,2),(778,-147891600,1),(778,-131565600,2),(778,-116442000,1),(778,-100116000,2),(778,-84387600,1),(778,-68666400,2),(778,-52938000,1),(778,-37216800,2),(778,-21488400,1),(778,-5767200,2),(778,9961200,1),(778,25682400,2),(778,41410800,1),(778,57736800,2),(778,73465200,1),(778,89186400,2),(778,104914800,1),(778,120636000,2),(778,126687600,1),(778,152085600,2),(778,162370800,1),(778,183535200,2),(778,199263600,1),(778,215589600,2),(778,230713200,1),(778,247039200,2),(778,262767600,1),(778,278488800,2),(778,294217200,1),(778,309938400,2),(778,325666800,1),(778,341388000,2),(778,357116400,1),(778,372837600,2),(778,388566000,1),(778,404892000,2),(778,420015600,1),(778,436341600,2),(778,452070000,1),(778,467791200,2),(778,483519600,1),(778,499240800,2),(778,514969200,1),(778,530690400,2),(778,544604400,1),(778,562140000,2),(778,576054000,1),(778,594194400,2),(778,607503600,1),(778,625644000,2),(778,638953200,1),(778,657093600,2),(778,671007600,1),(778,688543200,2),(778,702457200,1),(778,719992800,2),(778,733906800,1),(778,752047200,2),(778,765356400,1),(778,783496800,2),(778,796806000,1),(778,814946400,2),(778,828860400,1),(778,846396000,2),(778,860310000,1),(778,877845600,2),(778,891759600,1),(778,909295200,2),(778,923209200,1),(778,941349600,2),(778,954658800,1),(778,972799200,2),(778,986108400,1),(778,1004248800,2),(778,1018162800,1),(778,1035698400,2),(778,1049612400,1),(778,1067148000,2),(778,1081062000,1),(778,1099202400,2),(778,1112511600,1),(778,1130652000,2),(778,1143961200,1),(778,1162101600,2),(778,1173596400,1),(778,1194156000,2),(778,1205046000,1),(778,1225605600,2),(778,1236495600,1),(778,1257055200,2),(778,1268550000,1),(778,1289109600,2),(778,1299999600,1),(778,1320559200,2),(778,1331449200,1),(778,1352008800,2),(778,1362898800,1),(778,1383458400,2),(778,1394348400,1),(778,1414908000,2),(778,1425798000,1),(778,1446357600,2),(778,1457852400,1),(778,1478412000,2),(778,1489302000,1),(778,1509861600,2),(778,1520751600,1),(778,1541311200,2),(778,1552201200,1),(778,1572760800,2),(778,1583650800,1),(778,1604210400,2),(778,1615705200,1),(778,1636264800,2),(778,1647154800,1),(778,1667714400,2),(778,1678604400,1),(778,1699164000,2),(778,1710054000,1),(778,1730613600,2),(778,1741503600,1),(778,1762063200,2),(778,1772953200,1),(778,1793512800,2),(778,1805007600,1),(778,1825567200,2),(778,1836457200,1),(778,1857016800,2),(778,1867906800,1),(778,1888466400,2),(778,1899356400,1),(778,1919916000,2),(778,1930806000,1),(778,1951365600,2),(778,1962860400,1),(778,1983420000,2),(778,1994310000,1),(778,2014869600,2),(778,2025759600,1),(778,2046319200,2),(778,2057209200,1),(778,2077768800,2),(778,2088658800,1),(778,2109218400,2),(778,2120108400,1),(778,2140668000,2),(779,-2147483648,2),(779,-1632070800,1),(779,-1615140000,2),(779,-923252400,1),(779,-880218000,3),(779,-769395600,4),(779,-765396000,2),(779,136364400,1),(779,152085600,2),(779,167814000,1),(779,183535200,2),(779,199263600,1),(779,215589600,2),(779,230713200,1),(779,247039200,2),(779,262767600,1),(779,278488800,2),(779,294217200,1),(779,309938400,2),(779,325666800,1),(779,341388000,2),(779,357116400,1),(779,372837600,2),(779,388566000,1),(779,404892000,2),(779,420015600,1),(779,436341600,2),(779,452070000,1),(779,467791200,2),(779,483519600,1),(779,499240800,2),(779,514969200,1),(779,530690400,2),(779,544604400,1),(779,562140000,2),(779,576054000,1),(779,594194400,2),(779,607503600,1),(779,625644000,2),(779,638953200,1),(779,657093600,2),(779,671007600,1),(779,688543200,2),(779,702457200,1),(779,719992800,2),(779,733906800,1),(779,752047200,2),(779,765356400,1),(779,783496800,2),(779,796806000,1),(779,814946400,2),(779,828860400,1),(779,846396000,2),(779,860310000,1),(779,877845600,2),(779,891759600,1),(779,909295200,2),(779,923209200,1),(779,941349600,2),(779,954658800,1),(779,972799200,2),(779,986108400,1),(779,1004248800,2),(779,1018162800,1),(779,1035698400,2),(779,1049612400,1),(779,1067148000,2),(779,1081062000,1),(779,1099202400,2),(779,1112511600,1),(779,1130652000,2),(779,1143961200,1),(779,1162101600,2),(779,1173596400,1),(779,1194156000,2),(779,1205046000,1),(779,1225605600,2),(779,1236495600,1),(779,1257055200,2),(779,1268550000,1),(779,1289109600,2),(779,1299999600,1),(779,1320559200,2),(779,1331449200,1),(779,1352008800,2),(779,1362898800,1),(779,1383458400,2),(779,1394348400,1),(779,1414908000,2),(779,1425798000,1),(779,1446357600,2),(779,1457852400,1),(779,1478412000,2),(779,1489302000,1),(779,1509861600,2),(779,1520751600,1),(779,1541311200,2),(779,1552201200,1),(779,1572760800,2),(779,1583650800,1),(779,1604210400,2),(779,1615705200,1),(779,1636264800,2),(779,1647154800,1),(779,1667714400,2),(779,1678604400,1),(779,1699164000,2),(779,1710054000,1),(779,1730613600,2),(779,1741503600,1),(779,1762063200,2),(779,1772953200,1),(779,1793512800,2),(779,1805007600,1),(779,1825567200,2),(779,1836457200,1),(779,1857016800,2),(779,1867906800,1),(779,1888466400,2),(779,1899356400,1),(779,1919916000,2),(779,1930806000,1),(779,1951365600,2),(779,1962860400,1),(779,1983420000,2),(779,1994310000,1),(779,2014869600,2),(779,2025759600,1),(779,2046319200,2),(779,2057209200,1),(779,2077768800,2),(779,2088658800,1),(779,2109218400,2),(779,2120108400,1),(779,2140668000,2),(780,-2147483648,1),(780,-880196400,2),(780,-769395600,3),(780,-765374400,1),(780,-86878800,4),(780,-21466800,5),(780,-5745600,4),(780,9982800,5),(780,25704000,4),(780,41432400,5),(780,57758400,4),(780,73486800,5),(780,89208000,4),(780,104936400,5),(780,120657600,4),(780,126709200,5),(780,152107200,4),(780,162392400,5),(780,183556800,4),(780,199285200,5),(780,215611200,4),(780,230734800,5),(780,247060800,4),(780,262789200,5),(780,278510400,4),(780,294238800,5),(780,309960000,4),(780,325688400,5),(780,341409600,4),(780,357138000,5),(780,372859200,4),(780,388587600,5),(780,404913600,4),(780,420037200,5),(780,436363200,6),(780,439030800,8),(780,452084400,7),(780,467805600,8),(780,483534000,7),(780,499255200,8),(780,514983600,7),(780,530704800,8),(780,544618800,7),(780,562154400,8),(780,576068400,7),(780,594208800,8),(780,607518000,7),(780,625658400,8),(780,638967600,7),(780,657108000,8),(780,671022000,7),(780,688557600,8),(780,702471600,7),(780,720007200,8),(780,733921200,7),(780,752061600,8),(780,765370800,7),(780,783511200,8),(780,796820400,7),(780,814960800,8),(780,828874800,7),(780,846410400,8),(780,860324400,7),(780,877860000,8),(780,891774000,7),(780,909309600,8),(780,923223600,7),(780,941364000,8),(780,954673200,7),(780,972813600,8),(780,986122800,7),(780,1004263200,8),(780,1018177200,7),(780,1035712800,8),(780,1049626800,7),(780,1067162400,8),(780,1081076400,7),(780,1099216800,8),(780,1112526000,7),(780,1130666400,8),(780,1143975600,7),(780,1162116000,8),(780,1173610800,7),(780,1194170400,8),(780,1205060400,7),(780,1225620000,8),(780,1236510000,7),(780,1257069600,8),(780,1268564400,7),(780,1289124000,8),(780,1300014000,7),(780,1320573600,8),(780,1331463600,7),(780,1352023200,8),(780,1362913200,7),(780,1383472800,8),(780,1394362800,7),(780,1414922400,8),(780,1425812400,7),(780,1446372000,8),(780,1457866800,7),(780,1478426400,8),(780,1489316400,7),(780,1509876000,8),(780,1520766000,7),(780,1541325600,8),(780,1552215600,7),(780,1572775200,8),(780,1583665200,7),(780,1604224800,8),(780,1615719600,7),(780,1636279200,8),(780,1647169200,7),(780,1667728800,8),(780,1678618800,7),(780,1699178400,8),(780,1710068400,7),(780,1730628000,8),(780,1741518000,7),(780,1762077600,8),(780,1772967600,7),(780,1793527200,8),(780,1805022000,7),(780,1825581600,8),(780,1836471600,7),(780,1857031200,8),(780,1867921200,7),(780,1888480800,8),(780,1899370800,7),(780,1919930400,8),(780,1930820400,7),(780,1951380000,8),(780,1962874800,7),(780,1983434400,8),(780,1994324400,7),(780,2014884000,8),(780,2025774000,7),(780,2046333600,8),(780,2057223600,7),(780,2077783200,8),(780,2088673200,7),(780,2109232800,8),(780,2120122800,7),(780,2140682400,8),(781,-2147483648,0),(781,-1767217820,2),(781,-1206961200,1),(781,-1191366000,2),(781,-1175378400,1),(781,-1159830000,2),(781,-633823200,1),(781,-622072800,2),(781,-602287200,1),(781,-591836400,2),(781,-570751200,1),(781,-560214000,2),(781,-539128800,1),(781,-531356400,2),(781,-191368800,1),(781,-184201200,2),(781,-155167200,1),(781,-150073200,2),(781,-128901600,1),(781,-121129200,2),(781,-99957600,1),(781,-89593200,2),(781,-68421600,1),(781,-57970800,2),(781,499744800,1),(781,511232400,2),(781,530589600,1),(781,540262800,2),(781,562125600,1),(781,571194000,2),(781,592970400,1),(781,602038800,2),(781,624420000,1),(781,634698000,2),(781,938916000,1),(781,951613200,2),(781,970970400,1),(781,971571600,2),(781,1003024800,1),(781,1013907600,2),(781,2147483647,2),(782,-2147483648,2),(782,-1633273200,1),(782,-1615132800,2),(782,-1601823600,1),(782,-1583683200,2),(782,-880210800,3),(782,-769395600,4),(782,-765388800,2),(782,-84380400,1),(782,-68659200,2),(782,-52930800,1),(782,-37209600,2),(782,-21481200,1),(782,-5760000,2),(782,9968400,1),(782,25689600,2),(782,41418000,1),(782,57744000,2),(782,73472400,1),(782,89193600,2),(782,104922000,1),(782,120643200,2),(782,126694800,1),(782,152092800,2),(782,162378000,1),(782,183542400,2),(782,199270800,1),(782,215596800,2),(782,230720400,1),(782,247046400,2),(782,262774800,1),(782,278496000,2),(782,294224400,1),(782,309945600,2),(782,325674000,1),(782,341395200,2),(782,357123600,1),(782,372844800,2),(782,388573200,1),(782,404899200,2),(782,420022800,1),(782,436348800,2),(782,452077200,1),(782,467798400,2),(782,483526800,1),(782,499248000,2),(782,514976400,1),(782,530697600,2),(782,544611600,1),(782,562147200,2),(782,576061200,1),(782,594201600,2),(782,607510800,1),(782,625651200,2),(782,638960400,1),(782,657100800,2),(782,671014800,1),(782,688550400,2),(782,702464400,1),(782,720000000,2),(782,733914000,1),(782,752054400,2),(782,765363600,1),(782,783504000,2),(782,796813200,1),(782,814953600,2),(782,828867600,1),(782,846403200,2),(782,860317200,1),(782,877852800,2),(782,891766800,1),(782,909302400,2),(782,923216400,1),(782,941356800,2),(782,954666000,1),(782,972806400,2),(782,986115600,1),(782,1004256000,2),(782,1018170000,1),(782,1035705600,2),(782,1049619600,1),(782,1067155200,2),(782,1081069200,1),(782,1099209600,2),(782,1112518800,1),(782,1130659200,2),(782,1143968400,1),(782,1162108800,2),(782,1173603600,1),(782,1194163200,2),(782,1205053200,1),(782,1225612800,2),(782,1236502800,1),(782,1257062400,2),(782,1268557200,1),(782,1289116800,6),(782,1300003200,5),(782,1320562800,6),(782,1331452800,5),(782,1352012400,6),(782,1362902400,5),(782,1383462000,6),(782,1394352000,5),(782,1414911600,6),(782,1425801600,5),(782,1446361200,6),(782,1457856000,5),(782,1478415600,6),(782,1489305600,5),(782,1509865200,6),(782,1520755200,5),(782,1541314800,6),(782,1552204800,5),(782,1572764400,6),(782,1583654400,5),(782,1604214000,6),(782,1615708800,5),(782,1636268400,6),(782,1647158400,5),(782,1667718000,6),(782,1678608000,5),(782,1699167600,6),(782,1710057600,5),(782,1730617200,6),(782,1741507200,5),(782,1762066800,6),(782,1772956800,5),(782,1793516400,6),(782,1805011200,5),(782,1825570800,6),(782,1836460800,5),(782,1857020400,6),(782,1867910400,5),(782,1888470000,6),(782,1899360000,5),(782,1919919600,6),(782,1930809600,5),(782,1951369200,6),(782,1962864000,5),(782,1983423600,6),(782,1994313600,5),(782,2014873200,6),(782,2025763200,5),(782,2046322800,6),(782,2057212800,5),(782,2077772400,6),(782,2088662400,5),(782,2109222000,6),(782,2120112000,5),(782,2140671600,6),(783,-2147483648,2),(783,-1633273200,1),(783,-1615132800,2),(783,-1601823600,1),(783,-1583683200,2),(783,-880210800,3),(783,-769395600,4),(783,-765388800,2),(783,-84380400,1),(783,-68659200,2),(783,-52930800,1),(783,-37209600,2),(783,-21481200,1),(783,-5760000,2),(783,9968400,1),(783,25689600,2),(783,41418000,1),(783,57744000,2),(783,73472400,1),(783,89193600,2),(783,104922000,1),(783,120643200,2),(783,126694800,1),(783,152092800,2),(783,162378000,1),(783,183542400,2),(783,199270800,1),(783,215596800,2),(783,230720400,1),(783,247046400,2),(783,262774800,1),(783,278496000,2),(783,294224400,1),(783,309945600,2),(783,325674000,1),(783,341395200,2),(783,357123600,1),(783,372844800,2),(783,388573200,1),(783,404899200,2),(783,420022800,1),(783,436348800,2),(783,452077200,1),(783,467798400,2),(783,483526800,1),(783,499248000,2),(783,514976400,1),(783,530697600,2),(783,544611600,1),(783,562147200,2),(783,576061200,1),(783,594201600,2),(783,607510800,1),(783,625651200,2),(783,638960400,1),(783,657100800,2),(783,671014800,1),(783,688550400,2),(783,702464400,1),(783,720000000,6),(783,733910400,5),(783,752050800,6),(783,765360000,5),(783,783500400,6),(783,796809600,5),(783,814950000,6),(783,828864000,5),(783,846399600,6),(783,860313600,5),(783,877849200,6),(783,891763200,5),(783,909298800,6),(783,923212800,5),(783,941353200,6),(783,954662400,5),(783,972802800,6),(783,986112000,5),(783,1004252400,6),(783,1018166400,5),(783,1035702000,6),(783,1049616000,5),(783,1067151600,6),(783,1081065600,5),(783,1099206000,6),(783,1112515200,5),(783,1130655600,6),(783,1143964800,5),(783,1162105200,6),(783,1173600000,5),(783,1194159600,6),(783,1205049600,5),(783,1225609200,6),(783,1236499200,5),(783,1257058800,6),(783,1268553600,5),(783,1289113200,6),(783,1300003200,5),(783,1320562800,6),(783,1331452800,5),(783,1352012400,6),(783,1362902400,5),(783,1383462000,6),(783,1394352000,5),(783,1414911600,6),(783,1425801600,5),(783,1446361200,6),(783,1457856000,5),(783,1478415600,6),(783,1489305600,5),(783,1509865200,6),(783,1520755200,5),(783,1541314800,6),(783,1552204800,5),(783,1572764400,6),(783,1583654400,5),(783,1604214000,6),(783,1615708800,5),(783,1636268400,6),(783,1647158400,5),(783,1667718000,6),(783,1678608000,5),(783,1699167600,6),(783,1710057600,5),(783,1730617200,6),(783,1741507200,5),(783,1762066800,6),(783,1772956800,5),(783,1793516400,6),(783,1805011200,5),(783,1825570800,6),(783,1836460800,5),(783,1857020400,6),(783,1867910400,5),(783,1888470000,6),(783,1899360000,5),(783,1919919600,6),(783,1930809600,5),(783,1951369200,6),(783,1962864000,5),(783,1983423600,6),(783,1994313600,5),(783,2014873200,6),(783,2025763200,5),(783,2046322800,6),(783,2057212800,5),(783,2077772400,6),(783,2088662400,5),(783,2109222000,6),(783,2120112000,5),(783,2140671600,6),(784,-2147483648,2),(784,-1633273200,1),(784,-1615132800,2),(784,-1601823600,1),(784,-1583683200,2),(784,-880210800,3),(784,-769395600,4),(784,-765388800,2),(784,-84380400,1),(784,-68659200,2),(784,-52930800,1),(784,-37209600,2),(784,-21481200,1),(784,-5760000,2),(784,9968400,1),(784,25689600,2),(784,41418000,1),(784,57744000,2),(784,73472400,1),(784,89193600,2),(784,104922000,1),(784,120643200,2),(784,126694800,1),(784,152092800,2),(784,162378000,1),(784,183542400,2),(784,199270800,1),(784,215596800,2),(784,230720400,1),(784,247046400,2),(784,262774800,1),(784,278496000,2),(784,294224400,1),(784,309945600,2),(784,325674000,1),(784,341395200,2),(784,357123600,1),(784,372844800,2),(784,388573200,1),(784,404899200,2),(784,420022800,1),(784,436348800,2),(784,452077200,1),(784,467798400,2),(784,483526800,1),(784,499248000,2),(784,514976400,1),(784,530697600,2),(784,544611600,1),(784,562147200,2),(784,576061200,1),(784,594201600,2),(784,607510800,1),(784,625651200,2),(784,638960400,1),(784,657100800,2),(784,671014800,1),(784,688550400,2),(784,702464400,1),(784,720000000,2),(784,733914000,1),(784,752054400,2),(784,765363600,1),(784,783504000,2),(784,796813200,1),(784,814953600,2),(784,828867600,1),(784,846403200,2),(784,860317200,1),(784,877852800,2),(784,891766800,1),(784,909302400,2),(784,923216400,1),(784,941356800,2),(784,954666000,1),(784,972806400,2),(784,986115600,1),(784,1004256000,2),(784,1018170000,1),(784,1035705600,2),(784,1049619600,1),(784,1067155200,6),(784,1081065600,5),(784,1099206000,6),(784,1112515200,5),(784,1130655600,6),(784,1143964800,5),(784,1162105200,6),(784,1173600000,5),(784,1194159600,6),(784,1205049600,5),(784,1225609200,6),(784,1236499200,5),(784,1257058800,6),(784,1268553600,5),(784,1289113200,6),(784,1300003200,5),(784,1320562800,6),(784,1331452800,5),(784,1352012400,6),(784,1362902400,5),(784,1383462000,6),(784,1394352000,5),(784,1414911600,6),(784,1425801600,5),(784,1446361200,6),(784,1457856000,5),(784,1478415600,6),(784,1489305600,5),(784,1509865200,6),(784,1520755200,5),(784,1541314800,6),(784,1552204800,5),(784,1572764400,6),(784,1583654400,5),(784,1604214000,6),(784,1615708800,5),(784,1636268400,6),(784,1647158400,5),(784,1667718000,6),(784,1678608000,5),(784,1699167600,6),(784,1710057600,5),(784,1730617200,6),(784,1741507200,5),(784,1762066800,6),(784,1772956800,5),(784,1793516400,6),(784,1805011200,5),(784,1825570800,6),(784,1836460800,5),(784,1857020400,6),(784,1867910400,5),(784,1888470000,6),(784,1899360000,5),(784,1919919600,6),(784,1930809600,5),(784,1951369200,6),(784,1962864000,5),(784,1983423600,6),(784,1994313600,5),(784,2014873200,6),(784,2025763200,5),(784,2046322800,6),(784,2057212800,5),(784,2077772400,6),(784,2088662400,5),(784,2109222000,6),(784,2120112000,5),(784,2140671600,6),(785,-2147483648,0),(785,-1686083584,1),(785,323845200,4),(785,338950800,2),(785,354675600,3),(785,370400400,2),(785,386125200,3),(785,401850000,2),(785,417574800,3),(785,433299600,2),(785,449024400,3),(785,465354000,2),(785,481078800,3),(785,496803600,2),(785,512528400,3),(785,528253200,2),(785,543978000,3),(785,559702800,2),(785,575427600,3),(785,591152400,2),(785,606877200,3),(785,622602000,2),(785,638326800,3),(785,654656400,2),(785,670381200,3),(785,686106000,2),(785,701830800,3),(785,717555600,2),(785,733280400,3),(785,749005200,2),(785,764730000,3),(785,780454800,2),(785,796179600,3),(785,811904400,2),(785,828234000,3),(785,846378000,2),(785,859683600,3),(785,877827600,2),(785,891133200,3),(785,909277200,2),(785,922582800,3),(785,941331600,2),(785,954032400,3),(785,972781200,2),(785,985482000,3),(785,1004230800,2),(785,1017536400,3),(785,1035680400,2),(785,1048986000,3),(785,1067130000,2),(785,1080435600,3),(785,1099184400,2),(785,1111885200,3),(785,1130634000,2),(785,1143334800,3),(785,1162083600,2),(785,1174784400,3),(785,1193533200,2),(785,1206838800,3),(785,1224982800,2),(785,1238288400,3),(785,1256432400,2),(785,1269738000,3),(785,1288486800,2),(785,1301187600,3),(785,1319936400,2),(785,1332637200,3),(785,1351386000,2),(785,1364691600,3),(785,1382835600,2),(785,1396141200,3),(785,1414285200,2),(785,1427590800,3),(785,1445734800,2),(785,1459040400,3),(785,1477789200,2),(785,1490490000,3),(785,1509238800,2),(785,1521939600,3),(785,1540688400,2),(785,1553994000,3),(785,1572138000,2),(785,1585443600,3),(785,1603587600,2),(785,1616893200,3),(785,1635642000,2),(785,1648342800,3),(785,1667091600,2),(785,1679792400,3),(785,1698541200,2),(785,1711846800,3),(785,1729990800,2),(785,1743296400,3),(785,1761440400,2),(785,1774746000,3),(785,1792890000,2),(785,1806195600,3),(785,1824944400,2),(785,1837645200,3),(785,1856394000,2),(785,1869094800,3),(785,1887843600,2),(785,1901149200,3),(785,1919293200,2),(785,1932598800,3),(785,1950742800,2),(785,1964048400,3),(785,1982797200,2),(785,1995498000,3),(785,2014246800,2),(785,2026947600,3),(785,2045696400,2),(785,2058397200,3),(785,2077146000,2),(785,2090451600,3),(785,2108595600,2),(785,2121901200,3),(785,2140045200,2),(785,2147483647,2),(786,-2147483648,0),(786,-1514739600,1),(786,-1343066400,2),(786,-1234807200,1),(786,-1220292000,2),(786,-1207159200,1),(786,-1191344400,2),(786,828864000,3),(786,846399600,2),(786,860313600,3),(786,877849200,2),(786,891766800,4),(786,909302400,1),(786,923216400,4),(786,941356800,1),(786,954666000,4),(786,972806400,1),(786,989139600,4),(786,1001836800,1),(786,1018170000,4),(786,1035705600,1),(786,1049619600,4),(786,1067155200,1),(786,1081069200,4),(786,1099209600,1),(786,1112518800,4),(786,1130659200,1),(786,1143968400,4),(786,1162108800,1),(786,1175418000,4),(786,1193558400,1),(786,1207472400,4),(786,1225008000,1),(786,1238922000,4),(786,1256457600,1),(786,1268557200,4),(786,1289116800,1),(786,1300006800,4),(786,1320566400,1),(786,1331456400,4),(786,1352016000,1),(786,1362906000,4),(786,1383465600,1),(786,1394355600,4),(786,1414915200,1),(786,1425805200,4),(786,1446364800,1),(786,1457859600,4),(786,1478419200,1),(786,1489309200,4),(786,1509868800,1),(786,1520758800,4),(786,1541318400,1),(786,1552208400,4),(786,1572768000,1),(786,1583658000,4),(786,1604217600,1),(786,1615712400,4),(786,1636272000,1),(786,1647162000,4),(786,1667721600,1),(786,1678611600,4),(786,1699171200,1),(786,1710061200,4),(786,1730620800,1),(786,1741510800,4),(786,1762070400,1),(786,1772960400,4),(786,1793520000,1),(786,1805014800,4),(786,1825574400,1),(786,1836464400,4),(786,1857024000,1),(786,1867914000,4),(786,1888473600,1),(786,1899363600,4),(786,1919923200,1),(786,1930813200,4),(786,1951372800,1),(786,1962867600,4),(786,1983427200,1),(786,1994317200,4),(786,2014876800,1),(786,2025766800,4),(786,2046326400,1),(786,2057216400,4),(786,2077776000,1),(786,2088666000,4),(786,2109225600,1),(786,2120115600,4),(786,2140675200,1),(787,-2147483648,1),(787,-1946918424,2),(788,-2147483648,0),(788,-1546300800,3),(788,-880221600,1),(788,-769395600,2),(788,-765399600,3),(788,-147902400,4),(788,-131572800,3),(788,325663200,5),(788,341384400,3),(788,357112800,5),(788,372834000,3),(788,388562400,5),(788,404888400,3),(788,420012000,5),(788,436338000,3),(788,452066400,5),(788,467787600,3),(788,483516000,5),(788,499237200,3),(788,514965600,5),(788,530686800,3),(788,544600800,5),(788,562136400,3),(788,576050400,5),(788,594190800,3),(788,607500000,5),(788,625640400,3),(788,638949600,5),(788,657090000,3),(788,671004000,5),(788,688539600,3),(788,702453600,5),(788,719989200,3),(788,733903200,5),(788,752043600,3),(788,765352800,5),(788,783493200,3),(788,796802400,6),(788,814946400,7),(788,828860400,6),(788,846396000,7),(788,860310000,6),(788,877845600,7),(788,891759600,6),(788,909295200,7),(788,923209200,6),(788,941349600,8),(788,954662400,9),(788,972802800,7),(788,986108400,6),(788,1004248800,7),(788,1018162800,6),(788,1035698400,7),(788,1049612400,6),(788,1067148000,7),(788,1081062000,6),(788,1099202400,7),(788,1112511600,6),(788,1130652000,7),(788,1143961200,6),(788,1162101600,7),(788,1173596400,6),(788,1194156000,7),(788,1205046000,6),(788,1225605600,7),(788,1236495600,6),(788,1257055200,7),(788,1268550000,6),(788,1289109600,7),(788,1299999600,6),(788,1320559200,7),(788,1331449200,6),(788,1352008800,7),(788,1362898800,6),(788,1383458400,7),(788,1394348400,6),(788,1414908000,7),(788,1425798000,6),(788,1446357600,7),(788,1457852400,6),(788,1478412000,7),(788,1489302000,6),(788,1509861600,7),(788,1520751600,6),(788,1541311200,7),(788,1552201200,6),(788,1572760800,7),(788,1583650800,6),(788,1604210400,7),(788,1615705200,6),(788,1636264800,7),(788,1647154800,6),(788,1667714400,7),(788,1678604400,6),(788,1699164000,7),(788,1710054000,6),(788,1730613600,7),(788,1741503600,6),(788,1762063200,7),(788,1772953200,6),(788,1793512800,7),(788,1805007600,6),(788,1825567200,7),(788,1836457200,6),(788,1857016800,7),(788,1867906800,6),(788,1888466400,7),(788,1899356400,6),(788,1919916000,7),(788,1930806000,6),(788,1951365600,7),(788,1962860400,6),(788,1983420000,7),(788,1994310000,6),(788,2014869600,7),(788,2025759600,6),(788,2046319200,7),(788,2057209200,6),(788,2077768800,7),(788,2088658800,6),(788,2109218400,7),(788,2120108400,6),(788,2140668000,7),(789,-2147483648,0),(789,-1861906760,1),(789,-1104524348,2),(789,-765317964,3),(789,465449400,4),(789,2147483647,4),(790,-2147483648,2),(790,-1633273200,1),(790,-1615132800,2),(790,-1601823600,1),(790,-1583683200,2),(790,-880210800,3),(790,-820519140,2),(790,-812653140,3),(790,-796845540,2),(790,-84380400,1),(790,-68659200,2),(791,-2147483648,1),(791,-1670483460,3),(791,421218000,2),(791,436334400,3),(791,452062800,2),(791,467784000,3),(791,483512400,2),(791,499233600,3),(791,514962000,2),(791,530683200,3),(791,546411600,2),(791,562132800,3),(791,576050400,4),(791,594194400,5),(791,607500000,4),(791,625644000,5),(791,638949600,4),(791,657093600,5),(791,671004000,4),(791,688543200,5),(791,702453600,4),(791,719992800,5),(791,733903200,4),(791,752047200,5),(791,765352800,4),(791,783496800,5),(791,796802400,4),(791,814946400,5),(791,828856800,4),(791,846396000,5),(791,860306400,4),(791,877845600,5),(791,1112504400,2),(791,1130644800,3),(791,1143954000,2),(791,1162094400,3),(791,1331449200,2),(791,1352008800,3),(791,1362898800,2),(791,1383458400,3),(791,1394348400,2),(791,1414908000,3),(791,1425798000,2),(791,1446357600,3),(791,1489302000,2),(791,1509861600,3),(791,1520751600,2),(791,1541311200,3),(791,1552201200,2),(791,1572760800,3),(791,1583650800,2),(791,1604210400,3),(791,1615705200,2),(791,1636264800,3),(791,1647154800,2),(791,1667714400,3),(791,1678604400,2),(791,1699164000,3),(791,1710054000,2),(791,1730613600,3),(791,1741503600,2),(791,1762063200,3),(791,1772953200,2),(791,1793512800,3),(791,1805007600,2),(791,1825567200,3),(791,1836457200,2),(791,1857016800,3),(791,1867906800,2),(791,1888466400,3),(791,1899356400,2),(791,1919916000,3),(791,1930806000,2),(791,1951365600,3),(791,1962860400,2),(791,1983420000,3),(791,1994310000,2),(791,2014869600,3),(791,2025759600,2),(791,2046319200,3),(791,2057209200,2),(791,2077768800,3),(791,2088658800,2),(791,2109218400,3),(791,2120108400,2),(791,2140668000,3),(792,-2147483648,0),(792,-1825098836,1),(793,-2147483648,0),(793,-1767209328,2),(793,-1206950400,1),(793,-1191355200,2),(793,-1175367600,1),(793,-1159819200,2),(793,-633812400,1),(793,-622062000,2),(793,-602276400,1),(793,-591825600,2),(793,-570740400,1),(793,-560203200,2),(793,-539118000,1),(793,-531345600,2),(793,-191358000,1),(793,-184190400,2),(793,-155156400,1),(793,-150062400,2),(793,-128890800,1),(793,-121118400,2),(793,-99946800,1),(793,-89582400,2),(793,-68410800,1),(793,-57960000,2),(793,499755600,1),(793,511243200,2),(793,530600400,1),(793,540273600,2),(793,562136400,1),(793,571204800,2),(793,1214283600,3),(793,1384056000,2),(793,2147483647,2),(794,-2147483648,0),(794,-1767210264,2),(794,-1206954000,1),(794,-1191358800,2),(794,-1175371200,1),(794,-1159822800,2),(794,-633816000,1),(794,-622065600,2),(794,-602280000,1),(794,-591829200,2),(794,-570744000,1),(794,-560206800,2),(794,-539121600,1),(794,-531349200,2),(794,-191361600,1),(794,-184194000,2),(794,-155160000,1),(794,-150066000,2),(794,-128894400,1),(794,-121122000,2),(794,-99950400,1),(794,-89586000,2),(794,-68414400,1),(794,-57963600,2),(794,499752000,1),(794,511239600,2),(794,530596800,1),(794,540270000,2),(794,562132800,1),(794,571201200,2),(794,2147483647,2),(795,-2147483648,1),(795,-873057600,3),(795,-769395600,2),(795,-765399600,1),(796,-2147483648,1),(796,-1892661434,2),(796,-1688410800,1),(796,-1619205434,3),(796,-1593806400,1),(796,-1335986234,4),(796,-1317585600,2),(796,-1304362800,4),(796,-1286049600,2),(796,-1272826800,4),(796,-1254513600,2),(796,-1241290800,4),(796,-1222977600,2),(796,-1209754800,4),(796,-1191355200,2),(796,-1178132400,3),(796,-870552000,2),(796,-865278000,3),(796,-718056000,2),(796,-713649600,3),(796,-36619200,5),(796,-23922000,6),(796,-3355200,5),(796,7527600,6),(796,24465600,5),(796,37767600,6),(796,55915200,5),(796,69217200,6),(796,87969600,5),(796,100666800,6),(796,118209600,5),(796,132116400,6),(796,150868800,5),(796,163566000,6),(796,182318400,5),(796,195620400,6),(796,213768000,5),(796,227070000,6),(796,245217600,5),(796,258519600,6),(796,277272000,5),(796,289969200,6),(796,308721600,5),(796,321418800,6),(796,340171200,5); +INSERT INTO `time_zone_transition` VALUES (796,353473200,6),(796,371620800,5),(796,384922800,6),(796,403070400,5),(796,416372400,6),(796,434520000,5),(796,447822000,6),(796,466574400,5),(796,479271600,6),(796,498024000,5),(796,510721200,6),(796,529473600,5),(796,545194800,6),(796,560923200,5),(796,574225200,6),(796,592372800,5),(796,605674800,6),(796,624427200,5),(796,637124400,6),(796,653457600,5),(796,668574000,6),(796,687326400,5),(796,700628400,6),(796,718776000,5),(796,732078000,6),(796,750225600,5),(796,763527600,6),(796,781675200,5),(796,794977200,6),(796,813729600,5),(796,826426800,6),(796,845179200,5),(796,859690800,6),(796,876628800,5),(796,889930800,6),(796,906868800,5),(796,923194800,6),(796,939528000,5),(796,952830000,6),(796,971582400,5),(796,984279600,6),(796,1003032000,5),(796,1015729200,6),(796,1034481600,5),(796,1047178800,6),(796,1065931200,5),(796,1079233200,6),(796,1097380800,5),(796,1110682800,6),(796,1128830400,5),(796,1142132400,6),(796,1160884800,5),(796,1173582000,6),(796,1192334400,5),(796,1206846000,6),(796,1223784000,5),(796,1237086000,6),(796,1255233600,5),(796,1270350000,6),(796,1286683200,5),(796,1304823600,6),(796,1313899200,5),(796,1335668400,6),(796,1346558400,5),(796,1367118000,6),(796,1378612800,5),(796,1398567600,6),(796,1410062400,5),(796,1463281200,6),(796,1471147200,5),(796,1480820400,7),(796,2147483647,7),(797,-2147483648,2),(797,-1632067200,1),(797,-1615136400,2),(797,-923248800,1),(797,-880214400,3),(797,-769395600,4),(797,-765392400,2),(797,136368000,1),(797,152089200,2),(797,167817600,1),(797,183538800,2),(797,199267200,1),(797,215593200,2),(797,230716800,1),(797,247042800,2),(797,262771200,1),(797,278492400,2),(797,294220800,1),(797,309942000,2),(797,325670400,1),(797,341391600,2),(797,357120000,1),(797,372841200,2),(797,388569600,1),(797,404895600,2),(797,420019200,1),(797,436345200,2),(797,452073600,1),(797,467794800,2),(797,483523200,1),(797,499244400,2),(797,514972800,1),(797,530694000,2),(797,544608000,1),(797,562143600,2),(797,576057600,1),(797,594198000,2),(797,607507200,1),(797,625647600,2),(797,638956800,1),(797,657097200,2),(797,671011200,1),(797,688546800,2),(797,702460800,1),(797,719996400,2),(797,733910400,1),(797,752050800,2),(797,765360000,1),(797,783500400,2),(797,796809600,1),(797,814950000,2),(797,828864000,1),(797,846399600,2),(797,860313600,1),(797,877849200,2),(797,891763200,1),(797,909298800,2),(797,923212800,1),(797,941353200,2),(797,954662400,1),(797,972802800,2),(797,986112000,1),(797,1004252400,2),(797,1018166400,1),(797,1035702000,2),(797,1049616000,1),(797,1067151600,2),(797,1081065600,1),(797,1099206000,2),(797,1112515200,1),(797,1130655600,2),(797,1143964800,1),(797,1162105200,2),(797,1173600000,1),(797,1194159600,2),(797,1205049600,1),(797,1225609200,2),(797,1236499200,1),(797,1257058800,2),(797,1268553600,1),(797,1289113200,2),(797,1300003200,1),(797,1320562800,2),(797,1331452800,1),(797,1352012400,2),(797,1362902400,1),(797,1383462000,2),(797,1394352000,1),(797,1414911600,2),(797,1425801600,1),(797,1446361200,2),(797,1457856000,1),(797,1478415600,2),(797,1489305600,1),(797,1509865200,2),(797,1520755200,1),(797,1541314800,2),(797,1552204800,1),(797,1572764400,2),(797,1583654400,1),(797,1604214000,2),(797,1615708800,1),(797,1636268400,2),(797,1647158400,1),(797,1667718000,2),(797,1678608000,1),(797,1699167600,2),(797,1710057600,1),(797,1730617200,2),(797,1741507200,1),(797,1762066800,2),(797,1772956800,1),(797,1793516400,2),(797,1805011200,1),(797,1825570800,2),(797,1836460800,1),(797,1857020400,2),(797,1867910400,1),(797,1888470000,2),(797,1899360000,1),(797,1919919600,2),(797,1930809600,1),(797,1951369200,2),(797,1962864000,1),(797,1983423600,2),(797,1994313600,1),(797,2014873200,2),(797,2025763200,1),(797,2046322800,2),(797,2057212800,1),(797,2077772400,2),(797,2088662400,1),(797,2109222000,2),(797,2120112000,1),(797,2140671600,2),(798,-2147483648,0),(798,-410227200,2),(798,-147895200,1),(798,-131565600,2),(798,325670400,3),(798,341391600,2),(798,357120000,3),(798,372841200,2),(798,388569600,3),(798,404895600,2),(798,420019200,3),(798,436345200,2),(798,452073600,3),(798,467794800,2),(798,483523200,3),(798,499244400,2),(798,514972800,3),(798,530694000,2),(798,544608000,3),(798,562143600,2),(798,576057600,3),(798,594198000,2),(798,607507200,3),(798,625647600,2),(798,638956800,3),(798,657097200,2),(798,671011200,3),(798,688546800,2),(798,702460800,3),(798,719996400,2),(798,733910400,3),(798,752050800,2),(798,765360000,3),(798,783500400,2),(798,796809600,3),(798,814950000,2),(798,828864000,3),(798,846399600,2),(798,860313600,3),(798,877849200,2),(798,891763200,3),(798,909298800,2),(798,923212800,3),(798,941353200,2),(798,954662400,3),(798,972802800,4),(798,986112000,3),(798,1004252400,2),(798,1018166400,3),(798,1035702000,2),(798,1049616000,3),(798,1067151600,2),(798,1081065600,3),(798,1099206000,2),(798,1112515200,3),(798,1130655600,2),(798,1143964800,3),(798,1162105200,2),(798,1173600000,3),(798,1194159600,2),(798,1205049600,3),(798,1225609200,2),(798,1236499200,3),(798,1257058800,2),(798,1268553600,3),(798,1289113200,2),(798,1300003200,3),(798,1320562800,2),(798,1331452800,3),(798,1352012400,2),(798,1362902400,3),(798,1383462000,2),(798,1394352000,3),(798,1414911600,2),(798,1425801600,3),(798,1446361200,2),(798,1457856000,3),(798,1478415600,2),(798,1489305600,3),(798,1509865200,2),(798,1520755200,3),(798,1541314800,2),(798,1552204800,3),(798,1572764400,2),(798,1583654400,3),(798,1604214000,2),(798,1615708800,3),(798,1636268400,2),(798,1647158400,3),(798,1667718000,2),(798,1678608000,3),(798,1699167600,2),(798,1710057600,3),(798,1730617200,2),(798,1741507200,3),(798,1762066800,2),(798,1772956800,3),(798,1793516400,2),(798,1805011200,3),(798,1825570800,2),(798,1836460800,3),(798,1857020400,2),(798,1867910400,3),(798,1888470000,2),(798,1899360000,3),(798,1919919600,2),(798,1930809600,3),(798,1951369200,2),(798,1962864000,3),(798,1983423600,2),(798,1994313600,3),(798,2014873200,2),(798,2025763200,3),(798,2046322800,2),(798,2057212800,3),(798,2077772400,2),(798,2088662400,3),(798,2109222000,2),(798,2120112000,3),(798,2140671600,2),(799,-2147483648,0),(799,-1767217224,2),(799,-1206957600,1),(799,-1191362400,2),(799,-1175374800,1),(799,-1159826400,2),(799,-633819600,1),(799,-622069200,2),(799,-602283600,1),(799,-591832800,2),(799,-570747600,1),(799,-560210400,2),(799,-539125200,1),(799,-531352800,2),(799,-191365200,1),(799,-184197600,2),(799,-155163600,1),(799,-150069600,2),(799,-128898000,1),(799,-121125600,2),(799,-99954000,1),(799,-89589600,2),(799,-68418000,1),(799,-57967200,2),(799,499748400,1),(799,511236000,2),(799,530593200,1),(799,540266400,2),(799,562129200,1),(799,571197600,2),(799,592974000,1),(799,602042400,2),(799,624423600,1),(799,634701600,2),(799,938919600,1),(799,951616800,2),(799,970974000,1),(799,971575200,2),(799,1003028400,1),(799,1013911200,2),(799,2147483647,2),(800,-2147483648,0),(800,-2030202084,2),(800,-1632063600,1),(800,-1615132800,2),(800,-1251651600,1),(800,-1238349600,2),(800,-1220202000,1),(800,-1206900000,2),(800,-1188752400,1),(800,-1175450400,2),(800,-1156698000,1),(800,-1144000800,2),(800,-1125248400,1),(800,-1111946400,2),(800,-1032714000,1),(800,-1016992800,2),(800,-1001264400,1),(800,-986148000,2),(800,-969814800,1),(800,-954093600,2),(800,-937760400,1),(800,-922039200,2),(800,-906310800,1),(800,-890589600,2),(800,-880210800,3),(800,-769395600,4),(800,-765388800,2),(800,-748450800,1),(800,-732729600,2),(800,-715791600,1),(800,-702489600,2),(800,-684342000,1),(800,-671040000,2),(800,-652892400,1),(800,-639590400,2),(800,-620838000,1),(800,-608140800,2),(800,-589388400,1),(800,-576086400,2),(800,-557938800,1),(800,-544636800,2),(800,-526489200,1),(800,-513187200,2),(800,-495039600,1),(800,-481737600,2),(800,-463590000,1),(800,-450288000,2),(800,-431535600,1),(800,-418233600,2),(800,-400086000,1),(800,-386784000,2),(800,-337186800,1),(800,-321465600,2),(800,-305737200,5),(801,-2147483648,0),(801,-704937600,2),(801,-147895200,1),(801,-131565600,2),(801,325670400,3),(801,341391600,2),(801,357120000,3),(801,372841200,2),(801,388569600,3),(801,404895600,2),(801,420019200,3),(801,436345200,2),(801,452073600,3),(801,467794800,2),(801,483523200,3),(801,499244400,2),(801,514972800,3),(801,530694000,2),(801,544608000,3),(801,562143600,2),(801,576057600,3),(801,594198000,2),(801,607507200,3),(801,625647600,2),(801,638956800,3),(801,657097200,2),(801,671011200,3),(801,688546800,2),(801,702460800,3),(801,719996400,2),(801,733910400,3),(801,752050800,2),(801,765360000,3),(801,783500400,2),(801,796809600,3),(801,814950000,2),(801,828864000,3),(801,846399600,2),(801,860313600,3),(801,877849200,2),(801,891763200,3),(801,909298800,2),(801,923212800,3),(801,941353200,2),(801,954662400,3),(801,972802800,4),(801,986112000,3),(801,1004252400,2),(801,1018166400,3),(801,1035702000,2),(801,1049616000,3),(801,1067151600,2),(801,1081065600,3),(801,1099206000,2),(801,1112515200,3),(801,1130655600,2),(801,1143964800,3),(801,1162105200,4),(801,1173600000,3),(801,1194159600,2),(801,1205049600,3),(801,1225609200,2),(801,1236499200,3),(801,1257058800,2),(801,1268553600,3),(801,1289113200,2),(801,1300003200,3),(801,1320562800,2),(801,1331452800,3),(801,1352012400,2),(801,1362902400,3),(801,1383462000,2),(801,1394352000,3),(801,1414911600,2),(801,1425801600,3),(801,1446361200,2),(801,1457856000,3),(801,1478415600,2),(801,1489305600,3),(801,1509865200,2),(801,1520755200,3),(801,1541314800,2),(801,1552204800,3),(801,1572764400,2),(801,1583654400,3),(801,1604214000,2),(801,1615708800,3),(801,1636268400,2),(801,1647158400,3),(801,1667718000,2),(801,1678608000,3),(801,1699167600,2),(801,1710057600,3),(801,1730617200,2),(801,1741507200,3),(801,1762066800,2),(801,1772956800,3),(801,1793516400,2),(801,1805011200,3),(801,1825570800,2),(801,1836460800,3),(801,1857020400,2),(801,1867910400,3),(801,1888470000,2),(801,1899360000,3),(801,1919919600,2),(801,1930809600,3),(801,1951369200,2),(801,1962864000,3),(801,1983423600,2),(801,1994313600,3),(801,2014873200,2),(801,2025763200,3),(801,2046322800,2),(801,2057212800,3),(801,2077772400,2),(801,2088662400,3),(801,2109222000,2),(801,2120112000,3),(801,2140671600,2),(802,-2147483648,0),(802,-1767209328,2),(802,-1206950400,1),(802,-1191355200,2),(802,-1175367600,1),(802,-1159819200,2),(802,-633812400,1),(802,-622062000,2),(802,-602276400,1),(802,-591825600,2),(802,-570740400,1),(802,-560203200,2),(802,-539118000,1),(802,-531345600,2),(802,-191358000,1),(802,-184190400,2),(802,-155156400,1),(802,-150062400,2),(802,-128890800,1),(802,-121118400,2),(802,-99946800,1),(802,-89582400,2),(802,-68410800,1),(802,-57960000,2),(802,499755600,1),(802,511243200,2),(802,530600400,1),(802,540273600,2),(802,562136400,1),(802,571204800,2),(802,1214283600,3),(802,1384056000,2),(802,2147483647,2),(803,-2147483648,1),(803,-1567453392,2),(803,-1233432000,3),(803,-1222981200,2),(803,-1205956800,3),(803,-1194037200,2),(803,-1172865600,3),(803,-1162501200,2),(803,-1141329600,3),(803,-1130965200,2),(803,-1109793600,3),(803,-1099429200,2),(803,-1078257600,3),(803,-1067806800,2),(803,-1046635200,3),(803,-1036270800,2),(803,-1015099200,3),(803,-1004734800,2),(803,-983563200,3),(803,-973198800,2),(803,-952027200,3),(803,-941576400,2),(803,-931032000,3),(803,-900882000,2),(803,-890337600,3),(803,-833749200,2),(803,-827265600,3),(803,-752274000,2),(803,-733780800,3),(803,-197326800,2),(803,-190843200,3),(803,-184194000,2),(803,-164491200,3),(803,-152658000,2),(803,-132955200,3),(803,-121122000,2),(803,-101419200,3),(803,-86821200,2),(803,-71092800,3),(803,-54766800,2),(803,-39038400,3),(803,-23317200,2),(803,-7588800,5),(803,128142000,4),(803,136605600,5),(803,596948400,4),(803,605066400,5),(803,624423600,4),(803,636516000,5),(803,656478000,4),(803,667965600,2),(803,687931200,4),(803,699415200,5),(803,719377200,4),(803,731469600,5),(803,938919600,3),(803,952052400,5),(803,1198983600,4),(803,1205632800,5),(803,1224385200,4),(803,1237082400,5),(803,2147483647,5),(804,-2147483648,0),(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,-2147483648,0),(805,-1767212472,2),(805,-1206954000,1),(805,-1191358800,2),(805,-1175371200,1),(805,-1159822800,2),(805,-633816000,1),(805,-622065600,2),(805,-602280000,1),(805,-591829200,2),(805,-570744000,1),(805,-560206800,2),(805,-539121600,1),(805,-531349200,2),(805,-191361600,1),(805,-184194000,2),(805,-155160000,1),(805,-150066000,2),(805,-128894400,1),(805,-121122000,2),(805,-99950400,1),(805,-89586000,2),(805,-68414400,1),(805,-57963600,2),(805,499752000,1),(805,511239600,2),(805,530596800,1),(805,540270000,2),(805,562132800,1),(805,571201200,2),(805,1214280000,3),(805,2147483647,3),(806,-2147483648,1),(806,-1892661434,2),(806,-1688410800,1),(806,-1619205434,3),(806,-1593806400,1),(806,-1335986234,4),(806,-1317585600,2),(806,-1304362800,4),(806,-1286049600,2),(806,-1272826800,4),(806,-1254513600,2),(806,-1241290800,4),(806,-1222977600,2),(806,-1209754800,4),(806,-1191355200,2),(806,-1178132400,3),(806,-870552000,2),(806,-865278000,3),(806,-740520000,5),(806,-736376400,3),(806,-718056000,2),(806,-713649600,3),(806,-36619200,6),(806,-23922000,7),(806,-3355200,6),(806,7527600,7),(806,24465600,6),(806,37767600,7),(806,55915200,6),(806,69217200,7),(806,87969600,6),(806,100666800,7),(806,118209600,6),(806,132116400,7),(806,150868800,6),(806,163566000,7),(806,182318400,6),(806,195620400,7),(806,213768000,6),(806,227070000,7),(806,245217600,6),(806,258519600,7),(806,277272000,6),(806,289969200,7),(806,308721600,6),(806,321418800,7),(806,340171200,6),(806,353473200,7),(806,371620800,6),(806,384922800,7),(806,403070400,6),(806,416372400,7),(806,434520000,6),(806,447822000,7),(806,466574400,6),(806,479271600,7),(806,498024000,6),(806,510721200,7),(806,529473600,6),(806,545194800,7),(806,560923200,6),(806,574225200,7),(806,592372800,6),(806,605674800,7),(806,624427200,6),(806,637124400,7),(806,653457600,6),(806,668574000,7),(806,687326400,6),(806,700628400,7),(806,718776000,6),(806,732078000,7),(806,750225600,6),(806,763527600,7),(806,781675200,6),(806,794977200,7),(806,813729600,6),(806,826426800,7),(806,845179200,6),(806,859690800,7),(806,876628800,6),(806,889930800,7),(806,906868800,6),(806,923194800,7),(806,939528000,6),(806,952830000,7),(806,971582400,6),(806,984279600,7),(806,1003032000,6),(806,1015729200,7),(806,1034481600,6),(806,1047178800,7),(806,1065931200,6),(806,1079233200,7),(806,1097380800,6),(806,1110682800,7),(806,1128830400,6),(806,1142132400,7),(806,1160884800,6),(806,1173582000,7),(806,1192334400,6),(806,1206846000,7),(806,1223784000,6),(806,1237086000,7),(806,1255233600,6),(806,1270350000,7),(806,1286683200,6),(806,1304823600,7),(806,1313899200,6),(806,1335668400,7),(806,1346558400,6),(806,1367118000,7),(806,1378612800,6),(806,1398567600,7),(806,1410062400,6),(806,1463281200,7),(806,1471147200,6),(806,1494730800,7),(806,1502596800,6),(806,1526180400,7),(806,1534046400,6),(806,1554606000,7),(806,1567915200,6),(806,1586055600,7),(806,1599364800,6),(806,1617505200,7),(806,1630814400,6),(806,1648954800,7),(806,1662264000,6),(806,1680404400,7),(806,1693713600,6),(806,1712458800,7),(806,1725768000,6),(806,1743908400,7),(806,1757217600,6),(806,1775358000,7),(806,1788667200,6),(806,1806807600,7),(806,1820116800,6),(806,1838257200,7),(806,1851566400,6),(806,1870311600,7),(806,1883016000,6),(806,1901761200,7),(806,1915070400,6),(806,1933210800,7),(806,1946520000,6),(806,1964660400,7),(806,1977969600,6),(806,1996110000,7),(806,2009419200,6),(806,2027559600,7),(806,2040868800,6),(806,2059614000,7),(806,2072318400,6),(806,2091063600,7),(806,2104372800,6),(806,2122513200,7),(806,2135822400,6),(806,2147483647,6),(807,-2147483648,1),(807,-1159773600,3),(807,-100119600,2),(807,-89668800,3),(807,-5770800,4),(807,4422600,3),(807,25678800,4),(807,33193800,3),(807,57733200,4),(807,64816200,3),(807,89182800,4),(807,96438600,3),(807,120632400,4),(807,127974600,3),(807,152082000,5),(807,972799200,3),(807,975823200,5),(808,-2147483648,0),(808,-1767214412,2),(808,-1206957600,1),(808,-1191362400,2),(808,-1175374800,1),(808,-1159826400,2),(808,-633819600,1),(808,-622069200,2),(808,-602283600,1),(808,-591832800,2),(808,-570747600,1),(808,-560210400,2),(808,-539125200,1),(808,-531352800,2),(808,-195426000,1),(808,-184197600,2),(808,-155163600,1),(808,-150069600,2),(808,-128898000,1),(808,-121125600,2),(808,-99954000,1),(808,-89589600,2),(808,-68418000,1),(808,-57967200,2),(808,499748400,1),(808,511236000,2),(808,530593200,1),(808,540266400,2),(808,562129200,1),(808,571197600,2),(808,592974000,1),(808,602042400,2),(808,624423600,1),(808,634701600,2),(808,656478000,1),(808,666756000,2),(808,687927600,1),(808,697600800,2),(808,719982000,1),(808,728445600,2),(808,750826800,1),(808,761709600,2),(808,782276400,1),(808,793159200,2),(808,813726000,1),(808,824004000,2),(808,844570800,1),(808,856058400,2),(808,876106800,1),(808,888717600,2),(808,908074800,1),(808,919562400,2),(808,938919600,1),(808,951616800,2),(808,970974000,1),(808,982461600,2),(808,1003028400,1),(808,1013911200,2),(808,1036292400,1),(808,1045360800,2),(808,1066532400,1),(808,1076810400,2),(808,1099364400,1),(808,1108864800,2),(808,1129431600,1),(808,1140314400,2),(808,1162695600,1),(808,1172368800,2),(808,1192330800,1),(808,1203213600,2),(808,1224385200,1),(808,1234663200,2),(808,1255834800,1),(808,1266717600,2),(808,1287284400,1),(808,1298167200,2),(808,1318734000,1),(808,1330221600,2),(808,1350788400,1),(808,1361066400,2),(808,1382238000,1),(808,1392516000,2),(808,1413687600,1),(808,1424570400,2),(808,1445137200,1),(808,1456020000,2),(808,1476586800,1),(808,1487469600,2),(808,1508036400,1),(808,1518919200,2),(808,1541300400,1),(808,1550368800,2),(808,2147483647,2),(809,-2147483648,0),(809,-1686090728,1),(809,323841600,2),(809,338961600,3),(809,354679200,6),(809,370400400,4),(809,386125200,5),(809,401850000,4),(809,417574800,5),(809,433299600,4),(809,449024400,5),(809,465354000,4),(809,481078800,5),(809,496803600,4),(809,512528400,5),(809,528253200,4),(809,543978000,5),(809,559702800,4),(809,575427600,5),(809,591152400,4),(809,606877200,5),(809,622602000,4),(809,638326800,5),(809,654656400,4),(809,670381200,5),(809,686106000,4),(809,701830800,5),(809,717555600,4),(809,733280400,5),(809,749005200,4),(809,764730000,5),(809,780454800,4),(809,796179600,5),(809,811904400,4),(809,828234000,5),(809,846378000,4),(809,859683600,5),(809,877827600,4),(809,891133200,5),(809,909277200,4),(809,922582800,5),(809,941331600,4),(809,954032400,5),(809,972781200,4),(809,985482000,5),(809,1004230800,4),(809,1017536400,5),(809,1035680400,4),(809,1048986000,5),(809,1067130000,4),(809,1080435600,5),(809,1099184400,4),(809,1111885200,5),(809,1130634000,4),(809,1143334800,5),(809,1162083600,4),(809,1174784400,5),(809,1193533200,4),(809,1206838800,5),(809,1224982800,4),(809,1238288400,5),(809,1256432400,4),(809,1269738000,5),(809,1288486800,4),(809,1301187600,5),(809,1319936400,4),(809,1332637200,5),(809,1351386000,4),(809,1364691600,5),(809,1382835600,4),(809,1396141200,5),(809,1414285200,4),(809,1427590800,5),(809,1445734800,4),(809,1459040400,5),(809,1477789200,4),(809,1490490000,5),(809,1509238800,4),(809,1521939600,5),(809,1540688400,4),(809,1553994000,5),(809,1572138000,4),(809,1585443600,5),(809,1603587600,4),(809,1616893200,5),(809,1635642000,4),(809,1648342800,5),(809,1667091600,4),(809,1679792400,5),(809,1698541200,4),(809,1711846800,5),(809,1729990800,4),(809,1743296400,5),(809,1761440400,4),(809,1774746000,5),(809,1792890000,4),(809,1806195600,5),(809,1824944400,4),(809,1837645200,5),(809,1856394000,4),(809,1869094800,5),(809,1887843600,4),(809,1901149200,5),(809,1919293200,4),(809,1932598800,5),(809,1950742800,4),(809,1964048400,5),(809,1982797200,4),(809,1995498000,5),(809,2014246800,4),(809,2026947600,5),(809,2045696400,4),(809,2058397200,5),(809,2077146000,4),(809,2090451600,5),(809,2108595600,4),(809,2121901200,5),(809,2140045200,4),(809,2147483647,4),(810,-2147483648,2),(810,-1633273200,1),(810,-1615132800,2),(810,-1601823600,1),(810,-1583683200,2),(810,-1570374000,1),(810,-1551628800,2),(810,-1538924400,1),(810,-1534089600,2),(810,-880210800,3),(810,-769395600,4),(810,-765388800,2),(810,-147884400,1),(810,-131558400,2),(810,-116434800,1),(810,-100108800,2),(810,-84380400,1),(810,-68659200,2),(810,-52930800,1),(810,-37209600,2),(810,-21481200,1),(810,-5760000,2),(810,9968400,1),(810,25689600,2),(810,41418000,1),(810,57744000,2),(810,73472400,1),(810,89193600,2),(810,104922000,1),(810,120643200,2),(810,126694800,1),(810,152092800,2),(810,162378000,1),(810,183542400,2),(810,199270800,1),(810,215596800,2),(810,230720400,1),(810,247046400,2),(810,262774800,1),(810,278496000,2),(810,294224400,1),(810,309945600,2),(810,325674000,1),(810,341395200,2),(810,357123600,1),(810,372844800,2),(810,388573200,1),(810,404899200,2),(810,420022800,1),(810,436348800,2),(810,452077200,1),(810,467798400,2),(810,483526800,1),(810,499248000,2),(810,514976400,1),(810,530697600,2),(810,544611600,1),(810,562147200,2),(810,576061200,1),(810,594201600,2),(810,607510800,1),(810,625651200,2),(810,638960400,1),(810,657100800,2),(810,671014800,1),(810,688550400,2),(810,702464400,1),(810,720000000,2),(810,733914000,1),(810,752054400,2),(810,765363600,1),(810,783504000,2),(810,796813200,1),(810,814953600,2),(810,828867600,1),(810,846403200,2),(810,860317200,1),(810,877852800,2),(810,891766800,1),(810,909302400,2),(810,923216400,1),(810,941356800,2),(810,954666000,1),(810,972806400,2),(810,986115600,1),(810,1004256000,2),(810,1018170000,1),(810,1035705600,2),(810,1049619600,1),(810,1067155200,2),(810,1081069200,1),(810,1099209600,2),(810,1112518800,1),(810,1130659200,2),(810,1143968400,1),(810,1162108800,2),(810,1173603600,1),(810,1194163200,2),(810,1205053200,1),(810,1225612800,2),(810,1236502800,1),(810,1257062400,2),(810,1268557200,1),(810,1289116800,2),(810,1300006800,1),(810,1320566400,2),(810,1331456400,1),(810,1352016000,2),(810,1362906000,1),(810,1383465600,2),(810,1394355600,1),(810,1414915200,2),(810,1425805200,1),(810,1446364800,2),(810,1457859600,1),(810,1478419200,2),(810,1489309200,1),(810,1509868800,2),(810,1520758800,1),(810,1541318400,2),(810,1552208400,1),(810,1572768000,2),(810,1583658000,1),(810,1604217600,2),(810,1615712400,1),(810,1636272000,2),(810,1647162000,1),(810,1667721600,2),(810,1678611600,1),(810,1699171200,2),(810,1710061200,1),(810,1730620800,2),(810,1741510800,1),(810,1762070400,2),(810,1772960400,1),(810,1793520000,2),(810,1805014800,1),(810,1825574400,2),(810,1836464400,1),(810,1857024000,2),(810,1867914000,1),(810,1888473600,2),(810,1899363600,1),(810,1919923200,2),(810,1930813200,1),(810,1951372800,2),(810,1962867600,1),(810,1983427200,2),(810,1994317200,1),(810,2014876800,2),(810,2025766800,1),(810,2046326400,2),(810,2057216400,1),(810,2077776000,2),(810,2088666000,1),(810,2109225600,2),(810,2120115600,1),(810,2140675200,2),(811,-2147483648,1),(811,-880207200,2),(811,-769395600,3),(811,-765385200,1),(811,-21477600,4),(811,-5756400,1),(811,9972000,4),(811,25693200,1),(811,41421600,4),(811,57747600,1),(811,73476000,4),(811,89197200,1),(811,104925600,4),(811,120646800,1),(811,126698400,4),(811,152096400,1),(811,162381600,4),(811,183546000,1),(811,199274400,4),(811,215600400,1),(811,230724000,4),(811,247050000,1),(811,262778400,4),(811,278499600,1),(811,294228000,4),(811,309949200,1),(811,325677600,4),(811,341398800,1),(811,357127200,4),(811,372848400,1),(811,388576800,4),(811,404902800,1),(811,420026400,4),(811,436352400,5),(811,439030800,7),(811,452084400,6),(811,467805600,7),(811,483534000,6),(811,499255200,7),(811,514983600,6),(811,530704800,7),(811,544618800,6),(811,562154400,7),(811,576068400,6),(811,594208800,7),(811,607518000,6),(811,625658400,7),(811,638967600,6),(811,657108000,7),(811,671022000,6),(811,688557600,7),(811,702471600,6),(811,720007200,7),(811,733921200,6),(811,752061600,7),(811,765370800,6),(811,783511200,7),(811,796820400,6),(811,814960800,7),(811,828874800,6),(811,846410400,7),(811,860324400,6),(811,877860000,7),(811,891774000,6),(811,909309600,7),(811,923223600,6),(811,941364000,7),(811,954673200,6),(811,972813600,7),(811,986122800,6),(811,1004263200,7),(811,1018177200,6),(811,1035712800,7),(811,1049626800,6),(811,1067162400,7),(811,1081076400,6),(811,1099216800,7),(811,1112526000,6),(811,1130666400,7),(811,1143975600,6),(811,1162116000,7),(811,1173610800,6),(811,1194170400,7),(811,1205060400,6),(811,1225620000,7),(811,1236510000,6),(811,1257069600,7),(811,1268564400,6),(811,1289124000,7),(811,1300014000,6),(811,1320573600,7),(811,1331463600,6),(811,1352023200,7),(811,1362913200,6),(811,1383472800,7),(811,1394362800,6),(811,1414922400,7),(811,1425812400,6),(811,1446372000,7),(811,1457866800,6),(811,1478426400,7),(811,1489316400,6),(811,1509876000,7),(811,1520766000,6),(811,1541325600,7),(811,1552215600,6),(811,1572775200,7),(811,1583665200,6),(811,1604224800,7),(811,1615719600,6),(811,1636279200,7),(811,1647169200,6),(811,1667728800,7),(811,1678618800,6),(811,1699178400,7),(811,1710068400,6),(811,1730628000,7),(811,1741518000,6),(811,1762077600,7),(811,1772967600,6),(811,1793527200,7),(811,1805022000,6),(811,1825581600,7),(811,1836471600,6),(811,1857031200,7),(811,1867921200,6),(811,1888480800,7),(811,1899370800,6),(811,1919930400,7),(811,1930820400,6),(811,1951380000,7),(811,1962874800,6),(811,1983434400,7),(811,1994324400,6),(811,2014884000,7),(811,2025774000,6),(811,2046333600,7),(811,2057223600,6),(811,2077783200,7),(811,2088673200,6),(811,2109232800,7),(811,2120122800,6),(811,2140682400,7),(812,-2147483648,0),(812,-1825098836,1),(813,-2147483648,2),(813,-1664130548,1),(813,-1650137348,2),(813,-1632076148,1),(813,-1615145348,2),(813,-1598650148,1),(813,-1590100148,2),(813,-1567286948,1),(813,-1551565748,2),(813,-1535837348,1),(813,-1520116148,2),(813,-1503782948,1),(813,-1488666548,2),(813,-1472333348,1),(813,-1457216948,2),(813,-1440883748,1),(813,-1425767348,2),(813,-1409434148,1),(813,-1394317748,2),(813,-1377984548,1),(813,-1362263348,2),(813,-1346534948,1),(813,-1330813748,2),(813,-1314480548,1),(813,-1299364148,2),(813,-1283030948,1),(813,-1267914548,2),(813,-1251581348,1),(813,-1236464948,2),(813,-1220131748,1),(813,-1205015348,2),(813,-1188682148,1),(813,-1172960948,2),(813,-1156627748,1),(813,-1141511348,2),(813,-1125178148,1),(813,-1110061748,2),(813,-1096921748,4),(813,-1093728600,3),(813,-1078612200,4),(813,-1061670600,3),(813,-1048973400,4),(813,-1030221000,3),(813,-1017523800,4),(813,-998771400,3),(813,-986074200,4),(813,-966717000,3),(813,-954624600,4),(813,-935267400,3),(813,-922570200,4),(813,-903817800,3),(813,-891120600,4),(813,-872368200,6),(813,-769395600,5),(813,-765401400,4),(813,-746044200,3),(813,-733347000,4),(813,-714594600,3),(813,-701897400,4),(813,-683145000,3),(813,-670447800,4),(813,-651695400,3),(813,-638998200,4),(813,-619641000,3),(813,-606943800,4),(813,-589401000,3),(813,-576099000,4),(813,-557951400,3),(813,-544649400,4),(813,-526501800,3),(813,-513199800,4),(813,-495052200,3),(813,-481750200,4),(813,-463602600,3),(813,-450300600,4),(813,-431548200,3),(813,-418246200,4),(813,-400098600,3),(813,-386796600,4),(813,-368649000,3),(813,-355347000,4),(813,-337199400,3),(813,-323897400,4),(813,-305749800,3),(813,-289423800,4),(813,-273695400,3),(813,-257974200,4),(813,-242245800,3),(813,-226524600,4),(813,-210796200,3),(813,-195075000,4),(813,-179346600,3),(813,-163625400,4),(813,-147897000,3),(813,-131571000,4),(813,-116447400,3),(813,-100121400,4),(813,-84393000,3),(813,-68671800,4),(813,-52943400,3),(813,-37222200,4),(813,-21493800,3),(813,-5772600,4),(813,9955800,3),(813,25677000,4),(813,41405400,3),(813,57731400,4),(813,73459800,3),(813,89181000,4),(813,104909400,3),(813,120630600,4),(813,136359000,3),(813,152080200,4),(813,167808600,3),(813,183529800,4),(813,199258200,3),(813,215584200,4),(813,230707800,3),(813,247033800,4),(813,262762200,3),(813,278483400,4),(813,294211800,3),(813,309933000,4),(813,325661400,3),(813,341382600,4),(813,357111000,3),(813,372832200,4),(813,388560600,3),(813,404886600,4),(813,420010200,3),(813,436336200,4),(813,452064600,3),(813,467785800,4),(813,483514200,3),(813,499235400,4),(813,514963800,3),(813,530685000,4),(813,544591860,3),(813,562127460,4),(813,576041460,7),(813,594178260,4),(813,607491060,3),(813,625631460,4),(813,638940660,3),(813,657081060,4),(813,670995060,3),(813,688530660,4),(813,702444660,3),(813,719980260,4),(813,733894260,3),(813,752034660,4),(813,765343860,3),(813,783484260,4),(813,796793460,3),(813,814933860,4),(813,828847860,3),(813,846383460,4),(813,860297460,3),(813,877833060,4),(813,891747060,3),(813,909282660,4),(813,923196660,3),(813,941337060,4),(813,954646260,3),(813,972786660,4),(813,986095860,3),(813,1004236260,4),(813,1018150260,3),(813,1035685860,4),(813,1049599860,3),(813,1067135460,4),(813,1081049460,3),(813,1099189860,4),(813,1112499060,3),(813,1130639460,4),(813,1143948660,3),(813,1162089060,4),(813,1173583860,3),(813,1194143460,4),(813,1205033460,3),(813,1225593060,4),(813,1236483060,3),(813,1257042660,4),(813,1268537460,3),(813,1289097060,4),(813,1299987060,3),(813,1320553800,4),(813,1331443800,3),(813,1352003400,4),(813,1362893400,3),(813,1383453000,4),(813,1394343000,3),(813,1414902600,4),(813,1425792600,3),(813,1446352200,4),(813,1457847000,3),(813,1478406600,4),(813,1489296600,3),(813,1509856200,4),(813,1520746200,3),(813,1541305800,4),(813,1552195800,3),(813,1572755400,4),(813,1583645400,3),(813,1604205000,4),(813,1615699800,3),(813,1636259400,4),(813,1647149400,3),(813,1667709000,4),(813,1678599000,3),(813,1699158600,4),(813,1710048600,3),(813,1730608200,4),(813,1741498200,3),(813,1762057800,4),(813,1772947800,3),(813,1793507400,4),(813,1805002200,3),(813,1825561800,4),(813,1836451800,3),(813,1857011400,4),(813,1867901400,3),(813,1888461000,4),(813,1899351000,3),(813,1919910600,4),(813,1930800600,3),(813,1951360200,4),(813,1962855000,3),(813,1983414600,4),(813,1994304600,3),(813,2014864200,4),(813,2025754200,3),(813,2046313800,4),(813,2057203800,3),(813,2077763400,4),(813,2088653400,3),(813,2109213000,4),(813,2120103000,3),(813,2140662600,4),(814,-2147483648,0),(814,-1825098836,1),(815,-2147483648,0),(815,-1825098836,1),(816,-2147483648,0),(816,-1825098836,1),(817,-2147483648,0),(817,-1825098836,1),(818,-2147483648,0),(818,-2030201320,2),(818,-1632063600,1),(818,-1615132800,2),(818,-880210800,3),(818,-769395600,4),(818,-765388800,2),(818,-747241200,1),(818,-732729600,2),(818,-715791600,1),(818,-702489600,2),(818,-684342000,1),(818,-671040000,2),(818,-652892400,1),(818,-639590400,2),(818,-400086000,1),(818,-384364800,2),(818,-337186800,1),(818,-321465600,2),(818,-305737200,1),(818,-292435200,2),(818,-273682800,1),(818,-260985600,2),(818,73472400,5),(819,-2147483648,0),(819,-1538503868,2),(819,547020000,1),(819,559717200,2),(819,578469600,1),(819,591166800,2),(819,1146981600,1),(819,1154926800,2),(820,-2147483648,0),(820,-1686079492,2),(820,670399200,1),(820,686120400,2),(820,701848800,1),(820,717570000,2),(820,733903200,1),(820,752043600,2),(820,765352800,1),(820,783493200,2),(820,796802400,1),(820,814942800,2),(820,828856800,1),(820,846392400,2),(820,860306400,1),(820,877842000,2),(820,891756000,1),(820,909291600,2),(820,923205600,1),(820,941346000,2),(820,954655200,1),(820,972795600,2),(820,986104800,1),(820,1004245200,2),(820,1018159200,1),(820,1035694800,2),(820,1049608800,1),(820,1067144400,2),(820,1081058400,1),(820,1099198800,2),(820,1112508000,1),(820,1130648400,2),(820,1143957600,1),(820,1162098000,2),(820,1173592800,1),(820,1194152400,2),(820,1205042400,1),(820,1225602000,2),(820,1236492000,1),(820,1257051600,2),(820,1268546400,1),(820,1289106000,2),(820,1299996000,1),(820,1320555600,2),(820,1331445600,1),(820,1352005200,2),(820,1362895200,1),(820,1383454800,2),(820,1394344800,1),(820,1414904400,2),(820,1425794400,1),(820,1446354000,2),(820,1457848800,1),(820,1478408400,2),(820,1489298400,1),(820,1509858000,2),(820,1520748000,1),(820,1541307600,2),(820,1552197600,1),(820,1572757200,2),(820,1583647200,1),(820,1604206800,2),(820,1615701600,1),(820,1636261200,2),(820,1647151200,1),(820,1667710800,2),(820,1678600800,1),(820,1699160400,2),(820,1710050400,1),(820,1730610000,2),(820,1741500000,1),(820,1762059600,2),(820,1772949600,1),(820,1793509200,2),(820,1805004000,1),(820,1825563600,2),(820,1836453600,1),(820,1857013200,2),(820,1867903200,1),(820,1888462800,2),(820,1899352800,1),(820,1919912400,2),(820,1930802400,1),(820,1951362000,2),(820,1962856800,1),(820,1983416400,2),(820,1994306400,1),(820,2014866000,2),(820,2025756000,1),(820,2046315600,2),(820,2057205600,1),(820,2077765200,2),(820,2088655200,1),(820,2109214800,2),(820,2120104800,1),(820,2140664400,2),(821,-2147483648,1),(821,-1893434400,2),(821,-880218000,3),(821,-769395600,4),(821,-765396000,2),(821,9961200,5),(821,25682400,2),(821,41410800,5),(821,57736800,2),(821,73465200,5),(821,89186400,2),(821,136364400,5),(821,152085600,2),(821,167814000,5),(821,183535200,2),(821,199263600,5),(821,215589600,2),(821,230713200,5),(821,247039200,2),(821,262767600,5),(821,278488800,2),(821,294217200,5),(821,309938400,2),(821,325666800,5),(821,341388000,2),(821,357116400,5),(821,372837600,2),(821,388566000,5),(821,404892000,2),(821,420015600,5),(821,436341600,2),(821,452070000,5),(821,467791200,2),(821,483519600,5),(821,499240800,2),(821,514969200,5),(821,530690400,2),(821,544604400,5),(821,562140000,2),(821,576054000,5),(821,594194400,2),(821,607503600,5),(821,625644000,2),(821,638953200,5),(821,657093600,2),(821,671007600,5),(821,688543200,2),(821,702457200,5),(821,719992800,2),(821,733906800,5),(821,752047200,2),(821,765356400,5),(821,783496800,2),(821,796806000,5),(821,814946400,2),(821,828860400,5),(821,846396000,2),(821,860310000,5),(821,877845600,2),(821,891759600,5),(821,909295200,2),(821,923209200,5),(821,941349600,2),(821,954658800,5),(821,972799200,2),(821,986108400,5),(821,1004248800,2),(821,1018162800,5),(821,1035698400,2),(821,1049612400,5),(821,1067148000,2),(821,1081062000,5),(821,1099202400,2),(821,1112511600,5),(821,1130652000,2),(821,1143961200,5),(821,1162101600,2),(821,1173596400,5),(821,1194156000,2),(821,1205046000,5),(821,1225605600,2),(821,1236495600,5),(821,1257055200,2),(821,1268550000,5),(821,1289109600,2),(821,1299999600,5),(821,1320559200,2),(821,1331449200,5),(821,1352008800,2),(821,1362898800,5),(821,1383458400,2),(821,1394348400,5),(821,1414908000,2),(821,1425798000,5),(821,1446357600,2),(821,1457852400,5),(821,1478412000,2),(821,1489302000,5),(821,1509861600,2),(821,1520751600,5),(821,1541311200,2),(821,1552201200,5),(821,1572760800,2),(821,1583650800,5),(821,1604210400,2),(821,1615705200,5),(821,1636264800,2),(821,1647154800,5),(821,1667714400,2),(821,1678604400,5),(821,1699164000,2),(821,1710054000,5),(821,1730613600,2),(821,1741503600,5),(821,1762063200,2),(821,1772953200,5),(821,1793512800,2),(821,1805007600,5),(821,1825567200,2),(821,1836457200,5),(821,1857016800,2),(821,1867906800,5),(821,1888466400,2),(821,1899356400,5),(821,1919916000,2),(821,1930806000,5),(821,1951365600,2),(821,1962860400,5),(821,1983420000,2),(821,1994310000,5),(821,2014869600,2),(821,2025759600,5),(821,2046319200,2),(821,2057209200,5),(821,2077768800,2),(821,2088658800,5),(821,2109218400,2),(821,2120108400,5),(821,2140668000,2),(822,-2147483648,0),(822,-1514736000,1),(822,-1451667600,2),(822,-1343062800,1),(822,-1234803600,2),(822,-1222963200,3),(822,-1207242000,2),(822,-873820800,4),(822,-769395600,5),(822,-761677200,2),(822,-686073600,3),(822,-661539600,2),(822,-495039600,3),(822,-481734000,2),(822,-463590000,3),(822,-450284400,2),(822,-431535600,3),(822,-418230000,2),(822,-400086000,3),(822,-386780400,2),(822,-368636400,3),(822,-355330800,2),(822,-337186800,3),(822,-323881200,2),(822,-305737200,3),(822,-292431600,2),(822,199274400,3),(822,215600400,2),(822,230724000,3),(822,247050000,2),(822,262778400,3),(822,278499600,2),(822,294228000,3),(822,309949200,2),(822,325677600,3),(822,341398800,2),(822,357127200,3),(822,372848400,2),(822,388576800,3),(822,404902800,2),(822,420026400,3),(822,436352400,2),(822,452080800,3),(822,467802000,2),(822,483530400,3),(822,499251600,2),(822,514980000,3),(822,530701200,2),(822,544615200,3),(822,562150800,2),(822,576064800,3),(822,594205200,2),(822,607514400,3),(822,625654800,2),(822,638964000,3),(822,657104400,2),(822,671018400,3),(822,688554000,2),(822,702468000,3),(822,720003600,2),(822,733917600,3),(822,752058000,2),(822,765367200,3),(822,783507600,2),(822,796816800,3),(822,814957200,2),(822,828871200,3),(822,846406800,2),(822,860320800,3),(822,877856400,2),(822,891770400,3),(822,909306000,2),(822,923220000,3),(822,941360400,2),(822,954669600,3),(822,972810000,2),(822,986119200,3),(822,1004259600,2),(822,1018173600,3),(822,1035709200,2),(822,1049623200,3),(822,1067158800,2),(822,1081072800,3),(822,1099213200,2),(822,1112522400,3),(822,1130662800,2),(822,1143972000,3),(822,1162112400,2),(822,1175421600,3),(822,1193562000,2),(822,1207476000,3),(822,1225011600,2),(822,1238925600,3),(822,1256461200,2),(822,1268560800,3),(822,1289120400,2),(822,1300010400,3),(822,1320570000,2),(822,1331460000,3),(822,1352019600,2),(822,1362909600,3),(822,1383469200,2),(822,1394359200,3),(822,1414918800,2),(822,1425808800,3),(822,1446368400,2),(822,1457863200,3),(822,1478422800,2),(822,1489312800,3),(822,1509872400,2),(822,1520762400,3),(822,1541322000,2),(822,1552212000,3),(822,1572771600,2),(822,1583661600,3),(822,1604221200,2),(822,1615716000,3),(822,1636275600,2),(822,1647165600,3),(822,1667725200,2),(822,1678615200,3),(822,1699174800,2),(822,1710064800,3),(822,1730624400,2),(822,1741514400,3),(822,1762074000,2),(822,1772964000,3),(822,1793523600,2),(822,1805018400,3),(822,1825578000,2),(822,1836468000,3),(822,1857027600,2),(822,1867917600,3),(822,1888477200,2),(822,1899367200,3),(822,1919926800,2),(822,1930816800,3),(822,1951376400,2),(822,1962871200,3),(822,1983430800,2),(822,1994320800,3),(822,2014880400,2),(822,2025770400,3),(822,2046330000,2),(822,2057220000,3),(822,2077779600,2),(822,2088669600,3),(822,2109229200,2),(822,2120119200,3),(822,2140678800,2),(823,-2147483648,2),(823,-1632070800,1),(823,-1615140000,2),(823,-1601753400,1),(823,-1583697600,2),(823,-1567357200,1),(823,-1554667200,2),(823,-1534698000,1),(823,-1524074400,2),(823,-1503248400,1),(823,-1492365600,2),(823,-1471798800,1),(823,-1460916000,2),(823,-1440954000,1),(823,-1428861600,2),(823,-1409504400,1),(823,-1397412000,2),(823,-1378054800,1),(823,-1365962400,2),(823,-1346605200,1),(823,-1333908000,2),(823,-1315155600,1),(823,-1301853600,2),(823,-1283706000,1),(823,-1270404000,2),(823,-1252256400,1),(823,-1238954400,2),(823,-1220806800,1),(823,-1207504800,2),(823,-1188752400,1),(823,-1176055200,2),(823,-1157302800,1),(823,-1144000800,2),(823,-1125853200,1),(823,-1112551200,2),(823,-1094403600,1),(823,-1081101600,2),(823,-1062954000,1),(823,-1049652000,2),(823,-1031504400,1),(823,-1018202400,2),(823,-1000054800,1),(823,-986752800,2),(823,-968000400,1),(823,-955303200,2),(823,-936550800,1),(823,-880218000,3),(823,-769395600,4),(823,-765396000,2),(823,-747248400,1),(823,-733946400,2),(823,-715806000,1),(823,-702504000,2),(823,-684356400,1),(823,-671054400,2),(823,-652906800,1),(823,-634161600,2),(823,-620845200,1),(823,-602704800,2),(823,-589395600,1),(823,-576093600,2),(823,-557946000,1),(823,-544644000,2),(823,-526496400,1),(823,-513194400,2),(823,-495046800,1),(823,-481744800,2),(823,-463597200,1),(823,-450295200,2),(823,-431542800,1),(823,-418240800,2),(823,-400093200,1),(823,-384372000,2),(823,-368643600,1),(823,-352922400,2),(823,-337194000,1),(823,-321472800,2),(823,-305744400,1),(823,-289418400,2),(823,-273690000,1),(823,-257968800,2),(823,-242240400,1),(823,-226519200,2),(823,-210790800,1),(823,-195069600,2),(823,-179341200,1),(823,-163620000,2),(823,-147891600,1),(823,-131565600,2),(823,-116442000,1),(823,-100116000,2),(823,-84387600,1),(823,-68666400,2),(823,-52938000,1),(823,-37216800,2),(823,-21488400,1),(823,-5767200,2),(823,9961200,1),(823,25682400,2),(823,41410800,1),(823,57736800,2),(823,73465200,1),(823,89186400,2),(823,104914800,1),(823,120636000,2),(823,136364400,1),(823,152085600,2),(823,167814000,1),(823,183535200,2),(823,199263600,1),(823,215589600,2),(823,230713200,1),(823,247039200,2),(823,262767600,1),(823,278488800,2),(823,294217200,1),(823,309938400,2),(823,325666800,1),(823,341388000,2),(823,357116400,1),(823,372837600,2),(823,388566000,1),(823,404892000,2),(823,420015600,1),(823,436341600,2),(823,452070000,1),(823,467791200,2),(823,483519600,1),(823,499240800,2),(823,514969200,1),(823,530690400,2),(823,544604400,1),(823,562140000,2),(823,576054000,1),(823,594194400,2),(823,607503600,1),(823,625644000,2),(823,638953200,1),(823,657093600,2),(823,671007600,1),(823,688543200,2),(823,702457200,1),(823,719992800,2),(823,733906800,1),(823,752047200,2),(823,765356400,1),(823,783496800,2),(823,796806000,1),(823,814946400,2),(823,828860400,1),(823,846396000,2),(823,860310000,1),(823,877845600,2),(823,891759600,1),(823,909295200,2),(823,923209200,1),(823,941349600,2),(823,954658800,1),(823,972799200,2),(823,986108400,1),(823,1004248800,2),(823,1018162800,1),(823,1035698400,2),(823,1049612400,1),(823,1067148000,2),(823,1081062000,1),(823,1099202400,2),(823,1112511600,1),(823,1130652000,2),(823,1143961200,1),(823,1162101600,2),(823,1173596400,1),(823,1194156000,2),(823,1205046000,1),(823,1225605600,2),(823,1236495600,1),(823,1257055200,2),(823,1268550000,1),(823,1289109600,2),(823,1299999600,1),(823,1320559200,2),(823,1331449200,1),(823,1352008800,2),(823,1362898800,1),(823,1383458400,2),(823,1394348400,1),(823,1414908000,2),(823,1425798000,1),(823,1446357600,2),(823,1457852400,1),(823,1478412000,2),(823,1489302000,1),(823,1509861600,2),(823,1520751600,1),(823,1541311200,2),(823,1552201200,1),(823,1572760800,2),(823,1583650800,1),(823,1604210400,2),(823,1615705200,1),(823,1636264800,2),(823,1647154800,1),(823,1667714400,2),(823,1678604400,1),(823,1699164000,2),(823,1710054000,1),(823,1730613600,2),(823,1741503600,1),(823,1762063200,2),(823,1772953200,1),(823,1793512800,2),(823,1805007600,1),(823,1825567200,2),(823,1836457200,1),(823,1857016800,2),(823,1867906800,1),(823,1888466400,2),(823,1899356400,1),(823,1919916000,2),(823,1930806000,1),(823,1951365600,2),(823,1962860400,1),(823,1983420000,2),(823,1994310000,1),(823,2014869600,2),(823,2025759600,1),(823,2046319200,2),(823,2057209200,1),(823,2077768800,2),(823,2088658800,1),(823,2109218400,2),(823,2120108400,1),(823,2140668000,2),(824,-2147483648,0),(824,-1825098836,1),(825,-2147483648,2),(825,-1632060000,1),(825,-1615129200,2),(825,-880207200,3),(825,-769395600,4),(825,-765385200,2),(825,-747237600,1),(825,-733935600,2),(825,-715788000,1),(825,-702486000,2),(825,-684338400,1),(825,-671036400,2),(825,-652888800,1),(825,-639586800,2),(825,-620834400,1),(825,-608137200,2),(825,-589384800,1),(825,-576082800,2),(825,-557935200,1),(825,-544633200,2),(825,-526485600,1),(825,-513183600,2),(825,-495036000,1),(825,-481734000,2),(825,-463586400,1),(825,-450284400,2),(825,-431532000,1),(825,-418230000,2),(825,-400082400,1),(825,-386780400,2),(825,-368632800,1),(825,-355330800,2),(825,-337183200,1),(825,-323881200,2),(825,-305733600,1),(825,-292431600,2),(825,-273679200,1),(825,-260982000,2),(825,-242229600,1),(825,-226508400,2),(825,-210780000,1),(825,-195058800,2),(825,-179330400,1),(825,-163609200,2),(825,-147880800,1),(825,-131554800,2),(825,-116431200,1),(825,-100105200,2),(825,-84376800,1),(825,-68655600,2),(825,-52927200,1),(825,-37206000,2),(825,-21477600,1),(825,-5756400,2),(825,9972000,1),(825,25693200,2),(825,41421600,1),(825,57747600,2),(825,73476000,1),(825,89197200,2),(825,104925600,1),(825,120646800,2),(825,136375200,1),(825,152096400,2),(825,167824800,1),(825,183546000,2),(825,199274400,1),(825,215600400,2),(825,230724000,1),(825,247050000,2),(825,262778400,1),(825,278499600,2),(825,294228000,1),(825,309949200,2),(825,325677600,1),(825,341398800,2),(825,357127200,1),(825,372848400,2),(825,388576800,1),(825,404902800,2),(825,420026400,1),(825,436352400,2),(825,452080800,1),(825,467802000,2),(825,483530400,1),(825,499251600,2),(825,514980000,1),(825,530701200,2),(825,544615200,1),(825,562150800,2),(825,576064800,1),(825,594205200,2),(825,607514400,1),(825,625654800,2),(825,638964000,1),(825,657104400,2),(825,671018400,1),(825,688554000,2),(825,702468000,1),(825,720003600,2),(825,733917600,1),(825,752058000,2),(825,765367200,1),(825,783507600,2),(825,796816800,1),(825,814957200,2),(825,828871200,1),(825,846406800,2),(825,860320800,1),(825,877856400,2),(825,891770400,1),(825,909306000,2),(825,923220000,1),(825,941360400,2),(825,954669600,1),(825,972810000,2),(825,986119200,1),(825,1004259600,2),(825,1018173600,1),(825,1035709200,2),(825,1049623200,1),(825,1067158800,2),(825,1081072800,1),(825,1099213200,2),(825,1112522400,1),(825,1130662800,2),(825,1143972000,1),(825,1162112400,2),(825,1173607200,1),(825,1194166800,2),(825,1205056800,1),(825,1225616400,2),(825,1236506400,1),(825,1257066000,2),(825,1268560800,1),(825,1289120400,2),(825,1300010400,1),(825,1320570000,2),(825,1331460000,1),(825,1352019600,2),(825,1362909600,1),(825,1383469200,2),(825,1394359200,1),(825,1414918800,2),(825,1425808800,1),(825,1446368400,2),(825,1457863200,1),(825,1478422800,2),(825,1489312800,1),(825,1509872400,2),(825,1520762400,1),(825,1541322000,2),(825,1552212000,1),(825,1572771600,2),(825,1583661600,1),(825,1604221200,2),(825,1615716000,1),(825,1636275600,2),(825,1647165600,1),(825,1667725200,2),(825,1678615200,1),(825,1699174800,2),(825,1710064800,1),(825,1730624400,2),(825,1741514400,1),(825,1762074000,2),(825,1772964000,1),(825,1793523600,2),(825,1805018400,1),(825,1825578000,2),(825,1836468000,1),(825,1857027600,2),(825,1867917600,1),(825,1888477200,2),(825,1899367200,1),(825,1919926800,2),(825,1930816800,1),(825,1951376400,2),(825,1962871200,1),(825,1983430800,2),(825,1994320800,1),(825,2014880400,2),(825,2025770400,1),(825,2046330000,2),(825,2057220000,1),(825,2077779600,2),(825,2088669600,1),(825,2109229200,2),(825,2120119200,1),(825,2140678800,2),(826,-2147483648,0),(826,-1825098836,1),(827,-2147483648,2),(827,-1632056400,1),(827,-1615125600,2),(827,-1596978000,1),(827,-1583164800,2),(827,-880203600,3),(827,-769395600,4),(827,-765381600,2),(827,-147884400,5),(827,-131554800,2),(827,-81961200,6),(827,325677600,7),(827,341398800,6),(827,357127200,7),(827,372848400,6),(827,388576800,7),(827,404902800,6),(827,420026400,7),(827,436352400,6),(827,452080800,7),(827,467802000,6),(827,483530400,7),(827,499251600,6),(827,514980000,7),(827,530701200,6),(827,544615200,7),(827,562150800,6),(827,576064800,7),(827,594205200,6),(827,607514400,7),(827,625654800,6),(827,638964000,7),(827,657104400,6),(827,671018400,7),(827,688554000,6),(827,702468000,7),(827,720003600,6),(827,733917600,7),(827,752058000,6),(827,765367200,7),(827,783507600,6),(827,796816800,7),(827,814957200,6),(827,828871200,7),(827,846406800,6),(827,860320800,7),(827,877856400,6),(827,891770400,7),(827,909306000,6),(827,923220000,7),(827,941360400,6),(827,954669600,7),(827,972810000,6),(827,986119200,7),(827,1004259600,6),(827,1018173600,7),(827,1035709200,6),(827,1049623200,7),(827,1067158800,6),(827,1081072800,7),(827,1099213200,6),(827,1112522400,7),(827,1130662800,6),(827,1143972000,7),(827,1162112400,6),(827,1173607200,7),(827,1194166800,6),(827,1205056800,7),(827,1225616400,6),(827,1236506400,7),(827,1257066000,6),(827,1268560800,7),(827,1289120400,6),(827,1300010400,7),(827,1320570000,6),(827,1331460000,7),(827,1352019600,6),(827,1362909600,7),(827,1383469200,6),(827,1394359200,7),(827,1414918800,6),(827,1425808800,7),(827,1446368400,6),(827,1457863200,7),(827,1478422800,6),(827,1489312800,7),(827,1509872400,6),(827,1520762400,7),(827,1541322000,6),(827,1552212000,7),(827,1572771600,6),(827,1583661600,7),(827,1604214000,8),(828,-2147483648,2),(828,-1694368800,1),(828,-1681671600,2),(828,-1632067200,1),(828,-1615136400,2),(828,-1029686400,1),(828,-1018198800,2),(828,-880214400,3),(828,-769395600,4),(828,-765392400,2),(828,-746035200,1),(828,-732733200,2),(828,-715795200,1),(828,-702493200,2),(828,-684345600,1),(828,-671043600,2),(828,-652896000,1),(828,-639594000,2),(828,-620755200,1),(828,-607626000,2),(828,-589392000,1),(828,-576090000,2),(828,-557942400,1),(828,-544640400,2),(828,-526492800,1),(828,-513190800,2),(828,-495043200,1),(828,-481741200,2),(828,-463593600,1),(828,-450291600,2),(828,-431539200,1),(828,-418237200,2),(828,-400089600,1),(828,-386787600,2),(828,-368640000,1),(828,-355338000,2),(828,-337190400,1),(828,-321469200,2),(828,-305740800,1),(828,-292438800,2),(828,-210787200,1),(828,-198090000,2),(828,-116438400,5),(828,-100108800,6),(828,-84384000,5),(828,-68659200,6),(828,-52934400,5),(828,-37209600,6),(828,-21484800,5),(828,-5760000,6),(828,9964800,5),(828,25689600,6),(828,41414400,5),(828,57744000,6),(828,73468800,5),(828,89193600,6),(828,104918400,5),(828,120643200,6),(828,136368000,5),(828,152092800,6),(828,167817600,5),(828,183542400,6),(828,199267200,5),(828,215596800,6),(828,230716800,5),(828,247046400,6),(828,262771200,5),(828,278496000,6),(828,294220800,5),(828,309945600,6),(828,325670400,5),(828,341395200,6),(828,357120000,5),(828,372844800,6),(828,388569600,5),(828,404899200,6),(828,420019200,5),(828,436348800,6),(828,452073600,5),(828,467798400,6),(828,483523200,5),(828,499248000,6),(828,514972800,5),(828,530697600,6),(828,544608000,5),(828,562147200,6),(828,576057600,5),(828,594201600,6),(828,607507200,5),(828,625651200,6),(828,638956800,5),(828,657100800,6),(828,671011200,5),(828,688550400,6),(828,702460800,5),(828,720000000,6),(828,733910400,5),(828,752054400,6),(828,765360000,5),(828,783504000,6),(828,796809600,5),(828,814953600,6),(828,828864000,5),(828,846403200,6),(828,860313600,5),(828,877852800,6),(828,891763200,5),(828,909302400,6),(828,923212800,5),(828,941356800,6),(828,954662400,5),(828,972806400,6),(828,986112000,5),(828,1004256000,6),(828,1018166400,5),(828,1035705600,6),(828,1049616000,5),(828,1067155200,6),(828,1081065600,5),(828,1099209600,6),(828,1112515200,5),(828,1130659200,6),(828,1136095200,2),(828,1143964800,1),(828,1162105200,2),(828,1173600000,1),(828,1194159600,2),(828,1205049600,1),(828,1225609200,2),(828,1236499200,1),(828,1257058800,2),(828,1268553600,1),(828,1289113200,2),(828,1300003200,1),(828,1320562800,2),(828,1331452800,1),(828,1352012400,2),(828,1362902400,1),(828,1383462000,2),(828,1394352000,1),(828,1414911600,2),(828,1425801600,1),(828,1446361200,2),(828,1457856000,1),(828,1478415600,2),(828,1489305600,1),(828,1509865200,2),(828,1520755200,1),(828,1541314800,2),(828,1552204800,1),(828,1572764400,2),(828,1583654400,1),(828,1604214000,2),(828,1615708800,1),(828,1636268400,2),(828,1647158400,1),(828,1667718000,2),(828,1678608000,1),(828,1699167600,2),(828,1710057600,1),(828,1730617200,2),(828,1741507200,1),(828,1762066800,2),(828,1772956800,1),(828,1793516400,2),(828,1805011200,1),(828,1825570800,2),(828,1836460800,1),(828,1857020400,2),(828,1867910400,1),(828,1888470000,2),(828,1899360000,1),(828,1919919600,2),(828,1930809600,1),(828,1951369200,2),(828,1962864000,1),(828,1983423600,2),(828,1994313600,1),(828,2014873200,2),(828,2025763200,1),(828,2046322800,2),(828,2057212800,1),(828,2077772400,2),(828,2088662400,1),(828,2109222000,2),(828,2120112000,1),(828,2140671600,2),(829,-2147483648,1),(829,-880203600,2),(829,-769395600,3),(829,-765381600,1),(829,-21474000,4),(829,-5752800,1),(829,9975600,4),(829,25696800,1),(829,41425200,4),(829,57751200,1),(829,73479600,4),(829,89200800,1),(829,104929200,4),(829,120650400,1),(829,126702000,4),(829,152100000,1),(829,162385200,4),(829,183549600,1),(829,199278000,4),(829,215604000,1),(829,230727600,4),(829,247053600,1),(829,262782000,4),(829,278503200,1),(829,294231600,4),(829,309952800,1),(829,325681200,4),(829,341402400,1),(829,357130800,4),(829,372852000,1),(829,388580400,4),(829,404906400,1),(829,420030000,4),(829,436356000,1),(829,439030800,6),(829,452084400,5),(829,467805600,6),(829,483534000,5),(829,499255200,6),(829,514983600,5),(829,530704800,6),(829,544618800,5),(829,562154400,6),(829,576068400,5),(829,594208800,6),(829,607518000,5),(829,625658400,6),(829,638967600,5),(829,657108000,6),(829,671022000,5),(829,688557600,6),(829,702471600,5),(829,720007200,6),(829,733921200,5),(829,752061600,6),(829,765370800,5),(829,783511200,6),(829,796820400,5),(829,814960800,6),(829,828874800,5),(829,846410400,6),(829,860324400,5),(829,877860000,6),(829,891774000,5),(829,909309600,6),(829,923223600,5),(829,941364000,6),(829,954673200,5),(829,972813600,6),(829,986122800,5),(829,1004263200,6),(829,1018177200,5),(829,1035712800,6),(829,1049626800,5),(829,1067162400,6),(829,1081076400,5),(829,1099216800,6),(829,1112526000,5),(829,1130666400,6),(829,1143975600,5),(829,1162116000,6),(829,1173610800,5),(829,1194170400,6),(829,1205060400,5),(829,1225620000,6),(829,1236510000,5),(829,1257069600,6),(829,1268564400,5),(829,1289124000,6),(829,1300014000,5),(829,1320573600,6),(829,1331463600,5),(829,1352023200,6),(829,1362913200,5),(829,1383472800,6),(829,1394362800,5),(829,1414922400,6),(829,1425812400,5),(829,1446372000,6),(829,1457866800,5),(829,1478426400,6),(829,1489316400,5),(829,1509876000,6),(829,1520766000,5),(829,1541325600,6),(829,1552215600,5),(829,1572775200,6),(829,1583665200,5),(829,1604224800,6),(829,1615719600,5),(829,1636279200,6),(829,1647169200,5),(829,1667728800,6),(829,1678618800,5),(829,1699178400,6),(829,1710068400,5),(829,1730628000,6),(829,1741518000,5),(829,1762077600,6),(829,1772967600,5),(829,1793527200,6),(829,1805022000,5),(829,1825581600,6),(829,1836471600,5),(829,1857031200,6),(829,1867921200,5),(829,1888480800,6),(829,1899370800,5),(829,1919930400,6),(829,1930820400,5),(829,1951380000,6),(829,1962874800,5),(829,1983434400,6),(829,1994324400,5),(829,2014884000,6),(829,2025774000,5),(829,2046333600,6),(829,2057223600,5),(829,2077783200,6),(829,2088673200,5),(829,2109232800,6),(829,2120122800,5),(829,2140682400,6),(830,-2147483648,0),(830,-1104537600,3),(830,-880210800,1),(830,-769395600,2),(830,-765388800,3),(830,-147891600,4),(830,-131562000,3),(830,325674000,5),(830,341395200,3),(830,357123600,5),(830,372844800,3),(830,388573200,5),(830,404899200,3),(830,420022800,5),(830,436348800,3),(830,452077200,5),(830,467798400,3),(830,483526800,5),(830,499248000,3),(830,514976400,5),(830,530697600,3),(830,544611600,5),(830,562147200,3),(830,576061200,5),(830,594201600,3),(830,607510800,5),(830,625651200,3),(830,638960400,5),(830,657100800,3),(830,671014800,5),(830,688550400,3),(830,702464400,5),(830,720000000,3),(830,733914000,5),(830,752054400,3),(830,765363600,5),(830,783504000,3),(830,796813200,5),(830,814953600,3),(830,828867600,5),(830,846403200,3),(830,860317200,5),(830,877852800,3),(830,891766800,5),(830,909302400,3),(830,923216400,5),(830,941356800,3),(830,954666000,5),(830,972806400,3),(830,986115600,5),(830,1004256000,3),(830,1018170000,5),(830,1035705600,3),(830,1049619600,5),(830,1067155200,3),(830,1081069200,5),(830,1099209600,3),(830,1112518800,5),(830,1130659200,3),(830,1143968400,5),(830,1162108800,3),(830,1173603600,5),(830,1194163200,3),(830,1205053200,5),(830,1225612800,3),(830,1236502800,5),(830,1257062400,3),(830,1268557200,5),(830,1289116800,3),(830,1300006800,5),(830,1320566400,3),(830,1331456400,5),(830,1352016000,3),(830,1362906000,5),(830,1383465600,3),(830,1394355600,5),(830,1414915200,3),(830,1425805200,5),(830,1446364800,3),(830,1457859600,5),(830,1478419200,3),(830,1489309200,5),(830,1509868800,3),(830,1520758800,5),(830,1541318400,3),(830,1552208400,5),(830,1572768000,3),(830,1583658000,5),(830,1604217600,3),(830,1615712400,5),(830,1636272000,3),(830,1647162000,5),(830,1667721600,3),(830,1678611600,5),(830,1699171200,3),(830,1710061200,5),(830,1730620800,3),(830,1741510800,5),(830,1762070400,3),(830,1772960400,5),(830,1793520000,3),(830,1805014800,5),(830,1825574400,3),(830,1836464400,5),(830,1857024000,3),(830,1867914000,5),(830,1888473600,3),(830,1899363600,5),(830,1919923200,3),(830,1930813200,5),(830,1951372800,3),(830,1962867600,5),(830,1983427200,3),(830,1994317200,5),(830,2014876800,3),(830,2025766800,5),(830,2046326400,3),(830,2057216400,5),(830,2077776000,3),(830,2088666000,5),(830,2109225600,3),(830,2120115600,5),(830,2140675200,3),(831,-2147483648,0),(831,-31536000,1),(831,1255802400,2),(831,1267714800,1),(831,1319738400,2),(831,1329843600,3),(831,1477065600,2),(831,1520701200,1),(831,1538856000,2),(831,1552752000,1),(831,1570129200,2),(831,1583596800,1),(831,1601740860,2),(831,2147483647,2),(832,-2147483648,0),(832,-409190400,1),(832,-163062000,0),(832,-28857600,1),(832,1255806000,2),(832,1268251200,3),(832,1319742000,2),(832,1329854400,3),(832,2147483647,3),(833,-2147483648,0),(833,-725846400,1),(833,-566992800,0),(833,-415497600,1),(833,2147483647,1),(834,-2147483648,1),(834,-1680508800,2),(834,-1665388800,3),(834,-1601719200,4),(834,-687052800,1),(834,-71136000,5),(834,-55411200,3),(834,-37267200,5),(834,-25776000,3),(834,-5817600,5),(834,5673600,3),(834,25632000,5),(834,37728000,3),(834,57686400,5),(834,67968000,3),(834,89136000,5),(834,100022400,3),(834,120585600,5),(834,131472000,3),(834,152035200,5),(834,162921600,3),(834,183484800,5),(834,194976000,3),(834,215539200,5),(834,226425600,3),(834,246988800,5),(834,257875200,3),(834,278438400,5),(834,289324800,3),(834,309888000,5),(834,320774400,3),(834,341337600,5),(834,352224000,3),(834,372787200,5),(834,386092800,3),(834,404841600,5),(834,417542400,3),(834,436291200,5),(834,447177600,3),(834,467740800,5),(834,478627200,3),(834,499190400,5),(834,510076800,3),(834,530035200,5),(834,542736000,3),(834,562089600,5),(834,574790400,3),(834,594144000,5),(834,606240000,3),(834,625593600,5),(834,637689600,3),(834,657043200,5),(834,670348800,3),(834,686678400,5),(834,701798400,3),(834,718128000,5),(834,733248000,3),(834,749577600,5),(834,764697600,3),(834,781027200,5),(834,796147200,3),(834,812476800,5),(834,828201600,3),(834,844531200,5),(834,859651200,3),(834,875980800,5),(834,891100800,3),(834,907430400,5),(834,922550400,3),(834,938880000,5),(834,954000000,3),(834,967305600,5),(834,985449600,3),(834,1002384000,5),(834,1017504000,3),(834,1033833600,5),(834,1048953600,3),(834,1065283200,5),(834,1080403200,3),(834,1096732800,5),(834,1111852800,3),(834,1128182400,5),(834,1143907200,3),(834,1159632000,5),(834,1174752000,3),(834,1191686400,5),(834,1207411200,3),(834,1223136000,5),(834,1238860800,3),(834,1254585600,5),(834,1262264400,2),(834,1301760000,3),(834,1317484800,5),(834,1333209600,3),(834,1349539200,5),(834,1365264000,3),(834,1380988800,5),(834,1396713600,3),(834,1412438400,5),(834,1428163200,3),(834,1443888000,5),(834,1459612800,3),(834,1475337600,5),(834,1491062400,3),(834,1506787200,5),(834,1522512000,3),(834,1538841600,5),(834,1554566400,3),(834,1570291200,5),(834,1586016000,3),(834,1601740800,5),(834,1617465600,3),(834,1633190400,5),(834,1648915200,3),(834,1664640000,5),(834,1680364800,3),(834,1696089600,5),(834,1712419200,3),(834,1728144000,5),(834,1743868800,3),(834,1759593600,5),(834,1775318400,3),(834,1791043200,5),(834,1806768000,3),(834,1822492800,5),(834,1838217600,3),(834,1853942400,5),(834,1869667200,3),(834,1885996800,5),(834,1901721600,3),(834,1917446400,5),(834,1933171200,3),(834,1948896000,5),(834,1964620800,3),(834,1980345600,5),(834,1996070400,3),(834,2011795200,5),(834,2027520000,3),(834,2043244800,5),(834,2058969600,3),(834,2075299200,5),(834,2091024000,3),(834,2106748800,5),(834,2122473600,3),(834,2138198400,5),(835,-2147483648,0),(835,-501206400,1),(835,1255809600,2),(835,2147483647,2),(836,-2147483648,2),(836,-1330335000,1),(836,-1320057000,2),(836,-1300699800,3),(836,-1287396000,2),(836,-1269250200,3),(836,-1255946400,2),(836,-1237800600,3),(836,-1224496800,2),(836,-1206351000,3),(836,-1192442400,2),(836,-1174901400,3),(836,-1160992800,2),(836,-1143451800,3),(836,-1125914400,2),(836,-1112607000,3),(836,-1094464800,2),(836,-1081157400,3),(836,-1063015200,2),(836,-1049707800,3),(836,-1031565600,2),(836,-1018258200,3),(836,-1000116000,2),(836,-986808600,3),(836,-968061600,2),(836,-955359000,3),(836,-936612000,2),(836,-923304600,3),(836,-757425600,6),(836,152632800,4),(836,162309600,5),(836,183477600,4),(836,194968800,5),(836,215532000,4),(836,226418400,5),(836,246981600,4),(836,257868000,5),(836,278431200,4),(836,289317600,5),(836,309880800,4),(836,320767200,5),(836,341330400,4),(836,352216800,5),(836,372780000,4),(836,384271200,5),(836,404834400,4),(836,415720800,5),(836,436284000,4),(836,447170400,5),(836,467733600,4),(836,478620000,5),(836,499183200,4),(836,510069600,5),(836,530632800,4),(836,541519200,5),(836,562082400,4),(836,573573600,5),(836,594136800,4),(836,605023200,5),(836,623772000,4),(836,637682400,5),(836,655221600,4),(836,669132000,5),(836,686671200,4),(836,700581600,5),(836,718120800,4),(836,732636000,5),(836,749570400,4),(836,764085600,5),(836,781020000,4),(836,795535200,5),(836,812469600,4),(836,826984800,5),(836,844524000,4),(836,858434400,5),(836,875973600,4),(836,889884000,5),(836,907423200,4),(836,921938400,5),(836,938872800,4),(836,953388000,5),(836,970322400,4),(836,984837600,5),(836,1002376800,4),(836,1016287200,5),(836,1033826400,4),(836,1047736800,5),(836,1065276000,4),(836,1079791200,5),(836,1096725600,4),(836,1111240800,5),(836,1128175200,4),(836,1142690400,5),(836,1159624800,4),(836,1174140000,5),(836,1191074400,4),(836,1207404000,5),(836,1222524000,4),(836,1238853600,5),(836,1253973600,4),(836,1270303200,5),(836,1285423200,4),(836,1301752800,5),(836,1316872800,4),(836,1333202400,5),(836,1348927200,4),(836,1365256800,5),(836,1380376800,4),(836,1396706400,5),(836,1411826400,4),(836,1428156000,5),(836,1443276000,4),(836,1459605600,5),(836,1474725600,4),(836,1491055200,5),(836,1506175200,4),(836,1522504800,5),(836,1538229600,4),(836,1554559200,5),(836,1569679200,4),(836,1586008800,5),(836,1601128800,4),(836,1617458400,5),(836,1632578400,4),(836,1648908000,5),(836,1664028000,4),(836,1680357600,5),(836,1695477600,4),(836,1712412000,5),(836,1727532000,4),(836,1743861600,5),(836,1758981600,4),(836,1775311200,5),(836,1790431200,4),(836,1806760800,5),(836,1821880800,4),(836,1838210400,5),(836,1853330400,4),(836,1869660000,5),(836,1885384800,4),(836,1901714400,5),(836,1916834400,4),(836,1933164000,5),(836,1948284000,4),(836,1964613600,5),(836,1979733600,4),(836,1996063200,5),(836,2011183200,4),(836,2027512800,5),(836,2042632800,4),(836,2058962400,5),(836,2074687200,4),(836,2091016800,5),(836,2106136800,4),(836,2122466400,5),(836,2137586400,4),(837,-2147483648,0),(837,-157766400,2),(837,-152658000,1),(837,-132955200,2),(837,-121122000,1),(837,-101419200,2),(837,-86821200,1),(837,-71092800,2),(837,-54766800,1),(837,-39038400,2),(837,-23317200,1),(837,-7588800,4),(837,128142000,3),(837,136605600,4),(837,389070000,1),(837,403070400,5),(837,416372400,6),(837,434520000,5),(837,447822000,6),(837,466574400,5),(837,479271600,6),(837,498024000,5),(837,510721200,6),(837,529473600,5),(837,545194800,6),(837,560923200,5),(837,574225200,6),(837,592372800,5),(837,605674800,6),(837,624427200,5),(837,637124400,6),(837,653457600,5),(837,668574000,6),(837,687326400,5),(837,700628400,6),(837,718776000,5),(837,732078000,6),(837,750225600,5),(837,763527600,6),(837,781675200,5),(837,794977200,6),(837,813729600,5),(837,826426800,6),(837,845179200,5),(837,859690800,6),(837,876628800,5),(837,889930800,6),(837,906868800,5),(837,923194800,6),(837,939528000,5),(837,952830000,6),(837,971582400,5),(837,984279600,6),(837,1003032000,5),(837,1015729200,6),(837,1034481600,5),(837,1047178800,6),(837,1065931200,5),(837,1079233200,6),(837,1097380800,5),(837,1110682800,6),(837,1128830400,5),(837,1142132400,6),(837,1160884800,5),(837,1173582000,6),(837,1192334400,5),(837,1206846000,6),(837,1223784000,5),(837,1237086000,6),(837,1255233600,5),(837,1270350000,6),(837,1286683200,5),(837,1304823600,6),(837,1313899200,5),(837,1335668400,6),(837,1346558400,5),(837,1367118000,6),(837,1378612800,5),(837,1398567600,6),(837,1410062400,5),(837,1463281200,6),(837,1471147200,5),(837,1480820400,4),(837,2147483647,4),(838,-2147483648,0),(838,218246400,1),(838,2147483647,1),(839,-2147483648,2),(839,-1330335000,1),(839,-1320057000,2),(839,-1300699800,3),(839,-1287396000,2),(839,-1269250200,3),(839,-1255946400,2),(839,-1237800600,3),(839,-1224496800,2),(839,-1206351000,3),(839,-1192442400,2),(839,-1174901400,3),(839,-1160992800,2),(839,-1143451800,3),(839,-1125914400,2),(839,-1112607000,3),(839,-1094464800,2),(839,-1081157400,3),(839,-1063015200,2),(839,-1049707800,3),(839,-1031565600,2),(839,-1018258200,3),(839,-1000116000,2),(839,-986808600,3),(839,-968061600,2),(839,-955359000,3),(839,-936612000,2),(839,-923304600,3),(839,-757425600,6),(839,152632800,4),(839,162309600,5),(839,183477600,4),(839,194968800,5),(839,215532000,4),(839,226418400,5),(839,246981600,4),(839,257868000,5),(839,278431200,4),(839,289317600,5),(839,309880800,4),(839,320767200,5),(839,341330400,4),(839,352216800,5),(839,372780000,4),(839,384271200,5),(839,404834400,4),(839,415720800,5),(839,436284000,4),(839,447170400,5),(839,467733600,4),(839,478620000,5),(839,499183200,4),(839,510069600,5),(839,530632800,4),(839,541519200,5),(839,562082400,4),(839,573573600,5),(839,594136800,4),(839,605023200,5),(839,623772000,4),(839,637682400,5),(839,655221600,4),(839,669132000,5),(839,686671200,4),(839,700581600,5),(839,718120800,4),(839,732636000,5),(839,749570400,4),(839,764085600,5),(839,781020000,4),(839,795535200,5),(839,812469600,4),(839,826984800,5),(839,844524000,4),(839,858434400,5),(839,875973600,4),(839,889884000,5),(839,907423200,4),(839,921938400,5),(839,938872800,4),(839,953388000,5),(839,970322400,4),(839,984837600,5),(839,1002376800,4),(839,1016287200,5),(839,1033826400,4),(839,1047736800,5),(839,1065276000,4),(839,1079791200,5),(839,1096725600,4),(839,1111240800,5),(839,1128175200,4),(839,1142690400,5),(839,1159624800,4),(839,1174140000,5),(839,1191074400,4),(839,1207404000,5),(839,1222524000,4),(839,1238853600,5),(839,1253973600,4),(839,1270303200,5),(839,1285423200,4),(839,1301752800,5),(839,1316872800,4),(839,1333202400,5),(839,1348927200,4),(839,1365256800,5),(839,1380376800,4),(839,1396706400,5),(839,1411826400,4),(839,1428156000,5),(839,1443276000,4),(839,1459605600,5),(839,1474725600,4),(839,1491055200,5),(839,1506175200,4),(839,1522504800,5),(839,1538229600,4),(839,1554559200,5),(839,1569679200,4),(839,1586008800,5),(839,1601128800,4),(839,1617458400,5),(839,1632578400,4),(839,1648908000,5),(839,1664028000,4),(839,1680357600,5),(839,1695477600,4),(839,1712412000,5),(839,1727532000,4),(839,1743861600,5),(839,1758981600,4),(839,1775311200,5),(839,1790431200,4),(839,1806760800,5),(839,1821880800,4),(839,1838210400,5),(839,1853330400,4),(839,1869660000,5),(839,1885384800,4),(839,1901714400,5),(839,1916834400,4),(839,1933164000,5),(839,1948284000,4),(839,1964613600,5),(839,1979733600,4),(839,1996063200,5),(839,2011183200,4),(839,2027512800,5),(839,2042632800,4),(839,2058962400,5),(839,2074687200,4),(839,2091016800,5),(839,2106136800,4),(839,2122466400,5),(839,2137586400,4),(840,-2147483648,0),(840,-407808000,1),(840,2147483647,1),(841,-2147483648,0),(841,1108166400,3),(841,1111885200,1),(841,1130634000,2),(841,1143334800,1),(841,1162083600,2),(841,1174784400,1),(841,1193533200,2),(841,1206838800,1),(841,1224982800,2),(841,1238288400,1),(841,1256432400,2),(841,1269738000,1),(841,1288486800,2),(841,1301187600,1),(841,1319936400,2),(841,1332637200,1),(841,1351386000,2),(841,1364691600,1),(841,1382835600,2),(841,1396141200,1),(841,1414285200,2),(841,1427590800,1),(841,1445734800,2),(841,1459040400,1),(841,1477789200,2),(841,1490490000,1),(841,1509238800,2),(841,1521939600,1),(841,1540688400,2),(841,1553994000,1),(841,1572138000,2),(841,1585443600,1),(841,1603587600,2),(841,1616893200,1),(841,1635642000,2),(841,1648342800,1),(841,1667091600,2),(841,1679792400,1),(841,1698541200,2),(841,1711846800,1),(841,1729990800,2),(841,1743296400,1),(841,1761440400,2),(841,1774746000,1),(841,1792890000,2),(841,1806195600,1),(841,1824944400,2),(841,1837645200,1),(841,1856394000,2),(841,1869094800,1),(841,1887843600,2),(841,1901149200,1),(841,1919293200,2),(841,1932598800,1),(841,1950742800,2),(841,1964048400,1),(841,1982797200,2),(841,1995498000,1),(841,2014246800,2),(841,2026947600,1),(841,2045696400,2),(841,2058397200,1),(841,2077146000,2),(841,2090451600,1),(841,2108595600,2),(841,2121901200,1),(841,2140045200,2),(841,2147483647,2),(842,-2147483648,0),(842,-380073600,1),(842,2147483647,1),(843,-2147483648,2),(843,-1691884800,1),(843,-1680573600,2),(843,-927511200,1),(843,-857257200,3),(843,-844556400,4),(843,-828226800,3),(843,-812502000,4),(843,-796777200,3),(843,-781052400,4),(843,-765327600,3),(843,-340844400,4),(843,-324514800,3),(843,-308790000,4),(843,-293065200,3),(843,-277340400,4),(843,-261615600,3),(843,-245890800,4),(843,-230166000,3),(843,-214441200,4),(843,-198716400,3),(843,-182991600,4),(843,-166662000,3),(843,-147913200,4),(843,-135212400,3),(843,315529200,2),(843,323830800,5),(843,338950800,6),(843,354675600,5),(843,370400400,6),(843,386125200,5),(843,401850000,6),(843,417574800,5),(843,433299600,6),(843,449024400,5),(843,465354000,6),(843,481078800,5),(843,496803600,6),(843,512528400,5),(843,528253200,6),(843,543978000,5),(843,559702800,6),(843,575427600,5),(843,591152400,6),(843,606877200,5),(843,622602000,6),(843,638326800,5),(843,654656400,6),(843,670381200,5),(843,686106000,6),(843,701830800,5),(843,717555600,6),(843,733280400,5),(843,749005200,6),(843,764730000,5),(843,780454800,6),(843,796179600,5),(843,811904400,6),(843,828234000,5),(843,846378000,6),(843,859683600,5),(843,877827600,6),(843,891133200,5),(843,909277200,6),(843,922582800,5),(843,941331600,6),(843,954032400,5),(843,972781200,6),(843,985482000,5),(843,1004230800,6),(843,1017536400,5),(843,1035680400,6),(843,1048986000,5),(843,1067130000,6),(843,1080435600,5),(843,1099184400,6),(843,1111885200,5),(843,1130634000,6),(843,1143334800,5),(843,1162083600,6),(843,1174784400,5),(843,1193533200,6),(843,1206838800,5),(843,1224982800,6),(843,1238288400,5),(843,1256432400,6),(843,1269738000,5),(843,1288486800,6),(843,1301187600,5),(843,1319936400,6),(843,1332637200,5),(843,1351386000,6),(843,1364691600,5),(843,1382835600,6),(843,1396141200,5),(843,1414285200,6),(843,1427590800,5),(843,1445734800,6),(843,1459040400,5),(843,1477789200,6),(843,1490490000,5),(843,1509238800,6),(843,1521939600,5),(843,1540688400,6),(843,1553994000,5),(843,1572138000,6),(843,1585443600,5),(843,1603587600,6),(843,1616893200,5),(843,1635642000,6),(843,1648342800,5),(843,1667091600,6),(843,1679792400,5),(843,1698541200,6),(843,1711846800,5),(843,1729990800,6),(843,1743296400,5),(843,1761440400,6),(843,1774746000,5),(843,1792890000,6),(843,1806195600,5),(843,1824944400,6),(843,1837645200,5),(843,1856394000,6),(843,1869094800,5),(843,1887843600,6),(843,1901149200,5),(843,1919293200,6),(843,1932598800,5),(843,1950742800,6),(843,1964048400,5),(843,1982797200,6),(843,1995498000,5),(843,2014246800,6),(843,2026947600,5),(843,2045696400,6),(843,2058397200,5),(843,2077146000,6),(843,2090451600,5),(843,2108595600,6),(843,2121901200,5),(843,2140045200,6),(844,-2147483648,0),(844,-719636812,1),(844,2147483647,1),(845,-2147483648,0),(845,-1441170468,1),(845,-1247547600,3),(845,354909600,2),(845,370717200,3),(845,386445600,2),(845,402253200,3),(845,417981600,2),(845,433789200,3),(845,449604000,2),(845,465336000,4),(845,481060800,5),(845,496785600,4),(845,512510400,5),(845,528235200,4),(845,543960000,5),(845,559684800,4),(845,575409600,5),(845,591134400,4),(845,606859200,5),(845,622584000,4),(845,638308800,5),(845,654638400,4),(845,670363200,6),(845,686091600,7),(845,695768400,4),(845,701812800,5),(845,717537600,4),(845,733262400,5),(845,748987200,4),(845,764712000,5),(845,780436800,4),(845,796161600,5),(845,811886400,4),(845,828216000,5),(845,846360000,4),(845,859665600,5),(845,877809600,4),(845,891115200,5),(845,909259200,4),(845,922564800,5),(845,941313600,4),(845,954014400,5),(845,972763200,4),(845,985464000,5),(845,1004212800,4),(845,1017518400,5),(845,1035662400,4),(845,1048968000,5),(845,1067112000,4),(845,1080417600,5),(845,1099166400,4),(845,2147483647,4),(846,-2147483648,0),(846,-1230776624,2),(846,108165600,1),(846,118270800,2),(846,136591200,1),(846,149806800,2),(846,168127200,1),(846,181342800,2),(846,199749600,1),(846,215643600,2),(846,231285600,1),(846,244501200,2),(846,262735200,1),(846,275950800,2),(846,481154400,1),(846,496962000,2),(846,512949600,1),(846,528670800,2),(846,544399200,1),(846,560120400,2),(846,575848800,1),(846,592174800,2),(846,610581600,1),(846,623624400,2),(846,641167200,1),(846,655074000,2),(846,671839200,1),(846,685918800,2),(846,702856800,1),(846,717973200,2),(846,733701600,1),(846,749422800,2),(846,765151200,1),(846,779662800,2),(846,797205600,1),(846,811116000,3),(846,828655200,1),(846,843170400,3),(846,860104800,1),(846,874620000,3),(846,891554400,1),(846,906069600,3),(846,930780000,4),(846,938124000,3),(846,954367200,4),(846,970178400,3),(846,985816800,4),(846,1001628000,3),(846,1017352800,1),(846,1033077600,3),(846,1048802400,1),(846,1066946400,3),(846,1080252000,1),(846,1097791200,3),(846,1112306400,1),(846,1128031200,3),(846,1143756000,1),(846,1161900000,3),(846,1175205600,1),(846,1193349600,3),(846,1206655200,1),(846,1225404000,3),(846,1238104800,1),(846,1256853600,3),(846,1269554400,1),(846,1288303200,3),(846,1301608800,1),(846,1319752800,3),(846,1333058400,1),(846,1387486800,2),(846,1395957600,1),(846,1414706400,3),(846,1427407200,1),(846,1446156000,3),(846,1459461600,1),(846,1477605600,3),(846,1490911200,1),(846,1509055200,3),(846,1522360800,1),(846,1540504800,3),(846,1553810400,1),(846,1571954400,3),(846,1585260000,1),(846,1604008800,3),(846,1616709600,1),(846,1635458400,3),(846,1648764000,1),(846,1666908000,3),(846,1680213600,1),(846,1698357600,3),(846,1711663200,1),(846,1729807200,3),(846,1743112800,1),(846,1761861600,3),(846,1774562400,1),(846,1793311200,3),(846,1806012000,1),(846,1824760800,3),(846,1838066400,1),(846,1856210400,3),(846,1869516000,1),(846,1887660000,3),(846,1900965600,1),(846,1919109600,3),(846,1932415200,1),(846,1951164000,3),(846,1963864800,1),(846,1982613600,3),(846,1995919200,1),(846,2014063200,3),(846,2027368800,1),(846,2045512800,3),(846,2058818400,1),(846,2076962400,3),(846,2090268000,1),(846,2109016800,3),(846,2121717600,1),(846,2140466400,3),(847,-2147483648,0),(847,-1441194596,1),(847,-1247572800,3),(847,354884400,2),(847,370692000,3),(847,386420400,4),(847,402231600,1),(847,417960000,4),(847,433767600,1),(847,449582400,4),(847,465314400,5),(847,481039200,6),(847,496764000,5),(847,512488800,6),(847,528213600,5),(847,543938400,6),(847,559663200,5),(847,575388000,6),(847,591112800,5),(847,606837600,6),(847,622562400,5),(847,638287200,6),(847,654616800,5),(847,670341600,7),(847,686070000,8),(847,695746800,5),(847,701791200,6),(847,717516000,5),(847,733240800,6),(847,748965600,5),(847,764690400,6),(847,780415200,5),(847,796140000,6),(847,811864800,5),(847,828194400,6),(847,846338400,5),(847,859644000,6),(847,877788000,5),(847,891093600,6),(847,909237600,5),(847,922543200,6),(847,941292000,5),(847,953992800,6),(847,972741600,5),(847,985442400,6),(847,1004191200,5),(847,1017496800,6),(847,1035640800,5),(847,1048946400,6),(847,1067090400,5),(847,1080396000,6),(847,1099144800,5),(847,1111845600,6),(847,1130594400,5),(847,1143295200,6),(847,1162044000,5),(847,1174744800,6),(847,1193493600,5),(847,1206799200,6),(847,1224943200,5),(847,1238248800,6),(847,1256392800,5),(847,1269698400,7),(847,1288450800,8),(847,1301151600,5),(847,2147483647,5),(848,-2147483648,0),(848,-1441164064,1),(848,-1247544000,2),(848,370724400,3),(848,386445600,4),(848,402256800,2),(848,417985200,4),(848,433792800,2),(848,449607600,4),(848,465339600,5),(848,481064400,6),(848,496789200,5),(848,512514000,6),(848,528238800,5),(848,543963600,6),(848,559688400,5),(848,575413200,6),(848,591138000,5),(848,606862800,6),(848,622587600,5),(848,638312400,6),(848,654642000,5),(848,670366800,7),(848,686095200,8),(848,695772000,5),(848,701816400,6),(848,717541200,5),(848,733266000,6),(848,748990800,5),(848,764715600,6),(848,780440400,8),(848,796168800,7),(848,811893600,8),(848,828223200,7),(848,846367200,8),(848,859672800,7),(848,877816800,8),(848,891122400,7),(848,909266400,8),(848,922572000,7),(848,941320800,8),(848,954021600,7),(848,972770400,8),(848,985471200,7),(848,1004220000,8),(848,1017525600,7),(848,1035669600,8),(848,1048975200,7),(848,1067119200,8),(848,1080424800,7),(848,1099173600,5),(848,2147483647,5),(849,-2147483648,0),(849,-1441165720,1),(849,-1247544000,2),(849,354913200,3),(849,370720800,4),(849,386445600,3),(849,402256800,2),(849,417985200,3),(849,433792800,2),(849,449607600,3),(849,465339600,5),(849,481064400,6),(849,496789200,5),(849,512514000,6),(849,528238800,5),(849,543963600,6),(849,559688400,5),(849,575413200,6),(849,591138000,5),(849,606862800,6),(849,622587600,5),(849,638312400,6),(849,654642000,5),(849,670366800,7),(849,686095200,8),(849,695772000,5),(849,701816400,6),(849,717541200,5),(849,733266000,6),(849,748990800,5),(849,764715600,6),(849,780440400,5),(849,796165200,6),(849,811890000,5),(849,828219600,6),(849,846363600,5),(849,859669200,6),(849,877813200,5),(849,891118800,6),(849,909262800,5),(849,922568400,6),(849,941317200,5),(849,954018000,6),(849,972766800,5),(849,985467600,6),(849,1004216400,5),(849,1017522000,6),(849,1035666000,5),(849,1048971600,6),(849,1067115600,5),(849,1080421200,6),(849,1099170000,5),(849,2147483647,5),(850,-2147483648,0),(850,-1441166012,1),(850,-1247544000,3),(850,354913200,2),(850,370720800,3),(850,386449200,2),(850,402256800,3),(850,417985200,2),(850,433792800,3),(850,449607600,2),(850,465339600,4),(850,481064400,5),(850,496789200,4),(850,512514000,5),(850,528238800,4),(850,543963600,5),(850,559688400,4),(850,575413200,5),(850,591138000,4),(850,606862800,5),(850,622587600,4),(850,638312400,5),(850,654642000,4),(850,670366800,6),(850,686095200,7),(850,695772000,3),(850,2147483647,3),(851,-2147483648,0),(851,-1441166012,1),(851,-1247544000,3),(851,354913200,2),(851,370720800,3),(851,386449200,2),(851,402256800,3),(851,417985200,2),(851,433792800,3),(851,449607600,2),(851,465339600,4),(851,481064400,5),(851,496789200,4),(851,512514000,5),(851,528238800,4),(851,543963600,5),(851,559688400,4),(851,575413200,5),(851,591138000,4),(851,606862800,5),(851,622587600,4),(851,638312400,5),(851,654642000,4),(851,670366800,6),(851,686095200,7),(851,695772000,3),(851,2147483647,3),(852,-2147483648,0),(852,-1441164464,1),(852,-1247540400,2),(852,370724400,3),(852,386445600,4),(852,402256800,2),(852,417985200,4),(852,433792800,2),(852,449607600,4),(852,465339600,5),(852,481064400,6),(852,496789200,5),(852,512514000,6),(852,528238800,5),(852,543963600,6),(852,559688400,5),(852,575413200,6),(852,591138000,5),(852,606862800,6),(852,622587600,5),(852,638312400,6),(852,654642000,5),(852,670366800,7),(852,686095200,8),(852,695772000,5),(852,701816400,6),(852,717541200,5),(852,733266000,6),(852,748990800,5),(852,764715600,6),(852,780440400,5),(852,796165200,6),(852,811890000,5),(852,828219600,6),(852,846363600,5),(852,859669200,6),(852,877813200,5),(852,891118800,6),(852,909262800,5),(852,922568400,7),(852,941320800,8),(852,954021600,7),(852,972770400,8),(852,985471200,7),(852,1004220000,8),(852,1017525600,7),(852,1035669600,8),(852,1048975200,7),(852,1067119200,8),(852,1080424800,7),(852,1099173600,5),(852,2147483647,5),(853,-2147483648,1),(853,-1641005856,2),(853,389048400,3),(853,402264000,2),(853,417906000,3),(853,433800000,2),(853,449614800,3),(853,465422400,2),(853,481150800,3),(853,496792800,4),(853,512517600,5),(853,528242400,4),(853,543967200,5),(853,559692000,4),(853,575416800,5),(853,591141600,4),(853,606866400,5),(853,622591200,4),(853,638316000,5),(853,654645600,4),(853,670464000,5),(853,686275200,4),(853,702086400,5),(853,717897600,4),(853,733622400,5),(853,749433600,4),(853,765158400,5),(853,780969600,4),(853,796694400,5),(853,812505600,4),(853,828316800,5),(853,844128000,4),(853,859852800,5),(853,875664000,4),(853,891388800,5),(853,907200000,4),(853,922924800,5),(853,938736000,4),(853,954547200,5),(853,970358400,4),(853,986083200,5),(853,1001894400,4),(853,1017619200,5),(853,1033430400,4),(853,1049155200,5),(853,1064966400,4),(853,1080777600,5),(853,1096588800,4),(853,1112313600,5),(853,1128124800,4),(853,1143849600,5),(853,1159660800,4),(853,1175385600,5),(853,1191196800,4),(853,2147483647,4),(854,-2147483648,0),(854,-1577935568,1),(854,76190400,2),(854,2147483647,2),(855,-2147483648,0),(855,-1441163964,1),(855,-405140400,3),(855,354916800,2),(855,370724400,3),(855,386452800,2),(855,402260400,3),(855,417988800,2),(855,433796400,3),(855,449611200,2),(855,465343200,4),(855,481068000,5),(855,496792800,4),(855,512517600,5),(855,528242400,4),(855,543967200,5),(855,559692000,4),(855,575416800,5),(855,591141600,4),(855,606866400,5),(855,622591200,4),(855,638316000,5),(855,654645600,4),(855,670370400,6),(855,686098800,7),(855,701823600,6),(855,717548400,4),(855,820440000,3),(855,828234000,8),(855,846378000,9),(855,852062400,3),(855,859680000,2),(855,877824000,3),(855,891129600,2),(855,909273600,3),(855,922579200,2),(855,941328000,3),(855,954028800,2),(855,972777600,3),(855,985478400,2),(855,1004227200,3),(855,1017532800,2),(855,1035676800,3),(855,1048982400,2),(855,1067126400,3),(855,1080432000,2),(855,1099180800,3),(855,1111881600,2),(855,1130630400,3),(855,1143331200,2),(855,1162080000,3),(855,1174780800,2),(855,1193529600,3),(855,1206835200,2),(855,1224979200,3),(855,1238284800,2),(855,1256428800,3),(855,1269734400,2),(855,1288483200,3),(855,1301184000,2),(855,1319932800,3),(855,1332633600,2),(855,1351382400,3),(855,1364688000,2),(855,1382832000,3),(855,1396137600,2),(855,1414281600,3),(855,1427587200,2),(855,1445731200,3),(855,2147483647,3),(856,-2147483648,1),(856,-1570084924,2),(856,2147483647,2),(857,-2147483648,0),(857,-1579844100,1),(857,-1247551200,3),(857,354906000,2),(857,370713600,3),(857,386442000,2),(857,402249600,3),(857,417978000,2),(857,433785600,3),(857,449600400,2),(857,465332400,4),(857,481057200,5),(857,496782000,4),(857,512506800,5),(857,528231600,4),(857,543956400,5),(857,559681200,4),(857,575406000,5),(857,591130800,4),(857,606855600,5),(857,622580400,4),(857,638305200,5),(857,654634800,4),(857,670359600,6),(857,686088000,7),(857,695764800,4),(857,701809200,5),(857,717534000,4),(857,733258800,5),(857,748983600,4),(857,764708400,5),(857,780433200,4),(857,796158000,5),(857,801590400,8),(857,811886400,7),(857,828216000,6),(857,846360000,7),(857,859665600,6),(857,877809600,7),(857,891115200,6),(857,909259200,7),(857,922564800,6),(857,941313600,7),(857,954014400,6),(857,972763200,7),(857,985464000,6),(857,1004212800,7),(857,1017518400,6),(857,1035662400,7),(857,1048968000,6),(857,1067112000,7),(857,1080417600,6),(857,1099166400,7),(857,1111867200,6),(857,1130616000,7),(857,1143316800,6),(857,1162065600,7),(857,1174766400,6),(857,1193515200,7),(857,1206820800,6),(857,1224964800,7),(857,1238270400,6),(857,1256414400,7),(857,1269720000,6),(857,1288468800,7),(857,1301169600,4),(857,1414263600,7),(857,1459022400,4),(857,2147483647,4),(858,-2147483648,2),(858,-1570413600,1),(858,-1552186800,2),(858,-1538359200,1),(858,-1522551600,2),(858,-1507514400,1),(858,-1490583600,2),(858,-1473645600,1),(858,-1460948400,2),(858,-399866400,1),(858,-386650800,2),(858,-368330400,1),(858,-355114800,2),(858,-336794400,1),(858,-323578800,2),(858,-305172000,1),(858,-291956400,2),(858,-273636000,1),(858,-260420400,2),(858,78012000,1),(858,86734800,2),(858,105055200,1),(858,118270800,2),(858,136591200,1),(858,149806800,2),(858,168127200,1),(858,181342800,2),(858,199749600,1),(858,212965200,2),(858,231285600,1),(858,244501200,2),(858,262735200,1),(858,275950800,2),(858,452210400,1),(858,466722000,2),(858,483746400,1),(858,498258000,2),(858,515282400,1),(858,529794000,2),(858,546818400,1),(858,561330000,2),(858,581119200,1),(858,592952400,2),(858,610754400,1),(858,624488400,2),(858,641512800,1),(858,656024400,2),(858,673048800,1),(858,687560400,2),(858,704671200,1),(858,718146000,2),(858,733269600,1),(858,748990800,2),(858,764719200,1),(858,780440400,2),(858,796168800,1),(858,811890000,2),(858,828223200,1),(858,843944400,2),(858,859672800,1),(858,875394000,2),(858,891122400,1),(858,906843600,2),(858,922572000,1),(858,941317200,2),(858,954021600,1),(858,972766800,2),(858,985471200,1),(858,1004216400,2),(858,1017525600,1),(858,1035666000,2),(858,1048975200,1),(858,1067115600,2),(858,1080424800,1),(858,1099170000,2),(858,1111874400,1),(858,1130619600,2),(858,1143324000,1),(858,1162069200,2),(858,1174773600,1),(858,1193518800,2),(858,1206828000,1),(858,1224968400,2),(858,1238277600,1),(858,1256418000,2),(858,1269727200,1),(858,1288472400,2),(858,1301176800,1),(858,1319922000,2),(858,1332626400,1),(858,1351371600,2),(858,1364680800,1),(858,1382821200,2),(858,1396130400,1),(858,1414270800,2),(858,1427580000,1),(858,1445720400,2),(858,1459029600,1),(858,1477774800,2),(858,1490479200,1),(858,1509224400,2),(858,1521928800,1),(858,1540674000,2),(858,1553983200,1),(858,1572123600,2),(858,1585432800,1),(858,1603573200,2),(858,1616882400,1),(858,1635627600,2),(858,1648332000,1),(858,1667077200,2),(858,1679781600,1),(858,1698526800,2),(858,1711836000,1),(858,1729976400,2),(858,1743285600,1),(858,1761426000,2),(858,1774735200,1),(858,1792875600,2),(858,1806184800,1),(858,1824930000,2),(858,1837634400,1),(858,1856379600,2),(858,1869084000,1),(858,1887829200,2),(858,1901138400,1),(858,1919278800,2),(858,1932588000,1),(858,1950728400,2),(858,1964037600,1),(858,1982782800,2),(858,1995487200,1),(858,2014232400,2),(858,2026936800,1),(858,2045682000,2),(858,2058386400,1),(858,2077131600,2),(858,2090440800,1),(858,2108581200,2),(858,2121890400,1),(858,2140030800,2),(859,-2147483648,0),(859,-1441169904,1),(859,-1247547600,3),(859,354909600,2),(859,370717200,3),(859,386445600,2),(859,402253200,3),(859,417981600,2),(859,433789200,3),(859,449604000,2),(859,465336000,4),(859,481060800,5),(859,496785600,4),(859,512510400,5),(859,528235200,4),(859,543960000,5),(859,559684800,4),(859,575409600,5),(859,591134400,4),(859,606859200,5),(859,622584000,4),(859,638308800,5),(859,654638400,4),(859,670363200,6),(859,683582400,1),(859,703018800,6),(859,717530400,1),(859,734468400,6),(859,748980000,1),(859,765918000,6),(859,780429600,1),(859,797367600,6),(859,811879200,1),(859,828817200,6),(859,843933600,1),(859,859671000,8),(859,877811400,1),(859,891120600,8),(859,909261000,1),(859,922570200,8),(859,941315400,1),(859,954019800,8),(859,972765000,1),(859,985469400,8),(859,1004214600,1),(859,1017523800,8),(859,1035664200,1),(859,1048973400,8),(859,1067113800,1),(859,1080423000,8),(859,1099168200,1),(859,1111872600,8),(859,1123783200,3),(859,2147483647,3),(860,-2147483648,0),(860,-1383464380,1),(860,-1167636600,2),(860,2147483647,2),(861,-2147483648,1),(861,-2019705670,2),(861,-891581400,3),(861,-872058600,2),(861,-862637400,3),(861,-764145000,2),(862,-2147483648,0),(862,-1579419232,1),(862,-1247558400,3),(862,354898800,2),(862,370706400,3),(862,386434800,2),(862,402242400,3),(862,417970800,2),(862,433778400,3),(862,449593200,2),(862,465325200,4),(862,481050000,5),(862,496774800,4),(862,512499600,5),(862,528224400,4),(862,543949200,5),(862,559674000,4),(862,575398800,5),(862,591123600,4),(862,606848400,5),(862,622573200,4),(862,638298000,5),(862,654627600,4),(862,670352400,6),(862,686080800,7),(862,695757600,4),(862,701802000,5),(862,717526800,4),(862,733251600,5),(862,748976400,4),(862,764701200,5),(862,780426000,4),(862,796150800,5),(862,811875600,4),(862,828205200,5),(862,846349200,4),(862,859654800,5),(862,877798800,4),(862,891104400,5),(862,909248400,4),(862,922554000,5),(862,941302800,4),(862,954003600,5),(862,972752400,4),(862,985453200,5),(862,1004202000,4),(862,1017507600,5),(862,1035651600,4),(862,1048957200,5),(862,1067101200,4),(862,1080406800,5),(862,1099155600,4),(862,1111856400,5),(862,1130605200,4),(862,1143306000,5),(862,1162054800,4),(862,1174755600,5),(862,1193504400,4),(862,1206810000,5),(862,1224954000,4),(862,1238259600,5),(862,1256403600,4),(862,1269709200,5),(862,1288458000,4),(862,1301158800,8),(862,1414252800,7),(862,1459015200,3),(862,2147483647,3),(863,-2147483648,0),(863,-2032933080,1),(863,252435600,2),(863,417974400,4),(863,433778400,3),(863,449593200,4),(863,465314400,3),(863,481042800,4),(863,496764000,3),(863,512492400,4),(863,528213600,3),(863,543942000,4),(863,559663200,3),(863,575391600,4),(863,591112800,3),(863,606841200,4),(863,622562400,3),(863,638290800,4),(863,654616800,3),(863,670345200,4),(863,686066400,3),(863,701794800,4),(863,717516000,3),(863,733244400,4),(863,748965600,3),(863,764694000,4),(863,780415200,3),(863,796143600,4),(863,811864800,3),(863,828198000,4),(863,843919200,3),(863,859647600,4),(863,875368800,3),(863,891097200,4),(863,906818400,3),(863,988390800,4),(863,1001692800,3),(863,1017421200,4),(863,1033142400,3),(863,1048870800,4),(863,1064592000,3),(863,1080320400,4),(863,1096041600,3),(863,1111770000,4),(863,1127491200,3),(863,1143219600,4),(863,1159545600,3),(863,1206889200,2),(863,1427479200,5),(863,1443193200,2),(863,1458928800,5),(863,1474642800,2),(863,2147483647,2),(864,-2147483648,2),(864,-1600675200,1),(864,-1585904400,2),(864,-933667200,1),(864,-922093200,2),(864,-908870400,1),(864,-888829200,2),(864,-881049600,1),(864,-767869200,2),(864,-745833600,1),(864,-733827600,2),(864,-716889600,1),(864,-699613200,2),(864,-683884800,1),(864,-670669200,2),(864,-652348800,1),(864,-650019600,2),(864,515527200,1),(864,527014800,2),(864,545162400,1),(864,558464400,2),(864,577216800,1),(864,589914000,2),(864,608666400,1),(864,621968400,2),(864,640116000,1),(864,653418000,2),(864,671565600,1),(864,684867600,2),(865,-2147483648,2),(865,-1600675200,1),(865,-1585904400,2),(865,-933667200,1),(865,-922093200,2),(865,-908870400,1),(865,-888829200,2),(865,-881049600,1),(865,-767869200,2),(865,-745833600,1),(865,-733827600,2),(865,-716889600,1),(865,-699613200,2),(865,-683884800,1),(865,-670669200,2),(865,-652348800,1),(865,-650019600,2),(865,515527200,1),(865,527014800,2),(865,545162400,1),(865,558464400,2),(865,577216800,1),(865,589914000,2),(865,608666400,1),(865,621968400,2),(865,640116000,1),(865,653418000,2),(865,671565600,1),(865,684867600,2),(866,-2147483648,1),(866,-2019705572,2),(866,-883287000,3),(866,-862639200,4),(866,-764051400,2),(866,832962600,5),(866,846266400,6),(866,1145039400,2),(866,2147483647,2),(867,-2147483648,1),(867,-891582800,2),(867,-872058600,3),(867,-862637400,2),(867,-576138600,4),(867,1245430800,5),(867,1262278800,4),(867,2147483647,4),(868,-2147483648,0),(868,-1577931912,2),(868,-1568592000,1),(868,-1554080400,2),(868,-1537142400,1),(868,-1522630800,2),(868,-1505692800,1),(868,-1491181200,2),(868,-1474243200,1),(868,-1459126800,2),(868,-242265600,1),(868,-228877200,2),(868,-210556800,1),(868,-197427600,2),(868,-178934400,1),(868,-165718800,2),(868,-147398400,1),(868,-134269200,2),(868,-116467200,1),(868,-102646800,2),(868,-84326400,1),(868,-71110800,2),(868,-52704000,1),(868,-39488400,2),(868,-21168000,1),(868,-7952400,2),(868,10368000,1),(868,23583600,2),(868,41904000,1),(868,55119600,2),(868,73526400,1),(868,86742000,2),(868,105062400,1),(868,118278000,2),(868,136598400,1),(868,149814000,2),(868,168134400,1),(868,181350000,2),(868,199756800,1),(868,212972400,2),(868,231292800,1),(868,241916400,2),(868,262828800,1),(868,273452400,2),(868,418694400,1),(868,433810800,2),(868,450316800,1),(868,465433200,2),(868,508896000,1),(868,529196400,2),(868,541555200,1),(868,562633200,2),(868,574387200,1),(868,594255600,2),(868,607305600,1),(868,623199600,2),(868,638928000,1),(868,654649200,2),(868,670456800,1),(868,686264400,2),(868,702684000,1),(868,717886800,2),(868,733096800,1),(868,748904400,2),(868,765151200,1),(868,780958800,2),(868,796687200,1),(868,812494800,2),(868,828309600,1),(868,844117200,2),(868,859759200,1),(868,875653200,2),(868,891208800,1),(868,907189200,2),(868,922917600,1),(868,938725200,2),(868,954540000,1),(868,970347600,2),(868,986076000,1),(868,1001883600,2),(868,1017612000,1),(868,1033419600,2),(868,1049148000,1),(868,1064955600,2),(868,1080770400,1),(868,1096578000,2),(868,1112306400,1),(868,1128114000,2),(868,1143842400,1),(868,1158872400,2),(868,1175205600,1),(868,1193950800,2),(868,1207260000,1),(868,1225486800,2),(868,1238104800,1),(868,1256850000,2),(868,1270159200,1),(868,1288299600,2),(868,1301608800,1),(868,1319749200,2),(868,1333058400,1),(868,1351198800,2),(868,1364508000,1),(868,1382648400,2),(868,1395957600,1),(868,1414702800,2),(868,1427407200,1),(868,1446152400,2),(868,1458856800,1),(868,1477602000,2),(868,1490911200,1),(868,1509051600,2),(868,1522360800,1),(868,1540501200,2),(868,1553810400,1),(868,1571950800,2),(868,1585260000,1),(868,1604005200,2),(868,1616709600,1),(868,1635454800,2),(868,1648159200,1),(868,1666904400,2),(868,1680213600,1),(868,1698354000,2),(868,1711663200,1),(868,1729803600,2),(868,1743112800,1),(868,1761858000,2),(868,1774562400,1),(868,1793307600,2),(868,1806012000,1),(868,1824757200,2),(868,1838066400,1),(868,1856206800,2),(868,1869516000,1),(868,1887656400,2),(868,1900965600,1),(868,1919106000,2),(868,1932415200,1),(868,1951160400,2),(868,1963864800,1),(868,1982610000,2),(868,1995314400,1),(868,2014059600,2),(868,2027368800,1),(868,2045509200,2),(868,2058818400,1),(868,2076958800,2),(868,2090268000,1),(868,2109013200,2),(868,2121717600,1),(868,2140462800,2),(869,-2147483648,1),(869,-891582800,2),(869,-872058600,3),(869,-862637400,2),(869,-576138600,4),(869,1245430800,5),(869,1262278800,4),(869,2147483647,4),(870,-2147483648,0),(870,-1830414140,1),(870,-879152400,2),(870,199897200,1),(870,969120000,2),(870,2147483647,2),(871,-2147483648,0),(871,-1577936472,1),(871,2147483647,1),(872,-2147483648,0),(872,-1441168512,1),(872,-1247547600,3),(872,354909600,2),(872,370717200,3),(872,386445600,2),(872,402253200,3),(872,417981600,2),(872,433789200,3),(872,449604000,2),(872,465336000,4),(872,481060800,5),(872,496785600,4),(872,512510400,5),(872,528235200,4),(872,543960000,5),(872,559684800,4),(872,575409600,5),(872,591134400,4),(872,606859200,5),(872,622584000,4),(872,638308800,5),(872,654638400,4),(872,670363200,6),(872,684363600,7),(872,2147483647,7),(873,-2147483648,0),(873,-1518920148,2),(873,166572000,1),(873,182293200,2),(873,200959200,1),(873,213829200,2),(873,228866400,1),(873,243982800,2),(873,260316000,1),(873,276123600,2),(873,291765600,1),(873,307486800,2),(873,323820000,1),(873,338936400,2),(873,354664800,1),(873,370386000,2),(873,386114400,1),(873,401835600,2),(873,417564000,1),(873,433285200,2),(873,449013600,1),(873,465339600,2),(873,481068000,1),(873,496789200,2),(873,512517600,1),(873,528238800,2),(873,543967200,1),(873,559688400,2),(873,575416800,1),(873,591138000,2),(873,606866400,1),(873,622587600,2),(873,638316000,1),(873,654642000,2),(873,670370400,1),(873,686091600,2),(873,701820000,1),(873,717541200,2),(873,733269600,1),(873,748990800,2),(873,764719200,1),(873,780440400,2),(873,796168800,1),(873,811890000,2),(873,828223200,1),(873,843944400,2),(873,859672800,1),(873,875394000,2),(873,891122400,1),(873,909277200,3),(873,922582800,4),(873,941331600,3),(873,954032400,4),(873,972781200,3),(873,985482000,4),(873,1004230800,3),(873,1017536400,4),(873,1035680400,3),(873,1048986000,4),(873,1067130000,3),(873,1080435600,4),(873,1099184400,3),(873,1111885200,4),(873,1130634000,3),(873,1143334800,4),(873,1162083600,3),(873,1174784400,4),(873,1193533200,3),(873,1206838800,4),(873,1224982800,3),(873,1238288400,4),(873,1256432400,3),(873,1269738000,4),(873,1288486800,3),(873,1301187600,4),(873,1319936400,3),(873,1332637200,4),(873,1351386000,3),(873,1364691600,4),(873,1382835600,3),(873,1396141200,4),(873,1414285200,3),(873,1427590800,4),(873,1445734800,3),(873,1459040400,4),(873,1473282000,5),(873,1509238800,3),(873,1521939600,4),(873,1540688400,3),(873,1553994000,4),(873,1572138000,3),(873,1585443600,4),(873,1603587600,3),(873,1616893200,4),(873,1635642000,3),(873,1648342800,4),(873,1667091600,3),(873,1679792400,4),(873,1698541200,3),(873,1711846800,4),(873,1729990800,3),(873,1743296400,4),(873,1761440400,3),(873,1774746000,4),(873,1792890000,3),(873,1806195600,4),(873,1824944400,3),(873,1837645200,4),(873,1856394000,3),(873,1869094800,4),(873,1887843600,3),(873,1901149200,4),(873,1919293200,3),(873,1932598800,4),(873,1950742800,3),(873,1964048400,4),(873,1982797200,3),(873,1995498000,4),(873,2014246800,3),(873,2026947600,4),(873,2045696400,3),(873,2058397200,4),(873,2077146000,3),(873,2090451600,4),(873,2108595600,3),(873,2121901200,4),(873,2140045200,3),(874,-2147483648,3),(874,-933638400,1),(874,-923097600,2),(874,-919036800,1),(874,-857347200,2),(874,-844300800,1),(874,-825811200,2),(874,-812678400,1),(874,-794188800,2),(874,-779846400,1),(874,-762652800,2),(874,-748310400,1),(874,-731116800,2),(874,-682653600,3),(874,-399088800,4),(874,-386650800,3),(874,-368330400,4),(874,-355114800,3),(874,-336790800,4),(874,-323654400,3),(874,-305168400,4),(874,-292032000,3),(874,-273632400,4),(874,-260496000,3),(874,-242096400,4),(874,-228960000,3),(874,-210560400,4),(874,-197424000,3),(874,-178938000,4),(874,-165801600,3),(874,-147402000,4),(874,-134265600,3),(874,-115866000,4),(874,-102643200,3),(874,-84330000,4),(874,-81313200,6),(874,142380000,5),(874,150843600,6),(874,167176800,5),(874,178664400,6),(874,334101600,7),(874,337730400,8),(874,452642400,7),(874,462319200,8),(874,482277600,5),(874,494370000,6),(874,516751200,5),(874,526424400,6),(874,545436000,5),(874,558478800,6),(874,576626400,5),(874,589323600,6),(874,609890400,5),(874,620773200,6),(874,638316000,5),(874,651618000,6),(874,669765600,5),(874,683672400,6),(874,701820000,5),(874,715726800,6),(874,733701600,5),(874,747176400,6),(874,765151200,5),(874,778021200,6),(874,796600800,5),(874,810075600,6),(874,820447200,3),(874,828655200,4),(874,843170400,9),(874,860104800,4),(874,874620000,9),(874,891554400,4),(874,906069600,9),(874,915141600,3),(874,924213600,4),(874,939934800,3),(874,956268000,4),(874,971989200,3),(874,987717600,4),(874,1003438800,3),(874,1019167200,4),(874,1034888400,3),(874,1050616800,4),(874,1066338000,3),(874,1082066400,4),(874,1096581600,3),(874,1113516000,4),(874,1128380400,3),(874,1143842400,4),(874,1158872400,3),(874,1175378400,4),(874,1189638000,3),(874,1206655200,4),(874,1219957200,3),(874,1238104800,4),(874,1252015200,3),(874,1269640860,4),(874,1281474000,3),(874,1301608860,4),(874,1312146000,3),(874,1333058400,4),(874,1348178400,3),(874,1364508000,4),(874,1380229200,3),(874,1395957600,4),(874,1414098000,3),(874,1427493600,4),(874,1445551200,3),(874,1458946800,4),(874,1477692000,3),(874,1490396400,4),(874,1509141600,3),(874,1521846000,4),(874,1540591200,3),(874,1553810400,4),(874,1572037200,3),(874,1585346400,4),(874,1603490400,3),(874,1616796000,4),(874,1635544800,3),(874,1648245600,4),(874,1666994400,3),(874,1679695200,4),(874,1698444000,3),(874,1711749600,4),(874,1729893600,3),(874,1743199200,4),(874,1761343200,3),(874,1774648800,4),(874,1792792800,3),(874,1806098400,4),(874,1824847200,3),(874,1837548000,4),(874,1856296800,3),(874,1868997600,4),(874,1887746400,3),(874,1901052000,4),(874,1919196000,3),(874,1932501600,4),(874,1950645600,3),(874,1963951200,4),(874,1982700000,3),(874,1995400800,4),(874,2014149600,3),(874,2026850400,4),(874,2045599200,3),(874,2058300000,4),(874,2077048800,3),(874,2090354400,4),(874,2108498400,3),(874,2121804000,4),(874,2139948000,3),(875,-2147483648,2),(875,-1600675200,1),(875,-1585904400,2),(875,-933667200,1),(875,-922093200,2),(875,-908870400,1),(875,-888829200,2),(875,-881049600,1),(875,-767869200,2),(875,-745833600,1),(875,-733827600,2),(875,-716889600,1),(875,-699613200,2),(875,-683884800,1),(875,-670669200,2),(875,-652348800,1),(875,-650019600,2),(875,515527200,1),(875,527014800,2),(875,545162400,1),(875,558464400,2),(875,577216800,1),(875,589914000,2),(875,608666400,1),(875,621968400,2),(875,640116000,1),(875,653418000,2),(875,671565600,1),(875,684867600,2),(876,-2147483648,3),(876,-933638400,1),(876,-923097600,2),(876,-919036800,1),(876,-857347200,2),(876,-844300800,1),(876,-825811200,2),(876,-812678400,1),(876,-794188800,2),(876,-779846400,1),(876,-762652800,2),(876,-748310400,1),(876,-731116800,2),(876,-682653600,3),(876,-399088800,4),(876,-386650800,3),(876,-368330400,4),(876,-355114800,3),(876,-336790800,4),(876,-323654400,3),(876,-305168400,4),(876,-292032000,3),(876,-273632400,4),(876,-260496000,3),(876,-242096400,4),(876,-228960000,3),(876,-210560400,4),(876,-197424000,3),(876,-178938000,4),(876,-165801600,3),(876,-147402000,4),(876,-134265600,3),(876,-115866000,4),(876,-102643200,3),(876,-84330000,4),(876,-81313200,6),(876,142380000,5),(876,150843600,6),(876,167176800,5),(876,178664400,6),(876,334101600,7),(876,337730400,8),(876,452642400,7),(876,462319200,8),(876,482277600,5),(876,494370000,6),(876,516751200,5),(876,526424400,6),(876,545436000,5),(876,558478800,6),(876,576626400,5),(876,589323600,6),(876,609890400,5),(876,620773200,6),(876,638316000,5),(876,651618000,6),(876,669765600,5),(876,683672400,6),(876,701820000,5),(876,715726800,6),(876,733701600,5),(876,747176400,6),(876,765151200,5),(876,778021200,6),(876,796600800,5),(876,810075600,6),(876,820447200,3),(876,828655200,4),(876,843170400,9),(876,860104800,4),(876,874620000,9),(876,891554400,4),(876,906069600,9),(876,915141600,3),(876,924213600,4),(876,939934800,3),(876,956268000,4),(876,971989200,3),(876,987717600,4),(876,1003438800,3),(876,1019167200,4),(876,1034888400,3),(876,1050616800,4),(876,1066338000,3),(876,1082066400,4),(876,1096581600,3),(876,1113516000,4),(876,1128380400,3),(876,1143842400,4),(876,1158872400,3),(876,1175378400,4),(876,1189638000,3),(876,1206655200,4),(876,1220216400,3),(876,1238104800,4),(876,1252015200,3),(876,1269554400,4),(876,1281474000,3),(876,1301608860,4),(876,1312146000,3),(876,1314655200,4),(876,1317330000,3),(876,1333058400,4),(876,1348178400,3),(876,1364508000,4),(876,1380229200,3),(876,1395957600,4),(876,1414098000,3),(876,1427493600,4),(876,1445551200,3),(876,1458946800,4),(876,1477692000,3),(876,1490396400,4),(876,1509141600,3),(876,1521846000,4),(876,1540591200,3),(876,1553810400,4),(876,1572037200,3),(876,1585346400,4),(876,1603490400,3),(876,1616796000,4),(876,1635544800,3),(876,1648245600,4),(876,1666994400,3),(876,1679695200,4),(876,1698444000,3),(876,1711749600,4),(876,1729893600,3),(876,1743199200,4),(876,1761343200,3),(876,1774648800,4),(876,1792792800,3),(876,1806098400,4),(876,1824847200,3),(876,1837548000,4),(876,1856296800,3),(876,1868997600,4),(876,1887746400,3),(876,1901052000,4),(876,1919196000,3),(876,1932501600,4),(876,1950645600,3),(876,1963951200,4),(876,1982700000,3),(876,1995400800,4),(876,2014149600,3),(876,2026850400,4),(876,2045599200,3),(876,2058300000,4),(876,2077048800,3),(876,2090354400,4),(876,2108498400,3),(876,2121804000,4),(876,2139948000,3),(877,-2147483648,0),(877,-2004073600,1),(877,-1851577590,2),(877,-852105600,3),(877,-782643600,4),(877,-767869200,2),(877,-718095600,3),(877,-457776000,2),(877,-315648000,3),(877,171820800,2),(877,2147483647,2),(878,-2147483648,0),(878,-2056690800,1),(878,-900910800,2),(878,-891579600,3),(878,-884248200,4),(878,-761209200,1),(878,-747907200,2),(878,-728541000,5),(878,-717049800,6),(878,-697091400,5),(878,-683785800,6),(878,-668061000,5),(878,-654755400,2),(878,-636611400,5),(878,-623305800,2),(878,-605161800,5),(878,-591856200,2),(878,-573712200,5),(878,-559801800,2),(878,-541657800,5),(878,-528352200,2),(878,-510211800,1),(878,-498112200,2),(878,-478762200,1),(878,-466662600,2),(878,-446707800,1),(878,-435213000,2),(878,-415258200,1),(878,-403158600,2),(878,-383808600,1),(878,-371709000,2),(878,-352359000,1),(878,-340259400,2),(878,-320909400,1),(878,-308809800,2),(878,-288855000,1),(878,-277360200,2),(878,-257405400,1),(878,-245910600,2),(878,-225955800,1),(878,-213856200,2),(878,-194506200,1),(878,-182406600,2),(878,-163056600,1),(878,-148537800,2),(878,-132816600,1),(878,-117088200,2),(878,-101367000,1),(878,-85638600,2),(878,-69312600,1),(878,-53584200,2),(878,-37863000,1),(878,-22134600,2),(878,-6413400,1),(878,9315000,2),(878,25036200,1),(878,40764600,2),(878,56485800,1),(878,72214200,2),(878,88540200,1),(878,104268600,2),(878,119989800,1),(878,126041400,2),(878,151439400,1),(878,167167800,2),(878,182889000,1),(878,198617400,2),(878,214338600,1),(878,295385400,2),(878,309292200,1),(879,-2147483648,0),(879,-2032927596,1),(879,252439200,3),(879,417978000,2),(879,433785600,3),(879,449600400,2),(879,465321600,3),(879,481050000,2),(879,496771200,3),(879,512499600,2),(879,528220800,3),(879,543949200,2),(879,559670400,3),(879,575398800,2),(879,591120000,3),(879,606848400,2),(879,622569600,3),(879,638298000,2),(879,654624000,3),(879,670352400,2),(879,686073600,3),(879,701802000,2),(879,717523200,3),(879,733251600,2),(879,748972800,3),(879,764701200,2),(879,780422400,3),(879,796150800,2),(879,811872000,3),(879,828205200,2),(879,843926400,3),(879,859654800,2),(879,875376000,3),(879,891104400,2),(879,906825600,3),(879,988398000,2),(879,1001700000,3),(879,1017428400,2),(879,1033149600,3),(879,1048878000,2),(879,1064599200,3),(879,1080327600,2),(879,1096048800,3),(879,1111777200,2),(879,1127498400,3),(879,1143226800,2),(879,1159552800,3),(879,1427482800,2),(879,1443196800,3),(879,1458932400,2),(879,1474646400,3),(879,2147483647,3),(880,-2147483648,1),(880,-1575874625,2),(880,-1247554800,4),(880,354902400,3),(880,370710000,4),(880,386438400,3),(880,402246000,4),(880,417974400,3),(880,433782000,4),(880,449596800,3),(880,465328800,5),(880,481053600,6),(880,496778400,5),(880,512503200,6),(880,528228000,5),(880,543952800,6),(880,559677600,5),(880,575402400,6),(880,591127200,5),(880,606852000,6),(880,622576800,5),(880,638301600,6),(880,654631200,5),(880,670356000,7),(880,686084400,8),(880,695761200,5),(880,701805600,6),(880,717530400,5),(880,733255200,6),(880,748980000,5),(880,764704800,6),(880,780429600,5),(880,796154400,6),(880,811879200,5),(880,828208800,6),(880,846352800,5),(880,859658400,6),(880,877802400,5),(880,891108000,6),(880,909252000,5),(880,922557600,6),(880,941306400,5),(880,954007200,6),(880,972756000,5),(880,985456800,6),(880,1004205600,5),(880,1017511200,6),(880,1035655200,5),(880,1048960800,6),(880,1067104800,5),(880,1080410400,6),(880,1099159200,5),(880,1111860000,6),(880,1130608800,5),(880,1143309600,6),(880,1162058400,5),(880,1174759200,6),(880,1193508000,5),(880,1206813600,6),(880,1224957600,5),(880,1238263200,6),(880,1256407200,5),(880,1269712800,6),(880,1288461600,5),(880,1301162400,9),(880,1414256400,5),(880,2147483647,5),(881,-2147483648,1),(881,-1869875816,3),(881,-1693706400,2),(881,-1680490800,3),(881,-1570413600,2),(881,-1552186800,3),(881,-1538359200,2),(881,-1522551600,3),(881,-1507514400,2),(881,-1490583600,3),(881,-1440208800,2),(881,-1428030000,3),(881,-1409709600,2),(881,-1396494000,3),(881,-931053600,2),(881,-922676400,3),(881,-917834400,2),(881,-892436400,3),(881,-875844000,2),(881,-764737200,3),(881,-744343200,2),(881,-733806000,3),(881,-716436000,2),(881,-701924400,3),(881,-684986400,2),(881,-670474800,3),(881,-654141600,2),(881,-639025200,3),(881,-622087200,2),(881,-606970800,3),(881,-590032800,2),(881,-575521200,3),(881,-235620000,2),(881,-194842800,3),(881,-177732000,2),(881,-165726000,3),(881,107910000,2),(881,121215600,3),(881,133920000,2),(881,152665200,3),(881,164678400,2),(881,184114800,3),(881,196214400,2),(881,215564400,3),(881,228873600,2),(881,245804400,3),(881,260323200,2),(881,267915600,4),(881,428454000,5),(881,433893600,4),(881,468111600,3),(881,482799600,6),(881,496710000,7),(881,512521200,6),(881,528246000,7),(881,543970800,6),(881,559695600,7),(881,575420400,6),(881,591145200,7),(881,606870000,6),(881,622594800,7),(881,638319600,6),(881,654649200,7),(881,670374000,6),(881,686098800,7),(881,701823600,6),(881,717548400,7),(881,733273200,6),(881,748998000,7),(881,764118000,6),(881,780447600,7),(881,796172400,6),(881,811897200,7),(881,828226800,6),(881,846370800,7),(881,859676400,6),(881,877820400,7),(881,891126000,6),(881,909270000,7),(881,922575600,6),(881,941324400,7),(881,954025200,6),(881,972774000,7),(881,985474800,6),(881,1004223600,7),(881,1017529200,6),(881,1035673200,7),(881,1048978800,6),(881,1067122800,7),(881,1080428400,6),(881,1099177200,7),(881,1111878000,6),(881,1130626800,7),(881,1143327600,6),(881,1162076400,7),(881,1167602400,3),(881,1174784400,8),(881,1193533200,9),(881,1206838800,8),(881,1224982800,9),(881,1238288400,8),(881,1256432400,9),(881,1269738000,8),(881,1288486800,9),(881,1301274000,8),(881,1319936400,9),(881,1332637200,8),(881,1351386000,9),(881,1364691600,8),(881,1382835600,9),(881,1396227600,8),(881,1414285200,9),(881,1427590800,8),(881,1446944400,9),(881,1459040400,8),(881,1473195600,4),(881,2147483647,4),(882,-2147483648,1),(882,-1451719200,2),(882,-1172906400,3),(882,-876641400,4),(882,-766054800,3),(882,-683883000,5),(882,-620812800,3),(882,-189415800,6),(883,-2147483648,0),(883,-1172913768,1),(883,-799491600,2),(883,-189423000,3),(884,-2147483648,1),(884,-1641003640,6),(884,-933638400,2),(884,-923097600,3),(884,-919036800,2),(884,-857347200,3),(884,-844300800,2),(884,-825811200,3),(884,-812678400,2),(884,-794188800,3),(884,-779846400,2),(884,-762652800,3),(884,-748310400,2),(884,-731116800,3),(884,-681955200,4),(884,-673228800,2),(884,-667958400,3),(884,-652320000,2),(884,-636422400,3),(884,-622080000,2),(884,-608947200,3),(884,-591840000,2),(884,-572486400,3),(884,-558576000,2),(884,-542851200,3),(884,-527731200,2),(884,-514425600,3),(884,-490838400,2),(884,-482976000,3),(884,-459388800,2),(884,-451526400,3),(884,-428544000,2),(884,-418262400,3),(884,-400118400,2),(884,-387417600,3),(884,142380000,5),(884,150843600,6),(884,167176800,5),(884,178664400,6),(884,334101600,7),(884,337730400,8),(884,452642400,7),(884,462319200,8),(884,482277600,5),(884,494370000,6),(884,516751200,5),(884,526424400,6),(884,545436000,5),(884,558478800,6),(884,576626400,5),(884,589323600,6),(884,609890400,5),(884,620773200,6),(884,638316000,5),(884,651618000,6),(884,669765600,5),(884,683672400,6),(884,701820000,5),(884,715726800,6),(884,733701600,5),(884,747176400,6),(884,765151200,5),(884,778021200,6),(884,796600800,5),(884,810075600,6),(884,826840800,5),(884,842821200,6),(884,858895200,5),(884,874184400,6),(884,890344800,5),(884,905029200,6),(884,923011200,5),(884,936313200,6),(884,955670400,5),(884,970783200,6),(884,986770800,5),(884,1001282400,6),(884,1017356400,5),(884,1033941600,6),(884,1048806000,5),(884,1065132000,6),(884,1081292400,5),(884,1095804000,6),(884,1112313600,5),(884,1128812400,6),(884,1143763200,5),(884,1159657200,6),(884,1175212800,5),(884,1189897200,6),(884,1206662400,5),(884,1223161200,6),(884,1238112000,5),(884,1254006000,6),(884,1269561600,5),(884,1284246000,6),(884,1301616000,5),(884,1317510000,6),(884,1333065600,5),(884,1348354800,6),(884,1364515200,5),(884,1382828400,6),(884,1395964800,5),(884,1414278000,6),(884,1427414400,5),(884,1445727600,6),(884,1458864000,5),(884,1477782000,6),(884,1490313600,5),(884,1509231600,6),(884,1521763200,5),(884,1540681200,6),(884,1553817600,5),(884,1572130800,6),(884,1585267200,5),(884,1603580400,6),(884,1616716800,5),(884,1635634800,6),(884,1648166400,5),(884,1667084400,6),(884,1679616000,5),(884,1698534000,6),(884,1711670400,5),(884,1729983600,6),(884,1743120000,5),(884,1761433200,6),(884,1774569600,5),(884,1792882800,6),(884,1806019200,5),(884,1824937200,6),(884,1837468800,5),(884,1856386800,6),(884,1868918400,5),(884,1887836400,6),(884,1900972800,5),(884,1919286000,6),(884,1932422400,5),(884,1950735600,6),(884,1963872000,5),(884,1982790000,6),(884,1995321600,5),(884,2014239600,6),(884,2026771200,5),(884,2045689200,6),(884,2058220800,5),(884,2077138800,6),(884,2090275200,5),(884,2108588400,6),(884,2121724800,5),(884,2140038000,6),(885,-2147483648,1),(885,-788932800,2),(885,2147483647,2),(886,-2147483648,0),(886,-1487759676,1),(886,-1247569200,3),(886,354888000,2),(886,370695600,3),(886,386424000,2),(886,402231600,3),(886,417960000,2),(886,433767600,3),(886,449582400,2),(886,465314400,4),(886,481039200,5),(886,496764000,4),(886,512488800,5),(886,528213600,4),(886,543938400,5),(886,559663200,4),(886,575388000,5),(886,591112800,4),(886,606837600,5),(886,622562400,4),(886,638287200,5),(886,654616800,4),(886,670341600,6),(886,686070000,7),(886,695746800,4),(886,701791200,5),(886,717516000,4),(886,733240800,5),(886,748965600,4),(886,764690400,5),(886,780415200,4),(886,796140000,5),(886,811864800,4),(886,828194400,5),(886,846338400,4),(886,859644000,5),(886,877788000,4),(886,891093600,5),(886,909237600,4),(886,922543200,5),(886,941292000,4),(886,953992800,5),(886,972741600,4),(886,985442400,5),(886,1004191200,4),(886,1017496800,5),(886,1035640800,4),(886,1048946400,5),(886,1067090400,4),(886,1080396000,5),(886,1099144800,4),(886,1111845600,5),(886,1130594400,4),(886,1143295200,5),(886,1162044000,4),(886,1174744800,5),(886,1193493600,4),(886,1206799200,5),(886,1224943200,4),(886,1238248800,5),(886,1256392800,4),(886,1269698400,6),(886,1288450800,7),(886,1301151600,4),(886,2147483647,4),(887,-2147483648,0),(887,-1988166492,1),(887,-862637400,2),(887,-764145000,1),(887,-576135000,3),(887,38775600,5),(887,1018119600,4),(887,1033840800,5),(887,1212260400,4),(887,1225476000,5),(887,1239735600,4),(887,1257012000,5),(888,-2147483648,0),(888,-1325483420,1),(888,2147483647,1),(889,-2147483648,0),(889,-1577943676,1),(889,504901800,2),(889,2147483647,2),(890,-2147483648,0),(890,-1577943676,1),(890,504901800,2),(890,2147483647,2),(891,-2147483648,0),(891,-1579424533,1),(891,-1247558400,3),(891,354898800,2),(891,370706400,3),(891,386434800,2),(891,402242400,3),(891,417970800,2),(891,433778400,3),(891,449593200,2),(891,465325200,4),(891,481050000,5),(891,496774800,4),(891,512499600,5),(891,528224400,4),(891,543949200,5),(891,559674000,4),(891,575398800,5),(891,591123600,4),(891,606848400,5),(891,622573200,4),(891,638298000,5),(891,654627600,4),(891,670352400,6),(891,686080800,7),(891,695757600,4),(891,701802000,5),(891,717526800,4),(891,733251600,5),(891,748976400,4),(891,764701200,5),(891,780426000,4),(891,796150800,5),(891,811875600,4),(891,828205200,5),(891,846349200,4),(891,859654800,5),(891,877798800,4),(891,891104400,5),(891,909248400,4),(891,922554000,5),(891,941302800,4),(891,954003600,5),(891,972752400,4),(891,985453200,5),(891,1004202000,4),(891,1017507600,5),(891,1035651600,4),(891,1048957200,5),(891,1067101200,4),(891,1072882800,10),(891,1080403200,8),(891,1099152000,9),(891,1111852800,8),(891,1130601600,9),(891,1143302400,8),(891,1162051200,9),(891,1174752000,8),(891,1193500800,9),(891,1206806400,8),(891,1224950400,9),(891,1238256000,8),(891,1256400000,9),(891,1269705600,8),(891,1288454400,9),(891,1301155200,11),(891,1315832400,9),(891,1414252800,4),(891,2147483647,4),(892,-2147483648,1),(892,-2019705670,2),(892,-891581400,3),(892,-872058600,2),(892,-862637400,3),(892,-764145000,2),(893,-2147483648,0),(893,-1577513486,1),(893,-1247551200,3),(893,354906000,2),(893,370713600,3),(893,386442000,2),(893,402249600,3),(893,417978000,2),(893,433785600,3),(893,449600400,2),(893,465332400,4),(893,481057200,5),(893,496782000,4),(893,512506800,5),(893,528231600,4),(893,543956400,5),(893,559681200,4),(893,575406000,5),(893,591130800,4),(893,606855600,5),(893,622580400,4),(893,638305200,5),(893,654634800,4),(893,670359600,6),(893,686088000,7),(893,695764800,4),(893,701809200,5),(893,717534000,4),(893,733258800,5),(893,748983600,4),(893,764708400,5),(893,780433200,4),(893,796158000,5),(893,811882800,4),(893,828212400,5),(893,846356400,4),(893,859662000,5),(893,877806000,4),(893,891111600,5),(893,909255600,4),(893,922561200,5),(893,941310000,4),(893,954010800,5),(893,972759600,4),(893,985460400,5),(893,1004209200,4),(893,1017514800,5),(893,1035658800,4),(893,1048964400,5),(893,1067108400,4),(893,1080414000,5),(893,1099162800,4),(893,1111863600,5),(893,1130612400,4),(893,1143313200,5),(893,1162062000,4),(893,1174762800,5),(893,1193511600,4),(893,1206817200,5),(893,1224961200,4),(893,1238266800,5),(893,1256410800,4),(893,1269716400,5),(893,1288465200,4),(893,1301166000,8),(893,1414260000,4),(893,2147483647,4),(894,-2147483648,1),(894,-2038200925,2),(894,-1167634800,3),(894,-1073028000,4),(894,-894180000,5),(894,-879665400,6),(894,-767005200,5),(894,378664200,7),(894,2147483647,7),(895,-2147483648,0),(895,-1383463280,1),(895,-1167636600,3),(895,-1082448000,2),(895,-1074586800,3),(895,-1050825600,2),(895,-1042964400,3),(895,-1019289600,2),(895,-1011428400,3),(895,-987753600,2),(895,-979892400,3),(895,-956217600,2),(895,-948356400,3),(895,-924595200,2),(895,-916734000,3),(895,-893059200,2),(895,-885198000,3),(895,-879667200,4),(895,-767005200,3),(895,2147483647,3),(896,-2147483648,0),(896,-719636812,1),(896,2147483647,1),(897,-2147483648,0),(897,-2056692850,1),(897,-884509200,3),(897,-873280800,2),(897,-855918000,3),(897,-841744800,2),(897,-828529200,3),(897,-765363600,1),(897,-747046800,4),(897,-733827600,5),(897,-716461200,4),(897,-697021200,5),(897,-683715600,4),(897,-667990800,5),(897,-654771600,4),(897,-636627600,5),(897,-623322000,4),(897,-605178000,5),(897,-591872400,4),(897,-573642000,5),(897,-559818000,4),(897,-541674000,5),(897,-528368400,4),(897,-510224400,5),(897,-498128400,4),(897,-478774800,5),(897,-466678800,4),(897,-446720400,5),(897,-435229200,4),(897,-415258200,1),(897,-403158600,6),(897,-383808600,1),(897,-371709000,6),(897,-352359000,1),(897,-340259400,6),(897,-320909400,1),(897,-308809800,6),(897,-288855000,1),(897,-277360200,6),(897,-257405400,1),(897,-245910600,6),(897,-225955800,1),(897,-213856200,6),(897,-194506200,1),(897,-182406600,6),(897,-163056600,1),(897,-148537800,6),(897,-132820200,1),(897,-117088200,6),(897,-101370600,1),(897,-85638600,6),(897,-69312600,1),(897,-53584200,6),(897,-37863000,1),(897,-22134600,6),(897,-6413400,1),(897,9315000,6),(897,25036200,1),(897,40764600,6),(897,56485800,1),(897,72214200,6),(897,88540200,1),(897,104268600,6),(897,119989800,1),(897,126041400,6),(897,151439400,1),(897,167167800,6),(897,182889000,1),(897,198617400,6),(897,214338600,1),(897,295385400,6),(897,309292200,1),(898,-2147483648,0),(898,-2056692850,1),(898,-884509200,3),(898,-873280800,2),(898,-855918000,3),(898,-841744800,2),(898,-828529200,3),(898,-765363600,1),(898,-747046800,4),(898,-733827600,5),(898,-716461200,4),(898,-697021200,5),(898,-683715600,4),(898,-667990800,5),(898,-654771600,4),(898,-636627600,5),(898,-623322000,4),(898,-605178000,5),(898,-591872400,4),(898,-573642000,5),(898,-559818000,4),(898,-541674000,5),(898,-528368400,4),(898,-510224400,5),(898,-498128400,4),(898,-478774800,5),(898,-466678800,4),(898,-446720400,5),(898,-435229200,4),(898,-415258200,1),(898,-403158600,6),(898,-383808600,1),(898,-371709000,6),(898,-352359000,1),(898,-340259400,6),(898,-320909400,1),(898,-308809800,6),(898,-288855000,1),(898,-277360200,6),(898,-257405400,1),(898,-245910600,6),(898,-225955800,1),(898,-213856200,6),(898,-194506200,1),(898,-182406600,6),(898,-163056600,1),(898,-148537800,6),(898,-132820200,1),(898,-117088200,6),(898,-101370600,1),(898,-85638600,6),(898,-69312600,1),(898,-53584200,6),(898,-37863000,1),(898,-22134600,6),(898,-6413400,1),(898,9315000,6),(898,25036200,1),(898,40764600,6),(898,56485800,1),(898,72214200,6),(898,88540200,1),(898,104268600,6),(898,119989800,1),(898,126041400,6),(898,151439400,1),(898,167167800,6),(898,182889000,1),(898,198617400,6),(898,214338600,1),(898,295385400,6),(898,309292200,1),(899,-2147483648,0),(899,-1441188192,1),(899,-1247565600,3),(899,354891600,2),(899,370699200,3),(899,386427600,2),(899,402235200,3),(899,417963600,2),(899,433771200,3),(899,449586000,2),(899,465318000,4),(899,481042800,5),(899,496767600,4),(899,512492400,5),(899,528217200,4),(899,543942000,5),(899,559666800,4),(899,575391600,5),(899,591116400,4),(899,606841200,5),(899,622566000,4),(899,638290800,5),(899,654620400,4),(899,670345200,6),(899,686073600,7),(899,695750400,4),(899,701794800,5),(899,717519600,4),(899,733244400,5),(899,748969200,4),(899,764694000,5),(899,780418800,4),(899,796143600,5),(899,811868400,4),(899,828198000,5),(899,846342000,4),(899,859647600,5),(899,877791600,4),(899,891097200,5),(899,909241200,4),(899,922546800,5),(899,941295600,4),(899,953996400,5),(899,972745200,4),(899,985446000,5),(899,1004194800,4),(899,1017500400,5),(899,1035644400,4),(899,1048950000,5),(899,1067094000,4),(899,1080399600,5),(899,1099148400,4),(899,1111849200,5),(899,1130598000,4),(899,1143298800,5),(899,1162047600,4),(899,1174748400,5),(899,1193497200,4),(899,1206802800,5),(899,1224946800,4),(899,1238252400,5),(899,1256396400,4),(899,1269702000,5),(899,1288450800,4),(899,1301151600,8),(899,1414245600,7),(899,1461427200,4),(899,2147483647,4),(900,-2147483648,0),(900,-1577951856,1),(900,-1172908656,2),(900,-880272000,3),(900,-766054800,4),(901,-2147483648,2),(901,-1046678400,1),(901,-1038733200,2),(901,-873273600,3),(901,-794221200,2),(901,-496224000,1),(901,-489315600,2),(901,259344000,1),(901,275151600,2),(902,-2147483648,0),(902,-1577936472,1),(902,2147483647,1),(903,-2147483648,0),(903,-1518920008,2),(903,166572000,1),(903,182293200,2),(903,200959200,1),(903,213829200,2),(903,228866400,1),(903,243982800,2),(903,260316000,1),(903,276123600,2),(903,291765600,1),(903,307486800,2),(903,323820000,1),(903,338936400,2),(903,354664800,1),(903,370386000,2),(903,386114400,1),(903,401835600,2),(903,417564000,1),(903,433285200,2),(903,449013600,1),(903,465339600,2),(903,481068000,1),(903,496789200,2),(903,512517600,1),(903,528238800,2),(903,543967200,1),(903,559688400,2),(903,575416800,1),(903,591138000,2),(903,606866400,1),(903,622587600,2),(903,638316000,1),(903,654642000,2),(903,670370400,1),(903,686091600,2),(903,701820000,1),(903,717541200,2),(903,733269600,1),(903,748990800,2),(903,764719200,1),(903,780440400,2),(903,796168800,1),(903,811890000,2),(903,828223200,1),(903,843944400,2),(903,859672800,1),(903,875394000,2),(903,891122400,1),(903,909277200,3),(903,922582800,4),(903,941331600,3),(903,954032400,4),(903,972781200,3),(903,985482000,4),(903,1004230800,3),(903,1017536400,4),(903,1035680400,3),(903,1048986000,4),(903,1067130000,3),(903,1080435600,4),(903,1099184400,3),(903,1111885200,4),(903,1130634000,3),(903,1143334800,4),(903,1162083600,3),(903,1174784400,4),(903,1193533200,3),(903,1206838800,4),(903,1224982800,3),(903,1238288400,4),(903,1256432400,3),(903,1269738000,4),(903,1288486800,3),(903,1301187600,4),(903,1319936400,3),(903,1332637200,4),(903,1351386000,3),(903,1364691600,4),(903,1382835600,3),(903,1396141200,4),(903,1414285200,3),(903,1427590800,4),(903,1445734800,3),(903,1459040400,4),(903,1477789200,3),(903,1490490000,4),(903,1509238800,3),(903,1521939600,4),(903,1540688400,3),(903,1553994000,4),(903,1572138000,3),(903,1585443600,4),(903,1603587600,3),(903,1616893200,4),(903,1635642000,3),(903,1648342800,4),(903,1667091600,3),(903,1679792400,4),(903,1698541200,3),(903,1711846800,4),(903,1729990800,3),(903,1743296400,4),(903,1761440400,3),(903,1774746000,4),(903,1792890000,3),(903,1806195600,4),(903,1824944400,3),(903,1837645200,4),(903,1856394000,3),(903,1869094800,4),(903,1887843600,3),(903,1901149200,4),(903,1919293200,3),(903,1932598800,4),(903,1950742800,3),(903,1964048400,4),(903,1982797200,3),(903,1995498000,4),(903,2014246800,3),(903,2026947600,4),(903,2045696400,3),(903,2058397200,4),(903,2077146000,3),(903,2090451600,4),(903,2108595600,3),(903,2121901200,4),(903,2140045200,3),(904,-2147483648,0),(904,-1441259328,1),(904,-1247551200,3),(904,354906000,2),(904,370713600,3),(904,386442000,2),(904,402249600,3),(904,417978000,2),(904,433785600,3),(904,449600400,2),(904,465332400,4),(904,481057200,5),(904,496782000,4),(904,512506800,5),(904,528231600,4),(904,543956400,5),(904,559681200,4),(904,575406000,5),(904,591130800,4),(904,606855600,5),(904,622580400,4),(904,638305200,5),(904,654634800,4),(904,670359600,6),(904,686088000,7),(904,695764800,4),(904,701809200,5),(904,717534000,4),(904,733258800,5),(904,748983600,4),(904,764708400,5),(904,780433200,4),(904,796158000,5),(904,811882800,4),(904,828212400,5),(904,846356400,4),(904,859662000,5),(904,877806000,4),(904,891111600,5),(904,909255600,4),(904,922561200,5),(904,941310000,4),(904,954010800,5),(904,972759600,4),(904,985460400,5),(904,1004209200,4),(904,1017514800,5),(904,1035658800,4),(904,1048964400,5),(904,1067108400,4),(904,1080414000,5),(904,1099162800,4),(904,1111863600,5),(904,1130612400,4),(904,1143313200,5),(904,1162062000,4),(904,1174762800,5),(904,1193511600,4),(904,1206817200,5),(904,1224961200,4),(904,1238266800,5),(904,1256410800,4),(904,1269716400,6),(904,1288468800,7),(904,1301169600,4),(904,2147483647,4),(905,-2147483648,0),(905,-1579476700,1),(905,-1247551200,3),(905,354906000,2),(905,370713600,3),(905,386442000,2),(905,402249600,3),(905,417978000,2),(905,433785600,3),(905,449600400,2),(905,465332400,4),(905,481057200,5),(905,496782000,4),(905,512506800,5),(905,528231600,4),(905,543956400,5),(905,559681200,4),(905,575406000,5),(905,591130800,4),(905,606855600,5),(905,622580400,4),(905,638305200,5),(905,654634800,4),(905,670359600,6),(905,686088000,7),(905,695764800,4),(905,701809200,5),(905,717534000,4),(905,733258800,5),(905,738086400,8),(905,748987200,7),(905,764712000,6),(905,780436800,7),(905,796161600,6),(905,811886400,7),(905,828216000,6),(905,846360000,7),(905,859665600,6),(905,877809600,7),(905,891115200,6),(905,909259200,7),(905,922564800,6),(905,941313600,7),(905,954014400,6),(905,972763200,7),(905,985464000,6),(905,1004212800,7),(905,1017518400,6),(905,1035662400,7),(905,1048968000,6),(905,1067112000,7),(905,1080417600,6),(905,1099166400,7),(905,1111867200,6),(905,1130616000,7),(905,1143316800,6),(905,1162065600,7),(905,1174766400,6),(905,1193515200,7),(905,1206820800,6),(905,1224964800,7),(905,1238270400,6),(905,1256414400,7),(905,1269720000,6),(905,1288468800,7),(905,1301169600,4),(905,1414263600,7),(905,1469304000,4),(905,2147483647,4),(906,-2147483648,0),(906,-1582088010,1),(906,-1247547600,3),(906,354909600,2),(906,370717200,3),(906,386445600,2),(906,402253200,3),(906,417981600,2),(906,433789200,3),(906,449604000,2),(906,465336000,4),(906,481060800,5),(906,496785600,4),(906,512510400,5),(906,528235200,4),(906,543960000,5),(906,559684800,4),(906,575409600,5),(906,591134400,4),(906,606859200,5),(906,622584000,4),(906,638308800,5),(906,654638400,4),(906,670363200,6),(906,686091600,7),(906,695768400,4),(906,701812800,5),(906,717537600,4),(906,733262400,5),(906,748987200,4),(906,764712000,5),(906,780436800,4),(906,796161600,5),(906,811886400,4),(906,828216000,5),(906,846360000,4),(906,859665600,5),(906,877809600,4),(906,891115200,5),(906,909259200,4),(906,922564800,5),(906,941313600,4),(906,954014400,5),(906,972763200,4),(906,985464000,5),(906,1004212800,4),(906,1017518400,5),(906,1035662400,4),(906,1048968000,5),(906,1067112000,4),(906,1080417600,5),(906,1099166400,4),(906,1111867200,5),(906,1130616000,4),(906,1143316800,5),(906,1162065600,4),(906,1174766400,5),(906,1193515200,4),(906,1206820800,5),(906,1224964800,4),(906,1238270400,5),(906,1256414400,4),(906,1269720000,5),(906,1288468800,4),(906,1301169600,8),(906,1414263600,4),(906,2147483647,4),(907,-2147483648,0),(907,-1441164324,1),(907,-1247540400,2),(907,354913200,3),(907,370720800,4),(907,386445600,3),(907,402256800,2),(907,417985200,3),(907,433792800,2),(907,449607600,3),(907,465339600,5),(907,481064400,6),(907,496789200,5),(907,512514000,6),(907,528238800,5),(907,543963600,6),(907,559688400,5),(907,575413200,6),(907,591138000,5),(907,606862800,7),(907,622591200,8),(907,638316000,7),(907,654645600,8),(907,670370400,7),(907,686095200,8),(907,695772000,5),(907,701816400,7),(907,717544800,8),(907,733269600,7),(907,748994400,8),(907,764719200,7),(907,780444000,8),(907,796168800,7),(907,811893600,8),(907,828223200,7),(907,846367200,8),(907,859672800,7),(907,877816800,8),(907,891122400,7),(907,909266400,8),(907,922572000,7),(907,941320800,8),(907,954021600,7),(907,972770400,8),(907,985471200,7),(907,1004220000,8),(907,1017525600,7),(907,1035669600,8),(907,1048975200,7),(907,1067119200,8),(907,1080424800,7),(907,1099173600,5),(907,2147483647,5),(908,-2147483648,1),(908,-1570084924,2),(908,2147483647,2),(909,-2147483648,0),(909,-1946186240,1),(909,-1172906240,2),(909,-881220600,3),(909,-766054800,2),(909,-683883000,4),(909,-620812800,2),(909,-189415800,5),(909,567964800,6),(910,-2147483648,0),(910,-1948782180,1),(910,-1830414600,2),(910,-768646800,3),(910,1439564400,1),(910,1525446000,3),(911,-2147483648,0),(911,-1577935568,1),(911,76190400,2),(911,2147483647,2),(912,-2147483648,0),(912,-1441167268,1),(912,-1247544000,2),(912,354913200,3),(912,370720800,4),(912,386445600,3),(912,402256800,2),(912,417985200,3),(912,433792800,2),(912,449607600,3),(912,465339600,5),(912,481064400,6),(912,496789200,5),(912,512514000,6),(912,528238800,5),(912,543963600,6),(912,559688400,5),(912,575413200,6),(912,591138000,5),(912,606862800,6),(912,622587600,5),(912,638312400,6),(912,654642000,5),(912,670366800,7),(912,686095200,8),(912,695772000,5),(912,701816400,6),(912,717541200,5),(912,733266000,6),(912,748990800,5),(912,764715600,6),(912,780440400,5),(912,796165200,6),(912,811890000,5),(912,828219600,6),(912,846363600,5),(912,859669200,6),(912,877813200,5),(912,891118800,6),(912,909262800,5),(912,922568400,6),(912,941317200,5),(912,954018000,6),(912,972766800,5),(912,985467600,6),(912,1004216400,5),(912,1017522000,6),(912,1035666000,5),(912,1048971600,6),(912,1067115600,5),(912,1080421200,6),(912,1099170000,9),(912,2147483647,9),(913,-2147483648,0),(913,-1441167712,1),(913,-1247544000,2),(913,354913200,3),(913,370720800,4),(913,386445600,3),(913,402256800,2),(913,417985200,3),(913,433792800,2),(913,449607600,3),(913,465339600,5),(913,481064400,6),(913,496789200,5),(913,512514000,6),(913,528238800,5),(913,543963600,6),(913,559688400,5),(913,575413200,6),(913,591138000,5),(913,606862800,6),(913,622587600,5),(913,638312400,6),(913,654642000,5),(913,670366800,7),(913,686095200,5),(913,695768400,9),(913,701812800,6),(913,717541200,5),(913,733266000,6),(913,748990800,5),(913,764715600,6),(913,780440400,5),(913,796165200,6),(913,811890000,5),(913,828219600,6),(913,846363600,5),(913,859669200,6),(913,877813200,5),(913,891118800,6),(913,909262800,5),(913,922568400,6),(913,941317200,5),(913,954018000,6),(913,972766800,5),(913,985467600,6),(913,1004216400,5),(913,1017522000,6),(913,1035666000,5),(913,1048971600,6),(913,1067115600,5),(913,1080421200,6),(913,1099170000,9),(913,1545328800,2),(913,2147483647,2),(914,-2147483648,1),(914,-1577946287,2),(914,-873268200,3),(914,-778410000,2),(914,2147483647,2),(915,-2147483648,0),(915,-719636812,1),(915,2147483647,1),(916,-2147483648,0),(916,-2004073600,1),(916,-1851577590,2),(916,-852105600,3),(916,-782643600,4),(916,-767869200,2),(916,-718095600,3),(916,-457776000,2),(916,-315648000,3),(916,171820800,2),(916,2147483647,2),(917,-2147483648,0),(917,-2031039048,1),(917,-768560400,3),(917,354891600,2),(917,370699200,3),(917,386427600,2),(917,402235200,3),(917,417963600,2),(917,433771200,3),(917,449586000,2),(917,465318000,4),(917,481042800,5),(917,496767600,4),(917,512492400,5),(917,528217200,4),(917,543942000,5),(917,559666800,4),(917,575391600,5),(917,591116400,4),(917,606841200,5),(917,622566000,4),(917,638290800,5),(917,654620400,4),(917,670345200,6),(917,686073600,7),(917,695750400,4),(917,701794800,5),(917,717519600,4),(917,733244400,5),(917,748969200,4),(917,764694000,5),(917,780418800,4),(917,796143600,5),(917,811868400,4),(917,828198000,5),(917,846342000,4),(917,859647600,6),(917,877795200,7),(917,891100800,6),(917,909244800,7),(917,922550400,6),(917,941299200,7),(917,954000000,6),(917,972748800,7),(917,985449600,6),(917,1004198400,7),(917,1017504000,6),(917,1035648000,7),(917,1048953600,6),(917,1067097600,7),(917,1080403200,6),(917,1099152000,7),(917,1111852800,6),(917,1130601600,7),(917,1143302400,6),(917,1162051200,7),(917,1174752000,6),(917,1193500800,7),(917,1206806400,6),(917,1224950400,7),(917,1238256000,6),(917,1256400000,7),(917,1269705600,6),(917,1288454400,7),(917,1301155200,4),(917,1414249200,7),(917,1459008000,4),(917,2147483647,4),(918,-2147483648,0),(918,-1441168073,1),(918,-1247544000,2),(918,354913200,3),(918,370720800,4),(918,386445600,3),(918,402256800,2),(918,417985200,3),(918,433792800,2),(918,449607600,3),(918,465339600,5),(918,481064400,6),(918,496789200,5),(918,512514000,6),(918,528238800,5),(918,543963600,6),(918,559688400,5),(918,575413200,6),(918,591138000,5),(918,606862800,6),(918,622587600,5),(918,638312400,6),(918,654642000,5),(918,670366800,6),(918,686091600,5),(918,694206000,2),(918,2147483647,2),(919,-2147483648,0),(919,-1948782472,1),(919,-1830414600,2),(919,-767350800,4),(919,-681210000,3),(919,-672228000,4),(919,-654771600,3),(919,-640864800,4),(919,-623408400,3),(919,-609415200,4),(919,-588848400,3),(919,-577965600,4),(919,-498128400,1),(919,-462702600,5),(919,-451733400,1),(919,-429784200,5),(919,-418296600,1),(919,-399544200,5),(919,-387451800,1),(919,-368094600,5),(919,-356002200,1),(919,-336645000,5),(919,-324552600,1),(919,-305195400,5),(919,-293103000,1),(919,-264933000,4),(919,547578000,3),(919,560883600,4),(919,579027600,3),(919,592333200,4),(920,-2147483648,2),(920,-1600675200,1),(920,-1585904400,2),(920,-933667200,1),(920,-922093200,2),(920,-908870400,1),(920,-888829200,2),(920,-881049600,1),(920,-767869200,2),(920,-745833600,1),(920,-733827600,2),(920,-716889600,1),(920,-699613200,2),(920,-683884800,1),(920,-670669200,2),(920,-652348800,1),(920,-650019600,2),(920,515527200,1),(920,527014800,2),(920,545162400,1),(920,558464400,2),(920,577216800,1),(920,589914000,2),(920,608666400,1),(920,621968400,2),(920,640116000,1),(920,653418000,2),(920,671565600,1),(920,684867600,2),(921,-2147483648,1),(921,-2038200925,2),(921,-1167634800,3),(921,-1073028000,4),(921,-894180000,5),(921,-879665400,6),(921,-767005200,5),(921,378664200,7),(921,2147483647,7),(922,-2147483648,0),(922,-1441188892,1),(922,-1247565600,3),(922,354891600,2),(922,370699200,3),(922,386427600,2),(922,402235200,3),(922,417963600,2),(922,433771200,3),(922,449586000,2),(922,465318000,4),(922,481042800,5),(922,496767600,4),(922,512492400,5),(922,528217200,4),(922,543942000,5),(922,559666800,4),(922,575391600,5),(922,591116400,4),(922,606841200,5),(922,622566000,4),(922,638290800,5),(922,654620400,4),(922,670345200,6),(922,686073600,7),(922,695750400,4),(922,701794800,5),(922,717519600,4),(922,733244400,5),(922,748969200,4),(922,764694000,5),(922,780418800,4),(922,796143600,5),(922,811868400,4),(922,828198000,5),(922,846342000,4),(922,859647600,5),(922,877791600,4),(922,891097200,5),(922,909241200,4),(922,922546800,5),(922,941295600,4),(922,953996400,5),(922,972745200,4),(922,985446000,5),(922,1004194800,4),(922,1017500400,5),(922,1035644400,4),(922,1048950000,5),(922,1067094000,4),(922,1080399600,5),(922,1099148400,4),(922,1111849200,5),(922,1130598000,4),(922,1143298800,5),(922,1162047600,4),(922,1174748400,5),(922,1193497200,4),(922,1206802800,5),(922,1224946800,4),(922,1238252400,5),(922,1256396400,4),(922,1269702000,5),(922,1288450800,4),(922,1301151600,8),(922,1414245600,4),(922,2147483647,4),(923,-2147483648,1),(923,-1017820800,2),(923,-766224000,1),(923,-745833600,3),(923,-733827600,1),(923,-716889600,3),(923,-699613200,1),(923,-683884800,3),(923,-670669200,1),(923,-652348800,3),(923,-639133200,1),(923,-620812800,3),(923,-607597200,1),(923,-589276800,3),(923,-576061200,1),(923,-562924800,3),(923,-541760400,1),(923,-528710400,3),(923,-510224400,1),(923,-497174400,3),(923,-478688400,1),(923,-465638400,3),(923,-449830800,1),(923,-434016000,3),(923,-418208400,1),(923,-402480000,3),(923,-386672400,1),(923,-370944000,3),(923,-355136400,1),(923,-339408000,3),(923,-323600400,1),(923,-302515200,3),(923,-291978000,1),(923,-270979200,3),(923,-260442000,1),(923,133977600,3),(923,149785200,1),(923,165513600,3),(923,181321200,1),(923,299606400,3),(923,307551600,1),(924,-2147483648,0),(924,-1441168631,1),(924,-1247547600,3),(924,354909600,2),(924,370717200,3),(924,386445600,2),(924,402253200,3),(924,417981600,2),(924,433789200,3),(924,449604000,2),(924,465336000,4),(924,481060800,5),(924,496785600,4),(924,512510400,5),(924,528235200,4),(924,543960000,5),(924,559684800,4),(924,575409600,5),(924,591134400,4),(924,606859200,5),(924,622584000,4),(924,638308800,5),(924,654638400,4),(924,670363200,6),(924,686091600,7),(924,694206000,1),(924,2147483647,1),(925,-2147483648,1),(925,-1441162751,2),(925,-405140400,4),(925,354916800,3),(925,370724400,4),(925,386452800,3),(925,402260400,4),(925,417988800,3),(925,433796400,4),(925,449611200,3),(925,465343200,5),(925,481068000,6),(925,496792800,5),(925,512517600,6),(925,528242400,5),(925,543967200,6),(925,559692000,5),(925,575416800,6),(925,591141600,5),(925,606866400,6),(925,622591200,5),(925,638316000,6),(925,654645600,5),(925,670370400,7),(925,686098800,8),(925,694213200,2),(925,701816400,9),(925,717537600,2),(925,733266000,9),(925,748987200,2),(925,764715600,9),(925,780436800,4),(925,796161600,3),(925,811882800,4),(925,828216000,3),(925,859662000,3),(925,877806000,4),(925,891115200,3),(925,909255600,4),(925,922564800,3),(925,941310000,4),(925,954014400,3),(925,972759600,4),(925,985464000,3),(925,1004209200,4),(925,1017518400,3),(925,1035658800,4),(925,1048968000,3),(925,1067108400,4),(925,1080417600,3),(925,1088276400,9),(925,1099177200,8),(925,1111878000,4),(925,2147483647,4),(926,-2147483648,0),(926,-1704165944,1),(926,-757394744,2),(926,247177800,4),(926,259272000,3),(926,277758000,4),(926,283982400,2),(926,290809800,5),(926,306531000,2),(926,322432200,5),(926,338499000,2),(926,673216200,5),(926,685481400,2),(926,701209800,5),(926,717103800,2),(926,732745800,5),(926,748639800,2),(926,764281800,5),(926,780175800,2),(926,795817800,5),(926,811711800,2),(926,827353800,5),(926,843247800,2),(926,858976200,5),(926,874870200,2),(926,890512200,5),(926,906406200,2),(926,922048200,5),(926,937942200,2),(926,953584200,5),(926,969478200,2),(926,985206600,5),(926,1001100600,2),(926,1016742600,5),(926,1032636600,2),(926,1048278600,5),(926,1064172600,2),(926,1079814600,5),(926,1095708600,2),(926,1111437000,5),(926,1127331000,2),(926,1206045000,5),(926,1221939000,2),(926,1237667400,5),(926,1253561400,2),(926,1269203400,5),(926,1285097400,2),(926,1300739400,5),(926,1316633400,2),(926,1332275400,5),(926,1348169400,2),(926,1363897800,5),(926,1379791800,2),(926,1395433800,5),(926,1411327800,2),(926,1426969800,5),(926,1442863800,2),(926,1458505800,5),(926,1474399800,2),(926,1490128200,5),(926,1506022200,2),(926,1521664200,5),(926,1537558200,2),(926,1553200200,5),(926,1569094200,2),(926,1584736200,5),(926,1600630200,2),(926,1616358600,5),(926,1632252600,2),(926,1647894600,5),(926,1663788600,2),(926,1679430600,5),(926,1695324600,2),(926,1710966600,5),(926,1726860600,2),(926,1742589000,5),(926,1758483000,2),(926,1774125000,5),(926,1790019000,2),(926,1805661000,5),(926,1821555000,2),(926,1837197000,5),(926,1853091000,2),(926,1868733000,5),(926,1884627000,2),(926,1900355400,5),(926,1916249400,2),(926,1931891400,5),(926,1947785400,2),(926,1963427400,5),(926,1979321400,2),(926,1994963400,5),(926,2010857400,2),(926,2026585800,5),(926,2042479800,2),(926,2058121800,5),(926,2074015800,2),(926,2089657800,5),(926,2105551800,2),(926,2121193800,5),(926,2137087800,2),(927,-2147483648,1),(927,-1641003640,6),(927,-933638400,2),(927,-923097600,3),(927,-919036800,2),(927,-857347200,3),(927,-844300800,2),(927,-825811200,3),(927,-812678400,2),(927,-794188800,3),(927,-779846400,2),(927,-762652800,3),(927,-748310400,2),(927,-731116800,3),(927,-681955200,4),(927,-673228800,2),(927,-667958400,3),(927,-652320000,2),(927,-636422400,3),(927,-622080000,2),(927,-608947200,3),(927,-591840000,2),(927,-572486400,3),(927,-558576000,2),(927,-542851200,3),(927,-527731200,2),(927,-514425600,3),(927,-490838400,2),(927,-482976000,3),(927,-459388800,2),(927,-451526400,3),(927,-428544000,2),(927,-418262400,3),(927,-400118400,2),(927,-387417600,3),(927,142380000,5),(927,150843600,6),(927,167176800,5),(927,178664400,6),(927,334101600,7),(927,337730400,8),(927,452642400,7),(927,462319200,8),(927,482277600,5),(927,494370000,6),(927,516751200,5),(927,526424400,6),(927,545436000,5),(927,558478800,6),(927,576626400,5),(927,589323600,6),(927,609890400,5),(927,620773200,6),(927,638316000,5),(927,651618000,6),(927,669765600,5),(927,683672400,6),(927,701820000,5),(927,715726800,6),(927,733701600,5),(927,747176400,6),(927,765151200,5),(927,778021200,6),(927,796600800,5),(927,810075600,6),(927,826840800,5),(927,842821200,6),(927,858895200,5),(927,874184400,6),(927,890344800,5),(927,905029200,6),(927,923011200,5),(927,936313200,6),(927,955670400,5),(927,970783200,6),(927,986770800,5),(927,1001282400,6),(927,1017356400,5),(927,1033941600,6),(927,1048806000,5),(927,1065132000,6),(927,1081292400,5),(927,1095804000,6),(927,1112313600,5),(927,1128812400,6),(927,1143763200,5),(927,1159657200,6),(927,1175212800,5),(927,1189897200,6),(927,1206662400,5),(927,1223161200,6),(927,1238112000,5),(927,1254006000,6),(927,1269561600,5),(927,1284246000,6),(927,1301616000,5),(927,1317510000,6),(927,1333065600,5),(927,1348354800,6),(927,1364515200,5),(927,1382828400,6),(927,1395964800,5),(927,1414278000,6),(927,1427414400,5),(927,1445727600,6),(927,1458864000,5),(927,1477782000,6),(927,1490313600,5),(927,1509231600,6),(927,1521763200,5),(927,1540681200,6),(927,1553817600,5),(927,1572130800,6),(927,1585267200,5),(927,1603580400,6),(927,1616716800,5),(927,1635634800,6),(927,1648166400,5),(927,1667084400,6),(927,1679616000,5),(927,1698534000,6),(927,1711670400,5),(927,1729983600,6),(927,1743120000,5),(927,1761433200,6),(927,1774569600,5),(927,1792882800,6),(927,1806019200,5),(927,1824937200,6),(927,1837468800,5),(927,1856386800,6),(927,1868918400,5),(927,1887836400,6),(927,1900972800,5),(927,1919286000,6),(927,1932422400,5),(927,1950735600,6),(927,1963872000,5),(927,1982790000,6),(927,1995321600,5),(927,2014239600,6),(927,2026771200,5),(927,2045689200,6),(927,2058220800,5),(927,2077138800,6),(927,2090275200,5),(927,2108588400,6),(927,2121724800,5),(927,2140038000,6),(928,-2147483648,0),(928,-706341516,1),(928,560025000,2),(928,2147483647,2),(929,-2147483648,0),(929,-706341516,1),(929,560025000,2),(929,2147483647,2),(930,-2147483648,3),(930,-683802000,1),(930,-672310800,2),(930,-654771600,1),(930,-640861200,2),(930,-620298000,1),(930,-609411600,2),(930,-588848400,1),(930,-577962000,2),(931,-2147483648,0),(931,-1578807591,1),(931,-1247551200,3),(931,354906000,2),(931,370713600,3),(931,386442000,2),(931,402249600,3),(931,417978000,2),(931,433785600,3),(931,449600400,2),(931,465332400,4),(931,481057200,5),(931,496782000,4),(931,512506800,5),(931,528231600,4),(931,543956400,5),(931,559681200,4),(931,575406000,5),(931,591130800,4),(931,606855600,5),(931,622580400,4),(931,638305200,5),(931,654634800,4),(931,670359600,6),(931,686088000,7),(931,695764800,4),(931,701809200,5),(931,717534000,4),(931,733258800,5),(931,748983600,4),(931,764708400,5),(931,780433200,4),(931,796158000,5),(931,811882800,4),(931,828212400,5),(931,846356400,4),(931,859662000,5),(931,877806000,4),(931,891111600,5),(931,909255600,4),(931,922561200,5),(931,941310000,4),(931,954010800,5),(931,972759600,4),(931,985460400,5),(931,1004209200,4),(931,1017514800,5),(931,1020193200,8),(931,1035662400,7),(931,1048968000,6),(931,1067112000,7),(931,1080417600,6),(931,1099166400,7),(931,1111867200,6),(931,1130616000,7),(931,1143316800,6),(931,1162065600,7),(931,1174766400,6),(931,1193515200,7),(931,1206820800,6),(931,1224964800,7),(931,1238270400,6),(931,1256414400,7),(931,1269720000,6),(931,1288468800,7),(931,1301169600,4),(931,1414263600,7),(931,1464465600,4),(931,2147483647,4),(932,-2147483648,0),(932,-1577951856,1),(932,-1172908656,2),(932,-880272000,3),(932,-766054800,4),(933,-2147483648,0),(933,-2032931252,1),(933,252435600,3),(933,417974400,2),(933,433782000,3),(933,449596800,2),(933,465318000,3),(933,481046400,2),(933,496767600,3),(933,512496000,2),(933,528217200,3),(933,543945600,2),(933,559666800,3),(933,575395200,2),(933,591116400,3),(933,606844800,2),(933,622566000,3),(933,638294400,2),(933,654620400,3),(933,670348800,2),(933,686070000,3),(933,701798400,2),(933,717519600,3),(933,733248000,2),(933,748969200,3),(933,764697600,2),(933,780418800,3),(933,796147200,2),(933,811868400,3),(933,828201600,2),(933,843922800,3),(933,859651200,2),(933,875372400,3),(933,891100800,2),(933,906822000,3),(933,988394400,2),(933,1001696400,3),(933,1017424800,2),(933,1033146000,3),(933,1048874400,2),(933,1064595600,3),(933,1080324000,2),(933,1096045200,3),(933,1111773600,2),(933,1127494800,3),(933,1143223200,2),(933,1159549200,3),(933,1427479200,2),(933,1443193200,3),(933,1458928800,2),(933,1474642800,3),(933,2147483647,3),(934,-2147483648,0),(934,-2032931252,1),(934,252435600,3),(934,417974400,2),(934,433782000,3),(934,449596800,2),(934,465318000,3),(934,481046400,2),(934,496767600,3),(934,512496000,2),(934,528217200,3),(934,543945600,2),(934,559666800,3),(934,575395200,2),(934,591116400,3),(934,606844800,2),(934,622566000,3),(934,638294400,2),(934,654620400,3),(934,670348800,2),(934,686070000,3),(934,701798400,2),(934,717519600,3),(934,733248000,2),(934,748969200,3),(934,764697600,2),(934,780418800,3),(934,796147200,2),(934,811868400,3),(934,828201600,2),(934,843922800,3),(934,859651200,2),(934,875372400,3),(934,891100800,2),(934,906822000,3),(934,988394400,2),(934,1001696400,3),(934,1017424800,2),(934,1033146000,3),(934,1048874400,2),(934,1064595600,3),(934,1080324000,2),(934,1096045200,3),(934,1111773600,2),(934,1127494800,3),(934,1143223200,2),(934,1159549200,3),(934,1427479200,2),(934,1443193200,3),(934,1458928800,2),(934,1474642800,3),(934,2147483647,3),(935,-2147483648,0),(935,-1325483420,1),(935,2147483647,1),(936,-2147483648,0),(936,-1579426374,1),(936,-1247558400,2),(936,354898800,4),(936,370699200,3),(936,386427600,4),(936,402235200,3),(936,417963600,4),(936,433771200,3),(936,449586000,4),(936,465318000,5),(936,481042800,6),(936,496767600,5),(936,512492400,6),(936,528217200,5),(936,543942000,6),(936,559666800,5),(936,575391600,6),(936,591116400,5),(936,606841200,6),(936,622566000,5),(936,638290800,6),(936,654620400,5),(936,670345200,7),(936,686073600,8),(936,695750400,5),(936,701794800,6),(936,717519600,5),(936,733244400,6),(936,748969200,5),(936,764694000,6),(936,780418800,5),(936,796143600,6),(936,811868400,5),(936,828198000,6),(936,846342000,5),(936,859647600,6),(936,877791600,5),(936,891097200,6),(936,909241200,5),(936,922546800,6),(936,941295600,5),(936,953996400,6),(936,972745200,5),(936,985446000,6),(936,1004194800,5),(936,1017500400,6),(936,1035644400,5),(936,1048950000,6),(936,1067094000,5),(936,1080399600,6),(936,1099148400,5),(936,1111849200,6),(936,1130598000,5),(936,1143298800,6),(936,1162047600,5),(936,1174748400,6),(936,1193497200,5),(936,1206802800,6),(936,1224946800,5),(936,1238252400,6),(936,1256396400,5),(936,1269702000,6),(936,1288450800,5),(936,1301151600,9),(936,1315828800,5),(936,1414249200,8),(936,2147483647,8),(937,-2147483648,1),(937,-1570084924,2),(937,2147483647,2),(938,-2147483648,0),(938,-1487321251,1),(938,-1247562000,3),(938,354895200,2),(938,370702800,3),(938,386431200,2),(938,402238800,3),(938,417967200,2),(938,433774800,3),(938,449589600,2),(938,465321600,4),(938,481046400,5),(938,496771200,4),(938,512496000,5),(938,528220800,4),(938,543945600,5),(938,559670400,4),(938,575395200,5),(938,591120000,4),(938,606844800,5),(938,622569600,4),(938,638294400,5),(938,654624000,4),(938,670348800,6),(938,686077200,7),(938,695754000,4),(938,701798400,5),(938,717523200,4),(938,733248000,5),(938,748972800,4),(938,764697600,5),(938,780422400,4),(938,796147200,5),(938,811872000,4),(938,828201600,5),(938,846345600,4),(938,859651200,5),(938,877795200,4),(938,891100800,5),(938,909244800,4),(938,922550400,5),(938,941299200,4),(938,954000000,5),(938,972748800,4),(938,985449600,5),(938,1004198400,4),(938,1017504000,5),(938,1035648000,4),(938,1048953600,5),(938,1067097600,4),(938,1080403200,5),(938,1099152000,4),(938,1111852800,5),(938,1130601600,4),(938,1143302400,5),(938,1162051200,4),(938,1174752000,5),(938,1193500800,4),(938,1206806400,5),(938,1224950400,4),(938,1238256000,5),(938,1256400000,4),(938,1269705600,5),(938,1288454400,4),(938,1301155200,8),(938,1414249200,4),(938,2147483647,4),(939,-2147483648,0),(939,-1579423138,1),(939,-1247558400,3),(939,354898800,2),(939,370706400,3),(939,386434800,2),(939,402242400,3),(939,417970800,2),(939,433778400,3),(939,449593200,2),(939,465325200,4),(939,481050000,5),(939,496774800,4),(939,512499600,5),(939,528224400,4),(939,543949200,5),(939,559674000,4),(939,575398800,5),(939,591123600,4),(939,606848400,5),(939,622573200,4),(939,638298000,5),(939,654627600,4),(939,670352400,6),(939,686080800,7),(939,695757600,4),(939,701802000,5),(939,717526800,4),(939,733251600,5),(939,748976400,4),(939,764701200,5),(939,780426000,4),(939,796150800,5),(939,811875600,4),(939,828205200,5),(939,846349200,4),(939,859654800,5),(939,877798800,4),(939,891104400,5),(939,909248400,4),(939,922554000,5),(939,941302800,4),(939,954003600,5),(939,972752400,4),(939,985453200,5),(939,1004202000,4),(939,1017507600,5),(939,1035651600,4),(939,1048957200,5),(939,1067101200,4),(939,1080406800,5),(939,1099155600,4),(939,1111856400,5),(939,1130605200,4),(939,1143306000,5),(939,1162054800,4),(939,1174755600,5),(939,1193504400,4),(939,1206810000,5),(939,1224954000,4),(939,1238259600,5),(939,1256403600,4),(939,1269709200,5),(939,1288458000,4),(939,1301158800,8),(939,1414252800,4),(939,2147483647,4),(940,-2147483648,1),(940,-1577946287,2),(940,-873268200,3),(940,-778410000,2),(940,2147483647,2),(941,-2147483648,0),(941,-1688270553,1),(941,-1592610305,2),(941,-1247544000,4),(941,354913200,3),(941,370720800,4),(941,386449200,3),(941,402256800,4),(941,417985200,3),(941,433792800,4),(941,449607600,3),(941,465339600,5),(941,481064400,6),(941,496789200,5),(941,512514000,6),(941,528238800,5),(941,543963600,6),(941,559688400,5),(941,575413200,6),(941,591138000,5),(941,606862800,6),(941,622587600,5),(941,638312400,6),(941,654642000,5),(941,670366800,7),(941,686095200,8),(941,695772000,5),(941,701816400,6),(941,717541200,5),(941,733266000,6),(941,748990800,5),(941,764715600,6),(941,780440400,5),(941,796165200,6),(941,811890000,5),(941,828219600,6),(941,846363600,5),(941,859669200,6),(941,877813200,5),(941,891118800,6),(941,909262800,5),(941,922568400,6),(941,941317200,5),(941,954018000,6),(941,972766800,5),(941,985467600,6),(941,1004216400,5),(941,1017522000,6),(941,1035666000,5),(941,1048971600,6),(941,1067115600,5),(941,1080421200,6),(941,1099170000,5),(941,1111870800,6),(941,1130619600,5),(941,1143320400,6),(941,1162069200,5),(941,1174770000,6),(941,1193518800,5),(941,1206824400,6),(941,1224968400,5),(941,1238274000,6),(941,1256418000,5),(941,1269723600,6),(941,1288472400,5),(941,1301173200,9),(941,1414267200,5),(941,2147483647,5),(942,-2147483648,0),(942,-1441162680,1),(942,-405140400,3),(942,354916800,2),(942,370724400,3),(942,386452800,2),(942,402260400,3),(942,417988800,2),(942,433796400,3),(942,449611200,2),(942,465343200,4),(942,481068000,5),(942,496792800,4),(942,512517600,5),(942,528242400,4),(942,543967200,5),(942,559692000,4),(942,575416800,5),(942,591141600,4),(942,606866400,5),(942,622591200,4),(942,638316000,5),(942,654645600,4),(942,670370400,6),(942,686098800,7),(942,701823600,6),(942,717548400,7),(942,733273200,6),(942,748998000,7),(942,764722800,6),(942,780447600,7),(942,796172400,6),(942,811897200,4),(942,852062400,3),(942,859672800,5),(942,877816800,4),(942,891122400,5),(942,909266400,4),(942,922572000,5),(942,941320800,4),(942,954021600,5),(942,972770400,4),(942,985471200,5),(942,1004220000,4),(942,1017525600,5),(942,1035669600,4),(942,1048975200,5),(942,1067119200,4),(942,1080424800,5),(942,1099173600,4),(942,1111874400,5),(942,1130623200,4),(942,1143324000,5),(942,1162072800,4),(942,1174773600,5),(942,1193522400,4),(942,1206828000,5),(942,1224972000,4),(942,1238277600,5),(942,1256421600,4),(942,1269727200,5),(942,1288476000,4),(942,1293825600,3),(942,1301176800,5),(942,1319925600,4),(942,2147483647,4),(943,-2147483648,1),(943,-1830376800,6),(943,-1689548400,2),(943,-1677794400,3),(943,-1667430000,4),(943,-1647730800,5),(943,-1635807600,4),(943,-1616194800,5),(943,-1604358000,4),(943,-1584658800,5),(943,-1572735600,4),(943,-1553036400,5),(943,-1541199600,4),(943,-1521500400,5),(943,-1442444400,4),(943,-1426806000,5),(943,-1379286000,4),(943,-1364770800,5),(943,-1348441200,4),(943,-1333321200,5),(943,-1316386800,4),(943,-1301266800,5),(943,-1284332400,4),(943,-1269817200,5),(943,-1221433200,4),(943,-1206918000,5),(943,-1191193200,4),(943,-1175468400,5),(943,-1127689200,4),(943,-1111964400,5),(943,-1096844400,4),(943,-1080514800,5),(943,-1063580400,4),(943,-1049065200,5),(943,-1033340400,4),(943,-1017615600,5),(943,-1002495600,4),(943,-986166000,5),(943,-969231600,4),(943,-950482800,5),(943,-942015600,4),(943,-922662000,5),(943,-906937200,4),(943,-891126000,5),(943,-877302000,4),(943,-873676800,7),(943,-864000000,4),(943,-857948400,5),(943,-845852400,4),(943,-842832000,7),(943,-831340800,4),(943,-825894000,5),(943,-814402800,4),(943,-810777600,7),(943,-799891200,4),(943,-794444400,5),(943,-782953200,4),(943,-779328000,7),(943,-768441600,4),(943,-762994800,5),(943,-749084400,4),(943,-733359600,5),(943,-717624000,4),(943,-701899200,5),(943,-686174400,4),(943,-670449600,5),(943,-654724800,4),(943,-639000000,5),(943,-591825600,4),(943,-575496000,5),(943,-559771200,4),(943,-544046400,5),(943,-528321600,4),(943,-512596800,5),(943,-496872000,4),(943,-481147200,5),(943,-465422400,4),(943,-449697600,5),(943,-433972800,4),(943,-417643200,5),(943,-401918400,4),(943,-386193600,5),(943,-370468800,4),(943,-354744000,5),(943,-339019200,4),(943,-323294400,5),(943,-307569600,4),(943,-291844800,5),(943,-276120000,4),(943,-260395200,5),(943,-244670400,4),(943,-228340800,5),(943,-212616000,4),(943,-196891200,5),(943,-181166400,4),(943,-165441600,5),(943,-149716800,4),(943,-133992000,5),(943,-118267200,9),(943,228272400,7),(943,243997200,8),(943,260326800,7),(943,276051600,8),(943,291776400,7),(943,307504800,8),(943,323226000,7),(943,338954400,8),(943,354679200,7),(943,370404000,8),(943,386128800,7),(943,401853600,8),(943,417582000,7),(943,433303200,8),(943,449028000,7),(943,465357600,8),(943,481082400,7),(943,496807200,8),(943,512532000,7),(943,528256800,8),(943,543981600,7),(943,559706400,8),(943,575431200,7),(943,591156000,8),(943,606880800,7),(943,622605600,8),(943,638330400,7),(943,654660000,8),(943,670384800,7),(943,686109600,8),(943,701834400,7),(943,717559200,10),(943,733280400,11),(943,749005200,12),(943,764730000,11),(943,780454800,12),(943,796179600,11),(943,811904400,12),(943,828234000,11),(943,846378000,12),(943,859683600,11),(943,877827600,12),(943,891133200,11),(943,909277200,12),(943,922582800,11),(943,941331600,12),(943,954032400,11),(943,972781200,12),(943,985482000,11),(943,1004230800,12),(943,1017536400,11),(943,1035680400,12),(943,1048986000,11),(943,1067130000,12),(943,1080435600,11),(943,1099184400,12),(943,1111885200,11),(943,1130634000,12),(943,1143334800,11),(943,1162083600,12),(943,1174784400,11),(943,1193533200,12),(943,1206838800,11),(943,1224982800,12),(943,1238288400,11),(943,1256432400,12),(943,1269738000,11),(943,1288486800,12),(943,1301187600,11),(943,1319936400,12),(943,1332637200,11),(943,1351386000,12),(943,1364691600,11),(943,1382835600,12),(943,1396141200,11),(943,1414285200,12),(943,1427590800,11),(943,1445734800,12),(943,1459040400,11),(943,1477789200,12),(943,1490490000,11),(943,1509238800,12),(943,1521939600,11),(943,1540688400,12),(943,1553994000,11),(943,1572138000,12),(943,1585443600,11),(943,1603587600,12),(943,1616893200,11),(943,1635642000,12),(943,1648342800,11),(943,1667091600,12),(943,1679792400,11),(943,1698541200,12),(943,1711846800,11),(943,1729990800,12),(943,1743296400,11),(943,1761440400,12),(943,1774746000,11),(943,1792890000,12),(943,1806195600,11),(943,1824944400,12),(943,1837645200,11),(943,1856394000,12),(943,1869094800,11),(943,1887843600,12),(943,1901149200,11),(943,1919293200,12),(943,1932598800,11),(943,1950742800,12),(943,1964048400,11),(943,1982797200,12),(943,1995498000,11),(943,2014246800,12),(943,2026947600,11),(943,2045696400,12),(943,2058397200,11),(943,2077146000,12),(943,2090451600,11),(943,2108595600,12),(943,2121901200,11),(943,2140045200,12),(943,2147483647,12),(944,-2147483648,2),(944,-1664307642,1),(944,-1648932042,2),(944,-1632080442,1),(944,-1618692042,2),(944,-1262281242,4),(944,-882727200,3),(944,-858538800,4),(944,-845229600,3),(944,-825879600,4),(944,-814384800,3),(944,-793825200,4),(944,-782935200,3),(944,-762375600,4),(944,-713988000,3),(944,-703710000,4),(944,-681933600,3),(944,-672865200,4),(944,-650484000,3),(944,-641415600,4),(944,-618429600,3),(944,-609966000,4),(944,-586980000,3),(944,-578516400,4),(944,-555530400,3),(944,-546462000,4),(944,-429127200,3),(944,-415825200,4),(944,136360800,3),(944,152082000,4),(944,167810400,3),(944,183531600,4),(944,199260000,3),(944,215586000,4),(944,230709600,3),(944,247035600,4),(944,262764000,3),(944,278485200,4),(944,294213600,3),(944,309934800,4),(944,325663200,3),(944,341384400,4),(944,357112800,3),(944,372834000,4),(944,388562400,3),(944,404888400,4),(944,420012000,3),(944,436338000,4),(944,452066400,3),(944,467787600,4),(944,483516000,3),(944,499237200,4),(944,514965600,3),(944,530686800,4),(944,544600800,3),(944,562136400,4),(944,576050400,3),(944,594190800,4),(944,607500000,3),(944,625640400,4),(944,638949600,3),(944,657090000,4),(944,671004000,3),(944,688539600,4),(944,702453600,3),(944,719989200,4),(944,733903200,3),(944,752043600,4),(944,765352800,3),(944,783493200,4),(944,796802400,3),(944,814942800,4),(944,828856800,3),(944,846392400,4),(944,860306400,3),(944,877842000,4),(944,891756000,3),(944,909291600,4),(944,923205600,3),(944,941346000,4),(944,954655200,3),(944,972795600,4),(944,986104800,3),(944,1004245200,4),(944,1018159200,3),(944,1035694800,4),(944,1049608800,3),(944,1067144400,4),(944,1081058400,3),(944,1099198800,4),(944,1112508000,3),(944,1130648400,4),(944,1143957600,3),(944,1162098000,4),(944,1173592800,3),(944,1194152400,4),(944,1205042400,3),(944,1225602000,4),(944,1236492000,3),(944,1257051600,4),(944,1268546400,3),(944,1289106000,4),(944,1299996000,3),(944,1320555600,4),(944,1331445600,3),(944,1352005200,4),(944,1362895200,3),(944,1383454800,4),(944,1394344800,3),(944,1414904400,4),(944,1425794400,3),(944,1446354000,4),(944,1457848800,3),(944,1478408400,4),(944,1489298400,3),(944,1509858000,4),(944,1520748000,3),(944,1541307600,4),(944,1552197600,3),(944,1572757200,4),(944,1583647200,3),(944,1604206800,4),(944,1615701600,3),(944,1636261200,4),(944,1647151200,3),(944,1667710800,4),(944,1678600800,3),(944,1699160400,4),(944,1710050400,3),(944,1730610000,4),(944,1741500000,3),(944,1762059600,4),(944,1772949600,3),(944,1793509200,4),(944,1805004000,3),(944,1825563600,4),(944,1836453600,3),(944,1857013200,4),(944,1867903200,3),(944,1888462800,4),(944,1899352800,3),(944,1919912400,4),(944,1930802400,3),(944,1951362000,4),(944,1962856800,3),(944,1983416400,4),(944,1994306400,3),(944,2014866000,4),(944,2025756000,3),(944,2046315600,4),(944,2057205600,3),(944,2077765200,4),(944,2088655200,3),(944,2109214800,4),(944,2120104800,3),(944,2140664400,4),(945,-2147483648,0),(945,-1509663504,1),(945,-733874400,2),(945,323827200,3),(945,338950800,4),(945,354675600,5),(945,370400400,4),(945,386125200,5),(945,401850000,4),(945,417574800,5),(945,433299600,4),(945,449024400,5),(945,465354000,4),(945,481078800,5),(945,496803600,4),(945,512528400,5),(945,528253200,4),(945,543978000,5),(945,559702800,4),(945,575427600,5),(945,591152400,4),(945,606877200,5),(945,622602000,4),(945,638326800,5),(945,654656400,4),(945,670381200,5),(945,686106000,4),(945,701830800,5),(945,717555600,4),(945,733280400,5),(945,749005200,4),(945,764730000,5),(945,780454800,4),(945,796179600,5),(945,811904400,4),(945,828234000,5),(945,846378000,4),(945,859683600,5),(945,877827600,4),(945,891133200,5),(945,909277200,4),(945,922582800,5),(945,941331600,4),(945,954032400,5),(945,972781200,4),(945,985482000,5),(945,1004230800,4),(945,1017536400,5),(945,1035680400,4),(945,1048986000,5),(945,1067130000,4),(945,1080435600,5),(945,1099184400,4),(945,1111885200,5),(945,1130634000,4),(945,1143334800,5),(945,1162083600,4),(945,1174784400,5),(945,1193533200,4),(945,1206838800,5),(945,1224982800,4),(945,1238288400,5),(945,1256432400,4),(945,1269738000,5),(945,1288486800,4),(945,1301187600,5),(945,1319936400,4),(945,1332637200,5),(945,1351386000,4),(945,1364691600,5),(945,1382835600,4),(945,1396141200,5),(945,1414285200,4),(945,1427590800,5),(945,1445734800,4),(945,1459040400,5),(945,1477789200,4),(945,1490490000,5),(945,1509238800,4),(945,1521939600,5),(945,1540688400,4),(945,1553994000,5),(945,1572138000,4),(945,1585443600,5),(945,1603587600,4),(945,1616893200,5),(945,1635642000,4),(945,1648342800,5),(945,1667091600,4),(945,1679792400,5),(945,1698541200,4),(945,1711846800,5),(945,1729990800,4),(945,1743296400,5),(945,1761440400,4),(945,1774746000,5),(945,1792890000,4),(945,1806195600,5),(945,1824944400,4),(945,1837645200,5),(945,1856394000,4),(945,1869094800,5),(945,1887843600,4),(945,1901149200,5),(945,1919293200,4),(945,1932598800,5),(945,1950742800,4),(945,1964048400,5),(945,1982797200,4),(945,1995498000,5),(945,2014246800,4),(945,2026947600,5),(945,2045696400,4),(945,2058397200,5),(945,2077146000,4),(945,2090451600,5),(945,2108595600,4),(945,2121901200,5),(945,2140045200,4),(946,-2147483648,0),(946,-1830376800,1),(946,-862610400,2),(946,-764118000,3),(946,186120000,4),(946,2147483647,4),(947,-2147483648,0),(947,-1955748776,1),(947,354675600,2),(947,370400400,3),(947,386125200,2),(947,401850000,3),(947,417574800,2),(947,433299600,3),(947,449024400,2),(947,465354000,3),(947,481078800,2),(947,496803600,3),(947,512528400,2),(947,528253200,3),(947,543978000,2),(947,559702800,3),(947,575427600,2),(947,591152400,3),(947,606877200,2),(947,622602000,3),(947,638326800,2),(947,654656400,3),(947,670381200,2),(947,686106000,3),(947,701830800,2),(947,717555600,3),(947,733280400,2),(947,749005200,3),(947,764730000,2),(947,780454800,3),(947,796179600,2),(947,811904400,3),(947,828234000,2),(947,846378000,3),(947,859683600,2),(947,877827600,3),(947,891133200,2),(947,909277200,3),(947,922582800,2),(947,941331600,3),(947,954032400,2),(947,972781200,3),(947,985482000,2),(947,1004230800,3),(947,1017536400,2),(947,1035680400,3),(947,1048986000,2),(947,1067130000,3),(947,1080435600,2),(947,1099184400,3),(947,1111885200,2),(947,1130634000,3),(947,1143334800,2),(947,1162083600,3),(947,1174784400,2),(947,1193533200,3),(947,1206838800,2),(947,1224982800,3),(947,1238288400,2),(947,1256432400,3),(947,1269738000,2),(947,1288486800,3),(947,1301187600,2),(947,1319936400,3),(947,1332637200,2),(947,1351386000,3),(947,1364691600,2),(947,1382835600,3),(947,1396141200,2),(947,1414285200,3),(947,1427590800,2),(947,1445734800,3),(947,1459040400,2),(947,1477789200,3),(947,1490490000,2),(947,1509238800,3),(947,1521939600,2),(947,1540688400,3),(947,1553994000,2),(947,1572138000,3),(947,1585443600,2),(947,1603587600,3),(947,1616893200,2),(947,1635642000,3),(947,1648342800,2),(947,1667091600,3),(947,1679792400,2),(947,1698541200,3),(947,1711846800,2),(947,1729990800,3),(947,1743296400,2),(947,1761440400,3),(947,1774746000,2),(947,1792890000,3),(947,1806195600,2),(947,1824944400,3),(947,1837645200,2),(947,1856394000,3),(947,1869094800,2),(947,1887843600,3),(947,1901149200,2),(947,1919293200,3),(947,1932598800,2),(947,1950742800,3),(947,1964048400,2),(947,1982797200,3),(947,1995498000,2),(947,2014246800,3),(947,2026947600,2),(947,2045696400,3),(947,2058397200,2),(947,2077146000,3),(947,2090451600,2),(947,2108595600,3),(947,2121901200,2),(947,2140045200,3),(948,-2147483648,0),(948,-1955748776,1),(948,354675600,2),(948,370400400,3),(948,386125200,2),(948,401850000,3),(948,417574800,2),(948,433299600,3),(948,449024400,2),(948,465354000,3),(948,481078800,2),(948,496803600,3),(948,512528400,2),(948,528253200,3),(948,543978000,2),(948,559702800,3),(948,575427600,2),(948,591152400,3),(948,606877200,2),(948,622602000,3),(948,638326800,2),(948,654656400,3),(948,670381200,2),(948,686106000,3),(948,701830800,2),(948,717555600,3),(948,733280400,2),(948,749005200,3),(948,764730000,2),(948,780454800,3),(948,796179600,2),(948,811904400,3),(948,828234000,2),(948,846378000,3),(948,859683600,2),(948,877827600,3),(948,891133200,2),(948,909277200,3),(948,922582800,2),(948,941331600,3),(948,954032400,2),(948,972781200,3),(948,985482000,2),(948,1004230800,3),(948,1017536400,2),(948,1035680400,3),(948,1048986000,2),(948,1067130000,3),(948,1080435600,2),(948,1099184400,3),(948,1111885200,2),(948,1130634000,3),(948,1143334800,2),(948,1162083600,3),(948,1174784400,2),(948,1193533200,3),(948,1206838800,2),(948,1224982800,3),(948,1238288400,2),(948,1256432400,3),(948,1269738000,2),(948,1288486800,3),(948,1301187600,2),(948,1319936400,3),(948,1332637200,2),(948,1351386000,3),(948,1364691600,2),(948,1382835600,3),(948,1396141200,2),(948,1414285200,3),(948,1427590800,2),(948,1445734800,3),(948,1459040400,2),(948,1477789200,3),(948,1490490000,2),(948,1509238800,3),(948,1521939600,2),(948,1540688400,3),(948,1553994000,2),(948,1572138000,3),(948,1585443600,2),(948,1603587600,3),(948,1616893200,2),(948,1635642000,3),(948,1648342800,2),(948,1667091600,3),(948,1679792400,2),(948,1698541200,3),(948,1711846800,2),(948,1729990800,3),(948,1743296400,2),(948,1761440400,3),(948,1774746000,2),(948,1792890000,3),(948,1806195600,2),(948,1824944400,3),(948,1837645200,2),(948,1856394000,3),(948,1869094800,2),(948,1887843600,3),(948,1901149200,2),(948,1919293200,3),(948,1932598800,2),(948,1950742800,3),(948,1964048400,2),(948,1982797200,3),(948,1995498000,2),(948,2014246800,3),(948,2026947600,2),(948,2045696400,3),(948,2058397200,2),(948,2077146000,3),(948,2090451600,2),(948,2108595600,3),(948,2121901200,2),(948,2140045200,3),(949,-2147483648,2),(949,-1691884800,1),(949,-1680573600,2),(949,-927511200,1),(949,-857257200,3),(949,-844556400,4),(949,-828226800,3),(949,-812502000,4),(949,-796777200,3),(949,-781052400,4),(949,-765327600,3),(949,-340844400,4),(949,-324514800,3),(949,-308790000,4),(949,-293065200,3),(949,-277340400,4),(949,-261615600,3),(949,-245890800,4),(949,-230166000,3),(949,-214441200,4),(949,-198716400,3),(949,-182991600,4),(949,-166662000,3),(949,-147913200,4),(949,-135212400,3),(949,315529200,2),(949,323830800,5),(949,338950800,6),(949,354675600,5),(949,370400400,6),(949,386125200,5),(949,401850000,6),(949,417574800,5),(949,433299600,6),(949,449024400,5),(949,465354000,6),(949,481078800,5),(949,496803600,6),(949,512528400,5),(949,528253200,6),(949,543978000,5),(949,559702800,6),(949,575427600,5),(949,591152400,6),(949,606877200,5),(949,622602000,6),(949,638326800,5),(949,654656400,6),(949,670381200,5),(949,686106000,6),(949,701830800,5),(949,717555600,6),(949,733280400,5),(949,749005200,6),(949,764730000,5),(949,780454800,6),(949,796179600,5),(949,811904400,6),(949,828234000,5),(949,846378000,6),(949,859683600,5),(949,877827600,6),(949,891133200,5),(949,909277200,6),(949,922582800,5),(949,941331600,6),(949,954032400,5),(949,972781200,6),(949,985482000,5),(949,1004230800,6),(949,1017536400,5),(949,1035680400,6),(949,1048986000,5),(949,1067130000,6),(949,1080435600,5),(949,1099184400,6),(949,1111885200,5),(949,1130634000,6),(949,1143334800,5),(949,1162083600,6),(949,1174784400,5),(949,1193533200,6),(949,1206838800,5),(949,1224982800,6),(949,1238288400,5),(949,1256432400,6),(949,1269738000,5),(949,1288486800,6),(949,1301187600,5),(949,1319936400,6),(949,1332637200,5),(949,1351386000,6),(949,1364691600,5),(949,1382835600,6),(949,1396141200,5),(949,1414285200,6),(949,1427590800,5),(949,1445734800,6),(949,1459040400,5),(949,1477789200,6),(949,1490490000,5),(949,1509238800,6),(949,1521939600,5),(949,1540688400,6),(949,1553994000,5),(949,1572138000,6),(949,1585443600,5),(949,1603587600,6),(949,1616893200,5),(949,1635642000,6),(949,1648342800,5),(949,1667091600,6),(949,1679792400,5),(949,1698541200,6),(949,1711846800,5),(949,1729990800,6),(949,1743296400,5),(949,1761440400,6),(949,1774746000,5),(949,1792890000,6),(949,1806195600,5),(949,1824944400,6),(949,1837645200,5),(949,1856394000,6),(949,1869094800,5),(949,1887843600,6),(949,1901149200,5),(949,1919293200,6),(949,1932598800,5),(949,1950742800,6),(949,1964048400,5),(949,1982797200,6),(949,1995498000,5),(949,2014246800,6),(949,2026947600,5),(949,2045696400,6),(949,2058397200,5),(949,2077146000,6),(949,2090451600,5),(949,2108595600,6),(949,2121901200,5),(949,2140045200,6),(950,-2147483648,1),(950,-1830380400,6),(950,-1689552000,2),(950,-1677798000,3),(950,-1667433600,4),(950,-1647734400,5),(950,-1635811200,4),(950,-1616198400,5),(950,-1604361600,4),(950,-1584662400,5),(950,-1572739200,4),(950,-1553040000,5),(950,-1541203200,4),(950,-1521504000,5),(950,-1442448000,4),(950,-1426809600,5),(950,-1379289600,4),(950,-1364774400,5),(950,-1348444800,4),(950,-1333324800,5),(950,-1316390400,4),(950,-1301270400,5),(950,-1284336000,4),(950,-1269820800,5),(950,-1221436800,4),(950,-1206921600,5),(950,-1191196800,4),(950,-1175472000,5),(950,-1127692800,4),(950,-1111968000,5),(950,-1096848000,4),(950,-1080518400,5),(950,-1063584000,4),(950,-1049068800,5),(950,-1033344000,4),(950,-1017619200,5),(950,-1002499200,4),(950,-986169600,5),(950,-969235200,4),(950,-950486400,5),(950,-942019200,4),(950,-922665600,5),(950,-906940800,4),(950,-891129600,5),(950,-877305600,4),(950,-873680400,7),(950,-864003600,4),(950,-857952000,5),(950,-845856000,4),(950,-842835600,7),(950,-831344400,4),(950,-825897600,5),(950,-814406400,4),(950,-810781200,7),(950,-799894800,4),(950,-794448000,5),(950,-782956800,4),(950,-779331600,7),(950,-768445200,4),(950,-762998400,5),(950,-749088000,4),(950,-733363200,5),(950,-717627600,4),(950,-701902800,5),(950,-686178000,4),(950,-670453200,5),(950,-654728400,4),(950,-639003600,5),(950,-591829200,4),(950,-575499600,5),(950,-559774800,4),(950,-544050000,5),(950,-528325200,4),(950,-512600400,5),(950,-496875600,4),(950,-481150800,5),(950,-465426000,4),(950,-449701200,5),(950,-433976400,4),(950,-417646800,5),(950,-401922000,4),(950,-386197200,5),(950,-370472400,4),(950,-354747600,5),(950,-339022800,4),(950,-323298000,5),(950,-307573200,4),(950,-291848400,5),(950,-276123600,4),(950,-260398800,5),(950,-244674000,4),(950,-228344400,5),(950,-212619600,4),(950,-196894800,5),(950,-181170000,4),(950,-165445200,5),(950,-149720400,4),(950,-133995600,5),(950,-118270800,10),(950,228268800,8),(950,243993600,9),(950,260323200,8),(950,276048000,9),(950,291772800,8),(950,307501200,9),(950,323222400,8),(950,338950800,9),(950,354675600,8),(950,370400400,9),(950,386125200,8),(950,401850000,9),(950,417578400,8),(950,433299600,11),(950,449024400,12),(950,465354000,11),(950,481078800,12),(950,496803600,11),(950,512528400,12),(950,528253200,11),(950,543978000,12),(950,559702800,11),(950,575427600,12),(950,591152400,11),(950,606877200,12),(950,622602000,11),(950,638326800,12),(950,654656400,11),(950,670381200,12),(950,686106000,11),(950,701830800,12),(950,717555600,11),(950,733280400,12),(950,749005200,11),(950,764730000,12),(950,780454800,11),(950,796179600,12),(950,811904400,11),(950,828234000,12),(950,846378000,11),(950,859683600,12),(950,877827600,11),(950,891133200,12),(950,909277200,11),(950,922582800,12),(950,941331600,11),(950,954032400,12),(950,972781200,11),(950,985482000,12),(950,1004230800,11),(950,1017536400,12),(950,1035680400,11),(950,1048986000,12),(950,1067130000,11),(950,1080435600,12),(950,1099184400,11),(950,1111885200,12),(950,1130634000,11),(950,1143334800,12),(950,1162083600,11),(950,1174784400,12),(950,1193533200,11),(950,1206838800,12),(950,1224982800,11),(950,1238288400,12),(950,1256432400,11),(950,1269738000,12),(950,1288486800,11),(950,1301187600,12),(950,1319936400,11),(950,1332637200,12),(950,1351386000,11),(950,1364691600,12),(950,1382835600,11),(950,1396141200,12),(950,1414285200,11),(950,1427590800,12),(950,1445734800,11),(950,1459040400,12),(950,1477789200,11),(950,1490490000,12),(950,1509238800,11),(950,1521939600,12),(950,1540688400,11),(950,1553994000,12),(950,1572138000,11),(950,1585443600,12),(950,1603587600,11),(950,1616893200,12),(950,1635642000,11),(950,1648342800,12),(950,1667091600,11),(950,1679792400,12),(950,1698541200,11),(950,1711846800,12),(950,1729990800,11),(950,1743296400,12),(950,1761440400,11),(950,1774746000,12),(950,1792890000,11),(950,1806195600,12),(950,1824944400,11),(950,1837645200,12),(950,1856394000,11),(950,1869094800,12),(950,1887843600,11),(950,1901149200,12),(950,1919293200,11),(950,1932598800,12),(950,1950742800,11),(950,1964048400,12),(950,1982797200,11),(950,1995498000,12),(950,2014246800,11),(950,2026947600,12),(950,2045696400,11),(950,2058397200,12),(950,2077146000,11),(950,2090451600,12),(950,2108595600,11),(950,2121901200,12),(950,2140045200,11),(951,-2147483648,0),(951,-1956609120,2),(951,-1668211200,1),(951,-1647212400,2),(951,-1636675200,1),(951,-1613430000,2),(951,-1605139200,1),(951,-1581894000,2),(951,-1539561600,1),(951,-1531350000,2),(951,-968025600,1),(951,-952293600,2),(951,-942008400,1),(951,-920239200,3),(951,-909957600,4),(951,-888789600,3),(951,-877903200,4),(951,-857944800,3),(951,-846453600,4),(951,-826495200,3),(951,-815004000,4),(951,-795045600,3),(951,-783554400,4),(951,-762991200,3),(951,-752104800,4),(951,-731541600,3),(951,-717631200,4),(951,-700092000,3),(951,-686181600,4),(951,-668642400,3),(951,-654732000,4),(951,-636588000,3),(951,-623282400,4),(951,-605743200,3),(951,-591832800,4),(951,-573688800,3),(951,-559778400,4),(951,-542239200,3),(951,-528328800,4),(951,-510789600,3),(951,-496879200,4),(951,-479340000,3),(951,-465429600,4),(951,-447890400,3),(951,-433980000,4),(951,-415836000,3),(951,-401925600,4),(951,-384386400,3),(951,-370476000,4),(951,-352936800,3),(951,-339026400,4),(951,-321487200,3),(951,-307576800,4),(951,-290037600,3),(951,-276127200,4),(951,-258588000,3),(951,-244677600,4),(951,-226533600,3),(951,-212623200,4),(951,-195084000,3),(951,-181173600,4),(951,-163634400,3),(951,-149724000,4),(951,-132184800,3),(951,-118274400,4),(951,-100735200,3),(951,-86824800,4),(951,-68680800,3),(951,-54770400,5),(952,-2147483648,1),(952,2147483647,1),(953,-2147483648,0),(953,-1830383032,1),(954,-2147483648,1),(954,-1824235716,3),(954,-1018209600,2),(954,-1003093200,3),(954,-986760000,2),(954,-971643600,3),(954,-954705600,2),(954,-939589200,3),(954,-923256000,2),(954,-908139600,3),(954,-891806400,2),(954,-876690000,3),(954,-860356800,2),(954,-852066000,3),(954,420609600,5),(954,433306800,4),(954,452052000,5),(954,464151600,4),(954,483501600,5),(954,495601200,2),(954,514350000,3),(954,527054400,2),(954,545799600,3),(954,558504000,2),(954,577249200,3),(954,589953600,2),(954,608698800,3),(954,621403200,2),(954,640753200,3),(954,652852800,2),(954,672202800,3),(954,684907200,2),(954,703652400,3),(954,716356800,2),(954,735102000,3),(954,747806400,2),(954,766551600,3),(954,779256000,2),(954,798001200,3),(954,810705600,2),(954,830055600,3),(954,842760000,2),(954,861505200,3),(954,874209600,2),(954,892954800,3),(954,905659200,2),(954,924404400,3),(954,937108800,2),(954,955854000,3),(954,968558400,2),(954,987310800,3),(954,999410400,2),(954,1019365200,3),(954,1030860000,2),(954,1050814800,3),(954,1062914400,2),(954,1082264400,3),(954,1094364000,2),(954,1113714000,3),(954,1125813600,2),(954,1145163600,3),(954,1157263200,2),(954,1176613200,3),(954,1188712800,2),(954,1208667600,3),(954,1220767200,2),(954,1240117200,3),(954,1252216800,2),(954,1271566800,3),(954,1283666400,5),(954,2147483647,5),(955,-2147483648,3),(955,-1672560000,1),(955,-1665388800,2),(955,-883641600,1),(955,-876124800,2),(955,-860400000,1),(955,-844675200,2),(955,-828345600,1),(955,-813225600,2),(955,31500000,3),(955,57686400,1),(955,67968000,2),(955,89136000,1),(955,100022400,2),(955,120585600,1),(955,131472000,2),(955,152035200,1),(955,162921600,2),(955,183484800,1),(955,194976000,2),(955,215539200,1),(955,226425600,2),(955,246988800,1),(955,257875200,2),(955,278438400,1),(955,289324800,2),(955,309888000,1),(955,320774400,2),(955,341337600,1),(955,352224000,2),(955,372787200,1),(955,386697600,2),(955,404841600,1),(955,415728000,2),(955,436291200,1),(955,447177600,2),(955,467740800,1),(955,478627200,2),(955,499190400,1),(955,511286400,2),(955,530035200,1),(955,542736000,2),(955,562089600,1),(955,574790400,2),(955,594144000,1),(955,606240000,2),(955,625593600,1),(955,636480000,2),(955,657043200,1),(955,667929600,2),(955,688492800,1),(955,699379200,2),(955,719942400,1),(955,731433600,2),(955,751996800,1),(955,762883200,2),(955,783446400,1),(955,794332800,2),(955,814896000,1),(955,828201600,2),(955,846345600,1),(955,859651200,2),(955,877795200,1),(955,891100800,2),(955,909244800,1),(955,922550400,2),(955,941299200,1),(955,954000000,2),(955,967305600,1),(955,985449600,2),(955,1004198400,1),(955,1017504000,2),(955,1035648000,1),(955,1048953600,2),(955,1067097600,1),(955,1080403200,2),(955,1099152000,1),(955,1111852800,2),(955,1130601600,1),(955,1143907200,2),(955,1162051200,1),(955,1174752000,2),(955,1193500800,1),(955,1207411200,2),(955,1223136000,1),(955,1238860800,2),(955,1254585600,1),(955,1270310400,2),(955,1286035200,1),(955,1301760000,2),(955,1317484800,1),(955,1333209600,2),(955,1349539200,1),(955,1365264000,2),(955,1380988800,1),(955,1396713600,2),(955,1412438400,1),(955,1428163200,2),(955,1443888000,1),(955,1459612800,2),(955,1475337600,1),(955,1491062400,2),(955,1506787200,1),(955,1522512000,2),(955,1538841600,1),(955,1554566400,2),(955,1570291200,1),(955,1586016000,2),(955,1601740800,1),(955,1617465600,2),(955,1633190400,1),(955,1648915200,2),(955,1664640000,1),(955,1680364800,2),(955,1696089600,1),(955,1712419200,2),(955,1728144000,1),(955,1743868800,2),(955,1759593600,1),(955,1775318400,2),(955,1791043200,1),(955,1806768000,2),(955,1822492800,1),(955,1838217600,2),(955,1853942400,1),(955,1869667200,2),(955,1885996800,1),(955,1901721600,2),(955,1917446400,1),(955,1933171200,2),(955,1948896000,1),(955,1964620800,2),(955,1980345600,1),(955,1996070400,2),(955,2011795200,1),(955,2027520000,2),(955,2043244800,1),(955,2058969600,2),(955,2075299200,1),(955,2091024000,2),(955,2106748800,1),(955,2122473600,2),(955,2138198400,1),(956,-2147483648,3),(956,-1672558200,1),(956,-1665387000,2),(956,-883639800,1),(956,-876123000,2),(956,-860398200,1),(956,-844673400,2),(956,-828343800,1),(956,-813223800,2),(956,31501800,3),(956,57688200,1),(956,67969800,2),(956,89137800,1),(956,100024200,2),(956,120587400,1),(956,131473800,2),(956,152037000,1),(956,162923400,2),(956,183486600,1),(956,194977800,2),(956,215541000,1),(956,226427400,2),(956,246990600,1),(956,257877000,2),(956,278440200,1),(956,289326600,2),(956,309889800,1),(956,320776200,2),(956,341339400,1),(956,352225800,2),(956,372789000,1),(956,384280200,2),(956,404843400,1),(956,415729800,2),(956,436293000,1),(956,447179400,2),(956,467742600,1),(956,478629000,2),(956,499192200,1),(956,511288200,2),(956,530037000,1),(956,542737800,2),(956,562091400,1),(956,574792200,2),(956,594145800,1),(956,606241800,2),(956,625595400,1),(956,637691400,2),(956,657045000,1),(956,667931400,2),(956,688494600,1),(956,701195400,2),(956,719944200,1),(956,731435400,2),(956,751998600,1),(956,764094600,2),(956,783448200,1),(956,796149000,2),(956,814897800,1),(956,828203400,2),(956,846347400,1),(956,859653000,2),(956,877797000,1),(956,891102600,2),(956,909246600,1),(956,922552200,2),(956,941301000,1),(956,954001800,2),(956,972750600,1),(956,985451400,2),(956,1004200200,1),(956,1017505800,2),(956,1035649800,1),(956,1048955400,2),(956,1067099400,1),(956,1080405000,2),(956,1099153800,1),(956,1111854600,2),(956,1130603400,1),(956,1143909000,2),(956,1162053000,1),(956,1174753800,2),(956,1193502600,1),(956,1207413000,2),(956,1223137800,1),(956,1238862600,2),(956,1254587400,1),(956,1270312200,2),(956,1286037000,1),(956,1301761800,2),(956,1317486600,1),(956,1333211400,2),(956,1349541000,1),(956,1365265800,2),(956,1380990600,1),(956,1396715400,2),(956,1412440200,1),(956,1428165000,2),(956,1443889800,1),(956,1459614600,2),(956,1475339400,1),(956,1491064200,2),(956,1506789000,1),(956,1522513800,2),(956,1538843400,1),(956,1554568200,2),(956,1570293000,1),(956,1586017800,2),(956,1601742600,1),(956,1617467400,2),(956,1633192200,1),(956,1648917000,2),(956,1664641800,1),(956,1680366600,2),(956,1696091400,1),(956,1712421000,2),(956,1728145800,1),(956,1743870600,2),(956,1759595400,1),(956,1775320200,2),(956,1791045000,1),(956,1806769800,2),(956,1822494600,1),(956,1838219400,2),(956,1853944200,1),(956,1869669000,2),(956,1885998600,1),(956,1901723400,2),(956,1917448200,1),(956,1933173000,2),(956,1948897800,1),(956,1964622600,2),(956,1980347400,1),(956,1996072200,2),(956,2011797000,1),(956,2027521800,2),(956,2043246600,1),(956,2058971400,2),(956,2075301000,1),(956,2091025800,2),(956,2106750600,1),(956,2122475400,2),(956,2138200200,1),(957,-2147483648,3),(957,-1672560000,1),(957,-1665388800,2),(957,-883641600,1),(957,-876124800,2),(957,-860400000,1),(957,-844675200,2),(957,-828345600,1),(957,-813225600,2),(957,31500000,3),(957,57686400,1),(957,67968000,2),(957,625593600,1),(957,636480000,2),(957,657043200,1),(957,667929600,2),(957,688492800,1),(957,699379200,2),(958,-2147483648,3),(958,-1672558200,1),(958,-1665387000,2),(958,-883639800,1),(958,-876123000,2),(958,-860398200,1),(958,-844673400,2),(958,-828343800,1),(958,-813223800,2),(958,31501800,3),(958,57688200,1),(958,67969800,2),(958,89137800,1),(958,100024200,2),(958,120587400,1),(958,131473800,2),(958,152037000,1),(958,162923400,2),(958,183486600,1),(958,194977800,2),(958,215541000,1),(958,226427400,2),(958,246990600,1),(958,257877000,2),(958,278440200,1),(958,289326600,2),(958,309889800,1),(958,320776200,2),(958,341339400,1),(958,352225800,2),(958,372789000,1),(958,386699400,2),(958,404843400,1),(958,415729800,2),(958,436293000,1),(958,447179400,2),(958,467742600,1),(958,478629000,2),(958,499192200,1),(958,511288200,2),(958,530037000,1),(958,542737800,2),(958,562091400,1),(958,574792200,2),(958,594145800,1),(958,606241800,2),(958,625595400,1),(958,636481800,2),(958,657045000,1),(958,667931400,2),(958,688494600,1),(958,699381000,2),(958,719944200,1),(958,731435400,2),(958,751998600,1),(958,762885000,2),(958,783448200,1),(958,794334600,2),(958,814897800,1),(958,828203400,2),(958,846347400,1),(958,859653000,2),(958,877797000,1),(958,891102600,2),(958,909246600,1),(958,922552200,2),(958,941301000,1),(958,946647000,4),(958,954001800,2),(958,972750600,1),(958,985451400,2),(958,1004200200,1),(958,1017505800,2),(958,1035649800,1),(958,1048955400,2),(958,1067099400,1),(958,1080405000,2),(958,1099153800,1),(958,1111854600,2),(958,1130603400,1),(958,1143909000,2),(958,1162053000,1),(958,1174753800,2),(958,1193502600,1),(958,1207413000,2),(958,1223137800,1),(958,1238862600,2),(958,1254587400,1),(958,1270312200,2),(958,1286037000,1),(958,1301761800,2),(958,1317486600,1),(958,1333211400,2),(958,1349541000,1),(958,1365265800,2),(958,1380990600,1),(958,1396715400,2),(958,1412440200,1),(958,1428165000,2),(958,1443889800,1),(958,1459614600,2),(958,1475339400,1),(958,1491064200,2),(958,1506789000,1),(958,1522513800,2),(958,1538843400,1),(958,1554568200,2),(958,1570293000,1),(958,1586017800,2),(958,1601742600,1),(958,1617467400,2),(958,1633192200,1),(958,1648917000,2),(958,1664641800,1),(958,1680366600,2),(958,1696091400,1),(958,1712421000,2),(958,1728145800,1),(958,1743870600,2),(958,1759595400,1),(958,1775320200,2),(958,1791045000,1),(958,1806769800,2),(958,1822494600,1),(958,1838219400,2),(958,1853944200,1),(958,1869669000,2),(958,1885998600,1),(958,1901723400,2),(958,1917448200,1),(958,1933173000,2),(958,1948897800,1),(958,1964622600,2),(958,1980347400,1),(958,1996072200,2),(958,2011797000,1),(958,2027521800,2),(958,2043246600,1),(958,2058971400,2),(958,2075301000,1),(958,2091025800,2),(958,2106750600,1),(958,2122475400,2),(958,2138200200,1),(959,-2147483648,3),(959,-1672560000,1),(959,-1665388800,2),(959,-883641600,1),(959,-876124800,2),(959,-860400000,1),(959,-844675200,2),(959,-828345600,1),(959,-813225600,2),(959,31500000,3),(959,57686400,1),(959,67968000,2),(959,89136000,1),(959,100022400,2),(959,120585600,1),(959,131472000,2),(959,152035200,1),(959,162921600,2),(959,183484800,1),(959,194976000,2),(959,215539200,1),(959,226425600,2),(959,246988800,1),(959,257875200,2),(959,278438400,1),(959,289324800,2),(959,309888000,1),(959,320774400,2),(959,341337600,1),(959,352224000,2),(959,372787200,1),(959,386697600,2),(959,404841600,1),(959,415728000,2),(959,436291200,1),(959,447177600,2),(959,467740800,1),(959,478627200,2),(959,499190400,1),(959,511286400,2),(959,530035200,1),(959,542736000,2),(959,562089600,1),(959,574790400,2),(959,594144000,1),(959,606240000,2),(959,625593600,1),(959,636480000,2),(959,657043200,1),(959,667929600,2),(959,688492800,1),(959,699379200,2),(959,719942400,1),(959,731433600,2),(959,751996800,1),(959,762883200,2),(959,783446400,1),(959,794332800,2),(959,814896000,1),(959,828201600,2),(959,846345600,1),(959,859651200,2),(959,877795200,1),(959,891100800,2),(959,909244800,1),(959,922550400,2),(959,941299200,1),(959,954000000,2),(959,967305600,1),(959,985449600,2),(959,1004198400,1),(959,1017504000,2),(959,1035648000,1),(959,1048953600,2),(959,1067097600,1),(959,1080403200,2),(959,1099152000,1),(959,1111852800,2),(959,1130601600,1),(959,1143907200,2),(959,1162051200,1),(959,1174752000,2),(959,1193500800,1),(959,1207411200,2),(959,1223136000,1),(959,1238860800,2),(959,1254585600,1),(959,1270310400,2),(959,1286035200,1),(959,1301760000,2),(959,1317484800,1),(959,1333209600,2),(959,1349539200,1),(959,1365264000,2),(959,1380988800,1),(959,1396713600,2),(959,1412438400,1),(959,1428163200,2),(959,1443888000,1),(959,1459612800,2),(959,1475337600,1),(959,1491062400,2),(959,1506787200,1),(959,1522512000,2),(959,1538841600,1),(959,1554566400,2),(959,1570291200,1),(959,1586016000,2),(959,1601740800,1),(959,1617465600,2),(959,1633190400,1),(959,1648915200,2),(959,1664640000,1),(959,1680364800,2),(959,1696089600,1),(959,1712419200,2),(959,1728144000,1),(959,1743868800,2),(959,1759593600,1),(959,1775318400,2),(959,1791043200,1),(959,1806768000,2),(959,1822492800,1),(959,1838217600,2),(959,1853942400,1),(959,1869667200,2),(959,1885996800,1),(959,1901721600,2),(959,1917446400,1),(959,1933171200,2),(959,1948896000,1),(959,1964620800,2),(959,1980345600,1),(959,1996070400,2),(959,2011795200,1),(959,2027520000,2),(959,2043244800,1),(959,2058969600,2),(959,2075299200,1),(959,2091024000,2),(959,2106748800,1),(959,2122473600,2),(959,2138198400,1),(960,-2147483648,3),(960,-1680508800,1),(960,-1665388800,2),(960,-1646640000,1),(960,-1635753600,2),(960,-1615190400,1),(960,-1604304000,2),(960,-1583920800,3),(960,-883641600,1),(960,-876124800,2),(960,-860400000,1),(960,-844675200,2),(960,-828345600,1),(960,-813225600,2),(960,-94730400,3),(960,-71136000,1),(960,-55411200,2),(960,-37267200,1),(960,-25776000,2),(960,-5817600,1),(960,5673600,2),(960,25632000,1),(960,37728000,2),(960,57686400,1),(960,67968000,2),(960,89136000,1),(960,100022400,2),(960,120585600,1),(960,131472000,2),(960,152035200,1),(960,162921600,2),(960,183484800,1),(960,194976000,2),(960,215539200,1),(960,226425600,2),(960,246988800,1),(960,257875200,2),(960,278438400,1),(960,289324800,2),(960,309888000,1),(960,320774400,2),(960,341337600,1),(960,352224000,2),(960,372787200,1),(960,386092800,2),(960,404841600,1),(960,417542400,2),(960,436291200,1),(960,447177600,2),(960,467740800,1),(960,478627200,2),(960,499190400,1),(960,510076800,2),(960,530035200,1),(960,542736000,2),(960,562089600,1),(960,574790400,2),(960,594144000,1),(960,606240000,2),(960,625593600,1),(960,637689600,2),(960,657043200,1),(960,670348800,2),(960,686678400,1),(960,701798400,2),(960,718128000,1),(960,733248000,2),(960,749577600,1),(960,764697600,2),(960,781027200,1),(960,796147200,2),(960,812476800,1),(960,828201600,2),(960,844531200,1),(960,859651200,2),(960,875980800,1),(960,891100800,2),(960,907430400,1),(960,922550400,2),(960,938880000,1),(960,954000000,2),(960,967305600,1),(960,985449600,2),(960,1002384000,1),(960,1017504000,2),(960,1033833600,1),(960,1048953600,2),(960,1065283200,1),(960,1080403200,2),(960,1096732800,1),(960,1111852800,2),(960,1128182400,1),(960,1143907200,2),(960,1159632000,1),(960,1174752000,2),(960,1191686400,1),(960,1207411200,2),(960,1223136000,1),(960,1238860800,2),(960,1254585600,1),(960,1270310400,2),(960,1286035200,1),(960,1301760000,2),(960,1317484800,1),(960,1333209600,2),(960,1349539200,1),(960,1365264000,2),(960,1380988800,1),(960,1396713600,2),(960,1412438400,1),(960,1428163200,2),(960,1443888000,1),(960,1459612800,2),(960,1475337600,1),(960,1491062400,2),(960,1506787200,1),(960,1522512000,2),(960,1538841600,1),(960,1554566400,2),(960,1570291200,1),(960,1586016000,2),(960,1601740800,1),(960,1617465600,2),(960,1633190400,1),(960,1648915200,2),(960,1664640000,1),(960,1680364800,2),(960,1696089600,1),(960,1712419200,2),(960,1728144000,1),(960,1743868800,2),(960,1759593600,1),(960,1775318400,2),(960,1791043200,1),(960,1806768000,2),(960,1822492800,1),(960,1838217600,2),(960,1853942400,1),(960,1869667200,2),(960,1885996800,1),(960,1901721600,2),(960,1917446400,1),(960,1933171200,2),(960,1948896000,1),(960,1964620800,2),(960,1980345600,1),(960,1996070400,2),(960,2011795200,1),(960,2027520000,2),(960,2043244800,1),(960,2058969600,2),(960,2075299200,1),(960,2091024000,2),(960,2106748800,1),(960,2122473600,2),(960,2138198400,1),(961,-2147483648,3),(961,-1672558200,1),(961,-1665387000,2),(961,-883639800,1),(961,-876123000,2),(961,-860398200,1),(961,-844673400,2),(961,-828343800,1),(961,-813223800,2),(962,-2147483648,3),(962,-1672555500,1),(962,-1665384300,2),(962,-883637100,1),(962,-876120300,2),(962,-860395500,1),(962,-844670700,2),(962,-836469900,3),(962,152039700,1),(962,162926100,2),(962,436295700,1),(962,447182100,2),(962,690311700,1),(962,699383700,2),(962,1165079700,1),(962,1174756500,2),(962,1193505300,1),(962,1206810900,2),(962,1224954900,1),(962,1238260500,2),(962,2147483647,2),(963,-2147483648,3),(963,-1680508800,1),(963,-1665388800,2),(963,-1646640000,1),(963,-1635753600,2),(963,-1615190400,1),(963,-1604304000,2),(963,-1583920800,3),(963,-883641600,1),(963,-876124800,2),(963,-860400000,1),(963,-844675200,2),(963,-828345600,1),(963,-813225600,2),(963,-94730400,3),(963,-71136000,1),(963,-55411200,2),(963,-37267200,1),(963,-25776000,2),(963,-5817600,1),(963,5673600,2),(963,25632000,1),(963,37728000,2),(963,57686400,1),(963,67968000,2),(963,89136000,1),(963,100022400,2),(963,120585600,1),(963,131472000,2),(963,152035200,1),(963,162921600,2),(963,183484800,1),(963,194976000,2),(963,215539200,1),(963,226425600,2),(963,246988800,1),(963,257875200,2),(963,278438400,1),(963,289324800,2),(963,309888000,1),(963,320774400,2),(963,341337600,1),(963,352224000,2),(963,372787200,1),(963,386092800,2),(963,404841600,1),(963,417542400,2),(963,436291200,1),(963,447177600,2),(963,467740800,1),(963,478627200,2),(963,499190400,1),(963,510076800,2),(963,530035200,1),(963,542736000,2),(963,562089600,1),(963,574790400,2),(963,594144000,1),(963,606240000,2),(963,625593600,1),(963,637689600,2),(963,657043200,1),(963,670348800,2),(963,686678400,1),(963,701798400,2),(963,718128000,1),(963,733248000,2),(963,749577600,1),(963,764697600,2),(963,781027200,1),(963,796147200,2),(963,812476800,1),(963,828201600,2),(963,844531200,1),(963,859651200,2),(963,875980800,1),(963,891100800,2),(963,907430400,1),(963,922550400,2),(963,938880000,1),(963,954000000,2),(963,967305600,1),(963,985449600,2),(963,1002384000,1),(963,1017504000,2),(963,1033833600,1),(963,1048953600,2),(963,1065283200,1),(963,1080403200,2),(963,1096732800,1),(963,1111852800,2),(963,1128182400,1),(963,1143907200,2),(963,1159632000,1),(963,1174752000,2),(963,1191686400,1),(963,1207411200,2),(963,1223136000,1),(963,1238860800,2),(963,1254585600,1),(963,1270310400,2),(963,1286035200,1),(963,1301760000,2),(963,1317484800,1),(963,1333209600,2),(963,1349539200,1),(963,1365264000,2),(963,1380988800,1),(963,1396713600,2),(963,1412438400,1),(963,1428163200,2),(963,1443888000,1),(963,1459612800,2),(963,1475337600,1),(963,1491062400,2),(963,1506787200,1),(963,1522512000,2),(963,1538841600,1),(963,1554566400,2),(963,1570291200,1),(963,1586016000,2),(963,1601740800,1),(963,1617465600,2),(963,1633190400,1),(963,1648915200,2),(963,1664640000,1),(963,1680364800,2),(963,1696089600,1),(963,1712419200,2),(963,1728144000,1),(963,1743868800,2),(963,1759593600,1),(963,1775318400,2),(963,1791043200,1),(963,1806768000,2),(963,1822492800,1),(963,1838217600,2),(963,1853942400,1),(963,1869667200,2),(963,1885996800,1),(963,1901721600,2),(963,1917446400,1),(963,1933171200,2),(963,1948896000,1),(963,1964620800,2),(963,1980345600,1),(963,1996070400,2),(963,2011795200,1),(963,2027520000,2),(963,2043244800,1),(963,2058969600,2),(963,2075299200,1),(963,2091024000,2),(963,2106748800,1),(963,2122473600,2),(963,2138198400,1),(964,-2147483648,1),(964,352216800,3),(964,372785400,2),(964,384273000,3),(964,404839800,2),(964,415722600,3),(964,436289400,2),(964,447172200,3),(964,467739000,2),(964,478621800,3),(964,499188600,4),(964,511282800,3),(964,530033400,4),(964,542732400,3),(964,562087800,4),(964,574786800,3),(964,594142200,4),(964,606236400,3),(964,625591800,4),(964,636476400,3),(964,657041400,4),(964,667926000,3),(964,688491000,4),(964,699375600,3),(964,719940600,4),(964,731430000,3),(964,751995000,4),(964,762879600,3),(964,783444600,4),(964,794329200,3),(964,814894200,4),(964,828198000,3),(964,846343800,4),(964,859647600,3),(964,877793400,4),(964,891097200,3),(964,909243000,4),(964,922546800,3),(964,941297400,4),(964,953996400,3),(964,967303800,4),(964,985446000,3),(964,1004196600,4),(964,1017500400,3),(964,1035646200,4),(964,1048950000,3),(964,1067095800,4),(964,1080399600,3),(964,1099150200,4),(964,1111849200,3),(964,1130599800,4),(964,1143903600,3),(964,1162049400,4),(964,1174748400,3),(964,1193499000,4),(964,1207407600,3),(964,1223134200,4),(964,1238857200,3),(964,1254583800,4),(964,1270306800,3),(964,1286033400,4),(964,1301756400,3),(964,1317483000,4),(964,1333206000,3),(964,1349537400,4),(964,1365260400,3),(964,1380987000,4),(964,1396710000,3),(964,1412436600,4),(964,1428159600,3),(964,1443886200,4),(964,1459609200,3),(964,1475335800,4),(964,1491058800,3),(964,1506785400,4),(964,1522508400,3),(964,1538839800,4),(964,1554562800,3),(964,1570289400,4),(964,1586012400,3),(964,1601739000,4),(964,1617462000,3),(964,1633188600,4),(964,1648911600,3),(964,1664638200,4),(964,1680361200,3),(964,1696087800,4),(964,1712415600,3),(964,1728142200,4),(964,1743865200,3),(964,1759591800,4),(964,1775314800,3),(964,1791041400,4),(964,1806764400,3),(964,1822491000,4),(964,1838214000,3),(964,1853940600,4),(964,1869663600,3),(964,1885995000,4),(964,1901718000,3),(964,1917444600,4),(964,1933167600,3),(964,1948894200,4),(964,1964617200,3),(964,1980343800,4),(964,1996066800,3),(964,2011793400,4),(964,2027516400,3),(964,2043243000,4),(964,2058966000,3),(964,2075297400,4),(964,2091020400,3),(964,2106747000,4),(964,2122470000,3),(964,2138196600,4),(964,2147483647,4),(965,-2147483648,3),(965,-1672560000,1),(965,-1665388800,2),(965,-883641600,1),(965,-876124800,2),(965,-860400000,1),(965,-844675200,2),(965,-828345600,1),(965,-813225600,2),(965,31500000,3),(965,57686400,1),(965,67968000,2),(965,625593600,1),(965,636480000,2),(965,657043200,1),(965,667929600,2),(965,688492800,1),(965,699379200,2),(965,709912800,3),(965,719942400,1),(965,731433600,2),(965,751996800,1),(965,762883200,2),(966,-2147483648,1),(966,352216800,3),(966,372785400,2),(966,384273000,3),(966,404839800,2),(966,415722600,3),(966,436289400,2),(966,447172200,3),(966,467739000,2),(966,478621800,3),(966,499188600,4),(966,511282800,3),(966,530033400,4),(966,542732400,3),(966,562087800,4),(966,574786800,3),(966,594142200,4),(966,606236400,3),(966,625591800,4),(966,636476400,3),(966,657041400,4),(966,667926000,3),(966,688491000,4),(966,699375600,3),(966,719940600,4),(966,731430000,3),(966,751995000,4),(966,762879600,3),(966,783444600,4),(966,794329200,3),(966,814894200,4),(966,828198000,3),(966,846343800,4),(966,859647600,3),(966,877793400,4),(966,891097200,3),(966,909243000,4),(966,922546800,3),(966,941297400,4),(966,953996400,3),(966,967303800,4),(966,985446000,3),(966,1004196600,4),(966,1017500400,3),(966,1035646200,4),(966,1048950000,3),(966,1067095800,4),(966,1080399600,3),(966,1099150200,4),(966,1111849200,3),(966,1130599800,4),(966,1143903600,3),(966,1162049400,4),(966,1174748400,3),(966,1193499000,4),(966,1207407600,3),(966,1223134200,4),(966,1238857200,3),(966,1254583800,4),(966,1270306800,3),(966,1286033400,4),(966,1301756400,3),(966,1317483000,4),(966,1333206000,3),(966,1349537400,4),(966,1365260400,3),(966,1380987000,4),(966,1396710000,3),(966,1412436600,4),(966,1428159600,3),(966,1443886200,4),(966,1459609200,3),(966,1475335800,4),(966,1491058800,3),(966,1506785400,4),(966,1522508400,3),(966,1538839800,4),(966,1554562800,3),(966,1570289400,4),(966,1586012400,3),(966,1601739000,4),(966,1617462000,3),(966,1633188600,4),(966,1648911600,3),(966,1664638200,4),(966,1680361200,3),(966,1696087800,4),(966,1712415600,3),(966,1728142200,4),(966,1743865200,3),(966,1759591800,4),(966,1775314800,3),(966,1791041400,4),(966,1806764400,3),(966,1822491000,4),(966,1838214000,3),(966,1853940600,4),(966,1869663600,3),(966,1885995000,4),(966,1901718000,3),(966,1917444600,4),(966,1933167600,3),(966,1948894200,4),(966,1964617200,3),(966,1980343800,4),(966,1996066800,3),(966,2011793400,4),(966,2027516400,3),(966,2043243000,4),(966,2058966000,3),(966,2075297400,4),(966,2091020400,3),(966,2106747000,4),(966,2122470000,3),(966,2138196600,4),(966,2147483647,4),(967,-2147483648,3),(967,-1672560000,1),(967,-1665388800,2),(967,-883641600,1),(967,-876124800,2),(967,-860400000,1),(967,-844675200,2),(967,-828345600,1),(967,-813225600,2),(967,31500000,3),(967,57686400,1),(967,67968000,2),(967,89136000,1),(967,100022400,2),(967,120585600,1),(967,131472000,2),(967,152035200,1),(967,162921600,2),(967,183484800,1),(967,194976000,2),(967,215539200,1),(967,226425600,2),(967,246988800,1),(967,257875200,2),(967,278438400,1),(967,289324800,2),(967,309888000,1),(967,320774400,2),(967,341337600,1),(967,352224000,2),(967,372787200,1),(967,384278400,2),(967,404841600,1),(967,415728000,2),(967,436291200,1),(967,447177600,2),(967,467740800,1),(967,478627200,2),(967,499190400,1),(967,511286400,2),(967,530035200,1),(967,542736000,2),(967,561484800,1),(967,574790400,2),(967,594144000,1),(967,606240000,2),(967,625593600,1),(967,637689600,2),(967,657043200,1),(967,667929600,2),(967,688492800,1),(967,699379200,2),(967,719942400,1),(967,731433600,2),(967,751996800,1),(967,762883200,2),(967,783446400,1),(967,796147200,2),(967,814896000,1),(967,828201600,2),(967,846345600,1),(967,859651200,2),(967,877795200,1),(967,891100800,2),(967,909244800,1),(967,922550400,2),(967,941299200,1),(967,954000000,2),(967,967305600,1),(967,985449600,2),(967,1004198400,1),(967,1017504000,2),(967,1035648000,1),(967,1048953600,2),(967,1067097600,1),(967,1080403200,2),(967,1099152000,1),(967,1111852800,2),(967,1130601600,1),(967,1143907200,2),(967,1162051200,1),(967,1174752000,2),(967,1193500800,1),(967,1207411200,2),(967,1223136000,1),(967,1238860800,2),(967,1254585600,1),(967,1270310400,2),(967,1286035200,1),(967,1301760000,2),(967,1317484800,1),(967,1333209600,2),(967,1349539200,1),(967,1365264000,2),(967,1380988800,1),(967,1396713600,2),(967,1412438400,1),(967,1428163200,2),(967,1443888000,1),(967,1459612800,2),(967,1475337600,1),(967,1491062400,2),(967,1506787200,1),(967,1522512000,2),(967,1538841600,1),(967,1554566400,2),(967,1570291200,1),(967,1586016000,2),(967,1601740800,1),(967,1617465600,2),(967,1633190400,1),(967,1648915200,2),(967,1664640000,1),(967,1680364800,2),(967,1696089600,1),(967,1712419200,2),(967,1728144000,1),(967,1743868800,2),(967,1759593600,1),(967,1775318400,2),(967,1791043200,1),(967,1806768000,2),(967,1822492800,1),(967,1838217600,2),(967,1853942400,1),(967,1869667200,2),(967,1885996800,1),(967,1901721600,2),(967,1917446400,1),(967,1933171200,2),(967,1948896000,1),(967,1964620800,2),(967,1980345600,1),(967,1996070400,2),(967,2011795200,1),(967,2027520000,2),(967,2043244800,1),(967,2058969600,2),(967,2075299200,1),(967,2091024000,2),(967,2106748800,1),(967,2122473600,2),(967,2138198400,1),(968,-2147483648,3),(968,-1672560000,1),(968,-1665388800,2),(968,-883641600,1),(968,-876124800,2),(968,-860400000,1),(968,-844675200,2),(968,-828345600,1),(968,-813225600,2),(968,31500000,3),(968,57686400,1),(968,67968000,2),(968,89136000,1),(968,100022400,2),(968,120585600,1),(968,131472000,2),(968,152035200,1),(968,162921600,2),(968,183484800,1),(968,194976000,2),(968,215539200,1),(968,226425600,2),(968,246988800,1),(968,257875200,2),(968,278438400,1),(968,289324800,2),(968,309888000,1),(968,320774400,2),(968,341337600,1),(968,352224000,2),(968,372787200,1),(968,386697600,2),(968,404841600,1),(968,415728000,2),(968,436291200,1),(968,447177600,2),(968,467740800,1),(968,478627200,2),(968,499190400,1),(968,511286400,2),(968,530035200,1),(968,542736000,2),(968,562089600,1),(968,574790400,2),(968,594144000,1),(968,606240000,2),(968,625593600,1),(968,636480000,2),(968,657043200,1),(968,667929600,2),(968,688492800,1),(968,699379200,2),(968,719942400,1),(968,731433600,2),(968,751996800,1),(968,762883200,2),(968,783446400,1),(968,794332800,2),(968,814896000,1),(968,828201600,2),(968,846345600,1),(968,859651200,2),(968,877795200,1),(968,891100800,2),(968,909244800,1),(968,922550400,2),(968,941299200,1),(968,954000000,2),(968,967305600,1),(968,985449600,2),(968,1004198400,1),(968,1017504000,2),(968,1035648000,1),(968,1048953600,2),(968,1067097600,1),(968,1080403200,2),(968,1099152000,1),(968,1111852800,2),(968,1130601600,1),(968,1143907200,2),(968,1162051200,1),(968,1174752000,2),(968,1193500800,1),(968,1207411200,2),(968,1223136000,1),(968,1238860800,2),(968,1254585600,1),(968,1270310400,2),(968,1286035200,1),(968,1301760000,2),(968,1317484800,1),(968,1333209600,2),(968,1349539200,1),(968,1365264000,2),(968,1380988800,1),(968,1396713600,2),(968,1412438400,1),(968,1428163200,2),(968,1443888000,1),(968,1459612800,2),(968,1475337600,1),(968,1491062400,2),(968,1506787200,1),(968,1522512000,2),(968,1538841600,1),(968,1554566400,2),(968,1570291200,1),(968,1586016000,2),(968,1601740800,1),(968,1617465600,2),(968,1633190400,1),(968,1648915200,2),(968,1664640000,1),(968,1680364800,2),(968,1696089600,1),(968,1712419200,2),(968,1728144000,1),(968,1743868800,2),(968,1759593600,1),(968,1775318400,2),(968,1791043200,1),(968,1806768000,2),(968,1822492800,1),(968,1838217600,2),(968,1853942400,1),(968,1869667200,2),(968,1885996800,1),(968,1901721600,2),(968,1917446400,1),(968,1933171200,2),(968,1948896000,1),(968,1964620800,2),(968,1980345600,1),(968,1996070400,2),(968,2011795200,1),(968,2027520000,2),(968,2043244800,1),(968,2058969600,2),(968,2075299200,1),(968,2091024000,2),(968,2106748800,1),(968,2122473600,2),(968,2138198400,1),(969,-2147483648,3),(969,-1672558200,1),(969,-1665387000,2),(969,-883639800,1),(969,-876123000,2),(969,-860398200,1),(969,-844673400,2),(969,-828343800,1),(969,-813223800,2),(970,-2147483648,3),(970,-1672552800,1),(970,-1665381600,2),(970,-883634400,1),(970,-876117600,2),(970,-860392800,1),(970,-844668000,2),(970,-836467200,3),(970,152042400,1),(970,162928800,2),(970,436298400,1),(970,447184800,2),(970,690314400,1),(970,699386400,2),(970,1165082400,1),(970,1174759200,2),(970,1193508000,1),(970,1206813600,2),(970,1224957600,1),(970,1238263200,2),(971,-2147483648,3),(971,-1672560000,1),(971,-1665388800,2),(971,-883641600,1),(971,-876124800,2),(971,-860400000,1),(971,-844675200,2),(971,-828345600,1),(971,-813225600,2),(971,31500000,3),(971,57686400,1),(971,67968000,2),(971,625593600,1),(971,636480000,2),(971,657043200,1),(971,667929600,2),(971,688492800,1),(971,699379200,2),(972,-2147483648,3),(972,-1672558200,1),(972,-1665387000,2),(972,-883639800,1),(972,-876123000,2),(972,-860398200,1),(972,-844673400,2),(972,-828343800,1),(972,-813223800,2),(972,31501800,3),(972,57688200,1),(972,67969800,2),(972,89137800,1),(972,100024200,2),(972,120587400,1),(972,131473800,2),(972,152037000,1),(972,162923400,2),(972,183486600,1),(972,194977800,2),(972,215541000,1),(972,226427400,2),(972,246990600,1),(972,257877000,2),(972,278440200,1),(972,289326600,2),(972,309889800,1),(972,320776200,2),(972,341339400,1),(972,352225800,2),(972,372789000,1),(972,384280200,2),(972,404843400,1),(972,415729800,2),(972,436293000,1),(972,447179400,2),(972,467742600,1),(972,478629000,2),(972,499192200,1),(972,511288200,2),(972,530037000,1),(972,542737800,2),(972,562091400,1),(972,574792200,2),(972,594145800,1),(972,606241800,2),(972,625595400,1),(972,637691400,2),(972,657045000,1),(972,667931400,2),(972,688494600,1),(972,701195400,2),(972,719944200,1),(972,731435400,2),(972,751998600,1),(972,764094600,2),(972,783448200,1),(972,796149000,2),(972,814897800,1),(972,828203400,2),(972,846347400,1),(972,859653000,2),(972,877797000,1),(972,891102600,2),(972,909246600,1),(972,922552200,2),(972,941301000,1),(972,954001800,2),(972,972750600,1),(972,985451400,2),(972,1004200200,1),(972,1017505800,2),(972,1035649800,1),(972,1048955400,2),(972,1067099400,1),(972,1080405000,2),(972,1099153800,1),(972,1111854600,2),(972,1130603400,1),(972,1143909000,2),(972,1162053000,1),(972,1174753800,2),(972,1193502600,1),(972,1207413000,2),(972,1223137800,1),(972,1238862600,2),(972,1254587400,1),(972,1270312200,2),(972,1286037000,1),(972,1301761800,2),(972,1317486600,1),(972,1333211400,2),(972,1349541000,1),(972,1365265800,2),(972,1380990600,1),(972,1396715400,2),(972,1412440200,1),(972,1428165000,2),(972,1443889800,1),(972,1459614600,2),(972,1475339400,1),(972,1491064200,2),(972,1506789000,1),(972,1522513800,2),(972,1538843400,1),(972,1554568200,2),(972,1570293000,1),(972,1586017800,2),(972,1601742600,1),(972,1617467400,2),(972,1633192200,1),(972,1648917000,2),(972,1664641800,1),(972,1680366600,2),(972,1696091400,1),(972,1712421000,2),(972,1728145800,1),(972,1743870600,2),(972,1759595400,1),(972,1775320200,2),(972,1791045000,1),(972,1806769800,2),(972,1822494600,1),(972,1838219400,2),(972,1853944200,1),(972,1869669000,2),(972,1885998600,1),(972,1901723400,2),(972,1917448200,1),(972,1933173000,2),(972,1948897800,1),(972,1964622600,2),(972,1980347400,1),(972,1996072200,2),(972,2011797000,1),(972,2027521800,2),(972,2043246600,1),(972,2058971400,2),(972,2075301000,1),(972,2091025800,2),(972,2106750600,1),(972,2122475400,2),(972,2138200200,1),(973,-2147483648,3),(973,-1672560000,1),(973,-1665388800,2),(973,-883641600,1),(973,-876124800,2),(973,-860400000,1),(973,-844675200,2),(973,-828345600,1),(973,-813225600,2),(973,31500000,3),(973,57686400,1),(973,67968000,2),(973,89136000,1),(973,100022400,2),(973,120585600,1),(973,131472000,2),(973,152035200,1),(973,162921600,2),(973,183484800,1),(973,194976000,2),(973,215539200,1),(973,226425600,2),(973,246988800,1),(973,257875200,2),(973,278438400,1),(973,289324800,2),(973,309888000,1),(973,320774400,2),(973,341337600,1),(973,352224000,2),(973,372787200,1),(973,386697600,2),(973,404841600,1),(973,415728000,2),(973,436291200,1),(973,447177600,2),(973,467740800,1),(973,478627200,2),(973,499190400,1),(973,511286400,2),(973,530035200,1),(973,542736000,2),(973,562089600,1),(973,574790400,2),(973,594144000,1),(973,606240000,2),(973,625593600,1),(973,636480000,2),(973,657043200,1),(973,667929600,2),(973,688492800,1),(973,699379200,2),(973,719942400,1),(973,731433600,2),(973,751996800,1),(973,762883200,2),(973,783446400,1),(973,794332800,2),(973,814896000,1),(973,828201600,2),(973,846345600,1),(973,859651200,2),(973,877795200,1),(973,891100800,2),(973,909244800,1),(973,922550400,2),(973,941299200,1),(973,954000000,2),(973,967305600,1),(973,985449600,2),(973,1004198400,1),(973,1017504000,2),(973,1035648000,1),(973,1048953600,2),(973,1067097600,1),(973,1080403200,2),(973,1099152000,1),(973,1111852800,2),(973,1130601600,1),(973,1143907200,2),(973,1162051200,1),(973,1174752000,2),(973,1193500800,1),(973,1207411200,2),(973,1223136000,1),(973,1238860800,2),(973,1254585600,1),(973,1270310400,2),(973,1286035200,1),(973,1301760000,2),(973,1317484800,1),(973,1333209600,2),(973,1349539200,1),(973,1365264000,2),(973,1380988800,1),(973,1396713600,2),(973,1412438400,1),(973,1428163200,2),(973,1443888000,1),(973,1459612800,2),(973,1475337600,1),(973,1491062400,2),(973,1506787200,1),(973,1522512000,2),(973,1538841600,1),(973,1554566400,2),(973,1570291200,1),(973,1586016000,2),(973,1601740800,1),(973,1617465600,2),(973,1633190400,1),(973,1648915200,2),(973,1664640000,1),(973,1680364800,2),(973,1696089600,1),(973,1712419200,2),(973,1728144000,1),(973,1743868800,2),(973,1759593600,1),(973,1775318400,2),(973,1791043200,1),(973,1806768000,2),(973,1822492800,1),(973,1838217600,2),(973,1853942400,1),(973,1869667200,2),(973,1885996800,1),(973,1901721600,2),(973,1917446400,1),(973,1933171200,2),(973,1948896000,1),(973,1964620800,2),(973,1980345600,1),(973,1996070400,2),(973,2011795200,1),(973,2027520000,2),(973,2043244800,1),(973,2058969600,2),(973,2075299200,1),(973,2091024000,2),(973,2106748800,1),(973,2122473600,2),(973,2138198400,1),(974,-2147483648,3),(974,-1680508800,1),(974,-1665388800,2),(974,-1646640000,1),(974,-1635753600,2),(974,-1615190400,1),(974,-1604304000,2),(974,-1583920800,3),(974,-883641600,1),(974,-876124800,2),(974,-860400000,1),(974,-844675200,2),(974,-828345600,1),(974,-813225600,2),(974,-94730400,3),(974,-71136000,1),(974,-55411200,2),(974,-37267200,1),(974,-25776000,2),(974,-5817600,1),(974,5673600,2),(974,25632000,1),(974,37728000,2),(974,57686400,1),(974,67968000,2),(974,89136000,1),(974,100022400,2),(974,120585600,1),(974,131472000,2),(974,152035200,1),(974,162921600,2),(974,183484800,1),(974,194976000,2),(974,215539200,1),(974,226425600,2),(974,246988800,1),(974,257875200,2),(974,278438400,1),(974,289324800,2),(974,309888000,1),(974,320774400,2),(974,341337600,1),(974,352224000,2),(974,372787200,1),(974,386092800,2),(974,404841600,1),(974,417542400,2),(974,436291200,1),(974,447177600,2),(974,467740800,1),(974,478627200,2),(974,499190400,1),(974,510076800,2),(974,530035200,1),(974,542736000,2),(974,562089600,1),(974,574790400,2),(974,594144000,1),(974,606240000,2),(974,625593600,1),(974,637689600,2),(974,657043200,1),(974,670348800,2),(974,686678400,1),(974,701798400,2),(974,718128000,1),(974,733248000,2),(974,749577600,1),(974,764697600,2),(974,781027200,1),(974,796147200,2),(974,812476800,1),(974,828201600,2),(974,844531200,1),(974,859651200,2),(974,875980800,1),(974,891100800,2),(974,907430400,1),(974,922550400,2),(974,938880000,1),(974,954000000,2),(974,967305600,1),(974,985449600,2),(974,1002384000,1),(974,1017504000,2),(974,1033833600,1),(974,1048953600,2),(974,1065283200,1),(974,1080403200,2),(974,1096732800,1),(974,1111852800,2),(974,1128182400,1),(974,1143907200,2),(974,1159632000,1),(974,1174752000,2),(974,1191686400,1),(974,1207411200,2),(974,1223136000,1),(974,1238860800,2),(974,1254585600,1),(974,1270310400,2),(974,1286035200,1),(974,1301760000,2),(974,1317484800,1),(974,1333209600,2),(974,1349539200,1),(974,1365264000,2),(974,1380988800,1),(974,1396713600,2),(974,1412438400,1),(974,1428163200,2),(974,1443888000,1),(974,1459612800,2),(974,1475337600,1),(974,1491062400,2),(974,1506787200,1),(974,1522512000,2),(974,1538841600,1),(974,1554566400,2),(974,1570291200,1),(974,1586016000,2),(974,1601740800,1),(974,1617465600,2),(974,1633190400,1),(974,1648915200,2),(974,1664640000,1),(974,1680364800,2),(974,1696089600,1),(974,1712419200,2),(974,1728144000,1),(974,1743868800,2),(974,1759593600,1),(974,1775318400,2),(974,1791043200,1),(974,1806768000,2),(974,1822492800,1),(974,1838217600,2),(974,1853942400,1),(974,1869667200,2),(974,1885996800,1),(974,1901721600,2),(974,1917446400,1),(974,1933171200,2),(974,1948896000,1),(974,1964620800,2),(974,1980345600,1),(974,1996070400,2),(974,2011795200,1),(974,2027520000,2),(974,2043244800,1),(974,2058969600,2),(974,2075299200,1),(974,2091024000,2),(974,2106748800,1),(974,2122473600,2),(974,2138198400,1),(975,-2147483648,3),(975,-1672560000,1),(975,-1665388800,2),(975,-883641600,1),(975,-876124800,2),(975,-860400000,1),(975,-844675200,2),(975,-828345600,1),(975,-813225600,2),(975,31500000,3),(975,57686400,1),(975,67968000,2),(975,89136000,1),(975,100022400,2),(975,120585600,1),(975,131472000,2),(975,152035200,1),(975,162921600,2),(975,183484800,1),(975,194976000,2),(975,215539200,1),(975,226425600,2),(975,246988800,1),(975,257875200,2),(975,278438400,1),(975,289324800,2),(975,309888000,1),(975,320774400,2),(975,341337600,1),(975,352224000,2),(975,372787200,1),(975,384278400,2),(975,404841600,1),(975,415728000,2),(975,436291200,1),(975,447177600,2),(975,467740800,1),(975,478627200,2),(975,499190400,1),(975,511286400,2),(975,530035200,1),(975,542736000,2),(975,561484800,1),(975,574790400,2),(975,594144000,1),(975,606240000,2),(975,625593600,1),(975,637689600,2),(975,657043200,1),(975,667929600,2),(975,688492800,1),(975,699379200,2),(975,719942400,1),(975,731433600,2),(975,751996800,1),(975,762883200,2),(975,783446400,1),(975,796147200,2),(975,814896000,1),(975,828201600,2),(975,846345600,1),(975,859651200,2),(975,877795200,1),(975,891100800,2),(975,909244800,1),(975,922550400,2),(975,941299200,1),(975,954000000,2),(975,967305600,1),(975,985449600,2),(975,1004198400,1),(975,1017504000,2),(975,1035648000,1),(975,1048953600,2),(975,1067097600,1),(975,1080403200,2),(975,1099152000,1),(975,1111852800,2),(975,1130601600,1),(975,1143907200,2),(975,1162051200,1),(975,1174752000,2),(975,1193500800,1),(975,1207411200,2),(975,1223136000,1),(975,1238860800,2),(975,1254585600,1),(975,1270310400,2),(975,1286035200,1),(975,1301760000,2),(975,1317484800,1),(975,1333209600,2),(975,1349539200,1),(975,1365264000,2),(975,1380988800,1),(975,1396713600,2),(975,1412438400,1),(975,1428163200,2),(975,1443888000,1),(975,1459612800,2),(975,1475337600,1),(975,1491062400,2),(975,1506787200,1),(975,1522512000,2),(975,1538841600,1),(975,1554566400,2),(975,1570291200,1),(975,1586016000,2),(975,1601740800,1),(975,1617465600,2),(975,1633190400,1),(975,1648915200,2),(975,1664640000,1),(975,1680364800,2),(975,1696089600,1),(975,1712419200,2),(975,1728144000,1),(975,1743868800,2),(975,1759593600,1),(975,1775318400,2),(975,1791043200,1),(975,1806768000,2),(975,1822492800,1),(975,1838217600,2),(975,1853942400,1),(975,1869667200,2),(975,1885996800,1),(975,1901721600,2),(975,1917446400,1),(975,1933171200,2),(975,1948896000,1),(975,1964620800,2),(975,1980345600,1),(975,1996070400,2),(975,2011795200,1),(975,2027520000,2),(975,2043244800,1),(975,2058969600,2),(975,2075299200,1),(975,2091024000,2),(975,2106748800,1),(975,2122473600,2),(975,2138198400,1),(976,-2147483648,3),(976,-1672552800,1),(976,-1665381600,2),(976,-883634400,1),(976,-876117600,2),(976,-860392800,1),(976,-844668000,2),(976,-836467200,3),(976,152042400,1),(976,162928800,2),(976,436298400,1),(976,447184800,2),(976,690314400,1),(976,699386400,2),(976,1165082400,1),(976,1174759200,2),(976,1193508000,1),(976,1206813600,2),(976,1224957600,1),(976,1238263200,2),(977,-2147483648,3),(977,-1672558200,1),(977,-1665387000,2),(977,-883639800,1),(977,-876123000,2),(977,-860398200,1),(977,-844673400,2),(977,-828343800,1),(977,-813223800,2),(977,31501800,3),(977,57688200,1),(977,67969800,2),(977,89137800,1),(977,100024200,2),(977,120587400,1),(977,131473800,2),(977,152037000,1),(977,162923400,2),(977,183486600,1),(977,194977800,2),(977,215541000,1),(977,226427400,2),(977,246990600,1),(977,257877000,2),(977,278440200,1),(977,289326600,2),(977,309889800,1),(977,320776200,2),(977,341339400,1),(977,352225800,2),(977,372789000,1),(977,386699400,2),(977,404843400,1),(977,415729800,2),(977,436293000,1),(977,447179400,2),(977,467742600,1),(977,478629000,2),(977,499192200,1),(977,511288200,2),(977,530037000,1),(977,542737800,2),(977,562091400,1),(977,574792200,2),(977,594145800,1),(977,606241800,2),(977,625595400,1),(977,636481800,2),(977,657045000,1),(977,667931400,2),(977,688494600,1),(977,699381000,2),(977,719944200,1),(977,731435400,2),(977,751998600,1),(977,762885000,2),(977,783448200,1),(977,794334600,2),(977,814897800,1),(977,828203400,2),(977,846347400,1),(977,859653000,2),(977,877797000,1),(977,891102600,2),(977,909246600,1),(977,922552200,2),(977,941301000,1),(977,946647000,4),(977,954001800,2),(977,972750600,1),(977,985451400,2),(977,1004200200,1),(977,1017505800,2),(977,1035649800,1),(977,1048955400,2),(977,1067099400,1),(977,1080405000,2),(977,1099153800,1),(977,1111854600,2),(977,1130603400,1),(977,1143909000,2),(977,1162053000,1),(977,1174753800,2),(977,1193502600,1),(977,1207413000,2),(977,1223137800,1),(977,1238862600,2),(977,1254587400,1),(977,1270312200,2),(977,1286037000,1),(977,1301761800,2),(977,1317486600,1),(977,1333211400,2),(977,1349541000,1),(977,1365265800,2),(977,1380990600,1),(977,1396715400,2),(977,1412440200,1),(977,1428165000,2),(977,1443889800,1),(977,1459614600,2),(977,1475339400,1),(977,1491064200,2),(977,1506789000,1),(977,1522513800,2),(977,1538843400,1),(977,1554568200,2),(977,1570293000,1),(977,1586017800,2),(977,1601742600,1),(977,1617467400,2),(977,1633192200,1),(977,1648917000,2),(977,1664641800,1),(977,1680366600,2),(977,1696091400,1),(977,1712421000,2),(977,1728145800,1),(977,1743870600,2),(977,1759595400,1),(977,1775320200,2),(977,1791045000,1),(977,1806769800,2),(977,1822494600,1),(977,1838219400,2),(977,1853944200,1),(977,1869669000,2),(977,1885998600,1),(977,1901723400,2),(977,1917448200,1),(977,1933173000,2),(977,1948897800,1),(977,1964622600,2),(977,1980347400,1),(977,1996072200,2),(977,2011797000,1),(977,2027521800,2),(977,2043246600,1),(977,2058971400,2),(977,2075301000,1),(977,2091025800,2),(977,2106750600,1),(977,2122475400,2),(977,2138200200,1),(978,-2147483648,0),(978,-1767209328,2),(978,-1206950400,1),(978,-1191355200,2),(978,-1175367600,1),(978,-1159819200,2),(978,-633812400,1),(978,-622062000,2),(978,-602276400,1),(978,-591825600,2),(978,-570740400,1),(978,-560203200,2),(978,-539118000,1),(978,-531345600,2),(978,-191358000,1),(978,-184190400,2),(978,-155156400,1),(978,-150062400,2),(978,-128890800,1),(978,-121118400,2),(978,-99946800,1),(978,-89582400,2),(978,-68410800,1),(978,-57960000,2),(978,499755600,1),(978,511243200,2),(978,530600400,1),(978,540273600,2),(978,562136400,1),(978,571204800,2),(978,1214283600,3),(978,1384056000,2),(978,2147483647,2),(979,-2147483648,0),(979,-1767217820,2),(979,-1206961200,1),(979,-1191366000,2),(979,-1175378400,1),(979,-1159830000,2),(979,-633823200,1),(979,-622072800,2),(979,-602287200,1),(979,-591836400,2),(979,-570751200,1),(979,-560214000,2),(979,-539128800,1),(979,-531356400,2),(979,-191368800,1),(979,-184201200,2),(979,-155167200,1),(979,-150073200,2),(979,-128901600,1),(979,-121129200,2),(979,-99957600,1),(979,-89593200,2),(979,-68421600,1),(979,-57970800,2),(979,499744800,1),(979,511232400,2),(979,530589600,1),(979,540262800,2),(979,562125600,1),(979,571194000,2),(979,592970400,1),(979,602038800,2),(979,624420000,1),(979,634698000,2),(979,938916000,1),(979,951613200,2),(979,970970400,1),(979,971571600,2),(979,1003024800,1),(979,1013907600,2),(979,2147483647,2),(980,-2147483648,0),(980,-1767214412,2),(980,-1206957600,1),(980,-1191362400,2),(980,-1175374800,1),(980,-1159826400,2),(980,-633819600,1),(980,-622069200,2),(980,-602283600,1),(980,-591832800,2),(980,-570747600,1),(980,-560210400,2),(980,-539125200,1),(980,-531352800,2),(980,-195426000,1),(980,-184197600,2),(980,-155163600,1),(980,-150069600,2),(980,-128898000,1),(980,-121125600,2),(980,-99954000,1),(980,-89589600,2),(980,-68418000,1),(980,-57967200,2),(980,499748400,1),(980,511236000,2),(980,530593200,1),(980,540266400,2),(980,562129200,1),(980,571197600,2),(980,592974000,1),(980,602042400,2),(980,624423600,1),(980,634701600,2),(980,656478000,1),(980,666756000,2),(980,687927600,1),(980,697600800,2),(980,719982000,1),(980,728445600,2),(980,750826800,1),(980,761709600,2),(980,782276400,1),(980,793159200,2),(980,813726000,1),(980,824004000,2),(980,844570800,1),(980,856058400,2),(980,876106800,1),(980,888717600,2),(980,908074800,1),(980,919562400,2),(980,938919600,1),(980,951616800,2),(980,970974000,1),(980,982461600,2),(980,1003028400,1),(980,1013911200,2),(980,1036292400,1),(980,1045360800,2),(980,1066532400,1),(980,1076810400,2),(980,1099364400,1),(980,1108864800,2),(980,1129431600,1),(980,1140314400,2),(980,1162695600,1),(980,1172368800,2),(980,1192330800,1),(980,1203213600,2),(980,1224385200,1),(980,1234663200,2),(980,1255834800,1),(980,1266717600,2),(980,1287284400,1),(980,1298167200,2),(980,1318734000,1),(980,1330221600,2),(980,1350788400,1),(980,1361066400,2),(980,1382238000,1),(980,1392516000,2),(980,1413687600,1),(980,1424570400,2),(980,1445137200,1),(980,1456020000,2),(980,1476586800,1),(980,1487469600,2),(980,1508036400,1),(980,1518919200,2),(980,1541300400,1),(980,1550368800,2),(980,2147483647,2),(981,-2147483648,0),(981,-1767211196,2),(981,-1206954000,1),(981,-1191358800,2),(981,-1175371200,1),(981,-1159822800,2),(981,-633816000,1),(981,-622065600,2),(981,-602280000,1),(981,-591829200,2),(981,-570744000,1),(981,-560206800,2),(981,-539121600,1),(981,-531349200,2),(981,-191361600,1),(981,-184194000,2),(981,-155160000,1),(981,-150066000,2),(981,-128894400,1),(981,-121122000,2),(981,-99950400,1),(981,-89586000,2),(981,-68414400,1),(981,-57963600,2),(981,499752000,1),(981,511239600,2),(981,530596800,1),(981,540270000,2),(981,562132800,1),(981,571201200,2),(981,750830400,1),(981,761713200,2),(981,2147483647,2),(982,-1693706400,0),(982,-1680483600,1),(982,-1663455600,2),(982,-1650150000,3),(982,-1632006000,2),(982,-1618700400,3),(982,-938905200,2),(982,-857257200,3),(982,-844556400,2),(982,-828226800,3),(982,-812502000,2),(982,-796777200,3),(982,-781052400,2),(982,-766623600,3),(982,228877200,2),(982,243997200,3),(982,260326800,2),(982,276051600,3),(982,291776400,2),(982,307501200,3),(982,323830800,2),(982,338950800,3),(982,354675600,2),(982,370400400,3),(982,386125200,2),(982,401850000,3),(982,417574800,2),(982,433299600,3),(982,449024400,2),(982,465354000,3),(982,481078800,2),(982,496803600,3),(982,512528400,2),(982,528253200,3),(982,543978000,2),(982,559702800,3),(982,575427600,2),(982,591152400,3),(982,606877200,2),(982,622602000,3),(982,638326800,2),(982,654656400,3),(982,670381200,2),(982,686106000,3),(982,701830800,2),(982,717555600,3),(982,733280400,2),(982,749005200,3),(982,764730000,2),(982,780454800,3),(982,796179600,2),(982,811904400,3),(982,828234000,2),(982,846378000,3),(982,859683600,2),(982,877827600,3),(982,891133200,2),(982,909277200,3),(982,922582800,2),(982,941331600,3),(982,954032400,2),(982,972781200,3),(982,985482000,2),(982,1004230800,3),(982,1017536400,2),(982,1035680400,3),(982,1048986000,2),(982,1067130000,3),(982,1080435600,2),(982,1099184400,3),(982,1111885200,2),(982,1130634000,3),(982,1143334800,2),(982,1162083600,3),(982,1174784400,2),(982,1193533200,3),(982,1206838800,2),(982,1224982800,3),(982,1238288400,2),(982,1256432400,3),(982,1269738000,2),(982,1288486800,3),(982,1301187600,2),(982,1319936400,3),(982,1332637200,2),(982,1351386000,3),(982,1364691600,2),(982,1382835600,3),(982,1396141200,2),(982,1414285200,3),(982,1427590800,2),(982,1445734800,3),(982,1459040400,2),(982,1477789200,3),(982,1490490000,2),(982,1509238800,3),(982,1521939600,2),(982,1540688400,3),(982,1553994000,2),(982,1572138000,3),(982,1585443600,2),(982,1603587600,3),(982,1616893200,2),(982,1635642000,3),(982,1648342800,2),(982,1667091600,3),(982,1679792400,2),(982,1698541200,3),(982,1711846800,2),(982,1729990800,3),(982,1743296400,2),(982,1761440400,3),(982,1774746000,2),(982,1792890000,3),(982,1806195600,2),(982,1824944400,3),(982,1837645200,2),(982,1856394000,3),(982,1869094800,2),(982,1887843600,3),(982,1901149200,2),(982,1919293200,3),(982,1932598800,2),(982,1950742800,3),(982,1964048400,2),(982,1982797200,3),(982,1995498000,2),(982,2014246800,3),(982,2026947600,2),(982,2045696400,3),(982,2058397200,2),(982,2077146000,3),(982,2090451600,2),(982,2108595600,3),(982,2121901200,2),(982,2140045200,3),(983,-1633276800,0),(983,-1615136400,1),(983,-1601827200,0),(983,-1583686800,1),(983,-880214400,2),(983,-769395600,3),(983,-765392400,1),(983,-84384000,0),(983,-68662800,1),(983,-52934400,0),(983,-37213200,1),(983,-21484800,0),(983,-5763600,1),(983,9964800,0),(983,25686000,1),(983,41414400,0),(983,57740400,1),(983,73468800,0),(983,89190000,1),(983,104918400,0),(983,120639600,1),(983,126691200,0),(983,152089200,1),(983,162374400,0),(983,183538800,1),(983,199267200,0),(983,215593200,1),(983,230716800,0),(983,247042800,1),(983,262771200,0),(983,278492400,1),(983,294220800,0),(983,309942000,1),(983,325670400,0),(983,341391600,1),(983,357120000,0),(983,372841200,1),(983,388569600,0),(983,404895600,1),(983,420019200,0),(983,436345200,1),(983,452073600,0),(983,467794800,1),(983,483523200,0),(983,499244400,1),(983,514972800,0),(983,530694000,1),(983,544608000,0),(983,562143600,1),(983,576057600,0),(983,594198000,1),(983,607507200,0),(983,625647600,1),(983,638956800,0),(983,657097200,1),(983,671011200,0),(983,688546800,1),(983,702460800,0),(983,719996400,1),(983,733910400,0),(983,752050800,1),(983,765360000,0),(983,783500400,1),(983,796809600,0),(983,814950000,1),(983,828864000,0),(983,846399600,1),(983,860313600,0),(983,877849200,1),(983,891763200,0),(983,909298800,1),(983,923212800,0),(983,941353200,1),(983,954662400,0),(983,972802800,1),(983,986112000,0),(983,1004252400,1),(983,1018166400,0),(983,1035702000,1),(983,1049616000,0),(983,1067151600,1),(983,1081065600,0),(983,1099206000,1),(983,1112515200,0),(983,1130655600,1),(983,1143964800,0),(983,1162105200,1),(983,1173600000,0),(983,1194159600,1),(983,1205049600,0),(983,1225609200,1),(983,1236499200,0),(983,1257058800,1),(983,1268553600,0),(983,1289113200,1),(983,1300003200,0),(983,1320562800,1),(983,1331452800,0),(983,1352012400,1),(983,1362902400,0),(983,1383462000,1),(983,1394352000,0),(983,1414911600,1),(983,1425801600,0),(983,1446361200,1),(983,1457856000,0),(983,1478415600,1),(983,1489305600,0),(983,1509865200,1),(983,1520755200,0),(983,1541314800,1),(983,1552204800,0),(983,1572764400,1),(983,1583654400,0),(983,1604214000,1),(983,1615708800,0),(983,1636268400,1),(983,1647158400,0),(983,1667718000,1),(983,1678608000,0),(983,1699167600,1),(983,1710057600,0),(983,1730617200,1),(983,1741507200,0),(983,1762066800,1),(983,1772956800,0),(983,1793516400,1),(983,1805011200,0),(983,1825570800,1),(983,1836460800,0),(983,1857020400,1),(983,1867910400,0),(983,1888470000,1),(983,1899360000,0),(983,1919919600,1),(983,1930809600,0),(983,1951369200,1),(983,1962864000,0),(983,1983423600,1),(983,1994313600,0),(983,2014873200,1),(983,2025763200,0),(983,2046322800,1),(983,2057212800,0),(983,2077772400,1),(983,2088662400,0),(983,2109222000,1),(983,2120112000,0),(983,2140671600,1),(984,-2147483648,0),(984,-2131645536,2),(984,-1696276800,1),(984,-1680469200,2),(984,-1632074400,1),(984,-1615143600,2),(984,-1566763200,1),(984,-1557090000,2),(984,-1535486400,1),(984,-1524949200,2),(984,-1504468800,1),(984,-1493413200,2),(984,-1472414400,1),(984,-1461963600,2),(984,-1440964800,1),(984,-1429390800,2),(984,-1409515200,1),(984,-1396731600,2),(984,-1376856000,1),(984,-1366491600,2),(984,-1346616000,1),(984,-1333832400,2),(984,-1313956800,1),(984,-1303678800,2),(984,-1282507200,1),(984,-1272661200,2),(984,-1251057600,1),(984,-1240088400,2),(984,-1219608000,1),(984,-1207429200,2),(984,-1188763200,1),(984,-1175979600,2),(984,-1157313600,1),(984,-1143925200,2),(984,-1124049600,1),(984,-1113771600,2),(984,-1091390400,1),(984,-1081026000,2),(984,-1059854400,1),(984,-1050786000,2),(984,-1030910400,1),(984,-1018126800,2),(984,-999460800,1),(984,-986677200,2),(984,-965592000,1),(984,-955227600,2),(984,-935956800,1),(984,-923173200,2),(984,-904507200,1),(984,-891723600,2),(984,-880221600,3),(984,-769395600,4),(984,-765399600,2),(984,-747252000,1),(984,-733950000,2),(984,-715802400,1),(984,-702500400,2),(984,-684352800,1),(984,-671050800,2),(984,-652903200,1),(984,-639601200,2),(984,-589399200,1),(984,-576097200,2),(984,-557949600,1),(984,-544647600,2),(984,-526500000,1),(984,-513198000,2),(984,-495050400,1),(984,-481748400,2),(984,-431546400,1),(984,-418244400,2),(984,-400096800,1),(984,-386794800,2),(984,-368647200,1),(984,-355345200,2),(984,-337197600,1),(984,-323895600,2),(984,-242244000,1),(984,-226522800,2),(984,-210794400,1),(984,-195073200,2),(984,-179344800,1),(984,-163623600,2),(984,-147895200,1),(984,-131569200,2),(984,-116445600,1),(984,-100119600,2),(984,-84391200,1),(984,-68670000,2),(984,-52941600,1),(984,-37220400,2),(984,-21492000,1),(984,-5770800,2),(984,9957600,1),(984,25678800,2),(984,41407200,1),(984,57733200,2),(984,73461600,1),(984,89182800,2),(984,104911200,1),(984,120632400,2),(984,136360800,1),(984,152082000,2),(984,167810400,1),(984,183531600,2),(984,199260000,1),(984,215586000,2),(984,230709600,1),(984,247035600,2),(984,262764000,1),(984,278485200,2),(984,294213600,1),(984,309934800,2),(984,325663200,1),(984,341384400,2),(984,357112800,1),(984,372834000,2),(984,388562400,1),(984,404888400,2),(984,420012000,1),(984,436338000,2),(984,452066400,1),(984,467787600,2),(984,483516000,1),(984,499237200,2),(984,514965600,1),(984,530686800,2),(984,544600800,1),(984,562136400,2),(984,576050400,1),(984,594190800,2),(984,607500000,1),(984,625640400,2),(984,638949600,1),(984,657090000,2),(984,671004000,1),(984,688539600,2),(984,702453600,1),(984,719989200,2),(984,733903200,1),(984,752043600,2),(984,765352800,1),(984,783493200,2),(984,796802400,1),(984,814942800,2),(984,828856800,1),(984,846392400,2),(984,860306400,1),(984,877842000,2),(984,891756000,1),(984,909291600,2),(984,923205600,1),(984,941346000,2),(984,954655200,1),(984,972795600,2),(984,986104800,1),(984,1004245200,2),(984,1018159200,1),(984,1035694800,2),(984,1049608800,1),(984,1067144400,2),(984,1081058400,1),(984,1099198800,2),(984,1112508000,1),(984,1130648400,2),(984,1143957600,1),(984,1162098000,2),(984,1173592800,1),(984,1194152400,2),(984,1205042400,1),(984,1225602000,2),(984,1236492000,1),(984,1257051600,2),(984,1268546400,1),(984,1289106000,2),(984,1299996000,1),(984,1320555600,2),(984,1331445600,1),(984,1352005200,2),(984,1362895200,1),(984,1383454800,2),(984,1394344800,1),(984,1414904400,2),(984,1425794400,1),(984,1446354000,2),(984,1457848800,1),(984,1478408400,2),(984,1489298400,1),(984,1509858000,2),(984,1520748000,1),(984,1541307600,2),(984,1552197600,1),(984,1572757200,2),(984,1583647200,1),(984,1604206800,2),(984,1615701600,1),(984,1636261200,2),(984,1647151200,1),(984,1667710800,2),(984,1678600800,1),(984,1699160400,2),(984,1710050400,1),(984,1730610000,2),(984,1741500000,1),(984,1762059600,2),(984,1772949600,1),(984,1793509200,2),(984,1805004000,1),(984,1825563600,2),(984,1836453600,1),(984,1857013200,2),(984,1867903200,1),(984,1888462800,2),(984,1899352800,1),(984,1919912400,2),(984,1930802400,1),(984,1951362000,2),(984,1962856800,1),(984,1983416400,2),(984,1994306400,1),(984,2014866000,2),(984,2025756000,1),(984,2046315600,2),(984,2057205600,1),(984,2077765200,2),(984,2088655200,1),(984,2109214800,2),(984,2120104800,1),(984,2140664400,2),(985,-2147483648,2),(985,-1694368800,1),(985,-1681671600,2),(985,-1632067200,1),(985,-1615136400,2),(985,-1029686400,1),(985,-1018198800,2),(985,-880214400,3),(985,-769395600,4),(985,-765392400,2),(985,-746035200,1),(985,-732733200,2),(985,-715795200,1),(985,-702493200,2),(985,-684345600,1),(985,-671043600,2),(985,-652896000,1),(985,-639594000,2),(985,-620755200,1),(985,-607626000,2),(985,-589392000,1),(985,-576090000,2),(985,-557942400,1),(985,-544640400,2),(985,-526492800,1),(985,-513190800,2),(985,-495043200,1),(985,-481741200,2),(985,-463593600,1),(985,-450291600,2),(985,-431539200,1),(985,-418237200,2),(985,-400089600,1),(985,-386787600,2),(985,-368640000,1),(985,-355338000,2),(985,-337190400,1),(985,-321469200,2),(985,-305740800,1),(985,-292438800,2),(985,-210787200,1),(985,-198090000,2),(985,-116438400,5),(985,-100108800,6),(985,-84384000,5),(985,-68659200,6),(985,-52934400,5),(985,-37209600,6),(985,-21484800,5),(985,-5760000,6),(985,9964800,5),(985,25689600,6),(985,41414400,5),(985,57744000,6),(985,73468800,5),(985,89193600,6),(985,104918400,5),(985,120643200,6),(985,136368000,5),(985,152092800,6),(985,167817600,5),(985,183542400,6),(985,199267200,5),(985,215596800,6),(985,230716800,5),(985,247046400,6),(985,262771200,5),(985,278496000,6),(985,294220800,5),(985,309945600,6),(985,325670400,5),(985,341395200,6),(985,357120000,5),(985,372844800,6),(985,388569600,5),(985,404899200,6),(985,420019200,5),(985,436348800,6),(985,452073600,5),(985,467798400,6),(985,483523200,5),(985,499248000,6),(985,514972800,5),(985,530697600,6),(985,544608000,5),(985,562147200,6),(985,576057600,5),(985,594201600,6),(985,607507200,5),(985,625651200,6),(985,638956800,5),(985,657100800,6),(985,671011200,5),(985,688550400,6),(985,702460800,5),(985,720000000,6),(985,733910400,5),(985,752054400,6),(985,765360000,5),(985,783504000,6),(985,796809600,5),(985,814953600,6),(985,828864000,5),(985,846403200,6),(985,860313600,5),(985,877852800,6),(985,891763200,5),(985,909302400,6),(985,923212800,5),(985,941356800,6),(985,954662400,5),(985,972806400,6),(985,986112000,5),(985,1004256000,6),(985,1018166400,5),(985,1035705600,6),(985,1049616000,5),(985,1067155200,6),(985,1081065600,5),(985,1099209600,6),(985,1112515200,5),(985,1130659200,6),(985,1136095200,2),(985,1143964800,1),(985,1162105200,2),(985,1173600000,1),(985,1194159600,2),(985,1205049600,1),(985,1225609200,2),(985,1236499200,1),(985,1257058800,2),(985,1268553600,1),(985,1289113200,2),(985,1300003200,1),(985,1320562800,2),(985,1331452800,1),(985,1352012400,2),(985,1362902400,1),(985,1383462000,2),(985,1394352000,1),(985,1414911600,2),(985,1425801600,1),(985,1446361200,2),(985,1457856000,1),(985,1478415600,2),(985,1489305600,1),(985,1509865200,2),(985,1520755200,1),(985,1541314800,2),(985,1552204800,1),(985,1572764400,2),(985,1583654400,1),(985,1604214000,2),(985,1615708800,1),(985,1636268400,2),(985,1647158400,1),(985,1667718000,2),(985,1678608000,1),(985,1699167600,2),(985,1710057600,1),(985,1730617200,2),(985,1741507200,1),(985,1762066800,2),(985,1772956800,1),(985,1793516400,2),(985,1805011200,1),(985,1825570800,2),(985,1836460800,1),(985,1857020400,2),(985,1867910400,1),(985,1888470000,2),(985,1899360000,1),(985,1919919600,2),(985,1930809600,1),(985,1951369200,2),(985,1962864000,1),(985,1983423600,2),(985,1994313600,1),(985,2014873200,2),(985,2025763200,1),(985,2046322800,2),(985,2057212800,1),(985,2077772400,2),(985,2088662400,1),(985,2109222000,2),(985,2120112000,1),(985,2140671600,2),(986,-2147483648,2),(986,-1632070800,1),(986,-1615140000,2),(986,-1601753400,1),(986,-1583697600,2),(986,-1567357200,1),(986,-1554667200,2),(986,-1534698000,1),(986,-1524074400,2),(986,-1503248400,1),(986,-1492365600,2),(986,-1471798800,1),(986,-1460916000,2),(986,-1440954000,1),(986,-1428861600,2),(986,-1409504400,1),(986,-1397412000,2),(986,-1378054800,1),(986,-1365962400,2),(986,-1346605200,1),(986,-1333908000,2),(986,-1315155600,1),(986,-1301853600,2),(986,-1283706000,1),(986,-1270404000,2),(986,-1252256400,1),(986,-1238954400,2),(986,-1220806800,1),(986,-1207504800,2),(986,-1188752400,1),(986,-1176055200,2),(986,-1157302800,1),(986,-1144000800,2),(986,-1125853200,1),(986,-1112551200,2),(986,-1094403600,1),(986,-1081101600,2),(986,-1062954000,1),(986,-1049652000,2),(986,-1031504400,1),(986,-1018202400,2),(986,-1000054800,1),(986,-986752800,2),(986,-968000400,1),(986,-955303200,2),(986,-936550800,1),(986,-880218000,3),(986,-769395600,4),(986,-765396000,2),(986,-747248400,1),(986,-733946400,2),(986,-715806000,1),(986,-702504000,2),(986,-684356400,1),(986,-671054400,2),(986,-652906800,1),(986,-634161600,2),(986,-620845200,1),(986,-602704800,2),(986,-589395600,1),(986,-576093600,2),(986,-557946000,1),(986,-544644000,2),(986,-526496400,1),(986,-513194400,2),(986,-495046800,1),(986,-481744800,2),(986,-463597200,1),(986,-450295200,2),(986,-431542800,1),(986,-418240800,2),(986,-400093200,1),(986,-384372000,2),(986,-368643600,1),(986,-352922400,2),(986,-337194000,1),(986,-321472800,2),(986,-305744400,1),(986,-289418400,2),(986,-273690000,1),(986,-257968800,2),(986,-242240400,1),(986,-226519200,2),(986,-210790800,1),(986,-195069600,2),(986,-179341200,1),(986,-163620000,2),(986,-147891600,1),(986,-131565600,2),(986,-116442000,1),(986,-100116000,2),(986,-84387600,1),(986,-68666400,2),(986,-52938000,1),(986,-37216800,2),(986,-21488400,1),(986,-5767200,2),(986,9961200,1),(986,25682400,2),(986,41410800,1),(986,57736800,2),(986,73465200,1),(986,89186400,2),(986,104914800,1),(986,120636000,2),(986,136364400,1),(986,152085600,2),(986,167814000,1),(986,183535200,2),(986,199263600,1),(986,215589600,2),(986,230713200,1),(986,247039200,2),(986,262767600,1),(986,278488800,2),(986,294217200,1),(986,309938400,2),(986,325666800,1),(986,341388000,2),(986,357116400,1),(986,372837600,2),(986,388566000,1),(986,404892000,2),(986,420015600,1),(986,436341600,2),(986,452070000,1),(986,467791200,2),(986,483519600,1),(986,499240800,2),(986,514969200,1),(986,530690400,2),(986,544604400,1),(986,562140000,2),(986,576054000,1),(986,594194400,2),(986,607503600,1),(986,625644000,2),(986,638953200,1),(986,657093600,2),(986,671007600,1),(986,688543200,2),(986,702457200,1),(986,719992800,2),(986,733906800,1),(986,752047200,2),(986,765356400,1),(986,783496800,2),(986,796806000,1),(986,814946400,2),(986,828860400,1),(986,846396000,2),(986,860310000,1),(986,877845600,2),(986,891759600,1),(986,909295200,2),(986,923209200,1),(986,941349600,2),(986,954658800,1),(986,972799200,2),(986,986108400,1),(986,1004248800,2),(986,1018162800,1),(986,1035698400,2),(986,1049612400,1),(986,1067148000,2),(986,1081062000,1),(986,1099202400,2),(986,1112511600,1),(986,1130652000,2),(986,1143961200,1),(986,1162101600,2),(986,1173596400,1),(986,1194156000,2),(986,1205046000,1),(986,1225605600,2),(986,1236495600,1),(986,1257055200,2),(986,1268550000,1),(986,1289109600,2),(986,1299999600,1),(986,1320559200,2),(986,1331449200,1),(986,1352008800,2),(986,1362898800,1),(986,1383458400,2),(986,1394348400,1),(986,1414908000,2),(986,1425798000,1),(986,1446357600,2),(986,1457852400,1),(986,1478412000,2),(986,1489302000,1),(986,1509861600,2),(986,1520751600,1),(986,1541311200,2),(986,1552201200,1),(986,1572760800,2),(986,1583650800,1),(986,1604210400,2),(986,1615705200,1),(986,1636264800,2),(986,1647154800,1),(986,1667714400,2),(986,1678604400,1),(986,1699164000,2),(986,1710054000,1),(986,1730613600,2),(986,1741503600,1),(986,1762063200,2),(986,1772953200,1),(986,1793512800,2),(986,1805007600,1),(986,1825567200,2),(986,1836457200,1),(986,1857016800,2),(986,1867906800,1),(986,1888466400,2),(986,1899356400,1),(986,1919916000,2),(986,1930806000,1),(986,1951365600,2),(986,1962860400,1),(986,1983420000,2),(986,1994310000,1),(986,2014869600,2),(986,2025759600,1),(986,2046319200,2),(986,2057209200,1),(986,2077768800,2),(986,2088658800,1),(986,2109218400,2),(986,2120108400,1),(986,2140668000,2),(987,-2147483648,0),(987,-1998663968,2),(987,-1632063600,1),(987,-1615132800,2),(987,-1600614000,1),(987,-1596816000,2),(987,-1567954800,1),(987,-1551628800,2),(987,-1536505200,1),(987,-1523203200,2),(987,-1504450800,1),(987,-1491753600,2),(987,-1473001200,1),(987,-1459699200,2),(987,-880210800,3),(987,-769395600,4),(987,-765388800,2),(987,-715791600,1),(987,-702489600,2),(987,73472400,1),(987,89193600,2),(987,104922000,1),(987,120643200,2),(987,136371600,1),(987,152092800,2),(987,167821200,1),(987,183542400,2),(987,199270800,1),(987,215596800,2),(987,230720400,1),(987,247046400,2),(987,262774800,1),(987,278496000,2),(987,294224400,1),(987,309945600,2),(987,325674000,1),(987,341395200,2),(987,357123600,1),(987,372844800,2),(987,388573200,1),(987,404899200,2),(987,420022800,1),(987,436348800,2),(987,452077200,1),(987,467798400,2),(987,483526800,1),(987,499248000,2),(987,514976400,1),(987,530697600,2),(987,544611600,1),(987,562147200,2),(987,576061200,1),(987,594201600,2),(987,607510800,1),(987,625651200,2),(987,638960400,1),(987,657100800,2),(987,671014800,1),(987,688550400,2),(987,702464400,1),(987,720000000,2),(987,733914000,1),(987,752054400,2),(987,765363600,1),(987,783504000,2),(987,796813200,1),(987,814953600,2),(987,828867600,1),(987,846403200,2),(987,860317200,1),(987,877852800,2),(987,891766800,1),(987,909302400,2),(987,923216400,1),(987,941356800,2),(987,954666000,1),(987,972806400,2),(987,986115600,1),(987,1004256000,2),(987,1018170000,1),(987,1035705600,2),(987,1049619600,1),(987,1067155200,2),(987,1081069200,1),(987,1099209600,2),(987,1112518800,1),(987,1130659200,2),(987,1143968400,1),(987,1162108800,2),(987,1173603600,1),(987,1194163200,2),(987,1205053200,1),(987,1225612800,2),(987,1236502800,1),(987,1257062400,2),(987,1268557200,1),(987,1289116800,2),(987,1300006800,1),(987,1320566400,2),(987,1331456400,1),(987,1352016000,2),(987,1362906000,1),(987,1383465600,2),(987,1394355600,1),(987,1414915200,2),(987,1425805200,1),(987,1446364800,2),(987,1457859600,1),(987,1478419200,2),(987,1489309200,1),(987,1509868800,2),(987,1520758800,1),(987,1541318400,2),(987,1552208400,1),(987,1572768000,2),(987,1583658000,1),(987,1604217600,2),(987,1615712400,1),(987,1636272000,2),(987,1647162000,1),(987,1667721600,2),(987,1678611600,1),(987,1699171200,2),(987,1710061200,1),(987,1730620800,2),(987,1741510800,1),(987,1762070400,2),(987,1772960400,1),(987,1793520000,2),(987,1805014800,1),(987,1825574400,2),(987,1836464400,1),(987,1857024000,2),(987,1867914000,1),(987,1888473600,2),(987,1899363600,1),(987,1919923200,2),(987,1930813200,1),(987,1951372800,2),(987,1962867600,1),(987,1983427200,2),(987,1994317200,1),(987,2014876800,2),(987,2025766800,1),(987,2046326400,2),(987,2057216400,1),(987,2077776000,2),(987,2088666000,1),(987,2109225600,2),(987,2120115600,1),(987,2140675200,2),(988,-2147483648,2),(988,-1664130548,1),(988,-1650137348,2),(988,-1632076148,1),(988,-1615145348,2),(988,-1598650148,1),(988,-1590100148,2),(988,-1567286948,1),(988,-1551565748,2),(988,-1535837348,1),(988,-1520116148,2),(988,-1503782948,1),(988,-1488666548,2),(988,-1472333348,1),(988,-1457216948,2),(988,-1440883748,1),(988,-1425767348,2),(988,-1409434148,1),(988,-1394317748,2),(988,-1377984548,1),(988,-1362263348,2),(988,-1346534948,1),(988,-1330813748,2),(988,-1314480548,1),(988,-1299364148,2),(988,-1283030948,1),(988,-1267914548,2),(988,-1251581348,1),(988,-1236464948,2),(988,-1220131748,1),(988,-1205015348,2),(988,-1188682148,1),(988,-1172960948,2),(988,-1156627748,1),(988,-1141511348,2),(988,-1125178148,1),(988,-1110061748,2),(988,-1096921748,4),(988,-1093728600,3),(988,-1078612200,4),(988,-1061670600,3),(988,-1048973400,4),(988,-1030221000,3),(988,-1017523800,4),(988,-998771400,3),(988,-986074200,4),(988,-966717000,3),(988,-954624600,4),(988,-935267400,3),(988,-922570200,4),(988,-903817800,3),(988,-891120600,4),(988,-872368200,6),(988,-769395600,5),(988,-765401400,4),(988,-746044200,3),(988,-733347000,4),(988,-714594600,3),(988,-701897400,4),(988,-683145000,3),(988,-670447800,4),(988,-651695400,3),(988,-638998200,4),(988,-619641000,3),(988,-606943800,4),(988,-589401000,3),(988,-576099000,4),(988,-557951400,3),(988,-544649400,4),(988,-526501800,3),(988,-513199800,4),(988,-495052200,3),(988,-481750200,4),(988,-463602600,3),(988,-450300600,4),(988,-431548200,3),(988,-418246200,4),(988,-400098600,3),(988,-386796600,4),(988,-368649000,3),(988,-355347000,4),(988,-337199400,3),(988,-323897400,4),(988,-305749800,3),(988,-289423800,4),(988,-273695400,3),(988,-257974200,4),(988,-242245800,3),(988,-226524600,4),(988,-210796200,3),(988,-195075000,4),(988,-179346600,3),(988,-163625400,4),(988,-147897000,3),(988,-131571000,4),(988,-116447400,3),(988,-100121400,4),(988,-84393000,3),(988,-68671800,4),(988,-52943400,3),(988,-37222200,4),(988,-21493800,3),(988,-5772600,4),(988,9955800,3),(988,25677000,4),(988,41405400,3),(988,57731400,4),(988,73459800,3),(988,89181000,4),(988,104909400,3),(988,120630600,4),(988,136359000,3),(988,152080200,4),(988,167808600,3),(988,183529800,4),(988,199258200,3),(988,215584200,4),(988,230707800,3),(988,247033800,4),(988,262762200,3),(988,278483400,4),(988,294211800,3),(988,309933000,4),(988,325661400,3),(988,341382600,4),(988,357111000,3),(988,372832200,4),(988,388560600,3),(988,404886600,4),(988,420010200,3),(988,436336200,4),(988,452064600,3),(988,467785800,4),(988,483514200,3),(988,499235400,4),(988,514963800,3),(988,530685000,4),(988,544591860,3),(988,562127460,4),(988,576041460,7),(988,594178260,4),(988,607491060,3),(988,625631460,4),(988,638940660,3),(988,657081060,4),(988,670995060,3),(988,688530660,4),(988,702444660,3),(988,719980260,4),(988,733894260,3),(988,752034660,4),(988,765343860,3),(988,783484260,4),(988,796793460,3),(988,814933860,4),(988,828847860,3),(988,846383460,4),(988,860297460,3),(988,877833060,4),(988,891747060,3),(988,909282660,4),(988,923196660,3),(988,941337060,4),(988,954646260,3),(988,972786660,4),(988,986095860,3),(988,1004236260,4),(988,1018150260,3),(988,1035685860,4),(988,1049599860,3),(988,1067135460,4),(988,1081049460,3),(988,1099189860,4),(988,1112499060,3),(988,1130639460,4),(988,1143948660,3),(988,1162089060,4),(988,1173583860,3),(988,1194143460,4),(988,1205033460,3),(988,1225593060,4),(988,1236483060,3),(988,1257042660,4),(988,1268537460,3),(988,1289097060,4),(988,1299987060,3),(988,1320553800,4),(988,1331443800,3),(988,1352003400,4),(988,1362893400,3),(988,1383453000,4),(988,1394343000,3),(988,1414902600,4),(988,1425792600,3),(988,1446352200,4),(988,1457847000,3),(988,1478406600,4),(988,1489296600,3),(988,1509856200,4),(988,1520746200,3),(988,1541305800,4),(988,1552195800,3),(988,1572755400,4),(988,1583645400,3),(988,1604205000,4),(988,1615699800,3),(988,1636259400,4),(988,1647149400,3),(988,1667709000,4),(988,1678599000,3),(988,1699158600,4),(988,1710048600,3),(988,1730608200,4),(988,1741498200,3),(988,1762057800,4),(988,1772947800,3),(988,1793507400,4),(988,1805002200,3),(988,1825561800,4),(988,1836451800,3),(988,1857011400,4),(988,1867901400,3),(988,1888461000,4),(988,1899351000,3),(988,1919910600,4),(988,1930800600,3),(988,1951360200,4),(988,1962855000,3),(988,1983414600,4),(988,1994304600,3),(988,2014864200,4),(988,2025754200,3),(988,2046313800,4),(988,2057203800,3),(988,2077763400,4),(988,2088653400,3),(988,2109213000,4),(988,2120103000,3),(988,2140662600,4),(989,-2147483648,2),(989,-1632060000,1),(989,-1615129200,2),(989,-880207200,3),(989,-769395600,4),(989,-765385200,2),(989,-747237600,1),(989,-733935600,2),(989,-715788000,1),(989,-702486000,2),(989,-684338400,1),(989,-671036400,2),(989,-652888800,1),(989,-639586800,2),(989,-620834400,1),(989,-608137200,2),(989,-589384800,1),(989,-576082800,2),(989,-557935200,1),(989,-544633200,2),(989,-526485600,1),(989,-513183600,2),(989,-495036000,1),(989,-481734000,2),(989,-463586400,1),(989,-450284400,2),(989,-431532000,1),(989,-418230000,2),(989,-400082400,1),(989,-386780400,2),(989,-368632800,1),(989,-355330800,2),(989,-337183200,1),(989,-323881200,2),(989,-305733600,1),(989,-292431600,2),(989,-273679200,1),(989,-260982000,2),(989,-242229600,1),(989,-226508400,2),(989,-210780000,1),(989,-195058800,2),(989,-179330400,1),(989,-163609200,2),(989,-147880800,1),(989,-131554800,2),(989,-116431200,1),(989,-100105200,2),(989,-84376800,1),(989,-68655600,2),(989,-52927200,1),(989,-37206000,2),(989,-21477600,1),(989,-5756400,2),(989,9972000,1),(989,25693200,2),(989,41421600,1),(989,57747600,2),(989,73476000,1),(989,89197200,2),(989,104925600,1),(989,120646800,2),(989,136375200,1),(989,152096400,2),(989,167824800,1),(989,183546000,2),(989,199274400,1),(989,215600400,2),(989,230724000,1),(989,247050000,2),(989,262778400,1),(989,278499600,2),(989,294228000,1),(989,309949200,2),(989,325677600,1),(989,341398800,2),(989,357127200,1),(989,372848400,2),(989,388576800,1),(989,404902800,2),(989,420026400,1),(989,436352400,2),(989,452080800,1),(989,467802000,2),(989,483530400,1),(989,499251600,2),(989,514980000,1),(989,530701200,2),(989,544615200,1),(989,562150800,2),(989,576064800,1),(989,594205200,2),(989,607514400,1),(989,625654800,2),(989,638964000,1),(989,657104400,2),(989,671018400,1),(989,688554000,2),(989,702468000,1),(989,720003600,2),(989,733917600,1),(989,752058000,2),(989,765367200,1),(989,783507600,2),(989,796816800,1),(989,814957200,2),(989,828871200,1),(989,846406800,2),(989,860320800,1),(989,877856400,2),(989,891770400,1),(989,909306000,2),(989,923220000,1),(989,941360400,2),(989,954669600,1),(989,972810000,2),(989,986119200,1),(989,1004259600,2),(989,1018173600,1),(989,1035709200,2),(989,1049623200,1),(989,1067158800,2),(989,1081072800,1),(989,1099213200,2),(989,1112522400,1),(989,1130662800,2),(989,1143972000,1),(989,1162112400,2),(989,1173607200,1),(989,1194166800,2),(989,1205056800,1),(989,1225616400,2),(989,1236506400,1),(989,1257066000,2),(989,1268560800,1),(989,1289120400,2),(989,1300010400,1),(989,1320570000,2),(989,1331460000,1),(989,1352019600,2),(989,1362909600,1),(989,1383469200,2),(989,1394359200,1),(989,1414918800,2),(989,1425808800,1),(989,1446368400,2),(989,1457863200,1),(989,1478422800,2),(989,1489312800,1),(989,1509872400,2),(989,1520762400,1),(989,1541322000,2),(989,1552212000,1),(989,1572771600,2),(989,1583661600,1),(989,1604221200,2),(989,1615716000,1),(989,1636275600,2),(989,1647165600,1),(989,1667725200,2),(989,1678615200,1),(989,1699174800,2),(989,1710064800,1),(989,1730624400,2),(989,1741514400,1),(989,1762074000,2),(989,1772964000,1),(989,1793523600,2),(989,1805018400,1),(989,1825578000,2),(989,1836468000,1),(989,1857027600,2),(989,1867917600,1),(989,1888477200,2),(989,1899367200,1),(989,1919926800,2),(989,1930816800,1),(989,1951376400,2),(989,1962871200,1),(989,1983430800,2),(989,1994320800,1),(989,2014880400,2),(989,2025770400,1),(989,2046330000,2),(989,2057220000,1),(989,2077779600,2),(989,2088669600,1),(989,2109229200,2),(989,2120119200,1),(989,2140678800,2),(990,-2147483648,0),(990,-2030202084,2),(990,-1632063600,1),(990,-1615132800,2),(990,-1251651600,1),(990,-1238349600,2),(990,-1220202000,1),(990,-1206900000,2),(990,-1188752400,1),(990,-1175450400,2),(990,-1156698000,1),(990,-1144000800,2),(990,-1125248400,1),(990,-1111946400,2),(990,-1032714000,1),(990,-1016992800,2),(990,-1001264400,1),(990,-986148000,2),(990,-969814800,1),(990,-954093600,2),(990,-937760400,1),(990,-922039200,2),(990,-906310800,1),(990,-890589600,2),(990,-880210800,3),(990,-769395600,4),(990,-765388800,2),(990,-748450800,1),(990,-732729600,2),(990,-715791600,1),(990,-702489600,2),(990,-684342000,1),(990,-671040000,2),(990,-652892400,1),(990,-639590400,2),(990,-620838000,1),(990,-608140800,2),(990,-589388400,1),(990,-576086400,2),(990,-557938800,1),(990,-544636800,2),(990,-526489200,1),(990,-513187200,2),(990,-495039600,1),(990,-481737600,2),(990,-463590000,1),(990,-450288000,2),(990,-431535600,1),(990,-418233600,2),(990,-400086000,1),(990,-386784000,2),(990,-337186800,1),(990,-321465600,2),(990,-305737200,5),(991,-2147483648,2),(991,-1632056400,1),(991,-1615125600,2),(991,-1596978000,1),(991,-1583164800,2),(991,-880203600,3),(991,-769395600,4),(991,-765381600,2),(991,-147884400,5),(991,-131554800,2),(991,-81961200,6),(991,325677600,7),(991,341398800,6),(991,357127200,7),(991,372848400,6),(991,388576800,7),(991,404902800,6),(991,420026400,7),(991,436352400,6),(991,452080800,7),(991,467802000,6),(991,483530400,7),(991,499251600,6),(991,514980000,7),(991,530701200,6),(991,544615200,7),(991,562150800,6),(991,576064800,7),(991,594205200,6),(991,607514400,7),(991,625654800,6),(991,638964000,7),(991,657104400,6),(991,671018400,7),(991,688554000,6),(991,702468000,7),(991,720003600,6),(991,733917600,7),(991,752058000,6),(991,765367200,7),(991,783507600,6),(991,796816800,7),(991,814957200,6),(991,828871200,7),(991,846406800,6),(991,860320800,7),(991,877856400,6),(991,891770400,7),(991,909306000,6),(991,923220000,7),(991,941360400,6),(991,954669600,7),(991,972810000,6),(991,986119200,7),(991,1004259600,6),(991,1018173600,7),(991,1035709200,6),(991,1049623200,7),(991,1067158800,6),(991,1081072800,7),(991,1099213200,6),(991,1112522400,7),(991,1130662800,6),(991,1143972000,7),(991,1162112400,6),(991,1173607200,7),(991,1194166800,6),(991,1205056800,7),(991,1225616400,6),(991,1236506400,7),(991,1257066000,6),(991,1268560800,7),(991,1289120400,6),(991,1300010400,7),(991,1320570000,6),(991,1331460000,7),(991,1352019600,6),(991,1362909600,7),(991,1383469200,6),(991,1394359200,7),(991,1414918800,6),(991,1425808800,7),(991,1446368400,6),(991,1457863200,7),(991,1478422800,6),(991,1489312800,7),(991,1509872400,6),(991,1520762400,7),(991,1541322000,6),(991,1552212000,7),(991,1572771600,6),(991,1583661600,7),(991,1604214000,8),(992,-2147483648,1),(992,-1892661434,2),(992,-1688410800,1),(992,-1619205434,3),(992,-1593806400,1),(992,-1335986234,4),(992,-1317585600,2),(992,-1304362800,4),(992,-1286049600,2),(992,-1272826800,4),(992,-1254513600,2),(992,-1241290800,4),(992,-1222977600,2),(992,-1209754800,4),(992,-1191355200,2),(992,-1178132400,3),(992,-870552000,2),(992,-865278000,3),(992,-740520000,5),(992,-736376400,3),(992,-718056000,2),(992,-713649600,3),(992,-36619200,6),(992,-23922000,7),(992,-3355200,6),(992,7527600,7),(992,24465600,6),(992,37767600,7),(992,55915200,6),(992,69217200,7),(992,87969600,6),(992,100666800,7),(992,118209600,6),(992,132116400,7),(992,150868800,6),(992,163566000,7),(992,182318400,6),(992,195620400,7),(992,213768000,6),(992,227070000,7),(992,245217600,6),(992,258519600,7),(992,277272000,6),(992,289969200,7),(992,308721600,6),(992,321418800,7),(992,340171200,6),(992,353473200,7),(992,371620800,6),(992,384922800,7),(992,403070400,6),(992,416372400,7),(992,434520000,6),(992,447822000,7),(992,466574400,6),(992,479271600,7),(992,498024000,6),(992,510721200,7),(992,529473600,6),(992,545194800,7),(992,560923200,6),(992,574225200,7),(992,592372800,6),(992,605674800,7),(992,624427200,6),(992,637124400,7),(992,653457600,6),(992,668574000,7),(992,687326400,6),(992,700628400,7),(992,718776000,6),(992,732078000,7),(992,750225600,6),(992,763527600,7),(992,781675200,6),(992,794977200,7),(992,813729600,6),(992,826426800,7),(992,845179200,6),(992,859690800,7),(992,876628800,6),(992,889930800,7),(992,906868800,6),(992,923194800,7),(992,939528000,6),(992,952830000,7),(992,971582400,6),(992,984279600,7),(992,1003032000,6),(992,1015729200,7),(992,1034481600,6),(992,1047178800,7),(992,1065931200,6),(992,1079233200,7),(992,1097380800,6),(992,1110682800,7),(992,1128830400,6),(992,1142132400,7),(992,1160884800,6),(992,1173582000,7),(992,1192334400,6),(992,1206846000,7),(992,1223784000,6),(992,1237086000,7),(992,1255233600,6),(992,1270350000,7),(992,1286683200,6),(992,1304823600,7),(992,1313899200,6),(992,1335668400,7),(992,1346558400,6),(992,1367118000,7),(992,1378612800,6),(992,1398567600,7),(992,1410062400,6),(992,1463281200,7),(992,1471147200,6),(992,1494730800,7),(992,1502596800,6),(992,1526180400,7),(992,1534046400,6),(992,1554606000,7),(992,1567915200,6),(992,1586055600,7),(992,1599364800,6),(992,1617505200,7),(992,1630814400,6),(992,1648954800,7),(992,1662264000,6),(992,1680404400,7),(992,1693713600,6),(992,1712458800,7),(992,1725768000,6),(992,1743908400,7),(992,1757217600,6),(992,1775358000,7),(992,1788667200,6),(992,1806807600,7),(992,1820116800,6),(992,1838257200,7),(992,1851566400,6),(992,1870311600,7),(992,1883016000,6),(992,1901761200,7),(992,1915070400,6),(992,1933210800,7),(992,1946520000,6),(992,1964660400,7),(992,1977969600,6),(992,1996110000,7),(992,2009419200,6),(992,2027559600,7),(992,2040868800,6),(992,2059614000,7),(992,2072318400,6),(992,2091063600,7),(992,2104372800,6),(992,2122513200,7),(992,2135822400,6),(992,2147483647,6),(993,-2147483648,1),(993,-1178124152,4),(993,-36619200,2),(993,-23922000,3),(993,-3355200,2),(993,7527600,3),(993,24465600,2),(993,37767600,3),(993,55915200,2),(993,69217200,3),(993,87969600,2),(993,100666800,3),(993,118209600,2),(993,132116400,3),(993,150868800,2),(993,163566000,3),(993,182318400,2),(993,195620400,3),(993,213768000,2),(993,227070000,3),(993,245217600,2),(993,258519600,3),(993,277272000,2),(993,289969200,3),(993,308721600,2),(993,321418800,3),(993,340171200,2),(993,353473200,3),(993,371620800,2),(993,384922800,5),(993,403070400,6),(993,416372400,5),(993,434520000,6),(993,447822000,5),(993,466574400,6),(993,479271600,5),(993,498024000,6),(993,510721200,5),(993,529473600,6),(993,545194800,5),(993,560923200,6),(993,574225200,5),(993,592372800,6),(993,605674800,5),(993,624427200,6),(993,637124400,5),(993,653457600,6),(993,668574000,5),(993,687326400,6),(993,700628400,5),(993,718776000,6),(993,732078000,5),(993,750225600,6),(993,763527600,5),(993,781675200,6),(993,794977200,5),(993,813729600,6),(993,826426800,5),(993,845179200,6),(993,859690800,5),(993,876628800,6),(993,889930800,5),(993,906868800,6),(993,923194800,5),(993,939528000,6),(993,952830000,5),(993,971582400,6),(993,984279600,5),(993,1003032000,6),(993,1015729200,5),(993,1034481600,6),(993,1047178800,5),(993,1065931200,6),(993,1079233200,5),(993,1097380800,6),(993,1110682800,5),(993,1128830400,6),(993,1142132400,5),(993,1160884800,6),(993,1173582000,5),(993,1192334400,6),(993,1206846000,5),(993,1223784000,6),(993,1237086000,5),(993,1255233600,6),(993,1270350000,5),(993,1286683200,6),(993,1304823600,5),(993,1313899200,6),(993,1335668400,5),(993,1346558400,6),(993,1367118000,5),(993,1378612800,6),(993,1398567600,5),(993,1410062400,6),(993,1463281200,5),(993,1471147200,6),(993,1494730800,5),(993,1502596800,6),(993,1526180400,5),(993,1534046400,6),(993,1554606000,5),(993,1567915200,6),(993,1586055600,5),(993,1599364800,6),(993,1617505200,5),(993,1630814400,6),(993,1648954800,5),(993,1662264000,6),(993,1680404400,5),(993,1693713600,6),(993,1712458800,5),(993,1725768000,6),(993,1743908400,5),(993,1757217600,6),(993,1775358000,5),(993,1788667200,6),(993,1806807600,5),(993,1820116800,6),(993,1838257200,5),(993,1851566400,6),(993,1870311600,5),(993,1883016000,6),(993,1901761200,5),(993,1915070400,6),(993,1933210800,5),(993,1946520000,6),(993,1964660400,5),(993,1977969600,6),(993,1996110000,5),(993,2009419200,6),(993,2027559600,5),(993,2040868800,6),(993,2059614000,5),(993,2072318400,6),(993,2091063600,5),(993,2104372800,6),(993,2122513200,5),(993,2135822400,6),(993,2147483647,6),(994,-2147483648,1),(994,-1402813824,3),(994,-1311534000,2),(994,-1300996800,3),(994,-933534000,2),(994,-925675200,3),(994,-902084400,2),(994,-893620800,3),(994,-870030000,2),(994,-862171200,3),(994,-775681200,2),(994,-767822400,3),(994,-744231600,2),(994,-736372800,3),(994,-144702000,2),(994,-134251200,3),(994,-113425200,2),(994,-102542400,3),(994,-86295600,2),(994,-72907200,3),(994,-54154800,2),(994,-41457600,3),(994,-21495600,2),(994,-5774400,3),(994,9954000,2),(994,25675200,3),(994,41403600,2),(994,57729600,3),(994,73458000,2),(994,87364800,3),(994,104907600,2),(994,118900800,3),(994,136357200,2),(994,150436800,3),(994,167806800,2),(994,183528000,3),(994,199256400,2),(994,215582400,3),(994,230706000,2),(994,247032000,3),(994,263365200,2),(994,276667200,3),(994,290581200,2),(994,308721600,3),(994,322030800,2),(994,340171200,3),(994,358318800,2),(994,371620800,3),(994,389768400,2),(994,403070400,3),(994,421218000,2),(994,434520000,3),(994,452667600,2),(994,466574400,3),(994,484117200,2),(994,498024000,3),(994,511333200,2),(994,529473600,3),(994,542782800,2),(994,560923200,3),(994,574837200,2),(994,592372800,3),(994,606286800,2),(994,623822400,3),(994,638946000,2),(994,655876800,3),(994,671000400,2),(994,687330000,4),(994,702450000,2),(994,718779600,4),(994,733899600,2),(994,750229200,4),(994,765349200,2),(994,781678800,4),(994,796798800,2),(994,813128400,4),(994,828853200,2),(994,844578000,4),(994,860302800,2),(994,876632400,4),(994,891147600,5),(994,909291600,4),(994,922597200,5),(994,941346000,4),(994,954651600,5),(994,972795600,4),(994,986101200,5),(994,1004245200,4),(994,1018155600,5),(994,1035694800,4),(994,1049605200,5),(994,1067144400,4),(994,1080450000,5),(994,1162098000,4),(994,1173589200,5),(994,1193547600,4),(994,1205643600,5),(994,1224997200,4),(994,1236488400,5),(994,1256446800,4),(994,1268542800,5),(994,1288501200,4),(994,1300597200,5),(994,1321160400,4),(994,1333256400,5),(994,1352005200,4),(994,1362891600,5),(994,1383454800,4),(994,1394341200,5),(994,1414904400,4),(994,1425790800,5),(994,1446354000,4),(994,1457845200,5),(994,1478408400,4),(994,1489294800,5),(994,1509858000,4),(994,1520744400,5),(994,1541307600,4),(994,1552194000,5),(994,1572757200,4),(994,1583643600,5),(994,1604206800,4),(994,1615698000,5),(994,1636261200,4),(994,1647147600,5),(994,1667710800,4),(994,1678597200,5),(994,1699160400,4),(994,1710046800,5),(994,1730610000,4),(994,1741496400,5),(994,1762059600,4),(994,1772946000,5),(994,1793509200,4),(994,1805000400,5),(994,1825563600,4),(994,1836450000,5),(994,1857013200,4),(994,1867899600,5),(994,1888462800,4),(994,1899349200,5),(994,1919912400,4),(994,1930798800,5),(994,1951362000,4),(994,1962853200,5),(994,1983416400,4),(994,1994302800,5),(994,2014866000,4),(994,2025752400,5),(994,2046315600,4),(994,2057202000,5),(994,2077765200,4),(994,2088651600,5),(994,2109214800,4),(994,2120101200,5),(994,2140664400,4),(995,228877200,0),(995,243997200,1),(995,260326800,0),(995,276051600,1),(995,291776400,0),(995,307501200,1),(995,323830800,0),(995,338950800,1),(995,354675600,0),(995,370400400,1),(995,386125200,0),(995,401850000,1),(995,417574800,0),(995,433299600,1),(995,449024400,0),(995,465354000,1),(995,481078800,0),(995,496803600,1),(995,512528400,0),(995,528253200,1),(995,543978000,0),(995,559702800,1),(995,575427600,0),(995,591152400,1),(995,606877200,0),(995,622602000,1),(995,638326800,0),(995,654656400,1),(995,670381200,0),(995,686106000,1),(995,701830800,0),(995,717555600,1),(995,733280400,0),(995,749005200,1),(995,764730000,0),(995,780454800,1),(995,796179600,0),(995,811904400,1),(995,828234000,0),(995,846378000,1),(995,859683600,0),(995,877827600,1),(995,891133200,0),(995,909277200,1),(995,922582800,0),(995,941331600,1),(995,954032400,0),(995,972781200,1),(995,985482000,0),(995,1004230800,1),(995,1017536400,0),(995,1035680400,1),(995,1048986000,0),(995,1067130000,1),(995,1080435600,0),(995,1099184400,1),(995,1111885200,0),(995,1130634000,1),(995,1143334800,0),(995,1162083600,1),(995,1174784400,0),(995,1193533200,1),(995,1206838800,0),(995,1224982800,1),(995,1238288400,0),(995,1256432400,1),(995,1269738000,0),(995,1288486800,1),(995,1301187600,0),(995,1319936400,1),(995,1332637200,0),(995,1351386000,1),(995,1364691600,0),(995,1382835600,1),(995,1396141200,0),(995,1414285200,1),(995,1427590800,0),(995,1445734800,1),(995,1459040400,0),(995,1477789200,1),(995,1490490000,0),(995,1509238800,1),(995,1521939600,0),(995,1540688400,1),(995,1553994000,0),(995,1572138000,1),(995,1585443600,0),(995,1603587600,1),(995,1616893200,0),(995,1635642000,1),(995,1648342800,0),(995,1667091600,1),(995,1679792400,0),(995,1698541200,1),(995,1711846800,0),(995,1729990800,1),(995,1743296400,0),(995,1761440400,1),(995,1774746000,0),(995,1792890000,1),(995,1806195600,0),(995,1824944400,1),(995,1837645200,0),(995,1856394000,1),(995,1869094800,0),(995,1887843600,1),(995,1901149200,0),(995,1919293200,1),(995,1932598800,0),(995,1950742800,1),(995,1964048400,0),(995,1982797200,1),(995,1995498000,0),(995,2014246800,1),(995,2026947600,0),(995,2045696400,1),(995,2058397200,0),(995,2077146000,1),(995,2090451600,0),(995,2108595600,1),(995,2121901200,0),(995,2140045200,1),(997,-1633280400,0),(997,-1615140000,1),(997,-1601830800,0),(997,-1583690400,1),(997,-880218000,2),(997,-769395600,3),(997,-765396000,1),(997,-84387600,0),(997,-68666400,1),(997,-52938000,0),(997,-37216800,1),(997,-21488400,0),(997,-5767200,1),(997,9961200,0),(997,25682400,1),(997,41410800,0),(997,57736800,1),(997,73465200,0),(997,89186400,1),(997,104914800,0),(997,120636000,1),(997,126687600,0),(997,152085600,1),(997,162370800,0),(997,183535200,1),(997,199263600,0),(997,215589600,1),(997,230713200,0),(997,247039200,1),(997,262767600,0),(997,278488800,1),(997,294217200,0),(997,309938400,1),(997,325666800,0),(997,341388000,1),(997,357116400,0),(997,372837600,1),(997,388566000,0),(997,404892000,1),(997,420015600,0),(997,436341600,1),(997,452070000,0),(997,467791200,1),(997,483519600,0),(997,499240800,1),(997,514969200,0),(997,530690400,1),(997,544604400,0),(997,562140000,1),(997,576054000,0),(997,594194400,1),(997,607503600,0),(997,625644000,1),(997,638953200,0),(997,657093600,1),(997,671007600,0),(997,688543200,1),(997,702457200,0),(997,719992800,1),(997,733906800,0),(997,752047200,1),(997,765356400,0),(997,783496800,1),(997,796806000,0),(997,814946400,1),(997,828860400,0),(997,846396000,1),(997,860310000,0),(997,877845600,1),(997,891759600,0),(997,909295200,1),(997,923209200,0),(997,941349600,1),(997,954658800,0),(997,972799200,1),(997,986108400,0),(997,1004248800,1),(997,1018162800,0),(997,1035698400,1),(997,1049612400,0),(997,1067148000,1),(997,1081062000,0),(997,1099202400,1),(997,1112511600,0),(997,1130652000,1),(997,1143961200,0),(997,1162101600,1),(997,1173596400,0),(997,1194156000,1),(997,1205046000,0),(997,1225605600,1),(997,1236495600,0),(997,1257055200,1),(997,1268550000,0),(997,1289109600,1),(997,1299999600,0),(997,1320559200,1),(997,1331449200,0),(997,1352008800,1),(997,1362898800,0),(997,1383458400,1),(997,1394348400,0),(997,1414908000,1),(997,1425798000,0),(997,1446357600,1),(997,1457852400,0),(997,1478412000,1),(997,1489302000,0),(997,1509861600,1),(997,1520751600,0),(997,1541311200,1),(997,1552201200,0),(997,1572760800,1),(997,1583650800,0),(997,1604210400,1),(997,1615705200,0),(997,1636264800,1),(997,1647154800,0),(997,1667714400,1),(997,1678604400,0),(997,1699164000,1),(997,1710054000,0),(997,1730613600,1),(997,1741503600,0),(997,1762063200,1),(997,1772953200,0),(997,1793512800,1),(997,1805007600,0),(997,1825567200,1),(997,1836457200,0),(997,1857016800,1),(997,1867906800,0),(997,1888466400,1),(997,1899356400,0),(997,1919916000,1),(997,1930806000,0),(997,1951365600,1),(997,1962860400,0),(997,1983420000,1),(997,1994310000,0),(997,2014869600,1),(997,2025759600,0),(997,2046319200,1),(997,2057209200,0),(997,2077768800,1),(997,2088658800,0),(997,2109218400,1),(997,2120108400,0),(997,2140668000,1),(998,-2147483648,2),(998,-929844000,1),(998,-923108400,2),(998,-906170400,1),(998,-892868400,2),(998,-875844000,1),(998,-857790000,2),(998,-844308000,1),(998,-825822000,2),(998,-812685600,1),(998,-794199600,2),(998,-779853600,1),(998,-762663600,2),(998,-399088800,1),(998,-386650800,2),(998,-368330400,1),(998,-355114800,2),(998,-336790800,1),(998,-323654400,2),(998,-305168400,1),(998,-292032000,2),(998,-273632400,1),(998,-260496000,2),(998,-242096400,1),(998,-228960000,2),(998,-210560400,1),(998,-197424000,2),(998,-178938000,1),(998,-165801600,2),(998,-147402000,1),(998,-134265600,2),(998,-115866000,1),(998,-102643200,2),(998,-84330000,1),(998,-71107200,2),(998,-52707600,1),(998,-39484800,2),(998,-21171600,1),(998,-7948800,2),(998,10364400,1),(998,23587200,2),(998,41900400,1),(998,55123200,2),(998,73522800,1),(998,86745600,2),(998,105058800,1),(998,118281600,2),(998,136594800,1),(998,149817600,2),(998,168130800,1),(998,181353600,2),(998,199753200,1),(998,212976000,2),(998,231289200,1),(998,244512000,2),(998,262825200,1),(998,276048000,2),(998,294361200,1),(998,307584000,2),(998,325983600,1),(998,339206400,2),(998,357519600,1),(998,370742400,2),(998,396399600,1),(998,402278400,2),(998,426812400,1),(998,433814400,2),(998,452214000,1),(998,465436800,2),(998,483750000,1),(998,496972800,2),(998,515286000,1),(998,528508800,2),(998,546822000,1),(998,560044800,2),(998,578444400,1),(998,591667200,2),(998,610412400,1),(998,623203200,2),(998,641516400,1),(998,654739200,2),(998,673052400,1),(998,686275200,2),(998,704674800,1),(998,717897600,2),(998,736210800,1),(998,749433600,2),(998,767746800,1),(998,780969600,2),(998,799020000,3),(998,812322000,2),(998,830469600,3),(998,843771600,2),(998,861919200,3),(998,875221200,2),(998,893368800,3),(998,906670800,2),(998,925423200,3),(998,938725200,2),(998,956872800,3),(998,970174800,2),(998,988322400,3),(998,1001624400,2),(998,1019772000,3),(998,1033074000,2),(998,1051221600,3),(998,1064523600,2),(998,1083276000,3),(998,1096578000,2),(998,1114725600,3),(998,1128027600,2),(998,1146175200,3),(998,1158872400,2),(998,1177624800,3),(998,1189112400,2),(998,1209074400,3),(998,1219957200,2),(998,1240524000,3),(998,1250802000,2),(998,1272578400,3),(998,1281474000,2),(998,1284069600,1),(998,1285880400,2),(998,1400191200,1),(998,1403816400,2),(998,1406844000,1),(998,1411678800,2),(999,-2147483648,1),(999,-1691962479,2),(999,-1680471279,4),(999,-1664143200,3),(999,-1650146400,4),(999,-1633903200,3),(999,-1617487200,4),(999,-1601848800,3),(999,-1586037600,4),(999,-1570399200,3),(999,-1552168800,4),(999,-1538344800,3),(999,-1522533600,4),(999,-1517011200,6),(999,-1507500000,5),(999,-1490565600,4),(999,-1473631200,5),(999,-1460930400,4),(999,-1442786400,5),(999,-1428876000,4),(999,-1410732000,5),(999,-1396216800,4),(999,-1379282400,5),(999,-1364767200,4),(999,-1348437600,5),(999,-1333317600,4),(999,-1315778400,5),(999,-1301263200,4),(999,-1284328800,5),(999,-1269813600,4),(999,-1253484000,5),(999,-1238364000,4),(999,-1221429600,5),(999,-1206914400,4),(999,-1189980000,5),(999,-1175464800,4),(999,-1159135200,5),(999,-1143410400,4),(999,-1126476000,5),(999,-1111960800,4),(999,-1095631200,5),(999,-1080511200,4),(999,-1063576800,5),(999,-1049061600,4),(999,-1032127200,5),(999,-1017612000,4),(999,-1001282400,5),(999,-986162400,4),(999,-969228000,5),(999,-950479200,4),(999,-942012000,5),(999,-733356000,4),(999,-719445600,5),(999,-699487200,4),(999,-684972000,5),(999,-668037600,4),(999,-654732000,5),(999,-636588000,4),(999,-622072800,5),(999,-605743200,4),(999,-590623200,5),(999,-574293600,4),(999,-558568800,5),(999,-542239200,4),(999,-527119200,5),(999,-512604000,4),(999,-496274400,5),(999,-481154400,4),(999,-464220000,5),(999,-449704800,4),(999,-432165600,5),(999,-417650400,4),(999,-401320800,5),(999,-386200800,4),(999,-369266400,5),(999,-354751200,4),(999,-337816800,5),(999,-323301600,4),(999,-306972000,5),(999,-291852000,4),(999,-276732000,5),(999,-257983200,4),(999,-245282400,5),(999,-226533600,4),(999,-213228000,5),(999,-195084000,4),(999,-182383200,5),(999,-163634400,4),(999,-150933600,5),(999,-132184800,4),(999,-119484000,5),(999,-100735200,4),(999,-88034400,5),(999,-68680800,4),(999,-59004000,5),(999,-37242000,9),(999,57722400,7),(999,69818400,8),(999,89172000,7),(999,101268000,8),(999,120621600,7),(999,132717600,8),(999,152071200,7),(999,164167200,8),(999,183520800,7),(999,196221600,8),(999,214970400,7),(999,227671200,8),(999,246420000,7),(999,259120800,8),(999,278474400,7),(999,290570400,8),(999,309924000,7),(999,322020000,8),(999,341373600,7),(999,354675600,8),(999,372819600,7),(999,386125200,8),(999,404269200,7),(999,417574800,8),(999,435718800,7),(999,449024400,8),(999,467773200,7),(999,481078800,8),(999,499222800,7),(999,512528400,8),(999,530672400,7),(999,543978000,8),(999,562122000,7),(999,575427600,8),(999,593571600,7),(999,606877200,8),(999,625626000,7),(999,638326800,8),(999,657075600,7),(999,670381200,8),(999,688525200,7),(999,701830800,8),(999,719974800,7),(999,733280400,8),(999,751424400,7),(999,764730000,8),(999,782874000,7),(999,796179600,8),(999,814323600,7),(999,828234000,8),(999,846378000,7),(999,859683600,8),(999,877827600,7),(999,891133200,8),(999,909277200,7),(999,922582800,8),(999,941331600,7),(999,954032400,8),(999,972781200,7),(999,985482000,8),(999,1004230800,7),(999,1017536400,8),(999,1035680400,7),(999,1048986000,8),(999,1067130000,7),(999,1080435600,8),(999,1099184400,7),(999,1111885200,8),(999,1130634000,7),(999,1143334800,8),(999,1162083600,7),(999,1174784400,8),(999,1193533200,7),(999,1206838800,8),(999,1224982800,7),(999,1238288400,8),(999,1256432400,7),(999,1269738000,8),(999,1288486800,7),(999,1301187600,8),(999,1319936400,7),(999,1332637200,8),(999,1351386000,7),(999,1364691600,8),(999,1382835600,7),(999,1396141200,8),(999,1414285200,7),(999,1427590800,8),(999,1445734800,7),(999,1459040400,8),(999,1477789200,7),(999,1490490000,8),(999,1509238800,7),(999,1521939600,8),(999,1540688400,7),(999,1553994000,8),(999,1572138000,7),(999,1585443600,8),(999,1603587600,7),(999,1616893200,8),(999,1635642000,7),(999,1648342800,8),(999,1667091600,7),(999,1679792400,8),(999,1698541200,7),(999,1711846800,8),(999,1729990800,7),(999,1743296400,8),(999,1761440400,7),(999,1774746000,8),(999,1792890000,7),(999,1806195600,8),(999,1824944400,7),(999,1837645200,8),(999,1856394000,7),(999,1869094800,8),(999,1887843600,7),(999,1901149200,8),(999,1919293200,7),(999,1932598800,8),(999,1950742800,7),(999,1964048400,8),(999,1982797200,7),(999,1995498000,8),(999,2014246800,7),(999,2026947600,8),(999,2045696400,7),(999,2058397200,8),(999,2077146000,7),(999,2090451600,8),(999,2108595600,7),(999,2121901200,8),(999,2140045200,7),(1002,-2147483648,0),(1002,2147483647,0),(1003,-2147483648,0),(1003,2147483647,0),(1004,-2147483648,0),(1004,2147483647,0),(1005,-2147483648,0),(1005,2147483647,0),(1006,-2147483648,0),(1006,2147483647,0),(1007,-2147483648,0),(1007,2147483647,0),(1008,-2147483648,0),(1008,2147483647,0),(1009,-2147483648,0),(1009,2147483647,0),(1010,-2147483648,0),(1010,2147483647,0),(1011,-2147483648,0),(1011,2147483647,0),(1012,-2147483648,0),(1012,2147483647,0),(1013,-2147483648,0),(1013,2147483647,0),(1015,-2147483648,0),(1015,2147483647,0),(1016,-2147483648,0),(1016,2147483647,0),(1017,-2147483648,0),(1017,2147483647,0),(1018,-2147483648,0),(1018,2147483647,0),(1019,-2147483648,0),(1019,2147483647,0),(1020,-2147483648,0),(1020,2147483647,0),(1021,-2147483648,0),(1021,2147483647,0),(1022,-2147483648,0),(1022,2147483647,0),(1023,-2147483648,0),(1023,2147483647,0),(1024,-2147483648,0),(1024,2147483647,0),(1025,-2147483648,0),(1025,2147483647,0),(1026,-2147483648,0),(1026,2147483647,0),(1027,-2147483648,0),(1027,2147483647,0),(1028,-2147483648,0),(1028,2147483647,0),(1035,-2147483648,2),(1035,-1693700372,1),(1035,-1680484772,2),(1035,-1663453172,3),(1035,-1650147572,4),(1035,-1633213172,3),(1035,-1617488372,4),(1035,-1601158772,3),(1035,-1586038772,4),(1035,-1569709172,3),(1035,-1554589172,4),(1035,-1538259572,3),(1035,-1523139572,4),(1035,-1507501172,3),(1035,-1490566772,4),(1035,-1470176372,3),(1035,-1459117172,4),(1035,-1443997172,3),(1035,-1427667572,4),(1035,-1406672372,3),(1035,-1396217972,4),(1035,-1376950772,3),(1035,-1364768372,4),(1035,-1345414772,3),(1035,-1333318772,4),(1035,-1313792372,3),(1035,-1301264372,4),(1035,-1282256372,3),(1035,-1269814772,4),(1035,-1250720372,3),(1035,-1238365172,4),(1035,-1219184372,3),(1035,-1206915572,4),(1035,-1186957172,3),(1035,-1175465972,4),(1035,-1156025972,3),(1035,-1143411572,4),(1035,-1124489972,3),(1035,-1111961972,4),(1035,-1092953972,3),(1035,-1080512372,4),(1035,-1061331572,3),(1035,-1049062772,4),(1035,-1029190772,3),(1035,-1025745572,7),(1035,-1017613200,5),(1035,-998259600,6),(1035,-986163600,5),(1035,-966723600,6),(1035,-954109200,5),(1035,-935022000,10),(1035,-857257200,8),(1035,-844556400,9),(1035,-828226800,8),(1035,-812502000,9),(1035,-796777200,8),(1035,-781052400,9),(1035,-766623600,8),(1035,220921200,13),(1035,228877200,11),(1035,243997200,12),(1035,260326800,11),(1035,276051600,12),(1035,291776400,11),(1035,307501200,12),(1035,323830800,11),(1035,338950800,12),(1035,354675600,11),(1035,370400400,12),(1035,386125200,11),(1035,401850000,12),(1035,417574800,11),(1035,433299600,12),(1035,449024400,11),(1035,465354000,12),(1035,481078800,11),(1035,496803600,12),(1035,512528400,11),(1035,528253200,12),(1035,543978000,11),(1035,559702800,12),(1035,575427600,11),(1035,591152400,12),(1035,606877200,11),(1035,622602000,12),(1035,638326800,11),(1035,654656400,12),(1035,670381200,11),(1035,686106000,12),(1035,701830800,11),(1035,717555600,12),(1035,733280400,11),(1035,749005200,12),(1035,764730000,11),(1035,780454800,12),(1035,796179600,11),(1035,811904400,12),(1035,828234000,11),(1035,846378000,12),(1035,859683600,11),(1035,877827600,12),(1035,891133200,11),(1035,909277200,12),(1035,922582800,11),(1035,941331600,12),(1035,954032400,11),(1035,972781200,12),(1035,985482000,11),(1035,1004230800,12),(1035,1017536400,11),(1035,1035680400,12),(1035,1048986000,11),(1035,1067130000,12),(1035,1080435600,11),(1035,1099184400,12),(1035,1111885200,11),(1035,1130634000,12),(1035,1143334800,11),(1035,1162083600,12),(1035,1174784400,11),(1035,1193533200,12),(1035,1206838800,11),(1035,1224982800,12),(1035,1238288400,11),(1035,1256432400,12),(1035,1269738000,11),(1035,1288486800,12),(1035,1301187600,11),(1035,1319936400,12),(1035,1332637200,11),(1035,1351386000,12),(1035,1364691600,11),(1035,1382835600,12),(1035,1396141200,11),(1035,1414285200,12),(1035,1427590800,11),(1035,1445734800,12),(1035,1459040400,11),(1035,1477789200,12),(1035,1490490000,11),(1035,1509238800,12),(1035,1521939600,11),(1035,1540688400,12),(1035,1553994000,11),(1035,1572138000,12),(1035,1585443600,11),(1035,1603587600,12),(1035,1616893200,11),(1035,1635642000,12),(1035,1648342800,11),(1035,1667091600,12),(1035,1679792400,11),(1035,1698541200,12),(1035,1711846800,11),(1035,1729990800,12),(1035,1743296400,11),(1035,1761440400,12),(1035,1774746000,11),(1035,1792890000,12),(1035,1806195600,11),(1035,1824944400,12),(1035,1837645200,11),(1035,1856394000,12),(1035,1869094800,11),(1035,1887843600,12),(1035,1901149200,11),(1035,1919293200,12),(1035,1932598800,11),(1035,1950742800,12),(1035,1964048400,11),(1035,1982797200,12),(1035,1995498000,11),(1035,2014246800,12),(1035,2026947600,11),(1035,2045696400,12),(1035,2058397200,11),(1035,2077146000,12),(1035,2090451600,11),(1035,2108595600,12),(1035,2121901200,11),(1035,2140045200,12),(1036,-2147483648,1),(1036,-733881600,2),(1036,481078800,3),(1036,496803600,4),(1036,512528400,3),(1036,528253200,4),(1036,543978000,3),(1036,559702800,4),(1036,575427600,3),(1036,591152400,4),(1036,606877200,3),(1036,622602000,4),(1036,638326800,3),(1036,654656400,4),(1036,670381200,3),(1036,686106000,4),(1036,701830800,3),(1036,717555600,4),(1036,733280400,3),(1036,749005200,4),(1036,764730000,3),(1036,780454800,4),(1036,796179600,3),(1036,811904400,4),(1036,828234000,3),(1036,846378000,4),(1036,859683600,3),(1036,877827600,4),(1036,891133200,3),(1036,909277200,4),(1036,922582800,3),(1036,941331600,4),(1036,954032400,3),(1036,972781200,4),(1036,985482000,3),(1036,1004230800,4),(1036,1017536400,3),(1036,1035680400,4),(1036,1048986000,3),(1036,1067130000,4),(1036,1080435600,3),(1036,1099184400,4),(1036,1111885200,3),(1036,1130634000,4),(1036,1143334800,3),(1036,1162083600,4),(1036,1174784400,3),(1036,1193533200,4),(1036,1206838800,3),(1036,1224982800,4),(1036,1238288400,3),(1036,1256432400,4),(1036,1269738000,3),(1036,1288486800,4),(1036,1301187600,3),(1036,1319936400,4),(1036,1332637200,3),(1036,1351386000,4),(1036,1364691600,3),(1036,1382835600,4),(1036,1396141200,3),(1036,1414285200,4),(1036,1427590800,3),(1036,1445734800,4),(1036,1459040400,3),(1036,1477789200,4),(1036,1490490000,3),(1036,1509238800,4),(1036,1521939600,3),(1036,1540688400,4),(1036,1553994000,3),(1036,1572138000,4),(1036,1585443600,3),(1036,1603587600,4),(1036,1616893200,3),(1036,1635642000,4),(1036,1648342800,3),(1036,1667091600,4),(1036,1679792400,3),(1036,1698541200,4),(1036,1711846800,3),(1036,1729990800,4),(1036,1743296400,3),(1036,1761440400,4),(1036,1774746000,3),(1036,1792890000,4),(1036,1806195600,3),(1036,1824944400,4),(1036,1837645200,3),(1036,1856394000,4),(1036,1869094800,3),(1036,1887843600,4),(1036,1901149200,3),(1036,1919293200,4),(1036,1932598800,3),(1036,1950742800,4),(1036,1964048400,3),(1036,1982797200,4),(1036,1995498000,3),(1036,2014246800,4),(1036,2026947600,3),(1036,2045696400,4),(1036,2058397200,3),(1036,2077146000,4),(1036,2090451600,3),(1036,2108595600,4),(1036,2121901200,3),(1036,2140045200,4),(1037,-2147483648,0),(1037,-1441249932,1),(1037,-1247540400,3),(1037,354916800,2),(1037,370724400,3),(1037,386452800,2),(1037,402260400,3),(1037,417988800,2),(1037,433796400,3),(1037,449611200,2),(1037,465343200,4),(1037,481068000,5),(1037,496792800,4),(1037,512517600,5),(1037,528242400,4),(1037,543967200,5),(1037,559692000,4),(1037,575416800,5),(1037,591141600,4),(1037,606866400,6),(1037,622594800,7),(1037,638319600,6),(1037,654649200,7),(1037,670374000,4),(1037,701820000,6),(1037,717548400,7),(1037,733273200,6),(1037,748998000,7),(1037,764722800,6),(1037,780447600,7),(1037,796172400,6),(1037,811897200,7),(1037,828226800,6),(1037,846370800,7),(1037,859676400,6),(1037,877820400,7),(1037,891126000,6),(1037,909270000,7),(1037,922575600,6),(1037,941324400,7),(1037,954025200,6),(1037,972774000,7),(1037,985474800,6),(1037,1004223600,7),(1037,1017529200,6),(1037,1035673200,7),(1037,1048978800,6),(1037,1067122800,7),(1037,1080428400,6),(1037,1099177200,7),(1037,1111878000,6),(1037,1130626800,7),(1037,1143327600,6),(1037,1162076400,7),(1037,1174777200,6),(1037,1193526000,7),(1037,1206831600,6),(1037,1224975600,7),(1037,1238281200,6),(1037,1256425200,7),(1037,1269730800,6),(1037,1288479600,7),(1037,1301180400,4),(1037,1414274400,7),(1037,1459033200,4),(1037,2147483647,4),(1038,-2147483648,1),(1038,-1686101632,3),(1038,-1182996000,2),(1038,-1178161200,3),(1038,-906861600,2),(1038,-904878000,5),(1038,-857257200,4),(1038,-844477200,5),(1038,-828237600,4),(1038,-812422800,3),(1038,-552362400,2),(1038,-541652400,3),(1038,166485600,6),(1038,186184800,7),(1038,198028800,6),(1038,213753600,7),(1038,228873600,6),(1038,244080000,7),(1038,260323200,6),(1038,275446800,3),(1038,291798000,2),(1038,307407600,3),(1038,323388000,2),(1038,338936400,3),(1038,354675600,8),(1038,370400400,9),(1038,386125200,8),(1038,401850000,9),(1038,417574800,8),(1038,433299600,9),(1038,449024400,8),(1038,465354000,9),(1038,481078800,8),(1038,496803600,9),(1038,512528400,8),(1038,528253200,9),(1038,543978000,8),(1038,559702800,9),(1038,575427600,8),(1038,591152400,9),(1038,606877200,8),(1038,622602000,9),(1038,638326800,8),(1038,654656400,9),(1038,670381200,8),(1038,686106000,9),(1038,701830800,8),(1038,717555600,9),(1038,733280400,8),(1038,749005200,9),(1038,764730000,8),(1038,780454800,9),(1038,796179600,8),(1038,811904400,9),(1038,828234000,8),(1038,846378000,9),(1038,859683600,8),(1038,877827600,9),(1038,891133200,8),(1038,909277200,9),(1038,922582800,8),(1038,941331600,9),(1038,954032400,8),(1038,972781200,9),(1038,985482000,8),(1038,1004230800,9),(1038,1017536400,8),(1038,1035680400,9),(1038,1048986000,8),(1038,1067130000,9),(1038,1080435600,8),(1038,1099184400,9),(1038,1111885200,8),(1038,1130634000,9),(1038,1143334800,8),(1038,1162083600,9),(1038,1174784400,8),(1038,1193533200,9),(1038,1206838800,8),(1038,1224982800,9),(1038,1238288400,8),(1038,1256432400,9),(1038,1269738000,8),(1038,1288486800,9),(1038,1301187600,8),(1038,1319936400,9),(1038,1332637200,8),(1038,1351386000,9),(1038,1364691600,8),(1038,1382835600,9),(1038,1396141200,8),(1038,1414285200,9),(1038,1427590800,8),(1038,1445734800,9),(1038,1459040400,8),(1038,1477789200,9),(1038,1490490000,8),(1038,1509238800,9),(1038,1521939600,8),(1038,1540688400,9),(1038,1553994000,8),(1038,1572138000,9),(1038,1585443600,8),(1038,1603587600,9),(1038,1616893200,8),(1038,1635642000,9),(1038,1648342800,8),(1038,1667091600,9),(1038,1679792400,8),(1038,1698541200,9),(1038,1711846800,8),(1038,1729990800,9),(1038,1743296400,8),(1038,1761440400,9),(1038,1774746000,8),(1038,1792890000,9),(1038,1806195600,8),(1038,1824944400,9),(1038,1837645200,8),(1038,1856394000,9),(1038,1869094800,8),(1038,1887843600,9),(1038,1901149200,8),(1038,1919293200,9),(1038,1932598800,8),(1038,1950742800,9),(1038,1964048400,8),(1038,1982797200,9),(1038,1995498000,8),(1038,2014246800,9),(1038,2026947600,8),(1038,2045696400,9),(1038,2058397200,8),(1038,2077146000,9),(1038,2090451600,8),(1038,2108595600,9),(1038,2121901200,8),(1038,2140045200,9),(1039,-2147483648,2),(1039,-1691964000,1),(1039,-1680472800,2),(1039,-1664143200,1),(1039,-1650146400,2),(1039,-1633903200,1),(1039,-1617487200,2),(1039,-1601848800,1),(1039,-1586037600,2),(1039,-1570399200,1),(1039,-1552168800,2),(1039,-1538344800,1),(1039,-1522533600,2),(1039,-1507500000,1),(1039,-1490565600,2),(1039,-1473631200,1),(1039,-1460930400,2),(1039,-1442786400,1),(1039,-1428876000,2),(1039,-1410732000,1),(1039,-1396216800,2),(1039,-1379282400,1),(1039,-1364767200,2),(1039,-1348437600,1),(1039,-1333317600,2),(1039,-1315778400,1),(1039,-1301263200,2),(1039,-1284328800,1),(1039,-1269813600,2),(1039,-1253484000,1),(1039,-1238364000,2),(1039,-1221429600,1),(1039,-1206914400,2),(1039,-1189980000,1),(1039,-1175464800,2),(1039,-1159135200,1),(1039,-1143410400,2),(1039,-1126476000,1),(1039,-1111960800,2),(1039,-1095631200,1),(1039,-1080511200,2),(1039,-1063576800,1),(1039,-1049061600,2),(1039,-1032127200,1),(1039,-1017612000,2),(1039,-1001282400,1),(1039,-986162400,2),(1039,-969228000,1),(1039,-950479200,2),(1039,-942012000,1),(1039,-904518000,3),(1039,-896050800,1),(1039,-875487600,3),(1039,-864601200,1),(1039,-844038000,3),(1039,-832546800,1),(1039,-812588400,3),(1039,-798073200,1),(1039,-781052400,3),(1039,-772066800,1),(1039,-764805600,2),(1039,-748476000,1),(1039,-733356000,2),(1039,-719445600,1),(1039,-717030000,3),(1039,-706748400,1),(1039,-699487200,2),(1039,-687996000,1),(1039,-668037600,2),(1039,-654732000,1),(1039,-636588000,2),(1039,-622072800,1),(1039,-605743200,2),(1039,-590623200,1),(1039,-574293600,2),(1039,-558568800,1),(1039,-542239200,2),(1039,-527119200,1),(1039,-512604000,2),(1039,-496274400,1),(1039,-481154400,2),(1039,-464220000,1),(1039,-449704800,2),(1039,-432165600,1),(1039,-417650400,2),(1039,-401320800,1),(1039,-386200800,2),(1039,-369266400,1),(1039,-354751200,2),(1039,-337816800,1),(1039,-323301600,2),(1039,-306972000,1),(1039,-291852000,2),(1039,-276732000,1),(1039,-257983200,2),(1039,-245282400,1),(1039,-226533600,2),(1039,-213228000,1),(1039,-195084000,2),(1039,-182383200,1),(1039,-163634400,2),(1039,-150933600,1),(1039,-132184800,2),(1039,-119484000,1),(1039,-100735200,2),(1039,-88034400,1),(1039,-68680800,2),(1039,-59004000,1),(1039,-37242000,4),(1039,57722400,6),(1039,69818400,1),(1039,89172000,2),(1039,101268000,1),(1039,120621600,2),(1039,132717600,1),(1039,152071200,2),(1039,164167200,1),(1039,183520800,2),(1039,196221600,1),(1039,214970400,2),(1039,227671200,1),(1039,246420000,2),(1039,259120800,1),(1039,278474400,2),(1039,290570400,1),(1039,309924000,2),(1039,322020000,1),(1039,341373600,2),(1039,354675600,5),(1039,372819600,6),(1039,386125200,5),(1039,404269200,6),(1039,417574800,5),(1039,435718800,6),(1039,449024400,5),(1039,467773200,6),(1039,481078800,5),(1039,499222800,6),(1039,512528400,5),(1039,530672400,6),(1039,543978000,5),(1039,562122000,6),(1039,575427600,5),(1039,593571600,6),(1039,606877200,5),(1039,625626000,6),(1039,638326800,5),(1039,657075600,6),(1039,670381200,5),(1039,688525200,6),(1039,701830800,5),(1039,719974800,6),(1039,733280400,5),(1039,751424400,6),(1039,764730000,5),(1039,782874000,6),(1039,796179600,5),(1039,814323600,6),(1039,820454400,7),(1039,828234000,5),(1039,846378000,6),(1039,859683600,5),(1039,877827600,6),(1039,891133200,5),(1039,909277200,6),(1039,922582800,5),(1039,941331600,6),(1039,954032400,5),(1039,972781200,6),(1039,985482000,5),(1039,1004230800,6),(1039,1017536400,5),(1039,1035680400,6),(1039,1048986000,5),(1039,1067130000,6),(1039,1080435600,5),(1039,1099184400,6),(1039,1111885200,5),(1039,1130634000,6),(1039,1143334800,5),(1039,1162083600,6),(1039,1174784400,5),(1039,1193533200,6),(1039,1206838800,5),(1039,1224982800,6),(1039,1238288400,5),(1039,1256432400,6),(1039,1269738000,5),(1039,1288486800,6),(1039,1301187600,5),(1039,1319936400,6),(1039,1332637200,5),(1039,1351386000,6),(1039,1364691600,5),(1039,1382835600,6),(1039,1396141200,5),(1039,1414285200,6),(1039,1427590800,5),(1039,1445734800,6),(1039,1459040400,5),(1039,1477789200,6),(1039,1490490000,5),(1039,1509238800,6),(1039,1521939600,5),(1039,1540688400,6),(1039,1553994000,5),(1039,1572138000,6),(1039,1585443600,5),(1039,1603587600,6),(1039,1616893200,5),(1039,1635642000,6),(1039,1648342800,5),(1039,1667091600,6),(1039,1679792400,5),(1039,1698541200,6),(1039,1711846800,5),(1039,1729990800,6),(1039,1743296400,5),(1039,1761440400,6),(1039,1774746000,5),(1039,1792890000,6),(1039,1806195600,5),(1039,1824944400,6),(1039,1837645200,5),(1039,1856394000,6),(1039,1869094800,5),(1039,1887843600,6),(1039,1901149200,5),(1039,1919293200,6),(1039,1932598800,5),(1039,1950742800,6),(1039,1964048400,5),(1039,1982797200,6),(1039,1995498000,5),(1039,2014246800,6),(1039,2026947600,5),(1039,2045696400,6),(1039,2058397200,5),(1039,2077146000,6),(1039,2090451600,5),(1039,2108595600,6),(1039,2121901200,5),(1039,2140045200,6),(1040,-2147483648,1),(1040,-905824800,4),(1040,-857257200,2),(1040,-844556400,3),(1040,-828226800,2),(1040,-812502000,3),(1040,-796777200,2),(1040,-788922000,1),(1040,-777942000,3),(1040,-766623600,2),(1040,407199600,1),(1040,417574800,5),(1040,433299600,6),(1040,449024400,5),(1040,465354000,6),(1040,481078800,5),(1040,496803600,6),(1040,512528400,5),(1040,528253200,6),(1040,543978000,5),(1040,559702800,6),(1040,575427600,5),(1040,591152400,6),(1040,606877200,5),(1040,622602000,6),(1040,638326800,5),(1040,654656400,6),(1040,670381200,5),(1040,686106000,6),(1040,701830800,5),(1040,717555600,6),(1040,733280400,5),(1040,749005200,6),(1040,764730000,5),(1040,780454800,6),(1040,796179600,5),(1040,811904400,6),(1040,828234000,5),(1040,846378000,6),(1040,859683600,5),(1040,877827600,6),(1040,891133200,5),(1040,909277200,6),(1040,922582800,5),(1040,941331600,6),(1040,954032400,5),(1040,972781200,6),(1040,985482000,5),(1040,1004230800,6),(1040,1017536400,5),(1040,1035680400,6),(1040,1048986000,5),(1040,1067130000,6),(1040,1080435600,5),(1040,1099184400,6),(1040,1111885200,5),(1040,1130634000,6),(1040,1143334800,5),(1040,1162083600,6),(1040,1174784400,5),(1040,1193533200,6),(1040,1206838800,5),(1040,1224982800,6),(1040,1238288400,5),(1040,1256432400,6),(1040,1269738000,5),(1040,1288486800,6),(1040,1301187600,5),(1040,1319936400,6),(1040,1332637200,5),(1040,1351386000,6),(1040,1364691600,5),(1040,1382835600,6),(1040,1396141200,5),(1040,1414285200,6),(1040,1427590800,5),(1040,1445734800,6),(1040,1459040400,5),(1040,1477789200,6),(1040,1490490000,5),(1040,1509238800,6),(1040,1521939600,5),(1040,1540688400,6),(1040,1553994000,5),(1040,1572138000,6),(1040,1585443600,5),(1040,1603587600,6),(1040,1616893200,5),(1040,1635642000,6),(1040,1648342800,5),(1040,1667091600,6),(1040,1679792400,5),(1040,1698541200,6),(1040,1711846800,5),(1040,1729990800,6),(1040,1743296400,5),(1040,1761440400,6),(1040,1774746000,5),(1040,1792890000,6),(1040,1806195600,5),(1040,1824944400,6),(1040,1837645200,5),(1040,1856394000,6),(1040,1869094800,5),(1040,1887843600,6),(1040,1901149200,5),(1040,1919293200,6),(1040,1932598800,5),(1040,1950742800,6),(1040,1964048400,5),(1040,1982797200,6),(1040,1995498000,5),(1040,2014246800,6),(1040,2026947600,5),(1040,2045696400,6),(1040,2058397200,5),(1040,2077146000,6),(1040,2090451600,5),(1040,2108595600,6),(1040,2121901200,5),(1040,2140045200,6),(1041,-2147483648,2),(1041,-1693706400,1),(1041,-1680483600,2),(1041,-1663455600,3),(1041,-1650150000,4),(1041,-1632006000,3),(1041,-1618700400,4),(1041,-938905200,3),(1041,-857257200,4),(1041,-844556400,3),(1041,-828226800,4),(1041,-812502000,3),(1041,-796777200,4),(1041,-781052400,3),(1041,-776563200,5),(1041,-765936000,1),(1041,-761180400,4),(1041,-757386000,2),(1041,-748479600,3),(1041,-733273200,4),(1041,-717631200,3),(1041,-714610800,6),(1041,-710380800,1),(1041,-701910000,4),(1041,-684975600,3),(1041,-670460400,4),(1041,-654130800,3),(1041,-639010800,4),(1041,315529200,2),(1041,323830800,7),(1041,338950800,8),(1041,354675600,7),(1041,370400400,8),(1041,386125200,7),(1041,401850000,8),(1041,417574800,7),(1041,433299600,8),(1041,449024400,7),(1041,465354000,8),(1041,481078800,7),(1041,496803600,8),(1041,512528400,7),(1041,528253200,8),(1041,543978000,7),(1041,559702800,8),(1041,575427600,7),(1041,591152400,8),(1041,606877200,7),(1041,622602000,8),(1041,638326800,7),(1041,654656400,8),(1041,670381200,7),(1041,686106000,8),(1041,701830800,7),(1041,717555600,8),(1041,733280400,7),(1041,749005200,8),(1041,764730000,7),(1041,780454800,8),(1041,796179600,7),(1041,811904400,8),(1041,828234000,7),(1041,846378000,8),(1041,859683600,7),(1041,877827600,8),(1041,891133200,7),(1041,909277200,8),(1041,922582800,7),(1041,941331600,8),(1041,954032400,7),(1041,972781200,8),(1041,985482000,7),(1041,1004230800,8),(1041,1017536400,7),(1041,1035680400,8),(1041,1048986000,7),(1041,1067130000,8),(1041,1080435600,7),(1041,1099184400,8),(1041,1111885200,7),(1041,1130634000,8),(1041,1143334800,7),(1041,1162083600,8),(1041,1174784400,7),(1041,1193533200,8),(1041,1206838800,7),(1041,1224982800,8),(1041,1238288400,7),(1041,1256432400,8),(1041,1269738000,7),(1041,1288486800,8),(1041,1301187600,7),(1041,1319936400,8),(1041,1332637200,7),(1041,1351386000,8),(1041,1364691600,7),(1041,1382835600,8),(1041,1396141200,7),(1041,1414285200,8),(1041,1427590800,7),(1041,1445734800,8),(1041,1459040400,7),(1041,1477789200,8),(1041,1490490000,7),(1041,1509238800,8),(1041,1521939600,7),(1041,1540688400,8),(1041,1553994000,7),(1041,1572138000,8),(1041,1585443600,7),(1041,1603587600,8),(1041,1616893200,7),(1041,1635642000,8),(1041,1648342800,7),(1041,1667091600,8),(1041,1679792400,7),(1041,1698541200,8),(1041,1711846800,7),(1041,1729990800,8),(1041,1743296400,7),(1041,1761440400,8),(1041,1774746000,7),(1041,1792890000,8),(1041,1806195600,7),(1041,1824944400,8),(1041,1837645200,7),(1041,1856394000,8),(1041,1869094800,7),(1041,1887843600,8),(1041,1901149200,7),(1041,1919293200,8),(1041,1932598800,7),(1041,1950742800,8),(1041,1964048400,7),(1041,1982797200,8),(1041,1995498000,7),(1041,2014246800,8),(1041,2026947600,7),(1041,2045696400,8),(1041,2058397200,7),(1041,2077146000,8),(1041,2090451600,7),(1041,2108595600,8),(1041,2121901200,7),(1041,2140045200,8),(1042,-2147483648,2),(1042,-1693706400,1),(1042,-1680483600,2),(1042,-1663455600,3),(1042,-1650150000,4),(1042,-1632006000,3),(1042,-1618700400,4),(1042,-938905200,3),(1042,-857257200,4),(1042,-844556400,3),(1042,-828226800,4),(1042,-812502000,3),(1042,-796777200,4),(1042,-781052400,3),(1042,-777866400,1),(1042,-765327600,4),(1042,-746578800,3),(1042,-733359600,4),(1042,-728517600,5),(1042,-721260000,2),(1042,-716425200,3),(1042,-701910000,4),(1042,-684975600,3),(1042,-670460400,4),(1042,-654217200,3),(1042,-639010800,4),(1042,283993200,2),(1042,291776400,6),(1042,307501200,7),(1042,323830800,6),(1042,338950800,7),(1042,354675600,6),(1042,370400400,7),(1042,386125200,6),(1042,401850000,7),(1042,417574800,6),(1042,433299600,7),(1042,449024400,6),(1042,465354000,7),(1042,481078800,6),(1042,496803600,7),(1042,512528400,6),(1042,528253200,7),(1042,543978000,6),(1042,559702800,7),(1042,575427600,6),(1042,591152400,7),(1042,606877200,6),(1042,622602000,7),(1042,638326800,6),(1042,654656400,7),(1042,670381200,6),(1042,686106000,7),(1042,701830800,6),(1042,717555600,7),(1042,733280400,6),(1042,749005200,7),(1042,764730000,6),(1042,780454800,7),(1042,796179600,6),(1042,811904400,7),(1042,828234000,6),(1042,846378000,7),(1042,859683600,6),(1042,877827600,7),(1042,891133200,6),(1042,909277200,7),(1042,922582800,6),(1042,941331600,7),(1042,954032400,6),(1042,972781200,7),(1042,985482000,6),(1042,1004230800,7),(1042,1017536400,6),(1042,1035680400,7),(1042,1048986000,6),(1042,1067130000,7),(1042,1080435600,6),(1042,1099184400,7),(1042,1111885200,6),(1042,1130634000,7),(1042,1143334800,6),(1042,1162083600,7),(1042,1174784400,6),(1042,1193533200,7),(1042,1206838800,6),(1042,1224982800,7),(1042,1238288400,6),(1042,1256432400,7),(1042,1269738000,6),(1042,1288486800,7),(1042,1301187600,6),(1042,1319936400,7),(1042,1332637200,6),(1042,1351386000,7),(1042,1364691600,6),(1042,1382835600,7),(1042,1396141200,6),(1042,1414285200,7),(1042,1427590800,6),(1042,1445734800,7),(1042,1459040400,6),(1042,1477789200,7),(1042,1490490000,6),(1042,1509238800,7),(1042,1521939600,6),(1042,1540688400,7),(1042,1553994000,6),(1042,1572138000,7),(1042,1585443600,6),(1042,1603587600,7),(1042,1616893200,6),(1042,1635642000,7),(1042,1648342800,6),(1042,1667091600,7),(1042,1679792400,6),(1042,1698541200,7),(1042,1711846800,6),(1042,1729990800,7),(1042,1743296400,6),(1042,1761440400,7),(1042,1774746000,6),(1042,1792890000,7),(1042,1806195600,6),(1042,1824944400,7),(1042,1837645200,6),(1042,1856394000,7),(1042,1869094800,6),(1042,1887843600,7),(1042,1901149200,6),(1042,1919293200,7),(1042,1932598800,6),(1042,1950742800,7),(1042,1964048400,6),(1042,1982797200,7),(1042,1995498000,6),(1042,2014246800,7),(1042,2026947600,6),(1042,2045696400,7),(1042,2058397200,6),(1042,2077146000,7),(1042,2090451600,6),(1042,2108595600,7),(1042,2121901200,6),(1042,2140045200,7),(1043,-2147483648,1),(1043,-1740355200,2),(1043,-1693702800,5),(1043,-1680483600,2),(1043,-1663455600,3),(1043,-1650150000,4),(1043,-1632006000,3),(1043,-1618700400,4),(1043,-1613826000,8),(1043,-1604278800,6),(1043,-1585530000,7),(1043,-1574038800,6),(1043,-1552266000,7),(1043,-1539997200,6),(1043,-1520557200,7),(1043,-1507510800,6),(1043,-1490576400,7),(1043,-1473642000,6),(1043,-1459126800,7),(1043,-1444006800,6),(1043,-1427677200,7),(1043,-1411952400,6),(1043,-1396227600,7),(1043,-1379293200,6),(1043,-1364778000,7),(1043,-1348448400,6),(1043,-1333328400,7),(1043,-1316394000,6),(1043,-1301263200,7),(1043,-1284328800,6),(1043,-1269813600,7),(1043,-1253484000,6),(1043,-1238364000,7),(1043,-1221429600,6),(1043,-1206914400,7),(1043,-1191189600,6),(1043,-1175464800,7),(1043,-1160344800,6),(1043,-1143410400,7),(1043,-1127685600,6),(1043,-1111960800,7),(1043,-1096840800,6),(1043,-1080511200,7),(1043,-1063576800,6),(1043,-1049061600,7),(1043,-1033336800,6),(1043,-1017612000,7),(1043,-1002492000,6),(1043,-986162400,7),(1043,-969228000,6),(1043,-950479200,7),(1043,-942012000,6),(1043,-934668000,3),(1043,-857257200,4),(1043,-844556400,3),(1043,-828226800,4),(1043,-812502000,3),(1043,-799293600,5),(1043,-798073200,4),(1043,-781052400,3),(1043,-766623600,4),(1043,-745455600,3),(1043,-733273200,4),(1043,220921200,2),(1043,228877200,9),(1043,243997200,10),(1043,260326800,9),(1043,276051600,10),(1043,291776400,9),(1043,307501200,10),(1043,323830800,9),(1043,338950800,10),(1043,354675600,9),(1043,370400400,10),(1043,386125200,9),(1043,401850000,10),(1043,417574800,9),(1043,433299600,10),(1043,449024400,9),(1043,465354000,10),(1043,481078800,9),(1043,496803600,10),(1043,512528400,9),(1043,528253200,10),(1043,543978000,9),(1043,559702800,10),(1043,575427600,9),(1043,591152400,10),(1043,606877200,9),(1043,622602000,10),(1043,638326800,9),(1043,654656400,10),(1043,670381200,9),(1043,686106000,10),(1043,701830800,9),(1043,717555600,10),(1043,733280400,9),(1043,749005200,10),(1043,764730000,9),(1043,780454800,10),(1043,796179600,9),(1043,811904400,10),(1043,828234000,9),(1043,846378000,10),(1043,859683600,9),(1043,877827600,10),(1043,891133200,9),(1043,909277200,10),(1043,922582800,9),(1043,941331600,10),(1043,954032400,9),(1043,972781200,10),(1043,985482000,9),(1043,1004230800,10),(1043,1017536400,9),(1043,1035680400,10),(1043,1048986000,9),(1043,1067130000,10),(1043,1080435600,9),(1043,1099184400,10),(1043,1111885200,9),(1043,1130634000,10),(1043,1143334800,9),(1043,1162083600,10),(1043,1174784400,9),(1043,1193533200,10),(1043,1206838800,9),(1043,1224982800,10),(1043,1238288400,9),(1043,1256432400,10),(1043,1269738000,9),(1043,1288486800,10),(1043,1301187600,9),(1043,1319936400,10),(1043,1332637200,9),(1043,1351386000,10),(1043,1364691600,9),(1043,1382835600,10),(1043,1396141200,9),(1043,1414285200,10),(1043,1427590800,9),(1043,1445734800,10),(1043,1459040400,9),(1043,1477789200,10),(1043,1490490000,9),(1043,1509238800,10),(1043,1521939600,9),(1043,1540688400,10),(1043,1553994000,9),(1043,1572138000,10),(1043,1585443600,9),(1043,1603587600,10),(1043,1616893200,9),(1043,1635642000,10),(1043,1648342800,9),(1043,1667091600,10),(1043,1679792400,9),(1043,1698541200,10),(1043,1711846800,9),(1043,1729990800,10),(1043,1743296400,9),(1043,1761440400,10),(1043,1774746000,9),(1043,1792890000,10),(1043,1806195600,9),(1043,1824944400,10),(1043,1837645200,9),(1043,1856394000,10),(1043,1869094800,9),(1043,1887843600,10),(1043,1901149200,9),(1043,1919293200,10),(1043,1932598800,9),(1043,1950742800,10),(1043,1964048400,9),(1043,1982797200,10),(1043,1995498000,9),(1043,2014246800,10),(1043,2026947600,9),(1043,2045696400,10),(1043,2058397200,9),(1043,2077146000,10),(1043,2090451600,9),(1043,2108595600,10),(1043,2121901200,9),(1043,2140045200,10),(1044,-2147483648,1),(1044,-1213148664,5),(1044,-1187056800,2),(1044,-1175479200,3),(1044,-1159754400,2),(1044,-1144029600,3),(1044,-1127700000,2),(1044,-1111975200,3),(1044,-1096250400,2),(1044,-1080525600,3),(1044,-1064800800,2),(1044,-1049076000,3),(1044,-1033351200,2),(1044,-1017626400,3),(1044,-1001901600,2),(1044,-986176800,3),(1044,-970452000,2),(1044,-954727200,3),(1044,296604000,4),(1044,307486800,5),(1044,323816400,4),(1044,338940000,5),(1044,354672000,2),(1044,370396800,3),(1044,386121600,2),(1044,401846400,3),(1044,417571200,2),(1044,433296000,3),(1044,449020800,2),(1044,465350400,3),(1044,481075200,2),(1044,496800000,3),(1044,512524800,2),(1044,528249600,3),(1044,543974400,2),(1044,559699200,3),(1044,575424000,2),(1044,591148800,3),(1044,606873600,2),(1044,622598400,3),(1044,638323200,2),(1044,654652800,3),(1044,662680800,5),(1044,670370400,2),(1044,686095200,3),(1044,701820000,2),(1044,717544800,3),(1044,733269600,2),(1044,748994400,3),(1044,757375200,5),(1044,764719200,4),(1044,780440400,5),(1044,796168800,4),(1044,811890000,5),(1044,828223200,4),(1044,846363600,5),(1044,859683600,6),(1044,877827600,7),(1044,891133200,6),(1044,909277200,7),(1044,922582800,6),(1044,941331600,7),(1044,954032400,6),(1044,972781200,7),(1044,985482000,6),(1044,1004230800,7),(1044,1017536400,6),(1044,1035680400,7),(1044,1048986000,6),(1044,1067130000,7),(1044,1080435600,6),(1044,1099184400,7),(1044,1111885200,6),(1044,1130634000,7),(1044,1143334800,6),(1044,1162083600,7),(1044,1174784400,6),(1044,1193533200,7),(1044,1206838800,6),(1044,1224982800,7),(1044,1238288400,6),(1044,1256432400,7),(1044,1269738000,6),(1044,1288486800,7),(1044,1301187600,6),(1044,1319936400,7),(1044,1332637200,6),(1044,1351386000,7),(1044,1364691600,6),(1044,1382835600,7),(1044,1396141200,6),(1044,1414285200,7),(1044,1427590800,6),(1044,1445734800,7),(1044,1459040400,6),(1044,1477789200,7),(1044,1490490000,6),(1044,1509238800,7),(1044,1521939600,6),(1044,1540688400,7),(1044,1553994000,6),(1044,1572138000,7),(1044,1585443600,6),(1044,1603587600,7),(1044,1616893200,6),(1044,1635642000,7),(1044,1648342800,6),(1044,1667091600,7),(1044,1679792400,6),(1044,1698541200,7),(1044,1711846800,6),(1044,1729990800,7),(1044,1743296400,6),(1044,1761440400,7),(1044,1774746000,6),(1044,1792890000,7),(1044,1806195600,6),(1044,1824944400,7),(1044,1837645200,6),(1044,1856394000,7),(1044,1869094800,6),(1044,1887843600,7),(1044,1901149200,6),(1044,1919293200,7),(1044,1932598800,6),(1044,1950742800,7),(1044,1964048400,6),(1044,1982797200,7),(1044,1995498000,6),(1044,2014246800,7),(1044,2026947600,6),(1044,2045696400,7),(1044,2058397200,6),(1044,2077146000,7),(1044,2090451600,6),(1044,2108595600,7),(1044,2121901200,6),(1044,2140045200,7),(1045,-2147483648,2),(1045,-1693706400,1),(1045,-1680483600,2),(1045,-1663455600,3),(1045,-1650150000,4),(1045,-1640998800,2),(1045,-1632006000,1),(1045,-1618700400,2),(1045,-1600470000,1),(1045,-1587250800,2),(1045,-1569711600,1),(1045,-1555196400,2),(1045,-906775200,1),(1045,-857257200,4),(1045,-844556400,3),(1045,-828226800,4),(1045,-812502000,3),(1045,-796777200,4),(1045,-788922000,2),(1045,-778471200,1),(1045,-762656400,2),(1045,-749689200,3),(1045,-733276800,2),(1045,-717634800,3),(1045,-701910000,4),(1045,-686185200,3),(1045,-670460400,4),(1045,-654130800,3),(1045,-639010800,4),(1045,-492656400,1),(1045,-481168800,2),(1045,-461199600,1),(1045,-449708400,2),(1045,-428540400,1),(1045,-418258800,2),(1045,-397090800,1),(1045,-386809200,2),(1045,323823600,1),(1045,338943600,2),(1045,354668400,1),(1045,370393200,2),(1045,386118000,1),(1045,401842800,2),(1045,417567600,1),(1045,433292400,2),(1045,449024400,5),(1045,465354000,6),(1045,481078800,5),(1045,496803600,6),(1045,512528400,5),(1045,528253200,6),(1045,543978000,5),(1045,559702800,6),(1045,575427600,5),(1045,591152400,6),(1045,606877200,5),(1045,622602000,6),(1045,638326800,5),(1045,654656400,6),(1045,670381200,5),(1045,686106000,6),(1045,701830800,5),(1045,717555600,6),(1045,733280400,5),(1045,749005200,6),(1045,764730000,5),(1045,780454800,6),(1045,796179600,5),(1045,811904400,6),(1045,828234000,5),(1045,846378000,6),(1045,859683600,5),(1045,877827600,6),(1045,891133200,5),(1045,909277200,6),(1045,922582800,5),(1045,941331600,6),(1045,954032400,5),(1045,972781200,6),(1045,985482000,5),(1045,1004230800,6),(1045,1017536400,5),(1045,1035680400,6),(1045,1048986000,5),(1045,1067130000,6),(1045,1080435600,5),(1045,1099184400,6),(1045,1111885200,5),(1045,1130634000,6),(1045,1143334800,5),(1045,1162083600,6),(1045,1174784400,5),(1045,1193533200,6),(1045,1206838800,5),(1045,1224982800,6),(1045,1238288400,5),(1045,1256432400,6),(1045,1269738000,5),(1045,1288486800,6),(1045,1301187600,5),(1045,1319936400,6),(1045,1332637200,5),(1045,1351386000,6),(1045,1364691600,5),(1045,1382835600,6),(1045,1396141200,5),(1045,1414285200,6),(1045,1427590800,5),(1045,1445734800,6),(1045,1459040400,5),(1045,1477789200,6),(1045,1490490000,5),(1045,1509238800,6),(1045,1521939600,5),(1045,1540688400,6),(1045,1553994000,5),(1045,1572138000,6),(1045,1585443600,5),(1045,1603587600,6),(1045,1616893200,5),(1045,1635642000,6),(1045,1648342800,5),(1045,1667091600,6),(1045,1679792400,5),(1045,1698541200,6),(1045,1711846800,5),(1045,1729990800,6),(1045,1743296400,5),(1045,1761440400,6),(1045,1774746000,5),(1045,1792890000,6),(1045,1806195600,5),(1045,1824944400,6),(1045,1837645200,5),(1045,1856394000,6),(1045,1869094800,5),(1045,1887843600,6),(1045,1901149200,5),(1045,1919293200,6),(1045,1932598800,5),(1045,1950742800,6),(1045,1964048400,5),(1045,1982797200,6),(1045,1995498000,5),(1045,2014246800,6),(1045,2026947600,5),(1045,2045696400,6),(1045,2058397200,5),(1045,2077146000,6),(1045,2090451600,5),(1045,2108595600,6),(1045,2121901200,5),(1045,2140045200,6),(1046,-2147483648,2),(1046,-904435200,1),(1046,-891129600,2),(1046,-872985600,1),(1046,-859680000,2),(1046,354675600,3),(1046,370400400,4),(1046,386125200,3),(1046,401850000,4),(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,-2147483648,1),(1047,-1637114100,2),(1047,-1213148664,5),(1047,-1187056800,3),(1047,-1175479200,4),(1047,-1159754400,3),(1047,-1144029600,4),(1047,-1127700000,3),(1047,-1111975200,4),(1047,-1096250400,3),(1047,-1080525600,4),(1047,-1064800800,3),(1047,-1049076000,4),(1047,-1033351200,3),(1047,-1017626400,4),(1047,-1001901600,3),(1047,-986176800,4),(1047,-970452000,3),(1047,-954727200,4),(1047,-927165600,6),(1047,-898138800,9),(1047,-857257200,7),(1047,-844556400,8),(1047,-828226800,7),(1047,-812502000,8),(1047,-800157600,11),(1047,354920400,10),(1047,370728000,11),(1047,386456400,10),(1047,402264000,11),(1047,417992400,10),(1047,433800000,11),(1047,449614800,10),(1047,465346800,12),(1047,481071600,13),(1047,496796400,12),(1047,512521200,13),(1047,528246000,12),(1047,543970800,13),(1047,559695600,12),(1047,575420400,13),(1047,591145200,12),(1047,606870000,13),(1047,622594800,12),(1047,638319600,13),(1047,641944800,6),(1047,654652800,4),(1047,670377600,3),(1047,686102400,4),(1047,694216800,5),(1047,701820000,6),(1047,717541200,5),(1047,733269600,6),(1047,748990800,5),(1047,764719200,6),(1047,780440400,5),(1047,796168800,6),(1047,811890000,5),(1047,828223200,6),(1047,846363600,5),(1047,859680000,6),(1047,877824000,5),(1047,891129600,6),(1047,909273600,5),(1047,922579200,6),(1047,941328000,5),(1047,954028800,6),(1047,972777600,5),(1047,985478400,6),(1047,1004227200,5),(1047,1017532800,6),(1047,1035676800,5),(1047,1048982400,6),(1047,1067126400,5),(1047,1080432000,6),(1047,1099180800,5),(1047,1111881600,6),(1047,1130630400,5),(1047,1143331200,6),(1047,1162080000,5),(1047,1174780800,6),(1047,1193529600,5),(1047,1206835200,6),(1047,1224979200,5),(1047,1238284800,6),(1047,1256428800,5),(1047,1269734400,6),(1047,1288483200,5),(1047,1301184000,6),(1047,1319932800,5),(1047,1332633600,6),(1047,1351382400,5),(1047,1364688000,6),(1047,1382832000,5),(1047,1396137600,6),(1047,1414281600,5),(1047,1427587200,6),(1047,1445731200,5),(1047,1459036800,6),(1047,1477785600,5),(1047,1490486400,6),(1047,1509235200,5),(1047,1521936000,6),(1047,1540684800,5),(1047,1553990400,6),(1047,1572134400,5),(1047,1585440000,6),(1047,1603584000,5),(1047,1616889600,6),(1047,1635638400,5),(1047,1648339200,6),(1047,1667088000,5),(1047,1679788800,6),(1047,1698537600,5),(1047,1711843200,6),(1047,1729987200,5),(1047,1743292800,6),(1047,1761436800,5),(1047,1774742400,6),(1047,1792886400,5),(1047,1806192000,6),(1047,1824940800,5),(1047,1837641600,6),(1047,1856390400,5),(1047,1869091200,6),(1047,1887840000,5),(1047,1901145600,6),(1047,1919289600,5),(1047,1932595200,6),(1047,1950739200,5),(1047,1964044800,6),(1047,1982793600,5),(1047,1995494400,6),(1047,2014243200,5),(1047,2026944000,6),(1047,2045692800,5),(1047,2058393600,6),(1047,2077142400,5),(1047,2090448000,6),(1047,2108592000,5),(1047,2121897600,6),(1047,2140041600,5),(1048,-2147483648,2),(1048,-1692496800,1),(1048,-1680490800,2),(1048,-935110800,1),(1048,-857257200,3),(1048,-844556400,4),(1048,-828226800,3),(1048,-812502000,4),(1048,-796777200,3),(1048,-781052400,4),(1048,-769388400,3),(1048,-747010800,4),(1048,-736383600,3),(1048,-715215600,4),(1048,-706748400,3),(1048,-683161200,4),(1048,-675298800,3),(1048,315529200,2),(1048,323830800,5),(1048,338950800,6),(1048,354675600,5),(1048,370400400,6),(1048,386125200,5),(1048,401850000,6),(1048,417574800,5),(1048,433299600,6),(1048,449024400,5),(1048,465354000,6),(1048,481078800,5),(1048,496803600,6),(1048,512528400,5),(1048,528253200,6),(1048,543978000,5),(1048,559702800,6),(1048,575427600,5),(1048,591152400,6),(1048,606877200,5),(1048,622602000,6),(1048,638326800,5),(1048,654656400,6),(1048,670381200,5),(1048,686106000,6),(1048,701830800,5),(1048,717555600,6),(1048,733280400,5),(1048,749005200,6),(1048,764730000,5),(1048,780454800,6),(1048,796179600,5),(1048,811904400,6),(1048,828234000,5),(1048,846378000,6),(1048,859683600,5),(1048,877827600,6),(1048,891133200,5),(1048,909277200,6),(1048,922582800,5),(1048,941331600,6),(1048,954032400,5),(1048,972781200,6),(1048,985482000,5),(1048,1004230800,6),(1048,1017536400,5),(1048,1035680400,6),(1048,1048986000,5),(1048,1067130000,6),(1048,1080435600,5),(1048,1099184400,6),(1048,1111885200,5),(1048,1130634000,6),(1048,1143334800,5),(1048,1162083600,6),(1048,1174784400,5),(1048,1193533200,6),(1048,1206838800,5),(1048,1224982800,6),(1048,1238288400,5),(1048,1256432400,6),(1048,1269738000,5),(1048,1288486800,6),(1048,1301187600,5),(1048,1319936400,6),(1048,1332637200,5),(1048,1351386000,6),(1048,1364691600,5),(1048,1382835600,6),(1048,1396141200,5),(1048,1414285200,6),(1048,1427590800,5),(1048,1445734800,6),(1048,1459040400,5),(1048,1477789200,6),(1048,1490490000,5),(1048,1509238800,6),(1048,1521939600,5),(1048,1540688400,6),(1048,1553994000,5),(1048,1572138000,6),(1048,1585443600,5),(1048,1603587600,6),(1048,1616893200,5),(1048,1635642000,6),(1048,1648342800,5),(1048,1667091600,6),(1048,1679792400,5),(1048,1698541200,6),(1048,1711846800,5),(1048,1729990800,6),(1048,1743296400,5),(1048,1761440400,6),(1048,1774746000,5),(1048,1792890000,6),(1048,1806195600,5),(1048,1824944400,6),(1048,1837645200,5),(1048,1856394000,6),(1048,1869094800,5),(1048,1887843600,6),(1048,1901149200,5),(1048,1919293200,6),(1048,1932598800,5),(1048,1950742800,6),(1048,1964048400,5),(1048,1982797200,6),(1048,1995498000,5),(1048,2014246800,6),(1048,2026947600,5),(1048,2045696400,6),(1048,2058397200,5),(1048,2077146000,6),(1048,2090451600,5),(1048,2108595600,6),(1048,2121901200,5),(1048,2140045200,6),(1049,-2147483648,1),(1049,-1691962479,2),(1049,-1680471279,4),(1049,-1664143200,3),(1049,-1650146400,4),(1049,-1633903200,3),(1049,-1617487200,4),(1049,-1601848800,3),(1049,-1586037600,4),(1049,-1570399200,3),(1049,-1552168800,4),(1049,-1538344800,3),(1049,-1522533600,4),(1049,-1517011200,6),(1049,-1507500000,5),(1049,-1490565600,4),(1049,-1473631200,5),(1049,-1460930400,4),(1049,-1442786400,5),(1049,-1428876000,4),(1049,-1410732000,5),(1049,-1396216800,4),(1049,-1379282400,5),(1049,-1364767200,4),(1049,-1348437600,5),(1049,-1333317600,4),(1049,-1315778400,5),(1049,-1301263200,4),(1049,-1284328800,5),(1049,-1269813600,4),(1049,-1253484000,5),(1049,-1238364000,4),(1049,-1221429600,5),(1049,-1206914400,4),(1049,-1189980000,5),(1049,-1175464800,4),(1049,-1159135200,5),(1049,-1143410400,4),(1049,-1126476000,5),(1049,-1111960800,4),(1049,-1095631200,5),(1049,-1080511200,4),(1049,-1063576800,5),(1049,-1049061600,4),(1049,-1032127200,5),(1049,-1017612000,4),(1049,-1001282400,5),(1049,-986162400,4),(1049,-969228000,5),(1049,-950479200,4),(1049,-942012000,5),(1049,-733356000,4),(1049,-719445600,5),(1049,-699487200,4),(1049,-684972000,5),(1049,-668037600,4),(1049,-654732000,5),(1049,-636588000,4),(1049,-622072800,5),(1049,-605743200,4),(1049,-590623200,5),(1049,-574293600,4),(1049,-558568800,5),(1049,-542239200,4),(1049,-527119200,5),(1049,-512604000,4),(1049,-496274400,5),(1049,-481154400,4),(1049,-464220000,5),(1049,-449704800,4),(1049,-432165600,5),(1049,-417650400,4),(1049,-401320800,5),(1049,-386200800,4),(1049,-369266400,5),(1049,-354751200,4),(1049,-337816800,5),(1049,-323301600,4),(1049,-306972000,5),(1049,-291852000,4),(1049,-276732000,5),(1049,-257983200,4),(1049,-245282400,5),(1049,-226533600,4),(1049,-213228000,5),(1049,-195084000,4),(1049,-182383200,5),(1049,-163634400,4),(1049,-150933600,5),(1049,-132184800,4),(1049,-119484000,5),(1049,-100735200,4),(1049,-88034400,5),(1049,-68680800,4),(1049,-59004000,5),(1049,-37242000,9),(1049,57722400,7),(1049,69818400,8),(1049,89172000,7),(1049,101268000,8),(1049,120621600,7),(1049,132717600,8),(1049,152071200,7),(1049,164167200,8),(1049,183520800,7),(1049,196221600,8),(1049,214970400,7),(1049,227671200,8),(1049,246420000,7),(1049,259120800,8),(1049,278474400,7),(1049,290570400,8),(1049,309924000,7),(1049,322020000,8),(1049,341373600,7),(1049,354675600,8),(1049,372819600,7),(1049,386125200,8),(1049,404269200,7),(1049,417574800,8),(1049,435718800,7),(1049,449024400,8),(1049,467773200,7),(1049,481078800,8),(1049,499222800,7),(1049,512528400,8),(1049,530672400,7),(1049,543978000,8),(1049,562122000,7),(1049,575427600,8),(1049,593571600,7),(1049,606877200,8),(1049,625626000,7),(1049,638326800,8),(1049,657075600,7),(1049,670381200,8),(1049,688525200,7),(1049,701830800,8),(1049,719974800,7),(1049,733280400,8),(1049,751424400,7),(1049,764730000,8),(1049,782874000,7),(1049,796179600,8),(1049,814323600,7),(1049,828234000,8),(1049,846378000,7),(1049,859683600,8),(1049,877827600,7),(1049,891133200,8),(1049,909277200,7),(1049,922582800,8),(1049,941331600,7),(1049,954032400,8),(1049,972781200,7),(1049,985482000,8),(1049,1004230800,7),(1049,1017536400,8),(1049,1035680400,7),(1049,1048986000,8),(1049,1067130000,7),(1049,1080435600,8),(1049,1099184400,7),(1049,1111885200,8),(1049,1130634000,7),(1049,1143334800,8),(1049,1162083600,7),(1049,1174784400,8),(1049,1193533200,7),(1049,1206838800,8),(1049,1224982800,7),(1049,1238288400,8),(1049,1256432400,7),(1049,1269738000,8),(1049,1288486800,7),(1049,1301187600,8),(1049,1319936400,7),(1049,1332637200,8),(1049,1351386000,7),(1049,1364691600,8),(1049,1382835600,7),(1049,1396141200,8),(1049,1414285200,7),(1049,1427590800,8),(1049,1445734800,7),(1049,1459040400,8),(1049,1477789200,7),(1049,1490490000,8),(1049,1509238800,7),(1049,1521939600,8),(1049,1540688400,7),(1049,1553994000,8),(1049,1572138000,7),(1049,1585443600,8),(1049,1603587600,7),(1049,1616893200,8),(1049,1635642000,7),(1049,1648342800,8),(1049,1667091600,7),(1049,1679792400,8),(1049,1698541200,7),(1049,1711846800,8),(1049,1729990800,7),(1049,1743296400,8),(1049,1761440400,7),(1049,1774746000,8),(1049,1792890000,7),(1049,1806195600,8),(1049,1824944400,7),(1049,1837645200,8),(1049,1856394000,7),(1049,1869094800,8),(1049,1887843600,7),(1049,1901149200,8),(1049,1919293200,7),(1049,1932598800,8),(1049,1950742800,7),(1049,1964048400,8),(1049,1982797200,7),(1049,1995498000,8),(1049,2014246800,7),(1049,2026947600,8),(1049,2045696400,7),(1049,2058397200,8),(1049,2077146000,7),(1049,2090451600,8),(1049,2108595600,7),(1049,2121901200,8),(1049,2140045200,7),(1050,-2147483648,2),(1050,-1691964000,1),(1050,-1680472800,2),(1050,-1664143200,1),(1050,-1650146400,2),(1050,-1633903200,1),(1050,-1617487200,2),(1050,-1601848800,1),(1050,-1586037600,2),(1050,-1570399200,1),(1050,-1552168800,2),(1050,-1538344800,1),(1050,-1522533600,2),(1050,-1507500000,1),(1050,-1490565600,2),(1050,-1473631200,1),(1050,-1460930400,2),(1050,-1442786400,1),(1050,-1428876000,2),(1050,-1410732000,1),(1050,-1396216800,2),(1050,-1379282400,1),(1050,-1364767200,2),(1050,-1348437600,1),(1050,-1333317600,2),(1050,-1315778400,1),(1050,-1301263200,2),(1050,-1284328800,1),(1050,-1269813600,2),(1050,-1253484000,1),(1050,-1238364000,2),(1050,-1221429600,1),(1050,-1206914400,2),(1050,-1189980000,1),(1050,-1175464800,2),(1050,-1159135200,1),(1050,-1143410400,2),(1050,-1126476000,1),(1050,-1111960800,2),(1050,-1095631200,1),(1050,-1080511200,2),(1050,-1063576800,1),(1050,-1049061600,2),(1050,-1032127200,1),(1050,-1017612000,2),(1050,-1001282400,1),(1050,-986162400,2),(1050,-969228000,1),(1050,-950479200,2),(1050,-942012000,1),(1050,-904518000,3),(1050,-896050800,1),(1050,-875487600,3),(1050,-864601200,1),(1050,-844038000,3),(1050,-832546800,1),(1050,-812588400,3),(1050,-798073200,1),(1050,-781052400,3),(1050,-772066800,1),(1050,-764805600,2),(1050,-748476000,1),(1050,-733356000,2),(1050,-719445600,1),(1050,-717030000,3),(1050,-706748400,1),(1050,-699487200,2),(1050,-687996000,1),(1050,-668037600,2),(1050,-654732000,1),(1050,-636588000,2),(1050,-622072800,1),(1050,-605743200,2),(1050,-590623200,1),(1050,-574293600,2),(1050,-558568800,1),(1050,-542239200,2),(1050,-527119200,1),(1050,-512604000,2),(1050,-496274400,1),(1050,-481154400,2),(1050,-464220000,1),(1050,-449704800,2),(1050,-432165600,1),(1050,-417650400,2),(1050,-401320800,4),(1050,386125200,5),(1050,401850000,6),(1050,417574800,5),(1050,433299600,6),(1050,449024400,5),(1050,465354000,6),(1050,481078800,5),(1050,496803600,6),(1050,512528400,5),(1050,528253200,6),(1050,543978000,5),(1050,559702800,6),(1050,575427600,5),(1050,591152400,6),(1050,606877200,5),(1050,622602000,6),(1050,638326800,5),(1050,654656400,6),(1050,670381200,5),(1050,686106000,6),(1050,701830800,5),(1050,717555600,6),(1050,733280400,5),(1050,749005200,6),(1050,764730000,5),(1050,780454800,6),(1050,796179600,5),(1050,811904400,6),(1050,828234000,5),(1050,846378000,6),(1050,859683600,5),(1050,877827600,6),(1050,891133200,5),(1050,909277200,6),(1050,922582800,5),(1050,941331600,6),(1050,954032400,5),(1050,972781200,6),(1050,985482000,5),(1050,1004230800,6),(1050,1017536400,5),(1050,1035680400,6),(1050,1048986000,5),(1050,1067130000,6),(1050,1080435600,5),(1050,1099184400,6),(1050,1111885200,5),(1050,1130634000,6),(1050,1143334800,5),(1050,1162083600,6),(1050,1174784400,5),(1050,1193533200,6),(1050,1206838800,5),(1050,1224982800,6),(1050,1238288400,5),(1050,1256432400,6),(1050,1269738000,5),(1050,1288486800,6),(1050,1301187600,5),(1050,1319936400,6),(1050,1332637200,5),(1050,1351386000,6),(1050,1364691600,5),(1050,1382835600,6),(1050,1396141200,5),(1050,1414285200,6),(1050,1427590800,5),(1050,1445734800,6),(1050,1459040400,5),(1050,1477789200,6),(1050,1490490000,5),(1050,1509238800,6),(1050,1521939600,5),(1050,1540688400,6),(1050,1553994000,5),(1050,1572138000,6),(1050,1585443600,5),(1050,1603587600,6),(1050,1616893200,5),(1050,1635642000,6),(1050,1648342800,5),(1050,1667091600,6),(1050,1679792400,5),(1050,1698541200,6),(1050,1711846800,5),(1050,1729990800,6),(1050,1743296400,5),(1050,1761440400,6),(1050,1774746000,5),(1050,1792890000,6),(1050,1806195600,5),(1050,1824944400,6),(1050,1837645200,5),(1050,1856394000,6),(1050,1869094800,5),(1050,1887843600,6),(1050,1901149200,5),(1050,1919293200,6),(1050,1932598800,5),(1050,1950742800,6),(1050,1964048400,5),(1050,1982797200,6),(1050,1995498000,5),(1050,2014246800,6),(1050,2026947600,5),(1050,2045696400,6),(1050,2058397200,5),(1050,2077146000,6),(1050,2090451600,5),(1050,2108595600,6),(1050,2121901200,5),(1050,2140045200,6),(1051,-2147483648,2),(1051,-1691964000,1),(1051,-1680472800,2),(1051,-1664143200,1),(1051,-1650146400,2),(1051,-1633903200,1),(1051,-1617487200,2),(1051,-1601848800,1),(1051,-1586037600,2),(1051,-1570399200,1),(1051,-1552168800,2),(1051,-1538344800,1),(1051,-1522533600,2),(1051,-1507500000,1),(1051,-1490565600,2),(1051,-1473631200,1),(1051,-1460930400,2),(1051,-1442786400,1),(1051,-1428876000,2),(1051,-1410732000,1),(1051,-1396216800,2),(1051,-1379282400,1),(1051,-1364767200,2),(1051,-1348437600,1),(1051,-1333317600,2),(1051,-1315778400,1),(1051,-1301263200,2),(1051,-1284328800,1),(1051,-1269813600,2),(1051,-1253484000,1),(1051,-1238364000,2),(1051,-1221429600,1),(1051,-1206914400,2),(1051,-1189980000,1),(1051,-1175464800,2),(1051,-1159135200,1),(1051,-1143410400,2),(1051,-1126476000,1),(1051,-1111960800,2),(1051,-1095631200,1),(1051,-1080511200,2),(1051,-1063576800,1),(1051,-1049061600,2),(1051,-1032127200,1),(1051,-1017612000,2),(1051,-1001282400,1),(1051,-986162400,2),(1051,-969228000,1),(1051,-950479200,2),(1051,-942012000,1),(1051,-904518000,3),(1051,-896050800,1),(1051,-875487600,3),(1051,-864601200,1),(1051,-844038000,3),(1051,-832546800,1),(1051,-812588400,3),(1051,-798073200,1),(1051,-781052400,3),(1051,-772066800,1),(1051,-764805600,2),(1051,-748476000,1),(1051,-733356000,2),(1051,-719445600,1),(1051,-717030000,3),(1051,-706748400,1),(1051,-699487200,2),(1051,-687996000,1),(1051,-668037600,2),(1051,-654732000,1),(1051,-636588000,2),(1051,-622072800,1),(1051,-605743200,2),(1051,-590623200,1),(1051,-574293600,2),(1051,-558568800,1),(1051,-542239200,2),(1051,-527119200,1),(1051,-512604000,2),(1051,-496274400,1),(1051,-481154400,2),(1051,-464220000,1),(1051,-449704800,2),(1051,-432165600,1),(1051,-417650400,2),(1051,-401320800,1),(1051,-386200800,2),(1051,-369266400,1),(1051,-354751200,2),(1051,-337816800,1),(1051,-323301600,2),(1051,-306972000,1),(1051,-291852000,2),(1051,-276732000,1),(1051,-257983200,2),(1051,-245282400,1),(1051,-226533600,2),(1051,-213228000,1),(1051,-195084000,2),(1051,-182383200,1),(1051,-163634400,2),(1051,-150933600,1),(1051,-132184800,2),(1051,-119484000,1),(1051,-100735200,2),(1051,-88034400,1),(1051,-68680800,2),(1051,-59004000,1),(1051,-37242000,4),(1051,57722400,6),(1051,69818400,1),(1051,89172000,2),(1051,101268000,1),(1051,120621600,2),(1051,132717600,1),(1051,152071200,2),(1051,164167200,1),(1051,183520800,2),(1051,196221600,1),(1051,214970400,2),(1051,227671200,1),(1051,246420000,2),(1051,259120800,1),(1051,278474400,2),(1051,290570400,1),(1051,309924000,2),(1051,322020000,1),(1051,341373600,2),(1051,354675600,5),(1051,372819600,6),(1051,386125200,5),(1051,404269200,6),(1051,417574800,5),(1051,435718800,6),(1051,449024400,5),(1051,467773200,6),(1051,481078800,5),(1051,499222800,6),(1051,512528400,5),(1051,530672400,6),(1051,543978000,5),(1051,562122000,6),(1051,575427600,5),(1051,593571600,6),(1051,606877200,5),(1051,625626000,6),(1051,638326800,5),(1051,657075600,6),(1051,670381200,5),(1051,688525200,6),(1051,701830800,5),(1051,719974800,6),(1051,733280400,5),(1051,751424400,6),(1051,764730000,5),(1051,782874000,6),(1051,796179600,5),(1051,814323600,6),(1051,820454400,7),(1051,828234000,5),(1051,846378000,6),(1051,859683600,5),(1051,877827600,6),(1051,891133200,5),(1051,909277200,6),(1051,922582800,5),(1051,941331600,6),(1051,954032400,5),(1051,972781200,6),(1051,985482000,5),(1051,1004230800,6),(1051,1017536400,5),(1051,1035680400,6),(1051,1048986000,5),(1051,1067130000,6),(1051,1080435600,5),(1051,1099184400,6),(1051,1111885200,5),(1051,1130634000,6),(1051,1143334800,5),(1051,1162083600,6),(1051,1174784400,5),(1051,1193533200,6),(1051,1206838800,5),(1051,1224982800,6),(1051,1238288400,5),(1051,1256432400,6),(1051,1269738000,5),(1051,1288486800,6),(1051,1301187600,5),(1051,1319936400,6),(1051,1332637200,5),(1051,1351386000,6),(1051,1364691600,5),(1051,1382835600,6),(1051,1396141200,5),(1051,1414285200,6),(1051,1427590800,5),(1051,1445734800,6),(1051,1459040400,5),(1051,1477789200,6),(1051,1490490000,5),(1051,1509238800,6),(1051,1521939600,5),(1051,1540688400,6),(1051,1553994000,5),(1051,1572138000,6),(1051,1585443600,5),(1051,1603587600,6),(1051,1616893200,5),(1051,1635642000,6),(1051,1648342800,5),(1051,1667091600,6),(1051,1679792400,5),(1051,1698541200,6),(1051,1711846800,5),(1051,1729990800,6),(1051,1743296400,5),(1051,1761440400,6),(1051,1774746000,5),(1051,1792890000,6),(1051,1806195600,5),(1051,1824944400,6),(1051,1837645200,5),(1051,1856394000,6),(1051,1869094800,5),(1051,1887843600,6),(1051,1901149200,5),(1051,1919293200,6),(1051,1932598800,5),(1051,1950742800,6),(1051,1964048400,5),(1051,1982797200,6),(1051,1995498000,5),(1051,2014246800,6),(1051,2026947600,5),(1051,2045696400,6),(1051,2058397200,5),(1051,2077146000,6),(1051,2090451600,5),(1051,2108595600,6),(1051,2121901200,5),(1051,2140045200,6),(1052,-2147483648,1),(1052,-1535938789,3),(1052,-875671200,2),(1052,-859773600,3),(1052,354672000,2),(1052,370396800,3),(1052,386121600,2),(1052,401846400,3),(1052,417574800,4),(1052,433299600,5),(1052,449024400,4),(1052,465354000,5),(1052,481078800,4),(1052,496803600,5),(1052,512528400,4),(1052,528253200,5),(1052,543978000,4),(1052,559702800,5),(1052,575427600,4),(1052,591152400,5),(1052,606877200,4),(1052,622602000,5),(1052,638326800,4),(1052,654656400,5),(1052,670381200,4),(1052,686106000,5),(1052,701830800,4),(1052,717555600,5),(1052,733280400,4),(1052,749005200,5),(1052,764730000,4),(1052,780454800,5),(1052,796179600,4),(1052,811904400,5),(1052,828234000,4),(1052,846378000,5),(1052,859683600,4),(1052,877827600,5),(1052,891133200,4),(1052,909277200,5),(1052,922582800,4),(1052,941331600,5),(1052,954032400,4),(1052,972781200,5),(1052,985482000,4),(1052,1004230800,5),(1052,1017536400,4),(1052,1035680400,5),(1052,1048986000,4),(1052,1067130000,5),(1052,1080435600,4),(1052,1099184400,5),(1052,1111885200,4),(1052,1130634000,5),(1052,1143334800,4),(1052,1162083600,5),(1052,1174784400,4),(1052,1193533200,5),(1052,1206838800,4),(1052,1224982800,5),(1052,1238288400,4),(1052,1256432400,5),(1052,1269738000,4),(1052,1288486800,5),(1052,1301187600,4),(1052,1319936400,5),(1052,1332637200,4),(1052,1351386000,5),(1052,1364691600,4),(1052,1382835600,5),(1052,1396141200,4),(1052,1414285200,5),(1052,1427590800,4),(1052,1445734800,5),(1052,1459040400,4),(1052,1477789200,5),(1052,1490490000,4),(1052,1509238800,5),(1052,1521939600,4),(1052,1540688400,5),(1052,1553994000,4),(1052,1572138000,5),(1052,1585443600,4),(1052,1603587600,5),(1052,1616893200,4),(1052,1635642000,5),(1052,1648342800,4),(1052,1667091600,5),(1052,1679792400,4),(1052,1698541200,5),(1052,1711846800,4),(1052,1729990800,5),(1052,1743296400,4),(1052,1761440400,5),(1052,1774746000,4),(1052,1792890000,5),(1052,1806195600,4),(1052,1824944400,5),(1052,1837645200,4),(1052,1856394000,5),(1052,1869094800,4),(1052,1887843600,5),(1052,1901149200,4),(1052,1919293200,5),(1052,1932598800,4),(1052,1950742800,5),(1052,1964048400,4),(1052,1982797200,5),(1052,1995498000,4),(1052,2014246800,5),(1052,2026947600,4),(1052,2045696400,5),(1052,2058397200,4),(1052,2077146000,5),(1052,2090451600,4),(1052,2108595600,5),(1052,2121901200,4),(1052,2140045200,5),(1053,-2147483648,2),(1053,-1691964000,1),(1053,-1680472800,2),(1053,-1664143200,1),(1053,-1650146400,2),(1053,-1633903200,1),(1053,-1617487200,2),(1053,-1601848800,1),(1053,-1586037600,2),(1053,-1570399200,1),(1053,-1552168800,2),(1053,-1538344800,1),(1053,-1522533600,2),(1053,-1507500000,1),(1053,-1490565600,2),(1053,-1473631200,1),(1053,-1460930400,2),(1053,-1442786400,1),(1053,-1428876000,2),(1053,-1410732000,1),(1053,-1396216800,2),(1053,-1379282400,1),(1053,-1364767200,2),(1053,-1348437600,1),(1053,-1333317600,2),(1053,-1315778400,1),(1053,-1301263200,2),(1053,-1284328800,1),(1053,-1269813600,2),(1053,-1253484000,1),(1053,-1238364000,2),(1053,-1221429600,1),(1053,-1206914400,2),(1053,-1189980000,1),(1053,-1175464800,2),(1053,-1159135200,1),(1053,-1143410400,2),(1053,-1126476000,1),(1053,-1111960800,2),(1053,-1095631200,1),(1053,-1080511200,2),(1053,-1063576800,1),(1053,-1049061600,2),(1053,-1032127200,1),(1053,-1017612000,2),(1053,-1001282400,1),(1053,-986162400,2),(1053,-969228000,1),(1053,-950479200,2),(1053,-942012000,1),(1053,-904518000,3),(1053,-896050800,1),(1053,-875487600,3),(1053,-864601200,1),(1053,-844038000,3),(1053,-832546800,1),(1053,-812588400,3),(1053,-798073200,1),(1053,-781052400,3),(1053,-772066800,1),(1053,-764805600,2),(1053,-748476000,1),(1053,-733356000,2),(1053,-719445600,1),(1053,-717030000,3),(1053,-706748400,1),(1053,-699487200,2),(1053,-687996000,1),(1053,-668037600,2),(1053,-654732000,1),(1053,-636588000,2),(1053,-622072800,1),(1053,-605743200,2),(1053,-590623200,1),(1053,-574293600,2),(1053,-558568800,1),(1053,-542239200,2),(1053,-527119200,1),(1053,-512604000,2),(1053,-496274400,1),(1053,-481154400,2),(1053,-464220000,1),(1053,-449704800,2),(1053,-432165600,1),(1053,-417650400,2),(1053,-401320800,1),(1053,-386200800,2),(1053,-369266400,1),(1053,-354751200,2),(1053,-337816800,1),(1053,-323301600,2),(1053,-306972000,1),(1053,-291852000,2),(1053,-276732000,1),(1053,-257983200,2),(1053,-245282400,1),(1053,-226533600,2),(1053,-213228000,1),(1053,-195084000,2),(1053,-182383200,1),(1053,-163634400,2),(1053,-150933600,1),(1053,-132184800,2),(1053,-119484000,1),(1053,-100735200,2),(1053,-88034400,1),(1053,-68680800,2),(1053,-59004000,1),(1053,-37242000,4),(1053,57722400,6),(1053,69818400,1),(1053,89172000,2),(1053,101268000,1),(1053,120621600,2),(1053,132717600,1),(1053,152071200,2),(1053,164167200,1),(1053,183520800,2),(1053,196221600,1),(1053,214970400,2),(1053,227671200,1),(1053,246420000,2),(1053,259120800,1),(1053,278474400,2),(1053,290570400,1),(1053,309924000,2),(1053,322020000,1),(1053,341373600,2),(1053,354675600,5),(1053,372819600,6),(1053,386125200,5),(1053,404269200,6),(1053,417574800,5),(1053,435718800,6),(1053,449024400,5),(1053,467773200,6),(1053,481078800,5),(1053,499222800,6),(1053,512528400,5),(1053,530672400,6),(1053,543978000,5),(1053,562122000,6),(1053,575427600,5),(1053,593571600,6),(1053,606877200,5),(1053,625626000,6),(1053,638326800,5),(1053,657075600,6),(1053,670381200,5),(1053,688525200,6),(1053,701830800,5),(1053,719974800,6),(1053,733280400,5),(1053,751424400,6),(1053,764730000,5),(1053,782874000,6),(1053,796179600,5),(1053,814323600,6),(1053,820454400,7),(1053,828234000,5),(1053,846378000,6),(1053,859683600,5),(1053,877827600,6),(1053,891133200,5),(1053,909277200,6),(1053,922582800,5),(1053,941331600,6),(1053,954032400,5),(1053,972781200,6),(1053,985482000,5),(1053,1004230800,6),(1053,1017536400,5),(1053,1035680400,6),(1053,1048986000,5),(1053,1067130000,6),(1053,1080435600,5),(1053,1099184400,6),(1053,1111885200,5),(1053,1130634000,6),(1053,1143334800,5),(1053,1162083600,6),(1053,1174784400,5),(1053,1193533200,6),(1053,1206838800,5),(1053,1224982800,6),(1053,1238288400,5),(1053,1256432400,6),(1053,1269738000,5),(1053,1288486800,6),(1053,1301187600,5),(1053,1319936400,6),(1053,1332637200,5),(1053,1351386000,6),(1053,1364691600,5),(1053,1382835600,6),(1053,1396141200,5),(1053,1414285200,6),(1053,1427590800,5),(1053,1445734800,6),(1053,1459040400,5),(1053,1477789200,6),(1053,1490490000,5),(1053,1509238800,6),(1053,1521939600,5),(1053,1540688400,6),(1053,1553994000,5),(1053,1572138000,6),(1053,1585443600,5),(1053,1603587600,6),(1053,1616893200,5),(1053,1635642000,6),(1053,1648342800,5),(1053,1667091600,6),(1053,1679792400,5),(1053,1698541200,6),(1053,1711846800,5),(1053,1729990800,6),(1053,1743296400,5),(1053,1761440400,6),(1053,1774746000,5),(1053,1792890000,6),(1053,1806195600,5),(1053,1824944400,6),(1053,1837645200,5),(1053,1856394000,6),(1053,1869094800,5),(1053,1887843600,6),(1053,1901149200,5),(1053,1919293200,6),(1053,1932598800,5),(1053,1950742800,6),(1053,1964048400,5),(1053,1982797200,6),(1053,1995498000,5),(1053,2014246800,6),(1053,2026947600,5),(1053,2045696400,6),(1053,2058397200,5),(1053,2077146000,6),(1053,2090451600,5),(1053,2108595600,6),(1053,2121901200,5),(1053,2140045200,6),(1054,-2147483648,1),(1054,-1869875816,3),(1054,-1693706400,2),(1054,-1680490800,3),(1054,-1570413600,2),(1054,-1552186800,3),(1054,-1538359200,2),(1054,-1522551600,3),(1054,-1507514400,2),(1054,-1490583600,3),(1054,-1440208800,2),(1054,-1428030000,3),(1054,-1409709600,2),(1054,-1396494000,3),(1054,-931053600,2),(1054,-922676400,3),(1054,-917834400,2),(1054,-892436400,3),(1054,-875844000,2),(1054,-764737200,3),(1054,-744343200,2),(1054,-733806000,3),(1054,-716436000,2),(1054,-701924400,3),(1054,-684986400,2),(1054,-670474800,3),(1054,-654141600,2),(1054,-639025200,3),(1054,-622087200,2),(1054,-606970800,3),(1054,-590032800,2),(1054,-575521200,3),(1054,-235620000,2),(1054,-194842800,3),(1054,-177732000,2),(1054,-165726000,3),(1054,107910000,2),(1054,121215600,3),(1054,133920000,2),(1054,152665200,3),(1054,164678400,2),(1054,184114800,3),(1054,196214400,2),(1054,215564400,3),(1054,228873600,2),(1054,245804400,3),(1054,260323200,2),(1054,267915600,4),(1054,428454000,5),(1054,433893600,4),(1054,468111600,3),(1054,482799600,6),(1054,496710000,7),(1054,512521200,6),(1054,528246000,7),(1054,543970800,6),(1054,559695600,7),(1054,575420400,6),(1054,591145200,7),(1054,606870000,6),(1054,622594800,7),(1054,638319600,6),(1054,654649200,7),(1054,670374000,6),(1054,686098800,7),(1054,701823600,6),(1054,717548400,7),(1054,733273200,6),(1054,748998000,7),(1054,764118000,6),(1054,780447600,7),(1054,796172400,6),(1054,811897200,7),(1054,828226800,6),(1054,846370800,7),(1054,859676400,6),(1054,877820400,7),(1054,891126000,6),(1054,909270000,7),(1054,922575600,6),(1054,941324400,7),(1054,954025200,6),(1054,972774000,7),(1054,985474800,6),(1054,1004223600,7),(1054,1017529200,6),(1054,1035673200,7),(1054,1048978800,6),(1054,1067122800,7),(1054,1080428400,6),(1054,1099177200,7),(1054,1111878000,6),(1054,1130626800,7),(1054,1143327600,6),(1054,1162076400,7),(1054,1167602400,3),(1054,1174784400,8),(1054,1193533200,9),(1054,1206838800,8),(1054,1224982800,9),(1054,1238288400,8),(1054,1256432400,9),(1054,1269738000,8),(1054,1288486800,9),(1054,1301274000,8),(1054,1319936400,9),(1054,1332637200,8),(1054,1351386000,9),(1054,1364691600,8),(1054,1382835600,9),(1054,1396227600,8),(1054,1414285200,9),(1054,1427590800,8),(1054,1446944400,9),(1054,1459040400,8),(1054,1473195600,4),(1054,2147483647,4),(1055,-2147483648,2),(1055,-1691964000,1),(1055,-1680472800,2),(1055,-1664143200,1),(1055,-1650146400,2),(1055,-1633903200,1),(1055,-1617487200,2),(1055,-1601848800,1),(1055,-1586037600,2),(1055,-1570399200,1),(1055,-1552168800,2),(1055,-1538344800,1),(1055,-1522533600,2),(1055,-1507500000,1),(1055,-1490565600,2),(1055,-1473631200,1),(1055,-1460930400,2),(1055,-1442786400,1),(1055,-1428876000,2),(1055,-1410732000,1),(1055,-1396216800,2),(1055,-1379282400,1),(1055,-1364767200,2),(1055,-1348437600,1),(1055,-1333317600,2),(1055,-1315778400,1),(1055,-1301263200,2),(1055,-1284328800,1),(1055,-1269813600,2),(1055,-1253484000,1),(1055,-1238364000,2),(1055,-1221429600,1),(1055,-1206914400,2),(1055,-1189980000,1),(1055,-1175464800,2),(1055,-1159135200,1),(1055,-1143410400,2),(1055,-1126476000,1),(1055,-1111960800,2),(1055,-1095631200,1),(1055,-1080511200,2),(1055,-1063576800,1),(1055,-1049061600,2),(1055,-1032127200,1),(1055,-1017612000,2),(1055,-1001282400,1),(1055,-986162400,2),(1055,-969228000,1),(1055,-950479200,2),(1055,-942012000,1),(1055,-904518000,3),(1055,-896050800,1),(1055,-875487600,3),(1055,-864601200,1),(1055,-844038000,3),(1055,-832546800,1),(1055,-812588400,3),(1055,-798073200,1),(1055,-781052400,3),(1055,-772066800,1),(1055,-764805600,2),(1055,-748476000,1),(1055,-733356000,2),(1055,-719445600,1),(1055,-717030000,3),(1055,-706748400,1),(1055,-699487200,2),(1055,-687996000,1),(1055,-668037600,2),(1055,-654732000,1),(1055,-636588000,2),(1055,-622072800,1),(1055,-605743200,2),(1055,-590623200,1),(1055,-574293600,2),(1055,-558568800,1),(1055,-542239200,2),(1055,-527119200,1),(1055,-512604000,2),(1055,-496274400,1),(1055,-481154400,2),(1055,-464220000,1),(1055,-449704800,2),(1055,-432165600,1),(1055,-417650400,2),(1055,-401320800,1),(1055,-386200800,2),(1055,-369266400,1),(1055,-354751200,2),(1055,-337816800,1),(1055,-323301600,2),(1055,-306972000,1),(1055,-291852000,2),(1055,-276732000,1),(1055,-257983200,2),(1055,-245282400,1),(1055,-226533600,2),(1055,-213228000,1),(1055,-195084000,2),(1055,-182383200,1),(1055,-163634400,2),(1055,-150933600,1),(1055,-132184800,2),(1055,-119484000,1),(1055,-100735200,2),(1055,-88034400,1),(1055,-68680800,2),(1055,-59004000,1),(1055,-37242000,4),(1055,57722400,6),(1055,69818400,1),(1055,89172000,2),(1055,101268000,1),(1055,120621600,2),(1055,132717600,1),(1055,152071200,2),(1055,164167200,1),(1055,183520800,2),(1055,196221600,1),(1055,214970400,2),(1055,227671200,1),(1055,246420000,2),(1055,259120800,1),(1055,278474400,2),(1055,290570400,1),(1055,309924000,2),(1055,322020000,1),(1055,341373600,2),(1055,354675600,5),(1055,372819600,6),(1055,386125200,5),(1055,404269200,6),(1055,417574800,5),(1055,435718800,6),(1055,449024400,5),(1055,467773200,6),(1055,481078800,5),(1055,499222800,6),(1055,512528400,5),(1055,530672400,6),(1055,543978000,5),(1055,562122000,6),(1055,575427600,5),(1055,593571600,6),(1055,606877200,5),(1055,625626000,6),(1055,638326800,5),(1055,657075600,6),(1055,670381200,5),(1055,688525200,6),(1055,701830800,5),(1055,719974800,6),(1055,733280400,5),(1055,751424400,6),(1055,764730000,5),(1055,782874000,6),(1055,796179600,5),(1055,814323600,6),(1055,820454400,7),(1055,828234000,5),(1055,846378000,6),(1055,859683600,5),(1055,877827600,6),(1055,891133200,5),(1055,909277200,6),(1055,922582800,5),(1055,941331600,6),(1055,954032400,5),(1055,972781200,6),(1055,985482000,5),(1055,1004230800,6),(1055,1017536400,5),(1055,1035680400,6),(1055,1048986000,5),(1055,1067130000,6),(1055,1080435600,5),(1055,1099184400,6),(1055,1111885200,5),(1055,1130634000,6),(1055,1143334800,5),(1055,1162083600,6),(1055,1174784400,5),(1055,1193533200,6),(1055,1206838800,5),(1055,1224982800,6),(1055,1238288400,5),(1055,1256432400,6),(1055,1269738000,5),(1055,1288486800,6),(1055,1301187600,5),(1055,1319936400,6),(1055,1332637200,5),(1055,1351386000,6),(1055,1364691600,5),(1055,1382835600,6),(1055,1396141200,5),(1055,1414285200,6),(1055,1427590800,5),(1055,1445734800,6),(1055,1459040400,5),(1055,1477789200,6),(1055,1490490000,5),(1055,1509238800,6),(1055,1521939600,5),(1055,1540688400,6),(1055,1553994000,5),(1055,1572138000,6),(1055,1585443600,5),(1055,1603587600,6),(1055,1616893200,5),(1055,1635642000,6),(1055,1648342800,5),(1055,1667091600,6),(1055,1679792400,5),(1055,1698541200,6),(1055,1711846800,5),(1055,1729990800,6),(1055,1743296400,5),(1055,1761440400,6),(1055,1774746000,5),(1055,1792890000,6),(1055,1806195600,5),(1055,1824944400,6),(1055,1837645200,5),(1055,1856394000,6),(1055,1869094800,5),(1055,1887843600,6),(1055,1901149200,5),(1055,1919293200,6),(1055,1932598800,5),(1055,1950742800,6),(1055,1964048400,5),(1055,1982797200,6),(1055,1995498000,5),(1055,2014246800,6),(1055,2026947600,5),(1055,2045696400,6),(1055,2058397200,5),(1055,2077146000,6),(1055,2090451600,5),(1055,2108595600,6),(1055,2121901200,5),(1055,2140045200,6),(1056,-2147483648,2),(1056,-1693706400,1),(1056,-1680483600,2),(1056,-1663455600,3),(1056,-1650150000,4),(1056,-1632006000,3),(1056,-1618700400,4),(1056,-938905200,3),(1056,-857257200,4),(1056,-844556400,3),(1056,-828226800,4),(1056,-812502000,3),(1056,-796777200,4),(1056,-781052400,3),(1056,-780372000,6),(1056,-778730400,5),(1056,-762663600,6),(1056,-749095200,8),(1056,354920400,7),(1056,370728000,8),(1056,386456400,7),(1056,402264000,8),(1056,417992400,7),(1056,433800000,8),(1056,449614800,7),(1056,465346800,9),(1056,481071600,10),(1056,496796400,9),(1056,512521200,10),(1056,528246000,9),(1056,543970800,10),(1056,559695600,9),(1056,575420400,10),(1056,591145200,9),(1056,606870000,11),(1056,622598400,12),(1056,638323200,11),(1056,654652800,12),(1056,670377600,11),(1056,686102400,12),(1056,701827200,11),(1056,717552000,12),(1056,733276800,11),(1056,749001600,12),(1056,764726400,11),(1056,780451200,12),(1056,796176000,11),(1056,811900800,12),(1056,828230400,11),(1056,846374400,12),(1056,859680000,11),(1056,877824000,12),(1056,891129600,11),(1056,909273600,12),(1056,922579200,11),(1056,941328000,12),(1056,954028800,11),(1056,972777600,12),(1056,985478400,11),(1056,1004227200,12),(1056,1017532800,11),(1056,1035676800,12),(1056,1048982400,11),(1056,1067126400,12),(1056,1080432000,11),(1056,1099180800,12),(1056,1111881600,11),(1056,1130630400,12),(1056,1143331200,11),(1056,1162080000,12),(1056,1174780800,11),(1056,1193529600,12),(1056,1206835200,11),(1056,1224979200,12),(1056,1238284800,11),(1056,1256428800,12),(1056,1269734400,11),(1056,1288483200,12),(1056,1301184000,13),(1056,1414278000,12),(1057,-2147483648,1),(1057,-1441159324,2),(1057,-1247536800,3),(1057,-892522800,6),(1057,-857257200,4),(1057,-844556400,5),(1057,-828226800,4),(1057,-825382800,3),(1057,354920400,7),(1057,370728000,3),(1057,386456400,7),(1057,402264000,3),(1057,417992400,7),(1057,433800000,3),(1057,449614800,7),(1057,465346800,8),(1057,481071600,9),(1057,496796400,8),(1057,512521200,9),(1057,528246000,8),(1057,543970800,9),(1057,559695600,8),(1057,575420400,9),(1057,591145200,8),(1057,606870000,9),(1057,622594800,8),(1057,638319600,9),(1057,646783200,10),(1057,686102400,2),(1057,701820000,10),(1057,717541200,2),(1057,733269600,10),(1057,748990800,2),(1057,764719200,10),(1057,780440400,2),(1057,796179600,11),(1057,811904400,12),(1057,828234000,11),(1057,846378000,12),(1057,859683600,11),(1057,877827600,12),(1057,891133200,11),(1057,909277200,12),(1057,922582800,11),(1057,941331600,12),(1057,954032400,11),(1057,972781200,12),(1057,985482000,11),(1057,1004230800,12),(1057,1017536400,11),(1057,1035680400,12),(1057,1048986000,11),(1057,1067130000,12),(1057,1080435600,11),(1057,1099184400,12),(1057,1111885200,11),(1057,1130634000,12),(1057,1143334800,11),(1057,1162083600,12),(1057,1174784400,11),(1057,1193533200,12),(1057,1206838800,11),(1057,1224982800,12),(1057,1238288400,11),(1057,1256432400,12),(1057,1269738000,11),(1057,1288486800,12),(1057,1301187600,11),(1057,1319936400,12),(1057,1332637200,11),(1057,1351386000,12),(1057,1364691600,11),(1057,1382835600,12),(1057,1396141200,11),(1057,1414285200,12),(1057,1427590800,11),(1057,1445734800,12),(1057,1459040400,11),(1057,1477789200,12),(1057,1490490000,11),(1057,1509238800,12),(1057,1521939600,11),(1057,1540688400,12),(1057,1553994000,11),(1057,1572138000,12),(1057,1585443600,11),(1057,1603587600,12),(1057,1616893200,11),(1057,1635642000,12),(1057,1648342800,11),(1057,1667091600,12),(1057,1679792400,11),(1057,1698541200,12),(1057,1711846800,11),(1057,1729990800,12),(1057,1743296400,11),(1057,1761440400,12),(1057,1774746000,11),(1057,1792890000,12),(1057,1806195600,11),(1057,1824944400,12),(1057,1837645200,11),(1057,1856394000,12),(1057,1869094800,11),(1057,1887843600,12),(1057,1901149200,11),(1057,1919293200,12),(1057,1932598800,11),(1057,1950742800,12),(1057,1964048400,11),(1057,1982797200,12),(1057,1995498000,11),(1057,2014246800,12),(1057,2026947600,11),(1057,2045696400,12),(1057,2058397200,11),(1057,2077146000,12),(1057,2090451600,11),(1057,2108595600,12),(1057,2121901200,11),(1057,2140045200,12),(1058,-2147483648,0),(1058,-1593820800,1),(1058,-1247540400,3),(1058,354916800,2),(1058,370724400,3),(1058,386452800,2),(1058,402260400,3),(1058,417988800,2),(1058,433796400,3),(1058,449611200,2),(1058,465343200,4),(1058,481068000,5),(1058,496792800,4),(1058,512517600,5),(1058,528242400,4),(1058,543967200,5),(1058,559692000,4),(1058,575416800,5),(1058,591141600,4),(1058,606866400,6),(1058,622594800,7),(1058,638319600,6),(1058,654649200,7),(1058,670374000,4),(1058,701820000,6),(1058,717548400,7),(1058,733273200,6),(1058,748998000,7),(1058,764722800,6),(1058,780447600,7),(1058,796172400,6),(1058,811897200,7),(1058,828226800,6),(1058,846370800,7),(1058,859676400,6),(1058,877820400,7),(1058,891126000,6),(1058,909270000,7),(1058,922575600,6),(1058,941324400,7),(1058,954025200,6),(1058,972774000,7),(1058,985474800,6),(1058,1004223600,7),(1058,1017529200,6),(1058,1035673200,7),(1058,1048978800,6),(1058,1067122800,7),(1058,1080428400,6),(1058,1099177200,7),(1058,1111878000,6),(1058,1130626800,7),(1058,1143327600,6),(1058,1162076400,7),(1058,1174777200,6),(1058,1193526000,7),(1058,1206831600,6),(1058,1224975600,7),(1058,1238281200,6),(1058,1256425200,7),(1058,1269730800,6),(1058,1288479600,7),(1058,1301180400,4),(1058,1414274400,7),(1058,2147483647,7),(1059,-2147483648,0),(1059,-1830384000,6),(1059,-1689555600,1),(1059,-1677801600,2),(1059,-1667437200,3),(1059,-1647738000,4),(1059,-1635814800,3),(1059,-1616202000,4),(1059,-1604365200,3),(1059,-1584666000,4),(1059,-1572742800,3),(1059,-1553043600,4),(1059,-1541206800,3),(1059,-1521507600,4),(1059,-1442451600,3),(1059,-1426813200,4),(1059,-1379293200,3),(1059,-1364778000,4),(1059,-1348448400,3),(1059,-1333328400,4),(1059,-1316394000,3),(1059,-1301274000,4),(1059,-1284339600,3),(1059,-1269824400,4),(1059,-1221440400,3),(1059,-1206925200,4),(1059,-1191200400,3),(1059,-1175475600,4),(1059,-1127696400,3),(1059,-1111971600,4),(1059,-1096851600,3),(1059,-1080522000,4),(1059,-1063587600,3),(1059,-1049072400,4),(1059,-1033347600,3),(1059,-1017622800,4),(1059,-1002502800,3),(1059,-986173200,4),(1059,-969238800,3),(1059,-950490000,4),(1059,-942022800,3),(1059,-922669200,4),(1059,-906944400,3),(1059,-891133200,4),(1059,-877309200,3),(1059,-873684000,5),(1059,-864007200,3),(1059,-857955600,4),(1059,-845859600,3),(1059,-842839200,5),(1059,-831348000,3),(1059,-825901200,4),(1059,-814410000,3),(1059,-810784800,5),(1059,-799898400,3),(1059,-794451600,4),(1059,-782960400,3),(1059,-779335200,5),(1059,-768448800,3),(1059,-763002000,4),(1059,-749091600,3),(1059,-733366800,4),(1059,-717631200,3),(1059,-701906400,4),(1059,-686181600,3),(1059,-670456800,4),(1059,-654732000,3),(1059,-639007200,4),(1059,-591832800,3),(1059,-575503200,4),(1059,-559778400,3),(1059,-544053600,4),(1059,-528328800,3),(1059,-512604000,4),(1059,-496879200,3),(1059,-481154400,4),(1059,-465429600,3),(1059,-449704800,4),(1059,-433980000,3),(1059,-417650400,4),(1059,-401925600,3),(1059,-386200800,4),(1059,-370476000,3),(1059,-354751200,4),(1059,-339026400,3),(1059,-323301600,4),(1059,-307576800,3),(1059,-291852000,4),(1059,-276127200,3),(1059,-260402400,4),(1059,-244677600,3),(1059,-228348000,4),(1059,-212623200,3),(1059,-196898400,4),(1059,-181173600,3),(1059,-165448800,4),(1059,-149724000,3),(1059,-133999200,4),(1059,-118274400,7),(1059,212544000,2),(1059,228268800,3),(1059,243993600,4),(1059,260323200,3),(1059,276048000,4),(1059,291772800,3),(1059,307501200,4),(1059,323222400,3),(1059,338950800,4),(1059,354675600,3),(1059,370400400,4),(1059,386125200,3),(1059,401850000,4),(1059,417578400,3),(1059,433299600,4),(1059,449024400,3),(1059,465354000,4),(1059,481078800,3),(1059,496803600,4),(1059,512528400,3),(1059,528253200,4),(1059,543978000,3),(1059,559702800,4),(1059,575427600,3),(1059,591152400,4),(1059,606877200,3),(1059,622602000,4),(1059,638326800,3),(1059,654656400,4),(1059,670381200,3),(1059,686106000,4),(1059,701830800,3),(1059,717555600,8),(1059,733280400,9),(1059,749005200,8),(1059,764730000,9),(1059,780454800,8),(1059,796179600,9),(1059,811904400,8),(1059,828234000,10),(1059,846378000,6),(1059,859683600,10),(1059,877827600,6),(1059,891133200,10),(1059,909277200,6),(1059,922582800,10),(1059,941331600,6),(1059,954032400,10),(1059,972781200,6),(1059,985482000,10),(1059,1004230800,6),(1059,1017536400,10),(1059,1035680400,6),(1059,1048986000,10),(1059,1067130000,6),(1059,1080435600,10),(1059,1099184400,6),(1059,1111885200,10),(1059,1130634000,6),(1059,1143334800,10),(1059,1162083600,6),(1059,1174784400,10),(1059,1193533200,6),(1059,1206838800,10),(1059,1224982800,6),(1059,1238288400,10),(1059,1256432400,6),(1059,1269738000,10),(1059,1288486800,6),(1059,1301187600,10),(1059,1319936400,6),(1059,1332637200,10),(1059,1351386000,6),(1059,1364691600,10),(1059,1382835600,6),(1059,1396141200,10),(1059,1414285200,6),(1059,1427590800,10),(1059,1445734800,6),(1059,1459040400,10),(1059,1477789200,6),(1059,1490490000,10),(1059,1509238800,6),(1059,1521939600,10),(1059,1540688400,6),(1059,1553994000,10),(1059,1572138000,6),(1059,1585443600,10),(1059,1603587600,6),(1059,1616893200,10),(1059,1635642000,6),(1059,1648342800,10),(1059,1667091600,6),(1059,1679792400,10),(1059,1698541200,6),(1059,1711846800,10),(1059,1729990800,6),(1059,1743296400,10),(1059,1761440400,6),(1059,1774746000,10),(1059,1792890000,6),(1059,1806195600,10),(1059,1824944400,6),(1059,1837645200,10),(1059,1856394000,6),(1059,1869094800,10),(1059,1887843600,6),(1059,1901149200,10),(1059,1919293200,6),(1059,1932598800,10),(1059,1950742800,6),(1059,1964048400,10),(1059,1982797200,6),(1059,1995498000,10),(1059,2014246800,6),(1059,2026947600,10),(1059,2045696400,6),(1059,2058397200,10),(1059,2077146000,6),(1059,2090451600,10),(1059,2108595600,6),(1059,2121901200,10),(1059,2140045200,6),(1060,-2147483648,1),(1060,-905824800,4),(1060,-857257200,2),(1060,-844556400,3),(1060,-828226800,2),(1060,-812502000,3),(1060,-796777200,2),(1060,-788922000,1),(1060,-777942000,3),(1060,-766623600,2),(1060,407199600,1),(1060,417574800,5),(1060,433299600,6),(1060,449024400,5),(1060,465354000,6),(1060,481078800,5),(1060,496803600,6),(1060,512528400,5),(1060,528253200,6),(1060,543978000,5),(1060,559702800,6),(1060,575427600,5),(1060,591152400,6),(1060,606877200,5),(1060,622602000,6),(1060,638326800,5),(1060,654656400,6),(1060,670381200,5),(1060,686106000,6),(1060,701830800,5),(1060,717555600,6),(1060,733280400,5),(1060,749005200,6),(1060,764730000,5),(1060,780454800,6),(1060,796179600,5),(1060,811904400,6),(1060,828234000,5),(1060,846378000,6),(1060,859683600,5),(1060,877827600,6),(1060,891133200,5),(1060,909277200,6),(1060,922582800,5),(1060,941331600,6),(1060,954032400,5),(1060,972781200,6),(1060,985482000,5),(1060,1004230800,6),(1060,1017536400,5),(1060,1035680400,6),(1060,1048986000,5),(1060,1067130000,6),(1060,1080435600,5),(1060,1099184400,6),(1060,1111885200,5),(1060,1130634000,6),(1060,1143334800,5),(1060,1162083600,6),(1060,1174784400,5),(1060,1193533200,6),(1060,1206838800,5),(1060,1224982800,6),(1060,1238288400,5),(1060,1256432400,6),(1060,1269738000,5),(1060,1288486800,6),(1060,1301187600,5),(1060,1319936400,6),(1060,1332637200,5),(1060,1351386000,6),(1060,1364691600,5),(1060,1382835600,6),(1060,1396141200,5),(1060,1414285200,6),(1060,1427590800,5),(1060,1445734800,6),(1060,1459040400,5),(1060,1477789200,6),(1060,1490490000,5),(1060,1509238800,6),(1060,1521939600,5),(1060,1540688400,6),(1060,1553994000,5),(1060,1572138000,6),(1060,1585443600,5),(1060,1603587600,6),(1060,1616893200,5),(1060,1635642000,6),(1060,1648342800,5),(1060,1667091600,6),(1060,1679792400,5),(1060,1698541200,6),(1060,1711846800,5),(1060,1729990800,6),(1060,1743296400,5),(1060,1761440400,6),(1060,1774746000,5),(1060,1792890000,6),(1060,1806195600,5),(1060,1824944400,6),(1060,1837645200,5),(1060,1856394000,6),(1060,1869094800,5),(1060,1887843600,6),(1060,1901149200,5),(1060,1919293200,6),(1060,1932598800,5),(1060,1950742800,6),(1060,1964048400,5),(1060,1982797200,6),(1060,1995498000,5),(1060,2014246800,6),(1060,2026947600,5),(1060,2045696400,6),(1060,2058397200,5),(1060,2077146000,6),(1060,2090451600,5),(1060,2108595600,6),(1060,2121901200,5),(1060,2140045200,6),(1061,-2147483648,2),(1061,-1691964000,1),(1061,-1680472800,2),(1061,-1664143200,1),(1061,-1650146400,2),(1061,-1633903200,1),(1061,-1617487200,2),(1061,-1601848800,1),(1061,-1586037600,2),(1061,-1570399200,1),(1061,-1552168800,2),(1061,-1538344800,1),(1061,-1522533600,2),(1061,-1507500000,1),(1061,-1490565600,2),(1061,-1473631200,1),(1061,-1460930400,2),(1061,-1442786400,1),(1061,-1428876000,2),(1061,-1410732000,1),(1061,-1396216800,2),(1061,-1379282400,1),(1061,-1364767200,2),(1061,-1348437600,1),(1061,-1333317600,2),(1061,-1315778400,1),(1061,-1301263200,2),(1061,-1284328800,1),(1061,-1269813600,2),(1061,-1253484000,1),(1061,-1238364000,2),(1061,-1221429600,1),(1061,-1206914400,2),(1061,-1189980000,1),(1061,-1175464800,2),(1061,-1159135200,1),(1061,-1143410400,2),(1061,-1126476000,1),(1061,-1111960800,2),(1061,-1095631200,1),(1061,-1080511200,2),(1061,-1063576800,1),(1061,-1049061600,2),(1061,-1032127200,1),(1061,-1017612000,2),(1061,-1001282400,1),(1061,-986162400,2),(1061,-969228000,1),(1061,-950479200,2),(1061,-942012000,1),(1061,-904518000,3),(1061,-896050800,1),(1061,-875487600,3),(1061,-864601200,1),(1061,-844038000,3),(1061,-832546800,1),(1061,-812588400,3),(1061,-798073200,1),(1061,-781052400,3),(1061,-772066800,1),(1061,-764805600,2),(1061,-748476000,1),(1061,-733356000,2),(1061,-719445600,1),(1061,-717030000,3),(1061,-706748400,1),(1061,-699487200,2),(1061,-687996000,1),(1061,-668037600,2),(1061,-654732000,1),(1061,-636588000,2),(1061,-622072800,1),(1061,-605743200,2),(1061,-590623200,1),(1061,-574293600,2),(1061,-558568800,1),(1061,-542239200,2),(1061,-527119200,1),(1061,-512604000,2),(1061,-496274400,1),(1061,-481154400,2),(1061,-464220000,1),(1061,-449704800,2),(1061,-432165600,1),(1061,-417650400,2),(1061,-401320800,1),(1061,-386200800,2),(1061,-369266400,1),(1061,-354751200,2),(1061,-337816800,1),(1061,-323301600,2),(1061,-306972000,1),(1061,-291852000,2),(1061,-276732000,1),(1061,-257983200,2),(1061,-245282400,1),(1061,-226533600,2),(1061,-213228000,1),(1061,-195084000,2),(1061,-182383200,1),(1061,-163634400,2),(1061,-150933600,1),(1061,-132184800,2),(1061,-119484000,1),(1061,-100735200,2),(1061,-88034400,1),(1061,-68680800,2),(1061,-59004000,1),(1061,-37242000,4),(1061,57722400,6),(1061,69818400,1),(1061,89172000,2),(1061,101268000,1),(1061,120621600,2),(1061,132717600,1),(1061,152071200,2),(1061,164167200,1),(1061,183520800,2),(1061,196221600,1),(1061,214970400,2),(1061,227671200,1),(1061,246420000,2),(1061,259120800,1),(1061,278474400,2),(1061,290570400,1),(1061,309924000,2),(1061,322020000,1),(1061,341373600,2),(1061,354675600,5),(1061,372819600,6),(1061,386125200,5),(1061,404269200,6),(1061,417574800,5),(1061,435718800,6),(1061,449024400,5),(1061,467773200,6),(1061,481078800,5),(1061,499222800,6),(1061,512528400,5),(1061,530672400,6),(1061,543978000,5),(1061,562122000,6),(1061,575427600,5),(1061,593571600,6),(1061,606877200,5),(1061,625626000,6),(1061,638326800,5),(1061,657075600,6),(1061,670381200,5),(1061,688525200,6),(1061,701830800,5),(1061,719974800,6),(1061,733280400,5),(1061,751424400,6),(1061,764730000,5),(1061,782874000,6),(1061,796179600,5),(1061,814323600,6),(1061,820454400,7),(1061,828234000,5),(1061,846378000,6),(1061,859683600,5),(1061,877827600,6),(1061,891133200,5),(1061,909277200,6),(1061,922582800,5),(1061,941331600,6),(1061,954032400,5),(1061,972781200,6),(1061,985482000,5),(1061,1004230800,6),(1061,1017536400,5),(1061,1035680400,6),(1061,1048986000,5),(1061,1067130000,6),(1061,1080435600,5),(1061,1099184400,6),(1061,1111885200,5),(1061,1130634000,6),(1061,1143334800,5),(1061,1162083600,6),(1061,1174784400,5),(1061,1193533200,6),(1061,1206838800,5),(1061,1224982800,6),(1061,1238288400,5),(1061,1256432400,6),(1061,1269738000,5),(1061,1288486800,6),(1061,1301187600,5),(1061,1319936400,6),(1061,1332637200,5),(1061,1351386000,6),(1061,1364691600,5),(1061,1382835600,6),(1061,1396141200,5),(1061,1414285200,6),(1061,1427590800,5),(1061,1445734800,6),(1061,1459040400,5),(1061,1477789200,6),(1061,1490490000,5),(1061,1509238800,6),(1061,1521939600,5),(1061,1540688400,6),(1061,1553994000,5),(1061,1572138000,6),(1061,1585443600,5),(1061,1603587600,6),(1061,1616893200,5),(1061,1635642000,6),(1061,1648342800,5),(1061,1667091600,6),(1061,1679792400,5),(1061,1698541200,6),(1061,1711846800,5),(1061,1729990800,6),(1061,1743296400,5),(1061,1761440400,6),(1061,1774746000,5),(1061,1792890000,6),(1061,1806195600,5),(1061,1824944400,6),(1061,1837645200,5),(1061,1856394000,6),(1061,1869094800,5),(1061,1887843600,6),(1061,1901149200,5),(1061,1919293200,6),(1061,1932598800,5),(1061,1950742800,6),(1061,1964048400,5),(1061,1982797200,6),(1061,1995498000,5),(1061,2014246800,6),(1061,2026947600,5),(1061,2045696400,6),(1061,2058397200,5),(1061,2077146000,6),(1061,2090451600,5),(1061,2108595600,6),(1061,2121901200,5),(1061,2140045200,6),(1062,-2147483648,0),(1062,-2069713476,2),(1062,-1692496800,1),(1062,-1680483600,2),(1062,-1662343200,1),(1062,-1650157200,2),(1062,-1632006000,3),(1062,-1618700400,4),(1062,-1612659600,6),(1062,-1604278800,5),(1062,-1585519200,6),(1062,-1574038800,5),(1062,-1552258800,6),(1062,-1539997200,5),(1062,-1520550000,6),(1062,-1507510800,5),(1062,-1490572800,6),(1062,-1473642000,5),(1062,-1459119600,6),(1062,-1444006800,5),(1062,-1427673600,6),(1062,-1411866000,5),(1062,-1396224000,6),(1062,-1379293200,5),(1062,-1364774400,6),(1062,-1348448400,5),(1062,-1333324800,6),(1062,-1316394000,5),(1062,-1301270400,6),(1062,-1284339600,5),(1062,-1269813600,7),(1062,-1253484000,8),(1062,-1238364000,7),(1062,-1221429600,8),(1062,-1206914400,7),(1062,-1191189600,8),(1062,-1175464800,7),(1062,-1160344800,8),(1062,-1143410400,7),(1062,-1127685600,8),(1062,-1111960800,7),(1062,-1096840800,8),(1062,-1080511200,7),(1062,-1063576800,8),(1062,-1049061600,7),(1062,-1033336800,8),(1062,-1017612000,7),(1062,-1002492000,8),(1062,-986162400,7),(1062,-969228000,8),(1062,-950479200,7),(1062,-942012000,8),(1062,-935186400,11),(1062,-857257200,9),(1062,-844556400,10),(1062,-828226800,9),(1062,-812502000,10),(1062,-797986800,2),(1062,-781052400,3),(1062,-766623600,4),(1062,-745455600,3),(1062,-733273200,4),(1062,220921200,2),(1062,228877200,12),(1062,243997200,13),(1062,260326800,12),(1062,276051600,13),(1062,291776400,12),(1062,307501200,13),(1062,323830800,12),(1062,338950800,13),(1062,354675600,12),(1062,370400400,13),(1062,386125200,12),(1062,401850000,13),(1062,417574800,12),(1062,433299600,13),(1062,449024400,12),(1062,465354000,13),(1062,481078800,12),(1062,496803600,13),(1062,512528400,12),(1062,528253200,13),(1062,543978000,12),(1062,559702800,13),(1062,575427600,12),(1062,591152400,13),(1062,606877200,12),(1062,622602000,13),(1062,638326800,12),(1062,654656400,13),(1062,670381200,12),(1062,686106000,13),(1062,701830800,12),(1062,717555600,13),(1062,733280400,12),(1062,749005200,13),(1062,764730000,12),(1062,780454800,13),(1062,796179600,12),(1062,811904400,13),(1062,828234000,12),(1062,846378000,13),(1062,859683600,12),(1062,877827600,13),(1062,891133200,12),(1062,909277200,13),(1062,922582800,12),(1062,941331600,13),(1062,954032400,12),(1062,972781200,13),(1062,985482000,12),(1062,1004230800,13),(1062,1017536400,12),(1062,1035680400,13),(1062,1048986000,12),(1062,1067130000,13),(1062,1080435600,12),(1062,1099184400,13),(1062,1111885200,12),(1062,1130634000,13),(1062,1143334800,12),(1062,1162083600,13),(1062,1174784400,12),(1062,1193533200,13),(1062,1206838800,12),(1062,1224982800,13),(1062,1238288400,12),(1062,1256432400,13),(1062,1269738000,12),(1062,1288486800,13),(1062,1301187600,12),(1062,1319936400,13),(1062,1332637200,12),(1062,1351386000,13),(1062,1364691600,12),(1062,1382835600,13),(1062,1396141200,12),(1062,1414285200,13),(1062,1427590800,12),(1062,1445734800,13),(1062,1459040400,12),(1062,1477789200,13),(1062,1490490000,12),(1062,1509238800,13),(1062,1521939600,12),(1062,1540688400,13),(1062,1553994000,12),(1062,1572138000,13),(1062,1585443600,12),(1062,1603587600,13),(1062,1616893200,12),(1062,1635642000,13),(1062,1648342800,12),(1062,1667091600,13),(1062,1679792400,12),(1062,1698541200,13),(1062,1711846800,12),(1062,1729990800,13),(1062,1743296400,12),(1062,1761440400,13),(1062,1774746000,12),(1062,1792890000,13),(1062,1806195600,12),(1062,1824944400,13),(1062,1837645200,12),(1062,1856394000,13),(1062,1869094800,12),(1062,1887843600,13),(1062,1901149200,12),(1062,1919293200,13),(1062,1932598800,12),(1062,1950742800,13),(1062,1964048400,12),(1062,1982797200,13),(1062,1995498000,12),(1062,2014246800,13),(1062,2026947600,12),(1062,2045696400,13),(1062,2058397200,12),(1062,2077146000,13),(1062,2090451600,12),(1062,2108595600,13),(1062,2121901200,12),(1062,2140045200,13),(1063,-2147483648,4),(1063,-1631926800,1),(1063,-1616889600,2),(1063,-1601168400,1),(1063,-1585353600,2),(1063,-1442451600,1),(1063,-1427673600,2),(1063,-1379293200,1),(1063,-1364774400,2),(1063,-1348448400,1),(1063,-1333324800,2),(1063,-1316390400,1),(1063,-1301270400,2),(1063,-1284339600,1),(1063,-1269820800,2),(1063,-1026954000,1),(1063,-1017619200,2),(1063,-1001898000,1),(1063,-999482400,3),(1063,-986090400,1),(1063,-954115200,2),(1063,-940208400,6),(1063,-873079200,5),(1063,-862621200,6),(1063,-842839200,5),(1063,-828320400,6),(1063,-811389600,5),(1063,-796870800,6),(1063,-779940000,5),(1063,-765421200,6),(1063,-748490400,5),(1063,-733971600,6),(1063,-652327200,5),(1063,-639018000,6),(1063,135122400,5),(1063,150246000,6),(1063,166572000,5),(1063,181695600,6),(1063,196812000,5),(1063,212540400,6),(1063,228866400,5),(1063,243990000,6),(1063,260326800,7),(1063,276051600,8),(1063,283993200,6),(1063,291776400,9),(1063,307501200,10),(1063,323830800,9),(1063,338950800,10),(1063,354675600,9),(1063,370400400,10),(1063,386125200,9),(1063,401850000,10),(1063,417574800,9),(1063,433299600,10),(1063,449024400,9),(1063,465354000,10),(1063,481078800,9),(1063,496803600,10),(1063,512528400,9),(1063,528253200,10),(1063,543978000,9),(1063,559702800,10),(1063,575427600,9),(1063,591152400,10),(1063,606877200,9),(1063,622602000,10),(1063,638326800,9),(1063,654656400,10),(1063,670381200,9),(1063,686106000,10),(1063,701830800,9),(1063,717555600,10),(1063,733280400,9),(1063,749005200,10),(1063,764730000,9),(1063,780454800,10),(1063,796179600,9),(1063,811904400,10),(1063,828234000,9),(1063,846378000,10),(1063,859683600,9),(1063,877827600,10),(1063,891133200,9),(1063,909277200,10),(1063,922582800,9),(1063,941331600,10),(1063,954032400,9),(1063,972781200,10),(1063,985482000,9),(1063,1004230800,10),(1063,1017536400,9),(1063,1035680400,10),(1063,1048986000,9),(1063,1067130000,10),(1063,1080435600,9),(1063,1099184400,10),(1063,1111885200,9),(1063,1130634000,10),(1063,1143334800,9),(1063,1162083600,10),(1063,1174784400,9),(1063,1193533200,10),(1063,1206838800,9),(1063,1224982800,10),(1063,1238288400,9),(1063,1256432400,10),(1063,1269738000,9),(1063,1288486800,10),(1063,1301187600,9),(1063,1319936400,10),(1063,1332637200,9),(1063,1351386000,10),(1063,1364691600,9),(1063,1382835600,10),(1063,1396141200,9),(1063,1414285200,10),(1063,1427590800,9),(1063,1445734800,10),(1063,1459040400,9),(1063,1477789200,10),(1063,1490490000,9),(1063,1509238800,10),(1063,1521939600,9),(1063,1540688400,10),(1063,1553994000,9),(1063,1572138000,10),(1063,1585443600,9),(1063,1603587600,10),(1063,1616893200,9),(1063,1635642000,10),(1063,1648342800,9),(1063,1667091600,10),(1063,1679792400,9),(1063,1698541200,10),(1063,1711846800,9),(1063,1729990800,10),(1063,1743296400,9),(1063,1761440400,10),(1063,1774746000,9),(1063,1792890000,10),(1063,1806195600,9),(1063,1824944400,10),(1063,1837645200,9),(1063,1856394000,10),(1063,1869094800,9),(1063,1887843600,10),(1063,1901149200,9),(1063,1919293200,10),(1063,1932598800,9),(1063,1950742800,10),(1063,1964048400,9),(1063,1982797200,10),(1063,1995498000,9),(1063,2014246800,10),(1063,2026947600,9),(1063,2045696400,10),(1063,2058397200,9),(1063,2077146000,10),(1063,2090451600,9),(1063,2108595600,10),(1063,2121901200,9),(1063,2140045200,10),(1064,-2147483648,3),(1064,-1690765200,1),(1064,-1680487200,2),(1064,-1664758800,1),(1064,-1648951200,2),(1064,-1635123600,1),(1064,-1616896800,2),(1064,-1604278800,1),(1064,-1585533600,2),(1064,-1571014800,1),(1064,-1555293600,2),(1064,-932432400,1),(1064,-857257200,3),(1064,-844556400,4),(1064,-828226800,3),(1064,-812588400,4),(1064,-798073200,3),(1064,-781052400,1),(1064,-766717200,2),(1064,-750898800,4),(1064,-733359600,3),(1064,-719456400,4),(1064,-701917200,3),(1064,-689209200,4),(1064,-670460400,3),(1064,-114051600,4),(1064,-103168800,2),(1064,-81997200,4),(1064,-71715600,3),(1064,-50547600,4),(1064,-40266000,3),(1064,-18493200,4),(1064,-8211600,3),(1064,12956400,4),(1064,23238000,3),(1064,43801200,4),(1064,54687600,3),(1064,75855600,4),(1064,86742000,3),(1064,102380400,4),(1064,118105200,3),(1064,135730800,4),(1064,148518000,3),(1064,167187600,1),(1064,180489600,2),(1064,198637200,1),(1064,211939200,2),(1064,230086800,1),(1064,243388800,2),(1064,261536400,1),(1064,274838400,2),(1064,292986000,1),(1064,306288000,2),(1064,323312400,1),(1064,338342400,2),(1064,354675600,5),(1064,370400400,6),(1064,386125200,5),(1064,401850000,6),(1064,417574800,5),(1064,433299600,6),(1064,449024400,5),(1064,465354000,6),(1064,481078800,5),(1064,496803600,6),(1064,512528400,5),(1064,528253200,6),(1064,543978000,5),(1064,559702800,6),(1064,575427600,5),(1064,591152400,6),(1064,606877200,5),(1064,622602000,6),(1064,638326800,5),(1064,654656400,6),(1064,670381200,5),(1064,686106000,6),(1064,701830800,5),(1064,717555600,6),(1064,733280400,5),(1064,749005200,6),(1064,764730000,5),(1064,780454800,6),(1064,796179600,5),(1064,811904400,6),(1064,828234000,5),(1064,846378000,6),(1064,859683600,5),(1064,877827600,6),(1064,891133200,5),(1064,909277200,6),(1064,922582800,5),(1064,941331600,6),(1064,954032400,5),(1064,972781200,6),(1064,985482000,5),(1064,1004230800,6),(1064,1017536400,5),(1064,1035680400,6),(1064,1048986000,5),(1064,1067130000,6),(1064,1080435600,5),(1064,1099184400,6),(1064,1111885200,5),(1064,1130634000,6),(1064,1143334800,5),(1064,1162083600,6),(1064,1174784400,5),(1064,1193533200,6),(1064,1206838800,5),(1064,1224982800,6),(1064,1238288400,5),(1064,1256432400,6),(1064,1269738000,5),(1064,1288486800,6),(1064,1301187600,5),(1064,1319936400,6),(1064,1332637200,5),(1064,1351386000,6),(1064,1364691600,5),(1064,1382835600,6),(1064,1396141200,5),(1064,1414285200,6),(1064,1427590800,5),(1064,1445734800,6),(1064,1459040400,5),(1064,1477789200,6),(1064,1490490000,5),(1064,1509238800,6),(1064,1521939600,5),(1064,1540688400,6),(1064,1553994000,5),(1064,1572138000,6),(1064,1585443600,5),(1064,1603587600,6),(1064,1616893200,5),(1064,1635642000,6),(1064,1648342800,5),(1064,1667091600,6),(1064,1679792400,5),(1064,1698541200,6),(1064,1711846800,5),(1064,1729990800,6),(1064,1743296400,5),(1064,1761440400,6),(1064,1774746000,5),(1064,1792890000,6),(1064,1806195600,5),(1064,1824944400,6),(1064,1837645200,5),(1064,1856394000,6),(1064,1869094800,5),(1064,1887843600,6),(1064,1901149200,5),(1064,1919293200,6),(1064,1932598800,5),(1064,1950742800,6),(1064,1964048400,5),(1064,1982797200,6),(1064,1995498000,5),(1064,2014246800,6),(1064,2026947600,5),(1064,2045696400,6),(1064,2058397200,5),(1064,2077146000,6),(1064,2090451600,5),(1064,2108595600,6),(1064,2121901200,5),(1064,2140045200,6),(1065,-2147483648,1),(1065,-1535938789,3),(1065,-875671200,2),(1065,-859773600,3),(1065,354672000,2),(1065,370396800,3),(1065,386121600,2),(1065,401846400,3),(1065,417574800,4),(1065,433299600,5),(1065,449024400,4),(1065,465354000,5),(1065,481078800,4),(1065,496803600,5),(1065,512528400,4),(1065,528253200,5),(1065,543978000,4),(1065,559702800,5),(1065,575427600,4),(1065,591152400,5),(1065,606877200,4),(1065,622602000,5),(1065,638326800,4),(1065,654656400,5),(1065,670381200,4),(1065,686106000,5),(1065,701830800,4),(1065,717555600,5),(1065,733280400,4),(1065,749005200,5),(1065,764730000,4),(1065,780454800,5),(1065,796179600,4),(1065,811904400,5),(1065,828234000,4),(1065,846378000,5),(1065,859683600,4),(1065,877827600,5),(1065,891133200,4),(1065,909277200,5),(1065,922582800,4),(1065,941331600,5),(1065,954032400,4),(1065,972781200,5),(1065,985482000,4),(1065,1004230800,5),(1065,1017536400,4),(1065,1035680400,5),(1065,1048986000,4),(1065,1067130000,5),(1065,1080435600,4),(1065,1099184400,5),(1065,1111885200,4),(1065,1130634000,5),(1065,1143334800,4),(1065,1162083600,5),(1065,1174784400,4),(1065,1193533200,5),(1065,1206838800,4),(1065,1224982800,5),(1065,1238288400,4),(1065,1256432400,5),(1065,1269738000,4),(1065,1288486800,5),(1065,1301187600,4),(1065,1319936400,5),(1065,1332637200,4),(1065,1351386000,5),(1065,1364691600,4),(1065,1382835600,5),(1065,1396141200,4),(1065,1414285200,5),(1065,1427590800,4),(1065,1445734800,5),(1065,1459040400,4),(1065,1477789200,5),(1065,1490490000,4),(1065,1509238800,5),(1065,1521939600,4),(1065,1540688400,5),(1065,1553994000,4),(1065,1572138000,5),(1065,1585443600,4),(1065,1603587600,5),(1065,1616893200,4),(1065,1635642000,5),(1065,1648342800,4),(1065,1667091600,5),(1065,1679792400,4),(1065,1698541200,5),(1065,1711846800,4),(1065,1729990800,5),(1065,1743296400,4),(1065,1761440400,5),(1065,1774746000,4),(1065,1792890000,5),(1065,1806195600,4),(1065,1824944400,5),(1065,1837645200,4),(1065,1856394000,5),(1065,1869094800,4),(1065,1887843600,5),(1065,1901149200,4),(1065,1919293200,5),(1065,1932598800,4),(1065,1950742800,5),(1065,1964048400,4),(1065,1982797200,5),(1065,1995498000,4),(1065,2014246800,5),(1065,2026947600,4),(1065,2045696400,5),(1065,2058397200,4),(1065,2077146000,5),(1065,2090451600,4),(1065,2108595600,5),(1065,2121901200,4),(1065,2140045200,5),(1066,-2147483648,1),(1066,-1441158600,2),(1066,-1247536800,3),(1066,-899780400,6),(1066,-857257200,4),(1066,-844556400,5),(1066,-828226800,4),(1066,-812502000,5),(1066,-804650400,3),(1066,354920400,7),(1066,370728000,3),(1066,386456400,7),(1066,402264000,3),(1066,417992400,7),(1066,433800000,3),(1066,449614800,7),(1066,465346800,8),(1066,481071600,9),(1066,496796400,8),(1066,512521200,9),(1066,528246000,8),(1066,543970800,9),(1066,559695600,8),(1066,575420400,9),(1066,591145200,8),(1066,606870000,9),(1066,622594800,8),(1066,631141200,3),(1066,670374000,10),(1066,686102400,11),(1066,701827200,10),(1066,717552000,11),(1066,733276800,10),(1066,749001600,11),(1066,764726400,10),(1066,780451200,11),(1066,796176000,10),(1066,811900800,11),(1066,828230400,10),(1066,846374400,11),(1066,859680000,10),(1066,877824000,11),(1066,891129600,10),(1066,909273600,11),(1066,922579200,10),(1066,941328000,11),(1066,954028800,10),(1066,972777600,11),(1066,985478400,10),(1066,1004227200,11),(1066,1017532800,10),(1066,1035676800,11),(1066,1048982400,10),(1066,1067126400,11),(1066,1080432000,10),(1066,1099180800,11),(1066,1111881600,10),(1066,1130630400,11),(1066,1143331200,10),(1066,1162080000,11),(1066,1174780800,10),(1066,1193529600,11),(1066,1206835200,10),(1066,1224979200,11),(1066,1238284800,10),(1066,1256428800,11),(1066,1269734400,10),(1066,1288483200,11),(1066,1301184000,12),(1066,2147483647,12),(1067,-2147483648,1),(1067,-1854403761,6),(1067,-1689814800,2),(1067,-1680397200,3),(1067,-1665363600,2),(1067,-1648342800,3),(1067,-1635123600,2),(1067,-1616893200,3),(1067,-1604278800,2),(1067,-1585443600,3),(1067,-1574038800,2),(1067,-1552266000,3),(1067,-1539997200,2),(1067,-1520557200,3),(1067,-1507510800,2),(1067,-1490576400,3),(1067,-1470618000,2),(1067,-1459126800,3),(1067,-1444006800,2),(1067,-1427677200,3),(1067,-1411952400,2),(1067,-1396227600,3),(1067,-1379293200,2),(1067,-1364778000,3),(1067,-1348448400,2),(1067,-1333328400,3),(1067,-1316394000,2),(1067,-1301274000,3),(1067,-1284339600,2),(1067,-1269824400,3),(1067,-1253494800,2),(1067,-1238374800,3),(1067,-1221440400,2),(1067,-1206925200,3),(1067,-1191200400,2),(1067,-1175475600,3),(1067,-1160355600,2),(1067,-1143421200,3),(1067,-1127696400,2),(1067,-1111971600,3),(1067,-1096851600,2),(1067,-1080522000,3),(1067,-1063587600,2),(1067,-1049072400,3),(1067,-1033347600,2),(1067,-1017622800,3),(1067,-1002502800,2),(1067,-986173200,3),(1067,-969238800,2),(1067,-950490000,3),(1067,-942012000,4),(1067,-904438800,5),(1067,-891136800,4),(1067,-877827600,5),(1067,-857257200,4),(1067,-844556400,5),(1067,-828226800,4),(1067,-812502000,5),(1067,-796266000,4),(1067,-781052400,5),(1067,-766623600,8),(1067,196819200,7),(1067,212540400,8),(1067,228877200,9),(1067,243997200,10),(1067,260326800,9),(1067,276051600,10),(1067,291776400,9),(1067,307501200,10),(1067,323830800,9),(1067,338950800,10),(1067,354675600,9),(1067,370400400,10),(1067,386125200,9),(1067,401850000,10),(1067,417574800,9),(1067,433299600,10),(1067,449024400,9),(1067,465354000,10),(1067,481078800,9),(1067,496803600,10),(1067,512528400,9),(1067,528253200,10),(1067,543978000,9),(1067,559702800,10),(1067,575427600,9),(1067,591152400,10),(1067,606877200,9),(1067,622602000,10),(1067,638326800,9),(1067,654656400,10),(1067,670381200,9),(1067,686106000,10),(1067,701830800,9),(1067,717555600,10),(1067,733280400,9),(1067,749005200,10),(1067,764730000,9),(1067,780454800,10),(1067,796179600,9),(1067,811904400,10),(1067,828234000,9),(1067,846378000,10),(1067,859683600,9),(1067,877827600,10),(1067,891133200,9),(1067,909277200,10),(1067,922582800,9),(1067,941331600,10),(1067,954032400,9),(1067,972781200,10),(1067,985482000,9),(1067,1004230800,10),(1067,1017536400,9),(1067,1035680400,10),(1067,1048986000,9),(1067,1067130000,10),(1067,1080435600,9),(1067,1099184400,10),(1067,1111885200,9),(1067,1130634000,10),(1067,1143334800,9),(1067,1162083600,10),(1067,1174784400,9),(1067,1193533200,10),(1067,1206838800,9),(1067,1224982800,10),(1067,1238288400,9),(1067,1256432400,10),(1067,1269738000,9),(1067,1288486800,10),(1067,1301187600,9),(1067,1319936400,10),(1067,1332637200,9),(1067,1351386000,10),(1067,1364691600,9),(1067,1382835600,10),(1067,1396141200,9),(1067,1414285200,10),(1067,1427590800,9),(1067,1445734800,10),(1067,1459040400,9),(1067,1477789200,10),(1067,1490490000,9),(1067,1509238800,10),(1067,1521939600,9),(1067,1540688400,10),(1067,1553994000,9),(1067,1572138000,10),(1067,1585443600,9),(1067,1603587600,10),(1067,1616893200,9),(1067,1635642000,10),(1067,1648342800,9),(1067,1667091600,10),(1067,1679792400,9),(1067,1698541200,10),(1067,1711846800,9),(1067,1729990800,10),(1067,1743296400,9),(1067,1761440400,10),(1067,1774746000,9),(1067,1792890000,10),(1067,1806195600,9),(1067,1824944400,10),(1067,1837645200,9),(1067,1856394000,10),(1067,1869094800,9),(1067,1887843600,10),(1067,1901149200,9),(1067,1919293200,10),(1067,1932598800,9),(1067,1950742800,10),(1067,1964048400,9),(1067,1982797200,10),(1067,1995498000,9),(1067,2014246800,10),(1067,2026947600,9),(1067,2045696400,10),(1067,2058397200,9),(1067,2077146000,10),(1067,2090451600,9),(1067,2108595600,10),(1067,2121901200,9),(1067,2140045200,10),(1068,-2147483648,1),(1068,-1688265017,3),(1068,-1656819079,2),(1068,-1641353479,3),(1068,-1627965079,4),(1068,-1618716679,2),(1068,-1596429079,4),(1068,-1593820800,5),(1068,-1589860800,6),(1068,-1542427200,7),(1068,-1539493200,8),(1068,-1525323600,7),(1068,-1522728000,6),(1068,-1491188400,9),(1068,-1247536800,6),(1068,354920400,7),(1068,370728000,6),(1068,386456400,7),(1068,402264000,6),(1068,417992400,7),(1068,433800000,6),(1068,449614800,7),(1068,465346800,10),(1068,481071600,11),(1068,496796400,10),(1068,512521200,11),(1068,528246000,10),(1068,543970800,11),(1068,559695600,10),(1068,575420400,11),(1068,591145200,10),(1068,606870000,11),(1068,622594800,10),(1068,638319600,11),(1068,654649200,10),(1068,670374000,12),(1068,686102400,13),(1068,695779200,10),(1068,701823600,11),(1068,717548400,10),(1068,733273200,11),(1068,748998000,10),(1068,764722800,11),(1068,780447600,10),(1068,796172400,11),(1068,811897200,10),(1068,828226800,11),(1068,846370800,10),(1068,859676400,11),(1068,877820400,10),(1068,891126000,11),(1068,909270000,10),(1068,922575600,11),(1068,941324400,10),(1068,954025200,11),(1068,972774000,10),(1068,985474800,11),(1068,1004223600,10),(1068,1017529200,11),(1068,1035673200,10),(1068,1048978800,11),(1068,1067122800,10),(1068,1080428400,11),(1068,1099177200,10),(1068,1111878000,11),(1068,1130626800,10),(1068,1143327600,11),(1068,1162076400,10),(1068,1174777200,11),(1068,1193526000,10),(1068,1206831600,11),(1068,1224975600,10),(1068,1238281200,11),(1068,1256425200,10),(1068,1269730800,11),(1068,1288479600,10),(1068,1301180400,14),(1068,1414274400,10),(1069,-2147483648,0),(1069,-1518920008,2),(1069,166572000,1),(1069,182293200,2),(1069,200959200,1),(1069,213829200,2),(1069,228866400,1),(1069,243982800,2),(1069,260316000,1),(1069,276123600,2),(1069,291765600,1),(1069,307486800,2),(1069,323820000,1),(1069,338936400,2),(1069,354664800,1),(1069,370386000,2),(1069,386114400,1),(1069,401835600,2),(1069,417564000,1),(1069,433285200,2),(1069,449013600,1),(1069,465339600,2),(1069,481068000,1),(1069,496789200,2),(1069,512517600,1),(1069,528238800,2),(1069,543967200,1),(1069,559688400,2),(1069,575416800,1),(1069,591138000,2),(1069,606866400,1),(1069,622587600,2),(1069,638316000,1),(1069,654642000,2),(1069,670370400,1),(1069,686091600,2),(1069,701820000,1),(1069,717541200,2),(1069,733269600,1),(1069,748990800,2),(1069,764719200,1),(1069,780440400,2),(1069,796168800,1),(1069,811890000,2),(1069,828223200,1),(1069,843944400,2),(1069,859672800,1),(1069,875394000,2),(1069,891122400,1),(1069,909277200,3),(1069,922582800,4),(1069,941331600,3),(1069,954032400,4),(1069,972781200,3),(1069,985482000,4),(1069,1004230800,3),(1069,1017536400,4),(1069,1035680400,3),(1069,1048986000,4),(1069,1067130000,3),(1069,1080435600,4),(1069,1099184400,3),(1069,1111885200,4),(1069,1130634000,3),(1069,1143334800,4),(1069,1162083600,3),(1069,1174784400,4),(1069,1193533200,3),(1069,1206838800,4),(1069,1224982800,3),(1069,1238288400,4),(1069,1256432400,3),(1069,1269738000,4),(1069,1288486800,3),(1069,1301187600,4),(1069,1319936400,3),(1069,1332637200,4),(1069,1351386000,3),(1069,1364691600,4),(1069,1382835600,3),(1069,1396141200,4),(1069,1414285200,3),(1069,1427590800,4),(1069,1445734800,3),(1069,1459040400,4),(1069,1477789200,3),(1069,1490490000,4),(1069,1509238800,3),(1069,1521939600,4),(1069,1540688400,3),(1069,1553994000,4),(1069,1572138000,3),(1069,1585443600,4),(1069,1603587600,3),(1069,1616893200,4),(1069,1635642000,3),(1069,1648342800,4),(1069,1667091600,3),(1069,1679792400,4),(1069,1698541200,3),(1069,1711846800,4),(1069,1729990800,3),(1069,1743296400,4),(1069,1761440400,3),(1069,1774746000,4),(1069,1792890000,3),(1069,1806195600,4),(1069,1824944400,3),(1069,1837645200,4),(1069,1856394000,3),(1069,1869094800,4),(1069,1887843600,3),(1069,1901149200,4),(1069,1919293200,3),(1069,1932598800,4),(1069,1950742800,3),(1069,1964048400,4),(1069,1982797200,3),(1069,1995498000,4),(1069,2014246800,3),(1069,2026947600,4),(1069,2045696400,3),(1069,2058397200,4),(1069,2077146000,3),(1069,2090451600,4),(1069,2108595600,3),(1069,2121901200,4),(1069,2140045200,3),(1070,-2147483648,2),(1070,-1691884800,1),(1070,-1680573600,2),(1070,-927511200,1),(1070,-857257200,3),(1070,-844556400,4),(1070,-828226800,3),(1070,-812502000,4),(1070,-796777200,3),(1070,-781052400,4),(1070,-765327600,3),(1070,-340844400,4),(1070,-324514800,3),(1070,-308790000,4),(1070,-293065200,3),(1070,-277340400,4),(1070,-261615600,3),(1070,-245890800,4),(1070,-230166000,3),(1070,-214441200,4),(1070,-198716400,3),(1070,-182991600,4),(1070,-166662000,3),(1070,-147913200,4),(1070,-135212400,3),(1070,315529200,2),(1070,323830800,5),(1070,338950800,6),(1070,354675600,5),(1070,370400400,6),(1070,386125200,5),(1070,401850000,6),(1070,417574800,5),(1070,433299600,6),(1070,449024400,5),(1070,465354000,6),(1070,481078800,5),(1070,496803600,6),(1070,512528400,5),(1070,528253200,6),(1070,543978000,5),(1070,559702800,6),(1070,575427600,5),(1070,591152400,6),(1070,606877200,5),(1070,622602000,6),(1070,638326800,5),(1070,654656400,6),(1070,670381200,5),(1070,686106000,6),(1070,701830800,5),(1070,717555600,6),(1070,733280400,5),(1070,749005200,6),(1070,764730000,5),(1070,780454800,6),(1070,796179600,5),(1070,811904400,6),(1070,828234000,5),(1070,846378000,6),(1070,859683600,5),(1070,877827600,6),(1070,891133200,5),(1070,909277200,6),(1070,922582800,5),(1070,941331600,6),(1070,954032400,5),(1070,972781200,6),(1070,985482000,5),(1070,1004230800,6),(1070,1017536400,5),(1070,1035680400,6),(1070,1048986000,5),(1070,1067130000,6),(1070,1080435600,5),(1070,1099184400,6),(1070,1111885200,5),(1070,1130634000,6),(1070,1143334800,5),(1070,1162083600,6),(1070,1174784400,5),(1070,1193533200,6),(1070,1206838800,5),(1070,1224982800,6),(1070,1238288400,5),(1070,1256432400,6),(1070,1269738000,5),(1070,1288486800,6),(1070,1301187600,5),(1070,1319936400,6),(1070,1332637200,5),(1070,1351386000,6),(1070,1364691600,5),(1070,1382835600,6),(1070,1396141200,5),(1070,1414285200,6),(1070,1427590800,5),(1070,1445734800,6),(1070,1459040400,5),(1070,1477789200,6),(1070,1490490000,5),(1070,1509238800,6),(1070,1521939600,5),(1070,1540688400,6),(1070,1553994000,5),(1070,1572138000,6),(1070,1585443600,5),(1070,1603587600,6),(1070,1616893200,5),(1070,1635642000,6),(1070,1648342800,5),(1070,1667091600,6),(1070,1679792400,5),(1070,1698541200,6),(1070,1711846800,5),(1070,1729990800,6),(1070,1743296400,5),(1070,1761440400,6),(1070,1774746000,5),(1070,1792890000,6),(1070,1806195600,5),(1070,1824944400,6),(1070,1837645200,5),(1070,1856394000,6),(1070,1869094800,5),(1070,1887843600,6),(1070,1901149200,5),(1070,1919293200,6),(1070,1932598800,5),(1070,1950742800,6),(1070,1964048400,5),(1070,1982797200,6),(1070,1995498000,5),(1070,2014246800,6),(1070,2026947600,5),(1070,2045696400,6),(1070,2058397200,5),(1070,2077146000,6),(1070,2090451600,5),(1070,2108595600,6),(1070,2121901200,5),(1070,2140045200,6),(1071,-2147483648,1),(1071,-1855958961,5),(1071,-1689814800,2),(1071,-1680397200,3),(1071,-1665363600,2),(1071,-1648342800,3),(1071,-1635123600,2),(1071,-1616893200,3),(1071,-1604278800,2),(1071,-1585443600,3),(1071,-1574038800,2),(1071,-1552266000,3),(1071,-1539997200,2),(1071,-1520557200,3),(1071,-1507510800,2),(1071,-1490576400,3),(1071,-1470618000,2),(1071,-1459126800,3),(1071,-1444006800,2),(1071,-1427677200,3),(1071,-1411952400,2),(1071,-1396227600,3),(1071,-1379293200,2),(1071,-1364778000,3),(1071,-1348448400,2),(1071,-1333328400,3),(1071,-1316394000,2),(1071,-1301274000,3),(1071,-1284339600,2),(1071,-1269824400,3),(1071,-1253494800,2),(1071,-1238374800,3),(1071,-1221440400,2),(1071,-1206925200,3),(1071,-1191200400,2),(1071,-1175475600,3),(1071,-1160355600,2),(1071,-1143421200,3),(1071,-1127696400,2),(1071,-1111971600,3),(1071,-1096851600,2),(1071,-1080522000,3),(1071,-1063587600,2),(1071,-1049072400,3),(1071,-1033347600,2),(1071,-1017622800,3),(1071,-1002502800,2),(1071,-986173200,3),(1071,-969238800,2),(1071,-950490000,3),(1071,-942012000,4),(1071,-932436000,8),(1071,-857257200,6),(1071,-844556400,7),(1071,-828226800,6),(1071,-812502000,7),(1071,-800071200,9),(1071,-796266000,4),(1071,-781052400,9),(1071,-766623600,10),(1071,196819200,8),(1071,212540400,10),(1071,228877200,11),(1071,243997200,12),(1071,260326800,11),(1071,276051600,12),(1071,291776400,11),(1071,307501200,12),(1071,323830800,11),(1071,338950800,12),(1071,354675600,11),(1071,370400400,12),(1071,386125200,11),(1071,401850000,12),(1071,417574800,11),(1071,433299600,12),(1071,449024400,11),(1071,465354000,12),(1071,481078800,11),(1071,496803600,12),(1071,512528400,11),(1071,528253200,12),(1071,543978000,11),(1071,559702800,12),(1071,575427600,11),(1071,591152400,12),(1071,606877200,11),(1071,622602000,12),(1071,638326800,11),(1071,654656400,12),(1071,670381200,11),(1071,686106000,12),(1071,701830800,11),(1071,717555600,12),(1071,733280400,11),(1071,749005200,12),(1071,764730000,11),(1071,780454800,12),(1071,796179600,11),(1071,811904400,12),(1071,828234000,11),(1071,846378000,12),(1071,859683600,11),(1071,877827600,12),(1071,891133200,11),(1071,909277200,12),(1071,922582800,11),(1071,941331600,12),(1071,954032400,11),(1071,972781200,12),(1071,985482000,11),(1071,1004230800,12),(1071,1017536400,11),(1071,1035680400,12),(1071,1048986000,11),(1071,1067130000,12),(1071,1080435600,11),(1071,1099184400,12),(1071,1111885200,11),(1071,1130634000,12),(1071,1143334800,11),(1071,1162083600,12),(1071,1174784400,11),(1071,1193533200,12),(1071,1206838800,11),(1071,1224982800,12),(1071,1238288400,11),(1071,1256432400,12),(1071,1269738000,11),(1071,1288486800,12),(1071,1301187600,11),(1071,1319936400,12),(1071,1332637200,11),(1071,1351386000,12),(1071,1364691600,11),(1071,1382835600,12),(1071,1396141200,11),(1071,1414285200,12),(1071,1427590800,11),(1071,1445734800,12),(1071,1459040400,11),(1071,1477789200,12),(1071,1490490000,11),(1071,1509238800,12),(1071,1521939600,11),(1071,1540688400,12),(1071,1553994000,11),(1071,1572138000,12),(1071,1585443600,11),(1071,1603587600,12),(1071,1616893200,11),(1071,1635642000,12),(1071,1648342800,11),(1071,1667091600,12),(1071,1679792400,11),(1071,1698541200,12),(1071,1711846800,11),(1071,1729990800,12),(1071,1743296400,11),(1071,1761440400,12),(1071,1774746000,11),(1071,1792890000,12),(1071,1806195600,11),(1071,1824944400,12),(1071,1837645200,11),(1071,1856394000,12),(1071,1869094800,11),(1071,1887843600,12),(1071,1901149200,11),(1071,1919293200,12),(1071,1932598800,11),(1071,1950742800,12),(1071,1964048400,11),(1071,1982797200,12),(1071,1995498000,11),(1071,2014246800,12),(1071,2026947600,11),(1071,2045696400,12),(1071,2058397200,11),(1071,2077146000,12),(1071,2090451600,11),(1071,2108595600,12),(1071,2121901200,11),(1071,2140045200,12),(1072,-2147483648,1),(1072,-905824800,4),(1072,-857257200,2),(1072,-844556400,3),(1072,-828226800,2),(1072,-812502000,3),(1072,-796777200,2),(1072,-788922000,1),(1072,-777942000,3),(1072,-766623600,2),(1072,407199600,1),(1072,417574800,5),(1072,433299600,6),(1072,449024400,5),(1072,465354000,6),(1072,481078800,5),(1072,496803600,6),(1072,512528400,5),(1072,528253200,6),(1072,543978000,5),(1072,559702800,6),(1072,575427600,5),(1072,591152400,6),(1072,606877200,5),(1072,622602000,6),(1072,638326800,5),(1072,654656400,6),(1072,670381200,5),(1072,686106000,6),(1072,701830800,5),(1072,717555600,6),(1072,733280400,5),(1072,749005200,6),(1072,764730000,5),(1072,780454800,6),(1072,796179600,5),(1072,811904400,6),(1072,828234000,5),(1072,846378000,6),(1072,859683600,5),(1072,877827600,6),(1072,891133200,5),(1072,909277200,6),(1072,922582800,5),(1072,941331600,6),(1072,954032400,5),(1072,972781200,6),(1072,985482000,5),(1072,1004230800,6),(1072,1017536400,5),(1072,1035680400,6),(1072,1048986000,5),(1072,1067130000,6),(1072,1080435600,5),(1072,1099184400,6),(1072,1111885200,5),(1072,1130634000,6),(1072,1143334800,5),(1072,1162083600,6),(1072,1174784400,5),(1072,1193533200,6),(1072,1206838800,5),(1072,1224982800,6),(1072,1238288400,5),(1072,1256432400,6),(1072,1269738000,5),(1072,1288486800,6),(1072,1301187600,5),(1072,1319936400,6),(1072,1332637200,5),(1072,1351386000,6),(1072,1364691600,5),(1072,1382835600,6),(1072,1396141200,5),(1072,1414285200,6),(1072,1427590800,5),(1072,1445734800,6),(1072,1459040400,5),(1072,1477789200,6),(1072,1490490000,5),(1072,1509238800,6),(1072,1521939600,5),(1072,1540688400,6),(1072,1553994000,5),(1072,1572138000,6),(1072,1585443600,5),(1072,1603587600,6),(1072,1616893200,5),(1072,1635642000,6),(1072,1648342800,5),(1072,1667091600,6),(1072,1679792400,5),(1072,1698541200,6),(1072,1711846800,5),(1072,1729990800,6),(1072,1743296400,5),(1072,1761440400,6),(1072,1774746000,5),(1072,1792890000,6),(1072,1806195600,5),(1072,1824944400,6),(1072,1837645200,5),(1072,1856394000,6),(1072,1869094800,5),(1072,1887843600,6),(1072,1901149200,5),(1072,1919293200,6),(1072,1932598800,5),(1072,1950742800,6),(1072,1964048400,5),(1072,1982797200,6),(1072,1995498000,5),(1072,2014246800,6),(1072,2026947600,5),(1072,2045696400,6),(1072,2058397200,5),(1072,2077146000,6),(1072,2090451600,5),(1072,2108595600,6),(1072,2121901200,5),(1072,2140045200,6),(1073,-2147483648,2),(1073,-1693706400,1),(1073,-1680483600,2),(1073,-1663455600,3),(1073,-1650150000,4),(1073,-1632006000,3),(1073,-1618700400,4),(1073,-938905200,3),(1073,-857257200,4),(1073,-844556400,3),(1073,-828226800,4),(1073,-812502000,3),(1073,-796777200,4),(1073,-781052400,3),(1073,-777866400,1),(1073,-765327600,4),(1073,-746578800,3),(1073,-733359600,4),(1073,-728517600,5),(1073,-721260000,2),(1073,-716425200,3),(1073,-701910000,4),(1073,-684975600,3),(1073,-670460400,4),(1073,-654217200,3),(1073,-639010800,4),(1073,283993200,2),(1073,291776400,6),(1073,307501200,7),(1073,323830800,6),(1073,338950800,7),(1073,354675600,6),(1073,370400400,7),(1073,386125200,6),(1073,401850000,7),(1073,417574800,6),(1073,433299600,7),(1073,449024400,6),(1073,465354000,7),(1073,481078800,6),(1073,496803600,7),(1073,512528400,6),(1073,528253200,7),(1073,543978000,6),(1073,559702800,7),(1073,575427600,6),(1073,591152400,7),(1073,606877200,6),(1073,622602000,7),(1073,638326800,6),(1073,654656400,7),(1073,670381200,6),(1073,686106000,7),(1073,701830800,6),(1073,717555600,7),(1073,733280400,6),(1073,749005200,7),(1073,764730000,6),(1073,780454800,7),(1073,796179600,6),(1073,811904400,7),(1073,828234000,6),(1073,846378000,7),(1073,859683600,6),(1073,877827600,7),(1073,891133200,6),(1073,909277200,7),(1073,922582800,6),(1073,941331600,7),(1073,954032400,6),(1073,972781200,7),(1073,985482000,6),(1073,1004230800,7),(1073,1017536400,6),(1073,1035680400,7),(1073,1048986000,6),(1073,1067130000,7),(1073,1080435600,6),(1073,1099184400,7),(1073,1111885200,6),(1073,1130634000,7),(1073,1143334800,6),(1073,1162083600,7),(1073,1174784400,6),(1073,1193533200,7),(1073,1206838800,6),(1073,1224982800,7),(1073,1238288400,6),(1073,1256432400,7),(1073,1269738000,6),(1073,1288486800,7),(1073,1301187600,6),(1073,1319936400,7),(1073,1332637200,6),(1073,1351386000,7),(1073,1364691600,6),(1073,1382835600,7),(1073,1396141200,6),(1073,1414285200,7),(1073,1427590800,6),(1073,1445734800,7),(1073,1459040400,6),(1073,1477789200,7),(1073,1490490000,6),(1073,1509238800,7),(1073,1521939600,6),(1073,1540688400,7),(1073,1553994000,6),(1073,1572138000,7),(1073,1585443600,6),(1073,1603587600,7),(1073,1616893200,6),(1073,1635642000,7),(1073,1648342800,6),(1073,1667091600,7),(1073,1679792400,6),(1073,1698541200,7),(1073,1711846800,6),(1073,1729990800,7),(1073,1743296400,6),(1073,1761440400,7),(1073,1774746000,6),(1073,1792890000,7),(1073,1806195600,6),(1073,1824944400,7),(1073,1837645200,6),(1073,1856394000,7),(1073,1869094800,6),(1073,1887843600,7),(1073,1901149200,6),(1073,1919293200,7),(1073,1932598800,6),(1073,1950742800,7),(1073,1964048400,6),(1073,1982797200,7),(1073,1995498000,6),(1073,2014246800,7),(1073,2026947600,6),(1073,2045696400,7),(1073,2058397200,6),(1073,2077146000,7),(1073,2090451600,6),(1073,2108595600,7),(1073,2121901200,6),(1073,2140045200,7),(1074,-2147483648,1),(1074,-1632008194,2),(1074,-1618702594,1),(1074,-1601681794,2),(1074,-1597275394,1),(1074,-1377308194,3),(1074,-928029600,4),(1074,-899521200,7),(1074,-857257200,5),(1074,-844556400,6),(1074,-828226800,5),(1074,-812502000,6),(1074,-796777200,5),(1074,-795834000,4),(1074,354920400,8),(1074,370728000,4),(1074,386456400,8),(1074,402264000,4),(1074,417992400,8),(1074,433800000,4),(1074,449614800,8),(1074,465346800,9),(1074,481071600,10),(1074,496796400,9),(1074,512521200,10),(1074,528246000,9),(1074,543970800,10),(1074,559695600,9),(1074,575420400,10),(1074,591145200,9),(1074,606870000,11),(1074,622598400,12),(1074,638323200,11),(1074,654652800,12),(1074,670377600,11),(1074,686102400,12),(1074,701827200,11),(1074,717552000,12),(1074,733276800,11),(1074,749001600,12),(1074,764726400,11),(1074,780451200,12),(1074,796176000,11),(1074,811900800,12),(1074,828230400,11),(1074,843955200,12),(1074,853797600,3),(1074,859683600,13),(1074,877827600,14),(1074,891133200,13),(1074,909277200,14),(1074,922582800,13),(1074,941331600,14),(1074,951775200,3),(1074,985482000,13),(1074,1004230800,14),(1074,1017536400,13),(1074,1035680400,14),(1074,1048986000,13),(1074,1067130000,14),(1074,1080435600,13),(1074,1099184400,14),(1074,1111885200,13),(1074,1130634000,14),(1074,1143334800,13),(1074,1162083600,14),(1074,1174784400,13),(1074,1193533200,14),(1074,1206838800,13),(1074,1224982800,14),(1074,1238288400,13),(1074,1256432400,14),(1074,1269738000,13),(1074,1288486800,14),(1074,1301187600,13),(1074,1319936400,14),(1074,1332637200,13),(1074,1351386000,14),(1074,1364691600,13),(1074,1382835600,14),(1074,1396141200,13),(1074,1414285200,14),(1074,1427590800,13),(1074,1445734800,14),(1074,1459040400,13),(1074,1477789200,14),(1074,1490490000,13),(1074,1509238800,14),(1074,1521939600,13),(1074,1540688400,14),(1074,1553994000,13),(1074,1572138000,14),(1074,1585443600,13),(1074,1603587600,14),(1074,1616893200,13),(1074,1635642000,14),(1074,1648342800,13),(1074,1667091600,14),(1074,1679792400,13),(1074,1698541200,14),(1074,1711846800,13),(1074,1729990800,14),(1074,1743296400,13),(1074,1761440400,14),(1074,1774746000,13),(1074,1792890000,14),(1074,1806195600,13),(1074,1824944400,14),(1074,1837645200,13),(1074,1856394000,14),(1074,1869094800,13),(1074,1887843600,14),(1074,1901149200,13),(1074,1919293200,14),(1074,1932598800,13),(1074,1950742800,14),(1074,1964048400,13),(1074,1982797200,14),(1074,1995498000,13),(1074,2014246800,14),(1074,2026947600,13),(1074,2045696400,14),(1074,2058397200,13),(1074,2077146000,14),(1074,2090451600,13),(1074,2108595600,14),(1074,2121901200,13),(1074,2140045200,14),(1075,-2147483648,2),(1075,-1690765200,1),(1075,-1680487200,2),(1075,-1664758800,1),(1075,-1648951200,2),(1075,-1635123600,1),(1075,-1616896800,2),(1075,-1604278800,1),(1075,-1585533600,2),(1075,-1571014800,1),(1075,-1555293600,2),(1075,-932432400,1),(1075,-857257200,3),(1075,-844556400,4),(1075,-830311200,1),(1075,-828226800,3),(1075,-812502000,4),(1075,-807156000,1),(1075,-798073200,3),(1075,-781052400,1),(1075,-766717200,2),(1075,-750898800,4),(1075,-733359600,3),(1075,-719456400,4),(1075,-701917200,3),(1075,-689209200,4),(1075,-670460400,3),(1075,-114051600,4),(1075,-103168800,2),(1075,-81997200,4),(1075,-71715600,3),(1075,-50547600,4),(1075,-40266000,3),(1075,-18493200,4),(1075,-8211600,3),(1075,12956400,4),(1075,23238000,3),(1075,43801200,4),(1075,54687600,3),(1075,75855600,4),(1075,86742000,3),(1075,107910000,4),(1075,118191600,3),(1075,138754800,4),(1075,149641200,3),(1075,170809200,4),(1075,181090800,3),(1075,202258800,4),(1075,212540400,3),(1075,233103600,4),(1075,243990000,3),(1075,265158000,4),(1075,276044400,3),(1075,296607600,4),(1075,307494000,3),(1075,315529200,2),(1075,323830800,5),(1075,338950800,6),(1075,354675600,5),(1075,370400400,6),(1075,386125200,5),(1075,401850000,6),(1075,417574800,5),(1075,433299600,6),(1075,449024400,5),(1075,465354000,6),(1075,481078800,5),(1075,496803600,6),(1075,512528400,5),(1075,528253200,6),(1075,543978000,5),(1075,559702800,6),(1075,575427600,5),(1075,591152400,6),(1075,606877200,5),(1075,622602000,6),(1075,638326800,5),(1075,654656400,6),(1075,670381200,5),(1075,686106000,6),(1075,701830800,5),(1075,717555600,6),(1075,733280400,5),(1075,749005200,6),(1075,764730000,5),(1075,780454800,6),(1075,796179600,5),(1075,811904400,6),(1075,828234000,5),(1075,846378000,6),(1075,859683600,5),(1075,877827600,6),(1075,891133200,5),(1075,909277200,6),(1075,922582800,5),(1075,941331600,6),(1075,954032400,5),(1075,972781200,6),(1075,985482000,5),(1075,1004230800,6),(1075,1017536400,5),(1075,1035680400,6),(1075,1048986000,5),(1075,1067130000,6),(1075,1080435600,5),(1075,1099184400,6),(1075,1111885200,5),(1075,1130634000,6),(1075,1143334800,5),(1075,1162083600,6),(1075,1174784400,5),(1075,1193533200,6),(1075,1206838800,5),(1075,1224982800,6),(1075,1238288400,5),(1075,1256432400,6),(1075,1269738000,5),(1075,1288486800,6),(1075,1301187600,5),(1075,1319936400,6),(1075,1332637200,5),(1075,1351386000,6),(1075,1364691600,5),(1075,1382835600,6),(1075,1396141200,5),(1075,1414285200,6),(1075,1427590800,5),(1075,1445734800,6),(1075,1459040400,5),(1075,1477789200,6),(1075,1490490000,5),(1075,1509238800,6),(1075,1521939600,5),(1075,1540688400,6),(1075,1553994000,5),(1075,1572138000,6),(1075,1585443600,5),(1075,1603587600,6),(1075,1616893200,5),(1075,1635642000,6),(1075,1648342800,5),(1075,1667091600,6),(1075,1679792400,5),(1075,1698541200,6),(1075,1711846800,5),(1075,1729990800,6),(1075,1743296400,5),(1075,1761440400,6),(1075,1774746000,5),(1075,1792890000,6),(1075,1806195600,5),(1075,1824944400,6),(1075,1837645200,5),(1075,1856394000,6),(1075,1869094800,5),(1075,1887843600,6),(1075,1901149200,5),(1075,1919293200,6),(1075,1932598800,5),(1075,1950742800,6),(1075,1964048400,5),(1075,1982797200,6),(1075,1995498000,5),(1075,2014246800,6),(1075,2026947600,5),(1075,2045696400,6),(1075,2058397200,5),(1075,2077146000,6),(1075,2090451600,5),(1075,2108595600,6),(1075,2121901200,5),(1075,2140045200,6),(1076,-2147483648,0),(1076,-1593820800,1),(1076,-1247540400,2),(1076,354916800,3),(1076,370724400,2),(1076,386452800,3),(1076,402260400,2),(1076,417988800,3),(1076,433796400,2),(1076,449611200,3),(1076,465343200,4),(1076,481068000,5),(1076,496792800,4),(1076,512517600,5),(1076,528242400,4),(1076,543967200,5),(1076,559692000,4),(1076,575416800,5),(1076,591141600,4),(1076,606866400,6),(1076,622594800,7),(1076,638319600,6),(1076,654649200,7),(1076,670374000,8),(1076,686102400,7),(1076,687916800,2),(1076,701820000,5),(1076,717544800,4),(1076,733269600,5),(1076,748994400,4),(1076,764719200,5),(1076,780444000,4),(1076,796168800,5),(1076,811893600,4),(1076,828223200,5),(1076,846367200,4),(1076,859672800,5),(1076,877816800,4),(1076,891122400,5),(1076,909266400,4),(1076,922572000,5),(1076,941320800,4),(1076,954021600,5),(1076,972770400,4),(1076,985471200,5),(1076,1004220000,4),(1076,1017525600,5),(1076,1035669600,4),(1076,1048975200,5),(1076,1067119200,4),(1076,1080424800,5),(1076,1099173600,4),(1076,1111874400,5),(1076,1130623200,4),(1076,1143324000,5),(1076,1162072800,4),(1076,1174773600,5),(1076,1193522400,4),(1076,1206828000,5),(1076,1224972000,4),(1076,1238277600,5),(1076,1256421600,4),(1076,1269727200,6),(1076,1288479600,7),(1076,1301180400,4),(1076,2147483647,4),(1077,-2147483648,2),(1077,-1690765200,1),(1077,-1680487200,2),(1077,-1664758800,1),(1077,-1648951200,2),(1077,-1635123600,1),(1077,-1616896800,2),(1077,-1604278800,1),(1077,-1585533600,2),(1077,-1571014800,1),(1077,-1555293600,2),(1077,-932432400,1),(1077,-857257200,3),(1077,-844556400,4),(1077,-830311200,1),(1077,-828226800,3),(1077,-812502000,4),(1077,-807156000,1),(1077,-798073200,3),(1077,-781052400,1),(1077,-766717200,2),(1077,-750898800,4),(1077,-733359600,3),(1077,-719456400,4),(1077,-701917200,3),(1077,-689209200,4),(1077,-670460400,3),(1077,-114051600,4),(1077,-103168800,2),(1077,-81997200,4),(1077,-71715600,3),(1077,-50547600,4),(1077,-40266000,3),(1077,-18493200,4),(1077,-8211600,3),(1077,12956400,4),(1077,23238000,3),(1077,43801200,4),(1077,54687600,3),(1077,75855600,4),(1077,86742000,3),(1077,107910000,4),(1077,118191600,3),(1077,138754800,4),(1077,149641200,3),(1077,170809200,4),(1077,181090800,3),(1077,202258800,4),(1077,212540400,3),(1077,233103600,4),(1077,243990000,3),(1077,265158000,4),(1077,276044400,3),(1077,296607600,4),(1077,307494000,3),(1077,315529200,2),(1077,323830800,5),(1077,338950800,6),(1077,354675600,5),(1077,370400400,6),(1077,386125200,5),(1077,401850000,6),(1077,417574800,5),(1077,433299600,6),(1077,449024400,5),(1077,465354000,6),(1077,481078800,5),(1077,496803600,6),(1077,512528400,5),(1077,528253200,6),(1077,543978000,5),(1077,559702800,6),(1077,575427600,5),(1077,591152400,6),(1077,606877200,5),(1077,622602000,6),(1077,638326800,5),(1077,654656400,6),(1077,670381200,5),(1077,686106000,6),(1077,701830800,5),(1077,717555600,6),(1077,733280400,5),(1077,749005200,6),(1077,764730000,5),(1077,780454800,6),(1077,796179600,5),(1077,811904400,6),(1077,828234000,5),(1077,846378000,6),(1077,859683600,5),(1077,877827600,6),(1077,891133200,5),(1077,909277200,6),(1077,922582800,5),(1077,941331600,6),(1077,954032400,5),(1077,972781200,6),(1077,985482000,5),(1077,1004230800,6),(1077,1017536400,5),(1077,1035680400,6),(1077,1048986000,5),(1077,1067130000,6),(1077,1080435600,5),(1077,1099184400,6),(1077,1111885200,5),(1077,1130634000,6),(1077,1143334800,5),(1077,1162083600,6),(1077,1174784400,5),(1077,1193533200,6),(1077,1206838800,5),(1077,1224982800,6),(1077,1238288400,5),(1077,1256432400,6),(1077,1269738000,5),(1077,1288486800,6),(1077,1301187600,5),(1077,1319936400,6),(1077,1332637200,5),(1077,1351386000,6),(1077,1364691600,5),(1077,1382835600,6),(1077,1396141200,5),(1077,1414285200,6),(1077,1427590800,5),(1077,1445734800,6),(1077,1459040400,5),(1077,1477789200,6),(1077,1490490000,5),(1077,1509238800,6),(1077,1521939600,5),(1077,1540688400,6),(1077,1553994000,5),(1077,1572138000,6),(1077,1585443600,5),(1077,1603587600,6),(1077,1616893200,5),(1077,1635642000,6),(1077,1648342800,5),(1077,1667091600,6),(1077,1679792400,5),(1077,1698541200,6),(1077,1711846800,5),(1077,1729990800,6),(1077,1743296400,5),(1077,1761440400,6),(1077,1774746000,5),(1077,1792890000,6),(1077,1806195600,5),(1077,1824944400,6),(1077,1837645200,5),(1077,1856394000,6),(1077,1869094800,5),(1077,1887843600,6),(1077,1901149200,5),(1077,1919293200,6),(1077,1932598800,5),(1077,1950742800,6),(1077,1964048400,5),(1077,1982797200,6),(1077,1995498000,5),(1077,2014246800,6),(1077,2026947600,5),(1077,2045696400,6),(1077,2058397200,5),(1077,2077146000,6),(1077,2090451600,5),(1077,2108595600,6),(1077,2121901200,5),(1077,2140045200,6),(1078,-2147483648,1),(1078,-905824800,4),(1078,-857257200,2),(1078,-844556400,3),(1078,-828226800,2),(1078,-812502000,3),(1078,-796777200,2),(1078,-788922000,1),(1078,-777942000,3),(1078,-766623600,2),(1078,407199600,1),(1078,417574800,5),(1078,433299600,6),(1078,449024400,5),(1078,465354000,6),(1078,481078800,5),(1078,496803600,6),(1078,512528400,5),(1078,528253200,6),(1078,543978000,5),(1078,559702800,6),(1078,575427600,5),(1078,591152400,6),(1078,606877200,5),(1078,622602000,6),(1078,638326800,5),(1078,654656400,6),(1078,670381200,5),(1078,686106000,6),(1078,701830800,5),(1078,717555600,6),(1078,733280400,5),(1078,749005200,6),(1078,764730000,5),(1078,780454800,6),(1078,796179600,5),(1078,811904400,6),(1078,828234000,5),(1078,846378000,6),(1078,859683600,5),(1078,877827600,6),(1078,891133200,5),(1078,909277200,6),(1078,922582800,5),(1078,941331600,6),(1078,954032400,5),(1078,972781200,6),(1078,985482000,5),(1078,1004230800,6),(1078,1017536400,5),(1078,1035680400,6),(1078,1048986000,5),(1078,1067130000,6),(1078,1080435600,5),(1078,1099184400,6),(1078,1111885200,5),(1078,1130634000,6),(1078,1143334800,5),(1078,1162083600,6),(1078,1174784400,5),(1078,1193533200,6),(1078,1206838800,5),(1078,1224982800,6),(1078,1238288400,5),(1078,1256432400,6),(1078,1269738000,5),(1078,1288486800,6),(1078,1301187600,5),(1078,1319936400,6),(1078,1332637200,5),(1078,1351386000,6),(1078,1364691600,5),(1078,1382835600,6),(1078,1396141200,5),(1078,1414285200,6),(1078,1427590800,5),(1078,1445734800,6),(1078,1459040400,5),(1078,1477789200,6),(1078,1490490000,5),(1078,1509238800,6),(1078,1521939600,5),(1078,1540688400,6),(1078,1553994000,5),(1078,1572138000,6),(1078,1585443600,5),(1078,1603587600,6),(1078,1616893200,5),(1078,1635642000,6),(1078,1648342800,5),(1078,1667091600,6),(1078,1679792400,5),(1078,1698541200,6),(1078,1711846800,5),(1078,1729990800,6),(1078,1743296400,5),(1078,1761440400,6),(1078,1774746000,5),(1078,1792890000,6),(1078,1806195600,5),(1078,1824944400,6),(1078,1837645200,5),(1078,1856394000,6),(1078,1869094800,5),(1078,1887843600,6),(1078,1901149200,5),(1078,1919293200,6),(1078,1932598800,5),(1078,1950742800,6),(1078,1964048400,5),(1078,1982797200,6),(1078,1995498000,5),(1078,2014246800,6),(1078,2026947600,5),(1078,2045696400,6),(1078,2058397200,5),(1078,2077146000,6),(1078,2090451600,5),(1078,2108595600,6),(1078,2121901200,5),(1078,2140045200,6),(1079,-2147483648,0),(1079,-1593820800,1),(1079,-1247540400,3),(1079,354916800,2),(1079,370724400,3),(1079,386452800,2),(1079,402260400,3),(1079,417988800,2),(1079,433796400,3),(1079,449611200,2),(1079,465343200,4),(1079,481068000,5),(1079,496792800,4),(1079,512517600,5),(1079,528242400,4),(1079,543967200,5),(1079,559692000,4),(1079,575416800,6),(1079,591145200,7),(1079,606870000,6),(1079,622594800,7),(1079,638319600,6),(1079,654649200,7),(1079,670374000,4),(1079,701820000,6),(1079,717548400,7),(1079,733273200,6),(1079,748998000,7),(1079,764722800,6),(1079,780447600,7),(1079,796172400,6),(1079,811897200,7),(1079,828226800,6),(1079,846370800,7),(1079,859676400,6),(1079,877820400,7),(1079,891126000,6),(1079,909270000,7),(1079,922575600,6),(1079,941324400,7),(1079,954025200,6),(1079,972774000,7),(1079,985474800,6),(1079,1004223600,7),(1079,1017529200,6),(1079,1035673200,7),(1079,1048978800,6),(1079,1067122800,7),(1079,1080428400,6),(1079,1099177200,7),(1079,1111878000,6),(1079,1130626800,7),(1079,1143327600,6),(1079,1162076400,7),(1079,1174777200,6),(1079,1193526000,7),(1079,1206831600,6),(1079,1224975600,7),(1079,1238281200,6),(1079,1256425200,7),(1079,1269730800,6),(1079,1288479600,7),(1079,1301180400,4),(1079,1414274400,7),(1079,1480806000,4),(1079,2147483647,4),(1080,-2147483648,1),(1080,-1441160160,2),(1080,-1247536800,3),(1080,-888894000,6),(1080,-857257200,4),(1080,-844556400,5),(1080,-828226800,4),(1080,-812502000,5),(1080,-811648800,3),(1080,354920400,7),(1080,370728000,3),(1080,386456400,7),(1080,402264000,3),(1080,417992400,7),(1080,433800000,3),(1080,449614800,7),(1080,465346800,8),(1080,481071600,9),(1080,496796400,8),(1080,512521200,9),(1080,528246000,8),(1080,543970800,9),(1080,559695600,8),(1080,575420400,9),(1080,591145200,8),(1080,606870000,9),(1080,622594800,8),(1080,631141200,3),(1080,646786800,2),(1080,701820000,10),(1080,717541200,2),(1080,733269600,10),(1080,748990800,2),(1080,764719200,10),(1080,767739600,7),(1080,780436800,3),(1080,796165200,7),(1080,811886400,3),(1080,828219600,9),(1080,846374400,8),(1080,852066000,3),(1080,859683600,11),(1080,877827600,12),(1080,891133200,11),(1080,909277200,12),(1080,922582800,11),(1080,941331600,12),(1080,954032400,11),(1080,972781200,12),(1080,985482000,11),(1080,1004230800,12),(1080,1017536400,11),(1080,1035680400,12),(1080,1048986000,11),(1080,1067130000,12),(1080,1080435600,11),(1080,1099184400,12),(1080,1111885200,11),(1080,1130634000,12),(1080,1143334800,11),(1080,1162083600,12),(1080,1174784400,11),(1080,1193533200,12),(1080,1206838800,11),(1080,1224982800,12),(1080,1238288400,11),(1080,1256432400,12),(1080,1269738000,11),(1080,1288486800,12),(1080,1301187600,11),(1080,1319936400,12),(1080,1332637200,11),(1080,1351386000,12),(1080,1364691600,11),(1080,1382835600,12),(1080,1396137600,13),(1080,1414274400,8),(1081,-2147483648,1),(1081,-905824800,4),(1081,-857257200,2),(1081,-844556400,3),(1081,-828226800,2),(1081,-812502000,3),(1081,-796777200,2),(1081,-788922000,1),(1081,-777942000,3),(1081,-766623600,2),(1081,407199600,1),(1081,417574800,5),(1081,433299600,6),(1081,449024400,5),(1081,465354000,6),(1081,481078800,5),(1081,496803600,6),(1081,512528400,5),(1081,528253200,6),(1081,543978000,5),(1081,559702800,6),(1081,575427600,5),(1081,591152400,6),(1081,606877200,5),(1081,622602000,6),(1081,638326800,5),(1081,654656400,6),(1081,670381200,5),(1081,686106000,6),(1081,701830800,5),(1081,717555600,6),(1081,733280400,5),(1081,749005200,6),(1081,764730000,5),(1081,780454800,6),(1081,796179600,5),(1081,811904400,6),(1081,828234000,5),(1081,846378000,6),(1081,859683600,5),(1081,877827600,6),(1081,891133200,5),(1081,909277200,6),(1081,922582800,5),(1081,941331600,6),(1081,954032400,5),(1081,972781200,6),(1081,985482000,5),(1081,1004230800,6),(1081,1017536400,5),(1081,1035680400,6),(1081,1048986000,5),(1081,1067130000,6),(1081,1080435600,5),(1081,1099184400,6),(1081,1111885200,5),(1081,1130634000,6),(1081,1143334800,5),(1081,1162083600,6),(1081,1174784400,5),(1081,1193533200,6),(1081,1206838800,5),(1081,1224982800,6),(1081,1238288400,5),(1081,1256432400,6),(1081,1269738000,5),(1081,1288486800,6),(1081,1301187600,5),(1081,1319936400,6),(1081,1332637200,5),(1081,1351386000,6),(1081,1364691600,5),(1081,1382835600,6),(1081,1396141200,5),(1081,1414285200,6),(1081,1427590800,5),(1081,1445734800,6),(1081,1459040400,5),(1081,1477789200,6),(1081,1490490000,5),(1081,1509238800,6),(1081,1521939600,5),(1081,1540688400,6),(1081,1553994000,5),(1081,1572138000,6),(1081,1585443600,5),(1081,1603587600,6),(1081,1616893200,5),(1081,1635642000,6),(1081,1648342800,5),(1081,1667091600,6),(1081,1679792400,5),(1081,1698541200,6),(1081,1711846800,5),(1081,1729990800,6),(1081,1743296400,5),(1081,1761440400,6),(1081,1774746000,5),(1081,1792890000,6),(1081,1806195600,5),(1081,1824944400,6),(1081,1837645200,5),(1081,1856394000,6),(1081,1869094800,5),(1081,1887843600,6),(1081,1901149200,5),(1081,1919293200,6),(1081,1932598800,5),(1081,1950742800,6),(1081,1964048400,5),(1081,1982797200,6),(1081,1995498000,5),(1081,2014246800,6),(1081,2026947600,5),(1081,2045696400,6),(1081,2058397200,5),(1081,2077146000,6),(1081,2090451600,5),(1081,2108595600,6),(1081,2121901200,5),(1081,2140045200,6),(1082,-2147483648,1),(1082,-857257200,2),(1082,-844556400,3),(1082,-828226800,2),(1082,-812502000,3),(1082,-796777200,2),(1082,-788922000,4),(1082,-781048800,1),(1082,291762000,5),(1082,307576800,1),(1082,323816400,5),(1082,339026400,1),(1082,355266000,5),(1082,370393200,1),(1082,386715600,5),(1082,401846400,6),(1082,417571200,7),(1082,433296000,6),(1082,449020800,7),(1082,465350400,6),(1082,481075200,7),(1082,496800000,6),(1082,512524800,7),(1082,528249600,6),(1082,543974400,7),(1082,559699200,6),(1082,575424000,7),(1082,591148800,6),(1082,606873600,7),(1082,622598400,6),(1082,638323200,7),(1082,654652800,6),(1082,662680800,1),(1082,670370400,5),(1082,686091600,1),(1082,701820000,5),(1082,717541200,1),(1082,733269600,5),(1082,748990800,1),(1082,764719200,5),(1082,780440400,1),(1082,796168800,5),(1082,811890000,1),(1082,828223200,5),(1082,846363600,1),(1082,859683600,8),(1082,877827600,9),(1082,891133200,8),(1082,909277200,9),(1082,922582800,8),(1082,941331600,9),(1082,954032400,8),(1082,972781200,9),(1082,985482000,8),(1082,1004230800,9),(1082,1017536400,8),(1082,1035680400,9),(1082,1048986000,8),(1082,1067130000,9),(1082,1080435600,8),(1082,1099184400,9),(1082,1111885200,8),(1082,1130634000,9),(1082,1143334800,8),(1082,1162083600,9),(1082,1174784400,8),(1082,1193533200,9),(1082,1206838800,8),(1082,1224982800,9),(1082,1238288400,8),(1082,1256432400,9),(1082,1269738000,8),(1082,1288486800,9),(1082,1301187600,8),(1082,1319936400,9),(1082,1332637200,8),(1082,1351386000,9),(1082,1364691600,8),(1082,1382835600,9),(1082,1396141200,8),(1082,1414285200,9),(1082,1427590800,8),(1082,1445734800,9),(1082,1459040400,8),(1082,1477789200,9),(1082,1490490000,8),(1082,1509238800,9),(1082,1521939600,8),(1082,1540688400,9),(1082,1553994000,8),(1082,1572138000,9),(1082,1585443600,8),(1082,1603587600,9),(1082,1616893200,8),(1082,1635642000,9),(1082,1648342800,8),(1082,1667091600,9),(1082,1679792400,8),(1082,1698541200,9),(1082,1711846800,8),(1082,1729990800,9),(1082,1743296400,8),(1082,1761440400,9),(1082,1774746000,8),(1082,1792890000,9),(1082,1806195600,8),(1082,1824944400,9),(1082,1837645200,8),(1082,1856394000,9),(1082,1869094800,8),(1082,1887843600,9),(1082,1901149200,8),(1082,1919293200,9),(1082,1932598800,8),(1082,1950742800,9),(1082,1964048400,8),(1082,1982797200,9),(1082,1995498000,8),(1082,2014246800,9),(1082,2026947600,8),(1082,2045696400,9),(1082,2058397200,8),(1082,2077146000,9),(1082,2090451600,8),(1082,2108595600,9),(1082,2121901200,8),(1082,2140045200,9),(1083,-2147483648,1),(1083,-1692496800,2),(1083,-1680483600,1),(1083,323830800,3),(1083,338950800,4),(1083,354675600,3),(1083,370400400,4),(1083,386125200,3),(1083,401850000,4),(1083,417574800,3),(1083,433299600,4),(1083,449024400,3),(1083,465354000,4),(1083,481078800,3),(1083,496803600,4),(1083,512528400,3),(1083,528253200,4),(1083,543978000,3),(1083,559702800,4),(1083,575427600,3),(1083,591152400,4),(1083,606877200,3),(1083,622602000,4),(1083,638326800,3),(1083,654656400,4),(1083,670381200,3),(1083,686106000,4),(1083,701830800,3),(1083,717555600,4),(1083,733280400,3),(1083,749005200,4),(1083,764730000,3),(1083,780454800,4),(1083,796179600,3),(1083,811904400,4),(1083,828234000,3),(1083,846378000,4),(1083,859683600,3),(1083,877827600,4),(1083,891133200,3),(1083,909277200,4),(1083,922582800,3),(1083,941331600,4),(1083,954032400,3),(1083,972781200,4),(1083,985482000,3),(1083,1004230800,4),(1083,1017536400,3),(1083,1035680400,4),(1083,1048986000,3),(1083,1067130000,4),(1083,1080435600,3),(1083,1099184400,4),(1083,1111885200,3),(1083,1130634000,4),(1083,1143334800,3),(1083,1162083600,4),(1083,1174784400,3),(1083,1193533200,4),(1083,1206838800,3),(1083,1224982800,4),(1083,1238288400,3),(1083,1256432400,4),(1083,1269738000,3),(1083,1288486800,4),(1083,1301187600,3),(1083,1319936400,4),(1083,1332637200,3),(1083,1351386000,4),(1083,1364691600,3),(1083,1382835600,4),(1083,1396141200,3),(1083,1414285200,4),(1083,1427590800,3),(1083,1445734800,4),(1083,1459040400,3),(1083,1477789200,4),(1083,1490490000,3),(1083,1509238800,4),(1083,1521939600,3),(1083,1540688400,4),(1083,1553994000,3),(1083,1572138000,4),(1083,1585443600,3),(1083,1603587600,4),(1083,1616893200,3),(1083,1635642000,4),(1083,1648342800,3),(1083,1667091600,4),(1083,1679792400,3),(1083,1698541200,4),(1083,1711846800,3),(1083,1729990800,4),(1083,1743296400,3),(1083,1761440400,4),(1083,1774746000,3),(1083,1792890000,4),(1083,1806195600,3),(1083,1824944400,4),(1083,1837645200,3),(1083,1856394000,4),(1083,1869094800,3),(1083,1887843600,4),(1083,1901149200,3),(1083,1919293200,4),(1083,1932598800,3),(1083,1950742800,4),(1083,1964048400,3),(1083,1982797200,4),(1083,1995498000,3),(1083,2014246800,4),(1083,2026947600,3),(1083,2045696400,4),(1083,2058397200,3),(1083,2077146000,4),(1083,2090451600,3),(1083,2108595600,4),(1083,2121901200,3),(1083,2140045200,4),(1084,-2147483648,1),(1084,-1638322740,4),(1084,-1632006000,2),(1084,-1618700400,3),(1084,-1593824400,1),(1084,-1535938740,5),(1084,-927943200,6),(1084,-892954800,7),(1084,-857257200,3),(1084,-844556400,2),(1084,-828226800,3),(1084,-812502000,2),(1084,-797652000,6),(1084,354920400,8),(1084,370728000,6),(1084,386456400,8),(1084,402264000,6),(1084,417992400,8),(1084,433800000,6),(1084,449614800,8),(1084,465346800,9),(1084,481071600,10),(1084,496796400,9),(1084,512521200,10),(1084,528246000,9),(1084,543970800,10),(1084,559695600,9),(1084,575420400,10),(1084,591145200,9),(1084,606870000,11),(1084,622598400,12),(1084,638323200,11),(1084,654652800,12),(1084,670377600,11),(1084,686102400,12),(1084,701827200,11),(1084,717552000,12),(1084,733276800,11),(1084,749001600,12),(1084,764726400,11),(1084,780451200,12),(1084,796176000,11),(1084,811900800,12),(1084,828230400,11),(1084,846374400,12),(1084,859680000,11),(1084,877824000,12),(1084,891129600,11),(1084,906411600,15),(1084,909277200,13),(1084,922582800,14),(1084,941331600,5),(1084,1017536400,14),(1084,1035680400,13),(1084,1048986000,14),(1084,1067130000,13),(1084,1080435600,14),(1084,1099184400,13),(1084,1111885200,14),(1084,1130634000,13),(1084,1143334800,14),(1084,1162083600,13),(1084,1174784400,14),(1084,1193533200,13),(1084,1206838800,14),(1084,1224982800,13),(1084,1238288400,14),(1084,1256432400,13),(1084,1269738000,14),(1084,1288486800,13),(1084,1301187600,14),(1084,1319936400,13),(1084,1332637200,14),(1084,1351386000,13),(1084,1364691600,14),(1084,1382835600,13),(1084,1396141200,14),(1084,1414285200,13),(1084,1427590800,14),(1084,1445734800,13),(1084,1459040400,14),(1084,1477789200,13),(1084,1490490000,14),(1084,1509238800,13),(1084,1521939600,14),(1084,1540688400,13),(1084,1553994000,14),(1084,1572138000,13),(1084,1585443600,14),(1084,1603587600,13),(1084,1616893200,14),(1084,1635642000,13),(1084,1648342800,14),(1084,1667091600,13),(1084,1679792400,14),(1084,1698541200,13),(1084,1711846800,14),(1084,1729990800,13),(1084,1743296400,14),(1084,1761440400,13),(1084,1774746000,14),(1084,1792890000,13),(1084,1806195600,14),(1084,1824944400,13),(1084,1837645200,14),(1084,1856394000,13),(1084,1869094800,14),(1084,1887843600,13),(1084,1901149200,14),(1084,1919293200,13),(1084,1932598800,14),(1084,1950742800,13),(1084,1964048400,14),(1084,1982797200,13),(1084,1995498000,14),(1084,2014246800,13),(1084,2026947600,14),(1084,2045696400,13),(1084,2058397200,14),(1084,2077146000,13),(1084,2090451600,14),(1084,2108595600,13),(1084,2121901200,14),(1084,2140045200,13),(1085,-2147483648,0),(1085,-1767230360,1),(1085,-932346000,2),(1085,-857257200,1),(1085,-844556400,2),(1085,-843519600,1),(1085,136854000,2),(1085,149896800,1),(1085,168130800,2),(1085,181432800,1),(1085,199839600,2),(1085,213141600,1),(1085,231894000,2),(1085,244591200,1),(1085,263257200,2),(1085,276040800,1),(1085,294706800,2),(1085,307490400,1),(1085,326156400,2),(1085,339458400,1),(1085,357087600,2),(1085,370389600,1),(1085,389142000,2),(1085,402444000,1),(1085,419468400,2),(1085,433807200,1),(1085,449622000,2),(1085,465354000,3),(1085,481078800,4),(1085,496803600,3),(1085,512528400,4),(1085,528253200,3),(1085,543978000,4),(1085,559702800,3),(1085,575427600,4),(1085,591152400,3),(1085,606877200,4),(1085,622602000,3),(1085,638326800,4),(1085,654656400,3),(1085,670381200,4),(1085,686106000,3),(1085,701830800,4),(1085,717555600,3),(1085,733280400,4),(1085,749005200,3),(1085,764730000,4),(1085,780454800,3),(1085,796179600,4),(1085,811904400,3),(1085,828234000,4),(1085,846378000,3),(1085,859683600,4),(1085,877827600,3),(1085,891133200,4),(1085,909277200,3),(1085,922582800,4),(1085,941331600,3),(1085,954032400,4),(1085,972781200,3),(1085,985482000,4),(1085,1004230800,3),(1085,1017536400,4),(1085,1035680400,3),(1085,1048986000,4),(1085,1067130000,3),(1085,1080435600,4),(1085,1099184400,3),(1085,1111885200,4),(1085,1130634000,3),(1085,1143334800,4),(1085,1162083600,3),(1085,1174784400,4),(1085,1193533200,3),(1085,1206838800,4),(1085,1224982800,3),(1085,1238288400,4),(1085,1256432400,3),(1085,1269738000,4),(1085,1288486800,3),(1085,1301187600,4),(1085,1319936400,3),(1085,1332637200,4),(1085,1351386000,3),(1085,1364691600,4),(1085,1382835600,3),(1085,1396141200,4),(1085,1414285200,3),(1085,1427590800,4),(1085,1445734800,3),(1085,1459040400,4),(1085,1477789200,3),(1085,1490490000,4),(1085,1509238800,3),(1085,1521939600,4),(1085,1540688400,3),(1085,1553994000,4),(1085,1572138000,3),(1085,1585443600,4),(1085,1603587600,3),(1085,1616893200,4),(1085,1635642000,3),(1085,1648342800,4),(1085,1667091600,3),(1085,1679792400,4),(1085,1698541200,3),(1085,1711846800,4),(1085,1729990800,3),(1085,1743296400,4),(1085,1761440400,3),(1085,1774746000,4),(1085,1792890000,3),(1085,1806195600,4),(1085,1824944400,3),(1085,1837645200,4),(1085,1856394000,3),(1085,1869094800,4),(1085,1887843600,3),(1085,1901149200,4),(1085,1919293200,3),(1085,1932598800,4),(1085,1950742800,3),(1085,1964048400,4),(1085,1982797200,3),(1085,1995498000,4),(1085,2014246800,3),(1085,2026947600,4),(1085,2045696400,3),(1085,2058397200,4),(1085,2077146000,3),(1085,2090451600,4),(1085,2108595600,3),(1085,2121901200,4),(1085,2140045200,3),(1086,-2147483648,1),(1086,-1637114100,2),(1086,-1213148664,5),(1086,-1187056800,3),(1086,-1175479200,4),(1086,-1159754400,3),(1086,-1144029600,4),(1086,-1127700000,3),(1086,-1111975200,4),(1086,-1096250400,3),(1086,-1080525600,4),(1086,-1064800800,3),(1086,-1049076000,4),(1086,-1033351200,3),(1086,-1017626400,4),(1086,-1001901600,3),(1086,-986176800,4),(1086,-970452000,3),(1086,-954727200,4),(1086,-927165600,6),(1086,-898138800,9),(1086,-857257200,7),(1086,-844556400,8),(1086,-828226800,7),(1086,-812502000,8),(1086,-800157600,11),(1086,354920400,10),(1086,370728000,11),(1086,386456400,10),(1086,402264000,11),(1086,417992400,10),(1086,433800000,11),(1086,449614800,10),(1086,465346800,12),(1086,481071600,13),(1086,496796400,12),(1086,512521200,13),(1086,528246000,12),(1086,543970800,13),(1086,559695600,12),(1086,575420400,13),(1086,591145200,12),(1086,606870000,13),(1086,622594800,12),(1086,638319600,13),(1086,641944800,6),(1086,654652800,4),(1086,670377600,3),(1086,686102400,4),(1086,694216800,5),(1086,701820000,6),(1086,717541200,5),(1086,733269600,6),(1086,748990800,5),(1086,764719200,6),(1086,780440400,5),(1086,796168800,6),(1086,811890000,5),(1086,828223200,6),(1086,846363600,5),(1086,859680000,6),(1086,877824000,5),(1086,891129600,6),(1086,909273600,5),(1086,922579200,6),(1086,941328000,5),(1086,954028800,6),(1086,972777600,5),(1086,985478400,6),(1086,1004227200,5),(1086,1017532800,6),(1086,1035676800,5),(1086,1048982400,6),(1086,1067126400,5),(1086,1080432000,6),(1086,1099180800,5),(1086,1111881600,6),(1086,1130630400,5),(1086,1143331200,6),(1086,1162080000,5),(1086,1174780800,6),(1086,1193529600,5),(1086,1206835200,6),(1086,1224979200,5),(1086,1238284800,6),(1086,1256428800,5),(1086,1269734400,6),(1086,1288483200,5),(1086,1301184000,6),(1086,1319932800,5),(1086,1332633600,6),(1086,1351382400,5),(1086,1364688000,6),(1086,1382832000,5),(1086,1396137600,6),(1086,1414281600,5),(1086,1427587200,6),(1086,1445731200,5),(1086,1459036800,6),(1086,1477785600,5),(1086,1490486400,6),(1086,1509235200,5),(1086,1521936000,6),(1086,1540684800,5),(1086,1553990400,6),(1086,1572134400,5),(1086,1585440000,6),(1086,1603584000,5),(1086,1616889600,6),(1086,1635638400,5),(1086,1648339200,6),(1086,1667088000,5),(1086,1679788800,6),(1086,1698537600,5),(1086,1711843200,6),(1086,1729987200,5),(1086,1743292800,6),(1086,1761436800,5),(1086,1774742400,6),(1086,1792886400,5),(1086,1806192000,6),(1086,1824940800,5),(1086,1837641600,6),(1086,1856390400,5),(1086,1869091200,6),(1086,1887840000,5),(1086,1901145600,6),(1086,1919289600,5),(1086,1932595200,6),(1086,1950739200,5),(1086,1964044800,6),(1086,1982793600,5),(1086,1995494400,6),(1086,2014243200,5),(1086,2026944000,6),(1086,2045692800,5),(1086,2058393600,6),(1086,2077142400,5),(1086,2090448000,6),(1086,2108592000,5),(1086,2121897600,6),(1086,2140041600,5),(1087,-2147483648,0),(1087,-1593820800,1),(1087,-1247540400,3),(1087,354916800,2),(1087,370724400,3),(1087,386452800,2),(1087,402260400,3),(1087,417988800,2),(1087,433796400,3),(1087,449611200,2),(1087,465343200,4),(1087,481068000,5),(1087,496792800,4),(1087,512517600,5),(1087,528242400,4),(1087,543967200,5),(1087,559692000,4),(1087,575416800,5),(1087,591141600,4),(1087,606866400,6),(1087,622594800,7),(1087,638319600,6),(1087,654649200,7),(1087,670374000,8),(1087,686102400,9),(1087,695779200,7),(1087,701823600,6),(1087,717548400,7),(1087,733273200,6),(1087,748998000,7),(1087,764722800,6),(1087,780447600,7),(1087,796172400,6),(1087,811897200,7),(1087,828226800,6),(1087,846370800,7),(1087,859676400,6),(1087,877820400,7),(1087,891126000,6),(1087,909270000,7),(1087,922575600,6),(1087,941324400,7),(1087,954025200,6),(1087,972774000,7),(1087,985474800,6),(1087,1004223600,7),(1087,1017529200,6),(1087,1035673200,7),(1087,1048978800,6),(1087,1067122800,7),(1087,1080428400,6),(1087,1099177200,7),(1087,1111878000,6),(1087,1130626800,7),(1087,1143327600,6),(1087,1162076400,7),(1087,1174777200,6),(1087,1193526000,7),(1087,1206831600,6),(1087,1224975600,7),(1087,1238281200,6),(1087,1256425200,7),(1087,1269730800,6),(1087,1288479600,7),(1087,1301180400,4),(1087,1414274400,7),(1087,1459033200,4),(1087,2147483647,4),(1088,-2147483648,1),(1088,-938905200,2),(1088,-857257200,3),(1088,-844556400,2),(1088,-828226800,3),(1088,-812502000,2),(1088,-796874400,4),(1088,-794714400,1),(1088,-773456400,6),(1088,354920400,5),(1088,370728000,6),(1088,386456400,5),(1088,402264000,6),(1088,417992400,5),(1088,433800000,6),(1088,449614800,5),(1088,465346800,7),(1088,481071600,8),(1088,496796400,7),(1088,512521200,8),(1088,528246000,7),(1088,543970800,8),(1088,559695600,7),(1088,575420400,8),(1088,591145200,7),(1088,606870000,8),(1088,622594800,7),(1088,631141200,6),(1088,646786800,1),(1088,670384800,9),(1088,701820000,10),(1088,717541200,9),(1088,733269600,10),(1088,748990800,9),(1088,764719200,10),(1088,780440400,9),(1088,796179600,11),(1088,811904400,12),(1088,828234000,11),(1088,846378000,12),(1088,859683600,11),(1088,877827600,12),(1088,891133200,11),(1088,909277200,12),(1088,922582800,11),(1088,941331600,12),(1088,954032400,11),(1088,972781200,12),(1088,985482000,11),(1088,1004230800,12),(1088,1017536400,11),(1088,1035680400,12),(1088,1048986000,11),(1088,1067130000,12),(1088,1080435600,11),(1088,1099184400,12),(1088,1111885200,11),(1088,1130634000,12),(1088,1143334800,11),(1088,1162083600,12),(1088,1174784400,11),(1088,1193533200,12),(1088,1206838800,11),(1088,1224982800,12),(1088,1238288400,11),(1088,1256432400,12),(1088,1269738000,11),(1088,1288486800,12),(1088,1301187600,11),(1088,1319936400,12),(1088,1332637200,11),(1088,1351386000,12),(1088,1364691600,11),(1088,1382835600,12),(1088,1396141200,11),(1088,1414285200,12),(1088,1427590800,11),(1088,1445734800,12),(1088,1459040400,11),(1088,1477789200,12),(1088,1490490000,11),(1088,1509238800,12),(1088,1521939600,11),(1088,1540688400,12),(1088,1553994000,11),(1088,1572138000,12),(1088,1585443600,11),(1088,1603587600,12),(1088,1616893200,11),(1088,1635642000,12),(1088,1648342800,11),(1088,1667091600,12),(1088,1679792400,11),(1088,1698541200,12),(1088,1711846800,11),(1088,1729990800,12),(1088,1743296400,11),(1088,1761440400,12),(1088,1774746000,11),(1088,1792890000,12),(1088,1806195600,11),(1088,1824944400,12),(1088,1837645200,11),(1088,1856394000,12),(1088,1869094800,11),(1088,1887843600,12),(1088,1901149200,11),(1088,1919293200,12),(1088,1932598800,11),(1088,1950742800,12),(1088,1964048400,11),(1088,1982797200,12),(1088,1995498000,11),(1088,2014246800,12),(1088,2026947600,11),(1088,2045696400,12),(1088,2058397200,11),(1088,2077146000,12),(1088,2090451600,11),(1088,2108595600,12),(1088,2121901200,11),(1088,2140045200,12),(1089,-2147483648,2),(1089,-904435200,1),(1089,-891129600,2),(1089,-872985600,1),(1089,-859680000,2),(1089,354675600,3),(1089,370400400,4),(1089,386125200,3),(1089,401850000,4),(1089,417574800,3),(1089,433299600,4),(1089,449024400,3),(1089,465354000,4),(1089,481078800,3),(1089,496803600,4),(1089,512528400,3),(1089,528253200,4),(1089,543978000,3),(1089,559702800,4),(1089,575427600,3),(1089,591152400,4),(1089,606877200,3),(1089,622602000,4),(1089,638326800,3),(1089,654656400,4),(1089,670381200,3),(1089,686106000,4),(1089,701830800,3),(1089,717555600,4),(1089,733280400,3),(1089,749005200,4),(1089,764730000,3),(1089,780454800,4),(1089,796179600,3),(1089,811904400,4),(1089,828234000,3),(1089,846378000,4),(1089,859683600,3),(1089,877827600,4),(1089,891133200,3),(1089,909277200,4),(1089,922582800,3),(1089,941331600,4),(1089,954032400,3),(1089,972781200,4),(1089,985482000,3),(1089,1004230800,4),(1089,1017536400,3),(1089,1035680400,4),(1089,1048986000,3),(1089,1067130000,4),(1089,1080435600,3),(1089,1099184400,4),(1089,1111885200,3),(1089,1130634000,4),(1089,1143334800,3),(1089,1162083600,4),(1089,1174784400,3),(1089,1193533200,4),(1089,1206838800,3),(1089,1224982800,4),(1089,1238288400,3),(1089,1256432400,4),(1089,1269738000,3),(1089,1288486800,4),(1089,1301187600,3),(1089,1319936400,4),(1089,1332637200,3),(1089,1351386000,4),(1089,1364691600,3),(1089,1382835600,4),(1089,1396141200,3),(1089,1414285200,4),(1089,1427590800,3),(1089,1445734800,4),(1089,1459040400,3),(1089,1477789200,4),(1089,1490490000,3),(1089,1509238800,4),(1089,1521939600,3),(1089,1540688400,4),(1089,1553994000,3),(1089,1572138000,4),(1089,1585443600,3),(1089,1603587600,4),(1089,1616893200,3),(1089,1635642000,4),(1089,1648342800,3),(1089,1667091600,4),(1089,1679792400,3),(1089,1698541200,4),(1089,1711846800,3),(1089,1729990800,4),(1089,1743296400,3),(1089,1761440400,4),(1089,1774746000,3),(1089,1792890000,4),(1089,1806195600,3),(1089,1824944400,4),(1089,1837645200,3),(1089,1856394000,4),(1089,1869094800,3),(1089,1887843600,4),(1089,1901149200,3),(1089,1919293200,4),(1089,1932598800,3),(1089,1950742800,4),(1089,1964048400,3),(1089,1982797200,4),(1089,1995498000,3),(1089,2014246800,4),(1089,2026947600,3),(1089,2045696400,4),(1089,2058397200,3),(1089,2077146000,4),(1089,2090451600,3),(1089,2108595600,4),(1089,2121901200,3),(1089,2140045200,4),(1090,-2147483648,2),(1090,-1690765200,1),(1090,-1680487200,2),(1090,-1664758800,1),(1090,-1648951200,2),(1090,-1635123600,1),(1090,-1616896800,2),(1090,-1604278800,1),(1090,-1585533600,2),(1090,-1571014800,1),(1090,-1555293600,2),(1090,-932432400,1),(1090,-857257200,3),(1090,-844556400,4),(1090,-830311200,1),(1090,-828226800,3),(1090,-812502000,4),(1090,-807156000,1),(1090,-798073200,3),(1090,-781052400,1),(1090,-766717200,2),(1090,-750898800,4),(1090,-733359600,3),(1090,-719456400,4),(1090,-701917200,3),(1090,-689209200,4),(1090,-670460400,3),(1090,-114051600,4),(1090,-103168800,2),(1090,-81997200,4),(1090,-71715600,3),(1090,-50547600,4),(1090,-40266000,3),(1090,-18493200,4),(1090,-8211600,3),(1090,12956400,4),(1090,23238000,3),(1090,43801200,4),(1090,54687600,3),(1090,75855600,4),(1090,86742000,3),(1090,107910000,4),(1090,118191600,3),(1090,138754800,4),(1090,149641200,3),(1090,170809200,4),(1090,181090800,3),(1090,202258800,4),(1090,212540400,3),(1090,233103600,4),(1090,243990000,3),(1090,265158000,4),(1090,276044400,3),(1090,296607600,4),(1090,307494000,3),(1090,315529200,2),(1090,323830800,5),(1090,338950800,6),(1090,354675600,5),(1090,370400400,6),(1090,386125200,5),(1090,401850000,6),(1090,417574800,5),(1090,433299600,6),(1090,449024400,5),(1090,465354000,6),(1090,481078800,5),(1090,496803600,6),(1090,512528400,5),(1090,528253200,6),(1090,543978000,5),(1090,559702800,6),(1090,575427600,5),(1090,591152400,6),(1090,606877200,5),(1090,622602000,6),(1090,638326800,5),(1090,654656400,6),(1090,670381200,5),(1090,686106000,6),(1090,701830800,5),(1090,717555600,6),(1090,733280400,5),(1090,749005200,6),(1090,764730000,5),(1090,780454800,6),(1090,796179600,5),(1090,811904400,6),(1090,828234000,5),(1090,846378000,6),(1090,859683600,5),(1090,877827600,6),(1090,891133200,5),(1090,909277200,6),(1090,922582800,5),(1090,941331600,6),(1090,954032400,5),(1090,972781200,6),(1090,985482000,5),(1090,1004230800,6),(1090,1017536400,5),(1090,1035680400,6),(1090,1048986000,5),(1090,1067130000,6),(1090,1080435600,5),(1090,1099184400,6),(1090,1111885200,5),(1090,1130634000,6),(1090,1143334800,5),(1090,1162083600,6),(1090,1174784400,5),(1090,1193533200,6),(1090,1206838800,5),(1090,1224982800,6),(1090,1238288400,5),(1090,1256432400,6),(1090,1269738000,5),(1090,1288486800,6),(1090,1301187600,5),(1090,1319936400,6),(1090,1332637200,5),(1090,1351386000,6),(1090,1364691600,5),(1090,1382835600,6),(1090,1396141200,5),(1090,1414285200,6),(1090,1427590800,5),(1090,1445734800,6),(1090,1459040400,5),(1090,1477789200,6),(1090,1490490000,5),(1090,1509238800,6),(1090,1521939600,5),(1090,1540688400,6),(1090,1553994000,5),(1090,1572138000,6),(1090,1585443600,5),(1090,1603587600,6),(1090,1616893200,5),(1090,1635642000,6),(1090,1648342800,5),(1090,1667091600,6),(1090,1679792400,5),(1090,1698541200,6),(1090,1711846800,5),(1090,1729990800,6),(1090,1743296400,5),(1090,1761440400,6),(1090,1774746000,5),(1090,1792890000,6),(1090,1806195600,5),(1090,1824944400,6),(1090,1837645200,5),(1090,1856394000,6),(1090,1869094800,5),(1090,1887843600,6),(1090,1901149200,5),(1090,1919293200,6),(1090,1932598800,5),(1090,1950742800,6),(1090,1964048400,5),(1090,1982797200,6),(1090,1995498000,5),(1090,2014246800,6),(1090,2026947600,5),(1090,2045696400,6),(1090,2058397200,5),(1090,2077146000,6),(1090,2090451600,5),(1090,2108595600,6),(1090,2121901200,5),(1090,2140045200,6),(1091,-2147483648,2),(1091,-1693706400,1),(1091,-1680483600,2),(1091,-1663455600,3),(1091,-1650150000,4),(1091,-1632006000,3),(1091,-1618700400,4),(1091,-1577926800,2),(1091,-1569711600,3),(1091,-1555801200,4),(1091,-938905200,3),(1091,-857257200,4),(1091,-844556400,3),(1091,-828226800,4),(1091,-812502000,3),(1091,-796777200,4),(1091,-781052400,3),(1091,-780188400,4),(1091,-757386000,2),(1091,-748479600,3),(1091,-733273200,4),(1091,-717634800,3),(1091,-701910000,4),(1091,-684975600,3),(1091,-670460400,4),(1091,323823600,1),(1091,338940000,2),(1091,354675600,5),(1091,370400400,6),(1091,386125200,5),(1091,401850000,6),(1091,417574800,5),(1091,433299600,6),(1091,449024400,5),(1091,465354000,6),(1091,481078800,5),(1091,496803600,6),(1091,512528400,5),(1091,528253200,6),(1091,543978000,5),(1091,559702800,6),(1091,575427600,5),(1091,591152400,6),(1091,606877200,5),(1091,622602000,6),(1091,638326800,5),(1091,654656400,6),(1091,670381200,5),(1091,686106000,6),(1091,701830800,5),(1091,717555600,6),(1091,733280400,5),(1091,749005200,6),(1091,764730000,5),(1091,780454800,6),(1091,796179600,5),(1091,811904400,6),(1091,828234000,5),(1091,846378000,6),(1091,859683600,5),(1091,877827600,6),(1091,891133200,5),(1091,909277200,6),(1091,922582800,5),(1091,941331600,6),(1091,954032400,5),(1091,972781200,6),(1091,985482000,5),(1091,1004230800,6),(1091,1017536400,5),(1091,1035680400,6),(1091,1048986000,5),(1091,1067130000,6),(1091,1080435600,5),(1091,1099184400,6),(1091,1111885200,5),(1091,1130634000,6),(1091,1143334800,5),(1091,1162083600,6),(1091,1174784400,5),(1091,1193533200,6),(1091,1206838800,5),(1091,1224982800,6),(1091,1238288400,5),(1091,1256432400,6),(1091,1269738000,5),(1091,1288486800,6),(1091,1301187600,5),(1091,1319936400,6),(1091,1332637200,5),(1091,1351386000,6),(1091,1364691600,5),(1091,1382835600,6),(1091,1396141200,5),(1091,1414285200,6),(1091,1427590800,5),(1091,1445734800,6),(1091,1459040400,5),(1091,1477789200,6),(1091,1490490000,5),(1091,1509238800,6),(1091,1521939600,5),(1091,1540688400,6),(1091,1553994000,5),(1091,1572138000,6),(1091,1585443600,5),(1091,1603587600,6),(1091,1616893200,5),(1091,1635642000,6),(1091,1648342800,5),(1091,1667091600,6),(1091,1679792400,5),(1091,1698541200,6),(1091,1711846800,5),(1091,1729990800,6),(1091,1743296400,5),(1091,1761440400,6),(1091,1774746000,5),(1091,1792890000,6),(1091,1806195600,5),(1091,1824944400,6),(1091,1837645200,5),(1091,1856394000,6),(1091,1869094800,5),(1091,1887843600,6),(1091,1901149200,5),(1091,1919293200,6),(1091,1932598800,5),(1091,1950742800,6),(1091,1964048400,5),(1091,1982797200,6),(1091,1995498000,5),(1091,2014246800,6),(1091,2026947600,5),(1091,2045696400,6),(1091,2058397200,5),(1091,2077146000,6),(1091,2090451600,5),(1091,2108595600,6),(1091,2121901200,5),(1091,2140045200,6),(1092,-2147483648,1),(1092,-1672536240,2),(1092,-1585100136,3),(1092,-1561251600,4),(1092,-1553565600,3),(1092,-928198800,5),(1092,-900126000,8),(1092,-857257200,6),(1092,-844556400,7),(1092,-828226800,6),(1092,-812502000,7),(1092,-802144800,5),(1092,354920400,9),(1092,370728000,5),(1092,386456400,9),(1092,402264000,5),(1092,417992400,9),(1092,433800000,5),(1092,449614800,9),(1092,465346800,10),(1092,481071600,11),(1092,496796400,10),(1092,512521200,11),(1092,528246000,10),(1092,543970800,11),(1092,559695600,10),(1092,575420400,11),(1092,591145200,10),(1092,606870000,12),(1092,622598400,13),(1092,638323200,12),(1092,654652800,13),(1092,670377600,12),(1092,686102400,13),(1092,701827200,12),(1092,717552000,13),(1092,733276800,12),(1092,749001600,13),(1092,764726400,12),(1092,780451200,13),(1092,796176000,12),(1092,811900800,13),(1092,828230400,12),(1092,846374400,13),(1092,859680000,12),(1092,877824000,13),(1092,883605600,4),(1092,891133200,14),(1092,909277200,15),(1092,922582800,14),(1092,941331600,16),(1092,1041372000,4),(1092,1048986000,17),(1092,1067130000,16),(1092,1080435600,17),(1092,1099184400,16),(1092,1111885200,17),(1092,1130634000,16),(1092,1143334800,17),(1092,1162083600,16),(1092,1174784400,17),(1092,1193533200,16),(1092,1206838800,17),(1092,1224982800,16),(1092,1238288400,17),(1092,1256432400,16),(1092,1269738000,17),(1092,1288486800,16),(1092,1301187600,17),(1092,1319936400,16),(1092,1332637200,17),(1092,1351386000,16),(1092,1364691600,17),(1092,1382835600,16),(1092,1396141200,17),(1092,1414285200,16),(1092,1427590800,17),(1092,1445734800,16),(1092,1459040400,17),(1092,1477789200,16),(1092,1490490000,17),(1092,1509238800,16),(1092,1521939600,17),(1092,1540688400,16),(1092,1553994000,17),(1092,1572138000,16),(1092,1585443600,17),(1092,1603587600,16),(1092,1616893200,17),(1092,1635642000,16),(1092,1648342800,17),(1092,1667091600,16),(1092,1679792400,17),(1092,1698541200,16),(1092,1711846800,17),(1092,1729990800,16),(1092,1743296400,17),(1092,1761440400,16),(1092,1774746000,17),(1092,1792890000,16),(1092,1806195600,17),(1092,1824944400,16),(1092,1837645200,17),(1092,1856394000,16),(1092,1869094800,17),(1092,1887843600,16),(1092,1901149200,17),(1092,1919293200,16),(1092,1932598800,17),(1092,1950742800,16),(1092,1964048400,17),(1092,1982797200,16),(1092,1995498000,17),(1092,2014246800,16),(1092,2026947600,17),(1092,2045696400,16),(1092,2058397200,17),(1092,2077146000,16),(1092,2090451600,17),(1092,2108595600,16),(1092,2121901200,17),(1092,2140045200,16),(1093,-2147483648,0),(1093,-1577761060,1),(1093,-1247540400,2),(1093,354916800,3),(1093,370724400,2),(1093,386452800,3),(1093,402260400,2),(1093,417988800,3),(1093,433796400,2),(1093,449611200,3),(1093,465343200,4),(1093,481068000,5),(1093,496792800,4),(1093,512517600,5),(1093,528242400,4),(1093,543967200,5),(1093,559692000,4),(1093,575416800,6),(1093,591145200,7),(1093,606870000,6),(1093,622594800,7),(1093,638319600,6),(1093,654649200,7),(1093,670374000,4),(1093,701820000,6),(1093,717548400,7),(1093,733273200,6),(1093,748998000,7),(1093,764722800,6),(1093,780447600,7),(1093,796172400,6),(1093,811897200,7),(1093,828226800,6),(1093,846370800,7),(1093,859676400,6),(1093,877820400,7),(1093,891126000,6),(1093,909270000,7),(1093,922575600,6),(1093,941324400,7),(1093,954025200,6),(1093,972774000,7),(1093,985474800,6),(1093,1004223600,7),(1093,1017529200,6),(1093,1035673200,7),(1093,1048978800,6),(1093,1067122800,7),(1093,1080428400,6),(1093,1099177200,7),(1093,1111878000,6),(1093,1130626800,7),(1093,1143327600,6),(1093,1162076400,7),(1093,1174777200,6),(1093,1193526000,7),(1093,1206831600,6),(1093,1224975600,7),(1093,1238281200,6),(1093,1256425200,7),(1093,1269730800,6),(1093,1288479600,7),(1093,1301180400,4),(1093,1414274400,7),(1093,1540681200,4),(1093,1609020000,7),(1093,2147483647,7),(1094,-2147483648,1),(1094,-1717032240,3),(1094,-1693706400,2),(1094,-1680483600,3),(1094,-1663455600,4),(1094,-1650150000,5),(1094,-1632006000,4),(1094,-1618700400,8),(1094,-1600473600,6),(1094,-1587168000,7),(1094,-1501725600,3),(1094,-931734000,2),(1094,-857257200,5),(1094,-844556400,4),(1094,-828226800,5),(1094,-812502000,4),(1094,-796874400,2),(1094,-796608000,3),(1094,-778726800,2),(1094,-762660000,3),(1094,-748486800,4),(1094,-733273200,5),(1094,-715215600,4),(1094,-701910000,5),(1094,-684975600,4),(1094,-670460400,5),(1094,-654130800,4),(1094,-639010800,5),(1094,-397094400,4),(1094,-386812800,5),(1094,-371088000,4),(1094,-355363200,5),(1094,-334195200,4),(1094,-323308800,5),(1094,-307584000,4),(1094,-291859200,5),(1094,-271296000,4),(1094,-260409600,5),(1094,-239846400,4),(1094,-228960000,5),(1094,-208396800,4),(1094,-197510400,5),(1094,-176342400,4),(1094,-166060800,5),(1094,220921200,3),(1094,228873600,4),(1094,243993600,5),(1094,260323200,4),(1094,276048000,5),(1094,291772800,4),(1094,307497600,5),(1094,323827200,4),(1094,338947200,5),(1094,354672000,4),(1094,370396800,5),(1094,386121600,4),(1094,401846400,5),(1094,417571200,4),(1094,433296000,5),(1094,449020800,4),(1094,465350400,5),(1094,481075200,4),(1094,496800000,5),(1094,512524800,4),(1094,528249600,5),(1094,543974400,4),(1094,559699200,5),(1094,567990000,3),(1094,575427600,9),(1094,591152400,10),(1094,606877200,9),(1094,622602000,10),(1094,638326800,9),(1094,654656400,10),(1094,670381200,9),(1094,686106000,10),(1094,701830800,9),(1094,717555600,10),(1094,733280400,9),(1094,749005200,10),(1094,764730000,9),(1094,780454800,10),(1094,796179600,9),(1094,811904400,10),(1094,828234000,9),(1094,846378000,10),(1094,859683600,9),(1094,877827600,10),(1094,891133200,9),(1094,909277200,10),(1094,922582800,9),(1094,941331600,10),(1094,954032400,9),(1094,972781200,10),(1094,985482000,9),(1094,1004230800,10),(1094,1017536400,9),(1094,1035680400,10),(1094,1048986000,9),(1094,1067130000,10),(1094,1080435600,9),(1094,1099184400,10),(1094,1111885200,9),(1094,1130634000,10),(1094,1143334800,9),(1094,1162083600,10),(1094,1174784400,9),(1094,1193533200,10),(1094,1206838800,9),(1094,1224982800,10),(1094,1238288400,9),(1094,1256432400,10),(1094,1269738000,9),(1094,1288486800,10),(1094,1301187600,9),(1094,1319936400,10),(1094,1332637200,9),(1094,1351386000,10),(1094,1364691600,9),(1094,1382835600,10),(1094,1396141200,9),(1094,1414285200,10),(1094,1427590800,9),(1094,1445734800,10),(1094,1459040400,9),(1094,1477789200,10),(1094,1490490000,9),(1094,1509238800,10),(1094,1521939600,9),(1094,1540688400,10),(1094,1553994000,9),(1094,1572138000,10),(1094,1585443600,9),(1094,1603587600,10),(1094,1616893200,9),(1094,1635642000,10),(1094,1648342800,9),(1094,1667091600,10),(1094,1679792400,9),(1094,1698541200,10),(1094,1711846800,9),(1094,1729990800,10),(1094,1743296400,9),(1094,1761440400,10),(1094,1774746000,9),(1094,1792890000,10),(1094,1806195600,9),(1094,1824944400,10),(1094,1837645200,9),(1094,1856394000,10),(1094,1869094800,9),(1094,1887843600,10),(1094,1901149200,9),(1094,1919293200,10),(1094,1932598800,9),(1094,1950742800,10),(1094,1964048400,9),(1094,1982797200,10),(1094,1995498000,9),(1094,2014246800,10),(1094,2026947600,9),(1094,2045696400,10),(1094,2058397200,9),(1094,2077146000,10),(1094,2090451600,9),(1094,2108595600,10),(1094,2121901200,9),(1094,2140045200,10),(1095,-2147483648,1),(1095,-905824800,4),(1095,-857257200,2),(1095,-844556400,3),(1095,-828226800,2),(1095,-812502000,3),(1095,-796777200,2),(1095,-788922000,1),(1095,-777942000,3),(1095,-766623600,2),(1095,407199600,1),(1095,417574800,5),(1095,433299600,6),(1095,449024400,5),(1095,465354000,6),(1095,481078800,5),(1095,496803600,6),(1095,512528400,5),(1095,528253200,6),(1095,543978000,5),(1095,559702800,6),(1095,575427600,5),(1095,591152400,6),(1095,606877200,5),(1095,622602000,6),(1095,638326800,5),(1095,654656400,6),(1095,670381200,5),(1095,686106000,6),(1095,701830800,5),(1095,717555600,6),(1095,733280400,5),(1095,749005200,6),(1095,764730000,5),(1095,780454800,6),(1095,796179600,5),(1095,811904400,6),(1095,828234000,5),(1095,846378000,6),(1095,859683600,5),(1095,877827600,6),(1095,891133200,5),(1095,909277200,6),(1095,922582800,5),(1095,941331600,6),(1095,954032400,5),(1095,972781200,6),(1095,985482000,5),(1095,1004230800,6),(1095,1017536400,5),(1095,1035680400,6),(1095,1048986000,5),(1095,1067130000,6),(1095,1080435600,5),(1095,1099184400,6),(1095,1111885200,5),(1095,1130634000,6),(1095,1143334800,5),(1095,1162083600,6),(1095,1174784400,5),(1095,1193533200,6),(1095,1206838800,5),(1095,1224982800,6),(1095,1238288400,5),(1095,1256432400,6),(1095,1269738000,5),(1095,1288486800,6),(1095,1301187600,5),(1095,1319936400,6),(1095,1332637200,5),(1095,1351386000,6),(1095,1364691600,5),(1095,1382835600,6),(1095,1396141200,5),(1095,1414285200,6),(1095,1427590800,5),(1095,1445734800,6),(1095,1459040400,5),(1095,1477789200,6),(1095,1490490000,5),(1095,1509238800,6),(1095,1521939600,5),(1095,1540688400,6),(1095,1553994000,5),(1095,1572138000,6),(1095,1585443600,5),(1095,1603587600,6),(1095,1616893200,5),(1095,1635642000,6),(1095,1648342800,5),(1095,1667091600,6),(1095,1679792400,5),(1095,1698541200,6),(1095,1711846800,5),(1095,1729990800,6),(1095,1743296400,5),(1095,1761440400,6),(1095,1774746000,5),(1095,1792890000,6),(1095,1806195600,5),(1095,1824944400,6),(1095,1837645200,5),(1095,1856394000,6),(1095,1869094800,5),(1095,1887843600,6),(1095,1901149200,5),(1095,1919293200,6),(1095,1932598800,5),(1095,1950742800,6),(1095,1964048400,5),(1095,1982797200,6),(1095,1995498000,5),(1095,2014246800,6),(1095,2026947600,5),(1095,2045696400,6),(1095,2058397200,5),(1095,2077146000,6),(1095,2090451600,5),(1095,2108595600,6),(1095,2121901200,5),(1095,2140045200,6),(1096,-2147483648,1),(1096,-1441160400,2),(1096,-1247536800,3),(1096,-894769200,6),(1096,-857257200,4),(1096,-844556400,5),(1096,-828226800,4),(1096,-826419600,3),(1096,354920400,7),(1096,370728000,3),(1096,386456400,7),(1096,402264000,3),(1096,417992400,7),(1096,433800000,3),(1096,449614800,7),(1096,465346800,8),(1096,481071600,9),(1096,496796400,8),(1096,512521200,9),(1096,528246000,8),(1096,543970800,9),(1096,559695600,8),(1096,575420400,9),(1096,591145200,8),(1096,606870000,9),(1096,622594800,8),(1096,638319600,9),(1096,654649200,8),(1096,670374000,10),(1096,686091600,2),(1096,701820000,10),(1096,717541200,2),(1096,733269600,10),(1096,748990800,2),(1096,764719200,10),(1096,780440400,2),(1096,796179600,11),(1096,811904400,12),(1096,828234000,11),(1096,846378000,12),(1096,859683600,11),(1096,877827600,12),(1096,891133200,11),(1096,909277200,12),(1096,922582800,11),(1096,941331600,12),(1096,954032400,11),(1096,972781200,12),(1096,985482000,11),(1096,1004230800,12),(1096,1017536400,11),(1096,1035680400,12),(1096,1048986000,11),(1096,1067130000,12),(1096,1080435600,11),(1096,1099184400,12),(1096,1111885200,11),(1096,1130634000,12),(1096,1143334800,11),(1096,1162083600,12),(1096,1174784400,11),(1096,1193533200,12),(1096,1206838800,11),(1096,1224982800,12),(1096,1238288400,11),(1096,1256432400,12),(1096,1269738000,11),(1096,1288486800,12),(1096,1301187600,11),(1096,1319936400,12),(1096,1332637200,11),(1096,1351386000,12),(1096,1364691600,11),(1096,1382835600,12),(1096,1396141200,11),(1096,1414285200,12),(1096,1427590800,11),(1096,1445734800,12),(1096,1459040400,11),(1096,1477789200,12),(1096,1490490000,11),(1096,1509238800,12),(1096,1521939600,11),(1096,1540688400,12),(1096,1553994000,11),(1096,1572138000,12),(1096,1585443600,11),(1096,1603587600,12),(1096,1616893200,11),(1096,1635642000,12),(1096,1648342800,11),(1096,1667091600,12),(1096,1679792400,11),(1096,1698541200,12),(1096,1711846800,11),(1096,1729990800,12),(1096,1743296400,11),(1096,1761440400,12),(1096,1774746000,11),(1096,1792890000,12),(1096,1806195600,11),(1096,1824944400,12),(1096,1837645200,11),(1096,1856394000,12),(1096,1869094800,11),(1096,1887843600,12),(1096,1901149200,11),(1096,1919293200,12),(1096,1932598800,11),(1096,1950742800,12),(1096,1964048400,11),(1096,1982797200,12),(1096,1995498000,11),(1096,2014246800,12),(1096,2026947600,11),(1096,2045696400,12),(1096,2058397200,11),(1096,2077146000,12),(1096,2090451600,11),(1096,2108595600,12),(1096,2121901200,11),(1096,2140045200,12),(1097,-2147483648,2),(1097,-904435200,1),(1097,-891129600,2),(1097,-872985600,1),(1097,-859680000,2),(1097,354675600,3),(1097,370400400,4),(1097,386125200,3),(1097,401850000,4),(1097,417574800,3),(1097,433299600,4),(1097,449024400,3),(1097,465354000,4),(1097,481078800,3),(1097,496803600,4),(1097,512528400,3),(1097,528253200,4),(1097,543978000,3),(1097,559702800,4),(1097,575427600,3),(1097,591152400,4),(1097,606877200,3),(1097,622602000,4),(1097,638326800,3),(1097,654656400,4),(1097,670381200,3),(1097,686106000,4),(1097,701830800,3),(1097,717555600,4),(1097,733280400,3),(1097,749005200,4),(1097,764730000,3),(1097,780454800,4),(1097,796179600,3),(1097,811904400,4),(1097,828234000,3),(1097,846378000,4),(1097,859683600,3),(1097,877827600,4),(1097,891133200,3),(1097,909277200,4),(1097,922582800,3),(1097,941331600,4),(1097,954032400,3),(1097,972781200,4),(1097,985482000,3),(1097,1004230800,4),(1097,1017536400,3),(1097,1035680400,4),(1097,1048986000,3),(1097,1067130000,4),(1097,1080435600,3),(1097,1099184400,4),(1097,1111885200,3),(1097,1130634000,4),(1097,1143334800,3),(1097,1162083600,4),(1097,1174784400,3),(1097,1193533200,4),(1097,1206838800,3),(1097,1224982800,4),(1097,1238288400,3),(1097,1256432400,4),(1097,1269738000,3),(1097,1288486800,4),(1097,1301187600,3),(1097,1319936400,4),(1097,1332637200,3),(1097,1351386000,4),(1097,1364691600,3),(1097,1382835600,4),(1097,1396141200,3),(1097,1414285200,4),(1097,1427590800,3),(1097,1445734800,4),(1097,1459040400,3),(1097,1477789200,4),(1097,1490490000,3),(1097,1509238800,4),(1097,1521939600,3),(1097,1540688400,4),(1097,1553994000,3),(1097,1572138000,4),(1097,1585443600,3),(1097,1603587600,4),(1097,1616893200,3),(1097,1635642000,4),(1097,1648342800,3),(1097,1667091600,4),(1097,1679792400,3),(1097,1698541200,4),(1097,1711846800,3),(1097,1729990800,4),(1097,1743296400,3),(1097,1761440400,4),(1097,1774746000,3),(1097,1792890000,4),(1097,1806195600,3),(1097,1824944400,4),(1097,1837645200,3),(1097,1856394000,4),(1097,1869094800,3),(1097,1887843600,4),(1097,1901149200,3),(1097,1919293200,4),(1097,1932598800,3),(1097,1950742800,4),(1097,1964048400,3),(1097,1982797200,4),(1097,1995498000,3),(1097,2014246800,4),(1097,2026947600,3),(1097,2045696400,4),(1097,2058397200,3),(1097,2077146000,4),(1097,2090451600,3),(1097,2108595600,4),(1097,2121901200,3),(1097,2140045200,4),(1098,-2147483648,0),(1098,2147483647,0),(1099,-2147483648,2),(1099,-1691964000,1),(1099,-1680472800,2),(1099,-1664143200,1),(1099,-1650146400,2),(1099,-1633903200,1),(1099,-1617487200,2),(1099,-1601848800,1),(1099,-1586037600,2),(1099,-1570399200,1),(1099,-1552168800,2),(1099,-1538344800,1),(1099,-1522533600,2),(1099,-1507500000,1),(1099,-1490565600,2),(1099,-1473631200,1),(1099,-1460930400,2),(1099,-1442786400,1),(1099,-1428876000,2),(1099,-1410732000,1),(1099,-1396216800,2),(1099,-1379282400,1),(1099,-1364767200,2),(1099,-1348437600,1),(1099,-1333317600,2),(1099,-1315778400,1),(1099,-1301263200,2),(1099,-1284328800,1),(1099,-1269813600,2),(1099,-1253484000,1),(1099,-1238364000,2),(1099,-1221429600,1),(1099,-1206914400,2),(1099,-1189980000,1),(1099,-1175464800,2),(1099,-1159135200,1),(1099,-1143410400,2),(1099,-1126476000,1),(1099,-1111960800,2),(1099,-1095631200,1),(1099,-1080511200,2),(1099,-1063576800,1),(1099,-1049061600,2),(1099,-1032127200,1),(1099,-1017612000,2),(1099,-1001282400,1),(1099,-986162400,2),(1099,-969228000,1),(1099,-950479200,2),(1099,-942012000,1),(1099,-904518000,3),(1099,-896050800,1),(1099,-875487600,3),(1099,-864601200,1),(1099,-844038000,3),(1099,-832546800,1),(1099,-812588400,3),(1099,-798073200,1),(1099,-781052400,3),(1099,-772066800,1),(1099,-764805600,2),(1099,-748476000,1),(1099,-733356000,2),(1099,-719445600,1),(1099,-717030000,3),(1099,-706748400,1),(1099,-699487200,2),(1099,-687996000,1),(1099,-668037600,2),(1099,-654732000,1),(1099,-636588000,2),(1099,-622072800,1),(1099,-605743200,2),(1099,-590623200,1),(1099,-574293600,2),(1099,-558568800,1),(1099,-542239200,2),(1099,-527119200,1),(1099,-512604000,2),(1099,-496274400,1),(1099,-481154400,2),(1099,-464220000,1),(1099,-449704800,2),(1099,-432165600,1),(1099,-417650400,2),(1099,-401320800,1),(1099,-386200800,2),(1099,-369266400,1),(1099,-354751200,2),(1099,-337816800,1),(1099,-323301600,2),(1099,-306972000,1),(1099,-291852000,2),(1099,-276732000,1),(1099,-257983200,2),(1099,-245282400,1),(1099,-226533600,2),(1099,-213228000,1),(1099,-195084000,2),(1099,-182383200,1),(1099,-163634400,2),(1099,-150933600,1),(1099,-132184800,2),(1099,-119484000,1),(1099,-100735200,2),(1099,-88034400,1),(1099,-68680800,2),(1099,-59004000,1),(1099,-37242000,4),(1099,57722400,6),(1099,69818400,1),(1099,89172000,2),(1099,101268000,1),(1099,120621600,2),(1099,132717600,1),(1099,152071200,2),(1099,164167200,1),(1099,183520800,2),(1099,196221600,1),(1099,214970400,2),(1099,227671200,1),(1099,246420000,2),(1099,259120800,1),(1099,278474400,2),(1099,290570400,1),(1099,309924000,2),(1099,322020000,1),(1099,341373600,2),(1099,354675600,5),(1099,372819600,6),(1099,386125200,5),(1099,404269200,6),(1099,417574800,5),(1099,435718800,6),(1099,449024400,5),(1099,467773200,6),(1099,481078800,5),(1099,499222800,6),(1099,512528400,5),(1099,530672400,6),(1099,543978000,5),(1099,562122000,6),(1099,575427600,5),(1099,593571600,6),(1099,606877200,5),(1099,625626000,6),(1099,638326800,5),(1099,657075600,6),(1099,670381200,5),(1099,688525200,6),(1099,701830800,5),(1099,719974800,6),(1099,733280400,5),(1099,751424400,6),(1099,764730000,5),(1099,782874000,6),(1099,796179600,5),(1099,814323600,6),(1099,820454400,7),(1099,828234000,5),(1099,846378000,6),(1099,859683600,5),(1099,877827600,6),(1099,891133200,5),(1099,909277200,6),(1099,922582800,5),(1099,941331600,6),(1099,954032400,5),(1099,972781200,6),(1099,985482000,5),(1099,1004230800,6),(1099,1017536400,5),(1099,1035680400,6),(1099,1048986000,5),(1099,1067130000,6),(1099,1080435600,5),(1099,1099184400,6),(1099,1111885200,5),(1099,1130634000,6),(1099,1143334800,5),(1099,1162083600,6),(1099,1174784400,5),(1099,1193533200,6),(1099,1206838800,5),(1099,1224982800,6),(1099,1238288400,5),(1099,1256432400,6),(1099,1269738000,5),(1099,1288486800,6),(1099,1301187600,5),(1099,1319936400,6),(1099,1332637200,5),(1099,1351386000,6),(1099,1364691600,5),(1099,1382835600,6),(1099,1396141200,5),(1099,1414285200,6),(1099,1427590800,5),(1099,1445734800,6),(1099,1459040400,5),(1099,1477789200,6),(1099,1490490000,5),(1099,1509238800,6),(1099,1521939600,5),(1099,1540688400,6),(1099,1553994000,5),(1099,1572138000,6),(1099,1585443600,5),(1099,1603587600,6),(1099,1616893200,5),(1099,1635642000,6),(1099,1648342800,5),(1099,1667091600,6),(1099,1679792400,5),(1099,1698541200,6),(1099,1711846800,5),(1099,1729990800,6),(1099,1743296400,5),(1099,1761440400,6),(1099,1774746000,5),(1099,1792890000,6),(1099,1806195600,5),(1099,1824944400,6),(1099,1837645200,5),(1099,1856394000,6),(1099,1869094800,5),(1099,1887843600,6),(1099,1901149200,5),(1099,1919293200,6),(1099,1932598800,5),(1099,1950742800,6),(1099,1964048400,5),(1099,1982797200,6),(1099,1995498000,5),(1099,2014246800,6),(1099,2026947600,5),(1099,2045696400,6),(1099,2058397200,5),(1099,2077146000,6),(1099,2090451600,5),(1099,2108595600,6),(1099,2121901200,5),(1099,2140045200,6),(1100,-2147483648,2),(1100,-1691964000,1),(1100,-1680472800,2),(1100,-1664143200,1),(1100,-1650146400,2),(1100,-1633903200,1),(1100,-1617487200,2),(1100,-1601848800,1),(1100,-1586037600,2),(1100,-1570399200,1),(1100,-1552168800,2),(1100,-1538344800,1),(1100,-1522533600,2),(1100,-1507500000,1),(1100,-1490565600,2),(1100,-1473631200,1),(1100,-1460930400,2),(1100,-1442786400,1),(1100,-1428876000,2),(1100,-1410732000,1),(1100,-1396216800,2),(1100,-1379282400,1),(1100,-1364767200,2),(1100,-1348437600,1),(1100,-1333317600,2),(1100,-1315778400,1),(1100,-1301263200,2),(1100,-1284328800,1),(1100,-1269813600,2),(1100,-1253484000,1),(1100,-1238364000,2),(1100,-1221429600,1),(1100,-1206914400,2),(1100,-1189980000,1),(1100,-1175464800,2),(1100,-1159135200,1),(1100,-1143410400,2),(1100,-1126476000,1),(1100,-1111960800,2),(1100,-1095631200,1),(1100,-1080511200,2),(1100,-1063576800,1),(1100,-1049061600,2),(1100,-1032127200,1),(1100,-1017612000,2),(1100,-1001282400,1),(1100,-986162400,2),(1100,-969228000,1),(1100,-950479200,2),(1100,-942012000,1),(1100,-904518000,3),(1100,-896050800,1),(1100,-875487600,3),(1100,-864601200,1),(1100,-844038000,3),(1100,-832546800,1),(1100,-812588400,3),(1100,-798073200,1),(1100,-781052400,3),(1100,-772066800,1),(1100,-764805600,2),(1100,-748476000,1),(1100,-733356000,2),(1100,-719445600,1),(1100,-717030000,3),(1100,-706748400,1),(1100,-699487200,2),(1100,-687996000,1),(1100,-668037600,2),(1100,-654732000,1),(1100,-636588000,2),(1100,-622072800,1),(1100,-605743200,2),(1100,-590623200,1),(1100,-574293600,2),(1100,-558568800,1),(1100,-542239200,2),(1100,-527119200,1),(1100,-512604000,2),(1100,-496274400,1),(1100,-481154400,2),(1100,-464220000,1),(1100,-449704800,2),(1100,-432165600,1),(1100,-417650400,2),(1100,-401320800,1),(1100,-386200800,2),(1100,-369266400,1),(1100,-354751200,2),(1100,-337816800,1),(1100,-323301600,2),(1100,-306972000,1),(1100,-291852000,2),(1100,-276732000,1),(1100,-257983200,2),(1100,-245282400,1),(1100,-226533600,2),(1100,-213228000,1),(1100,-195084000,2),(1100,-182383200,1),(1100,-163634400,2),(1100,-150933600,1),(1100,-132184800,2),(1100,-119484000,1),(1100,-100735200,2),(1100,-88034400,1),(1100,-68680800,2),(1100,-59004000,1),(1100,-37242000,4),(1100,57722400,6),(1100,69818400,1),(1100,89172000,2),(1100,101268000,1),(1100,120621600,2),(1100,132717600,1),(1100,152071200,2),(1100,164167200,1),(1100,183520800,2),(1100,196221600,1),(1100,214970400,2),(1100,227671200,1),(1100,246420000,2),(1100,259120800,1),(1100,278474400,2),(1100,290570400,1),(1100,309924000,2),(1100,322020000,1),(1100,341373600,2),(1100,354675600,5),(1100,372819600,6),(1100,386125200,5),(1100,404269200,6),(1100,417574800,5),(1100,435718800,6),(1100,449024400,5),(1100,467773200,6),(1100,481078800,5),(1100,499222800,6),(1100,512528400,5),(1100,530672400,6),(1100,543978000,5),(1100,562122000,6),(1100,575427600,5),(1100,593571600,6),(1100,606877200,5),(1100,625626000,6),(1100,638326800,5),(1100,657075600,6),(1100,670381200,5),(1100,688525200,6),(1100,701830800,5),(1100,719974800,6),(1100,733280400,5),(1100,751424400,6),(1100,764730000,5),(1100,782874000,6),(1100,796179600,5),(1100,814323600,6),(1100,820454400,7),(1100,828234000,5),(1100,846378000,6),(1100,859683600,5),(1100,877827600,6),(1100,891133200,5),(1100,909277200,6),(1100,922582800,5),(1100,941331600,6),(1100,954032400,5),(1100,972781200,6),(1100,985482000,5),(1100,1004230800,6),(1100,1017536400,5),(1100,1035680400,6),(1100,1048986000,5),(1100,1067130000,6),(1100,1080435600,5),(1100,1099184400,6),(1100,1111885200,5),(1100,1130634000,6),(1100,1143334800,5),(1100,1162083600,6),(1100,1174784400,5),(1100,1193533200,6),(1100,1206838800,5),(1100,1224982800,6),(1100,1238288400,5),(1100,1256432400,6),(1100,1269738000,5),(1100,1288486800,6),(1100,1301187600,5),(1100,1319936400,6),(1100,1332637200,5),(1100,1351386000,6),(1100,1364691600,5),(1100,1382835600,6),(1100,1396141200,5),(1100,1414285200,6),(1100,1427590800,5),(1100,1445734800,6),(1100,1459040400,5),(1100,1477789200,6),(1100,1490490000,5),(1100,1509238800,6),(1100,1521939600,5),(1100,1540688400,6),(1100,1553994000,5),(1100,1572138000,6),(1100,1585443600,5),(1100,1603587600,6),(1100,1616893200,5),(1100,1635642000,6),(1100,1648342800,5),(1100,1667091600,6),(1100,1679792400,5),(1100,1698541200,6),(1100,1711846800,5),(1100,1729990800,6),(1100,1743296400,5),(1100,1761440400,6),(1100,1774746000,5),(1100,1792890000,6),(1100,1806195600,5),(1100,1824944400,6),(1100,1837645200,5),(1100,1856394000,6),(1100,1869094800,5),(1100,1887843600,6),(1100,1901149200,5),(1100,1919293200,6),(1100,1932598800,5),(1100,1950742800,6),(1100,1964048400,5),(1100,1982797200,6),(1100,1995498000,5),(1100,2014246800,6),(1100,2026947600,5),(1100,2045696400,6),(1100,2058397200,5),(1100,2077146000,6),(1100,2090451600,5),(1100,2108595600,6),(1100,2121901200,5),(1100,2140045200,6),(1107,-2147483648,0),(1107,-2056690800,1),(1107,-900910800,2),(1107,-891579600,3),(1107,-884248200,4),(1107,-761209200,1),(1107,-747907200,2),(1107,-728541000,5),(1107,-717049800,6),(1107,-697091400,5),(1107,-683785800,6),(1107,-668061000,5),(1107,-654755400,2),(1107,-636611400,5),(1107,-623305800,2),(1107,-605161800,5),(1107,-591856200,2),(1107,-573712200,5),(1107,-559801800,2),(1107,-541657800,5),(1107,-528352200,2),(1107,-510211800,1),(1107,-498112200,2),(1107,-478762200,1),(1107,-466662600,2),(1107,-446707800,1),(1107,-435213000,2),(1107,-415258200,1),(1107,-403158600,2),(1107,-383808600,1),(1107,-371709000,2),(1107,-352359000,1),(1107,-340259400,2),(1107,-320909400,1),(1107,-308809800,2),(1107,-288855000,1),(1107,-277360200,2),(1107,-257405400,1),(1107,-245910600,2),(1107,-225955800,1),(1107,-213856200,2),(1107,-194506200,1),(1107,-182406600,2),(1107,-163056600,1),(1107,-148537800,2),(1107,-132816600,1),(1107,-117088200,2),(1107,-101367000,1),(1107,-85638600,2),(1107,-69312600,1),(1107,-53584200,2),(1107,-37863000,1),(1107,-22134600,2),(1107,-6413400,1),(1107,9315000,2),(1107,25036200,1),(1107,40764600,2),(1107,56485800,1),(1107,72214200,2),(1107,88540200,1),(1107,104268600,2),(1107,119989800,1),(1107,126041400,2),(1107,151439400,1),(1107,167167800,2),(1107,182889000,1),(1107,198617400,2),(1107,214338600,1),(1107,295385400,2),(1107,309292200,1),(1108,-2147483648,0),(1108,-1956609120,2),(1108,-1668211200,1),(1108,-1647212400,2),(1108,-1636675200,1),(1108,-1613430000,2),(1108,-1605139200,1),(1108,-1581894000,2),(1108,-1539561600,1),(1108,-1531350000,2),(1108,-968025600,1),(1108,-952293600,2),(1108,-942008400,1),(1108,-920239200,3),(1108,-909957600,4),(1108,-888789600,3),(1108,-877903200,4),(1108,-857944800,3),(1108,-846453600,4),(1108,-826495200,3),(1108,-815004000,4),(1108,-795045600,3),(1108,-783554400,4),(1108,-762991200,3),(1108,-752104800,4),(1108,-731541600,3),(1108,-717631200,4),(1108,-700092000,3),(1108,-686181600,4),(1108,-668642400,3),(1108,-654732000,4),(1108,-636588000,3),(1108,-623282400,4),(1108,-605743200,3),(1108,-591832800,4),(1108,-573688800,3),(1108,-559778400,4),(1108,-542239200,3),(1108,-528328800,4),(1108,-510789600,3),(1108,-496879200,4),(1108,-479340000,3),(1108,-465429600,4),(1108,-447890400,3),(1108,-433980000,4),(1108,-415836000,3),(1108,-401925600,4),(1108,-384386400,3),(1108,-370476000,4),(1108,-352936800,3),(1108,-339026400,4),(1108,-321487200,3),(1108,-307576800,4),(1108,-290037600,3),(1108,-276127200,4),(1108,-258588000,3),(1108,-244677600,4),(1108,-226533600,3),(1108,-212623200,4),(1108,-195084000,3),(1108,-181173600,4),(1108,-163634400,3),(1108,-149724000,4),(1108,-132184800,3),(1108,-118274400,4),(1108,-100735200,3),(1108,-86824800,4),(1108,-68680800,3),(1108,-54770400,5),(1109,-2147483648,0),(1109,-1946168836,1),(1109,-1309746600,2),(1109,-1261969200,1),(1109,-1041388200,3),(1109,-865305900,2),(1110,-2147483648,0),(1110,-1988167780,1),(1110,820436400,2),(1110,2147483647,2),(1111,-2147483648,1),(1111,2147483647,1),(1112,-2147483648,1),(1112,2147483647,1),(1113,-2147483648,0),(1113,-1946168836,1),(1113,-1309746600,2),(1113,-1261969200,1),(1113,-1041388200,3),(1113,-865305900,2),(1114,-2147483648,0),(1114,-631152000,1),(1114,2147483647,1),(1115,-2147483648,0),(1115,-1988163708,1),(1115,2147483647,1),(1116,-2147483648,1),(1116,-315636840,2),(1116,2147483647,2),(1117,-2147483648,0),(1117,-1988164200,2),(1117,403041600,1),(1117,417034800,2),(1117,1224972000,1),(1117,1238274000,2),(1117,2147483647,2),(1118,-2147483648,0),(1118,-1946168836,1),(1118,-1309746600,2),(1118,-1261969200,1),(1118,-1041388200,3),(1118,-865305900,2),(1119,-2147483648,0),(1119,-1848886912,1),(1119,2147483647,1),(1120,-2147483648,0),(1120,-1704165944,1),(1120,-757394744,2),(1120,247177800,4),(1120,259272000,3),(1120,277758000,4),(1120,283982400,2),(1120,290809800,5),(1120,306531000,2),(1120,322432200,5),(1120,338499000,2),(1120,673216200,5),(1120,685481400,2),(1120,701209800,5),(1120,717103800,2),(1120,732745800,5),(1120,748639800,2),(1120,764281800,5),(1120,780175800,2),(1120,795817800,5),(1120,811711800,2),(1120,827353800,5),(1120,843247800,2),(1120,858976200,5),(1120,874870200,2),(1120,890512200,5),(1120,906406200,2),(1120,922048200,5),(1120,937942200,2),(1120,953584200,5),(1120,969478200,2),(1120,985206600,5),(1120,1001100600,2),(1120,1016742600,5),(1120,1032636600,2),(1120,1048278600,5),(1120,1064172600,2),(1120,1079814600,5),(1120,1095708600,2),(1120,1111437000,5),(1120,1127331000,2),(1120,1206045000,5),(1120,1221939000,2),(1120,1237667400,5),(1120,1253561400,2),(1120,1269203400,5),(1120,1285097400,2),(1120,1300739400,5),(1120,1316633400,2),(1120,1332275400,5),(1120,1348169400,2),(1120,1363897800,5),(1120,1379791800,2),(1120,1395433800,5),(1120,1411327800,2),(1120,1426969800,5),(1120,1442863800,2),(1120,1458505800,5),(1120,1474399800,2),(1120,1490128200,5),(1120,1506022200,2),(1120,1521664200,5),(1120,1537558200,2),(1120,1553200200,5),(1120,1569094200,2),(1120,1584736200,5),(1120,1600630200,2),(1120,1616358600,5),(1120,1632252600,2),(1120,1647894600,5),(1120,1663788600,2),(1120,1679430600,5),(1120,1695324600,2),(1120,1710966600,5),(1120,1726860600,2),(1120,1742589000,5),(1120,1758483000,2),(1120,1774125000,5),(1120,1790019000,2),(1120,1805661000,5),(1120,1821555000,2),(1120,1837197000,5),(1120,1853091000,2),(1120,1868733000,5),(1120,1884627000,2),(1120,1900355400,5),(1120,1916249400,2),(1120,1931891400,5),(1120,1947785400,2),(1120,1963427400,5),(1120,1979321400,2),(1120,1994963400,5),(1120,2010857400,2),(1120,2026585800,5),(1120,2042479800,2),(1120,2058121800,5),(1120,2074015800,2),(1120,2089657800,5),(1120,2105551800,2),(1120,2121193800,5),(1120,2137087800,2),(1121,-2147483648,1),(1121,-1641003640,6),(1121,-933638400,2),(1121,-923097600,3),(1121,-919036800,2),(1121,-857347200,3),(1121,-844300800,2),(1121,-825811200,3),(1121,-812678400,2),(1121,-794188800,3),(1121,-779846400,2),(1121,-762652800,3),(1121,-748310400,2),(1121,-731116800,3),(1121,-681955200,4),(1121,-673228800,2),(1121,-667958400,3),(1121,-652320000,2),(1121,-636422400,3),(1121,-622080000,2),(1121,-608947200,3),(1121,-591840000,2),(1121,-572486400,3),(1121,-558576000,2),(1121,-542851200,3),(1121,-527731200,2),(1121,-514425600,3),(1121,-490838400,2),(1121,-482976000,3),(1121,-459388800,2),(1121,-451526400,3),(1121,-428544000,2),(1121,-418262400,3),(1121,-400118400,2),(1121,-387417600,3),(1121,142380000,5),(1121,150843600,6),(1121,167176800,5),(1121,178664400,6),(1121,334101600,7),(1121,337730400,8),(1121,452642400,7),(1121,462319200,8),(1121,482277600,5),(1121,494370000,6),(1121,516751200,5),(1121,526424400,6),(1121,545436000,5),(1121,558478800,6),(1121,576626400,5),(1121,589323600,6),(1121,609890400,5),(1121,620773200,6),(1121,638316000,5),(1121,651618000,6),(1121,669765600,5),(1121,683672400,6),(1121,701820000,5),(1121,715726800,6),(1121,733701600,5),(1121,747176400,6),(1121,765151200,5),(1121,778021200,6),(1121,796600800,5),(1121,810075600,6),(1121,826840800,5),(1121,842821200,6),(1121,858895200,5),(1121,874184400,6),(1121,890344800,5),(1121,905029200,6),(1121,923011200,5),(1121,936313200,6),(1121,955670400,5),(1121,970783200,6),(1121,986770800,5),(1121,1001282400,6),(1121,1017356400,5),(1121,1033941600,6),(1121,1048806000,5),(1121,1065132000,6),(1121,1081292400,5),(1121,1095804000,6),(1121,1112313600,5),(1121,1128812400,6),(1121,1143763200,5),(1121,1159657200,6),(1121,1175212800,5),(1121,1189897200,6),(1121,1206662400,5),(1121,1223161200,6),(1121,1238112000,5),(1121,1254006000,6),(1121,1269561600,5),(1121,1284246000,6),(1121,1301616000,5),(1121,1317510000,6),(1121,1333065600,5),(1121,1348354800,6),(1121,1364515200,5),(1121,1382828400,6),(1121,1395964800,5),(1121,1414278000,6),(1121,1427414400,5),(1121,1445727600,6),(1121,1458864000,5),(1121,1477782000,6),(1121,1490313600,5),(1121,1509231600,6),(1121,1521763200,5),(1121,1540681200,6),(1121,1553817600,5),(1121,1572130800,6),(1121,1585267200,5),(1121,1603580400,6),(1121,1616716800,5),(1121,1635634800,6),(1121,1648166400,5),(1121,1667084400,6),(1121,1679616000,5),(1121,1698534000,6),(1121,1711670400,5),(1121,1729983600,6),(1121,1743120000,5),(1121,1761433200,6),(1121,1774569600,5),(1121,1792882800,6),(1121,1806019200,5),(1121,1824937200,6),(1121,1837468800,5),(1121,1856386800,6),(1121,1868918400,5),(1121,1887836400,6),(1121,1900972800,5),(1121,1919286000,6),(1121,1932422400,5),(1121,1950735600,6),(1121,1963872000,5),(1121,1982790000,6),(1121,1995321600,5),(1121,2014239600,6),(1121,2026771200,5),(1121,2045689200,6),(1121,2058220800,5),(1121,2077138800,6),(1121,2090275200,5),(1121,2108588400,6),(1121,2121724800,5),(1121,2140038000,6),(1122,-2147483648,1),(1122,-1827687170,2),(1122,126687600,3),(1122,152085600,2),(1122,162370800,3),(1122,183535200,2),(1122,199263600,3),(1122,215589600,2),(1122,230713200,3),(1122,247039200,2),(1122,262767600,3),(1122,278488800,2),(1122,294217200,3),(1122,309938400,2),(1122,325666800,3),(1122,341388000,2),(1122,357116400,3),(1122,372837600,2),(1122,388566000,3),(1122,404892000,2),(1122,420015600,3),(1122,436341600,2),(1123,-2147483648,3),(1123,-683802000,1),(1123,-672310800,2),(1123,-654771600,1),(1123,-640861200,2),(1123,-620298000,1),(1123,-609411600,2),(1123,-588848400,1),(1123,-577962000,2),(1124,-2147483648,1),(1124,-1041418800,2),(1124,-907408800,3),(1124,-817462800,1),(1124,-7988400,4),(1124,745934400,5),(1124,2147483647,5),(1125,-2147483648,0),(1125,-1577926364,2),(1125,-574902000,1),(1125,-568087200,2),(1125,-512175600,1),(1125,-504928800,2),(1125,-449888400,1),(1125,-441856800,2),(1125,-347158800,3),(1125,378684000,2),(1125,386463600,1),(1125,402271200,2),(1125,417999600,1),(1125,433807200,2),(1125,449622000,1),(1125,465429600,2),(1125,481590000,1),(1125,496965600,2),(1125,512953200,1),(1125,528674400,2),(1125,544230000,1),(1125,560037600,2),(1125,575852400,1),(1125,591660000,2),(1125,607388400,1),(1125,623196000,2),(1125,641775600,3),(1125,844034400,2),(1125,860108400,1),(1125,875916000,3),(1125,1352505600,2),(1125,1364515200,1),(1125,1382659200,3),(1126,-1693706400,0),(1126,-1680483600,1),(1126,-1663455600,2),(1126,-1650150000,3),(1126,-1632006000,2),(1126,-1618700400,3),(1126,-938905200,2),(1126,-857257200,3),(1126,-844556400,2),(1126,-828226800,3),(1126,-812502000,2),(1126,-796777200,3),(1126,-781052400,2),(1126,-766623600,3),(1126,228877200,2),(1126,243997200,3),(1126,260326800,2),(1126,276051600,3),(1126,291776400,2),(1126,307501200,3),(1126,323830800,2),(1126,338950800,3),(1126,354675600,2),(1126,370400400,3),(1126,386125200,2),(1126,401850000,3),(1126,417574800,2),(1126,433299600,3),(1126,449024400,2),(1126,465354000,3),(1126,481078800,2),(1126,496803600,3),(1126,512528400,2),(1126,528253200,3),(1126,543978000,2),(1126,559702800,3),(1126,575427600,2),(1126,591152400,3),(1126,606877200,2),(1126,622602000,3),(1126,638326800,2),(1126,654656400,3),(1126,670381200,2),(1126,686106000,3),(1126,701830800,2),(1126,717555600,3),(1126,733280400,2),(1126,749005200,3),(1126,764730000,2),(1126,780454800,3),(1126,796179600,2),(1126,811904400,3),(1126,828234000,2),(1126,846378000,3),(1126,859683600,2),(1126,877827600,3),(1126,891133200,2),(1126,909277200,3),(1126,922582800,2),(1126,941331600,3),(1126,954032400,2),(1126,972781200,3),(1126,985482000,2),(1126,1004230800,3),(1126,1017536400,2),(1126,1035680400,3),(1126,1048986000,2),(1126,1067130000,3),(1126,1080435600,2),(1126,1099184400,3),(1126,1111885200,2),(1126,1130634000,3),(1126,1143334800,2),(1126,1162083600,3),(1126,1174784400,2),(1126,1193533200,3),(1126,1206838800,2),(1126,1224982800,3),(1126,1238288400,2),(1126,1256432400,3),(1126,1269738000,2),(1126,1288486800,3),(1126,1301187600,2),(1126,1319936400,3),(1126,1332637200,2),(1126,1351386000,3),(1126,1364691600,2),(1126,1382835600,3),(1126,1396141200,2),(1126,1414285200,3),(1126,1427590800,2),(1126,1445734800,3),(1126,1459040400,2),(1126,1477789200,3),(1126,1490490000,2),(1126,1509238800,3),(1126,1521939600,2),(1126,1540688400,3),(1126,1553994000,2),(1126,1572138000,3),(1126,1585443600,2),(1126,1603587600,3),(1126,1616893200,2),(1126,1635642000,3),(1126,1648342800,2),(1126,1667091600,3),(1126,1679792400,2),(1126,1698541200,3),(1126,1711846800,2),(1126,1729990800,3),(1126,1743296400,2),(1126,1761440400,3),(1126,1774746000,2),(1126,1792890000,3),(1126,1806195600,2),(1126,1824944400,3),(1126,1837645200,2),(1126,1856394000,3),(1126,1869094800,2),(1126,1887843600,3),(1126,1901149200,2),(1126,1919293200,3),(1126,1932598800,2),(1126,1950742800,3),(1126,1964048400,2),(1126,1982797200,3),(1126,1995498000,2),(1126,2014246800,3),(1126,2026947600,2),(1126,2045696400,3),(1126,2058397200,2),(1126,2077146000,3),(1126,2090451600,2),(1126,2108595600,3),(1126,2121901200,2),(1126,2140045200,3),(1128,-1633273200,0),(1128,-1615132800,1),(1128,-1601823600,0),(1128,-1583683200,1),(1128,-880210800,2),(1128,-769395600,3),(1128,-765388800,1),(1128,-84380400,0),(1128,-68659200,1),(1128,-52930800,0),(1128,-37209600,1),(1128,-21481200,0),(1128,-5760000,1),(1128,9968400,0),(1128,25689600,1),(1128,41418000,0),(1128,57744000,1),(1128,73472400,0),(1128,89193600,1),(1128,104922000,0),(1128,120643200,1),(1128,126694800,0),(1128,152092800,1),(1128,162378000,0),(1128,183542400,1),(1128,199270800,0),(1128,215596800,1),(1128,230720400,0),(1128,247046400,1),(1128,262774800,0),(1128,278496000,1),(1128,294224400,0),(1128,309945600,1),(1128,325674000,0),(1128,341395200,1),(1128,357123600,0),(1128,372844800,1),(1128,388573200,0),(1128,404899200,1),(1128,420022800,0),(1128,436348800,1),(1128,452077200,0),(1128,467798400,1),(1128,483526800,0),(1128,499248000,1),(1128,514976400,0),(1128,530697600,1),(1128,544611600,0),(1128,562147200,1),(1128,576061200,0),(1128,594201600,1),(1128,607510800,0),(1128,625651200,1),(1128,638960400,0),(1128,657100800,1),(1128,671014800,0),(1128,688550400,1),(1128,702464400,0),(1128,720000000,1),(1128,733914000,0),(1128,752054400,1),(1128,765363600,0),(1128,783504000,1),(1128,796813200,0),(1128,814953600,1),(1128,828867600,0),(1128,846403200,1),(1128,860317200,0),(1128,877852800,1),(1128,891766800,0),(1128,909302400,1),(1128,923216400,0),(1128,941356800,1),(1128,954666000,0),(1128,972806400,1),(1128,986115600,0),(1128,1004256000,1),(1128,1018170000,0),(1128,1035705600,1),(1128,1049619600,0),(1128,1067155200,1),(1128,1081069200,0),(1128,1099209600,1),(1128,1112518800,0),(1128,1130659200,1),(1128,1143968400,0),(1128,1162108800,1),(1128,1173603600,0),(1128,1194163200,1),(1128,1205053200,0),(1128,1225612800,1),(1128,1236502800,0),(1128,1257062400,1),(1128,1268557200,0),(1128,1289116800,1),(1128,1300006800,0),(1128,1320566400,1),(1128,1331456400,0),(1128,1352016000,1),(1128,1362906000,0),(1128,1383465600,1),(1128,1394355600,0),(1128,1414915200,1),(1128,1425805200,0),(1128,1446364800,1),(1128,1457859600,0),(1128,1478419200,1),(1128,1489309200,0),(1128,1509868800,1),(1128,1520758800,0),(1128,1541318400,1),(1128,1552208400,0),(1128,1572768000,1),(1128,1583658000,0),(1128,1604217600,1),(1128,1615712400,0),(1128,1636272000,1),(1128,1647162000,0),(1128,1667721600,1),(1128,1678611600,0),(1128,1699171200,1),(1128,1710061200,0),(1128,1730620800,1),(1128,1741510800,0),(1128,1762070400,1),(1128,1772960400,0),(1128,1793520000,1),(1128,1805014800,0),(1128,1825574400,1),(1128,1836464400,0),(1128,1857024000,1),(1128,1867914000,0),(1128,1888473600,1),(1128,1899363600,0),(1128,1919923200,1),(1128,1930813200,0),(1128,1951372800,1),(1128,1962867600,0),(1128,1983427200,1),(1128,1994317200,0),(1128,2014876800,1),(1128,2025766800,0),(1128,2046326400,1),(1128,2057216400,0),(1128,2077776000,1),(1128,2088666000,0),(1128,2109225600,1),(1128,2120115600,0),(1128,2140675200,1),(1129,-2147483648,0),(1129,-1514736000,1),(1129,-1451667600,2),(1129,-1343062800,1),(1129,-1234803600,2),(1129,-1222963200,3),(1129,-1207242000,2),(1129,-873820800,4),(1129,-769395600,5),(1129,-761677200,2),(1129,-686073600,3),(1129,-661539600,2),(1129,-495039600,3),(1129,-481734000,2),(1129,-463590000,3),(1129,-450284400,2),(1129,-431535600,3),(1129,-418230000,2),(1129,-400086000,3),(1129,-386780400,2),(1129,-368636400,3),(1129,-355330800,2),(1129,-337186800,3),(1129,-323881200,2),(1129,-305737200,3),(1129,-292431600,2),(1129,199274400,3),(1129,215600400,2),(1129,230724000,3),(1129,247050000,2),(1129,262778400,3),(1129,278499600,2),(1129,294228000,3),(1129,309949200,2),(1129,325677600,3),(1129,341398800,2),(1129,357127200,3),(1129,372848400,2),(1129,388576800,3),(1129,404902800,2),(1129,420026400,3),(1129,436352400,2),(1129,452080800,3),(1129,467802000,2),(1129,483530400,3),(1129,499251600,2),(1129,514980000,3),(1129,530701200,2),(1129,544615200,3),(1129,562150800,2),(1129,576064800,3),(1129,594205200,2),(1129,607514400,3),(1129,625654800,2),(1129,638964000,3),(1129,657104400,2),(1129,671018400,3),(1129,688554000,2),(1129,702468000,3),(1129,720003600,2),(1129,733917600,3),(1129,752058000,2),(1129,765367200,3),(1129,783507600,2),(1129,796816800,3),(1129,814957200,2),(1129,828871200,3),(1129,846406800,2),(1129,860320800,3),(1129,877856400,2),(1129,891770400,3),(1129,909306000,2),(1129,923220000,3),(1129,941360400,2),(1129,954669600,3),(1129,972810000,2),(1129,986119200,3),(1129,1004259600,2),(1129,1018173600,3),(1129,1035709200,2),(1129,1049623200,3),(1129,1067158800,2),(1129,1081072800,3),(1129,1099213200,2),(1129,1112522400,3),(1129,1130662800,2),(1129,1143972000,3),(1129,1162112400,2),(1129,1175421600,3),(1129,1193562000,2),(1129,1207476000,3),(1129,1225011600,2),(1129,1238925600,3),(1129,1256461200,2),(1129,1268560800,3),(1129,1289120400,2),(1129,1300010400,3),(1129,1320570000,2),(1129,1331460000,3),(1129,1352019600,2),(1129,1362909600,3),(1129,1383469200,2),(1129,1394359200,3),(1129,1414918800,2),(1129,1425808800,3),(1129,1446368400,2),(1129,1457863200,3),(1129,1478422800,2),(1129,1489312800,3),(1129,1509872400,2),(1129,1520762400,3),(1129,1541322000,2),(1129,1552212000,3),(1129,1572771600,2),(1129,1583661600,3),(1129,1604221200,2),(1129,1615716000,3),(1129,1636275600,2),(1129,1647165600,3),(1129,1667725200,2),(1129,1678615200,3),(1129,1699174800,2),(1129,1710064800,3),(1129,1730624400,2),(1129,1741514400,3),(1129,1762074000,2),(1129,1772964000,3),(1129,1793523600,2),(1129,1805018400,3),(1129,1825578000,2),(1129,1836468000,3),(1129,1857027600,2),(1129,1867917600,3),(1129,1888477200,2),(1129,1899367200,3),(1129,1919926800,2),(1129,1930816800,3),(1129,1951376400,2),(1129,1962871200,3),(1129,1983430800,2),(1129,1994320800,3),(1129,2014880400,2),(1129,2025770400,3),(1129,2046330000,2),(1129,2057220000,3),(1129,2077779600,2),(1129,2088669600,3),(1129,2109229200,2),(1129,2120119200,3),(1129,2140678800,2),(1130,-2147483648,0),(1130,-1514739600,1),(1130,-1343066400,2),(1130,-1234807200,1),(1130,-1220292000,2),(1130,-1207159200,1),(1130,-1191344400,2),(1130,-873828000,1),(1130,-661539600,3),(1130,28800,1),(1130,828867600,4),(1130,846403200,1),(1130,860317200,4),(1130,877852800,1),(1130,891766800,4),(1130,909302400,1),(1130,923216400,4),(1130,941356800,1),(1130,954666000,4),(1130,972806400,1),(1130,989139600,4),(1130,1001836800,1),(1130,1018170000,4),(1130,1035705600,1),(1130,1049619600,4),(1130,1067155200,1),(1130,1081069200,4),(1130,1099209600,1),(1130,1112518800,4),(1130,1130659200,1),(1130,1143968400,4),(1130,1162108800,1),(1130,1175418000,4),(1130,1193558400,1),(1130,1207472400,4),(1130,1225008000,1),(1130,1238922000,4),(1130,1256457600,1),(1130,1270371600,4),(1130,1288512000,1),(1130,1301821200,4),(1130,1319961600,1),(1130,1333270800,4),(1130,1351411200,1),(1130,1365325200,4),(1130,1382860800,1),(1130,1396774800,4),(1130,1414310400,1),(1130,1428224400,4),(1130,1445760000,1),(1130,1459674000,4),(1130,1477814400,1),(1130,1491123600,4),(1130,1509264000,1),(1130,1522573200,4),(1130,1540713600,1),(1130,1554627600,4),(1130,1572163200,1),(1130,1586077200,4),(1130,1603612800,1),(1130,1617526800,4),(1130,1635667200,1),(1130,1648976400,4),(1130,1667116800,1),(1130,1680426000,4),(1130,1698566400,1),(1130,1712480400,4),(1130,1730016000,1),(1130,1743930000,4),(1130,1761465600,1),(1130,1775379600,4),(1130,1792915200,1),(1130,1806829200,4),(1130,1824969600,1),(1130,1838278800,4),(1130,1856419200,1),(1130,1869728400,4),(1130,1887868800,1),(1130,1901782800,4),(1130,1919318400,1),(1130,1933232400,4),(1130,1950768000,1),(1130,1964682000,4),(1130,1982822400,1),(1130,1996131600,4),(1130,2014272000,1),(1130,2027581200,4),(1130,2045721600,1),(1130,2059030800,4),(1130,2077171200,1),(1130,2091085200,4),(1130,2108620800,1),(1130,2122534800,4),(1130,2140070400,1),(1131,-2147483648,0),(1131,-1514739600,1),(1131,-1343066400,2),(1131,-1234807200,1),(1131,-1220292000,2),(1131,-1207159200,1),(1131,-1191344400,2),(1131,-975261600,3),(1131,-963169200,2),(1131,-917114400,3),(1131,-907354800,2),(1131,-821901600,4),(1131,-810068400,2),(1131,-627501600,3),(1131,-612990000,2),(1131,828864000,3),(1131,846399600,2),(1131,860313600,3),(1131,877849200,2),(1131,891763200,3),(1131,909298800,2),(1131,923212800,3),(1131,941353200,2),(1131,954662400,3),(1131,972802800,2),(1131,989136000,3),(1131,1001833200,2),(1131,1018166400,3),(1131,1035702000,2),(1131,1049616000,3),(1131,1067151600,2),(1131,1081065600,3),(1131,1099206000,2),(1131,1112515200,3),(1131,1130655600,2),(1131,1143964800,3),(1131,1162105200,2),(1131,1175414400,3),(1131,1193554800,2),(1131,1207468800,3),(1131,1225004400,2),(1131,1238918400,3),(1131,1256454000,2),(1131,1270368000,3),(1131,1288508400,2),(1131,1301817600,3),(1131,1319958000,2),(1131,1333267200,3),(1131,1351407600,2),(1131,1365321600,3),(1131,1382857200,2),(1131,1396771200,3),(1131,1414306800,2),(1131,1428220800,3),(1131,1445756400,2),(1131,1459670400,3),(1131,1477810800,2),(1131,1491120000,3),(1131,1509260400,2),(1131,1522569600,3),(1131,1540710000,2),(1131,1554624000,3),(1131,1572159600,2),(1131,1586073600,3),(1131,1603609200,2),(1131,1617523200,3),(1131,1635663600,2),(1131,1648972800,3),(1131,1667113200,2),(1131,1680422400,3),(1131,1698562800,2),(1131,1712476800,3),(1131,1730012400,2),(1131,1743926400,3),(1131,1761462000,2),(1131,1775376000,3),(1131,1792911600,2),(1131,1806825600,3),(1131,1824966000,2),(1131,1838275200,3),(1131,1856415600,2),(1131,1869724800,3),(1131,1887865200,2),(1131,1901779200,3),(1131,1919314800,2),(1131,1933228800,3),(1131,1950764400,2),(1131,1964678400,3),(1131,1982818800,2),(1131,1996128000,3),(1131,2014268400,2),(1131,2027577600,3),(1131,2045718000,2),(1131,2059027200,3),(1131,2077167600,2),(1131,2091081600,3),(1131,2108617200,2),(1131,2122531200,3),(1131,2140066800,2),(1132,-2147483648,2),(1132,-1330335000,1),(1132,-1320057000,2),(1132,-1300699800,3),(1132,-1287396000,2),(1132,-1269250200,3),(1132,-1255946400,2),(1132,-1237800600,3),(1132,-1224496800,2),(1132,-1206351000,3),(1132,-1192442400,2),(1132,-1174901400,3),(1132,-1160992800,2),(1132,-1143451800,3),(1132,-1125914400,2),(1132,-1112607000,3),(1132,-1094464800,2),(1132,-1081157400,3),(1132,-1063015200,2),(1132,-1049707800,3),(1132,-1031565600,2),(1132,-1018258200,3),(1132,-1000116000,2),(1132,-986808600,3),(1132,-968061600,2),(1132,-955359000,3),(1132,-936612000,2),(1132,-923304600,3),(1132,-757425600,6),(1132,152632800,4),(1132,162309600,5),(1132,183477600,4),(1132,194968800,5),(1132,215532000,4),(1132,226418400,5),(1132,246981600,4),(1132,257868000,5),(1132,278431200,4),(1132,289317600,5),(1132,309880800,4),(1132,320767200,5),(1132,341330400,4),(1132,352216800,5),(1132,372780000,4),(1132,384271200,5),(1132,404834400,4),(1132,415720800,5),(1132,436284000,4),(1132,447170400,5),(1132,467733600,4),(1132,478620000,5),(1132,499183200,4),(1132,510069600,5),(1132,530632800,4),(1132,541519200,5),(1132,562082400,4),(1132,573573600,5),(1132,594136800,4),(1132,605023200,5),(1132,623772000,4),(1132,637682400,5),(1132,655221600,4),(1132,669132000,5),(1132,686671200,4),(1132,700581600,5),(1132,718120800,4),(1132,732636000,5),(1132,749570400,4),(1132,764085600,5),(1132,781020000,4),(1132,795535200,5),(1132,812469600,4),(1132,826984800,5),(1132,844524000,4),(1132,858434400,5),(1132,875973600,4),(1132,889884000,5),(1132,907423200,4),(1132,921938400,5),(1132,938872800,4),(1132,953388000,5),(1132,970322400,4),(1132,984837600,5),(1132,1002376800,4),(1132,1016287200,5),(1132,1033826400,4),(1132,1047736800,5),(1132,1065276000,4),(1132,1079791200,5),(1132,1096725600,4),(1132,1111240800,5),(1132,1128175200,4),(1132,1142690400,5),(1132,1159624800,4),(1132,1174140000,5),(1132,1191074400,4),(1132,1207404000,5),(1132,1222524000,4),(1132,1238853600,5),(1132,1253973600,4),(1132,1270303200,5),(1132,1285423200,4),(1132,1301752800,5),(1132,1316872800,4),(1132,1333202400,5),(1132,1348927200,4),(1132,1365256800,5),(1132,1380376800,4),(1132,1396706400,5),(1132,1411826400,4),(1132,1428156000,5),(1132,1443276000,4),(1132,1459605600,5),(1132,1474725600,4),(1132,1491055200,5),(1132,1506175200,4),(1132,1522504800,5),(1132,1538229600,4),(1132,1554559200,5),(1132,1569679200,4),(1132,1586008800,5),(1132,1601128800,4),(1132,1617458400,5),(1132,1632578400,4),(1132,1648908000,5),(1132,1664028000,4),(1132,1680357600,5),(1132,1695477600,4),(1132,1712412000,5),(1132,1727532000,4),(1132,1743861600,5),(1132,1758981600,4),(1132,1775311200,5),(1132,1790431200,4),(1132,1806760800,5),(1132,1821880800,4),(1132,1838210400,5),(1132,1853330400,4),(1132,1869660000,5),(1132,1885384800,4),(1132,1901714400,5),(1132,1916834400,4),(1132,1933164000,5),(1132,1948284000,4),(1132,1964613600,5),(1132,1979733600,4),(1132,1996063200,5),(1132,2011183200,4),(1132,2027512800,5),(1132,2042632800,4),(1132,2058962400,5),(1132,2074687200,4),(1132,2091016800,5),(1132,2106136800,4),(1132,2122466400,5),(1132,2137586400,4),(1133,-2147483648,1),(1133,-757426500,4),(1133,152632800,2),(1133,162309600,3),(1133,183477600,2),(1133,194968800,3),(1133,215532000,2),(1133,226418400,3),(1133,246981600,2),(1133,257868000,3),(1133,278431200,2),(1133,289317600,3),(1133,309880800,2),(1133,320767200,3),(1133,341330400,2),(1133,352216800,3),(1133,372780000,2),(1133,384271200,3),(1133,404834400,2),(1133,415720800,3),(1133,436284000,2),(1133,447170400,3),(1133,467733600,2),(1133,478620000,3),(1133,499183200,2),(1133,510069600,3),(1133,530632800,2),(1133,541519200,3),(1133,562082400,2),(1133,573573600,3),(1133,594136800,2),(1133,605023200,3),(1133,623772000,2),(1133,637682400,3),(1133,655221600,2),(1133,669132000,3),(1133,686671200,2),(1133,700581600,3),(1133,718120800,2),(1133,732636000,3),(1133,749570400,2),(1133,764085600,3),(1133,781020000,2),(1133,795535200,3),(1133,812469600,2),(1133,826984800,3),(1133,844524000,2),(1133,858434400,3),(1133,875973600,2),(1133,889884000,3),(1133,907423200,2),(1133,921938400,3),(1133,938872800,2),(1133,953388000,3),(1133,970322400,2),(1133,984837600,3),(1133,1002376800,2),(1133,1016287200,3),(1133,1033826400,2),(1133,1047736800,3),(1133,1065276000,2),(1133,1079791200,3),(1133,1096725600,2),(1133,1111240800,3),(1133,1128175200,2),(1133,1142690400,3),(1133,1159624800,2),(1133,1174140000,3),(1133,1191074400,2),(1133,1207404000,3),(1133,1222524000,2),(1133,1238853600,3),(1133,1253973600,2),(1133,1270303200,3),(1133,1285423200,2),(1133,1301752800,3),(1133,1316872800,2),(1133,1333202400,3),(1133,1348927200,2),(1133,1365256800,3),(1133,1380376800,2),(1133,1396706400,3),(1133,1411826400,2),(1133,1428156000,3),(1133,1443276000,2),(1133,1459605600,3),(1133,1474725600,2),(1133,1491055200,3),(1133,1506175200,2),(1133,1522504800,3),(1133,1538229600,2),(1133,1554559200,3),(1133,1569679200,2),(1133,1586008800,3),(1133,1601128800,2),(1133,1617458400,3),(1133,1632578400,2),(1133,1648908000,3),(1133,1664028000,2),(1133,1680357600,3),(1133,1695477600,2),(1133,1712412000,3),(1133,1727532000,2),(1133,1743861600,3),(1133,1758981600,2),(1133,1775311200,3),(1133,1790431200,2),(1133,1806760800,3),(1133,1821880800,2),(1133,1838210400,3),(1133,1853330400,2),(1133,1869660000,3),(1133,1885384800,2),(1133,1901714400,3),(1133,1916834400,2),(1133,1933164000,3),(1133,1948284000,2),(1133,1964613600,3),(1133,1979733600,2),(1133,1996063200,3),(1133,2011183200,2),(1133,2027512800,3),(1133,2042632800,2),(1133,2058962400,3),(1133,2074687200,2),(1133,2091016800,3),(1133,2106136800,2),(1133,2122466400,3),(1133,2137586400,2),(1133,2147483647,2),(1134,-2147483648,2),(1134,-1633273200,1),(1134,-1615132800,2),(1134,-1601823600,1),(1134,-1583683200,2),(1134,-1570374000,1),(1134,-1551628800,2),(1134,-1538924400,1),(1134,-1534089600,2),(1134,-880210800,3),(1134,-769395600,4),(1134,-765388800,2),(1134,-147884400,1),(1134,-131558400,2),(1134,-116434800,1),(1134,-100108800,2),(1134,-84380400,1),(1134,-68659200,2),(1134,-52930800,1),(1134,-37209600,2),(1134,-21481200,1),(1134,-5760000,2),(1134,9968400,1),(1134,25689600,2),(1134,41418000,1),(1134,57744000,2),(1134,73472400,1),(1134,89193600,2),(1134,104922000,1),(1134,120643200,2),(1134,126694800,1),(1134,152092800,2),(1134,162378000,1),(1134,183542400,2),(1134,199270800,1),(1134,215596800,2),(1134,230720400,1),(1134,247046400,2),(1134,262774800,1),(1134,278496000,2),(1134,294224400,1),(1134,309945600,2),(1134,325674000,1),(1134,341395200,2),(1134,357123600,1),(1134,372844800,2),(1134,388573200,1),(1134,404899200,2),(1134,420022800,1),(1134,436348800,2),(1134,452077200,1),(1134,467798400,2),(1134,483526800,1),(1134,499248000,2),(1134,514976400,1),(1134,530697600,2),(1134,544611600,1),(1134,562147200,2),(1134,576061200,1),(1134,594201600,2),(1134,607510800,1),(1134,625651200,2),(1134,638960400,1),(1134,657100800,2),(1134,671014800,1),(1134,688550400,2),(1134,702464400,1),(1134,720000000,2),(1134,733914000,1),(1134,752054400,2),(1134,765363600,1),(1134,783504000,2),(1134,796813200,1),(1134,814953600,2),(1134,828867600,1),(1134,846403200,2),(1134,860317200,1),(1134,877852800,2),(1134,891766800,1),(1134,909302400,2),(1134,923216400,1),(1134,941356800,2),(1134,954666000,1),(1134,972806400,2),(1134,986115600,1),(1134,1004256000,2),(1134,1018170000,1),(1134,1035705600,2),(1134,1049619600,1),(1134,1067155200,2),(1134,1081069200,1),(1134,1099209600,2),(1134,1112518800,1),(1134,1130659200,2),(1134,1143968400,1),(1134,1162108800,2),(1134,1173603600,1),(1134,1194163200,2),(1134,1205053200,1),(1134,1225612800,2),(1134,1236502800,1),(1134,1257062400,2),(1134,1268557200,1),(1134,1289116800,2),(1134,1300006800,1),(1134,1320566400,2),(1134,1331456400,1),(1134,1352016000,2),(1134,1362906000,1),(1134,1383465600,2),(1134,1394355600,1),(1134,1414915200,2),(1134,1425805200,1),(1134,1446364800,2),(1134,1457859600,1),(1134,1478419200,2),(1134,1489309200,1),(1134,1509868800,2),(1134,1520758800,1),(1134,1541318400,2),(1134,1552208400,1),(1134,1572768000,2),(1134,1583658000,1),(1134,1604217600,2),(1134,1615712400,1),(1134,1636272000,2),(1134,1647162000,1),(1134,1667721600,2),(1134,1678611600,1),(1134,1699171200,2),(1134,1710061200,1),(1134,1730620800,2),(1134,1741510800,1),(1134,1762070400,2),(1134,1772960400,1),(1134,1793520000,2),(1134,1805014800,1),(1134,1825574400,2),(1134,1836464400,1),(1134,1857024000,2),(1134,1867914000,1),(1134,1888473600,2),(1134,1899363600,1),(1134,1919923200,2),(1134,1930813200,1),(1134,1951372800,2),(1134,1962867600,1),(1134,1983427200,2),(1134,1994317200,1),(1134,2014876800,2),(1134,2025766800,1),(1134,2046326400,2),(1134,2057216400,1),(1134,2077776000,2),(1134,2088666000,1),(1134,2109225600,2),(1134,2120115600,1),(1134,2140675200,2),(1135,-2147483648,2),(1135,-1600675200,1),(1135,-1585904400,2),(1135,-933667200,1),(1135,-922093200,2),(1135,-908870400,1),(1135,-888829200,2),(1135,-881049600,1),(1135,-767869200,2),(1135,-745833600,1),(1135,-733827600,2),(1135,-716889600,1),(1135,-699613200,2),(1135,-683884800,1),(1135,-670669200,2),(1135,-652348800,1),(1135,-650019600,2),(1135,515527200,1),(1135,527014800,2),(1135,545162400,1),(1135,558464400,2),(1135,577216800,1),(1135,589914000,2),(1135,608666400,1),(1135,621968400,2),(1135,640116000,1),(1135,653418000,2),(1135,671565600,1),(1135,684867600,2),(1136,-1633269600,0),(1136,-1615129200,1),(1136,-1601820000,0),(1136,-1583679600,1),(1136,-880207200,2),(1136,-769395600,3),(1136,-765385200,1),(1136,-84376800,0),(1136,-68655600,1),(1136,-52927200,0),(1136,-37206000,1),(1136,-21477600,0),(1136,-5756400,1),(1136,9972000,0),(1136,25693200,1),(1136,41421600,0),(1136,57747600,1),(1136,73476000,0),(1136,89197200,1),(1136,104925600,0),(1136,120646800,1),(1136,126698400,0),(1136,152096400,1),(1136,162381600,0),(1136,183546000,1),(1136,199274400,0),(1136,215600400,1),(1136,230724000,0),(1136,247050000,1),(1136,262778400,0),(1136,278499600,1),(1136,294228000,0),(1136,309949200,1),(1136,325677600,0),(1136,341398800,1),(1136,357127200,0),(1136,372848400,1),(1136,388576800,0),(1136,404902800,1),(1136,420026400,0),(1136,436352400,1),(1136,452080800,0),(1136,467802000,1),(1136,483530400,0),(1136,499251600,1),(1136,514980000,0),(1136,530701200,1),(1136,544615200,0),(1136,562150800,1),(1136,576064800,0),(1136,594205200,1),(1136,607514400,0),(1136,625654800,1),(1136,638964000,0),(1136,657104400,1),(1136,671018400,0),(1136,688554000,1),(1136,702468000,0),(1136,720003600,1),(1136,733917600,0),(1136,752058000,1),(1136,765367200,0),(1136,783507600,1),(1136,796816800,0),(1136,814957200,1),(1136,828871200,0),(1136,846406800,1),(1136,860320800,0),(1136,877856400,1),(1136,891770400,0),(1136,909306000,1),(1136,923220000,0),(1136,941360400,1),(1136,954669600,0),(1136,972810000,1),(1136,986119200,0),(1136,1004259600,1),(1136,1018173600,0),(1136,1035709200,1),(1136,1049623200,0),(1136,1067158800,1),(1136,1081072800,0),(1136,1099213200,1),(1136,1112522400,0),(1136,1130662800,1),(1136,1143972000,0),(1136,1162112400,1),(1136,1173607200,0),(1136,1194166800,1),(1136,1205056800,0),(1136,1225616400,1),(1136,1236506400,0),(1136,1257066000,1),(1136,1268560800,0),(1136,1289120400,1),(1136,1300010400,0),(1136,1320570000,1),(1136,1331460000,0),(1136,1352019600,1),(1136,1362909600,0),(1136,1383469200,1),(1136,1394359200,0),(1136,1414918800,1),(1136,1425808800,0),(1136,1446368400,1),(1136,1457863200,0),(1136,1478422800,1),(1136,1489312800,0),(1136,1509872400,1),(1136,1520762400,0),(1136,1541322000,1),(1136,1552212000,0),(1136,1572771600,1),(1136,1583661600,0),(1136,1604221200,1),(1136,1615716000,0),(1136,1636275600,1),(1136,1647165600,0),(1136,1667725200,1),(1136,1678615200,0),(1136,1699174800,1),(1136,1710064800,0),(1136,1730624400,1),(1136,1741514400,0),(1136,1762074000,1),(1136,1772964000,0),(1136,1793523600,1),(1136,1805018400,0),(1136,1825578000,1),(1136,1836468000,0),(1136,1857027600,1),(1136,1867917600,0),(1136,1888477200,1),(1136,1899367200,0),(1136,1919926800,1),(1136,1930816800,0),(1136,1951376400,1),(1136,1962871200,0),(1136,1983430800,1),(1136,1994320800,0),(1136,2014880400,1),(1136,2025770400,0),(1136,2046330000,1),(1136,2057220000,0),(1136,2077779600,1),(1136,2088669600,0),(1136,2109229200,1),(1136,2120119200,0),(1136,2140678800,1),(1137,-2147483648,1),(1137,-1861878784,2),(1137,-631110600,4),(1137,1285498800,3),(1137,1301752800,4),(1137,1316872800,3),(1137,1325239200,6),(1137,1333202400,5),(1137,1348927200,6),(1137,1365256800,5),(1137,1380376800,6),(1137,1396706400,5),(1137,1411826400,6),(1137,1428156000,5),(1137,1443276000,6),(1137,1459605600,5),(1137,1474725600,6),(1137,1491055200,5),(1137,1506175200,6),(1137,1522504800,5),(1137,1538229600,6),(1137,1554559200,5),(1137,1569679200,6),(1137,1586008800,5),(1137,1601128800,6),(1137,1617458400,5),(1137,1632578400,6),(1137,1648908000,5),(1137,1664028000,6),(1137,1680357600,5),(1137,1695477600,6),(1137,1712412000,5),(1137,1727532000,6),(1137,1743861600,5),(1137,1758981600,6),(1137,1775311200,5),(1137,1790431200,6),(1137,1806760800,5),(1137,1821880800,6),(1137,1838210400,5),(1137,1853330400,6),(1137,1869660000,5),(1137,1885384800,6),(1137,1901714400,5),(1137,1916834400,6),(1137,1933164000,5),(1137,1948284000,6),(1137,1964613600,5),(1137,1979733600,6),(1137,1996063200,5),(1137,2011183200,6),(1137,2027512800,5),(1137,2042632800,6),(1137,2058962400,5),(1137,2074687200,6),(1137,2091016800,5),(1137,2106136800,6),(1137,2122466400,5),(1137,2137586400,6),(1137,2147483647,6),(1138,-2147483648,2),(1138,-1330335000,1),(1138,-1320057000,2),(1138,-1300699800,3),(1138,-1287396000,2),(1138,-1269250200,3),(1138,-1255946400,2),(1138,-1237800600,3),(1138,-1224496800,2),(1138,-1206351000,3),(1138,-1192442400,2),(1138,-1174901400,3),(1138,-1160992800,2),(1138,-1143451800,3),(1138,-1125914400,2),(1138,-1112607000,3),(1138,-1094464800,2),(1138,-1081157400,3),(1138,-1063015200,2),(1138,-1049707800,3),(1138,-1031565600,2),(1138,-1018258200,3),(1138,-1000116000,2),(1138,-986808600,3),(1138,-968061600,2),(1138,-955359000,3),(1138,-936612000,2),(1138,-923304600,3),(1138,-757425600,6),(1138,152632800,4),(1138,162309600,5),(1138,183477600,4),(1138,194968800,5),(1138,215532000,4),(1138,226418400,5),(1138,246981600,4),(1138,257868000,5),(1138,278431200,4),(1138,289317600,5),(1138,309880800,4),(1138,320767200,5),(1138,341330400,4),(1138,352216800,5),(1138,372780000,4),(1138,384271200,5),(1138,404834400,4),(1138,415720800,5),(1138,436284000,4),(1138,447170400,5),(1138,467733600,4),(1138,478620000,5),(1138,499183200,4),(1138,510069600,5),(1138,530632800,4),(1138,541519200,5),(1138,562082400,4),(1138,573573600,5),(1138,594136800,4),(1138,605023200,5),(1138,623772000,4),(1138,637682400,5),(1138,655221600,4),(1138,669132000,5),(1138,686671200,4),(1138,700581600,5),(1138,718120800,4),(1138,732636000,5),(1138,749570400,4),(1138,764085600,5),(1138,781020000,4),(1138,795535200,5),(1138,812469600,4),(1138,826984800,5),(1138,844524000,4),(1138,858434400,5),(1138,875973600,4),(1138,889884000,5),(1138,907423200,4),(1138,921938400,5),(1138,938872800,4),(1138,953388000,5),(1138,970322400,4),(1138,984837600,5),(1138,1002376800,4),(1138,1016287200,5),(1138,1033826400,4),(1138,1047736800,5),(1138,1065276000,4),(1138,1079791200,5),(1138,1096725600,4),(1138,1111240800,5),(1138,1128175200,4),(1138,1142690400,5),(1138,1159624800,4),(1138,1174140000,5),(1138,1191074400,4),(1138,1207404000,5),(1138,1222524000,4),(1138,1238853600,5),(1138,1253973600,4),(1138,1270303200,5),(1138,1285423200,4),(1138,1301752800,5),(1138,1316872800,4),(1138,1333202400,5),(1138,1348927200,4),(1138,1365256800,5),(1138,1380376800,4),(1138,1396706400,5),(1138,1411826400,4),(1138,1428156000,5),(1138,1443276000,4),(1138,1459605600,5),(1138,1474725600,4),(1138,1491055200,5),(1138,1506175200,4),(1138,1522504800,5),(1138,1538229600,4),(1138,1554559200,5),(1138,1569679200,4),(1138,1586008800,5),(1138,1601128800,4),(1138,1617458400,5),(1138,1632578400,4),(1138,1648908000,5),(1138,1664028000,4),(1138,1680357600,5),(1138,1695477600,4),(1138,1712412000,5),(1138,1727532000,4),(1138,1743861600,5),(1138,1758981600,4),(1138,1775311200,5),(1138,1790431200,4),(1138,1806760800,5),(1138,1821880800,4),(1138,1838210400,5),(1138,1853330400,4),(1138,1869660000,5),(1138,1885384800,4),(1138,1901714400,5),(1138,1916834400,4),(1138,1933164000,5),(1138,1948284000,4),(1138,1964613600,5),(1138,1979733600,4),(1138,1996063200,5),(1138,2011183200,4),(1138,2027512800,5),(1138,2042632800,4),(1138,2058962400,5),(1138,2074687200,4),(1138,2091016800,5),(1138,2106136800,4),(1138,2122466400,5),(1138,2137586400,4),(1139,-2147483648,1),(1139,-868010400,2),(1139,-768906000,1),(1139,1419696000,3),(1139,2147483647,3),(1140,-2147483648,1),(1140,-757426500,4),(1140,152632800,2),(1140,162309600,3),(1140,183477600,2),(1140,194968800,3),(1140,215532000,2),(1140,226418400,3),(1140,246981600,2),(1140,257868000,3),(1140,278431200,2),(1140,289317600,3),(1140,309880800,2),(1140,320767200,3),(1140,341330400,2),(1140,352216800,3),(1140,372780000,2),(1140,384271200,3),(1140,404834400,2),(1140,415720800,3),(1140,436284000,2),(1140,447170400,3),(1140,467733600,2),(1140,478620000,3),(1140,499183200,2),(1140,510069600,3),(1140,530632800,2),(1140,541519200,3),(1140,562082400,2),(1140,573573600,3),(1140,594136800,2),(1140,605023200,3),(1140,623772000,2),(1140,637682400,3),(1140,655221600,2),(1140,669132000,3),(1140,686671200,2),(1140,700581600,3),(1140,718120800,2),(1140,732636000,3),(1140,749570400,2),(1140,764085600,3),(1140,781020000,2),(1140,795535200,3),(1140,812469600,2),(1140,826984800,3),(1140,844524000,2),(1140,858434400,3),(1140,875973600,2),(1140,889884000,3),(1140,907423200,2),(1140,921938400,3),(1140,938872800,2),(1140,953388000,3),(1140,970322400,2),(1140,984837600,3),(1140,1002376800,2),(1140,1016287200,3),(1140,1033826400,2),(1140,1047736800,3),(1140,1065276000,2),(1140,1079791200,3),(1140,1096725600,2),(1140,1111240800,3),(1140,1128175200,2),(1140,1142690400,3),(1140,1159624800,2),(1140,1174140000,3),(1140,1191074400,2),(1140,1207404000,3),(1140,1222524000,2),(1140,1238853600,3),(1140,1253973600,2),(1140,1270303200,3),(1140,1285423200,2),(1140,1301752800,3),(1140,1316872800,2),(1140,1333202400,3),(1140,1348927200,2),(1140,1365256800,3),(1140,1380376800,2),(1140,1396706400,3),(1140,1411826400,2),(1140,1428156000,3),(1140,1443276000,2),(1140,1459605600,3),(1140,1474725600,2),(1140,1491055200,3),(1140,1506175200,2),(1140,1522504800,3),(1140,1538229600,2),(1140,1554559200,3),(1140,1569679200,2),(1140,1586008800,3),(1140,1601128800,2),(1140,1617458400,3),(1140,1632578400,2),(1140,1648908000,3),(1140,1664028000,2),(1140,1680357600,3),(1140,1695477600,2),(1140,1712412000,3),(1140,1727532000,2),(1140,1743861600,3),(1140,1758981600,2),(1140,1775311200,3),(1140,1790431200,2),(1140,1806760800,3),(1140,1821880800,2),(1140,1838210400,3),(1140,1853330400,2),(1140,1869660000,3),(1140,1885384800,2),(1140,1901714400,3),(1140,1916834400,2),(1140,1933164000,3),(1140,1948284000,2),(1140,1964613600,3),(1140,1979733600,2),(1140,1996063200,3),(1140,2011183200,2),(1140,2027512800,3),(1140,2042632800,2),(1140,2058962400,3),(1140,2074687200,2),(1140,2091016800,3),(1140,2106136800,2),(1140,2122466400,3),(1140,2137586400,2),(1140,2147483647,2),(1141,-2147483648,1),(1141,-1743674400,2),(1141,-1606813200,1),(1141,-907408800,2),(1141,-770634000,1),(1141,2147483647,1),(1142,-2147483648,1),(1142,-1178124152,4),(1142,-36619200,2),(1142,-23922000,3),(1142,-3355200,2),(1142,7527600,3),(1142,24465600,2),(1142,37767600,3),(1142,55915200,2),(1142,69217200,3),(1142,87969600,2),(1142,100666800,3),(1142,118209600,2),(1142,132116400,3),(1142,150868800,2),(1142,163566000,3),(1142,182318400,2),(1142,195620400,3),(1142,213768000,2),(1142,227070000,3),(1142,245217600,2),(1142,258519600,3),(1142,277272000,2),(1142,289969200,3),(1142,308721600,2),(1142,321418800,3),(1142,340171200,2),(1142,353473200,3),(1142,371620800,2),(1142,384922800,5),(1142,403070400,6),(1142,416372400,5),(1142,434520000,6),(1142,447822000,5),(1142,466574400,6),(1142,479271600,5),(1142,498024000,6),(1142,510721200,5),(1142,529473600,6),(1142,545194800,5),(1142,560923200,6),(1142,574225200,5),(1142,592372800,6),(1142,605674800,5),(1142,624427200,6),(1142,637124400,5),(1142,653457600,6),(1142,668574000,5),(1142,687326400,6),(1142,700628400,5),(1142,718776000,6),(1142,732078000,5),(1142,750225600,6),(1142,763527600,5),(1142,781675200,6),(1142,794977200,5),(1142,813729600,6),(1142,826426800,5),(1142,845179200,6),(1142,859690800,5),(1142,876628800,6),(1142,889930800,5),(1142,906868800,6),(1142,923194800,5),(1142,939528000,6),(1142,952830000,5),(1142,971582400,6),(1142,984279600,5),(1142,1003032000,6),(1142,1015729200,5),(1142,1034481600,6),(1142,1047178800,5),(1142,1065931200,6),(1142,1079233200,5),(1142,1097380800,6),(1142,1110682800,5),(1142,1128830400,6),(1142,1142132400,5),(1142,1160884800,6),(1142,1173582000,5),(1142,1192334400,6),(1142,1206846000,5),(1142,1223784000,6),(1142,1237086000,5),(1142,1255233600,6),(1142,1270350000,5),(1142,1286683200,6),(1142,1304823600,5),(1142,1313899200,6),(1142,1335668400,5),(1142,1346558400,6),(1142,1367118000,5),(1142,1378612800,6),(1142,1398567600,5),(1142,1410062400,6),(1142,1463281200,5),(1142,1471147200,6),(1142,1494730800,5),(1142,1502596800,6),(1142,1526180400,5),(1142,1534046400,6),(1142,1554606000,5),(1142,1567915200,6),(1142,1586055600,5),(1142,1599364800,6),(1142,1617505200,5),(1142,1630814400,6),(1142,1648954800,5),(1142,1662264000,6),(1142,1680404400,5),(1142,1693713600,6),(1142,1712458800,5),(1142,1725768000,6),(1142,1743908400,5),(1142,1757217600,6),(1142,1775358000,5),(1142,1788667200,6),(1142,1806807600,5),(1142,1820116800,6),(1142,1838257200,5),(1142,1851566400,6),(1142,1870311600,5),(1142,1883016000,6),(1142,1901761200,5),(1142,1915070400,6),(1142,1933210800,5),(1142,1946520000,6),(1142,1964660400,5),(1142,1977969600,6),(1142,1996110000,5),(1142,2009419200,6),(1142,2027559600,5),(1142,2040868800,6),(1142,2059614000,5),(1142,2072318400,6),(1142,2091063600,5),(1142,2104372800,6),(1142,2122513200,5),(1142,2135822400,6),(1142,2147483647,6),(1143,-2147483648,0),(1143,-1829387596,4),(1143,125409600,1),(1143,133876800,2),(1143,433256400,3),(1143,448977600,4),(1143,464706000,3),(1143,480427200,4),(1143,496760400,3),(1143,511876800,4),(1143,528210000,3),(1143,543931200,4),(1143,559659600,3),(1143,575380800,4),(1143,591109200,3),(1143,606830400,4),(1143,622558800,3),(1143,638280000,4),(1143,654008400,3),(1143,669729600,4),(1143,686062800,3),(1143,696340800,4),(1143,719931600,3),(1143,727790400,4),(1143,2147483647,4),(1144,-2147483648,1),(1144,307627200,2),(1144,788871600,3),(1144,2147483647,3),(1145,-2147483648,1),(1145,1325242800,2),(1145,2147483647,2),(1146,-2147483648,0),(1146,-1709985344,2),(1146,909842400,1),(1146,920124000,2),(1146,941896800,1),(1146,951573600,2),(1146,1259416800,1),(1146,1269698400,2),(1146,1287842400,1),(1146,1299333600,2),(1146,1319292000,1),(1146,1327154400,2),(1146,1350741600,1),(1146,1358604000,2),(1146,1382796000,1),(1146,1390050000,2),(1146,1414850400,1),(1146,1421503200,2),(1146,1446300000,1),(1146,1452952800,2),(1146,1478354400,1),(1146,1484402400,2),(1146,1509804000,1),(1146,1515852000,2),(1146,1541253600,1),(1146,1547301600,2),(1146,1573308000,1),(1146,1578751200,2),(1146,1608386400,1),(1146,1610805600,2),(1146,1636812000,1),(1146,1642255200,2),(1146,1668261600,1),(1146,1673704800,2),(1146,1699711200,1),(1146,1705154400,2),(1146,1731160800,1),(1146,1736604000,2),(1146,1762610400,1),(1146,1768658400,2),(1146,1794060000,1),(1146,1800108000,2),(1146,1826114400,1),(1146,1831557600,2),(1146,1857564000,1),(1146,1863007200,2),(1146,1889013600,1),(1146,1894456800,2),(1146,1920463200,1),(1146,1925906400,2),(1146,1951912800,1),(1146,1957960800,2),(1146,1983967200,1),(1146,1989410400,2),(1146,2015416800,1),(1146,2020860000,2),(1146,2046866400,1),(1146,2052309600,2),(1146,2078316000,1),(1146,2083759200,2),(1146,2109765600,1),(1146,2115813600,2),(1146,2141215200,1),(1146,2147263200,2),(1146,2147483647,2),(1147,-2147483648,1),(1147,2147483647,1),(1148,-2147483648,0),(1148,-1230746496,1),(1148,504939600,3),(1148,722930400,2),(1148,728888400,3),(1148,2147483647,3),(1149,-2147483648,0),(1149,-1806678012,1),(1149,2147483647,1),(1150,-2147483648,0),(1150,-1806748788,1),(1150,2147483647,1),(1151,-2147483648,1),(1151,-885549600,2),(1151,-802256400,1),(1151,-331891200,3),(1151,-281610000,1),(1151,-73728000,3),(1151,-29415540,1),(1151,-16704000,3),(1151,-10659600,1),(1151,9907200,3),(1151,21394800,1),(1151,41356800,3),(1151,52844400,1),(1151,124819200,3),(1151,130863600,1),(1151,201888000,3),(1151,209487660,1),(1151,230659200,3),(1151,241542000,1),(1151,977493600,4),(1152,-2147483648,1),(1152,-1157283000,2),(1152,-1155436200,1),(1152,-880198200,3),(1152,-769395600,4),(1152,-765376200,1),(1152,-712150200,5),(1153,-2147483648,1),(1153,-1157283000,2),(1153,-1155436200,1),(1153,-880198200,3),(1153,-769395600,4),(1153,-765376200,1),(1153,-712150200,5),(1154,-2147483648,1),(1154,307622400,2),(1154,788868000,3),(1154,2147483647,3),(1155,-2147483648,1),(1155,-1743678000,2),(1155,-1606813200,1),(1155,-1041418800,3),(1155,-907408800,2),(1155,-770634000,1),(1155,-7988400,4),(1155,915105600,1),(1155,2147483647,1),(1156,-2147483648,1),(1156,-1041418800,2),(1156,-907408800,3),(1156,-817462800,1),(1156,-7988400,4),(1156,745934400,5),(1156,2147483647,5),(1157,-2147483648,1),(1157,-1743678000,2),(1157,-1606813200,1),(1157,-1041418800,3),(1157,-907408800,2),(1157,-818067600,1),(1157,-7988400,4),(1157,2147483647,4),(1158,-2147483648,0),(1158,-1806676920,1),(1158,2147483647,1),(1159,-2147483648,1),(1159,-1861879032,2),(1160,-2147483648,0),(1160,-1545131260,1),(1160,-862918200,2),(1160,-767350800,1),(1160,287418600,3),(1160,2147483647,3),(1161,-2147483648,1),(1161,-599575200,2),(1161,276089400,3),(1161,2147483647,3),(1162,-2147483648,1),(1162,-599656320,2),(1162,152029800,3),(1162,162916200,4),(1162,1443882600,5),(1162,1561899600,7),(1162,1570287600,6),(1162,1586012400,5),(1162,1601737200,6),(1162,1617462000,5),(1162,1633186800,6),(1162,1648911600,5),(1162,1664636400,6),(1162,1680361200,5),(1162,1696086000,6),(1162,1712415600,5),(1162,1728140400,6),(1162,1743865200,5),(1162,1759590000,6),(1162,1775314800,5),(1162,1791039600,6),(1162,1806764400,5),(1162,1822489200,6),(1162,1838214000,5),(1162,1853938800,6),(1162,1869663600,5),(1162,1885993200,6),(1162,1901718000,5),(1162,1917442800,6),(1162,1933167600,5),(1162,1948892400,6),(1162,1964617200,5),(1162,1980342000,6),(1162,1996066800,5),(1162,2011791600,6),(1162,2027516400,5),(1162,2043241200,6),(1162,2058966000,5),(1162,2075295600,6),(1162,2091020400,5),(1162,2106745200,6),(1162,2122470000,5),(1162,2138194800,6),(1162,2147483647,6),(1163,-2147483648,0),(1163,-1829387148,2),(1163,250002000,1),(1163,257342400,2),(1163,281451600,1),(1163,288878400,2),(1163,849366000,3),(1163,857228400,4),(1163,2147483647,4),(1164,-2147483648,1),(1164,-1861879032,2),(1165,-2147483648,1),(1165,2147483647,1),(1166,-2147483648,1),(1166,893665800,2),(1166,2147483647,2),(1167,-2147483648,1),(1167,-1743678000,2),(1167,-1606813200,1),(1167,-1041418800,3),(1167,-907408800,2),(1167,-770634000,1),(1167,2147483647,1),(1168,-2147483648,1),(1168,-1743678000,2),(1168,-1606813200,1),(1168,-1041418800,3),(1168,-907408800,2),(1168,-770634000,1),(1168,2147483647,1),(1169,-2147483648,1),(1169,2147483647,1),(1170,-2147483648,1),(1170,279714600,3),(1170,289387800,2),(1170,309952800,3),(1170,320837400,2),(1170,341402400,3),(1170,352287000,2),(1170,372852000,3),(1170,384341400,2),(1170,404906400,3),(1170,415791000,2),(1170,436356000,3),(1170,447240600,2),(1170,467805600,3),(1170,478690200,2),(1170,499255200,3),(1170,510139800,2),(1170,530704800,3),(1170,541589400,2),(1170,562154400,3),(1170,573643800,2),(1170,594208800,3),(1170,605093400,2),(1170,625658400,3),(1170,636543000,2),(1170,657108000,3),(1170,667992600,2),(1170,2147483647,2),(1171,-2147483648,1),(1171,-885549600,2),(1171,-802256400,1),(1171,-331891200,3),(1171,-281610000,1),(1171,-73728000,3),(1171,-29415540,1),(1171,-16704000,3),(1171,-10659600,1),(1171,9907200,3),(1171,21394800,1),(1171,41356800,3),(1171,52844400,1),(1171,124819200,3),(1171,130863600,1),(1171,201888000,3),(1171,209487660,1),(1171,230659200,3),(1171,241542000,1),(1171,977493600,4),(1172,-2147483648,1),(1172,-1861879032,2),(1173,-2147483648,0),(1173,-1806674504,1),(1173,2147483647,1),(1174,-2147483648,1),(1174,2147483647,1),(1175,-2147483648,1),(1175,-915193200,2),(1175,939214800,3),(1175,953384400,4),(1175,973342800,5),(1175,980596800,2),(1175,1004792400,5),(1175,1012046400,2),(1175,1478350800,5),(1175,1484398800,2),(1175,2147483647,2),(1176,-2147483648,1),(1176,-1743674400,2),(1176,-1606813200,1),(1176,-907408800,2),(1176,-770634000,1),(1176,2147483647,1),(1177,-2147483648,1),(1177,2147483647,1),(1178,-2147483648,1),(1178,2147483647,1),(1179,-2147483648,1),(1179,-1743674400,2),(1179,-1606813200,1),(1179,-907408800,2),(1179,-770634000,1),(1179,2147483647,1),(1180,-2147483648,1),(1180,-1717032240,3),(1180,-1693706400,2),(1180,-1680483600,3),(1180,-1663455600,4),(1180,-1650150000,5),(1180,-1632006000,4),(1180,-1618700400,8),(1180,-1600473600,6),(1180,-1587168000,7),(1180,-1501725600,3),(1180,-931734000,2),(1180,-857257200,5),(1180,-844556400,4),(1180,-828226800,5),(1180,-812502000,4),(1180,-796874400,2),(1180,-796608000,3),(1180,-778726800,2),(1180,-762660000,3),(1180,-748486800,4),(1180,-733273200,5),(1180,-715215600,4),(1180,-701910000,5),(1180,-684975600,4),(1180,-670460400,5),(1180,-654130800,4),(1180,-639010800,5),(1180,-397094400,4),(1180,-386812800,5),(1180,-371088000,4),(1180,-355363200,5),(1180,-334195200,4),(1180,-323308800,5),(1180,-307584000,4),(1180,-291859200,5),(1180,-271296000,4),(1180,-260409600,5),(1180,-239846400,4),(1180,-228960000,5),(1180,-208396800,4),(1180,-197510400,5),(1180,-176342400,4),(1180,-166060800,5),(1180,220921200,3),(1180,228873600,4),(1180,243993600,5),(1180,260323200,4),(1180,276048000,5),(1180,291772800,4),(1180,307497600,5),(1180,323827200,4),(1180,338947200,5),(1180,354672000,4),(1180,370396800,5),(1180,386121600,4),(1180,401846400,5),(1180,417571200,4),(1180,433296000,5),(1180,449020800,4),(1180,465350400,5),(1180,481075200,4),(1180,496800000,5),(1180,512524800,4),(1180,528249600,5),(1180,543974400,4),(1180,559699200,5),(1180,567990000,3),(1180,575427600,9),(1180,591152400,10),(1180,606877200,9),(1180,622602000,10),(1180,638326800,9),(1180,654656400,10),(1180,670381200,9),(1180,686106000,10),(1180,701830800,9),(1180,717555600,10),(1180,733280400,9),(1180,749005200,10),(1180,764730000,9),(1180,780454800,10),(1180,796179600,9),(1180,811904400,10),(1180,828234000,9),(1180,846378000,10),(1180,859683600,9),(1180,877827600,10),(1180,891133200,9),(1180,909277200,10),(1180,922582800,9),(1180,941331600,10),(1180,954032400,9),(1180,972781200,10),(1180,985482000,9),(1180,1004230800,10),(1180,1017536400,9),(1180,1035680400,10),(1180,1048986000,9),(1180,1067130000,10),(1180,1080435600,9),(1180,1099184400,10),(1180,1111885200,9),(1180,1130634000,10),(1180,1143334800,9),(1180,1162083600,10),(1180,1174784400,9),(1180,1193533200,10),(1180,1206838800,9),(1180,1224982800,10),(1180,1238288400,9),(1180,1256432400,10),(1180,1269738000,9),(1180,1288486800,10),(1180,1301187600,9),(1180,1319936400,10),(1180,1332637200,9),(1180,1351386000,10),(1180,1364691600,9),(1180,1382835600,10),(1180,1396141200,9),(1180,1414285200,10),(1180,1427590800,9),(1180,1445734800,10),(1180,1459040400,9),(1180,1477789200,10),(1180,1490490000,9),(1180,1509238800,10),(1180,1521939600,9),(1180,1540688400,10),(1180,1553994000,9),(1180,1572138000,10),(1180,1585443600,9),(1180,1603587600,10),(1180,1616893200,9),(1180,1635642000,10),(1180,1648342800,9),(1180,1667091600,10),(1180,1679792400,9),(1180,1698541200,10),(1180,1711846800,9),(1180,1729990800,10),(1180,1743296400,9),(1180,1761440400,10),(1180,1774746000,9),(1180,1792890000,10),(1180,1806195600,9),(1180,1824944400,10),(1180,1837645200,9),(1180,1856394000,10),(1180,1869094800,9),(1180,1887843600,10),(1180,1901149200,9),(1180,1919293200,10),(1180,1932598800,9),(1180,1950742800,10),(1180,1964048400,9),(1180,1982797200,10),(1180,1995498000,9),(1180,2014246800,10),(1180,2026947600,9),(1180,2045696400,10),(1180,2058397200,9),(1180,2077146000,10),(1180,2090451600,9),(1180,2108595600,10),(1180,2121901200,9),(1180,2140045200,10),(1181,-2147483648,0),(1181,-1830384000,6),(1181,-1689555600,1),(1181,-1677801600,2),(1181,-1667437200,3),(1181,-1647738000,4),(1181,-1635814800,3),(1181,-1616202000,4),(1181,-1604365200,3),(1181,-1584666000,4),(1181,-1572742800,3),(1181,-1553043600,4),(1181,-1541206800,3),(1181,-1521507600,4),(1181,-1442451600,3),(1181,-1426813200,4),(1181,-1379293200,3),(1181,-1364778000,4),(1181,-1348448400,3),(1181,-1333328400,4),(1181,-1316394000,3),(1181,-1301274000,4),(1181,-1284339600,3),(1181,-1269824400,4),(1181,-1221440400,3),(1181,-1206925200,4),(1181,-1191200400,3),(1181,-1175475600,4),(1181,-1127696400,3),(1181,-1111971600,4),(1181,-1096851600,3),(1181,-1080522000,4),(1181,-1063587600,3),(1181,-1049072400,4),(1181,-1033347600,3),(1181,-1017622800,4),(1181,-1002502800,3),(1181,-986173200,4),(1181,-969238800,3),(1181,-950490000,4),(1181,-942022800,3),(1181,-922669200,4),(1181,-906944400,3),(1181,-891133200,4),(1181,-877309200,3),(1181,-873684000,5),(1181,-864007200,3),(1181,-857955600,4),(1181,-845859600,3),(1181,-842839200,5),(1181,-831348000,3),(1181,-825901200,4),(1181,-814410000,3),(1181,-810784800,5),(1181,-799898400,3),(1181,-794451600,4),(1181,-782960400,3),(1181,-779335200,5),(1181,-768448800,3),(1181,-763002000,4),(1181,-749091600,3),(1181,-733366800,4),(1181,-717631200,3),(1181,-701906400,4),(1181,-686181600,3),(1181,-670456800,4),(1181,-654732000,3),(1181,-639007200,4),(1181,-591832800,3),(1181,-575503200,4),(1181,-559778400,3),(1181,-544053600,4),(1181,-528328800,3),(1181,-512604000,4),(1181,-496879200,3),(1181,-481154400,4),(1181,-465429600,3),(1181,-449704800,4),(1181,-433980000,3),(1181,-417650400,4),(1181,-401925600,3),(1181,-386200800,4),(1181,-370476000,3),(1181,-354751200,4),(1181,-339026400,3),(1181,-323301600,4),(1181,-307576800,3),(1181,-291852000,4),(1181,-276127200,3),(1181,-260402400,4),(1181,-244677600,3),(1181,-228348000,4),(1181,-212623200,3),(1181,-196898400,4),(1181,-181173600,3),(1181,-165448800,4),(1181,-149724000,3),(1181,-133999200,4),(1181,-118274400,7),(1181,212544000,2),(1181,228268800,3),(1181,243993600,4),(1181,260323200,3),(1181,276048000,4),(1181,291772800,3),(1181,307501200,4),(1181,323222400,3),(1181,338950800,4),(1181,354675600,3),(1181,370400400,4),(1181,386125200,3),(1181,401850000,4),(1181,417578400,3),(1181,433299600,4),(1181,449024400,3),(1181,465354000,4),(1181,481078800,3),(1181,496803600,4),(1181,512528400,3),(1181,528253200,4),(1181,543978000,3),(1181,559702800,4),(1181,575427600,3),(1181,591152400,4),(1181,606877200,3),(1181,622602000,4),(1181,638326800,3),(1181,654656400,4),(1181,670381200,3),(1181,686106000,4),(1181,701830800,3),(1181,717555600,8),(1181,733280400,9),(1181,749005200,8),(1181,764730000,9),(1181,780454800,8),(1181,796179600,9),(1181,811904400,8),(1181,828234000,10),(1181,846378000,6),(1181,859683600,10),(1181,877827600,6),(1181,891133200,10),(1181,909277200,6),(1181,922582800,10),(1181,941331600,6),(1181,954032400,10),(1181,972781200,6),(1181,985482000,10),(1181,1004230800,6),(1181,1017536400,10),(1181,1035680400,6),(1181,1048986000,10),(1181,1067130000,6),(1181,1080435600,10),(1181,1099184400,6),(1181,1111885200,10),(1181,1130634000,6),(1181,1143334800,10),(1181,1162083600,6),(1181,1174784400,10),(1181,1193533200,6),(1181,1206838800,10),(1181,1224982800,6),(1181,1238288400,10),(1181,1256432400,6),(1181,1269738000,10),(1181,1288486800,6),(1181,1301187600,10),(1181,1319936400,6),(1181,1332637200,10),(1181,1351386000,6),(1181,1364691600,10),(1181,1382835600,6),(1181,1396141200,10),(1181,1414285200,6),(1181,1427590800,10),(1181,1445734800,6),(1181,1459040400,10),(1181,1477789200,6),(1181,1490490000,10),(1181,1509238800,6),(1181,1521939600,10),(1181,1540688400,6),(1181,1553994000,10),(1181,1572138000,6),(1181,1585443600,10),(1181,1603587600,6),(1181,1616893200,10),(1181,1635642000,6),(1181,1648342800,10),(1181,1667091600,6),(1181,1679792400,10),(1181,1698541200,6),(1181,1711846800,10),(1181,1729990800,6),(1181,1743296400,10),(1181,1761440400,6),(1181,1774746000,10),(1181,1792890000,6),(1181,1806195600,10),(1181,1824944400,6),(1181,1837645200,10),(1181,1856394000,6),(1181,1869094800,10),(1181,1887843600,6),(1181,1901149200,10),(1181,1919293200,6),(1181,1932598800,10),(1181,1950742800,6),(1181,1964048400,10),(1181,1982797200,6),(1181,1995498000,10),(1181,2014246800,6),(1181,2026947600,10),(1181,2045696400,6),(1181,2058397200,10),(1181,2077146000,6),(1181,2090451600,10),(1181,2108595600,6),(1181,2121901200,10),(1181,2140045200,6),(1182,-2147483648,1),(1182,-1017820800,2),(1182,-766224000,1),(1182,-745833600,3),(1182,-733827600,1),(1182,-716889600,3),(1182,-699613200,1),(1182,-683884800,3),(1182,-670669200,1),(1182,-652348800,3),(1182,-639133200,1),(1182,-620812800,3),(1182,-607597200,1),(1182,-589276800,3),(1182,-576061200,1),(1182,-562924800,3),(1182,-541760400,1),(1182,-528710400,3),(1182,-510224400,1),(1182,-497174400,3),(1182,-478688400,1),(1182,-465638400,3),(1182,-449830800,1),(1182,-434016000,3),(1182,-418208400,1),(1182,-402480000,3),(1182,-386672400,1),(1182,-370944000,3),(1182,-355136400,1),(1182,-339408000,3),(1182,-323600400,1),(1182,-302515200,3),(1182,-291978000,1),(1182,-270979200,3),(1182,-260442000,1),(1182,133977600,3),(1182,149785200,1),(1182,165513600,3),(1182,181321200,1),(1182,299606400,3),(1182,307551600,1),(1183,-2147483648,0),(1183,-1948782472,1),(1183,-1830414600,2),(1183,-767350800,4),(1183,-681210000,3),(1183,-672228000,4),(1183,-654771600,3),(1183,-640864800,4),(1183,-623408400,3),(1183,-609415200,4),(1183,-588848400,3),(1183,-577965600,4),(1183,-498128400,1),(1183,-462702600,5),(1183,-451733400,1),(1183,-429784200,5),(1183,-418296600,1),(1183,-399544200,5),(1183,-387451800,1),(1183,-368094600,5),(1183,-356002200,1),(1183,-336645000,5),(1183,-324552600,1),(1183,-305195400,5),(1183,-293103000,1),(1183,-264933000,4),(1183,547578000,3),(1183,560883600,4),(1183,579027600,3),(1183,592333200,4),(1184,-2147483648,1),(1184,-2038200925,2),(1184,-1167634800,3),(1184,-1073028000,4),(1184,-894180000,5),(1184,-879665400,6),(1184,-767005200,5),(1184,378664200,7),(1184,2147483647,7),(1185,-2147483648,1),(1185,-873057600,3),(1185,-769395600,2),(1185,-765399600,1),(1186,-2147483648,0),(1186,-2131645536,2),(1186,-1696276800,1),(1186,-1680469200,2),(1186,-1632074400,1),(1186,-1615143600,2),(1186,-1566763200,1),(1186,-1557090000,2),(1186,-1535486400,1),(1186,-1524949200,2),(1186,-1504468800,1),(1186,-1493413200,2),(1186,-1472414400,1),(1186,-1461963600,2),(1186,-1440964800,1),(1186,-1429390800,2),(1186,-1409515200,1),(1186,-1396731600,2),(1186,-1376856000,1),(1186,-1366491600,2),(1186,-1346616000,1),(1186,-1333832400,2),(1186,-1313956800,1),(1186,-1303678800,2),(1186,-1282507200,1),(1186,-1272661200,2),(1186,-1251057600,1),(1186,-1240088400,2),(1186,-1219608000,1),(1186,-1207429200,2),(1186,-1188763200,1),(1186,-1175979600,2),(1186,-1157313600,1),(1186,-1143925200,2),(1186,-1124049600,1),(1186,-1113771600,2),(1186,-1091390400,1),(1186,-1081026000,2),(1186,-1059854400,1),(1186,-1050786000,2),(1186,-1030910400,1),(1186,-1018126800,2),(1186,-999460800,1),(1186,-986677200,2),(1186,-965592000,1),(1186,-955227600,2),(1186,-935956800,1),(1186,-923173200,2),(1186,-904507200,1),(1186,-891723600,2),(1186,-880221600,3),(1186,-769395600,4),(1186,-765399600,2),(1186,-747252000,1),(1186,-733950000,2),(1186,-715802400,1),(1186,-702500400,2),(1186,-684352800,1),(1186,-671050800,2),(1186,-652903200,1),(1186,-639601200,2),(1186,-589399200,1),(1186,-576097200,2),(1186,-557949600,1),(1186,-544647600,2),(1186,-526500000,1),(1186,-513198000,2),(1186,-495050400,1),(1186,-481748400,2),(1186,-431546400,1),(1186,-418244400,2),(1186,-400096800,1),(1186,-386794800,2),(1186,-368647200,1),(1186,-355345200,2),(1186,-337197600,1),(1186,-323895600,2),(1186,-242244000,1),(1186,-226522800,2),(1186,-210794400,1),(1186,-195073200,2),(1186,-179344800,1),(1186,-163623600,2),(1186,-147895200,1),(1186,-131569200,2),(1186,-116445600,1),(1186,-100119600,2),(1186,-84391200,1),(1186,-68670000,2),(1186,-52941600,1),(1186,-37220400,2),(1186,-21492000,1),(1186,-5770800,2),(1186,9957600,1),(1186,25678800,2),(1186,41407200,1),(1186,57733200,2),(1186,73461600,1),(1186,89182800,2),(1186,104911200,1),(1186,120632400,2),(1186,136360800,1),(1186,152082000,2),(1186,167810400,1),(1186,183531600,2),(1186,199260000,1),(1186,215586000,2),(1186,230709600,1),(1186,247035600,2),(1186,262764000,1),(1186,278485200,2),(1186,294213600,1),(1186,309934800,2),(1186,325663200,1),(1186,341384400,2),(1186,357112800,1),(1186,372834000,2),(1186,388562400,1),(1186,404888400,2),(1186,420012000,1),(1186,436338000,2),(1186,452066400,1),(1186,467787600,2),(1186,483516000,1),(1186,499237200,2),(1186,514965600,1),(1186,530686800,2),(1186,544600800,1),(1186,562136400,2),(1186,576050400,1),(1186,594190800,2),(1186,607500000,1),(1186,625640400,2),(1186,638949600,1),(1186,657090000,2),(1186,671004000,1),(1186,688539600,2),(1186,702453600,1),(1186,719989200,2),(1186,733903200,1),(1186,752043600,2),(1186,765352800,1),(1186,783493200,2),(1186,796802400,1),(1186,814942800,2),(1186,828856800,1),(1186,846392400,2),(1186,860306400,1),(1186,877842000,2),(1186,891756000,1),(1186,909291600,2),(1186,923205600,1),(1186,941346000,2),(1186,954655200,1),(1186,972795600,2),(1186,986104800,1),(1186,1004245200,2),(1186,1018159200,1),(1186,1035694800,2),(1186,1049608800,1),(1186,1067144400,2),(1186,1081058400,1),(1186,1099198800,2),(1186,1112508000,1),(1186,1130648400,2),(1186,1143957600,1),(1186,1162098000,2),(1186,1173592800,1),(1186,1194152400,2),(1186,1205042400,1),(1186,1225602000,2),(1186,1236492000,1),(1186,1257051600,2),(1186,1268546400,1),(1186,1289106000,2),(1186,1299996000,1),(1186,1320555600,2),(1186,1331445600,1),(1186,1352005200,2),(1186,1362895200,1),(1186,1383454800,2),(1186,1394344800,1),(1186,1414904400,2),(1186,1425794400,1),(1186,1446354000,2),(1186,1457848800,1),(1186,1478408400,2),(1186,1489298400,1),(1186,1509858000,2),(1186,1520748000,1),(1186,1541307600,2),(1186,1552197600,1),(1186,1572757200,2),(1186,1583647200,1),(1186,1604206800,2),(1186,1615701600,1),(1186,1636261200,2),(1186,1647151200,1),(1186,1667710800,2),(1186,1678600800,1),(1186,1699160400,2),(1186,1710050400,1),(1186,1730610000,2),(1186,1741500000,1),(1186,1762059600,2),(1186,1772949600,1),(1186,1793509200,2),(1186,1805004000,1),(1186,1825563600,2),(1186,1836453600,1),(1186,1857013200,2),(1186,1867903200,1),(1186,1888462800,2),(1186,1899352800,1),(1186,1919912400,2),(1186,1930802400,1),(1186,1951362000,2),(1186,1962856800,1),(1186,1983416400,2),(1186,1994306400,1),(1186,2014866000,2),(1186,2025756000,1),(1186,2046315600,2),(1186,2057205600,1),(1186,2077765200,2),(1186,2088655200,1),(1186,2109214800,2),(1186,2120104800,1),(1186,2140664400,2),(1187,-2147483648,0),(1187,-2030202084,2),(1187,-1632063600,1),(1187,-1615132800,2),(1187,-1251651600,1),(1187,-1238349600,2),(1187,-1220202000,1),(1187,-1206900000,2),(1187,-1188752400,1),(1187,-1175450400,2),(1187,-1156698000,1),(1187,-1144000800,2),(1187,-1125248400,1),(1187,-1111946400,2),(1187,-1032714000,1),(1187,-1016992800,2),(1187,-1001264400,1),(1187,-986148000,2),(1187,-969814800,1),(1187,-954093600,2),(1187,-937760400,1),(1187,-922039200,2),(1187,-906310800,1),(1187,-890589600,2),(1187,-880210800,3),(1187,-769395600,4),(1187,-765388800,2),(1187,-748450800,1),(1187,-732729600,2),(1187,-715791600,1),(1187,-702489600,2),(1187,-684342000,1),(1187,-671040000,2),(1187,-652892400,1),(1187,-639590400,2),(1187,-620838000,1),(1187,-608140800,2),(1187,-589388400,1),(1187,-576086400,2),(1187,-557938800,1),(1187,-544636800,2),(1187,-526489200,1),(1187,-513187200,2),(1187,-495039600,1),(1187,-481737600,2),(1187,-463590000,1),(1187,-450288000,2),(1187,-431535600,1),(1187,-418233600,2),(1187,-400086000,1),(1187,-386784000,2),(1187,-337186800,1),(1187,-321465600,2),(1187,-305737200,5),(1188,-2147483648,2),(1188,-1633276800,1),(1188,-1615136400,2),(1188,-1601827200,1),(1188,-1583686800,2),(1188,-1563724800,1),(1188,-1551632400,2),(1188,-1538928000,1),(1188,-1520182800,2),(1188,-1504454400,1),(1188,-1491757200,2),(1188,-1473004800,1),(1188,-1459702800,2),(1188,-1441555200,1),(1188,-1428253200,2),(1188,-1410105600,1),(1188,-1396803600,2),(1188,-1378656000,1),(1188,-1365354000,2),(1188,-1347206400,1),(1188,-1333904400,2),(1188,-1315152000,1),(1188,-1301850000,2),(1188,-1283702400,1),(1188,-1270400400,2),(1188,-1252252800,1),(1188,-1238950800,2),(1188,-1220803200,1),(1188,-1207501200,2),(1188,-1189353600,1),(1188,-1176051600,2),(1188,-1157299200,1),(1188,-1144602000,2),(1188,-1125849600,1),(1188,-1112547600,2),(1188,-1094400000,1),(1188,-1081098000,2),(1188,-1067788800,3),(1188,-1045414800,2),(1188,-1031500800,1),(1188,-1018198800,2),(1188,-1000051200,1),(1188,-986749200,2),(1188,-967996800,1),(1188,-955299600,2),(1188,-936547200,1),(1188,-923245200,2),(1188,-905097600,1),(1188,-891795600,2),(1188,-880214400,4),(1188,-769395600,5),(1188,-765392400,2),(1188,-747244800,1),(1188,-733942800,2),(1188,-715795200,1),(1188,-702493200,2),(1188,-684345600,1),(1188,-671043600,2),(1188,-652896000,1),(1188,-639594000,2),(1188,-620841600,1),(1188,-608144400,2),(1188,-589392000,1),(1188,-576090000,2),(1188,-557942400,1),(1188,-544640400,2),(1188,-526492800,1),(1188,-513190800,2),(1188,-495043200,1),(1188,-481741200,2),(1188,-463593600,1),(1188,-447267600,2),(1188,-431539200,1),(1188,-415818000,2),(1188,-400089600,1),(1188,-384368400,2),(1188,-368640000,1),(1188,-352918800,2),(1188,-337190400,1),(1188,-321469200,2),(1188,-305740800,1),(1188,-289414800,2),(1188,-273686400,1),(1188,-257965200,2),(1188,-242236800,1),(1188,-226515600,2),(1188,-210787200,1),(1188,-195066000,2),(1188,-179337600,1),(1188,-163616400,2),(1188,-147888000,1),(1188,-131562000,2),(1188,-116438400,1),(1188,-100112400,2),(1188,-84384000,1),(1188,-68662800,2),(1188,-52934400,1),(1188,-37213200,2),(1188,-21484800,1),(1188,-5763600,2),(1188,9964800,1),(1188,25686000,2),(1188,41414400,1),(1188,57740400,2),(1188,73468800,1),(1188,89190000,2),(1188,104918400,1),(1188,120639600,2),(1188,126691200,1),(1188,152089200,2),(1188,162374400,1),(1188,183538800,2),(1188,199267200,1),(1188,215593200,2),(1188,230716800,1),(1188,247042800,2),(1188,262771200,1),(1188,278492400,2),(1188,294220800,1),(1188,309942000,2),(1188,325670400,1),(1188,341391600,2),(1188,357120000,1),(1188,372841200,2),(1188,388569600,1),(1188,404895600,2),(1188,420019200,1),(1188,436345200,2),(1188,452073600,1),(1188,467794800,2),(1188,483523200,1),(1188,499244400,2),(1188,514972800,1),(1188,530694000,2),(1188,544608000,1),(1188,562143600,2),(1188,576057600,1),(1188,594198000,2),(1188,607507200,1),(1188,625647600,2),(1188,638956800,1),(1188,657097200,2),(1188,671011200,1),(1188,688546800,2),(1188,702460800,1),(1188,719996400,2),(1188,733910400,1),(1188,752050800,2),(1188,765360000,1),(1188,783500400,2),(1188,796809600,1),(1188,814950000,2),(1188,828864000,1),(1188,846399600,2),(1188,860313600,1),(1188,877849200,2),(1188,891763200,1),(1188,909298800,2),(1188,923212800,1),(1188,941353200,2),(1188,954662400,1),(1188,972802800,2),(1188,986112000,1),(1188,1004252400,2),(1188,1018166400,1),(1188,1035702000,2),(1188,1049616000,1),(1188,1067151600,2),(1188,1081065600,1),(1188,1099206000,2),(1188,1112515200,1),(1188,1130655600,2),(1188,1143964800,1),(1188,1162105200,2),(1188,1173600000,1),(1188,1194159600,2),(1188,1205049600,1),(1188,1225609200,2),(1188,1236499200,1),(1188,1257058800,2),(1188,1268553600,1),(1188,1289113200,2),(1188,1300003200,1),(1188,1320562800,2),(1188,1331452800,1),(1188,1352012400,2),(1188,1362902400,1),(1188,1383462000,2),(1188,1394352000,1),(1188,1414911600,2),(1188,1425801600,1),(1188,1446361200,2),(1188,1457856000,1),(1188,1478415600,2),(1188,1489305600,1),(1188,1509865200,2),(1188,1520755200,1),(1188,1541314800,2),(1188,1552204800,1),(1188,1572764400,2),(1188,1583654400,1),(1188,1604214000,2),(1188,1615708800,1),(1188,1636268400,2),(1188,1647158400,1),(1188,1667718000,2),(1188,1678608000,1),(1188,1699167600,2),(1188,1710057600,1),(1188,1730617200,2),(1188,1741507200,1),(1188,1762066800,2),(1188,1772956800,1),(1188,1793516400,2),(1188,1805011200,1),(1188,1825570800,2),(1188,1836460800,1),(1188,1857020400,2),(1188,1867910400,1),(1188,1888470000,2),(1188,1899360000,1),(1188,1919919600,2),(1188,1930809600,1),(1188,1951369200,2),(1188,1962864000,1),(1188,1983423600,2),(1188,1994313600,1),(1188,2014873200,2),(1188,2025763200,1),(1188,2046322800,2),(1188,2057212800,1),(1188,2077772400,2),(1188,2088662400,1),(1188,2109222000,2),(1188,2120112000,1),(1188,2140671600,2),(1189,-2147483648,1),(1189,-1946918424,2),(1190,-2147483648,2),(1190,-1633280400,1),(1190,-1615140000,2),(1190,-1601830800,1),(1190,-1583690400,2),(1190,-1570381200,1),(1190,-1551636000,2),(1190,-1536512400,1),(1190,-1523210400,2),(1190,-1504458000,1),(1190,-1491760800,2),(1190,-1473008400,1),(1190,-1459706400,2),(1190,-1441558800,1),(1190,-1428256800,2),(1190,-1410109200,1),(1190,-1396807200,2),(1190,-1378659600,1),(1190,-1365357600,2),(1190,-1347210000,1),(1190,-1333908000,2),(1190,-1315155600,1),(1190,-1301853600,2),(1190,-1283706000,1),(1190,-1270404000,2),(1190,-1252256400,1),(1190,-1238954400,2),(1190,-1220806800,1),(1190,-1207504800,2),(1190,-1189357200,1),(1190,-1176055200,2),(1190,-1157302800,1),(1190,-1144605600,2),(1190,-1125853200,1),(1190,-1112551200,2),(1190,-1094403600,1),(1190,-1081101600,2),(1190,-1062954000,1),(1190,-1049652000,2),(1190,-1031504400,1),(1190,-1018202400,2),(1190,-1000054800,1),(1190,-986752800,2),(1190,-968000400,1),(1190,-955303200,2),(1190,-936550800,1),(1190,-923248800,2),(1190,-905101200,1),(1190,-891799200,2),(1190,-880218000,3),(1190,-769395600,4),(1190,-765396000,2),(1190,-747248400,1),(1190,-733946400,2),(1190,-715798800,1),(1190,-702496800,2),(1190,-684349200,1),(1190,-671047200,2),(1190,-652899600,1),(1190,-639597600,2),(1190,-620845200,1),(1190,-608148000,2),(1190,-589395600,1),(1190,-576093600,2),(1190,-557946000,1),(1190,-544644000,2),(1190,-526496400,1),(1190,-513194400,2),(1190,-495046800,1),(1190,-481744800,2),(1190,-463597200,1),(1190,-447271200,2),(1190,-431542800,1),(1190,-415821600,2),(1190,-400093200,1),(1190,-384372000,2),(1190,-368643600,1),(1190,-352922400,2),(1190,-337194000,1),(1190,-321472800,2),(1190,-305744400,1),(1190,-289418400,2),(1190,-273690000,1),(1190,-257968800,2),(1190,-242240400,1),(1190,-226519200,2),(1190,-210790800,1),(1190,-195069600,2),(1190,-179341200,1),(1190,-163620000,2),(1190,-147891600,1),(1190,-131565600,2),(1190,-116442000,1),(1190,-100116000,2),(1190,-84387600,1),(1190,-68666400,2),(1190,-52938000,1),(1190,-37216800,2),(1190,-21488400,1),(1190,-5767200,2),(1190,9961200,1),(1190,25682400,2),(1190,41410800,1),(1190,57736800,2),(1190,73465200,1),(1190,89186400,2),(1190,104914800,1),(1190,120636000,2),(1190,126687600,1),(1190,152085600,2),(1190,162370800,1),(1190,183535200,2),(1190,199263600,1),(1190,215589600,2),(1190,230713200,1),(1190,247039200,2),(1190,262767600,1),(1190,278488800,2),(1190,294217200,1),(1190,309938400,2),(1190,325666800,1),(1190,341388000,2),(1190,357116400,1),(1190,372837600,2),(1190,388566000,1),(1190,404892000,2),(1190,420015600,1),(1190,436341600,2),(1190,452070000,1),(1190,467791200,2),(1190,483519600,1),(1190,499240800,2),(1190,514969200,1),(1190,530690400,2),(1190,544604400,1),(1190,562140000,2),(1190,576054000,1),(1190,594194400,2),(1190,607503600,1),(1190,625644000,2),(1190,638953200,1),(1190,657093600,2),(1190,671007600,1),(1190,688543200,2),(1190,702457200,1),(1190,719992800,2),(1190,733906800,1),(1190,752047200,2),(1190,765356400,1),(1190,783496800,2),(1190,796806000,1),(1190,814946400,2),(1190,828860400,1),(1190,846396000,2),(1190,860310000,1),(1190,877845600,2),(1190,891759600,1),(1190,909295200,2),(1190,923209200,1),(1190,941349600,2),(1190,954658800,1),(1190,972799200,2),(1190,986108400,1),(1190,1004248800,2),(1190,1018162800,1),(1190,1035698400,2),(1190,1049612400,1),(1190,1067148000,2),(1190,1081062000,1),(1190,1099202400,2),(1190,1112511600,1),(1190,1130652000,2),(1190,1143961200,1),(1190,1162101600,2),(1190,1173596400,1),(1190,1194156000,2),(1190,1205046000,1),(1190,1225605600,2),(1190,1236495600,1),(1190,1257055200,2),(1190,1268550000,1),(1190,1289109600,2),(1190,1299999600,1),(1190,1320559200,2),(1190,1331449200,1),(1190,1352008800,2),(1190,1362898800,1),(1190,1383458400,2),(1190,1394348400,1),(1190,1414908000,2),(1190,1425798000,1),(1190,1446357600,2),(1190,1457852400,1),(1190,1478412000,2),(1190,1489302000,1),(1190,1509861600,2),(1190,1520751600,1),(1190,1541311200,2),(1190,1552201200,1),(1190,1572760800,2),(1190,1583650800,1),(1190,1604210400,2),(1190,1615705200,1),(1190,1636264800,2),(1190,1647154800,1),(1190,1667714400,2),(1190,1678604400,1),(1190,1699164000,2),(1190,1710054000,1),(1190,1730613600,2),(1190,1741503600,1),(1190,1762063200,2),(1190,1772953200,1),(1190,1793512800,2),(1190,1805007600,1),(1190,1825567200,2),(1190,1836457200,1),(1190,1857016800,2),(1190,1867906800,1),(1190,1888466400,2),(1190,1899356400,1),(1190,1919916000,2),(1190,1930806000,1),(1190,1951365600,2),(1190,1962860400,1),(1190,1983420000,2),(1190,1994310000,1),(1190,2014869600,2),(1190,2025759600,1),(1190,2046319200,2),(1190,2057209200,1),(1190,2077768800,2),(1190,2088658800,1),(1190,2109218400,2),(1190,2120108400,1),(1190,2140668000,2),(1191,-2147483648,1),(1191,-1157283000,2),(1191,-1155436200,1),(1191,-880198200,3),(1191,-769395600,4),(1191,-765376200,1),(1191,-712150200,5),(1192,-2147483648,2),(1192,-1633273200,1),(1192,-1615132800,2),(1192,-1601823600,1),(1192,-1583683200,2),(1192,-880210800,3),(1192,-820519140,2),(1192,-812653140,3),(1192,-796845540,2),(1192,-84380400,1),(1192,-68659200,2),(1193,-2147483648,2),(1193,-1633273200,1),(1193,-1615132800,2),(1193,-1601823600,1),(1193,-1583683200,2),(1193,-1570374000,1),(1193,-1551628800,2),(1193,-1538924400,1),(1193,-1534089600,2),(1193,-880210800,3),(1193,-769395600,4),(1193,-765388800,2),(1193,-147884400,1),(1193,-131558400,2),(1193,-116434800,1),(1193,-100108800,2),(1193,-84380400,1),(1193,-68659200,2),(1193,-52930800,1),(1193,-37209600,2),(1193,-21481200,1),(1193,-5760000,2),(1193,9968400,1),(1193,25689600,2),(1193,41418000,1),(1193,57744000,2),(1193,73472400,1),(1193,89193600,2),(1193,104922000,1),(1193,120643200,2),(1193,126694800,1),(1193,152092800,2),(1193,162378000,1),(1193,183542400,2),(1193,199270800,1),(1193,215596800,2),(1193,230720400,1),(1193,247046400,2),(1193,262774800,1),(1193,278496000,2),(1193,294224400,1),(1193,309945600,2),(1193,325674000,1),(1193,341395200,2),(1193,357123600,1),(1193,372844800,2),(1193,388573200,1),(1193,404899200,2),(1193,420022800,1),(1193,436348800,2),(1193,452077200,1),(1193,467798400,2),(1193,483526800,1),(1193,499248000,2),(1193,514976400,1),(1193,530697600,2),(1193,544611600,1),(1193,562147200,2),(1193,576061200,1),(1193,594201600,2),(1193,607510800,1),(1193,625651200,2),(1193,638960400,1),(1193,657100800,2),(1193,671014800,1),(1193,688550400,2),(1193,702464400,1),(1193,720000000,2),(1193,733914000,1),(1193,752054400,2),(1193,765363600,1),(1193,783504000,2),(1193,796813200,1),(1193,814953600,2),(1193,828867600,1),(1193,846403200,2),(1193,860317200,1),(1193,877852800,2),(1193,891766800,1),(1193,909302400,2),(1193,923216400,1),(1193,941356800,2),(1193,954666000,1),(1193,972806400,2),(1193,986115600,1),(1193,1004256000,2),(1193,1018170000,1),(1193,1035705600,2),(1193,1049619600,1),(1193,1067155200,2),(1193,1081069200,1),(1193,1099209600,2),(1193,1112518800,1),(1193,1130659200,2),(1193,1143968400,1),(1193,1162108800,2),(1193,1173603600,1),(1193,1194163200,2),(1193,1205053200,1),(1193,1225612800,2),(1193,1236502800,1),(1193,1257062400,2),(1193,1268557200,1),(1193,1289116800,2),(1193,1300006800,1),(1193,1320566400,2),(1193,1331456400,1),(1193,1352016000,2),(1193,1362906000,1),(1193,1383465600,2),(1193,1394355600,1),(1193,1414915200,2),(1193,1425805200,1),(1193,1446364800,2),(1193,1457859600,1),(1193,1478419200,2),(1193,1489309200,1),(1193,1509868800,2),(1193,1520758800,1),(1193,1541318400,2),(1193,1552208400,1),(1193,1572768000,2),(1193,1583658000,1),(1193,1604217600,2),(1193,1615712400,1),(1193,1636272000,2),(1193,1647162000,1),(1193,1667721600,2),(1193,1678611600,1),(1193,1699171200,2),(1193,1710061200,1),(1193,1730620800,2),(1193,1741510800,1),(1193,1762070400,2),(1193,1772960400,1),(1193,1793520000,2),(1193,1805014800,1),(1193,1825574400,2),(1193,1836464400,1),(1193,1857024000,2),(1193,1867914000,1),(1193,1888473600,2),(1193,1899363600,1),(1193,1919923200,2),(1193,1930813200,1),(1193,1951372800,2),(1193,1962867600,1),(1193,1983427200,2),(1193,1994317200,1),(1193,2014876800,2),(1193,2025766800,1),(1193,2046326400,2),(1193,2057216400,1),(1193,2077776000,2),(1193,2088666000,1),(1193,2109225600,2),(1193,2120115600,1),(1193,2140675200,2),(1194,-2147483648,1),(1194,893665800,2),(1194,2147483647,2),(1195,-2147483648,2),(1195,-1633269600,1),(1195,-1615129200,2),(1195,-1601820000,1),(1195,-1583679600,2),(1195,-880207200,3),(1195,-769395600,4),(1195,-765385200,2),(1195,-687967140,1),(1195,-662655600,2),(1195,-620838000,1),(1195,-608137200,2),(1195,-589388400,1),(1195,-576082800,2),(1195,-557938800,1),(1195,-544633200,2),(1195,-526489200,1),(1195,-513183600,2),(1195,-495039600,1),(1195,-481734000,2),(1195,-463590000,1),(1195,-450284400,2),(1195,-431535600,1),(1195,-418230000,2),(1195,-400086000,1),(1195,-386780400,2),(1195,-368636400,1),(1195,-355330800,2),(1195,-337186800,1),(1195,-323881200,2),(1195,-305737200,1),(1195,-292431600,2),(1195,-273682800,1),(1195,-260982000,2),(1195,-242233200,1),(1195,-226508400,2),(1195,-210783600,1),(1195,-195058800,2),(1195,-179334000,1),(1195,-163609200,2),(1195,-147884400,1),(1195,-131554800,2),(1195,-116434800,1),(1195,-100105200,2),(1195,-84376800,1),(1195,-68655600,2),(1195,-52927200,1),(1195,-37206000,2),(1195,-21477600,1),(1195,-5756400,2),(1195,9972000,1),(1195,25693200,2),(1195,41421600,1),(1195,57747600,2),(1195,73476000,1),(1195,89197200,2),(1195,104925600,1),(1195,120646800,2),(1195,126698400,1),(1195,152096400,2),(1195,162381600,1),(1195,183546000,2),(1195,199274400,1),(1195,215600400,2),(1195,230724000,1),(1195,247050000,2),(1195,262778400,1),(1195,278499600,2),(1195,294228000,1),(1195,309949200,2),(1195,325677600,1),(1195,341398800,2),(1195,357127200,1),(1195,372848400,2),(1195,388576800,1),(1195,404902800,2),(1195,420026400,1),(1195,436352400,2),(1195,452080800,1),(1195,467802000,2),(1195,483530400,1),(1195,499251600,2),(1195,514980000,1),(1195,530701200,2),(1195,544615200,1),(1195,562150800,2),(1195,576064800,1),(1195,594205200,2),(1195,607514400,1),(1195,625654800,2),(1195,638964000,1),(1195,657104400,2),(1195,671018400,1),(1195,688554000,2),(1195,702468000,1),(1195,720003600,2),(1195,733917600,1),(1195,752058000,2),(1195,765367200,1),(1195,783507600,2),(1195,796816800,1),(1195,814957200,2),(1195,828871200,1),(1195,846406800,2),(1195,860320800,1),(1195,877856400,2),(1195,891770400,1),(1195,909306000,2),(1195,923220000,1),(1195,941360400,2),(1195,954669600,1),(1195,972810000,2),(1195,986119200,1),(1195,1004259600,2),(1195,1018173600,1),(1195,1035709200,2),(1195,1049623200,1),(1195,1067158800,2),(1195,1081072800,1),(1195,1099213200,2),(1195,1112522400,1),(1195,1130662800,2),(1195,1143972000,1),(1195,1162112400,2),(1195,1173607200,1),(1195,1194166800,2),(1195,1205056800,1),(1195,1225616400,2),(1195,1236506400,1),(1195,1257066000,2),(1195,1268560800,1),(1195,1289120400,2),(1195,1300010400,1),(1195,1320570000,2),(1195,1331460000,1),(1195,1352019600,2),(1195,1362909600,1),(1195,1383469200,2),(1195,1394359200,1),(1195,1414918800,2),(1195,1425808800,1),(1195,1446368400,2),(1195,1457863200,1),(1195,1478422800,2),(1195,1489312800,1),(1195,1509872400,2),(1195,1520762400,1),(1195,1541322000,2),(1195,1552212000,1),(1195,1572771600,2),(1195,1583661600,1),(1195,1604221200,2),(1195,1615716000,1),(1195,1636275600,2),(1195,1647165600,1),(1195,1667725200,2),(1195,1678615200,1),(1195,1699174800,2),(1195,1710064800,1),(1195,1730624400,2),(1195,1741514400,1),(1195,1762074000,2),(1195,1772964000,1),(1195,1793523600,2),(1195,1805018400,1),(1195,1825578000,2),(1195,1836468000,1),(1195,1857027600,2),(1195,1867917600,1),(1195,1888477200,2),(1195,1899367200,1),(1195,1919926800,2),(1195,1930816800,1),(1195,1951376400,2),(1195,1962871200,1),(1195,1983430800,2),(1195,1994320800,1),(1195,2014880400,2),(1195,2025770400,1),(1195,2046330000,2),(1195,2057220000,1),(1195,2077779600,2),(1195,2088669600,1),(1195,2109229200,2),(1195,2120119200,1),(1195,2140678800,2),(1196,-2147483648,0),(1196,-1806678012,1),(1196,2147483647,1),(1197,-2147483648,1),(1197,-880200000,2),(1197,-769395600,3),(1197,-765378000,1),(1197,-86882400,4),(1197,-21470400,5),(1197,-5749200,4),(1197,9979200,5),(1197,25700400,4),(1197,41428800,5),(1197,57754800,4),(1197,73483200,5),(1197,89204400,4),(1197,104932800,5),(1197,120654000,4),(1197,126705600,5),(1197,152103600,4),(1197,162388800,5),(1197,183553200,4),(1197,199281600,5),(1197,215607600,4),(1197,230731200,5),(1197,247057200,4),(1197,262785600,5),(1197,278506800,4),(1197,294235200,5),(1197,309956400,4),(1197,325684800,5),(1197,341406000,4),(1197,357134400,5),(1197,372855600,4),(1197,388584000,5),(1197,404910000,4),(1197,420033600,5),(1197,436359600,6),(1197,439030800,8),(1197,452084400,7),(1197,467805600,8),(1197,483534000,7),(1197,499255200,8),(1197,514983600,7),(1197,530704800,8),(1197,544618800,7),(1197,562154400,8),(1197,576068400,7),(1197,594208800,8),(1197,607518000,7),(1197,625658400,8),(1197,638967600,7),(1197,657108000,8),(1197,671022000,7),(1197,688557600,8),(1197,702471600,7),(1197,720007200,8),(1197,733921200,7),(1197,752061600,8),(1197,765370800,7),(1197,783511200,8),(1197,796820400,7),(1197,814960800,8),(1197,828874800,7),(1197,846410400,8),(1197,860324400,7),(1197,877860000,8),(1197,891774000,7),(1197,909309600,8),(1197,923223600,7),(1197,941364000,8),(1197,954673200,7),(1197,972813600,8),(1197,986122800,7),(1197,1004263200,8),(1197,1018177200,7),(1197,1035712800,8),(1197,1049626800,7),(1197,1067162400,8),(1197,1081076400,7),(1197,1099216800,8),(1197,1112526000,7),(1197,1130666400,8),(1197,1143975600,7),(1197,1162116000,8),(1197,1173610800,7),(1197,1194170400,8),(1197,1205060400,7),(1197,1225620000,8),(1197,1236510000,7),(1197,1257069600,8),(1197,1268564400,7),(1197,1289124000,8),(1197,1300014000,7),(1197,1320573600,8),(1197,1331463600,7),(1197,1352023200,8),(1197,1362913200,7),(1197,1383472800,8),(1197,1394362800,7),(1197,1414922400,8),(1197,1425812400,7),(1197,1446372000,8),(1197,1457866800,7),(1197,1478426400,8),(1197,1489316400,7),(1197,1509876000,8),(1197,1520766000,7),(1197,1541325600,8),(1197,1552215600,7),(1197,1572775200,8),(1197,1583665200,7),(1197,1604224800,8),(1197,1615719600,7),(1197,1636279200,8),(1197,1647169200,7),(1197,1667728800,8),(1197,1678618800,7),(1197,1699178400,8),(1197,1710068400,7),(1197,1730628000,8),(1197,1741518000,7),(1197,1762077600,8),(1197,1772967600,7),(1197,1793527200,8),(1197,1805022000,7),(1197,1825581600,8),(1197,1836471600,7),(1197,1857031200,8),(1197,1867921200,7),(1197,1888480800,8),(1197,1899370800,7),(1197,1919930400,8),(1197,1930820400,7),(1197,1951380000,8),(1197,1962874800,7),(1197,1983434400,8),(1197,1994324400,7),(1197,2014884000,8),(1197,2025774000,7),(1197,2046333600,8),(1197,2057223600,7),(1197,2077783200,8),(1197,2088673200,7),(1197,2109232800,8),(1197,2120122800,7),(1197,2140682400,8),(1198,-2147483648,1),(1198,-1869875816,3),(1198,-1693706400,2),(1198,-1680490800,3),(1198,-1570413600,2),(1198,-1552186800,3),(1198,-1538359200,2),(1198,-1522551600,3),(1198,-1507514400,2),(1198,-1490583600,3),(1198,-1440208800,2),(1198,-1428030000,3),(1198,-1409709600,2),(1198,-1396494000,3),(1198,-931053600,2),(1198,-922676400,3),(1198,-917834400,2),(1198,-892436400,3),(1198,-875844000,2),(1198,-764737200,3),(1198,-744343200,2),(1198,-733806000,3),(1198,-716436000,2),(1198,-701924400,3),(1198,-684986400,2),(1198,-670474800,3),(1198,-654141600,2),(1198,-639025200,3),(1198,-622087200,2),(1198,-606970800,3),(1198,-590032800,2),(1198,-575521200,3),(1198,-235620000,2),(1198,-194842800,3),(1198,-177732000,2),(1198,-165726000,3),(1198,107910000,2),(1198,121215600,3),(1198,133920000,2),(1198,152665200,3),(1198,164678400,2),(1198,184114800,3),(1198,196214400,2),(1198,215564400,3),(1198,228873600,2),(1198,245804400,3),(1198,260323200,2),(1198,267915600,4),(1198,428454000,5),(1198,433893600,4),(1198,468111600,3),(1198,482799600,6),(1198,496710000,7),(1198,512521200,6),(1198,528246000,7),(1198,543970800,6),(1198,559695600,7),(1198,575420400,6),(1198,591145200,7),(1198,606870000,6),(1198,622594800,7),(1198,638319600,6),(1198,654649200,7),(1198,670374000,6),(1198,686098800,7),(1198,701823600,6),(1198,717548400,7),(1198,733273200,6),(1198,748998000,7),(1198,764118000,6),(1198,780447600,7),(1198,796172400,6),(1198,811897200,7),(1198,828226800,6),(1198,846370800,7),(1198,859676400,6),(1198,877820400,7),(1198,891126000,6),(1198,909270000,7),(1198,922575600,6),(1198,941324400,7),(1198,954025200,6),(1198,972774000,7),(1198,985474800,6),(1198,1004223600,7),(1198,1017529200,6),(1198,1035673200,7),(1198,1048978800,6),(1198,1067122800,7),(1198,1080428400,6),(1198,1099177200,7),(1198,1111878000,6),(1198,1130626800,7),(1198,1143327600,6),(1198,1162076400,7),(1198,1167602400,3),(1198,1174784400,8),(1198,1193533200,9),(1198,1206838800,8),(1198,1224982800,9),(1198,1238288400,8),(1198,1256432400,9),(1198,1269738000,8),(1198,1288486800,9),(1198,1301274000,8),(1198,1319936400,9),(1198,1332637200,8),(1198,1351386000,9),(1198,1364691600,8),(1198,1382835600,9),(1198,1396227600,8),(1198,1414285200,9),(1198,1427590800,8),(1198,1446944400,9),(1198,1459040400,8),(1198,1473195600,4),(1198,2147483647,4),(1200,-2147483648,1),(1200,-880200000,2),(1200,-769395600,3),(1200,-765378000,1),(1200,-86882400,4),(1200,-21470400,5),(1200,-5749200,4),(1200,9979200,5),(1200,25700400,4),(1200,41428800,5),(1200,57754800,4),(1200,73483200,5),(1200,89204400,4),(1200,104932800,5),(1200,120654000,4),(1200,126705600,5),(1200,152103600,4),(1200,162388800,5),(1200,183553200,4),(1200,199281600,5),(1200,215607600,4),(1200,230731200,5),(1200,247057200,4),(1200,262785600,5),(1200,278506800,4),(1200,294235200,5),(1200,309956400,4),(1200,325684800,5),(1200,341406000,4),(1200,357134400,5),(1200,372855600,4),(1200,388584000,5),(1200,404910000,4),(1200,420033600,5),(1200,436359600,6),(1200,439030800,8),(1200,452084400,7),(1200,467805600,8),(1200,483534000,7),(1200,499255200,8),(1200,514983600,7),(1200,530704800,8),(1200,544618800,7),(1200,562154400,8),(1200,576068400,7),(1200,594208800,8),(1200,607518000,7),(1200,625658400,8),(1200,638967600,7),(1200,657108000,8),(1200,671022000,7),(1200,688557600,8),(1200,702471600,7),(1200,720007200,8),(1200,733921200,7),(1200,752061600,8),(1200,765370800,7),(1200,783511200,8),(1200,796820400,7),(1200,814960800,8),(1200,828874800,7),(1200,846410400,8),(1200,860324400,7),(1200,877860000,8),(1200,891774000,7),(1200,909309600,8),(1200,923223600,7),(1200,941364000,8),(1200,954673200,7),(1200,972813600,8),(1200,986122800,7),(1200,1004263200,8),(1200,1018177200,7),(1200,1035712800,8),(1200,1049626800,7),(1200,1067162400,8),(1200,1081076400,7),(1200,1099216800,8),(1200,1112526000,7),(1200,1130666400,8),(1200,1143975600,7),(1200,1162116000,8),(1200,1173610800,7),(1200,1194170400,8),(1200,1205060400,7),(1200,1225620000,8),(1200,1236510000,7),(1200,1257069600,8),(1200,1268564400,7),(1200,1289124000,8),(1200,1300014000,7),(1200,1320573600,8),(1200,1331463600,7),(1200,1352023200,8),(1200,1362913200,7),(1200,1383472800,8),(1200,1394362800,7),(1200,1414922400,8),(1200,1425812400,7),(1200,1446372000,8),(1200,1457866800,7),(1200,1478426400,8),(1200,1489316400,7),(1200,1509876000,8),(1200,1520766000,7),(1200,1541325600,8),(1200,1552215600,7),(1200,1572775200,8),(1200,1583665200,7),(1200,1604224800,8),(1200,1615719600,7),(1200,1636279200,8),(1200,1647169200,7),(1200,1667728800,8),(1200,1678618800,7),(1200,1699178400,8),(1200,1710068400,7),(1200,1730628000,8),(1200,1741518000,7),(1200,1762077600,8),(1200,1772967600,7),(1200,1793527200,8),(1200,1805022000,7),(1200,1825581600,8),(1200,1836471600,7),(1200,1857031200,8),(1200,1867921200,7),(1200,1888480800,8),(1200,1899370800,7),(1200,1919930400,8),(1200,1930820400,7),(1200,1951380000,8),(1200,1962874800,7),(1200,1983434400,8),(1200,1994324400,7),(1200,2014884000,8),(1200,2025774000,7),(1200,2046333600,8),(1200,2057223600,7),(1200,2077783200,8),(1200,2088673200,7),(1200,2109232800,8),(1200,2120122800,7),(1200,2140682400,8),(1201,-2147483648,1),(1201,-880196400,2),(1201,-769395600,3),(1201,-765374400,1),(1201,-86878800,4),(1201,-21466800,5),(1201,-5745600,4),(1201,9982800,5),(1201,25704000,4),(1201,41432400,5),(1201,57758400,4),(1201,73486800,5),(1201,89208000,4),(1201,104936400,5),(1201,120657600,4),(1201,126709200,5),(1201,152107200,4),(1201,162392400,5),(1201,183556800,4),(1201,199285200,5),(1201,215611200,4),(1201,230734800,5),(1201,247060800,4),(1201,262789200,5),(1201,278510400,4),(1201,294238800,5),(1201,309960000,4),(1201,325688400,5),(1201,341409600,4),(1201,357138000,5),(1201,372859200,4),(1201,388587600,5),(1201,404913600,4),(1201,420037200,5),(1201,436363200,6),(1201,439034400,8),(1201,452088000,7),(1201,467809200,8),(1201,483537600,7),(1201,499258800,8),(1201,514987200,7),(1201,530708400,8),(1201,544622400,7),(1201,562158000,8),(1201,576072000,7),(1201,594212400,8),(1201,607521600,7),(1201,625662000,8),(1201,638971200,7),(1201,657111600,8),(1201,671025600,7),(1201,688561200,8),(1201,702475200,7),(1201,720010800,8),(1201,733924800,7),(1201,752065200,8),(1201,765374400,7),(1201,783514800,8),(1201,796824000,7),(1201,814964400,8),(1201,828878400,7),(1201,846414000,8),(1201,860328000,7),(1201,877863600,8),(1201,891777600,7),(1201,909313200,8),(1201,923227200,7),(1201,941367600,8),(1201,954676800,7),(1201,972817200,8),(1201,986126400,7),(1201,1004266800,8),(1201,1018180800,7),(1201,1035716400,8),(1201,1049630400,7),(1201,1067166000,8),(1201,1081080000,7),(1201,1099220400,8),(1201,1112529600,7),(1201,1130670000,8),(1201,1143979200,7),(1201,1162119600,8),(1201,1173614400,7),(1201,1194174000,8),(1201,1205064000,7),(1201,1225623600,8),(1201,1236513600,7),(1201,1257073200,8),(1201,1268568000,7),(1201,1289127600,8),(1201,1300017600,7),(1201,1320577200,8),(1201,1331467200,7),(1201,1352026800,8),(1201,1362916800,7),(1201,1383476400,8),(1201,1394366400,7),(1201,1414926000,8),(1201,1425816000,7),(1201,1446375600,8),(1201,1457870400,7),(1201,1478430000,8),(1201,1489320000,7),(1201,1509879600,8),(1201,1520769600,7),(1201,1541329200,8),(1201,1552219200,7),(1201,1572778800,8),(1201,1583668800,7),(1201,1604228400,8),(1201,1615723200,7),(1201,1636282800,8),(1201,1647172800,7),(1201,1667732400,8),(1201,1678622400,7),(1201,1699182000,8),(1201,1710072000,7),(1201,1730631600,8),(1201,1741521600,7),(1201,1762081200,8),(1201,1772971200,7),(1201,1793530800,8),(1201,1805025600,7),(1201,1825585200,8),(1201,1836475200,7),(1201,1857034800,8),(1201,1867924800,7),(1201,1888484400,8),(1201,1899374400,7),(1201,1919934000,8),(1201,1930824000,7),(1201,1951383600,8),(1201,1962878400,7),(1201,1983438000,8),(1201,1994328000,7),(1201,2014887600,8),(1201,2025777600,7),(1201,2046337200,8),(1201,2057227200,7),(1201,2077786800,8),(1201,2088676800,7),(1201,2109236400,8),(1201,2120126400,7),(1201,2140686000,8),(1202,-2147483648,2),(1202,-1633273200,1),(1202,-1615132800,2),(1202,-1601823600,1),(1202,-1583683200,2),(1202,-880210800,3),(1202,-820519140,2),(1202,-812653140,3),(1202,-796845540,2),(1202,-84380400,1),(1202,-68659200,2),(1203,-2147483648,2),(1203,-1633276800,1),(1203,-1615136400,2),(1203,-1601827200,1),(1203,-1583686800,2),(1203,-1563724800,1),(1203,-1551632400,2),(1203,-1538928000,1),(1203,-1520182800,2),(1203,-1504454400,1),(1203,-1491757200,2),(1203,-1473004800,1),(1203,-1459702800,2),(1203,-1441555200,1),(1203,-1428253200,2),(1203,-1410105600,1),(1203,-1396803600,2),(1203,-1378656000,1),(1203,-1365354000,2),(1203,-1347206400,1),(1203,-1333904400,2),(1203,-1315152000,1),(1203,-1301850000,2),(1203,-1283702400,1),(1203,-1270400400,2),(1203,-1252252800,1),(1203,-1238950800,2),(1203,-1220803200,1),(1203,-1207501200,2),(1203,-1189353600,1),(1203,-1176051600,2),(1203,-1157299200,1),(1203,-1144602000,2),(1203,-1125849600,1),(1203,-1112547600,2),(1203,-1094400000,1),(1203,-1081098000,2),(1203,-1067788800,3),(1203,-1045414800,2),(1203,-1031500800,1),(1203,-1018198800,2),(1203,-1000051200,1),(1203,-986749200,2),(1203,-967996800,1),(1203,-955299600,2),(1203,-936547200,1),(1203,-923245200,2),(1203,-905097600,1),(1203,-891795600,2),(1203,-880214400,4),(1203,-769395600,5),(1203,-765392400,2),(1203,-747244800,1),(1203,-733942800,2),(1203,-715795200,1),(1203,-702493200,2),(1203,-684345600,1),(1203,-671043600,2),(1203,-652896000,1),(1203,-639594000,2),(1203,-620841600,1),(1203,-608144400,2),(1203,-589392000,1),(1203,-576090000,2),(1203,-557942400,1),(1203,-544640400,2),(1203,-526492800,1),(1203,-513190800,2),(1203,-495043200,1),(1203,-481741200,2),(1203,-463593600,1),(1203,-447267600,2),(1203,-431539200,1),(1203,-415818000,2),(1203,-400089600,1),(1203,-384368400,2),(1203,-368640000,1),(1203,-352918800,2),(1203,-337190400,1),(1203,-321469200,2),(1203,-305740800,1),(1203,-289414800,2),(1203,-273686400,1),(1203,-257965200,2),(1203,-242236800,1),(1203,-226515600,2),(1203,-210787200,1),(1203,-195066000,2),(1203,-179337600,1),(1203,-163616400,2),(1203,-147888000,1),(1203,-131562000,2),(1203,-116438400,1),(1203,-100112400,2),(1203,-84384000,1),(1203,-68662800,2),(1203,-52934400,1),(1203,-37213200,2),(1203,-21484800,1),(1203,-5763600,2),(1203,9964800,1),(1203,25686000,2),(1203,41414400,1),(1203,57740400,2),(1203,73468800,1),(1203,89190000,2),(1203,104918400,1),(1203,120639600,2),(1203,126691200,1),(1203,152089200,2),(1203,162374400,1),(1203,183538800,2),(1203,199267200,1),(1203,215593200,2),(1203,230716800,1),(1203,247042800,2),(1203,262771200,1),(1203,278492400,2),(1203,294220800,1),(1203,309942000,2),(1203,325670400,1),(1203,341391600,2),(1203,357120000,1),(1203,372841200,2),(1203,388569600,1),(1203,404895600,2),(1203,420019200,1),(1203,436345200,2),(1203,452073600,1),(1203,467794800,2),(1203,483523200,1),(1203,499244400,2),(1203,514972800,1),(1203,530694000,2),(1203,544608000,1),(1203,562143600,2),(1203,576057600,1),(1203,594198000,2),(1203,607507200,1),(1203,625647600,2),(1203,638956800,1),(1203,657097200,2),(1203,671011200,1),(1203,688546800,2),(1203,702460800,1),(1203,719996400,2),(1203,733910400,1),(1203,752050800,2),(1203,765360000,1),(1203,783500400,2),(1203,796809600,1),(1203,814950000,2),(1203,828864000,1),(1203,846399600,2),(1203,860313600,1),(1203,877849200,2),(1203,891763200,1),(1203,909298800,2),(1203,923212800,1),(1203,941353200,2),(1203,954662400,1),(1203,972802800,2),(1203,986112000,1),(1203,1004252400,2),(1203,1018166400,1),(1203,1035702000,2),(1203,1049616000,1),(1203,1067151600,2),(1203,1081065600,1),(1203,1099206000,2),(1203,1112515200,1),(1203,1130655600,2),(1203,1143964800,1),(1203,1162105200,2),(1203,1173600000,1),(1203,1194159600,2),(1203,1205049600,1),(1203,1225609200,2),(1203,1236499200,1),(1203,1257058800,2),(1203,1268553600,1),(1203,1289113200,2),(1203,1300003200,1),(1203,1320562800,2),(1203,1331452800,1),(1203,1352012400,2),(1203,1362902400,1),(1203,1383462000,2),(1203,1394352000,1),(1203,1414911600,2),(1203,1425801600,1),(1203,1446361200,2),(1203,1457856000,1),(1203,1478415600,2),(1203,1489305600,1),(1203,1509865200,2),(1203,1520755200,1),(1203,1541314800,2),(1203,1552204800,1),(1203,1572764400,2),(1203,1583654400,1),(1203,1604214000,2),(1203,1615708800,1),(1203,1636268400,2),(1203,1647158400,1),(1203,1667718000,2),(1203,1678608000,1),(1203,1699167600,2),(1203,1710057600,1),(1203,1730617200,2),(1203,1741507200,1),(1203,1762066800,2),(1203,1772956800,1),(1203,1793516400,2),(1203,1805011200,1),(1203,1825570800,2),(1203,1836460800,1),(1203,1857020400,2),(1203,1867910400,1),(1203,1888470000,2),(1203,1899360000,1),(1203,1919919600,2),(1203,1930809600,1),(1203,1951369200,2),(1203,1962864000,1),(1203,1983423600,2),(1203,1994313600,1),(1203,2014873200,2),(1203,2025763200,1),(1203,2046322800,2),(1203,2057212800,1),(1203,2077772400,2),(1203,2088662400,1),(1203,2109222000,2),(1203,2120112000,1),(1203,2140671600,2),(1204,-2147483648,2),(1204,-1633276800,1),(1204,-1615136400,2),(1204,-1601827200,1),(1204,-1583686800,2),(1204,-900259200,1),(1204,-891795600,2),(1204,-880214400,3),(1204,-769395600,4),(1204,-765392400,2),(1204,-747244800,1),(1204,-733942800,2),(1204,-715795200,1),(1204,-702493200,2),(1204,-684345600,1),(1204,-671043600,2),(1204,-652896000,1),(1204,-639594000,2),(1204,-620841600,1),(1204,-608144400,2),(1204,-589392000,1),(1204,-576090000,2),(1204,-557942400,1),(1204,-544640400,2),(1204,-526492800,1),(1204,-513190800,2),(1204,-495043200,1),(1204,-481741200,2),(1204,-463593600,5),(1204,-386787600,2),(1204,-368640000,5),(1204,-21488400,6),(1204,-5767200,5),(1204,9961200,6),(1204,25682400,5),(1204,1143961200,6),(1204,1162101600,5),(1204,1173596400,6),(1204,1194156000,5),(1204,1205046000,6),(1204,1225605600,5),(1204,1236495600,6),(1204,1257055200,5),(1204,1268550000,6),(1204,1289109600,5),(1204,1299999600,6),(1204,1320559200,5),(1204,1331449200,6),(1204,1352008800,5),(1204,1362898800,6),(1204,1383458400,5),(1204,1394348400,6),(1204,1414908000,5),(1204,1425798000,6),(1204,1446357600,5),(1204,1457852400,6),(1204,1478412000,5),(1204,1489302000,6),(1204,1509861600,5),(1204,1520751600,6),(1204,1541311200,5),(1204,1552201200,6),(1204,1572760800,5),(1204,1583650800,6),(1204,1604210400,5),(1204,1615705200,6),(1204,1636264800,5),(1204,1647154800,6),(1204,1667714400,5),(1204,1678604400,6),(1204,1699164000,5),(1204,1710054000,6),(1204,1730613600,5),(1204,1741503600,6),(1204,1762063200,5),(1204,1772953200,6),(1204,1793512800,5),(1204,1805007600,6),(1204,1825567200,5),(1204,1836457200,6),(1204,1857016800,5),(1204,1867906800,6),(1204,1888466400,5),(1204,1899356400,6),(1204,1919916000,5),(1204,1930806000,6),(1204,1951365600,5),(1204,1962860400,6),(1204,1983420000,5),(1204,1994310000,6),(1204,2014869600,5),(1204,2025759600,6),(1204,2046319200,5),(1204,2057209200,6),(1204,2077768800,5),(1204,2088658800,6),(1204,2109218400,5),(1204,2120108400,6),(1204,2140668000,5),(1205,-2147483648,2),(1205,-1633280400,1),(1205,-1615140000,2),(1205,-1601830800,1),(1205,-1583690400,2),(1205,-1570381200,1),(1205,-1551636000,2),(1205,-1536512400,1),(1205,-1523210400,2),(1205,-1504458000,1),(1205,-1491760800,2),(1205,-1473008400,1),(1205,-1459706400,2),(1205,-1441558800,1),(1205,-1428256800,2),(1205,-1410109200,1),(1205,-1396807200,2),(1205,-1378659600,1),(1205,-1365357600,2),(1205,-1347210000,1),(1205,-1333908000,2),(1205,-1315155600,1),(1205,-1301853600,2),(1205,-1283706000,1),(1205,-1270404000,2),(1205,-1252256400,1),(1205,-1238954400,2),(1205,-1220806800,1),(1205,-1207504800,2),(1205,-1189357200,1),(1205,-1176055200,2),(1205,-1157302800,1),(1205,-1144605600,2),(1205,-1125853200,1),(1205,-1112551200,2),(1205,-1094403600,1),(1205,-1081101600,2),(1205,-1062954000,1),(1205,-1049652000,2),(1205,-1031504400,1),(1205,-1018202400,2),(1205,-1000054800,1),(1205,-986752800,2),(1205,-968000400,1),(1205,-955303200,2),(1205,-936550800,1),(1205,-923248800,2),(1205,-905101200,1),(1205,-891799200,2),(1205,-880218000,3),(1205,-769395600,4),(1205,-765396000,2),(1205,-747248400,1),(1205,-733946400,2),(1205,-715798800,1),(1205,-702496800,2),(1205,-684349200,1),(1205,-671047200,2),(1205,-652899600,1),(1205,-639597600,2),(1205,-620845200,1),(1205,-608148000,2),(1205,-589395600,1),(1205,-576093600,2),(1205,-557946000,1),(1205,-544644000,2),(1205,-526496400,1),(1205,-513194400,2),(1205,-495046800,1),(1205,-481744800,2),(1205,-463597200,1),(1205,-447271200,2),(1205,-431542800,1),(1205,-415821600,2),(1205,-400093200,1),(1205,-384372000,2),(1205,-368643600,1),(1205,-352922400,2),(1205,-337194000,1),(1205,-321472800,2),(1205,-305744400,1),(1205,-289418400,2),(1205,-273690000,1),(1205,-257968800,2),(1205,-242240400,1),(1205,-226519200,2),(1205,-210790800,1),(1205,-195069600,2),(1205,-179341200,1),(1205,-163620000,2),(1205,-147891600,1),(1205,-131565600,2),(1205,-116442000,1),(1205,-100116000,2),(1205,-84387600,1),(1205,-68666400,2),(1205,-52938000,1),(1205,-37216800,2),(1205,-21488400,1),(1205,-5767200,2),(1205,9961200,1),(1205,25682400,2),(1205,41410800,1),(1205,57736800,2),(1205,73465200,1),(1205,89186400,2),(1205,104914800,1),(1205,120636000,2),(1205,126687600,1),(1205,152085600,2),(1205,162370800,1),(1205,183535200,2),(1205,199263600,1),(1205,215589600,2),(1205,230713200,1),(1205,247039200,2),(1205,262767600,1),(1205,278488800,2),(1205,294217200,1),(1205,309938400,2),(1205,325666800,1),(1205,341388000,2),(1205,357116400,1),(1205,372837600,2),(1205,388566000,1),(1205,404892000,2),(1205,420015600,1),(1205,436341600,2),(1205,452070000,1),(1205,467791200,2),(1205,483519600,1),(1205,499240800,2),(1205,514969200,1),(1205,530690400,2),(1205,544604400,1),(1205,562140000,2),(1205,576054000,1),(1205,594194400,2),(1205,607503600,1),(1205,625644000,2),(1205,638953200,1),(1205,657093600,2),(1205,671007600,1),(1205,688543200,2),(1205,702457200,1),(1205,719992800,2),(1205,733906800,1),(1205,752047200,2),(1205,765356400,1),(1205,783496800,2),(1205,796806000,1),(1205,814946400,2),(1205,828860400,1),(1205,846396000,2),(1205,860310000,1),(1205,877845600,2),(1205,891759600,1),(1205,909295200,2),(1205,923209200,1),(1205,941349600,2),(1205,954658800,1),(1205,972799200,2),(1205,986108400,1),(1205,1004248800,2),(1205,1018162800,1),(1205,1035698400,2),(1205,1049612400,1),(1205,1067148000,2),(1205,1081062000,1),(1205,1099202400,2),(1205,1112511600,1),(1205,1130652000,2),(1205,1143961200,1),(1205,1162101600,2),(1205,1173596400,1),(1205,1194156000,2),(1205,1205046000,1),(1205,1225605600,2),(1205,1236495600,1),(1205,1257055200,2),(1205,1268550000,1),(1205,1289109600,2),(1205,1299999600,1),(1205,1320559200,2),(1205,1331449200,1),(1205,1352008800,2),(1205,1362898800,1),(1205,1383458400,2),(1205,1394348400,1),(1205,1414908000,2),(1205,1425798000,1),(1205,1446357600,2),(1205,1457852400,1),(1205,1478412000,2),(1205,1489302000,1),(1205,1509861600,2),(1205,1520751600,1),(1205,1541311200,2),(1205,1552201200,1),(1205,1572760800,2),(1205,1583650800,1),(1205,1604210400,2),(1205,1615705200,1),(1205,1636264800,2),(1205,1647154800,1),(1205,1667714400,2),(1205,1678604400,1),(1205,1699164000,2),(1205,1710054000,1),(1205,1730613600,2),(1205,1741503600,1),(1205,1762063200,2),(1205,1772953200,1),(1205,1793512800,2),(1205,1805007600,1),(1205,1825567200,2),(1205,1836457200,1),(1205,1857016800,2),(1205,1867906800,1),(1205,1888466400,2),(1205,1899356400,1),(1205,1919916000,2),(1205,1930806000,1),(1205,1951365600,2),(1205,1962860400,1),(1205,1983420000,2),(1205,1994310000,1),(1205,2014869600,2),(1205,2025759600,1),(1205,2046319200,2),(1205,2057209200,1),(1205,2077768800,2),(1205,2088658800,1),(1205,2109218400,2),(1205,2120108400,1),(1205,2140668000,2),(1206,-2147483648,1),(1206,-1157283000,2),(1206,-1155436200,1),(1206,-880198200,3),(1206,-769395600,4),(1206,-765376200,1),(1206,-712150200,5),(1207,-2147483648,2),(1207,-1633276800,1),(1207,-1615136400,2),(1207,-1601827200,1),(1207,-1583686800,2),(1207,-880214400,3),(1207,-769395600,4),(1207,-765392400,2),(1207,-715795200,1),(1207,-702493200,2),(1207,-684345600,1),(1207,-671043600,2),(1207,-652896000,1),(1207,-639594000,2),(1207,-620841600,1),(1207,-608144400,2),(1207,-589392000,1),(1207,-576090000,2),(1207,-557942400,1),(1207,-544640400,2),(1207,-526492800,1),(1207,-513190800,2),(1207,-495043200,1),(1207,-481741200,2),(1207,-463593600,1),(1207,-447267600,2),(1207,-431539200,1),(1207,-415818000,2),(1207,-400089600,1),(1207,-386787600,2),(1207,-368640000,1),(1207,-355338000,2),(1207,-337190400,1),(1207,-321469200,2),(1207,-305740800,1),(1207,-289414800,2),(1207,-273686400,1),(1207,-257965200,2),(1207,-242236800,5),(1207,-195066000,2),(1207,-84384000,1),(1207,-68662800,2),(1207,-52934400,1),(1207,-37213200,2),(1207,-21484800,1),(1207,-5763600,2),(1207,9964800,1),(1207,25686000,2),(1207,41414400,1),(1207,57740400,2),(1207,73468800,1),(1207,89190000,2),(1207,104918400,1),(1207,120639600,2),(1207,126691200,1),(1207,152089200,2),(1207,162374400,1),(1207,183538800,2),(1207,199267200,1),(1207,215593200,2),(1207,230716800,1),(1207,247042800,2),(1207,262771200,1),(1207,278492400,2),(1207,294220800,1),(1207,309942000,2),(1207,325670400,1),(1207,341391600,2),(1207,357120000,1),(1207,372841200,2),(1207,388569600,1),(1207,404895600,2),(1207,420019200,1),(1207,436345200,2),(1207,452073600,1),(1207,467794800,2),(1207,483523200,1),(1207,499244400,2),(1207,514972800,1),(1207,530694000,2),(1207,544608000,1),(1207,562143600,2),(1207,576057600,1),(1207,594198000,2),(1207,607507200,1),(1207,625647600,2),(1207,638956800,1),(1207,657097200,2),(1207,671011200,1),(1207,688546800,5),(1207,1143961200,1),(1207,1162105200,2),(1207,1173600000,1),(1207,1194159600,2),(1207,1205049600,1),(1207,1225609200,2),(1207,1236499200,1),(1207,1257058800,2),(1207,1268553600,1),(1207,1289113200,2),(1207,1300003200,1),(1207,1320562800,2),(1207,1331452800,1),(1207,1352012400,2),(1207,1362902400,1),(1207,1383462000,2),(1207,1394352000,1),(1207,1414911600,2),(1207,1425801600,1),(1207,1446361200,2),(1207,1457856000,1),(1207,1478415600,2),(1207,1489305600,1),(1207,1509865200,2),(1207,1520755200,1),(1207,1541314800,2),(1207,1552204800,1),(1207,1572764400,2),(1207,1583654400,1),(1207,1604214000,2),(1207,1615708800,1),(1207,1636268400,2),(1207,1647158400,1),(1207,1667718000,2),(1207,1678608000,1),(1207,1699167600,2),(1207,1710057600,1),(1207,1730617200,2),(1207,1741507200,1),(1207,1762066800,2),(1207,1772956800,1),(1207,1793516400,2),(1207,1805011200,1),(1207,1825570800,2),(1207,1836460800,1),(1207,1857020400,2),(1207,1867910400,1),(1207,1888470000,2),(1207,1899360000,1),(1207,1919919600,2),(1207,1930809600,1),(1207,1951369200,2),(1207,1962864000,1),(1207,1983423600,2),(1207,1994313600,1),(1207,2014873200,2),(1207,2025763200,1),(1207,2046322800,2),(1207,2057212800,1),(1207,2077772400,2),(1207,2088662400,1),(1207,2109222000,2),(1207,2120112000,1),(1207,2140671600,2),(1208,-2147483648,0),(1208,-2051202469,1),(1208,-1724083200,2),(1208,-880218000,3),(1208,-769395600,4),(1208,-765396000,2),(1208,-684349200,5),(1208,-671047200,2),(1208,-80506740,5),(1208,-68666400,2),(1208,-52938000,5),(1208,-37216800,2),(1208,104914800,5),(1208,120636000,2),(1208,126687600,5),(1208,152085600,2),(1208,167814000,5),(1208,183535200,2),(1208,199263600,5),(1208,215589600,2),(1208,230713200,5),(1208,247039200,2),(1208,262767600,5),(1208,278488800,2),(1208,294217200,5),(1208,309938400,2),(1208,325666800,5),(1208,341388000,2),(1208,357116400,5),(1208,372837600,2),(1208,388566000,5),(1208,404892000,2),(1208,420015600,5),(1208,436341600,2),(1208,452070000,5),(1208,467791200,2),(1208,483519600,5),(1208,499240800,2),(1208,514969200,5),(1208,530690400,2),(1208,544604400,5),(1208,562140000,2),(1208,576054000,5),(1208,594194400,2),(1208,607503600,5),(1208,625644000,2),(1208,638953200,5),(1208,657093600,2),(1208,671007600,5),(1208,688543200,2),(1208,702457200,5),(1208,719992800,2),(1208,733906800,5),(1208,752047200,2),(1208,765356400,5),(1208,783496800,2),(1208,796806000,5),(1208,814946400,2),(1208,828860400,5),(1208,846396000,2),(1208,860310000,5),(1208,877845600,2),(1208,891759600,5),(1208,909295200,2),(1208,923209200,5),(1208,941349600,2),(1208,954658800,5),(1208,972799200,2),(1208,986108400,5),(1208,1004248800,2),(1208,1018162800,5),(1208,1035698400,2),(1208,1049612400,5),(1208,1067148000,2),(1208,1081062000,5),(1208,1099202400,2),(1208,1112511600,5),(1208,1130652000,2),(1208,1143961200,5),(1208,1162101600,2),(1208,1173596400,5),(1208,1194156000,2),(1208,1205046000,5),(1208,1225605600,2),(1208,1236495600,5),(1208,1257055200,2),(1208,1268550000,5),(1208,1289109600,2),(1208,1299999600,5),(1208,1320559200,2),(1208,1331449200,5),(1208,1352008800,2),(1208,1362898800,5),(1208,1383458400,2),(1208,1394348400,5),(1208,1414908000,2),(1208,1425798000,5),(1208,1446357600,2),(1208,1457852400,5),(1208,1478412000,2),(1208,1489302000,5),(1208,1509861600,2),(1208,1520751600,5),(1208,1541311200,2),(1208,1552201200,5),(1208,1572760800,2),(1208,1583650800,5),(1208,1604210400,2),(1208,1615705200,5),(1208,1636264800,2),(1208,1647154800,5),(1208,1667714400,2),(1208,1678604400,5),(1208,1699164000,2),(1208,1710054000,5),(1208,1730613600,2),(1208,1741503600,5),(1208,1762063200,2),(1208,1772953200,5),(1208,1793512800,2),(1208,1805007600,5),(1208,1825567200,2),(1208,1836457200,5),(1208,1857016800,2),(1208,1867906800,5),(1208,1888466400,2),(1208,1899356400,5),(1208,1919916000,2),(1208,1930806000,5),(1208,1951365600,2),(1208,1962860400,5),(1208,1983420000,2),(1208,1994310000,5),(1208,2014869600,2),(1208,2025759600,5),(1208,2046319200,2),(1208,2057209200,5),(1208,2077768800,2),(1208,2088658800,5),(1208,2109218400,2),(1208,2120108400,5),(1208,2140668000,2),(1209,-2147483648,2),(1209,-1633273200,1),(1209,-1615132800,2),(1209,-1601823600,1),(1209,-1583683200,2),(1209,-1570374000,1),(1209,-1551628800,2),(1209,-1538924400,1),(1209,-1534089600,2),(1209,-880210800,3),(1209,-769395600,4),(1209,-765388800,2),(1209,-147884400,1),(1209,-131558400,2),(1209,-116434800,1),(1209,-100108800,2),(1209,-84380400,1),(1209,-68659200,2),(1209,-52930800,1),(1209,-37209600,2),(1209,-21481200,1),(1209,-5760000,2),(1209,9968400,1),(1209,25689600,2),(1209,41418000,1),(1209,57744000,2),(1209,73472400,1),(1209,89193600,2),(1209,104922000,1),(1209,120643200,2),(1209,126694800,1),(1209,152092800,2),(1209,162378000,1),(1209,183542400,2),(1209,199270800,1),(1209,215596800,2),(1209,230720400,1),(1209,247046400,2),(1209,262774800,1),(1209,278496000,2),(1209,294224400,1),(1209,309945600,2),(1209,325674000,1),(1209,341395200,2),(1209,357123600,1),(1209,372844800,2),(1209,388573200,1),(1209,404899200,2),(1209,420022800,1),(1209,436348800,2),(1209,452077200,1),(1209,467798400,2),(1209,483526800,1),(1209,499248000,2),(1209,514976400,1),(1209,530697600,2),(1209,544611600,1),(1209,562147200,2),(1209,576061200,1),(1209,594201600,2),(1209,607510800,1),(1209,625651200,2),(1209,638960400,1),(1209,657100800,2),(1209,671014800,1),(1209,688550400,2),(1209,702464400,1),(1209,720000000,2),(1209,733914000,1),(1209,752054400,2),(1209,765363600,1),(1209,783504000,2),(1209,796813200,1),(1209,814953600,2),(1209,828867600,1),(1209,846403200,2),(1209,860317200,1),(1209,877852800,2),(1209,891766800,1),(1209,909302400,2),(1209,923216400,1),(1209,941356800,2),(1209,954666000,1),(1209,972806400,2),(1209,986115600,1),(1209,1004256000,2),(1209,1018170000,1),(1209,1035705600,2),(1209,1049619600,1),(1209,1067155200,2),(1209,1081069200,1),(1209,1099209600,2),(1209,1112518800,1),(1209,1130659200,2),(1209,1143968400,1),(1209,1162108800,2),(1209,1173603600,1),(1209,1194163200,2),(1209,1205053200,1),(1209,1225612800,2),(1209,1236502800,1),(1209,1257062400,2),(1209,1268557200,1),(1209,1289116800,2),(1209,1300006800,1),(1209,1320566400,2),(1209,1331456400,1),(1209,1352016000,2),(1209,1362906000,1),(1209,1383465600,2),(1209,1394355600,1),(1209,1414915200,2),(1209,1425805200,1),(1209,1446364800,2),(1209,1457859600,1),(1209,1478419200,2),(1209,1489309200,1),(1209,1509868800,2),(1209,1520758800,1),(1209,1541318400,2),(1209,1552208400,1),(1209,1572768000,2),(1209,1583658000,1),(1209,1604217600,2),(1209,1615712400,1),(1209,1636272000,2),(1209,1647162000,1),(1209,1667721600,2),(1209,1678611600,1),(1209,1699171200,2),(1209,1710061200,1),(1209,1730620800,2),(1209,1741510800,1),(1209,1762070400,2),(1209,1772960400,1),(1209,1793520000,2),(1209,1805014800,1),(1209,1825574400,2),(1209,1836464400,1),(1209,1857024000,2),(1209,1867914000,1),(1209,1888473600,2),(1209,1899363600,1),(1209,1919923200,2),(1209,1930813200,1),(1209,1951372800,2),(1209,1962867600,1),(1209,1983427200,2),(1209,1994317200,1),(1209,2014876800,2),(1209,2025766800,1),(1209,2046326400,2),(1209,2057216400,1),(1209,2077776000,2),(1209,2088666000,1),(1209,2109225600,2),(1209,2120115600,1),(1209,2140675200,2),(1210,-2147483648,2),(1210,-1633269600,1),(1210,-1615129200,2),(1210,-1601820000,1),(1210,-1583679600,2),(1210,-880207200,3),(1210,-769395600,4),(1210,-765385200,2),(1210,-687967140,1),(1210,-662655600,2),(1210,-620838000,1),(1210,-608137200,2),(1210,-589388400,1),(1210,-576082800,2),(1210,-557938800,1),(1210,-544633200,2),(1210,-526489200,1),(1210,-513183600,2),(1210,-495039600,1),(1210,-481734000,2),(1210,-463590000,1),(1210,-450284400,2),(1210,-431535600,1),(1210,-418230000,2),(1210,-400086000,1),(1210,-386780400,2),(1210,-368636400,1),(1210,-355330800,2),(1210,-337186800,1),(1210,-323881200,2),(1210,-305737200,1),(1210,-292431600,2),(1210,-273682800,1),(1210,-260982000,2),(1210,-242233200,1),(1210,-226508400,2),(1210,-210783600,1),(1210,-195058800,2),(1210,-179334000,1),(1210,-163609200,2),(1210,-147884400,1),(1210,-131554800,2),(1210,-116434800,1),(1210,-100105200,2),(1210,-84376800,1),(1210,-68655600,2),(1210,-52927200,1),(1210,-37206000,2),(1210,-21477600,1),(1210,-5756400,2),(1210,9972000,1),(1210,25693200,2),(1210,41421600,1),(1210,57747600,2),(1210,73476000,1),(1210,89197200,2),(1210,104925600,1),(1210,120646800,2),(1210,126698400,1),(1210,152096400,2),(1210,162381600,1),(1210,183546000,2),(1210,199274400,1),(1210,215600400,2),(1210,230724000,1),(1210,247050000,2),(1210,262778400,1),(1210,278499600,2),(1210,294228000,1),(1210,309949200,2),(1210,325677600,1),(1210,341398800,2),(1210,357127200,1),(1210,372848400,2),(1210,388576800,1),(1210,404902800,2),(1210,420026400,1),(1210,436352400,2),(1210,452080800,1),(1210,467802000,2),(1210,483530400,1),(1210,499251600,2),(1210,514980000,1),(1210,530701200,2),(1210,544615200,1),(1210,562150800,2),(1210,576064800,1),(1210,594205200,2),(1210,607514400,1),(1210,625654800,2),(1210,638964000,1),(1210,657104400,2),(1210,671018400,1),(1210,688554000,2),(1210,702468000,1),(1210,720003600,2),(1210,733917600,1),(1210,752058000,2),(1210,765367200,1),(1210,783507600,2),(1210,796816800,1),(1210,814957200,2),(1210,828871200,1),(1210,846406800,2),(1210,860320800,1),(1210,877856400,2),(1210,891770400,1),(1210,909306000,2),(1210,923220000,1),(1210,941360400,2),(1210,954669600,1),(1210,972810000,2),(1210,986119200,1),(1210,1004259600,2),(1210,1018173600,1),(1210,1035709200,2),(1210,1049623200,1),(1210,1067158800,2),(1210,1081072800,1),(1210,1099213200,2),(1210,1112522400,1),(1210,1130662800,2),(1210,1143972000,1),(1210,1162112400,2),(1210,1173607200,1),(1210,1194166800,2),(1210,1205056800,1),(1210,1225616400,2),(1210,1236506400,1),(1210,1257066000,2),(1210,1268560800,1),(1210,1289120400,2),(1210,1300010400,1),(1210,1320570000,2),(1210,1331460000,1),(1210,1352019600,2),(1210,1362909600,1),(1210,1383469200,2),(1210,1394359200,1),(1210,1414918800,2),(1210,1425808800,1),(1210,1446368400,2),(1210,1457863200,1),(1210,1478422800,2),(1210,1489312800,1),(1210,1509872400,2),(1210,1520762400,1),(1210,1541322000,2),(1210,1552212000,1),(1210,1572771600,2),(1210,1583661600,1),(1210,1604221200,2),(1210,1615716000,1),(1210,1636275600,2),(1210,1647165600,1),(1210,1667725200,2),(1210,1678615200,1),(1210,1699174800,2),(1210,1710064800,1),(1210,1730624400,2),(1210,1741514400,1),(1210,1762074000,2),(1210,1772964000,1),(1210,1793523600,2),(1210,1805018400,1),(1210,1825578000,2),(1210,1836468000,1),(1210,1857027600,2),(1210,1867917600,1),(1210,1888477200,2),(1210,1899367200,1),(1210,1919926800,2),(1210,1930816800,1),(1210,1951376400,2),(1210,1962871200,1),(1210,1983430800,2),(1210,1994320800,1),(1210,2014880400,2),(1210,2025770400,1),(1210,2046330000,2),(1210,2057220000,1),(1210,2077779600,2),(1210,2088669600,1),(1210,2109229200,2),(1210,2120119200,1),(1210,2140678800,2),(1211,-2147483648,2),(1211,-1633269600,1),(1211,-1615129200,2),(1211,-1601820000,1),(1211,-1583679600,2),(1211,-880207200,3),(1211,-769395600,4),(1211,-765385200,2),(1211,-687967140,1),(1211,-662655600,2),(1211,-620838000,1),(1211,-608137200,2),(1211,-589388400,1),(1211,-576082800,2),(1211,-557938800,1),(1211,-544633200,2),(1211,-526489200,1),(1211,-513183600,2),(1211,-495039600,1),(1211,-481734000,2),(1211,-463590000,1),(1211,-450284400,2),(1211,-431535600,1),(1211,-418230000,2),(1211,-400086000,1),(1211,-386780400,2),(1211,-368636400,1),(1211,-355330800,2),(1211,-337186800,1),(1211,-323881200,2),(1211,-305737200,1),(1211,-292431600,2),(1211,-273682800,1),(1211,-260982000,2),(1211,-242233200,1),(1211,-226508400,2),(1211,-210783600,1),(1211,-195058800,2),(1211,-179334000,1),(1211,-163609200,2),(1211,-147884400,1),(1211,-131554800,2),(1211,-116434800,1),(1211,-100105200,2),(1211,-84376800,1),(1211,-68655600,2),(1211,-52927200,1),(1211,-37206000,2),(1211,-21477600,1),(1211,-5756400,2),(1211,9972000,1),(1211,25693200,2),(1211,41421600,1),(1211,57747600,2),(1211,73476000,1),(1211,89197200,2),(1211,104925600,1),(1211,120646800,2),(1211,126698400,1),(1211,152096400,2),(1211,162381600,1),(1211,183546000,2),(1211,199274400,1),(1211,215600400,2),(1211,230724000,1),(1211,247050000,2),(1211,262778400,1),(1211,278499600,2),(1211,294228000,1),(1211,309949200,2),(1211,325677600,1),(1211,341398800,2),(1211,357127200,1),(1211,372848400,2),(1211,388576800,1),(1211,404902800,2),(1211,420026400,1),(1211,436352400,2),(1211,452080800,1),(1211,467802000,2),(1211,483530400,1),(1211,499251600,2),(1211,514980000,1),(1211,530701200,2),(1211,544615200,1),(1211,562150800,2),(1211,576064800,1),(1211,594205200,2),(1211,607514400,1),(1211,625654800,2),(1211,638964000,1),(1211,657104400,2),(1211,671018400,1),(1211,688554000,2),(1211,702468000,1),(1211,720003600,2),(1211,733917600,1),(1211,752058000,2),(1211,765367200,1),(1211,783507600,2),(1211,796816800,1),(1211,814957200,2),(1211,828871200,1),(1211,846406800,2),(1211,860320800,1),(1211,877856400,2),(1211,891770400,1),(1211,909306000,2),(1211,923220000,1),(1211,941360400,2),(1211,954669600,1),(1211,972810000,2),(1211,986119200,1),(1211,1004259600,2),(1211,1018173600,1),(1211,1035709200,2),(1211,1049623200,1),(1211,1067158800,2),(1211,1081072800,1),(1211,1099213200,2),(1211,1112522400,1),(1211,1130662800,2),(1211,1143972000,1),(1211,1162112400,2),(1211,1173607200,1),(1211,1194166800,2),(1211,1205056800,1),(1211,1225616400,2),(1211,1236506400,1),(1211,1257066000,2),(1211,1268560800,1),(1211,1289120400,2),(1211,1300010400,1),(1211,1320570000,2),(1211,1331460000,1),(1211,1352019600,2),(1211,1362909600,1),(1211,1383469200,2),(1211,1394359200,1),(1211,1414918800,2),(1211,1425808800,1),(1211,1446368400,2),(1211,1457863200,1),(1211,1478422800,2),(1211,1489312800,1),(1211,1509872400,2),(1211,1520762400,1),(1211,1541322000,2),(1211,1552212000,1),(1211,1572771600,2),(1211,1583661600,1),(1211,1604221200,2),(1211,1615716000,1),(1211,1636275600,2),(1211,1647165600,1),(1211,1667725200,2),(1211,1678615200,1),(1211,1699174800,2),(1211,1710064800,1),(1211,1730624400,2),(1211,1741514400,1),(1211,1762074000,2),(1211,1772964000,1),(1211,1793523600,2),(1211,1805018400,1),(1211,1825578000,2),(1211,1836468000,1),(1211,1857027600,2),(1211,1867917600,1),(1211,1888477200,2),(1211,1899367200,1),(1211,1919926800,2),(1211,1930816800,1),(1211,1951376400,2),(1211,1962871200,1),(1211,1983430800,2),(1211,1994320800,1),(1211,2014880400,2),(1211,2025770400,1),(1211,2046330000,2),(1211,2057220000,1),(1211,2077779600,2),(1211,2088669600,1),(1211,2109229200,2),(1211,2120119200,1),(1211,2140678800,2),(1212,-2147483648,1),(1212,-1861879032,2),(1215,-2147483648,1),(1215,-1688265017,3),(1215,-1656819079,2),(1215,-1641353479,3),(1215,-1627965079,4),(1215,-1618716679,2),(1215,-1596429079,4),(1215,-1593820800,5),(1215,-1589860800,6),(1215,-1542427200,7),(1215,-1539493200,8),(1215,-1525323600,7),(1215,-1522728000,6),(1215,-1491188400,9),(1215,-1247536800,6),(1215,354920400,7),(1215,370728000,6),(1215,386456400,7),(1215,402264000,6),(1215,417992400,7),(1215,433800000,6),(1215,449614800,7),(1215,465346800,10),(1215,481071600,11),(1215,496796400,10),(1215,512521200,11),(1215,528246000,10),(1215,543970800,11),(1215,559695600,10),(1215,575420400,11),(1215,591145200,10),(1215,606870000,11),(1215,622594800,10),(1215,638319600,11),(1215,654649200,10),(1215,670374000,12),(1215,686102400,13),(1215,695779200,10),(1215,701823600,11),(1215,717548400,10),(1215,733273200,11),(1215,748998000,10),(1215,764722800,11),(1215,780447600,10),(1215,796172400,11),(1215,811897200,10),(1215,828226800,11),(1215,846370800,10),(1215,859676400,11),(1215,877820400,10),(1215,891126000,11),(1215,909270000,10),(1215,922575600,11),(1215,941324400,10),(1215,954025200,11),(1215,972774000,10),(1215,985474800,11),(1215,1004223600,10),(1215,1017529200,11),(1215,1035673200,10),(1215,1048978800,11),(1215,1067122800,10),(1215,1080428400,11),(1215,1099177200,10),(1215,1111878000,11),(1215,1130626800,10),(1215,1143327600,11),(1215,1162076400,10),(1215,1174777200,11),(1215,1193526000,10),(1215,1206831600,11),(1215,1224975600,10),(1215,1238281200,11),(1215,1256425200,10),(1215,1269730800,11),(1215,1288479600,10),(1215,1301180400,14),(1215,1414274400,10),(1216,228877200,0),(1216,243997200,1),(1216,260326800,0),(1216,276051600,1),(1216,291776400,0),(1216,307501200,1),(1216,323830800,0),(1216,338950800,1),(1216,354675600,0),(1216,370400400,1),(1216,386125200,0),(1216,401850000,1),(1216,417574800,0),(1216,433299600,1),(1216,449024400,0),(1216,465354000,1),(1216,481078800,0),(1216,496803600,1),(1216,512528400,0),(1216,528253200,1),(1216,543978000,0),(1216,559702800,1),(1216,575427600,0),(1216,591152400,1),(1216,606877200,0),(1216,622602000,1),(1216,638326800,0),(1216,654656400,1),(1216,670381200,0),(1216,686106000,1),(1216,701830800,0),(1216,717555600,1),(1216,733280400,0),(1216,749005200,1),(1216,764730000,0),(1216,780454800,1),(1216,796179600,0),(1216,811904400,1),(1216,828234000,0),(1216,846378000,1),(1216,859683600,0),(1216,877827600,1),(1216,891133200,0),(1216,909277200,1),(1216,922582800,0),(1216,941331600,1),(1216,954032400,0),(1216,972781200,1),(1216,985482000,0),(1216,1004230800,1),(1216,1017536400,0),(1216,1035680400,1),(1216,1048986000,0),(1216,1067130000,1),(1216,1080435600,0),(1216,1099184400,1),(1216,1111885200,0),(1216,1130634000,1),(1216,1143334800,0),(1216,1162083600,1),(1216,1174784400,0),(1216,1193533200,1),(1216,1206838800,0),(1216,1224982800,1),(1216,1238288400,0),(1216,1256432400,1),(1216,1269738000,0),(1216,1288486800,1),(1216,1301187600,0),(1216,1319936400,1),(1216,1332637200,0),(1216,1351386000,1),(1216,1364691600,0),(1216,1382835600,1),(1216,1396141200,0),(1216,1414285200,1),(1216,1427590800,0),(1216,1445734800,1),(1216,1459040400,0),(1216,1477789200,1),(1216,1490490000,0),(1216,1509238800,1),(1216,1521939600,0),(1216,1540688400,1),(1216,1553994000,0),(1216,1572138000,1),(1216,1585443600,0),(1216,1603587600,1),(1216,1616893200,0),(1216,1635642000,1),(1216,1648342800,0),(1216,1667091600,1),(1216,1679792400,0),(1216,1698541200,1),(1216,1711846800,0),(1216,1729990800,1),(1216,1743296400,0),(1216,1761440400,1),(1216,1774746000,0),(1216,1792890000,1),(1216,1806195600,0),(1216,1824944400,1),(1216,1837645200,0),(1216,1856394000,1),(1216,1869094800,0),(1216,1887843600,1),(1216,1901149200,0),(1216,1919293200,1),(1216,1932598800,0),(1216,1950742800,1),(1216,1964048400,0),(1216,1982797200,1),(1216,1995498000,0),(1216,2014246800,1),(1216,2026947600,0),(1216,2045696400,1),(1216,2058397200,0),(1216,2077146000,1),(1216,2090451600,0),(1216,2108595600,1),(1216,2121901200,0),(1216,2140045200,1),(1218,-2147483648,2),(1218,-1633280400,1),(1218,-1615140000,2),(1218,-1601830800,1),(1218,-1583690400,2),(1218,-1570381200,1),(1218,-1551636000,2),(1218,-1536512400,1),(1218,-1523210400,2),(1218,-1504458000,1),(1218,-1491760800,2),(1218,-1473008400,1),(1218,-1459706400,2),(1218,-1441558800,1),(1218,-1428256800,2),(1218,-1410109200,1),(1218,-1396807200,2),(1218,-1378659600,1),(1218,-1365357600,2),(1218,-1347210000,1),(1218,-1333908000,2),(1218,-1315155600,1),(1218,-1301853600,2),(1218,-1283706000,1),(1218,-1270404000,2),(1218,-1252256400,1),(1218,-1238954400,2),(1218,-1220806800,1),(1218,-1207504800,2),(1218,-1189357200,1),(1218,-1176055200,2),(1218,-1157302800,1),(1218,-1144605600,2),(1218,-1125853200,1),(1218,-1112551200,2),(1218,-1094403600,1),(1218,-1081101600,2),(1218,-1062954000,1),(1218,-1049652000,2),(1218,-1031504400,1),(1218,-1018202400,2),(1218,-1000054800,1),(1218,-986752800,2),(1218,-968000400,1),(1218,-955303200,2),(1218,-936550800,1),(1218,-923248800,2),(1218,-905101200,1),(1218,-891799200,2),(1218,-880218000,3),(1218,-769395600,4),(1218,-765396000,2),(1218,-747248400,1),(1218,-733946400,2),(1218,-715798800,1),(1218,-702496800,2),(1218,-684349200,1),(1218,-671047200,2),(1218,-652899600,1),(1218,-639597600,2),(1218,-620845200,1),(1218,-608148000,2),(1218,-589395600,1),(1218,-576093600,2),(1218,-557946000,1),(1218,-544644000,2),(1218,-526496400,1),(1218,-513194400,2),(1218,-495046800,1),(1218,-481744800,2),(1218,-463597200,1),(1218,-447271200,2),(1218,-431542800,1),(1218,-415821600,2),(1218,-400093200,1),(1218,-384372000,2),(1218,-368643600,1),(1218,-352922400,2),(1218,-337194000,1),(1218,-321472800,2),(1218,-305744400,1),(1218,-289418400,2),(1218,-273690000,1),(1218,-257968800,2),(1218,-242240400,1),(1218,-226519200,2),(1218,-210790800,1),(1218,-195069600,2),(1218,-179341200,1),(1218,-163620000,2),(1218,-147891600,1),(1218,-131565600,2),(1218,-116442000,1),(1218,-100116000,2),(1218,-84387600,1),(1218,-68666400,2),(1218,-52938000,1),(1218,-37216800,2),(1218,-21488400,1),(1218,-5767200,2),(1218,9961200,1),(1218,25682400,2),(1218,41410800,1),(1218,57736800,2),(1218,73465200,1),(1218,89186400,2),(1218,104914800,1),(1218,120636000,2),(1218,126687600,1),(1218,152085600,2),(1218,162370800,1),(1218,183535200,2),(1218,199263600,1),(1218,215589600,2),(1218,230713200,1),(1218,247039200,2),(1218,262767600,1),(1218,278488800,2),(1218,294217200,1),(1218,309938400,2),(1218,325666800,1),(1218,341388000,2),(1218,357116400,1),(1218,372837600,2),(1218,388566000,1),(1218,404892000,2),(1218,420015600,1),(1218,436341600,2),(1218,452070000,1),(1218,467791200,2),(1218,483519600,1),(1218,499240800,2),(1218,514969200,1),(1218,530690400,2),(1218,544604400,1),(1218,562140000,2),(1218,576054000,1),(1218,594194400,2),(1218,607503600,1),(1218,625644000,2),(1218,638953200,1),(1218,657093600,2),(1218,671007600,1),(1218,688543200,2),(1218,702457200,1),(1218,719992800,2),(1218,733906800,1),(1218,752047200,2),(1218,765356400,1),(1218,783496800,2),(1218,796806000,1),(1218,814946400,2),(1218,828860400,1),(1218,846396000,2),(1218,860310000,1),(1218,877845600,2),(1218,891759600,1),(1218,909295200,2),(1218,923209200,1),(1218,941349600,2),(1218,954658800,1),(1218,972799200,2),(1218,986108400,1),(1218,1004248800,2),(1218,1018162800,1),(1218,1035698400,2),(1218,1049612400,1),(1218,1067148000,2),(1218,1081062000,1),(1218,1099202400,2),(1218,1112511600,1),(1218,1130652000,2),(1218,1143961200,1),(1218,1162101600,2),(1218,1173596400,1),(1218,1194156000,2),(1218,1205046000,1),(1218,1225605600,2),(1218,1236495600,1),(1218,1257055200,2),(1218,1268550000,1),(1218,1289109600,2),(1218,1299999600,1),(1218,1320559200,2),(1218,1331449200,1),(1218,1352008800,2),(1218,1362898800,1),(1218,1383458400,2),(1218,1394348400,1),(1218,1414908000,2),(1218,1425798000,1),(1218,1446357600,2),(1218,1457852400,1),(1218,1478412000,2),(1218,1489302000,1),(1218,1509861600,2),(1218,1520751600,1),(1218,1541311200,2),(1218,1552201200,1),(1218,1572760800,2),(1218,1583650800,1),(1218,1604210400,2),(1218,1615705200,1),(1218,1636264800,2),(1218,1647154800,1),(1218,1667714400,2),(1218,1678604400,1),(1218,1699164000,2),(1218,1710054000,1),(1218,1730613600,2),(1218,1741503600,1),(1218,1762063200,2),(1218,1772953200,1),(1218,1793512800,2),(1218,1805007600,1),(1218,1825567200,2),(1218,1836457200,1),(1218,1857016800,2),(1218,1867906800,1),(1218,1888466400,2),(1218,1899356400,1),(1218,1919916000,2),(1218,1930806000,1),(1218,1951365600,2),(1218,1962860400,1),(1218,1983420000,2),(1218,1994310000,1),(1218,2014869600,2),(1218,2025759600,1),(1218,2046319200,2),(1218,2057209200,1),(1218,2077768800,2),(1218,2088658800,1),(1218,2109218400,2),(1218,2120108400,1),(1218,2140668000,2),(1219,-2147483648,0),(1219,-1830383032,1),(1220,-2147483648,0),(1220,-1709337548,2),(1220,-1581206400,1),(1220,-1577917200,2),(1220,-1556834400,1),(1220,-1546294800,2),(1220,-1525298400,1),(1220,-1514758800,2),(1220,-1493762400,1),(1220,-1483222800,2),(1220,-1462226400,1),(1220,-1451686800,2),(1220,-1430604000,1),(1220,-1420064400,2),(1220,-1399068000,1),(1220,-1388528400,2),(1220,-1367532000,1),(1220,-1356992400,2),(1220,-1335996000,1),(1220,-1325456400,2),(1220,-1304373600,1),(1220,-1293834000,2),(1220,-1272837600,1),(1220,-1262298000,2),(1220,-1241301600,1),(1220,-1230762000,2),(1220,-1209765600,1),(1220,-1199226000,2),(1220,-1178143200,1),(1220,-1167603600,2),(1220,-1146607200,1),(1220,-1136067600,2),(1220,-1115071200,1),(1220,-1104531600,2),(1220,-1083535200,1),(1220,-1072995600,2),(1220,-1051912800,1),(1220,-1041373200,2),(1220,-1020376800,1),(1220,-1009837200,2),(1220,-988840800,1),(1220,-978301200,2),(1220,-957304800,1),(1220,-946765200,2),(1220,-936309600,1),(1220,-915142800,2),(1220,-904773600,1),(1220,-883606800,2),(1220,-880329600,3),(1220,-756952200,2),(1220,-610149600,4),(1220,-599610600,2),(1220,-578613600,4),(1220,-568074600,2),(1220,-546991200,4),(1220,-536452200,2),(1220,-515455200,4),(1220,-504916200,2),(1220,-483919200,4),(1220,-473380200,2),(1220,-452383200,4),(1220,-441844200,2),(1221,-2147483648,0),(1221,-1946168836,1),(1221,-1309746600,2),(1221,-1261969200,1),(1221,-1041388200,3),(1221,-865305900,2),(1222,-2147483648,1),(1222,-1855958961,4),(1222,-1689814800,2),(1222,-1680397200,3),(1222,-1665363600,2),(1222,-1648342800,3),(1222,-1635123600,2),(1222,-1616893200,3),(1222,-1604278800,2),(1222,-1585443600,3),(1222,-1574038800,2),(1222,-1552266000,3),(1222,-1539997200,2),(1222,-1531443600,3),(1222,-956365200,2),(1222,-950486400,4),(1222,-942012000,6),(1222,-812502000,5),(1222,-796262400,6),(1222,-781052400,5),(1222,-766630800,6),(1222,-733280400,4),(1222,-439430400,6),(1222,-212029200,4),(1222,41468400,2),(1222,54774000,3),(1222,231724806,7),(1222,246236406,6),(1222,259545607,5),(1222,275274007,6),(1222,309740408,4),(1222,325468809,7),(1222,341802009,4),(1222,357523209,6),(1223,-2147483648,0),(1223,-1946168836,1),(1223,-1309746600,2),(1223,-1261969200,1),(1223,-1041388200,3),(1223,-865305900,2),(1224,-2147483648,0),(1224,-1946168836,1),(1224,-1309746600,2),(1224,-1261969200,1),(1224,-1041388200,3),(1224,-865305900,2),(1225,-2147483648,0),(1225,-1830383032,1),(1226,-2147483648,0),(1226,-2035584815,1),(1226,-1940889600,0),(1226,-1767226415,2),(1226,-1588465800,3),(1227,-2147483648,0),(1227,-1830383032,1),(1228,-2147483648,0),(1228,-1830380400,1),(1228,157770004,2),(1229,-2147483648,0),(1229,-2109291020,1),(1230,-2147483648,0),(1230,-2035584815,1),(1230,-1940889600,0),(1230,-1767226415,2),(1230,-1588465800,3),(1231,-2147483648,0),(1231,-2109291020,1),(1232,-2147483648,2),(1232,-929844000,1),(1232,-923108400,2),(1232,-906170400,1),(1232,-892868400,2),(1232,-875844000,1),(1232,-857790000,2),(1232,-844308000,1),(1232,-825822000,2),(1232,-812685600,1),(1232,-794199600,2),(1232,-779853600,1),(1232,-762663600,2),(1232,-399088800,1),(1232,-386650800,2),(1232,-368330400,1),(1232,-355114800,2),(1232,-336790800,1),(1232,-323654400,2),(1232,-305168400,1),(1232,-292032000,2),(1232,-273632400,1),(1232,-260496000,2),(1232,-242096400,1),(1232,-228960000,2),(1232,-210560400,1),(1232,-197424000,2),(1232,-178938000,1),(1232,-165801600,2),(1232,-147402000,1),(1232,-134265600,2),(1232,-115866000,1),(1232,-102643200,2),(1232,-84330000,1),(1232,-71107200,2),(1232,-52707600,1),(1232,-39484800,2),(1232,-21171600,1),(1232,-7948800,2),(1232,10364400,1),(1232,23587200,2),(1232,41900400,1),(1232,55123200,2),(1232,73522800,1),(1232,86745601,2),(1232,105058802,1),(1232,118281602,2),(1232,136594803,1),(1232,149817603,2),(1232,168130804,1),(1232,181353604,2),(1232,199753205,1),(1232,212976005,2),(1232,231289206,1),(1232,244512006,2),(1232,262825207,1),(1232,276048007,2),(1232,294361208,1),(1232,307584008,2),(1232,325983609,1),(1232,339206409,2),(1232,357519609,1),(1232,370742410,2),(1232,396399611,1),(1232,402278411,2),(1232,426812412,1),(1232,433814412,2),(1232,452214012,1),(1232,465436812,2),(1232,483750012,1),(1232,496972813,2),(1232,515286013,1),(1232,528508813,2),(1232,546822013,1),(1232,560044813,2),(1232,578444414,1),(1232,591667214,2),(1232,610412414,1),(1232,623203214,2),(1232,641516415,1),(1232,654739215,2),(1232,673052416,1),(1232,686275216,2),(1232,704674816,1),(1232,717897617,2),(1232,736210817,1),(1232,749433618,2),(1232,767746818,1),(1232,780969619,2),(1232,799020019,3),(1232,812322019,2),(1232,830469620,3),(1232,843771620,2),(1232,861919220,3),(1232,875221221,2),(1232,893368821,3),(1232,906670821,2),(1232,925423222,3),(1232,938725222,2),(1232,956872822,3),(1232,970174822,2),(1232,988322422,3),(1232,1001624422,2),(1232,1019772022,3),(1232,1033074022,2),(1232,1051221622,3),(1232,1064523622,2),(1232,1083276022,3),(1232,1096578022,2),(1232,1114725622,3),(1232,1128027622,2),(1232,1146175223,3),(1232,1158872423,2),(1232,1177624823,3),(1232,1189112423,2),(1232,1209074423,3),(1232,1219957223,2),(1232,1240524024,3),(1232,1250802024,2),(1232,1272578424,3),(1232,1281474024,2),(1232,1284069624,1),(1232,1285880424,2),(1232,1400191225,1),(1232,1403816425,2),(1232,1406844025,1),(1232,1411678825,2),(1233,-2147483648,0),(1233,-1773012580,2),(1233,-956361600,1),(1233,-950490000,2),(1233,-942019200,1),(1233,-761187600,2),(1233,-617241600,1),(1233,-605149200,2),(1233,-81432000,1),(1233,-71110800,2),(1233,141264003,1),(1233,147222003,2),(1233,199756805,1),(1233,207702005,2),(1233,231292806,1),(1233,244249206,2),(1233,265507207,1),(1233,271033207,2),(1233,448243212,3),(1233,504918013,2),(1233,1212278423,1),(1233,1220223623,2),(1233,1243814424,1),(1233,1250809224,2),(1233,1272758424,1),(1233,1281222024,2),(1233,1301788824,1),(1233,1312066824,2),(1233,1335664824,1),(1233,1342749625,2),(1233,1345428025,1),(1233,1348970425,2),(1233,1367114425,1),(1233,1373162425,2),(1233,1376100025,1),(1233,1382839225,2),(1233,1396144825,1),(1233,1403920825,2),(1233,1406944825,1),(1233,1414288825,2),(1233,1427594425,1),(1233,1434247225,2),(1233,1437271226,1),(1233,1445738426,2),(1233,1459044026,1),(1233,1465092026,2),(1233,1468116026,1),(1233,1477792826,2),(1233,1490493627,1),(1233,1495332027,2),(1233,1498960827,1),(1233,1509242427,2),(1233,1521943227,1),(1233,1526176827,2),(1233,1529200827,1),(1233,1540692027,3),(1233,1557021627,4),(1233,1560045627,3),(1233,1587261627,4),(1233,1590890427,3),(1233,1618106427,4),(1233,1621130427,3),(1233,1648346427,4),(1233,1651975227,3),(1233,1679191227,4),(1233,1682820027,3),(1233,1710036027,4),(1233,1713060027,3),(1233,1740276027,4),(1233,1743904827,3),(1233,1771120827,4),(1233,1774144827,3),(1233,1801965627,4),(1233,1804989627,3),(1233,1832205627,4),(1233,1835834427,3),(1233,1863050427,4),(1233,1866074427,3),(1233,1893290427,4),(1233,1896919227,3),(1233,1924135227,4),(1233,1927764027,3),(1233,1954980027,4),(1233,1958004027,3),(1233,1985220027,4),(1233,1988848827,3),(1233,2016064827,4),(1233,2019088827,3),(1233,2046304827,4),(1233,2049933627,3),(1233,2077149627,4),(1233,2080778427,3),(1233,2107994427,4),(1233,2111018427,3),(1233,2138234427,4),(1233,2141863227,3),(1234,-2147483648,1),(1234,-1630112400,2),(1234,-1616810400,1),(1234,-1442451600,2),(1234,-1427673600,3),(1234,-1379293200,2),(1234,-1364774400,3),(1234,-1348448400,2),(1234,-1333324800,3),(1234,-1316390400,2),(1234,-1301270400,3),(1234,-1293840000,1),(1234,-81432000,2),(1234,-71110800,1),(1234,141264003,2),(1234,147222003,1),(1234,199756805,2),(1234,207702005,1),(1234,231292806,2),(1234,244249206,1),(1234,265507207,2),(1234,271033207,1),(1234,448243212,4),(1234,512528413,5),(1234,528253213,6),(1234,543978013,5),(1234,559702813,6),(1234,575427614,5),(1234,591152414,6),(1234,606877214,5),(1234,622602014,6),(1234,638326815,5),(1234,654656415,6),(1234,670381216,5),(1234,686106016,6),(1234,701830816,5),(1234,717555617,6),(1234,733280417,5),(1234,749005218,6),(1234,764730018,5),(1234,780454819,6),(1234,796179619,5),(1234,811904419,6),(1234,828234020,5),(1234,846378020,6),(1234,859683620,5),(1234,877827621,6),(1234,891133221,5),(1234,909277221,6),(1234,922582822,5),(1234,941331622,6),(1234,954032422,5),(1234,972781222,6),(1234,985482022,5),(1234,1004230822,6),(1234,1017536422,5),(1234,1035680422,6),(1234,1048986022,5),(1234,1067130022,6),(1234,1080435622,5),(1234,1099184422,6),(1234,1111885222,5),(1234,1130634022,6),(1234,1143334823,5),(1234,1162083623,6),(1234,1174784423,5),(1234,1193533223,6),(1234,1206838823,5),(1234,1224982823,6),(1234,1238288424,5),(1234,1256432424,6),(1234,1269738024,5),(1234,1288486824,6),(1234,1301187624,5),(1234,1319936424,6),(1234,1332637224,5),(1234,1351386025,6),(1234,1364691625,5),(1234,1382835625,6),(1234,1396141225,5),(1234,1414285225,6),(1234,1427590825,5),(1234,1445734826,6),(1234,1459040426,5),(1234,1477789226,6),(1234,1490490027,5),(1234,1509238827,6),(1234,1521939627,5),(1234,1540688427,6),(1234,1553994027,5),(1234,1572138027,6),(1234,1585443627,5),(1234,1603587627,6),(1234,1616893227,5),(1234,1635642027,6),(1234,1648342827,5),(1234,1667091627,6),(1234,1679792427,5),(1234,1698541227,6),(1234,1711846827,5),(1234,1729990827,6),(1234,1743296427,5),(1234,1761440427,6),(1234,1774746027,5),(1234,1792890027,6),(1234,1806195627,5),(1234,1824944427,6),(1234,1837645227,5),(1234,1856394027,6),(1234,1869094827,5),(1234,1887843627,6),(1234,1901149227,5),(1234,1919293227,6),(1234,1932598827,5),(1234,1950742827,6),(1234,1964048427,5),(1234,1982797227,6),(1234,1995498027,5),(1234,2014246827,6),(1234,2026947627,5),(1234,2045696427,6),(1234,2058397227,5),(1234,2077146027,6),(1234,2090451627,5),(1234,2108595627,6),(1234,2121901227,5),(1234,2140045227,6),(1235,-2147483648,0),(1235,-1830383032,1),(1236,-2147483648,0),(1236,-1830383032,1),(1237,-2147483648,0),(1237,-1946168836,1),(1237,-1309746600,2),(1237,-1261969200,1),(1237,-1041388200,3),(1237,-865305900,2),(1238,-2147483648,0),(1238,-1946168836,1),(1238,-1309746600,2),(1238,-1261969200,1),(1238,-1041388200,3),(1238,-865305900,2),(1239,-2147483648,0),(1239,-2035584815,1),(1239,-1940889600,0),(1239,-1767226415,2),(1239,-1588465800,3),(1240,-2147483648,0),(1240,-1136070432,1),(1240,198291605,3),(1240,199756805,2),(1240,207702005,3),(1240,231292806,2),(1240,244249206,3),(1240,265507207,2),(1240,271033207,3),(1240,1212278423,2),(1240,1220223623,3),(1240,1243814424,2),(1240,1250809224,3),(1240,1272758424,2),(1240,1281222024,3),(1240,1301788824,2),(1240,1312066824,3),(1240,1335664824,2),(1240,1342749625,3),(1240,1345428025,2),(1240,1348970425,3),(1240,1367114425,2),(1240,1373162425,3),(1240,1376100025,2),(1240,1382839225,3),(1240,1396144825,2),(1240,1403920825,3),(1240,1406944825,2),(1240,1414288825,3),(1240,1427594425,2),(1240,1434247225,3),(1240,1437271226,2),(1240,1445738426,3),(1240,1459044026,2),(1240,1465092026,3),(1240,1468116026,2),(1240,1477792826,3),(1240,1490493627,2),(1240,1495332027,3),(1240,1498960827,2),(1240,1509242427,3),(1240,1521943227,2),(1240,1526176827,3),(1240,1529200827,2),(1240,1540692027,5),(1240,1557021627,4),(1240,1560045627,5),(1240,1587261627,4),(1240,1590890427,5),(1240,1618106427,4),(1240,1621130427,5),(1240,1648346427,4),(1240,1651975227,5),(1240,1679191227,4),(1240,1682820027,5),(1240,1710036027,4),(1240,1713060027,5),(1240,1740276027,4),(1240,1743904827,5),(1240,1771120827,4),(1240,1774144827,5),(1240,1801965627,4),(1240,1804989627,5),(1240,1832205627,4),(1240,1835834427,5),(1240,1863050427,4),(1240,1866074427,5),(1240,1893290427,4),(1240,1896919227,5),(1240,1924135227,4),(1240,1927764027,5),(1240,1954980027,4),(1240,1958004027,5),(1240,1985220027,4),(1240,1988848827,5),(1240,2016064827,4),(1240,2019088827,5),(1240,2046304827,4),(1240,2049933627,5),(1240,2077149627,4),(1240,2080778427,5),(1240,2107994427,4),(1240,2111018427,5),(1240,2138234427,4),(1240,2141863227,5),(1241,-2147483648,0),(1241,-1830383032,1),(1242,-2147483648,0),(1242,-2109291020,1),(1243,-2147483648,0),(1243,-2109291020,1),(1244,-2147483648,1),(1244,-2109288600,3),(1244,-860976000,2),(1244,-845254800,3),(1244,-829526400,2),(1244,-813805200,3),(1245,-2147483648,0),(1245,-1230775588,2),(1245,10360800,1),(1245,24786000,2),(1245,41810400,1),(1245,56322000,2),(1245,73432800,1),(1245,87944401,2),(1245,104882402,1),(1245,119480402,2),(1245,136332003,1),(1245,151016403,2),(1245,167781604,1),(1245,182552404,2),(1245,199231205,1),(1245,214174805,2),(1245,230680806,1),(1245,245710806,2),(1245,262735207,1),(1245,277246807,2),(1245,294184808,1),(1245,308782808,2),(1245,325634409,1),(1245,340405209,2),(1245,357084009,1),(1245,371941210,2),(1245,388533610,1),(1245,403477211,2),(1245,419983211,1),(1245,435013212,2),(1245,452037612,1),(1245,466635612,2),(1245,483487212,1),(1245,498171613,2),(1245,947930422,3),(1245,1612126827,2),(1246,-2147483648,0),(1246,-1946168836,1),(1246,-1309746600,2),(1246,-1261969200,1),(1246,-1041388200,3),(1246,-865305900,2),(1247,-2147483648,0),(1247,-1230775808,2),(1247,10360800,1),(1247,24786000,2),(1247,41810400,1),(1247,56322000,2),(1247,73432800,1),(1247,87944401,2),(1247,104882402,1),(1247,119480402,2),(1247,136332003,1),(1247,151016403,2),(1247,167781604,1),(1247,182552404,2),(1247,199231205,1),(1247,214174805,2),(1247,230680806,1),(1247,245710806,2),(1247,262735207,1),(1247,277246807,2),(1247,294184808,1),(1247,308782808,2),(1247,325634409,1),(1247,340405209,2),(1247,357084009,1),(1247,371941210,2),(1247,388533610,1),(1247,403477211,2),(1247,419983211,1),(1247,435013212,2),(1247,452037612,1),(1247,466635612,2),(1247,483487212,1),(1247,498171613,2),(1247,947930422,3),(1247,1509483627,2),(1248,-2147483648,0),(1248,-2109291020,1),(1249,-2147483648,0),(1249,-2035584815,1),(1249,-1940889600,0),(1249,-1767226415,2),(1249,-1588465800,3),(1250,-2147483648,0),(1250,-2035584815,1),(1250,-1940889600,0),(1250,-1767226415,2),(1250,-1588465800,3),(1251,-2147483648,0),(1251,-2035584815,1),(1251,-1940889600,0),(1251,-1767226415,2),(1251,-1588465800,3),(1252,-2147483648,0),(1252,-1830383032,1),(1253,-2147483648,0),(1253,-2035584815,1),(1253,-1940889600,0),(1253,-1767226415,2),(1253,-1588465800,3),(1254,-2147483648,0),(1254,-2109291020,1),(1255,-2147483648,0),(1255,-2109291020,1),(1256,-2147483648,0),(1256,-2035584815,1),(1256,-1940889600,0),(1256,-1767226415,2),(1256,-1588465800,3),(1257,-2147483648,0),(1257,-2109291020,1),(1258,-2147483648,1),(1258,-2109288600,3),(1258,-860976000,2),(1258,-845254800,3),(1258,-829526400,2),(1258,-813805200,3),(1259,-2147483648,1),(1259,-2109288600,3),(1259,-860976000,2),(1259,-845254800,3),(1259,-829526400,2),(1259,-813805200,3),(1260,-2147483648,0),(1260,-1946168836,1),(1260,-1309746600,2),(1260,-1261969200,1),(1260,-1041388200,3),(1260,-865305900,2),(1261,-2147483648,1),(1261,-1604359012,2),(1261,63593070,3),(1262,-2147483648,0),(1262,-1946168836,1),(1262,-1309746600,2),(1262,-1261969200,1),(1262,-1041388200,3),(1262,-865305900,2),(1263,-2147483648,0),(1263,-1830387612,1),(1263,308703608,2),(1263,321314409,1),(1264,-2147483648,0),(1264,-2035584815,1),(1264,-1940889600,0),(1264,-1767226415,2),(1264,-1588465800,3),(1265,-2147483648,0),(1265,-1830383032,1),(1266,-2147483648,0),(1266,-1830383032,1),(1267,-2147483648,0),(1267,-2035584815,1),(1267,-1940889600,0),(1267,-1767226415,2),(1267,-1588465800,3),(1268,-2147483648,1),(1268,-1830384000,2),(1268,1514768427,3),(1268,1546304427,4),(1269,-2147483648,0),(1269,-1830383032,1),(1270,-2147483648,0),(1270,-1577926364,2),(1270,-574902000,1),(1270,-568087200,2),(1270,-512175600,1),(1270,-504928800,2),(1270,-449888400,1),(1270,-441856800,2),(1270,-347158800,3),(1270,378684010,2),(1270,386463610,1),(1270,402271211,2),(1270,417999611,1),(1270,433807212,2),(1270,449622012,1),(1270,465429612,2),(1270,481590012,1),(1270,496965613,2),(1270,512953213,1),(1270,528674413,2),(1270,544230013,1),(1270,560037613,2),(1270,575852414,1),(1270,591660014,2),(1270,607388414,1),(1270,623196014,2),(1270,641775615,3),(1270,844034420,2),(1270,860108420,1),(1270,875916021,3),(1270,1352505625,2),(1270,1364515225,1),(1270,1382659225,3),(1271,-2147483648,1),(1271,-1855958961,4),(1271,-969242400,2),(1271,-950493600,3),(1271,-941940000,2),(1271,-891136800,4),(1271,-877827600,5),(1271,-857257200,4),(1271,-844556400,5),(1271,-842918400,4),(1271,-842223600,5),(1271,-828230400,4),(1271,-812502000,5),(1271,-796269600,4),(1271,-781052400,5),(1271,-766634400,4),(1271,231202806,2),(1271,243903606,3),(1271,262825207,2),(1271,276044407,3),(1271,581122814,2),(1271,591145214,3),(1271,606870014,2),(1271,622594814,3),(1271,641516415,2),(1271,654649215,3),(1271,1114902022,2),(1271,1128038422,3),(1271,1143334823,2),(1271,1162083623,3),(1271,1174784423,2),(1271,1193533223,3),(1271,1206838823,2),(1271,1224982823,3),(1272,-2147483648,1),(1272,-2109288600,2),(1272,-860976000,3),(1272,-845254800,2),(1272,637970415,5),(1272,764200818,4),(1272,778640419,5),(1272,796780819,4),(1272,810090019,5),(1272,828835220,4),(1272,841539620,5),(1272,860284820,4),(1272,873594021,5),(1272,891734421,4),(1272,905043621,5),(1272,923184022,4),(1272,936493222,5),(1272,954633622,4),(1272,967942822,5),(1272,986083222,4),(1272,999392422,5),(1272,1018137622,4),(1272,1030842022,5),(1272,1049587222,4),(1272,1062896422,5),(1272,1081036822,4),(1272,1094346022,5),(1272,1112486422,4),(1272,1125795622,5),(1272,1143936023,4),(1272,1157245223,5),(1272,1175385623,4),(1272,1188694823,5),(1272,1207440023,4),(1272,1220749223,5),(1272,1238889624,4),(1272,1252198824,5),(1272,1270339224,4),(1272,1283648424,5),(1272,1301788824,4),(1272,1315098024,5),(1272,1333238424,4),(1272,1346547625,5),(1272,1365292825,4),(1272,1377997225,5),(1272,1396742425,4),(1272,1410051625,5),(1272,1428192025,4),(1272,1441501226,5),(1272,1459641626,4),(1272,1472950826,5),(1272,1491091227,4),(1272,1504400427,5),(1273,-2147483648,1),(1273,-880196400,2),(1273,-769395600,3),(1273,-765374400,1),(1273,-86878800,4),(1273,-21466800,5),(1273,-5745600,4),(1273,9982800,5),(1273,25704000,4),(1273,41432400,5),(1273,57758400,4),(1273,73486800,5),(1273,89208001,4),(1273,104936402,5),(1273,120657602,4),(1273,126709203,5),(1273,152107203,4),(1273,162392404,5),(1273,183556804,4),(1273,199285205,5),(1273,215611205,4),(1273,230734806,5),(1273,247060806,4),(1273,262789207,5),(1273,278510407,4),(1273,294238808,5),(1273,309960008,4),(1273,325688409,5),(1273,341409609,4),(1273,357138009,5),(1273,372859210,4),(1273,388587610,5),(1273,404913611,4),(1273,420037211,5),(1273,436363212,6),(1273,439034412,8),(1273,452088012,7),(1273,467809212,8),(1273,483537612,7),(1273,499258813,8),(1273,514987213,7),(1273,530708413,8),(1273,544622413,7),(1273,562158013,8),(1273,576072014,7),(1273,594212414,8),(1273,607521614,7),(1273,625662014,8),(1273,638971215,7),(1273,657111615,8),(1273,671025616,7),(1273,688561216,8),(1273,702475216,7),(1273,720010817,8),(1273,733924817,7),(1273,752065218,8),(1273,765374418,7),(1273,783514819,8),(1273,796824019,7),(1273,814964419,8),(1273,828878420,7),(1273,846414020,8),(1273,860328020,7),(1273,877863621,8),(1273,891777621,7),(1273,909313221,8),(1273,923227222,7),(1273,941367622,8),(1273,954676822,7),(1273,972817222,8),(1273,986126422,7),(1273,1004266822,8),(1273,1018180822,7),(1273,1035716422,8),(1273,1049630422,7),(1273,1067166022,8),(1273,1081080022,7),(1273,1099220422,8),(1273,1112529622,7),(1273,1130670022,8),(1273,1143979223,7),(1273,1162119623,8),(1273,1173614423,7),(1273,1194174023,8),(1273,1205064023,7),(1273,1225623623,8),(1273,1236513624,7),(1273,1257073224,8),(1273,1268568024,7),(1273,1289127624,8),(1273,1300017624,7),(1273,1320577224,8),(1273,1331467224,7),(1273,1352026825,8),(1273,1362916825,7),(1273,1383476425,8),(1273,1394366425,7),(1273,1414926025,8),(1273,1425816025,7),(1273,1446375626,8),(1273,1457870426,7),(1273,1478430026,8),(1273,1489320027,7),(1273,1509879627,8),(1273,1520769627,7),(1273,1541329227,8),(1273,1552219227,7),(1273,1572778827,8),(1273,1583668827,7),(1273,1604228427,8),(1273,1615723227,7),(1273,1636282827,8),(1273,1647172827,7),(1273,1667732427,8),(1273,1678622427,7),(1273,1699182027,8),(1273,1710072027,7),(1273,1730631627,8),(1273,1741521627,7),(1273,1762081227,8),(1273,1772971227,7),(1273,1793530827,8),(1273,1805025627,7),(1273,1825585227,8),(1273,1836475227,7),(1273,1857034827,8),(1273,1867924827,7),(1273,1888484427,8),(1273,1899374427,7),(1273,1919934027,8),(1273,1930824027,7),(1273,1951383627,8),(1273,1962878427,7),(1273,1983438027,8),(1273,1994328027,7),(1273,2014887627,8),(1273,2025777627,7),(1273,2046337227,8),(1273,2057227227,7),(1273,2077786827,8),(1273,2088676827,7),(1273,2109236427,8),(1273,2120126427,7),(1273,2140686027,8),(1274,-2147483648,1),(1274,-880200000,2),(1274,-769395600,3),(1274,-765378000,1),(1274,-86882400,4),(1274,-21470400,5),(1274,-5749200,4),(1274,9979200,5),(1274,25700400,4),(1274,41428800,5),(1274,57754800,4),(1274,73483200,5),(1274,89204401,4),(1274,104932802,5),(1274,120654002,4),(1274,126705603,5),(1274,152103603,4),(1274,162388804,5),(1274,183553204,4),(1274,199281605,5),(1274,215607605,4),(1274,230731206,5),(1274,247057206,4),(1274,262785607,5),(1274,278506807,4),(1274,294235208,5),(1274,309956408,4),(1274,325684809,5),(1274,341406009,4),(1274,357134409,5),(1274,372855610,4),(1274,388584010,5),(1274,404910011,4),(1274,420033611,5),(1274,436359612,6),(1274,439030812,8),(1274,452084412,7),(1274,467805612,8),(1274,483534012,7),(1274,499255213,8),(1274,514983613,7),(1274,530704813,8),(1274,544618813,7),(1274,562154413,8),(1274,576068414,7),(1274,594208814,8),(1274,607518014,7),(1274,625658414,8),(1274,638967615,7),(1274,657108015,8),(1274,671022016,7),(1274,688557616,8),(1274,702471616,7),(1274,720007217,8),(1274,733921217,7),(1274,752061618,8),(1274,765370818,7),(1274,783511219,8),(1274,796820419,7),(1274,814960819,8),(1274,828874820,7),(1274,846410420,8),(1274,860324420,7),(1274,877860021,8),(1274,891774021,7),(1274,909309621,8),(1274,923223622,7),(1274,941364022,8),(1274,954673222,7),(1274,972813622,8),(1274,986122822,7),(1274,1004263222,8),(1274,1018177222,7),(1274,1035712822,8),(1274,1049626822,7),(1274,1067162422,8),(1274,1081076422,7),(1274,1099216822,8),(1274,1112526022,7),(1274,1130666422,8),(1274,1143975623,7),(1274,1162116023,8),(1274,1173610823,7),(1274,1194170423,8),(1274,1205060423,7),(1274,1225620023,8),(1274,1236510024,7),(1274,1257069624,8),(1274,1268564424,7),(1274,1289124024,8),(1274,1300014024,7),(1274,1320573624,8),(1274,1331463624,7),(1274,1352023225,8),(1274,1362913225,7),(1274,1383472825,8),(1274,1394362825,7),(1274,1414922425,8),(1274,1425812425,7),(1274,1446372026,8),(1274,1457866826,7),(1274,1478426426,8),(1274,1489316427,7),(1274,1509876027,8),(1274,1520766027,7),(1274,1541325627,8),(1274,1552215627,7),(1274,1572775227,8),(1274,1583665227,7),(1274,1604224827,8),(1274,1615719627,7),(1274,1636279227,8),(1274,1647169227,7),(1274,1667728827,8),(1274,1678618827,7),(1274,1699178427,8),(1274,1710068427,7),(1274,1730628027,8),(1274,1741518027,7),(1274,1762077627,8),(1274,1772967627,7),(1274,1793527227,8),(1274,1805022027,7),(1274,1825581627,8),(1274,1836471627,7),(1274,1857031227,8),(1274,1867921227,7),(1274,1888480827,8),(1274,1899370827,7),(1274,1919930427,8),(1274,1930820427,7),(1274,1951380027,8),(1274,1962874827,7),(1274,1983434427,8),(1274,1994324427,7),(1274,2014884027,8),(1274,2025774027,7),(1274,2046333627,8),(1274,2057223627,7),(1274,2077783227,8),(1274,2088673227,7),(1274,2109232827,8),(1274,2120122827,7),(1274,2140682427,8),(1275,-2147483648,0),(1275,-1825098836,1),(1276,-2147483648,0),(1276,-1825098836,1),(1277,-2147483648,0),(1277,-1767214032,2),(1277,-1206957600,1),(1277,-1191362400,2),(1277,-1175374800,1),(1277,-1159826400,2),(1277,-633819600,1),(1277,-622069200,2),(1277,-602283600,1),(1277,-591832800,2),(1277,-570747600,1),(1277,-560210400,2),(1277,-539125200,1),(1277,-531352800,2),(1277,-191365200,1),(1277,-184197600,2),(1277,-155163600,1),(1277,-150069600,2),(1277,-128898000,1),(1277,-121125600,2),(1277,-99954000,1),(1277,-89589600,2),(1277,-68418000,1),(1277,-57967200,2),(1277,499748413,1),(1277,511236013,2),(1277,530593213,1),(1277,540266413,2),(1277,562129213,1),(1277,571197614,2),(1277,592974014,1),(1277,602042414,2),(1277,624423614,1),(1277,634701615,2),(1277,813726019,1),(1277,824004020,2),(1277,844570820,1),(1277,856058420,2),(1277,876106821,1),(1277,888717621,2),(1277,908074821,1),(1277,919562422,2),(1277,938919622,1),(1277,951616822,2),(1277,970974022,1),(1277,982461622,2),(1277,1003028422,1),(1277,1013911222,2),(1277,1036292422,1),(1277,1045360822,2),(1277,1350788425,1),(1277,1361066425,2),(1278,-2147483648,1),(1278,-1567453392,2),(1278,-1233432000,3),(1278,-1222981200,2),(1278,-1205956800,3),(1278,-1194037200,2),(1278,-1172865600,3),(1278,-1162501200,2),(1278,-1141329600,3),(1278,-1130965200,2),(1278,-1109793600,3),(1278,-1099429200,2),(1278,-1078257600,3),(1278,-1067806800,2),(1278,-1046635200,3),(1278,-1036270800,2),(1278,-1015099200,3),(1278,-1004734800,2),(1278,-983563200,3),(1278,-973198800,2),(1278,-952027200,3),(1278,-941576400,2),(1278,-931032000,3),(1278,-900882000,2),(1278,-890337600,3),(1278,-833749200,2),(1278,-827265600,3),(1278,-752274000,2),(1278,-733780800,3),(1278,-197326800,2),(1278,-190843200,3),(1278,-184194000,2),(1278,-164491200,3),(1278,-152658000,2),(1278,-132955200,3),(1278,-121122000,2),(1278,-101419200,3),(1278,-86821200,2),(1278,-71092800,3),(1278,-54766800,2),(1278,-39038400,3),(1278,-23317200,2),(1278,-7588800,5),(1278,128142003,4),(1278,136605603,5),(1278,596948414,4),(1278,605066414,5),(1278,624423614,4),(1278,636516015,5),(1278,656478015,4),(1278,667965616,5),(1278,687927616,4),(1278,699415216,5),(1278,719377217,4),(1278,731469617,5),(1278,938919622,3),(1278,952052422,5),(1278,1198983623,4),(1278,1205632823,5),(1278,1224385223,4),(1278,1237082424,5),(1279,-2147483648,1),(1279,-1567453392,2),(1279,-1233432000,3),(1279,-1222981200,2),(1279,-1205956800,3),(1279,-1194037200,2),(1279,-1172865600,3),(1279,-1162501200,2),(1279,-1141329600,3),(1279,-1130965200,2),(1279,-1109793600,3),(1279,-1099429200,2),(1279,-1078257600,3),(1279,-1067806800,2),(1279,-1046635200,3),(1279,-1036270800,2),(1279,-1015099200,3),(1279,-1004734800,2),(1279,-983563200,3),(1279,-973198800,2),(1279,-952027200,3),(1279,-941576400,2),(1279,-931032000,3),(1279,-900882000,2),(1279,-890337600,3),(1279,-833749200,2),(1279,-827265600,3),(1279,-752274000,2),(1279,-733780800,3),(1279,-197326800,2),(1279,-190843200,3),(1279,-184194000,2),(1279,-164491200,3),(1279,-152658000,2),(1279,-132955200,3),(1279,-121122000,2),(1279,-101419200,3),(1279,-86821200,2),(1279,-71092800,3),(1279,-54766800,2),(1279,-39038400,3),(1279,-23317200,2),(1279,-7588800,5),(1279,128142003,4),(1279,136605603,5),(1279,596948414,4),(1279,605066414,5),(1279,624423614,4),(1279,636516015,5),(1279,656478015,4),(1279,667965616,2),(1279,687931216,4),(1279,699415216,5),(1279,719377217,4),(1279,731469617,5),(1279,938919622,3),(1279,952052422,5),(1279,1086058822,2),(1279,1087704022,5),(1279,1198983623,4),(1279,1205632823,5),(1280,-2147483648,1),(1280,-1567453392,2),(1280,-1233432000,3),(1280,-1222981200,2),(1280,-1205956800,3),(1280,-1194037200,2),(1280,-1172865600,3),(1280,-1162501200,2),(1280,-1141329600,3),(1280,-1130965200,2),(1280,-1109793600,3),(1280,-1099429200,2),(1280,-1078257600,3),(1280,-1067806800,2),(1280,-1046635200,3),(1280,-1036270800,2),(1280,-1015099200,3),(1280,-1004734800,2),(1280,-983563200,3),(1280,-973198800,2),(1280,-952027200,3),(1280,-941576400,2),(1280,-931032000,3),(1280,-900882000,2),(1280,-890337600,3),(1280,-833749200,2),(1280,-827265600,3),(1280,-752274000,2),(1280,-733780800,3),(1280,-197326800,2),(1280,-190843200,3),(1280,-184194000,2),(1280,-164491200,3),(1280,-152658000,2),(1280,-132955200,3),(1280,-121122000,2),(1280,-101419200,3),(1280,-86821200,2),(1280,-71092800,3),(1280,-54766800,2),(1280,-39038400,3),(1280,-23317200,2),(1280,-7588800,5),(1280,128142003,4),(1280,136605603,5),(1280,596948414,4),(1280,605066414,5),(1280,624423614,4),(1280,636516015,5),(1280,656478015,4),(1280,667965616,2),(1280,687931216,4),(1280,699415216,5),(1280,719377217,4),(1280,731469617,5),(1280,938919622,3),(1280,952052422,5),(1280,1086058822,2),(1280,1087704022,5),(1280,1198983623,4),(1280,1205632823,5),(1281,-2147483648,1),(1281,-1567453392,2),(1281,-1233432000,3),(1281,-1222981200,2),(1281,-1205956800,3),(1281,-1194037200,2),(1281,-1172865600,3),(1281,-1162501200,2),(1281,-1141329600,3),(1281,-1130965200,2),(1281,-1109793600,3),(1281,-1099429200,2),(1281,-1078257600,3),(1281,-1067806800,2),(1281,-1046635200,3),(1281,-1036270800,2),(1281,-1015099200,3),(1281,-1004734800,2),(1281,-983563200,3),(1281,-973198800,2),(1281,-952027200,3),(1281,-941576400,2),(1281,-931032000,3),(1281,-900882000,2),(1281,-890337600,3),(1281,-833749200,2),(1281,-827265600,3),(1281,-752274000,2),(1281,-733780800,3),(1281,-197326800,2),(1281,-190843200,3),(1281,-184194000,2),(1281,-164491200,3),(1281,-152658000,2),(1281,-132955200,3),(1281,-121122000,2),(1281,-101419200,3),(1281,-86821200,2),(1281,-71092800,3),(1281,-54766800,2),(1281,-39038400,3),(1281,-23317200,2),(1281,-7588800,5),(1281,128142003,4),(1281,136605603,5),(1281,596948414,4),(1281,605066414,5),(1281,624423614,4),(1281,636516015,5),(1281,656478015,4),(1281,667965616,2),(1281,687931216,4),(1281,699415216,5),(1281,719377217,4),(1281,731469617,5),(1281,938919622,3),(1281,952052422,5),(1281,1198983623,4),(1281,1205632823,5),(1281,1224385223,4),(1281,1237082424,5),(1282,-2147483648,1),(1282,-1567453392,2),(1282,-1233432000,3),(1282,-1222981200,2),(1282,-1205956800,3),(1282,-1194037200,2),(1282,-1172865600,3),(1282,-1162501200,2),(1282,-1141329600,3),(1282,-1130965200,2),(1282,-1109793600,3),(1282,-1099429200,2),(1282,-1078257600,3),(1282,-1067806800,2),(1282,-1046635200,3),(1282,-1036270800,2),(1282,-1015099200,3),(1282,-1004734800,2),(1282,-983563200,3),(1282,-973198800,2),(1282,-952027200,3),(1282,-941576400,2),(1282,-931032000,3),(1282,-900882000,2),(1282,-890337600,3),(1282,-833749200,2),(1282,-827265600,3),(1282,-752274000,2),(1282,-733780800,3),(1282,-197326800,2),(1282,-190843200,3),(1282,-184194000,2),(1282,-164491200,3),(1282,-152658000,2),(1282,-132955200,3),(1282,-121122000,2),(1282,-101419200,3),(1282,-86821200,2),(1282,-71092800,3),(1282,-54766800,2),(1282,-39038400,3),(1282,-23317200,2),(1282,-7588800,5),(1282,128142003,4),(1282,136605603,5),(1282,596948414,4),(1282,605066414,5),(1282,624423614,4),(1282,636516015,2),(1282,657086415,3),(1282,669178816,2),(1282,686721616,4),(1282,699415216,5),(1282,719377217,4),(1282,731469617,5),(1282,938919622,3),(1282,952052422,5),(1282,1198983623,4),(1282,1205632823,5),(1283,-2147483648,1),(1283,-1567453392,2),(1283,-1233432000,3),(1283,-1222981200,2),(1283,-1205956800,3),(1283,-1194037200,2),(1283,-1172865600,3),(1283,-1162501200,2),(1283,-1141329600,3),(1283,-1130965200,2),(1283,-1109793600,3),(1283,-1099429200,2),(1283,-1078257600,3),(1283,-1067806800,2),(1283,-1046635200,3),(1283,-1036270800,2),(1283,-1015099200,3),(1283,-1004734800,2),(1283,-983563200,3),(1283,-973198800,2),(1283,-952027200,3),(1283,-941576400,2),(1283,-931032000,3),(1283,-900882000,2),(1283,-890337600,3),(1283,-833749200,2),(1283,-827265600,3),(1283,-752274000,2),(1283,-733780800,3),(1283,-197326800,2),(1283,-190843200,3),(1283,-184194000,2),(1283,-164491200,3),(1283,-152658000,2),(1283,-132955200,3),(1283,-121122000,2),(1283,-101419200,3),(1283,-86821200,2),(1283,-71092800,3),(1283,-54766800,2),(1283,-39038400,3),(1283,-23317200,2),(1283,-7588800,5),(1283,128142003,4),(1283,136605603,5),(1283,596948414,4),(1283,605066414,5),(1283,624423614,4),(1283,636516015,5),(1283,656478015,4),(1283,667792816,2),(1283,673588816,5),(1283,687927616,4),(1283,699415216,5),(1283,719377217,4),(1283,731469617,5),(1283,938919622,3),(1283,952052422,5),(1283,1086058822,2),(1283,1087704022,5),(1283,1198983623,4),(1283,1205632823,5),(1284,-2147483648,1),(1284,-1567453392,2),(1284,-1233432000,3),(1284,-1222981200,2),(1284,-1205956800,3),(1284,-1194037200,2),(1284,-1172865600,3),(1284,-1162501200,2),(1284,-1141329600,3),(1284,-1130965200,2),(1284,-1109793600,3),(1284,-1099429200,2),(1284,-1078257600,3),(1284,-1067806800,2),(1284,-1046635200,3),(1284,-1036270800,2),(1284,-1015099200,3),(1284,-1004734800,2),(1284,-983563200,3),(1284,-973198800,2),(1284,-952027200,3),(1284,-941576400,2),(1284,-931032000,3),(1284,-900882000,2),(1284,-890337600,3),(1284,-833749200,2),(1284,-827265600,3),(1284,-752274000,2),(1284,-733780800,3),(1284,-197326800,2),(1284,-190843200,3),(1284,-184194000,2),(1284,-164491200,3),(1284,-152658000,2),(1284,-132955200,3),(1284,-121122000,2),(1284,-101419200,3),(1284,-86821200,2),(1284,-71092800,3),(1284,-54766800,2),(1284,-39038400,3),(1284,-23317200,2),(1284,-7588800,5),(1284,128142003,4),(1284,136605603,5),(1284,596948414,4),(1284,605066414,5),(1284,624423614,4),(1284,636516015,2),(1284,655963215,3),(1284,667796416,2),(1284,687499216,3),(1284,699418816,2),(1284,719380817,4),(1284,731469617,5),(1284,938919622,3),(1284,952052422,5),(1284,1085281222,2),(1284,1096171222,5),(1284,1198983623,4),(1284,1205632823,5),(1285,-2147483648,1),(1285,-1567453392,2),(1285,-1233432000,3),(1285,-1222981200,2),(1285,-1205956800,3),(1285,-1194037200,2),(1285,-1172865600,3),(1285,-1162501200,2),(1285,-1141329600,3),(1285,-1130965200,2),(1285,-1109793600,3),(1285,-1099429200,2),(1285,-1078257600,3),(1285,-1067806800,2),(1285,-1046635200,3),(1285,-1036270800,2),(1285,-1015099200,3),(1285,-1004734800,2),(1285,-983563200,3),(1285,-973198800,2),(1285,-952027200,3),(1285,-941576400,2),(1285,-931032000,3),(1285,-900882000,2),(1285,-890337600,3),(1285,-833749200,2),(1285,-827265600,3),(1285,-752274000,2),(1285,-733780800,3),(1285,-197326800,2),(1285,-190843200,3),(1285,-184194000,2),(1285,-164491200,3),(1285,-152658000,2),(1285,-132955200,3),(1285,-121122000,2),(1285,-101419200,3),(1285,-86821200,2),(1285,-71092800,3),(1285,-54766800,2),(1285,-39038400,3),(1285,-23317200,2),(1285,-7588800,5),(1285,128142003,4),(1285,136605603,5),(1285,596948414,4),(1285,605066414,5),(1285,624423614,4),(1285,636516015,5),(1285,656478015,4),(1285,667965616,5),(1285,687927616,4),(1285,699415216,5),(1285,719377217,4),(1285,731469617,5),(1285,938919622,3),(1285,952052422,5),(1285,1086058822,2),(1285,1087704022,5),(1285,1198983623,4),(1285,1205632823,5),(1286,-2147483648,1),(1286,-1567453392,2),(1286,-1233432000,3),(1286,-1222981200,2),(1286,-1205956800,3),(1286,-1194037200,2),(1286,-1172865600,3),(1286,-1162501200,2),(1286,-1141329600,3),(1286,-1130965200,2),(1286,-1109793600,3),(1286,-1099429200,2),(1286,-1078257600,3),(1286,-1067806800,2),(1286,-1046635200,3),(1286,-1036270800,2),(1286,-1015099200,3),(1286,-1004734800,2),(1286,-983563200,3),(1286,-973198800,2),(1286,-952027200,3),(1286,-941576400,2),(1286,-931032000,3),(1286,-900882000,2),(1286,-890337600,3),(1286,-833749200,2),(1286,-827265600,3),(1286,-752274000,2),(1286,-733780800,3),(1286,-197326800,2),(1286,-190843200,3),(1286,-184194000,2),(1286,-164491200,3),(1286,-152658000,2),(1286,-132955200,3),(1286,-121122000,2),(1286,-101419200,3),(1286,-86821200,2),(1286,-71092800,3),(1286,-54766800,2),(1286,-39038400,3),(1286,-23317200,2),(1286,-7588800,5),(1286,128142003,4),(1286,136605603,5),(1286,596948414,4),(1286,605066414,5),(1286,624423614,4),(1286,636516015,5),(1286,656478015,4),(1286,667965616,2),(1286,687931216,4),(1286,699415216,5),(1286,719377217,4),(1286,731469617,5),(1286,938919622,3),(1286,952052422,5),(1286,1198983623,4),(1286,1205632823,5),(1287,-2147483648,1),(1287,-1567453392,2),(1287,-1233432000,3),(1287,-1222981200,2),(1287,-1205956800,3),(1287,-1194037200,2),(1287,-1172865600,3),(1287,-1162501200,2),(1287,-1141329600,3),(1287,-1130965200,2),(1287,-1109793600,3),(1287,-1099429200,2),(1287,-1078257600,3),(1287,-1067806800,2),(1287,-1046635200,3),(1287,-1036270800,2),(1287,-1015099200,3),(1287,-1004734800,2),(1287,-983563200,3),(1287,-973198800,2),(1287,-952027200,3),(1287,-941576400,2),(1287,-931032000,3),(1287,-900882000,2),(1287,-890337600,3),(1287,-833749200,2),(1287,-827265600,3),(1287,-752274000,2),(1287,-733780800,3),(1287,-197326800,2),(1287,-190843200,3),(1287,-184194000,2),(1287,-164491200,3),(1287,-152658000,2),(1287,-132955200,3),(1287,-121122000,2),(1287,-101419200,3),(1287,-86821200,2),(1287,-71092800,3),(1287,-54766800,2),(1287,-39038400,3),(1287,-23317200,2),(1287,-7588800,5),(1287,128142003,4),(1287,136605603,5),(1287,596948414,4),(1287,605066414,5),(1287,624423614,4),(1287,636516015,5),(1287,656478015,4),(1287,667792816,2),(1287,673588816,5),(1287,687927616,4),(1287,699415216,5),(1287,719377217,4),(1287,731469617,5),(1287,938919622,3),(1287,952052422,5),(1287,1085972422,2),(1287,1090728022,5),(1287,1198983623,4),(1287,1205632823,5),(1288,-2147483648,1),(1288,-1567453392,2),(1288,-1233432000,3),(1288,-1222981200,2),(1288,-1205956800,3),(1288,-1194037200,2),(1288,-1172865600,3),(1288,-1162501200,2),(1288,-1141329600,3),(1288,-1130965200,2),(1288,-1109793600,3),(1288,-1099429200,2),(1288,-1078257600,3),(1288,-1067806800,2),(1288,-1046635200,3),(1288,-1036270800,2),(1288,-1015099200,3),(1288,-1004734800,2),(1288,-983563200,3),(1288,-973198800,2),(1288,-952027200,3),(1288,-941576400,2),(1288,-931032000,3),(1288,-900882000,2),(1288,-890337600,3),(1288,-833749200,2),(1288,-827265600,3),(1288,-752274000,2),(1288,-733780800,3),(1288,-197326800,2),(1288,-190843200,3),(1288,-184194000,2),(1288,-164491200,3),(1288,-152658000,2),(1288,-132955200,3),(1288,-121122000,2),(1288,-101419200,3),(1288,-86821200,2),(1288,-71092800,3),(1288,-54766800,2),(1288,-39038400,3),(1288,-23317200,2),(1288,-7588800,5),(1288,128142003,4),(1288,136605603,5),(1288,596948414,4),(1288,605066414,5),(1288,624423614,4),(1288,637380015,2),(1288,655963215,3),(1288,667796416,2),(1288,675748816,5),(1288,938919622,3),(1288,952052422,5),(1288,1085972422,2),(1288,1090728022,5),(1288,1198983623,4),(1288,1200880823,3),(1288,1205031623,2),(1288,1223784023,3),(1288,1236481224,2),(1288,1255233624,5),(1289,-2147483648,1),(1289,-1567453392,2),(1289,-1233432000,3),(1289,-1222981200,2),(1289,-1205956800,3),(1289,-1194037200,2),(1289,-1172865600,3),(1289,-1162501200,2),(1289,-1141329600,3),(1289,-1130965200,2),(1289,-1109793600,3),(1289,-1099429200,2),(1289,-1078257600,3),(1289,-1067806800,2),(1289,-1046635200,3),(1289,-1036270800,2),(1289,-1015099200,3),(1289,-1004734800,2),(1289,-983563200,3),(1289,-973198800,2),(1289,-952027200,3),(1289,-941576400,2),(1289,-931032000,3),(1289,-900882000,2),(1289,-890337600,3),(1289,-833749200,2),(1289,-827265600,3),(1289,-752274000,2),(1289,-733780800,3),(1289,-197326800,2),(1289,-190843200,3),(1289,-184194000,2),(1289,-164491200,3),(1289,-152658000,2),(1289,-132955200,3),(1289,-121122000,2),(1289,-101419200,3),(1289,-86821200,2),(1289,-71092800,3),(1289,-54766800,2),(1289,-39038400,3),(1289,-23317200,2),(1289,-7588800,5),(1289,128142003,4),(1289,136605603,5),(1289,596948414,4),(1289,605066414,5),(1289,624423614,4),(1289,636516015,5),(1289,656478015,4),(1289,667965616,2),(1289,687931216,4),(1289,699415216,5),(1289,719377217,4),(1289,731469617,5),(1289,938919622,3),(1289,952052422,5),(1289,1086058822,2),(1289,1087099222,5),(1289,1198983623,4),(1289,1205632823,5),(1289,1224385223,4),(1289,1237082424,5),(1290,-2147483648,1),(1290,-1567453392,2),(1290,-1233432000,3),(1290,-1222981200,2),(1290,-1205956800,3),(1290,-1194037200,2),(1290,-1172865600,3),(1290,-1162501200,2),(1290,-1141329600,3),(1290,-1130965200,2),(1290,-1109793600,3),(1290,-1099429200,2),(1290,-1078257600,3),(1290,-1067806800,2),(1290,-1046635200,3),(1290,-1036270800,2),(1290,-1015099200,3),(1290,-1004734800,2),(1290,-983563200,3),(1290,-973198800,2),(1290,-952027200,3),(1290,-941576400,2),(1290,-931032000,3),(1290,-900882000,2),(1290,-890337600,3),(1290,-833749200,2),(1290,-827265600,3),(1290,-752274000,2),(1290,-733780800,3),(1290,-197326800,2),(1290,-190843200,3),(1290,-184194000,2),(1290,-164491200,3),(1290,-152658000,2),(1290,-132955200,3),(1290,-121122000,2),(1290,-101419200,3),(1290,-86821200,2),(1290,-71092800,3),(1290,-54766800,2),(1290,-39038400,3),(1290,-23317200,2),(1290,-7588800,5),(1290,128142003,4),(1290,136605603,5),(1290,596948414,4),(1290,605066414,5),(1290,624423614,4),(1290,636516015,5),(1290,656478015,4),(1290,667965616,5),(1290,687927616,4),(1290,699415216,5),(1290,719377217,4),(1290,731469617,5),(1290,938919622,3),(1290,952052422,5),(1290,1085886022,2),(1290,1087704022,5),(1290,1198983623,4),(1290,1205632823,5),(1291,-2147483648,0),(1291,-1826738653,1),(1291,-157750200,2),(1292,-2147483648,1),(1292,-1206389360,2),(1292,86760001,3),(1292,134017203,2),(1292,181368004,4),(1292,194497205,2),(1292,212990405,4),(1292,226033206,2),(1292,244526406,4),(1292,257569207,2),(1292,276062407,4),(1292,291783608,2),(1292,307598408,4),(1292,323406009,2),(1292,339220809,4),(1292,354942009,2),(1292,370756810,4),(1292,386478010,2),(1292,402292811,4),(1292,418014011,2),(1292,433828812,4),(1292,449636412,2),(1292,465451212,4),(1292,481172412,2),(1292,496987213,4),(1292,512708413,2),(1292,528523213,4),(1292,544244413,2),(1292,560059213,4),(1292,575866814,2),(1292,591681614,4),(1292,607402814,2),(1292,625032014,4),(1292,638938815,2),(1292,654753615,4),(1292,670474816,2),(1292,686721616,4),(1292,699418816,2),(1292,718257617,4),(1292,733546817,2),(1292,749448018,4),(1292,762318018,2),(1292,780984019,4),(1292,793767619,2),(1292,812520019,4),(1292,825649220,2),(1292,844574420,4),(1292,856666820,2),(1292,876024021,4),(1292,888721221,2),(1292,907473621,4),(1292,920775622,2),(1292,938923222,4),(1292,952225222,2),(1292,970372822,4),(1292,983674822,2),(1292,1002427222,4),(1292,1018148422,2),(1292,1030852822,4),(1292,1049598022,2),(1292,1062907222,4),(1292,1081047622,2),(1292,1097985622,4),(1292,1110682822,2),(1292,1129435222,4),(1292,1142132423,2),(1292,1160884823,4),(1292,1173582023,2),(1292,1192939223,4),(1292,1205031623,2),(1292,1224388823,4),(1292,1236481224,2),(1292,1255838424,4),(1292,1270954824,2),(1292,1286078424,4),(1292,1302404424,2),(1292,1317528024,4),(1292,1333854024,2),(1292,1349582425,4),(1292,1364094025,2),(1292,1381032025,4),(1292,1395543625,2),(1292,1412481625,4),(1292,1426993225,2),(1292,1443931226,4),(1292,1459047626,2),(1292,1475380826,4),(1292,1490497227,2),(1292,1506830427,4),(1292,1521946827,2),(1292,1538884827,4),(1292,1553396427,2),(1292,1570334427,4),(1292,1584846027,2),(1292,1601784027,4),(1292,1616900427,2),(1292,1633233627,4),(1292,1648350027,2),(1292,1664683227,4),(1292,1679799627,2),(1292,1696132827,4),(1292,1711249227,2),(1292,1728187227,4),(1292,1742698827,2),(1292,1759636827,4),(1292,1774148427,2),(1292,1791086427,4),(1292,1806202827,2),(1292,1822536027,4),(1292,1837652427,2),(1292,1853985627,4),(1292,1869102027,2),(1292,1886040027,4),(1292,1900551627,2),(1292,1917489627,4),(1292,1932001227,2),(1292,1948939227,4),(1292,1964055627,2),(1292,1980388827,4),(1292,1995505227,2),(1292,2011838427,4),(1292,2026954827,2),(1292,2043288027,4),(1292,2058404427,2),(1292,2075342427,4),(1292,2089854027,2),(1292,2106792027,4),(1292,2121303627,2),(1292,2138241627,4),(1293,-2147483648,2),(1293,-1632067200,1),(1293,-1615136400,2),(1293,-923248800,1),(1293,-880214400,3),(1293,-769395600,4),(1293,-765392400,5),(1294,-2147483648,1),(1294,-880196400,2),(1294,-769395600,3),(1294,-765374400,1),(1294,-86878800,4),(1294,-21466800,5),(1294,-5745600,4),(1294,9982800,5),(1294,25704000,4),(1294,41432400,5),(1294,57758400,4),(1294,73486800,5),(1294,89208001,4),(1294,104936402,5),(1294,120657602,4),(1294,126709203,5),(1294,152107203,4),(1294,162392404,5),(1294,183556804,4),(1294,199285205,5),(1294,215611205,4),(1294,230734806,5),(1294,247060806,4),(1294,262789207,5),(1294,278510407,4),(1294,294238808,5),(1294,309960008,4),(1294,325688409,5),(1294,341409609,4),(1294,357138009,5),(1294,372859210,4),(1294,388587610,5),(1294,404913611,4),(1294,420037211,5),(1294,436363212,6),(1294,439034412,8),(1294,452088012,7),(1294,467809212,8),(1294,483537612,7),(1294,499258813,8),(1294,514987213,7),(1294,530708413,8),(1294,544622413,7),(1294,562158013,8),(1294,576072014,7),(1294,594212414,8),(1294,607521614,7),(1294,625662014,8),(1294,638971215,7),(1294,657111615,8),(1294,671025616,7),(1294,688561216,8),(1294,702475216,7),(1294,720010817,8),(1294,733924817,7),(1294,752065218,8),(1294,765374418,7),(1294,783514819,8),(1294,796824019,7),(1294,814964419,8),(1294,828878420,7),(1294,846414020,8),(1294,860328020,7),(1294,877863621,8),(1294,891777621,7),(1294,909313221,8),(1294,923227222,7),(1294,941367622,8),(1294,954676822,7),(1294,972817222,8),(1294,986126422,7),(1294,1004266822,8),(1294,1018180822,7),(1294,1035716422,8),(1294,1049630422,7),(1294,1067166022,8),(1294,1081080022,7),(1294,1099220422,8),(1294,1112529622,7),(1294,1130670022,8),(1294,1143979223,7),(1294,1162119623,8),(1294,1173614423,7),(1294,1194174023,8),(1294,1205064023,7),(1294,1225623623,8),(1294,1236513624,7),(1294,1257073224,8),(1294,1268568024,7),(1294,1289127624,8),(1294,1300017624,7),(1294,1320577224,8),(1294,1331467224,7),(1294,1352026825,8),(1294,1362916825,7),(1294,1383476425,8),(1294,1394366425,7),(1294,1414926025,8),(1294,1425816025,7),(1294,1446375626,8),(1294,1457870426,7),(1294,1478430026,8),(1294,1489320027,7),(1294,1509879627,8),(1294,1520769627,7),(1294,1541329227,8),(1294,1552219227,7),(1294,1572778827,8),(1294,1583668827,7),(1294,1604228427,8),(1294,1615723227,7),(1294,1636282827,8),(1294,1647172827,7),(1294,1667732427,8),(1294,1678622427,7),(1294,1699182027,8),(1294,1710072027,7),(1294,1730631627,8),(1294,1741521627,7),(1294,1762081227,8),(1294,1772971227,7),(1294,1793530827,8),(1294,1805025627,7),(1294,1825585227,8),(1294,1836475227,7),(1294,1857034827,8),(1294,1867924827,7),(1294,1888484427,8),(1294,1899374427,7),(1294,1919934027,8),(1294,1930824027,7),(1294,1951383627,8),(1294,1962878427,7),(1294,1983438027,8),(1294,1994328027,7),(1294,2014887627,8),(1294,2025777627,7),(1294,2046337227,8),(1294,2057227227,7),(1294,2077786827,8),(1294,2088676827,7),(1294,2109236427,8),(1294,2120126427,7),(1294,2140686027,8),(1295,-2147483648,0),(1295,-1767216356,2),(1295,-1206957600,1),(1295,-1191362400,2),(1295,-1175374800,1),(1295,-1159826400,2),(1295,-633819600,1),(1295,-622069200,2),(1295,-602283600,1),(1295,-591832800,2),(1295,-570747600,1),(1295,-560210400,2),(1295,-539125200,1),(1295,-531352800,2),(1295,-191365200,1),(1295,-184197600,2),(1295,-155163600,1),(1295,-150069600,2),(1295,-128898000,1),(1295,-121125600,2),(1295,-99954000,1),(1295,-89589600,2),(1295,-68418000,1),(1295,-57967200,2),(1295,499748413,1),(1295,511236013,2),(1295,530593213,1),(1295,540266413,2),(1295,562129213,1),(1295,571197614,2),(1295,592974014,1),(1295,602042414,2),(1295,624423614,1),(1295,634701615,2),(1295,656478015,1),(1295,666756016,2),(1295,687927616,1),(1295,697600816,2),(1295,719982017,1),(1295,728445617,2),(1295,750826818,1),(1295,761709618,2),(1295,782276419,1),(1295,793159219,2),(1295,813726019,1),(1295,824004020,2),(1295,844570820,1),(1295,856058420,2),(1295,876106821,1),(1295,888717621,2),(1295,908074821,1),(1295,919562422,2),(1295,938919622,1),(1295,951616822,2),(1295,970974022,1),(1295,982461622,2),(1295,1003028422,1),(1295,1013911222,2),(1295,1036292422,1),(1295,1045360822,2),(1295,1318734024,1),(1295,1330221624,2),(1296,-2147483648,0),(1296,-1514739600,1),(1296,-1343066400,2),(1296,-1234807200,1),(1296,-1220292000,2),(1296,-1207159200,1),(1296,-1191344400,2),(1296,-873828000,1),(1296,-661539600,3),(1296,28800,1),(1296,828867620,4),(1296,846403220,1),(1296,860317220,4),(1296,877852821,1),(1296,891766821,4),(1296,909302421,1),(1296,923216422,4),(1296,941356822,1),(1296,954666022,4),(1296,972806422,1),(1296,989139622,4),(1296,1001836822,1),(1296,1018170022,4),(1296,1035705622,1),(1296,1049619622,4),(1296,1067155222,1),(1296,1081069222,4),(1296,1099209622,1),(1296,1112518822,4),(1296,1130659222,1),(1296,1143968423,4),(1296,1162108823,1),(1296,1175418023,4),(1296,1193558423,1),(1296,1207472423,4),(1296,1225008023,1),(1296,1238922024,4),(1296,1256457624,1),(1296,1270371624,5),(1296,1288508424,2),(1296,1301817624,5),(1296,1319958024,2),(1296,1333267224,5),(1296,1351407625,2),(1296,1365321625,5),(1296,1382857225,2),(1296,1396771225,5),(1296,1414306825,2),(1296,1428220825,5),(1296,1445756426,2),(1296,1459670426,5),(1296,1477810826,2),(1296,1491120027,5),(1296,1509260427,2),(1296,1522569627,5),(1296,1540710027,2),(1296,1554624027,5),(1296,1572159627,2),(1296,1586073627,5),(1296,1603609227,2),(1296,1617523227,5),(1296,1635663627,2),(1296,1648972827,5),(1296,1667113227,2),(1296,1680422427,5),(1296,1698562827,2),(1296,1712476827,5),(1296,1730012427,2),(1296,1743926427,5),(1296,1761462027,2),(1296,1775376027,5),(1296,1792911627,2),(1296,1806825627,5),(1296,1824966027,2),(1296,1838275227,5),(1296,1856415627,2),(1296,1869724827,5),(1296,1887865227,2),(1296,1901779227,5),(1296,1919314827,2),(1296,1933228827,5),(1296,1950764427,2),(1296,1964678427,5),(1296,1982818827,2),(1296,1996128027,5),(1296,2014268427,2),(1296,2027577627,5),(1296,2045718027,2),(1296,2059027227,5),(1296,2077167627,2),(1296,2091081627,5),(1296,2108617227,2),(1296,2122531227,5),(1296,2140066827,2),(1297,-2147483648,0),(1297,-1451678491,1),(1297,-1199217691,3),(1297,234943206,2),(1297,244616406,3),(1297,261554407,2),(1297,276066007,3),(1297,293004008,2),(1297,307515608,3),(1297,325058409,2),(1297,338706009,3),(1298,-2147483648,0),(1298,-1767213964,2),(1298,-1206957600,1),(1298,-1191362400,2),(1298,-1175374800,1),(1298,-1159826400,2),(1298,-633819600,1),(1298,-622069200,2),(1298,-602283600,1),(1298,-591832800,2),(1298,-570747600,1),(1298,-560210400,2),(1298,-539125200,1),(1298,-531352800,2),(1298,-191365200,1),(1298,-184197600,2),(1298,-155163600,1),(1298,-150069600,2),(1298,-128898000,1),(1298,-121125600,2),(1298,-99954000,1),(1298,-89589600,2),(1298,-68418000,1),(1298,-57967200,2),(1298,499748413,1),(1298,511236013,2),(1298,530593213,1),(1298,540266413,2),(1298,562129213,1),(1298,571197614,2),(1299,-2147483648,0),(1299,-1822500432,2),(1299,-1616954400,1),(1299,-1606069800,2),(1299,-1585504800,1),(1299,-1574015400,2),(1299,-1554055200,1),(1299,-1542565800,2),(1299,-1522605600,1),(1299,-1511116200,2),(1299,-1490551200,1),(1299,-1479666600,2),(1299,-1459101600,1),(1299,-1448217000,2),(1299,-1427652000,1),(1299,-1416162600,2),(1299,-1396202400,1),(1299,-1384713000,2),(1299,-1364752800,1),(1299,-1353263400,2),(1299,-1333303200,1),(1299,-1321813800,2),(1299,-1301248800,1),(1299,-1290364200,2),(1299,-1269799200,1),(1299,-1258914600,2),(1299,-1238349600,1),(1299,-1226860200,2),(1299,-1206900000,1),(1299,-1195410600,2),(1299,-1175450400,1),(1299,-1163961000,2),(1299,-1143396000,1),(1299,-1132511400,2),(1299,-1111946400,1),(1299,-1101061800,2),(1299,-1080496800,1),(1299,-1069612200,2),(1299,-1049047200,1),(1299,-1037557800,2),(1299,-1017597600,1),(1299,-1006108200,2),(1299,-986148000,1),(1299,-974658600,2),(1299,-954093600,1),(1299,-943209000,2),(1299,-922644000,1),(1299,-911759400,2),(1299,-891194400,1),(1299,-879705000,2),(1299,-868212000,3),(1299,-769395600,4),(1299,-758746800,2),(1299,-701892000,1),(1299,-690402600,2),(1299,-670442400,1),(1299,-658953000,2),(1299,-638992800,1),(1299,-627503400,2),(1299,-606938400,1),(1299,-596053800,2),(1299,-575488800,1),(1299,-564604200,2),(1299,-544039200,1),(1299,-532549800,2),(1299,-512589600,1),(1299,-501100200,2),(1299,-481140000,1),(1299,-469650600,2),(1299,-449690400,1),(1299,-438201000,2),(1299,-417636000,1),(1299,-406751400,2),(1299,-386186400,1),(1299,-375301800,2),(1299,-354736800,1),(1299,-343247400,2),(1299,-323287200,1),(1299,-311797800,2),(1299,-291837600,1),(1299,-280348200,2),(1299,-259783200,1),(1299,-248898600,2),(1299,-228333600,1),(1299,-217449000,2),(1299,-196884000,1),(1299,-185999400,2),(1299,-165434400,1),(1299,-153945000,2),(1299,-133984800,1),(1299,-122495400,2),(1299,-102535200,1),(1299,-91045800,2),(1299,-70480800,1),(1299,-59596200,2),(1299,123919202,5),(1299,129618003,2),(1299,409039211,5),(1299,413874011,2),(1300,-2147483648,2),(1300,-1632074400,1),(1300,-1615143600,2),(1300,-880221600,3),(1300,-769395600,4),(1300,-765399600,2),(1301,-2147483648,0),(1301,-1767211040,2),(1301,-1206954000,1),(1301,-1191358800,2),(1301,-1175371200,1),(1301,-1159822800,2),(1301,-633816000,1),(1301,-622065600,2),(1301,-602280000,1),(1301,-591829200,2),(1301,-570744000,1),(1301,-560206800,2),(1301,-539121600,1),(1301,-531349200,2),(1301,-191361600,1),(1301,-184194000,2),(1301,-155160000,1),(1301,-150066000,2),(1301,-128894400,1),(1301,-121122000,2),(1301,-99950400,1),(1301,-89586000,2),(1301,-68414400,1),(1301,-57963600,2),(1301,499752013,1),(1301,511239613,2),(1301,530596813,1),(1301,540270013,2),(1301,562132813,1),(1301,571201214,2),(1301,938923222,1),(1301,951620422,2),(1301,970977622,1),(1301,971578822,2),(1302,-2147483648,1),(1302,-1739041424,3),(1302,704869216,2),(1302,733896017,3),(1303,-2147483648,2),(1303,-1633269600,1),(1303,-1615129200,2),(1303,-1601820000,1),(1303,-1583679600,2),(1303,-1471788000,5),(1303,-880210800,3),(1303,-769395600,4),(1303,-765388800,5),(1303,-84380400,6),(1303,-68659200,5),(1303,-52930800,6),(1303,-37209600,5),(1303,-21481200,6),(1303,-5760000,5),(1303,9968400,6),(1303,25689600,5),(1303,41418000,6),(1303,57744000,5),(1303,73472400,6),(1303,89193601,5),(1303,104922002,6),(1303,120643202,5),(1303,129114003,6),(1303,152092803,5),(1303,162378004,6),(1303,183542404,5),(1303,199270805,6),(1303,215596805,5),(1303,230720406,6),(1303,247046406,5),(1303,262774807,6),(1303,278496007,5),(1303,294224408,6),(1303,309945608,5),(1303,325674009,6),(1303,341395209,5),(1303,357123609,6),(1303,372844810,5),(1303,388573210,6),(1303,404899211,5),(1303,420022811,6),(1303,436348812,5),(1303,452077212,6),(1303,467798412,5),(1303,483526812,6),(1303,499248013,5),(1303,514976413,6),(1303,530697613,5),(1303,544611613,6),(1303,562147213,5),(1303,576061214,6),(1303,594201614,5),(1303,607510814,6),(1303,625651214,5),(1303,638960415,6),(1303,657100815,5),(1303,671014816,6),(1303,688550416,5),(1303,702464416,6),(1303,720000017,5),(1303,733914017,6),(1303,752054418,5),(1303,765363618,6),(1303,783504019,5),(1303,796813219,6),(1303,814953619,5),(1303,828867620,6),(1303,846403220,5),(1303,860317220,6),(1303,877852821,5),(1303,891766821,6),(1303,909302421,5),(1303,923216422,6),(1303,941356822,5),(1303,954666022,6),(1303,972806422,5),(1303,986115622,6),(1303,1004256022,5),(1303,1018170022,6),(1303,1035705622,5),(1303,1049619622,6),(1303,1067155222,5),(1303,1081069222,6),(1303,1099209622,5),(1303,1112518822,6),(1303,1130659222,5),(1303,1143968423,6),(1303,1162108823,5),(1303,1173603623,6),(1303,1194163223,5),(1303,1205053223,6),(1303,1225612823,5),(1303,1236502824,6),(1303,1257062424,5),(1303,1268557224,6),(1303,1289116824,5),(1303,1300006824,6),(1303,1320566424,5),(1303,1331456424,6),(1303,1352016025,5),(1303,1362906025,6),(1303,1383465625,5),(1303,1394355625,6),(1303,1414915225,5),(1303,1425805225,6),(1303,1446364826,5),(1303,1457859626,6),(1303,1478419226,5),(1303,1489309227,6),(1303,1509868827,5),(1303,1520758827,6),(1303,1541318427,5),(1303,1552208427,6),(1303,1572768027,5),(1303,1583658027,6),(1303,1604217627,5),(1303,1615712427,6),(1303,1636272027,5),(1303,1647162027,6),(1303,1667721627,5),(1303,1678611627,6),(1303,1699171227,5),(1303,1710061227,6),(1303,1730620827,5),(1303,1741510827,6),(1303,1762070427,5),(1303,1772960427,6),(1303,1793520027,5),(1303,1805014827,6),(1303,1825574427,5),(1303,1836464427,6),(1303,1857024027,5),(1303,1867914027,6),(1303,1888473627,5),(1303,1899363627,6),(1303,1919923227,5),(1303,1930813227,6),(1303,1951372827,5),(1303,1962867627,6),(1303,1983427227,5),(1303,1994317227,6),(1303,2014876827,5),(1303,2025766827,6),(1303,2046326427,5),(1303,2057216427,6),(1303,2077776027,5),(1303,2088666027,6),(1303,2109225627,5),(1303,2120115627,6),(1303,2140675227,5),(1304,-2147483648,1),(1304,-1567453392,2),(1304,-1233432000,3),(1304,-1222981200,2),(1304,-1205956800,3),(1304,-1194037200,2),(1304,-1172865600,3),(1304,-1162501200,2),(1304,-1141329600,3),(1304,-1130965200,2),(1304,-1109793600,3),(1304,-1099429200,2),(1304,-1078257600,3),(1304,-1067806800,2),(1304,-1046635200,3),(1304,-1036270800,2),(1304,-1015099200,3),(1304,-1004734800,2),(1304,-983563200,3),(1304,-973198800,2),(1304,-952027200,3),(1304,-941576400,2),(1304,-931032000,3),(1304,-900882000,2),(1304,-890337600,3),(1304,-833749200,2),(1304,-827265600,3),(1304,-752274000,2),(1304,-733780800,3),(1304,-197326800,2),(1304,-190843200,3),(1304,-184194000,2),(1304,-164491200,3),(1304,-152658000,2),(1304,-132955200,3),(1304,-121122000,2),(1304,-101419200,3),(1304,-86821200,2),(1304,-71092800,3),(1304,-54766800,2),(1304,-39038400,3),(1304,-23317200,2),(1304,-7588800,5),(1304,128142003,4),(1304,136605603,5),(1304,596948414,4),(1304,605066414,5),(1304,624423614,4),(1304,636516015,5),(1304,656478015,4),(1304,667965616,5),(1304,687927616,4),(1304,699415216,5),(1304,719377217,4),(1304,731469617,5),(1304,938919622,3),(1304,952052422,5),(1304,1198983623,4),(1304,1205632823,5),(1304,1224385223,4),(1304,1237082424,5),(1305,-2147483648,0),(1305,-1577923200,3),(1305,-880210800,1),(1305,-769395600,2),(1305,-765388800,3),(1305,-147891600,4),(1305,-131562000,3),(1305,325674009,5),(1305,341395209,3),(1305,357123609,5),(1305,372844810,3),(1305,388573210,5),(1305,404899211,3),(1305,420022811,5),(1305,436348812,3),(1305,452077212,5),(1305,467798412,3),(1305,483526812,5),(1305,499248013,3),(1305,514976413,5),(1305,530697613,3),(1305,544611613,5),(1305,562147213,3),(1305,576061214,5),(1305,594201614,3),(1305,607510814,5),(1305,625651214,3),(1305,638960415,5),(1305,657100815,3),(1305,671014816,5),(1305,688550416,3),(1305,702464416,5),(1305,720000017,3),(1305,733914017,5),(1305,752054418,3),(1305,765363618,5),(1305,783504019,3),(1305,796813219,5),(1305,814953619,3),(1305,828867620,5),(1305,846403220,3),(1305,860317220,5),(1305,877852821,3),(1305,891766821,5),(1305,909302421,3),(1305,923216422,5),(1305,941356822,7),(1305,954662422,6),(1305,972802822,8),(1305,973400422,7),(1305,986115622,5),(1305,1004256022,3),(1305,1018170022,5),(1305,1035705622,3),(1305,1049619622,5),(1305,1067155222,3),(1305,1081069222,5),(1305,1099209622,3),(1305,1112518822,5),(1305,1130659222,3),(1305,1143968423,5),(1305,1162108823,3),(1305,1173603623,5),(1305,1194163223,3),(1305,1205053223,5),(1305,1225612823,3),(1305,1236502824,5),(1305,1257062424,3),(1305,1268557224,5),(1305,1289116824,3),(1305,1300006824,5),(1305,1320566424,3),(1305,1331456424,5),(1305,1352016025,3),(1305,1362906025,5),(1305,1383465625,3),(1305,1394355625,5),(1305,1414915225,3),(1305,1425805225,5),(1305,1446364826,3),(1305,1457859626,5),(1305,1478419226,3),(1305,1489309227,5),(1305,1509868827,3),(1305,1520758827,5),(1305,1541318427,3),(1305,1552208427,5),(1305,1572768027,3),(1305,1583658027,5),(1305,1604217627,3),(1305,1615712427,5),(1305,1636272027,3),(1305,1647162027,5),(1305,1667721627,3),(1305,1678611627,5),(1305,1699171227,3),(1305,1710061227,5),(1305,1730620827,3),(1305,1741510827,5),(1305,1762070427,3),(1305,1772960427,5),(1305,1793520027,3),(1305,1805014827,5),(1305,1825574427,3),(1305,1836464427,5),(1305,1857024027,3),(1305,1867914027,5),(1305,1888473627,3),(1305,1899363627,5),(1305,1919923227,3),(1305,1930813227,5),(1305,1951372827,3),(1305,1962867627,5),(1305,1983427227,3),(1305,1994317227,5),(1305,2014876827,3),(1305,2025766827,5),(1305,2046326427,3),(1305,2057216427,5),(1305,2077776027,3),(1305,2088666027,5),(1305,2109225627,3),(1305,2120115627,5),(1305,2140675227,3),(1306,-2147483648,0),(1306,-1767212492,2),(1306,-1206954000,1),(1306,-1191358800,2),(1306,-1175371200,1),(1306,-1159822800,2),(1306,-633816000,1),(1306,-622065600,2),(1306,-602280000,1),(1306,-591829200,2),(1306,-570744000,1),(1306,-560206800,2),(1306,-539121600,1),(1306,-531349200,2),(1306,-191361600,1),(1306,-184194000,2),(1306,-155160000,1),(1306,-150066000,2),(1306,-128894400,1),(1306,-121122000,2),(1306,-99950400,1),(1306,-89586000,2),(1306,-68414400,1),(1306,-57963600,2),(1306,499752013,1),(1306,511239613,2),(1306,530596813,1),(1306,540270013,2),(1306,562132813,1),(1306,571201214,2),(1306,592977614,1),(1306,602046014,2),(1306,624427214,1),(1306,634705215,2),(1306,656481615,1),(1306,666759616,2),(1306,687931216,1),(1306,697604416,2),(1306,719985617,1),(1306,728449217,2),(1306,750830418,1),(1306,761713218,2),(1306,782280019,1),(1306,793162819,2),(1306,813729619,1),(1306,824007620,2),(1306,844574420,1),(1306,856062020,2),(1306,876110421,1),(1306,888721221,2),(1306,908078421,1),(1306,919566022,2),(1306,938923222,1),(1306,951620422,2),(1306,970977622,1),(1306,982465222,2),(1306,1003032022,1),(1306,1013914822,2),(1306,1036296022,1),(1306,1045364422,2),(1306,1066536022,1),(1306,1076814022,2),(1306,1099368022,1),(1306,1108868422,2),(1306,1129435222,1),(1306,1140318023,2),(1306,1162699223,1),(1306,1172372423,2),(1306,1192334423,1),(1306,1203217223,2),(1306,1224388823,1),(1306,1234666824,2),(1306,1255838424,1),(1306,1266721224,2),(1306,1287288024,1),(1306,1298170824,2),(1306,1318737624,1),(1306,1330225224,2),(1306,1350792025,1),(1306,1361070025,2),(1306,1382241625,1),(1306,1392519625,2),(1306,1413691225,1),(1306,1424574025,2),(1306,1445140826,1),(1306,1456023626,2),(1306,1476590426,1),(1306,1487473227,2),(1306,1508040027,1),(1306,1518922827,2),(1306,1541304027,1),(1306,1550372427,2),(1307,-2147483648,0),(1307,-1514743200,1),(1307,377935210,3),(1307,828860420,2),(1307,846396020,3),(1307,860310020,2),(1307,877845621,3),(1307,891759621,2),(1307,902037621,4),(1307,909298821,1),(1307,923212822,4),(1307,941353222,1),(1307,954662422,4),(1307,972802822,1),(1307,989136022,4),(1307,1001833222,1),(1307,1018166422,4),(1307,1035702022,1),(1307,1049616022,4),(1307,1067151622,1),(1307,1081065622,4),(1307,1099206022,1),(1307,1112515222,4),(1307,1130655622,1),(1307,1143964823,4),(1307,1162105223,1),(1307,1175414423,4),(1307,1193554823,1),(1307,1207468823,4),(1307,1225004423,1),(1307,1238918424,4),(1307,1256454024,1),(1307,1270368024,4),(1307,1288508424,1),(1307,1301817624,4),(1307,1319958024,1),(1307,1333267224,4),(1307,1351407625,1),(1307,1365321625,4),(1307,1382857225,1),(1307,1396771225,4),(1307,1414306825,1),(1307,1422777625,3),(1308,-2147483648,1),(1308,-1826739140,2),(1308,-157750200,3),(1308,1197183623,2),(1308,1462086026,3),(1309,-2147483648,1),(1309,-1567453392,2),(1309,-1233432000,3),(1309,-1222981200,2),(1309,-1205956800,3),(1309,-1194037200,2),(1309,-1172865600,3),(1309,-1162501200,2),(1309,-1141329600,3),(1309,-1130965200,2),(1309,-1109793600,3),(1309,-1099429200,2),(1309,-1078257600,3),(1309,-1067806800,2),(1309,-1046635200,3),(1309,-1036270800,2),(1309,-1015099200,3),(1309,-1004734800,2),(1309,-983563200,3),(1309,-973198800,2),(1309,-952027200,3),(1309,-941576400,2),(1309,-931032000,3),(1309,-900882000,2),(1309,-890337600,3),(1309,-833749200,2),(1309,-827265600,3),(1309,-752274000,2),(1309,-733780800,3),(1309,-197326800,2),(1309,-190843200,3),(1309,-184194000,2),(1309,-164491200,3),(1309,-152658000,2),(1309,-132955200,3),(1309,-121122000,2),(1309,-101419200,3),(1309,-86821200,2),(1309,-71092800,3),(1309,-54766800,2),(1309,-39038400,3),(1309,-23317200,2),(1309,-7588800,5),(1309,128142003,4),(1309,136605603,5),(1309,596948414,4),(1309,605066414,5),(1309,624423614,4),(1309,636516015,5),(1309,656478015,4),(1309,667965616,2),(1309,687931216,4),(1309,699415216,5),(1309,719377217,4),(1309,731469617,5),(1309,938919622,3),(1309,952052422,5),(1309,1086058822,2),(1309,1087704022,5),(1309,1198983623,4),(1309,1205632823,5),(1310,-2147483648,0),(1310,-1846269040,1),(1310,-71092800,2),(1311,-2147483648,1),(1311,-1946918424,2),(1312,-2147483648,2),(1312,-1633276800,1),(1312,-1615136400,2),(1312,-1601827200,1),(1312,-1583686800,2),(1312,-1563724800,1),(1312,-1551632400,2),(1312,-1538928000,1),(1312,-1520182800,2),(1312,-1504454400,1),(1312,-1491757200,2),(1312,-1473004800,1),(1312,-1459702800,2),(1312,-1441555200,1),(1312,-1428253200,2),(1312,-1410105600,1),(1312,-1396803600,2),(1312,-1378656000,1),(1312,-1365354000,2),(1312,-1347206400,1),(1312,-1333904400,2),(1312,-1315152000,1),(1312,-1301850000,2),(1312,-1283702400,1),(1312,-1270400400,2),(1312,-1252252800,1),(1312,-1238950800,2),(1312,-1220803200,1),(1312,-1207501200,2),(1312,-1189353600,1),(1312,-1176051600,2),(1312,-1157299200,1),(1312,-1144602000,2),(1312,-1125849600,1),(1312,-1112547600,2),(1312,-1094400000,1),(1312,-1081098000,2),(1312,-1067788800,3),(1312,-1045414800,2),(1312,-1031500800,1),(1312,-1018198800,2),(1312,-1000051200,1),(1312,-986749200,2),(1312,-967996800,1),(1312,-955299600,2),(1312,-936547200,1),(1312,-923245200,2),(1312,-905097600,1),(1312,-891795600,2),(1312,-880214400,4),(1312,-769395600,5),(1312,-765392400,2),(1312,-747244800,1),(1312,-733942800,2),(1312,-715795200,1),(1312,-702493200,2),(1312,-684345600,1),(1312,-671043600,2),(1312,-652896000,1),(1312,-639594000,2),(1312,-620841600,1),(1312,-608144400,2),(1312,-589392000,1),(1312,-576090000,2),(1312,-557942400,1),(1312,-544640400,2),(1312,-526492800,1),(1312,-513190800,2),(1312,-495043200,1),(1312,-481741200,2),(1312,-463593600,1),(1312,-447267600,2),(1312,-431539200,1),(1312,-415818000,2),(1312,-400089600,1),(1312,-384368400,2),(1312,-368640000,1),(1312,-352918800,2),(1312,-337190400,1),(1312,-321469200,2),(1312,-305740800,1),(1312,-289414800,2),(1312,-273686400,1),(1312,-257965200,2),(1312,-242236800,1),(1312,-226515600,2),(1312,-210787200,1),(1312,-195066000,2),(1312,-179337600,1),(1312,-163616400,2),(1312,-147888000,1),(1312,-131562000,2),(1312,-116438400,1),(1312,-100112400,2),(1312,-84384000,1),(1312,-68662800,2),(1312,-52934400,1),(1312,-37213200,2),(1312,-21484800,1),(1312,-5763600,2),(1312,9964800,1),(1312,25686000,2),(1312,41414400,1),(1312,57740400,2),(1312,73468800,1),(1312,89190001,2),(1312,104918402,1),(1312,120639602,2),(1312,126691203,1),(1312,152089203,2),(1312,162374404,1),(1312,183538804,2),(1312,199267205,1),(1312,215593205,2),(1312,230716806,1),(1312,247042806,2),(1312,262771207,1),(1312,278492407,2),(1312,294220808,1),(1312,309942008,2),(1312,325670409,1),(1312,341391609,2),(1312,357120009,1),(1312,372841210,2),(1312,388569610,1),(1312,404895611,2),(1312,420019211,1),(1312,436345212,2),(1312,452073612,1),(1312,467794812,2),(1312,483523212,1),(1312,499244413,2),(1312,514972813,1),(1312,530694013,2),(1312,544608013,1),(1312,562143613,2),(1312,576057614,1),(1312,594198014,2),(1312,607507214,1),(1312,625647614,2),(1312,638956815,1),(1312,657097215,2),(1312,671011216,1),(1312,688546816,2),(1312,702460816,1),(1312,719996417,2),(1312,733910417,1),(1312,752050818,2),(1312,765360018,1),(1312,783500419,2),(1312,796809619,1),(1312,814950019,2),(1312,828864020,1),(1312,846399620,2),(1312,860313620,1),(1312,877849221,2),(1312,891763221,1),(1312,909298821,2),(1312,923212822,1),(1312,941353222,2),(1312,954662422,1),(1312,972802822,2),(1312,986112022,1),(1312,1004252422,2),(1312,1018166422,1),(1312,1035702022,2),(1312,1049616022,1),(1312,1067151622,2),(1312,1081065622,1),(1312,1099206022,2),(1312,1112515222,1),(1312,1130655622,2),(1312,1143964823,1),(1312,1162105223,2),(1312,1173600023,1),(1312,1194159623,2),(1312,1205049623,1),(1312,1225609223,2),(1312,1236499224,1),(1312,1257058824,2),(1312,1268553624,1),(1312,1289113224,2),(1312,1300003224,1),(1312,1320562824,2),(1312,1331452824,1),(1312,1352012425,2),(1312,1362902425,1),(1312,1383462025,2),(1312,1394352025,1),(1312,1414911625,2),(1312,1425801625,1),(1312,1446361226,2),(1312,1457856026,1),(1312,1478415626,2),(1312,1489305627,1),(1312,1509865227,2),(1312,1520755227,1),(1312,1541314827,2),(1312,1552204827,1),(1312,1572764427,2),(1312,1583654427,1),(1312,1604214027,2),(1312,1615708827,1),(1312,1636268427,2),(1312,1647158427,1),(1312,1667718027,2),(1312,1678608027,1),(1312,1699167627,2),(1312,1710057627,1),(1312,1730617227,2),(1312,1741507227,1),(1312,1762066827,2),(1312,1772956827,1),(1312,1793516427,2),(1312,1805011227,1),(1312,1825570827,2),(1312,1836460827,1),(1312,1857020427,2),(1312,1867910427,1),(1312,1888470027,2),(1312,1899360027,1),(1312,1919919627,2),(1312,1930809627,1),(1312,1951369227,2),(1312,1962864027,1),(1312,1983423627,2),(1312,1994313627,1),(1312,2014873227,2),(1312,2025763227,1),(1312,2046322827,2),(1312,2057212827,1),(1312,2077772427,2),(1312,2088662427,1),(1312,2109222027,2),(1312,2120112027,1),(1312,2140671627,2),(1313,-2147483648,0),(1313,-1514739600,1),(1313,-1343066400,2),(1313,-1234807200,1),(1313,-1220292000,2),(1313,-1207159200,1),(1313,-1191344400,2),(1313,828864020,3),(1313,846399620,2),(1313,860313620,3),(1313,877849221,2),(1313,891766821,4),(1313,909302421,1),(1313,923216422,4),(1313,941356822,1),(1313,954666022,4),(1313,972806422,1),(1313,989139622,4),(1313,1001836822,1),(1313,1018170022,4),(1313,1035705622,1),(1313,1049619622,4),(1313,1067155222,1),(1313,1081069222,4),(1313,1099209622,1),(1313,1112518822,4),(1313,1130659222,1),(1313,1143968423,4),(1313,1162108823,1),(1313,1175418023,4),(1313,1193558423,1),(1313,1207472423,4),(1313,1225008023,1),(1313,1238922024,4),(1313,1256457624,1),(1313,1270371624,4),(1313,1288512024,1),(1313,1301821224,4),(1313,1319961624,1),(1313,1333270824,4),(1313,1351411225,1),(1313,1365325225,4),(1313,1382860825,1),(1313,1396774825,4),(1313,1414310425,1),(1313,1428224425,4),(1313,1445760026,1),(1313,1459674026,4),(1313,1477814426,1),(1313,1491123627,4),(1313,1509264027,1),(1313,1522573227,4),(1313,1540713627,1),(1313,1554627627,4),(1313,1572163227,1),(1313,1586077227,4),(1313,1603612827,1),(1313,1617526827,4),(1313,1635667227,1),(1313,1648976427,4),(1313,1667116827,1),(1313,1680426027,4),(1313,1698566427,1),(1313,1712480427,4),(1313,1730016027,1),(1313,1743930027,4),(1313,1761465627,1),(1313,1775379627,4),(1313,1792915227,1),(1313,1806829227,4),(1313,1824969627,1),(1313,1838278827,4),(1313,1856419227,1),(1313,1869728427,4),(1313,1887868827,1),(1313,1901782827,4),(1313,1919318427,1),(1313,1933232427,4),(1313,1950768027,1),(1313,1964682027,4),(1313,1982822427,1),(1313,1996131627,4),(1313,2014272027,1),(1313,2027581227,4),(1313,2045721627,1),(1313,2059030827,4),(1313,2077171227,1),(1313,2091085227,4),(1313,2108620827,1),(1313,2122534827,4),(1313,2140070427,1),(1314,-2147483648,2),(1314,-1632067200,1),(1314,-1615136400,2),(1314,-923248800,1),(1314,-880214400,3),(1314,-769395600,4),(1314,-765392400,5),(1315,-2147483648,1),(1315,-1567453392,2),(1315,-1233432000,3),(1315,-1222981200,2),(1315,-1205956800,3),(1315,-1194037200,2),(1315,-1172865600,3),(1315,-1162501200,2),(1315,-1141329600,3),(1315,-1130965200,2),(1315,-1109793600,3),(1315,-1099429200,2),(1315,-1078257600,3),(1315,-1067806800,2),(1315,-1046635200,3),(1315,-1036270800,2),(1315,-1015099200,3),(1315,-1004734800,2),(1315,-983563200,3),(1315,-973198800,2),(1315,-952027200,3),(1315,-941576400,2),(1315,-931032000,3),(1315,-900882000,2),(1315,-890337600,3),(1315,-833749200,2),(1315,-827265600,3),(1315,-752274000,2),(1315,-733780800,3),(1315,-197326800,2),(1315,-190843200,3),(1315,-184194000,2),(1315,-164491200,3),(1315,-152658000,2),(1315,-132955200,3),(1315,-121122000,2),(1315,-101419200,3),(1315,-86821200,2),(1315,-71092800,3),(1315,-54766800,2),(1315,-39038400,3),(1315,-23317200,2),(1315,-7588800,5),(1315,128142003,4),(1315,136605603,5),(1315,596948414,4),(1315,605066414,5),(1315,624423614,4),(1315,636516015,5),(1315,656478015,4),(1315,667965616,2),(1315,687931216,4),(1315,699415216,5),(1315,719377217,4),(1315,731469617,5),(1315,938919622,3),(1315,952052422,5),(1315,1198983623,4),(1315,1205632823,5),(1315,1224385223,4),(1315,1237082424,5),(1316,-2147483648,1),(1316,-1545071027,3),(1316,288770408,2),(1316,297234008,3),(1316,320220009,2),(1316,328683609,3),(1316,664264816,2),(1316,678344416,3),(1316,695714416,2),(1316,700635616,3),(1317,-2147483648,1),(1317,-1680454800,2),(1317,-1627833600,1),(1318,-2147483648,0),(1318,-1767212140,2),(1318,-1206954000,1),(1318,-1191358800,2),(1318,-1175371200,1),(1318,-1159822800,2),(1318,-633816000,1),(1318,-622065600,2),(1318,-602280000,1),(1318,-591829200,2),(1318,-570744000,1),(1318,-560206800,2),(1318,-539121600,1),(1318,-531349200,2),(1318,-191361600,1),(1318,-184194000,2),(1318,-155160000,1),(1318,-150066000,2),(1318,-128894400,1),(1318,-121122000,2),(1318,-99950400,1),(1318,-89586000,2),(1318,-68414400,1),(1318,-57963600,2),(1318,499752013,1),(1318,511239613,2),(1318,530596813,1),(1318,540270013,2),(1318,562132813,1),(1318,571201214,2),(1318,592977614,1),(1318,602046014,2),(1318,624427214,1),(1318,634705215,2),(1318,656481615,1),(1318,666759616,2),(1318,687931216,1),(1318,697604416,2),(1318,719985617,1),(1318,728449217,2),(1318,750830418,1),(1318,761713218,2),(1318,782280019,1),(1318,793162819,2),(1318,813729619,1),(1318,824007620,2),(1318,844574420,1),(1318,856062020,2),(1318,876110421,1),(1318,888721221,2),(1318,908078421,1),(1318,919566022,2),(1318,938923222,1),(1318,951620422,2),(1318,970977622,1),(1318,982465222,2),(1318,1003032022,1),(1318,1013914822,2),(1318,1036296022,1),(1318,1045364422,2),(1318,1099368022,1),(1318,1108868422,2),(1318,1129435222,1),(1318,1140318023,2),(1318,1162699223,1),(1318,1172372423,2),(1318,1192334423,1),(1318,1203217223,2),(1318,1224388823,1),(1318,1234666824,2),(1318,1255838424,1),(1318,1266721224,2),(1318,1287288024,1),(1318,1298170824,2),(1318,1318737624,1),(1318,1330225224,2),(1318,1350792025,1),(1318,1361070025,2),(1318,1382241625,1),(1318,1392519625,2),(1318,1413691225,1),(1318,1424574025,2),(1318,1445140826,1),(1318,1456023626,2),(1318,1476590426,1),(1318,1487473227,2),(1318,1508040027,1),(1318,1518922827,2),(1318,1541304027,1),(1318,1550372427,2),(1319,-2147483648,0),(1319,-1826738653,1),(1319,-157750200,2),(1320,-2147483648,0),(1320,-1686091520,1),(1320,323845209,4),(1320,338950809,2),(1320,354675609,3),(1320,370400410,2),(1320,386125210,3),(1320,401850011,2),(1320,417574811,3),(1320,433299612,2),(1320,449024412,3),(1320,465354012,2),(1320,481078812,3),(1320,496803613,2),(1320,512528413,3),(1320,528253213,2),(1320,543978013,3),(1320,559702813,2),(1320,575427614,3),(1320,591152414,2),(1320,606877214,3),(1320,622602014,2),(1320,638326815,3),(1320,654656415,2),(1320,670381216,3),(1320,686106016,2),(1320,701830816,3),(1320,717555617,2),(1320,733280417,3),(1320,749005218,2),(1320,764730018,3),(1320,780454819,2),(1320,796179619,3),(1320,811904419,2),(1320,820465220,5),(1321,-2147483648,2),(1321,-1632056400,1),(1321,-1615125600,2),(1321,-1596978000,1),(1321,-1583164800,2),(1321,-880203600,3),(1321,-769395600,4),(1321,-765381600,2),(1321,-147884400,5),(1321,-131554800,2),(1321,120646802,6),(1321,325677609,7),(1321,341398809,6),(1321,357127209,7),(1321,372848410,6),(1321,388576810,7),(1321,404902811,6),(1321,420026411,7),(1321,436352412,6),(1321,452080812,7),(1321,467802012,6),(1321,483530412,7),(1321,499251613,6),(1321,514980013,7),(1321,530701213,6),(1321,544615213,7),(1321,562150813,6),(1321,576064814,7),(1321,594205214,6),(1321,607514414,7),(1321,625654814,6),(1321,638964015,7),(1321,657104415,6),(1321,671018416,7),(1321,688554016,6),(1321,702468016,7),(1321,720003617,6),(1321,733917617,7),(1321,752058018,6),(1321,765367218,7),(1321,783507619,6),(1321,796816819,7),(1321,814957219,6),(1321,828871220,7),(1321,846406820,6),(1321,860320820,7),(1321,877856421,6),(1321,891770421,7),(1321,909306021,6),(1321,923220022,7),(1321,941360422,6),(1321,954669622,7),(1321,972810022,6),(1321,986119222,7),(1321,1004259622,6),(1321,1018173622,7),(1321,1035709222,6),(1321,1049623222,7),(1321,1067158822,6),(1321,1081072822,7),(1321,1099213222,6),(1321,1112522422,7),(1321,1130662822,6),(1321,1143972023,7),(1321,1162112423,6),(1321,1173607223,7),(1321,1194166823,6),(1321,1205056823,7),(1321,1225616423,6),(1321,1236506424,7),(1321,1257066024,6),(1321,1268560824,7),(1321,1289120424,6),(1321,1300010424,7),(1321,1320570024,6),(1321,1331460024,7),(1321,1352019625,6),(1321,1362909625,7),(1321,1383469225,6),(1321,1394359225,7),(1321,1414918825,6),(1321,1425808825,7),(1321,1446368426,6),(1321,1457863226,7),(1321,1478422826,6),(1321,1489312827,7),(1321,1509872427,6),(1321,1520762427,7),(1321,1541322027,6),(1321,1552212027,7),(1321,1572771627,6),(1321,1583661627,7),(1321,1604214027,8),(1322,-2147483648,2),(1322,-1632060000,1),(1322,-1615129200,2),(1322,-880207200,3),(1322,-769395600,4),(1322,-765385200,2),(1322,-715788000,1),(1322,-702486000,2),(1322,-684338400,1),(1322,-671036400,2),(1322,-652888800,1),(1322,-639586800,2),(1322,-620834400,1),(1322,-608137200,2),(1322,-589384800,1),(1322,-576082800,2),(1322,-557935200,1),(1322,-544633200,2),(1322,-526485600,1),(1322,-513183600,2),(1322,-495036000,1),(1322,-481734000,2),(1322,-463586400,1),(1322,-450284400,2),(1322,-431532000,1),(1322,-418230000,2),(1322,-400082400,1),(1322,-386780400,2),(1322,-368632800,1),(1322,-355330800,2),(1322,-337183200,1),(1322,-323881200,2),(1322,-305733600,1),(1322,-292431600,2),(1322,-273679200,1),(1322,-260982000,2),(1322,-242229600,1),(1322,-226508400,2),(1322,-210780000,1),(1322,-195058800,2),(1322,-179330400,1),(1322,-163609200,2),(1322,-147880800,1),(1322,-131554800,2),(1322,-116431200,1),(1322,-100105200,2),(1322,-84376800,1),(1322,-68655600,2),(1322,-52927200,1),(1322,-37206000,2),(1322,-21477600,1),(1322,-5756400,2),(1322,9972000,1),(1322,25693200,2),(1322,41421600,1),(1322,57747600,2),(1322,73476000,1),(1322,84013201,5),(1323,-2147483648,2),(1323,-1633273200,1),(1323,-1615132800,2),(1323,-1601823600,1),(1323,-1583683200,2),(1323,-1570374000,1),(1323,-1551628800,2),(1323,-1538924400,1),(1323,-1534089600,2),(1323,-880210800,3),(1323,-769395600,4),(1323,-765388800,2),(1323,-147884400,1),(1323,-131558400,2),(1323,-116434800,1),(1323,-100108800,2),(1323,-84380400,1),(1323,-68659200,2),(1323,-52930800,1),(1323,-37209600,2),(1323,-21481200,1),(1323,-5760000,2),(1323,9968400,1),(1323,25689600,2),(1323,41418000,1),(1323,57744000,2),(1323,73472400,1),(1323,89193601,2),(1323,104922002,1),(1323,120643202,2),(1323,126694803,1),(1323,152092803,2),(1323,162378004,1),(1323,183542404,2),(1323,199270805,1),(1323,215596805,2),(1323,230720406,1),(1323,247046406,2),(1323,262774807,1),(1323,278496007,2),(1323,294224408,1),(1323,309945608,2),(1323,325674009,1),(1323,341395209,2),(1323,357123609,1),(1323,372844810,2),(1323,388573210,1),(1323,404899211,2),(1323,420022811,1),(1323,436348812,2),(1323,452077212,1),(1323,467798412,2),(1323,483526812,1),(1323,499248013,2),(1323,514976413,1),(1323,530697613,2),(1323,544611613,1),(1323,562147213,2),(1323,576061214,1),(1323,594201614,2),(1323,607510814,1),(1323,625651214,2),(1323,638960415,1),(1323,657100815,2),(1323,671014816,1),(1323,688550416,2),(1323,702464416,1),(1323,720000017,2),(1323,733914017,1),(1323,752054418,2),(1323,765363618,1),(1323,783504019,2),(1323,796813219,1),(1323,814953619,2),(1323,828867620,1),(1323,846403220,2),(1323,860317220,1),(1323,877852821,2),(1323,891766821,1),(1323,909302421,2),(1323,923216422,1),(1323,941356822,2),(1323,954666022,1),(1323,972806422,2),(1323,986115622,1),(1323,1004256022,2),(1323,1018170022,1),(1323,1035705622,2),(1323,1049619622,1),(1323,1067155222,2),(1323,1081069222,1),(1323,1099209622,2),(1323,1112518822,1),(1323,1130659222,2),(1323,1143968423,1),(1323,1162108823,2),(1323,1173603623,1),(1323,1194163223,2),(1323,1205053223,1),(1323,1225612823,2),(1323,1236502824,1),(1323,1257062424,2),(1323,1268557224,1),(1323,1289116824,2),(1323,1300006824,1),(1323,1320566424,2),(1323,1331456424,1),(1323,1352016025,2),(1323,1362906025,1),(1323,1383465625,2),(1323,1394355625,1),(1323,1414915225,2),(1323,1425805225,1),(1323,1446364826,2),(1323,1457859626,1),(1323,1478419226,2),(1323,1489309227,1),(1323,1509868827,2),(1323,1520758827,1),(1323,1541318427,2),(1323,1552208427,1),(1323,1572768027,2),(1323,1583658027,1),(1323,1604217627,2),(1323,1615712427,1),(1323,1636272027,2),(1323,1647162027,1),(1323,1667721627,2),(1323,1678611627,1),(1323,1699171227,2),(1323,1710061227,1),(1323,1730620827,2),(1323,1741510827,1),(1323,1762070427,2),(1323,1772960427,1),(1323,1793520027,2),(1323,1805014827,1),(1323,1825574427,2),(1323,1836464427,1),(1323,1857024027,2),(1323,1867914027,1),(1323,1888473627,2),(1323,1899363627,1),(1323,1919923227,2),(1323,1930813227,1),(1323,1951372827,2),(1323,1962867627,1),(1323,1983427227,2),(1323,1994317227,1),(1323,2014876827,2),(1323,2025766827,1),(1323,2046326427,2),(1323,2057216427,1),(1323,2077776027,2),(1323,2088666027,1),(1323,2109225627,2),(1323,2120115627,1),(1323,2140675227,2),(1324,-2147483648,0),(1324,-2051202469,1),(1324,-1724083200,2),(1324,-880218000,3),(1324,-769395600,4),(1324,-765396000,2),(1324,-684349200,5),(1324,-671047200,2),(1324,-80506740,5),(1324,-68666400,2),(1324,-52938000,5),(1324,-37216800,2),(1324,104914802,5),(1324,120636002,2),(1324,126687603,5),(1324,152085603,2),(1324,167814004,5),(1324,183535204,2),(1324,199263605,5),(1324,215589605,2),(1324,230713206,5),(1324,247039206,2),(1324,262767607,5),(1324,278488807,2),(1324,294217208,5),(1324,309938408,2),(1324,325666809,5),(1324,341388009,2),(1324,357116409,5),(1324,372837610,2),(1324,388566010,5),(1324,404892011,2),(1324,420015611,5),(1324,436341612,2),(1324,452070012,5),(1324,467791212,2),(1324,483519612,5),(1324,499240813,2),(1324,514969213,5),(1324,530690413,2),(1324,544604413,5),(1324,562140013,2),(1324,576054014,5),(1324,594194414,2),(1324,607503614,5),(1324,625644014,2),(1324,638953215,5),(1324,657093615,2),(1324,671007616,5),(1324,688543216,2),(1324,702457216,5),(1324,719992817,2),(1324,733906817,5),(1324,752047218,2),(1324,765356418,5),(1324,783496819,2),(1324,796806019,5),(1324,814946419,2),(1324,828860420,5),(1324,846396020,2),(1324,860310020,5),(1324,877845621,2),(1324,891759621,5),(1324,909295221,2),(1324,923209222,5),(1324,941349622,2),(1324,954658822,5),(1324,972799222,2),(1324,986108422,5),(1324,1004248822,2),(1324,1018162822,5),(1324,1035698422,2),(1324,1049612422,5),(1324,1067148022,2),(1324,1081062022,5),(1324,1099202422,2),(1324,1112511622,5),(1324,1130652022,2),(1324,1143961223,5),(1324,1162101623,2),(1324,1173596423,5),(1324,1194156023,2),(1324,1205046023,5),(1324,1225605623,2),(1324,1236495624,5),(1324,1257055224,2),(1324,1268550024,5),(1324,1289109624,2),(1324,1299999624,5),(1324,1320559224,2),(1324,1331449224,5),(1324,1352008825,2),(1324,1362898825,5),(1324,1383458425,2),(1324,1394348425,5),(1324,1414908025,2),(1324,1425798025,5),(1324,1446357626,2),(1324,1457852426,5),(1324,1478412026,2),(1324,1489302027,5),(1324,1509861627,2),(1324,1520751627,5),(1324,1541311227,2),(1324,1552201227,5),(1324,1572760827,2),(1324,1583650827,5),(1324,1604210427,2),(1324,1615705227,5),(1324,1636264827,2),(1324,1647154827,5),(1324,1667714427,2),(1324,1678604427,5),(1324,1699164027,2),(1324,1710054027,5),(1324,1730613627,2),(1324,1741503627,5),(1324,1762063227,2),(1324,1772953227,5),(1324,1793512827,2),(1324,1805007627,5),(1324,1825567227,2),(1324,1836457227,5),(1324,1857016827,2),(1324,1867906827,5),(1324,1888466427,2),(1324,1899356427,5),(1324,1919916027,2),(1324,1930806027,5),(1324,1951365627,2),(1324,1962860427,5),(1324,1983420027,2),(1324,1994310027,5),(1324,2014869627,2),(1324,2025759627,5),(1324,2046319227,2),(1324,2057209227,5),(1324,2077768827,2),(1324,2088658827,5),(1324,2109218427,2),(1324,2120108427,5),(1324,2140668027,2),(1325,-2147483648,0),(1325,-1825098836,1),(1326,-2147483648,0),(1326,-1998663968,2),(1326,-1632063600,1),(1326,-1615132800,2),(1326,-1600614000,1),(1326,-1596816000,2),(1326,-1567954800,1),(1326,-1551628800,2),(1326,-1536505200,1),(1326,-1523203200,2),(1326,-1504450800,1),(1326,-1491753600,2),(1326,-1473001200,1),(1326,-1459699200,2),(1326,-880210800,3),(1326,-769395600,4),(1326,-765388800,2),(1326,-715791600,1),(1326,-702489600,2),(1326,73472400,1),(1326,89193601,2),(1326,104922002,1),(1326,120643202,2),(1326,136371603,1),(1326,152092803,2),(1326,167821204,1),(1326,183542404,2),(1326,199270805,1),(1326,215596805,2),(1326,230720406,1),(1326,247046406,2),(1326,262774807,1),(1326,278496007,2),(1326,294224408,1),(1326,309945608,2),(1326,325674009,1),(1326,341395209,2),(1326,357123609,1),(1326,372844810,2),(1326,388573210,1),(1326,404899211,2),(1326,420022811,1),(1326,436348812,2),(1326,452077212,1),(1326,467798412,2),(1326,483526812,1),(1326,499248013,2),(1326,514976413,1),(1326,530697613,2),(1326,544611613,1),(1326,562147213,2),(1326,576061214,1),(1326,594201614,2),(1326,607510814,1),(1326,625651214,2),(1326,638960415,1),(1326,657100815,2),(1326,671014816,1),(1326,688550416,2),(1326,702464416,1),(1326,720000017,2),(1326,733914017,1),(1326,752054418,2),(1326,765363618,1),(1326,783504019,2),(1326,796813219,1),(1326,814953619,2),(1326,828867620,1),(1326,846403220,2),(1326,860317220,1),(1326,877852821,2),(1326,891766821,1),(1326,909302421,2),(1326,923216422,1),(1326,941356822,2),(1326,954666022,1),(1326,972806422,2),(1326,986115622,1),(1326,1004256022,2),(1326,1018170022,1),(1326,1035705622,2),(1326,1049619622,1),(1326,1067155222,2),(1326,1081069222,1),(1326,1099209622,2),(1326,1112518822,1),(1326,1130659222,2),(1326,1143968423,1),(1326,1162108823,2),(1326,1173603623,1),(1326,1194163223,2),(1326,1205053223,1),(1326,1225612823,2),(1326,1236502824,1),(1326,1257062424,2),(1326,1268557224,1),(1326,1289116824,2),(1326,1300006824,1),(1326,1320566424,2),(1326,1331456424,1),(1326,1352016025,2),(1326,1362906025,1),(1326,1383465625,2),(1326,1394355625,1),(1326,1414915225,2),(1326,1425805225,1),(1326,1446364826,2),(1326,1457859626,1),(1326,1478419226,2),(1326,1489309227,1),(1326,1509868827,2),(1326,1520758827,1),(1326,1541318427,2),(1326,1552208427,1),(1326,1572768027,2),(1326,1583658027,1),(1326,1604217627,2),(1326,1615712427,1),(1326,1636272027,2),(1326,1647162027,1),(1326,1667721627,2),(1326,1678611627,1),(1326,1699171227,2),(1326,1710061227,1),(1326,1730620827,2),(1326,1741510827,1),(1326,1762070427,2),(1326,1772960427,1),(1326,1793520027,2),(1326,1805014827,1),(1326,1825574427,2),(1326,1836464427,1),(1326,1857024027,2),(1326,1867914027,1),(1326,1888473627,2),(1326,1899363627,1),(1326,1919923227,2),(1326,1930813227,1),(1326,1951372827,2),(1326,1962867627,1),(1326,1983427227,2),(1326,1994317227,1),(1326,2014876827,2),(1326,2025766827,1),(1326,2046326427,2),(1326,2057216427,1),(1326,2077776027,2),(1326,2088666027,1),(1326,2109225627,2),(1326,2120115627,1),(1326,2140675227,2),(1327,-2147483648,0),(1327,-1767208832,2),(1327,-1206950400,1),(1327,-1191355200,2),(1327,-1175367600,1),(1327,-1159819200,2),(1327,-633812400,1),(1327,-622062000,2),(1327,-602276400,1),(1327,-591825600,2),(1327,-570740400,1),(1327,-560203200,2),(1327,-539118000,1),(1327,-531345600,2),(1327,-191358000,1),(1327,-184190400,2),(1327,-155156400,1),(1327,-150062400,2),(1327,-128890800,1),(1327,-121118400,2),(1327,-99946800,1),(1327,-89582400,2),(1327,-68410800,1),(1327,-57960000,2),(1327,499755613,1),(1327,511243213,2),(1327,530600413,1),(1327,540273613,2),(1327,562136413,1),(1327,571204814,2),(1327,750834018,1),(1327,761716818,2),(1327,1214283623,3),(1327,1384056025,2),(1328,-2147483648,0),(1328,-1546279392,2),(1328,547020013,1),(1328,559717213,2),(1328,578469614,1),(1328,591166814,2),(1329,-2147483648,0),(1329,-1514736000,1),(1329,-1451667600,2),(1329,-1343062800,1),(1329,-1234803600,2),(1329,-1222963200,3),(1329,-1207242000,2),(1329,-873820800,4),(1329,-769395600,5),(1329,-761677200,2),(1329,-686073600,3),(1329,-661539600,2),(1329,-495039600,3),(1329,-481734000,2),(1329,-463590000,3),(1329,-450284400,2),(1329,-431535600,3),(1329,-418230000,2),(1329,-400086000,3),(1329,-386780400,2),(1329,-368636400,3),(1329,-355330800,2),(1329,-337186800,3),(1329,-323881200,2),(1329,-305737200,3),(1329,-292431600,2),(1329,199274405,3),(1329,215600405,2),(1329,230724006,3),(1329,247050006,2),(1329,262778407,3),(1329,278499607,2),(1329,294228008,3),(1329,309949208,2),(1329,325677609,3),(1329,341398809,2),(1329,357127209,3),(1329,372848410,2),(1329,388576810,3),(1329,404902811,2),(1329,420026411,3),(1329,436352412,2),(1329,452080812,3),(1329,467802012,2),(1329,483530412,3),(1329,499251613,2),(1329,514980013,3),(1329,530701213,2),(1329,544615213,3),(1329,562150813,2),(1329,576064814,3),(1329,594205214,2),(1329,607514414,3),(1329,625654814,2),(1329,638964015,3),(1329,657104415,2),(1329,671018416,3),(1329,688554016,2),(1329,702468016,3),(1329,720003617,2),(1329,733917617,3),(1329,752058018,2),(1329,765367218,3),(1329,783507619,2),(1329,796816819,3),(1329,814957219,2),(1329,828871220,3),(1329,846406820,2),(1329,860320820,3),(1329,877856421,2),(1329,891770421,3),(1329,909306021,2),(1329,923220022,3),(1329,941360422,2),(1329,954669622,3),(1329,972810022,2),(1329,986119222,3),(1329,1004259622,2),(1329,1018173622,3),(1329,1035709222,2),(1329,1049623222,3),(1329,1067158822,2),(1329,1081072822,3),(1329,1099213222,2),(1329,1112522422,3),(1329,1130662822,2),(1329,1143972023,3),(1329,1162112423,2),(1329,1175421623,3),(1329,1193562023,2),(1329,1207476023,3),(1329,1225011623,2),(1329,1238925624,3),(1329,1256461224,2),(1329,1268560824,3),(1329,1289120424,2),(1329,1300010424,3),(1329,1320570024,2),(1329,1331460024,3),(1329,1352019625,2),(1329,1362909625,3),(1329,1383469225,2),(1329,1394359225,3),(1329,1414918825,2),(1329,1425808825,3),(1329,1446368426,2),(1329,1457863226,3),(1329,1478422826,2),(1329,1489312827,3),(1329,1509872427,2),(1329,1520762427,3),(1329,1541322027,2),(1329,1552212027,3),(1329,1572771627,2),(1329,1583661627,3),(1329,1604221227,2),(1329,1615716027,3),(1329,1636275627,2),(1329,1647165627,3),(1329,1667725227,2),(1329,1678615227,3),(1329,1699174827,2),(1329,1710064827,3),(1329,1730624427,2),(1329,1741514427,3),(1329,1762074027,2),(1329,1772964027,3),(1329,1793523627,2),(1329,1805018427,3),(1329,1825578027,2),(1329,1836468027,3),(1329,1857027627,2),(1329,1867917627,3),(1329,1888477227,2),(1329,1899367227,3),(1329,1919926827,2),(1329,1930816827,3),(1329,1951376427,2),(1329,1962871227,3),(1329,1983430827,2),(1329,1994320827,3),(1329,2014880427,2),(1329,2025770427,3),(1329,2046330027,2),(1329,2057220027,3),(1329,2077779627,2),(1329,2088669627,3),(1329,2109229227,2),(1329,2120119227,3),(1329,2140678827,2),(1330,-2147483648,2),(1330,-1632060000,1),(1330,-1615129200,2),(1330,-880207200,3),(1330,-769395600,4),(1330,-765385200,2),(1330,-715788000,1),(1330,-702486000,2),(1330,-684338400,1),(1330,-671036400,2),(1330,-652888800,1),(1330,-639586800,2),(1330,-620834400,1),(1330,-608137200,2),(1330,-589384800,1),(1330,-576082800,2),(1330,-557935200,1),(1330,-544633200,2),(1330,-526485600,1),(1330,-513183600,2),(1330,-495036000,1),(1330,-481734000,2),(1330,-463586400,1),(1330,-450284400,2),(1330,-431532000,1),(1330,-418230000,2),(1330,-400082400,1),(1330,-386780400,2),(1330,-368632800,1),(1330,-355330800,2),(1330,-337183200,1),(1330,-323881200,2),(1330,-305733600,1),(1330,-292431600,2),(1330,-273679200,1),(1330,-260982000,2),(1330,-242229600,1),(1330,-226508400,2),(1330,-210780000,1),(1330,-195058800,2),(1330,-179330400,1),(1330,-163609200,2),(1330,-147880800,1),(1330,-131554800,2),(1330,-116431200,1),(1330,-100105200,2),(1330,-84376800,1),(1330,-68655600,2),(1330,-52927200,1),(1330,-37206000,2),(1330,-21477600,1),(1330,-5756400,2),(1330,9972000,1),(1330,25693200,2),(1330,41421600,1),(1330,57747600,2),(1330,73476000,1),(1330,89197201,2),(1330,104925602,1),(1330,120646802,2),(1330,136375203,1),(1330,152096403,2),(1330,167824804,1),(1330,183546004,2),(1330,199274405,1),(1330,215600405,2),(1330,230724006,1),(1330,247050006,2),(1330,262778407,1),(1330,278499607,2),(1330,294228008,1),(1330,309949208,2),(1330,325677609,1),(1330,341398809,2),(1330,357127209,1),(1330,372848410,2),(1330,388576810,1),(1330,404902811,2),(1330,420026411,1),(1330,436352412,2),(1330,452080812,1),(1330,467802012,2),(1330,483530412,1),(1330,499251613,2),(1330,514980013,1),(1330,530701213,2),(1330,544615213,1),(1330,562150813,2),(1330,576064814,1),(1330,594205214,2),(1330,607514414,1),(1330,625654814,2),(1330,638964015,1),(1330,657104415,2),(1330,671018416,1),(1330,688554016,2),(1330,702468016,1),(1330,720003617,2),(1330,733917617,1),(1330,752058018,2),(1330,765367218,1),(1330,783507619,2),(1330,796816819,1),(1330,814957219,2),(1330,828871220,1),(1330,846406820,2),(1330,860320820,1),(1330,877856421,2),(1330,891770421,1),(1330,909306021,2),(1330,923220022,1),(1330,941360422,2),(1330,954669622,1),(1330,972810022,2),(1330,986119222,1),(1330,1004259622,2),(1330,1018173622,1),(1330,1035709222,2),(1330,1049623222,1),(1330,1067158822,2),(1330,1081072822,1),(1330,1099213222,2),(1330,1112522422,1),(1330,1130662822,2),(1330,1143972023,1),(1330,1162112423,2),(1330,1173607223,1),(1330,1194166823,2),(1330,1205056823,1),(1330,1225616423,2),(1330,1236506424,1),(1330,1257066024,2),(1330,1268560824,1),(1330,1289120424,2),(1330,1300010424,1),(1330,1320570024,2),(1330,1331460024,1),(1330,1352019625,2),(1330,1362909625,1),(1330,1383469225,2),(1330,1394359225,1),(1330,1414918825,2),(1330,1425808825,5),(1331,-2147483648,2),(1331,-1633276800,1),(1331,-1615136400,2),(1331,-1601827200,1),(1331,-1583686800,2),(1331,-900259200,1),(1331,-891795600,2),(1331,-880214400,3),(1331,-769395600,4),(1331,-765392400,2),(1331,-747244800,1),(1331,-733942800,2),(1331,-715795200,1),(1331,-702493200,2),(1331,-684345600,1),(1331,-671043600,2),(1331,-652896000,1),(1331,-639594000,2),(1331,-620841600,1),(1331,-608144400,2),(1331,-589392000,1),(1331,-576090000,2),(1331,-557942400,1),(1331,-544640400,2),(1331,-526492800,1),(1331,-513190800,2),(1331,-495043200,1),(1331,-481741200,2),(1331,-463593600,5),(1331,-386787600,2),(1331,-368640000,5),(1331,-21488400,6),(1331,-5767200,5),(1331,9961200,6),(1331,25682400,5),(1331,1143961223,6),(1331,1162101623,5),(1331,1173596423,6),(1331,1194156023,5),(1331,1205046023,6),(1331,1225605623,5),(1331,1236495624,6),(1331,1257055224,5),(1331,1268550024,6),(1331,1289109624,5),(1331,1299999624,6),(1331,1320559224,5),(1331,1331449224,6),(1331,1352008825,5),(1331,1362898825,6),(1331,1383458425,5),(1331,1394348425,6),(1331,1414908025,5),(1331,1425798025,6),(1331,1446357626,5),(1331,1457852426,6),(1331,1478412026,5),(1331,1489302027,6),(1331,1509861627,5),(1331,1520751627,6),(1331,1541311227,5),(1331,1552201227,6),(1331,1572760827,5),(1331,1583650827,6),(1331,1604210427,5),(1331,1615705227,6),(1331,1636264827,5),(1331,1647154827,6),(1331,1667714427,5),(1331,1678604427,6),(1331,1699164027,5),(1331,1710054027,6),(1331,1730613627,5),(1331,1741503627,6),(1331,1762063227,5),(1331,1772953227,6),(1331,1793512827,5),(1331,1805007627,6),(1331,1825567227,5),(1331,1836457227,6),(1331,1857016827,5),(1331,1867906827,6),(1331,1888466427,5),(1331,1899356427,6),(1331,1919916027,5),(1331,1930806027,6),(1331,1951365627,5),(1331,1962860427,6),(1331,1983420027,5),(1331,1994310027,6),(1331,2014869627,5),(1331,2025759627,6),(1331,2046319227,5),(1331,2057209227,6),(1331,2077768827,5),(1331,2088658827,6),(1331,2109218427,5),(1331,2120108427,6),(1331,2140668027,5),(1332,-2147483648,0),(1332,-1767216360,2),(1332,-1206957600,1),(1332,-1191362400,2),(1332,-1175374800,1),(1332,-1159826400,2),(1332,-633819600,1),(1332,-622069200,2),(1332,-602283600,1),(1332,-591832800,2),(1332,-570747600,1),(1332,-560210400,2),(1332,-539125200,1),(1332,-531352800,2),(1332,-191365200,1),(1332,-184197600,2),(1332,-155163600,1),(1332,-150069600,2),(1332,-128898000,1),(1332,-121125600,2),(1332,-99954000,1),(1332,-89589600,2),(1332,-68418000,1),(1332,-57967200,2),(1332,499748413,1),(1332,511236013,2),(1332,530593213,1),(1332,540266413,2),(1332,562129213,1),(1332,571197614,2),(1332,592974014,1),(1332,602042414,2),(1332,624423614,1),(1332,634701615,2),(1332,938919622,1),(1332,951616822,2),(1332,970974022,1),(1332,972180022,2),(1332,1003028422,1),(1332,1013911222,2),(1333,-2147483648,0),(1333,-2131646412,2),(1333,-1632074400,1),(1333,-1615143600,2),(1333,-880221600,3),(1333,-769395600,4),(1333,-765399600,2),(1333,-526500000,1),(1333,-513198000,2),(1333,73461600,1),(1333,89182801,2),(1333,104911202,1),(1333,120632402,2),(1333,136360803,1),(1333,152082003,2),(1333,167810404,1),(1333,183531604,2),(1333,199260005,1),(1333,215586005,2),(1333,230709606,1),(1333,247035606,2),(1333,262764007,1),(1333,278485207,2),(1333,294213608,1),(1333,309934808,2),(1333,325663209,1),(1333,341384409,2),(1333,357112809,1),(1333,372834010,2),(1333,388562410,1),(1333,404888411,2),(1333,420012011,1),(1333,436338012,2),(1333,452066412,1),(1333,467787612,2),(1333,483516012,1),(1333,499237213,2),(1333,514965613,1),(1333,530686813,2),(1333,544600813,1),(1333,562136413,2),(1333,576050414,1),(1333,594190814,2),(1333,607500014,1),(1333,625640414,2),(1333,638949615,1),(1333,657090015,2),(1333,671004016,1),(1333,688539616,2),(1333,702453616,1),(1333,719989217,2),(1333,733903217,1),(1333,752043618,2),(1333,765352818,1),(1333,783493219,2),(1333,796802419,1),(1333,814942819,2),(1333,828856820,1),(1333,846392420,2),(1333,860306420,1),(1333,877842021,2),(1333,891756021,1),(1333,909291621,2),(1333,923205622,1),(1333,941346022,2),(1333,954655222,1),(1333,972795622,2),(1333,986104822,1),(1333,1004245222,2),(1333,1018159222,1),(1333,1035694822,2),(1333,1049608822,1),(1333,1067144422,2),(1333,1081058422,1),(1333,1099198822,2),(1333,1112508022,1),(1333,1130648422,2),(1333,1143957623,1),(1333,1162098023,2),(1333,1173592823,1),(1333,1194152423,2),(1333,1205042423,1),(1333,1225602023,2),(1333,1236492024,1),(1333,1257051624,2),(1333,1268546424,1),(1333,1289106024,2),(1333,1299996024,1),(1333,1320555624,2),(1333,1331445624,1),(1333,1352005225,2),(1333,1362895225,1),(1333,1383454825,2),(1333,1394344825,1),(1333,1414904425,2),(1333,1425794425,1),(1333,1446354026,2),(1333,1457848826,1),(1333,1478408426,2),(1333,1489298427,1),(1333,1509858027,2),(1333,1520748027,1),(1333,1541307627,2),(1333,1552197627,1),(1333,1572757227,2),(1333,1583647227,1),(1333,1604206827,2),(1333,1615701627,1),(1333,1636261227,2),(1333,1647151227,1),(1333,1667710827,2),(1333,1678600827,1),(1333,1699160427,2),(1333,1710050427,1),(1333,1730610027,2),(1333,1741500027,1),(1333,1762059627,2),(1333,1772949627,1),(1333,1793509227,2),(1333,1805004027,1),(1333,1825563627,2),(1333,1836453627,1),(1333,1857013227,2),(1333,1867903227,1),(1333,1888462827,2),(1333,1899352827,1),(1333,1919912427,2),(1333,1930802427,1),(1333,1951362027,2),(1333,1962856827,1),(1333,1983416427,2),(1333,1994306427,1),(1333,2014866027,2),(1333,2025756027,1),(1333,2046315627,2),(1333,2057205627,1),(1333,2077765227,2),(1333,2088655227,1),(1333,2109214827,2),(1333,2120104827,1),(1333,2140664427,2),(1334,-2147483648,0),(1334,-1686083584,1),(1334,323845209,4),(1334,338950809,2),(1334,354675609,3),(1334,370400410,2),(1334,386125210,3),(1334,401850011,2),(1334,417574811,3),(1334,433299612,2),(1334,449024412,3),(1334,465354012,2),(1334,481078812,3),(1334,496803613,2),(1334,512528413,3),(1334,528253213,2),(1334,543978013,3),(1334,559702813,2),(1334,575427614,3),(1334,591152414,2),(1334,606877214,3),(1334,622602014,2),(1334,638326815,3),(1334,654656415,2),(1334,670381216,3),(1334,686106016,2),(1334,701830816,3),(1334,717555617,2),(1334,733280417,3),(1334,749005218,2),(1334,764730018,3),(1334,780454819,2),(1334,796179619,3),(1334,811904419,2),(1334,828234020,3),(1334,846378020,2),(1334,859683620,3),(1334,877827621,2),(1334,891133221,3),(1334,909277221,2),(1334,922582822,3),(1334,941331622,2),(1334,954032422,3),(1334,972781222,2),(1334,985482022,3),(1334,1004230822,2),(1334,1017536422,3),(1334,1035680422,2),(1334,1048986022,3),(1334,1067130022,2),(1334,1080435622,3),(1334,1099184422,2),(1334,1111885222,3),(1334,1130634022,2),(1334,1143334823,3),(1334,1162083623,2),(1334,1174784423,3),(1334,1193533223,2),(1334,1206838823,3),(1334,1224982823,2),(1334,1238288424,3),(1334,1256432424,2),(1334,1269738024,3),(1334,1288486824,2),(1334,1301187624,3),(1334,1319936424,2),(1334,1332637224,3),(1334,1351386025,2),(1334,1364691625,3),(1334,1382835625,2),(1334,1396141225,3),(1334,1414285225,2),(1334,1427590825,3),(1334,1445734826,2),(1334,1459040426,3),(1334,1477789226,2),(1334,1490490027,3),(1334,1509238827,2),(1334,1521939627,3),(1334,1540688427,2),(1334,1553994027,3),(1334,1572138027,2),(1334,1585443627,3),(1334,1603587627,2),(1334,1616893227,3),(1334,1635642027,2),(1334,1648342827,3),(1334,1667091627,2),(1334,1679792427,3),(1334,1698541227,2),(1334,1711846827,3),(1334,1729990827,2),(1334,1743296427,3),(1334,1761440427,2),(1334,1774746027,3),(1334,1792890027,2),(1334,1806195627,3),(1334,1824944427,2),(1334,1837645227,3),(1334,1856394027,2),(1334,1869094827,3),(1334,1887843627,2),(1334,1901149227,3),(1334,1919293227,2),(1334,1932598827,3),(1334,1950742827,2),(1334,1964048427,3),(1334,1982797227,2),(1334,1995498027,3),(1334,2014246827,2),(1334,2026947627,3),(1334,2045696427,2),(1334,2058397227,3),(1334,2077146027,2),(1334,2090451627,3),(1334,2108595627,2),(1334,2121901227,3),(1334,2140045227,2),(1335,-2147483648,1),(1335,-1632076148,2),(1335,-1615145348,1),(1335,-1096921748,3),(1335,-1061670600,4),(1335,-1048973400,3),(1335,-1030221000,4),(1335,-1017523800,3),(1335,-998771400,4),(1335,-986074200,3),(1335,-966717000,4),(1335,-954624600,3),(1335,-935267400,4),(1335,-922570200,3),(1335,-903817800,4),(1335,-891120600,3),(1335,-872368200,6),(1335,-769395600,5),(1335,-765401400,3),(1335,-746044200,4),(1335,-733347000,3),(1335,-714594600,4),(1335,-701897400,3),(1335,-683145000,4),(1335,-670447800,3),(1335,-651695400,4),(1335,-638998200,3),(1335,-619641000,4),(1335,-606943800,3),(1335,-589401000,4),(1335,-576099000,3),(1335,-557951400,4),(1335,-544649400,3),(1335,-526501800,4),(1335,-513199800,3),(1335,-495052200,4),(1335,-481750200,3),(1335,-463602600,4),(1335,-450300600,3),(1335,-431548200,4),(1335,-418246200,3),(1335,-400098600,4),(1335,-386796600,3),(1335,-368649000,4),(1335,-355347000,3),(1335,-337199400,4),(1335,-323897400,3),(1335,-305749800,4),(1335,-289423800,3),(1335,-273695400,4),(1335,-257974200,3),(1335,-242245800,4),(1335,-226524600,3),(1335,-210796200,4),(1335,-195075000,3),(1335,-179346600,4),(1335,-163625400,3),(1335,-147897000,4),(1335,-131571000,3),(1335,-119903400,8),(1335,-116445600,7),(1335,-100119600,8),(1335,-84391200,7),(1335,-68670000,8),(1335,-52941600,7),(1335,-37220400,8),(1335,-21492000,7),(1335,-5770800,8),(1335,9957600,7),(1335,25678800,8),(1335,41407200,7),(1335,57733200,8),(1335,73461600,7),(1335,89182801,8),(1335,104911202,7),(1335,120632402,8),(1335,136360803,7),(1335,152082003,8),(1335,167810404,7),(1335,183531604,8),(1335,199260005,7),(1335,215586005,8),(1335,230709606,7),(1335,247035606,8),(1335,262764007,7),(1335,278485207,8),(1335,294213608,7),(1335,309934808,8),(1335,325663209,7),(1335,341384409,8),(1335,357112809,7),(1335,372834010,8),(1335,388562410,7),(1335,404888411,8),(1335,420012011,7),(1335,436338012,8),(1335,452066412,7),(1335,467787612,8),(1335,483516012,7),(1335,499237213,8),(1335,514965613,7),(1335,530686813,8),(1335,544593673,7),(1335,562129273,8),(1335,576043274,9),(1335,594180074,8),(1335,607492874,7),(1335,625633274,8),(1335,638942475,7),(1335,657082875,8),(1335,670996876,7),(1335,688532476,8),(1335,702446476,7),(1335,719982077,8),(1335,733896077,7),(1335,752036478,8),(1335,765345678,7),(1335,783486079,8),(1335,796795279,7),(1335,814935679,8),(1335,828849680,7),(1335,846385280,8),(1335,860299280,7),(1335,877834881,8),(1335,891748881,7),(1335,909284481,8),(1335,923198482,7),(1335,941338882,8),(1335,954648082,7),(1335,972788482,8),(1335,986097682,7),(1335,1004238082,8),(1335,1018152082,7),(1335,1035687682,8),(1335,1049601682,7),(1335,1067137282,8),(1335,1081051282,7),(1335,1099191682,8),(1335,1112500882,7),(1335,1130641282,8),(1335,1143950483,7),(1335,1162090883,8),(1335,1173585683,7),(1335,1194145283,8),(1335,1205035283,7),(1335,1225594883,8),(1335,1236484884,7),(1335,1257044484,8),(1335,1268539284,7),(1335,1289098884,8),(1335,1299988884,7),(1335,1320555624,8),(1335,1331445624,7),(1335,1352005225,8),(1335,1362895225,7),(1335,1383454825,8),(1335,1394344825,7),(1335,1414904425,8),(1335,1425794425,7),(1335,1446354026,8),(1335,1457848826,7),(1335,1478408426,8),(1335,1489298427,7),(1335,1509858027,8),(1335,1520748027,7),(1335,1541307627,8),(1335,1552197627,7),(1335,1572757227,8),(1335,1583647227,7),(1335,1604206827,8),(1335,1615701627,7),(1335,1636261227,8),(1335,1647151227,7),(1335,1667710827,8),(1335,1678600827,7),(1335,1699160427,8),(1335,1710050427,7),(1335,1730610027,8),(1335,1741500027,7),(1335,1762059627,8),(1335,1772949627,7),(1335,1793509227,8),(1335,1805004027,7),(1335,1825563627,8),(1335,1836453627,7),(1335,1857013227,8),(1335,1867903227,7),(1335,1888462827,8),(1335,1899352827,7),(1335,1919912427,8),(1335,1930802427,7),(1335,1951362027,8),(1335,1962856827,7),(1335,1983416427,8),(1335,1994306427,7),(1335,2014866027,8),(1335,2025756027,7),(1335,2046315627,8),(1335,2057205627,7),(1335,2077765227,8),(1335,2088655227,7),(1335,2109214827,8),(1335,2120104827,7),(1335,2140664427,8),(1336,-2147483648,1),(1336,-1827687170,2),(1336,294217208,3),(1336,309938408,2),(1336,325666809,3),(1336,341388009,2),(1336,357116409,3),(1336,372837610,2),(1336,388566010,3),(1336,404892011,2),(1336,420015611,3),(1336,436341612,2),(1336,452070012,3),(1336,467791212,2),(1336,483519612,3),(1336,499240813,2),(1336,514969213,3),(1336,530690413,2),(1336,544604413,3),(1336,562140013,2),(1336,576054014,3),(1336,594194414,2),(1336,607503614,3),(1336,625644014,2),(1336,638953215,3),(1336,657093615,2),(1336,671007616,3),(1336,688543216,2),(1336,702457216,3),(1336,719992817,2),(1336,733906817,3),(1336,752047218,2),(1336,765356418,3),(1336,783496819,2),(1336,796806019,3),(1336,814946419,2),(1336,828860420,3),(1336,846396020,2),(1336,860310020,3),(1336,877845621,2),(1336,891759621,3),(1336,909295221,2),(1336,923209222,3),(1336,941349622,2),(1336,954658822,3),(1336,972799222,2),(1336,986108422,3),(1336,1004248822,2),(1336,1018162822,3),(1336,1035698422,2),(1336,1049612422,3),(1336,1067148022,2),(1336,1081062022,3),(1336,1099202422,2),(1336,1112511622,3),(1336,1130652022,2),(1336,1143961223,3),(1336,1162101623,2),(1336,1173596423,3),(1336,1194156023,2),(1336,1205046023,3),(1336,1225605623,2),(1336,1236495624,3),(1336,1257055224,2),(1336,1268550024,3),(1336,1289109624,2),(1336,1299999624,3),(1336,1320559224,2),(1336,1331449224,3),(1336,1352008825,2),(1336,1362898825,3),(1336,1383458425,2),(1336,1394348425,3),(1336,1414908025,2),(1336,1425798025,4),(1336,1520751627,3),(1336,1541311227,2),(1336,1552201227,3),(1336,1572760827,2),(1336,1583650827,3),(1336,1604210427,2),(1336,1615705227,3),(1336,1636264827,2),(1336,1647154827,3),(1336,1667714427,2),(1336,1678604427,3),(1336,1699164027,2),(1336,1710054027,3),(1336,1730613627,2),(1336,1741503627,3),(1336,1762063227,2),(1336,1772953227,3),(1336,1793512827,2),(1336,1805007627,3),(1336,1825567227,2),(1336,1836457227,3),(1336,1857016827,2),(1336,1867906827,3),(1336,1888466427,2),(1336,1899356427,3),(1336,1919916027,2),(1336,1930806027,3),(1336,1951365627,2),(1336,1962860427,3),(1336,1983420027,2),(1336,1994310027,3),(1336,2014869627,2),(1336,2025759627,3),(1336,2046319227,2),(1336,2057209227,3),(1336,2077768827,2),(1336,2088658827,3),(1336,2109218427,2),(1336,2120108427,3),(1336,2140668027,2),(1337,-2147483648,0),(1337,-1825098836,1),(1338,-2147483648,0),(1338,-1825098836,1),(1339,-2147483648,0),(1339,-1617040676,2),(1339,123055202,1),(1339,130914003,2),(1339,422344811,1),(1339,433054812,2),(1339,669708016,1),(1339,684219616,2),(1339,1146376823,1),(1339,1159678823,2),(1340,-2147483648,1),(1340,-1230749160,3),(1340,722926817,2),(1340,728884817,3),(1341,-2147483648,0),(1341,-1730578040,1),(1341,176010304,2),(1341,662698816,3),(1342,-2147483648,0),(1342,-2131645536,2),(1342,-1696276800,1),(1342,-1680469200,2),(1342,-1632074400,1),(1342,-1615143600,2),(1342,-1566763200,1),(1342,-1557090000,2),(1342,-1535486400,1),(1342,-1524949200,2),(1342,-1504468800,1),(1342,-1493413200,2),(1342,-1472414400,1),(1342,-1461963600,2),(1342,-1440964800,1),(1342,-1429390800,2),(1342,-1409515200,1),(1342,-1396731600,2),(1342,-1376856000,1),(1342,-1366491600,2),(1342,-1346616000,1),(1342,-1333832400,2),(1342,-1313956800,1),(1342,-1303678800,2),(1342,-1282507200,1),(1342,-1272661200,2),(1342,-1251057600,1),(1342,-1240088400,2),(1342,-1219608000,1),(1342,-1207429200,2),(1342,-1188763200,1),(1342,-1175979600,2),(1342,-1157313600,1),(1342,-1143925200,2),(1342,-1124049600,1),(1342,-1113771600,2),(1342,-1091390400,1),(1342,-1081026000,2),(1342,-1059854400,1),(1342,-1050786000,2),(1342,-1030910400,1),(1342,-1018126800,2),(1342,-999460800,1),(1342,-986677200,2),(1342,-965592000,1),(1342,-955227600,2),(1342,-935956800,1),(1342,-923173200,2),(1342,-904507200,1),(1342,-891723600,2),(1342,-880221600,3),(1342,-769395600,4),(1342,-765399600,2),(1342,-747252000,1),(1342,-733950000,2),(1342,-715802400,1),(1342,-702500400,2),(1342,-684352800,1),(1342,-671050800,2),(1342,-652903200,1),(1342,-639601200,2),(1342,-589399200,1),(1342,-576097200,2),(1342,-557949600,1),(1342,-544647600,2),(1342,-526500000,1),(1342,-513198000,2),(1342,-495050400,1),(1342,-481748400,2),(1342,-431546400,1),(1342,-418244400,2),(1342,-400096800,1),(1342,-386794800,2),(1342,-368647200,1),(1342,-355345200,2),(1342,-337197600,1),(1342,-323895600,2),(1342,-242244000,1),(1342,-226522800,2),(1342,-210794400,1),(1342,-195073200,2),(1342,-179344800,1),(1342,-163623600,2),(1342,-147895200,1),(1342,-131569200,2),(1342,-116445600,1),(1342,-100119600,2),(1342,-84391200,1),(1342,-68670000,2),(1342,-52941600,1),(1342,-37220400,2),(1342,-21492000,1),(1342,-5770800,2),(1342,9957600,1),(1342,25678800,2),(1342,41407200,1),(1342,57733200,2),(1342,73461600,1),(1342,89182801,2),(1342,104911202,1),(1342,120632402,2),(1342,136360803,1),(1342,152082003,2),(1342,167810404,1),(1342,183531604,2),(1342,199260005,1),(1342,215586005,2),(1342,230709606,1),(1342,247035606,2),(1342,262764007,1),(1342,278485207,2),(1342,294213608,1),(1342,309934808,2),(1342,325663209,1),(1342,341384409,2),(1342,357112809,1),(1342,372834010,2),(1342,388562410,1),(1342,404888411,2),(1342,420012011,1),(1342,436338012,2),(1342,452066412,1),(1342,467787612,2),(1342,483516012,1),(1342,499237213,2),(1342,514965613,1),(1342,530686813,2),(1342,544600813,1),(1342,562136413,2),(1342,576050414,1),(1342,594190814,2),(1342,607500014,1),(1342,625640414,2),(1342,638949615,1),(1342,657090015,2),(1342,671004016,1),(1342,688539616,2),(1342,702453616,1),(1342,719989217,2),(1342,733903217,1),(1342,752043618,2),(1342,765352818,1),(1342,783493219,2),(1342,796802419,1),(1342,814942819,2),(1342,828856820,1),(1342,846392420,2),(1342,860306420,1),(1342,877842021,2),(1342,891756021,1),(1342,909291621,2),(1342,923205622,1),(1342,941346022,2),(1342,954655222,1),(1342,972795622,2),(1342,986104822,1),(1342,1004245222,2),(1342,1018159222,1),(1342,1035694822,2),(1342,1049608822,1),(1342,1067144422,2),(1342,1081058422,1),(1342,1099198822,2),(1342,1112508022,1),(1342,1130648422,2),(1342,1143957623,1),(1342,1162098023,2),(1342,1173592823,1),(1342,1194152423,2),(1342,1205042423,1),(1342,1225602023,2),(1342,1236492024,1),(1342,1257051624,2),(1342,1268546424,1),(1342,1289106024,2),(1342,1299996024,1),(1342,1320555624,2),(1342,1331445624,1),(1342,1352005225,2),(1342,1362895225,1),(1342,1383454825,2),(1342,1394344825,1),(1342,1414904425,2),(1342,1425794425,1),(1342,1446354026,2),(1342,1457848826,1),(1342,1478408426,2),(1342,1489298427,1),(1342,1509858027,2),(1342,1520748027,1),(1342,1541307627,2),(1342,1552197627,1),(1342,1572757227,2),(1342,1583647227,1),(1342,1604206827,2),(1342,1615701627,1),(1342,1636261227,2),(1342,1647151227,1),(1342,1667710827,2),(1342,1678600827,1),(1342,1699160427,2),(1342,1710050427,1),(1342,1730610027,2),(1342,1741500027,1),(1342,1762059627,2),(1342,1772949627,1),(1342,1793509227,2),(1342,1805004027,1),(1342,1825563627,2),(1342,1836453627,1),(1342,1857013227,2),(1342,1867903227,1),(1342,1888462827,2),(1342,1899352827,1),(1342,1919912427,2),(1342,1930802427,1),(1342,1951362027,2),(1342,1962856827,1),(1342,1983416427,2),(1342,1994306427,1),(1342,2014866027,2),(1342,2025756027,1),(1342,2046315627,2),(1342,2057205627,1),(1342,2077765227,2),(1342,2088655227,1),(1342,2109214827,2),(1342,2120104827,1),(1342,2140664427,2),(1343,-2147483648,1),(1343,-1402813824,3),(1343,-1311534000,2),(1343,-1300996800,3),(1343,-933534000,2),(1343,-925675200,3),(1343,-902084400,2),(1343,-893620800,3),(1343,-870030000,2),(1343,-862171200,3),(1343,-775681200,2),(1343,-767822400,3),(1343,-744231600,2),(1343,-736372800,3),(1343,-144702000,2),(1343,-134251200,3),(1343,-113425200,2),(1343,-102542400,3),(1343,-86295600,2),(1343,-72907200,3),(1343,-54154800,2),(1343,-41457600,3),(1343,-21495600,2),(1343,-5774400,3),(1343,9954000,2),(1343,25675200,3),(1343,41403600,2),(1343,57729600,3),(1343,73458000,2),(1343,87364801,3),(1343,104907602,2),(1343,118900802,3),(1343,136357203,2),(1343,150436803,3),(1343,167806804,2),(1343,183528004,3),(1343,199256405,2),(1343,215582405,3),(1343,230706006,2),(1343,247032006,3),(1343,263365207,2),(1343,276667207,3),(1343,290581208,2),(1343,308721608,3),(1343,322030809,2),(1343,340171209,3),(1343,358318809,2),(1343,371620810,3),(1343,389768410,2),(1343,403070411,3),(1343,421218011,2),(1343,434520012,3),(1343,452667612,2),(1343,466574412,3),(1343,484117212,2),(1343,498024013,3),(1343,511333213,2),(1343,529473613,3),(1343,542782813,2),(1343,560923213,3),(1343,574837214,2),(1343,592372814,3),(1343,606286814,2),(1343,623822414,3),(1343,638946015,2),(1343,655876815,3),(1343,671000416,2),(1343,687330016,4),(1343,702450016,2),(1343,718779617,4),(1343,733899617,2),(1343,750229218,4),(1343,765349218,2),(1343,781678819,4),(1343,796798819,2),(1343,813128419,4),(1343,828853220,2),(1343,844578020,4),(1343,860302820,2),(1343,876632421,4),(1343,891147621,5),(1343,909291621,4),(1343,922597222,5),(1343,941346022,4),(1343,954651622,5),(1343,972795622,4),(1343,986101222,5),(1343,1004245222,4),(1343,1018155622,5),(1343,1035694822,4),(1343,1049605222,5),(1343,1067144422,4),(1343,1080450022,5),(1343,1162098023,4),(1343,1173589223,5),(1343,1193547623,4),(1343,1205643623,5),(1343,1224997223,4),(1343,1236488424,5),(1343,1256446824,4),(1343,1268542824,5),(1343,1288501224,4),(1343,1300597224,5),(1343,1321160424,4),(1343,1333256424,5),(1343,1352005225,4),(1343,1362891625,5),(1343,1383454825,4),(1343,1394341225,5),(1343,1414904425,4),(1343,1425790825,5),(1343,1446354026,4),(1343,1457845226,5),(1343,1478408426,4),(1343,1489294827,5),(1343,1509858027,4),(1343,1520744427,5),(1343,1541307627,4),(1343,1552194027,5),(1343,1572757227,4),(1343,1583643627,5),(1343,1604206827,4),(1343,1615698027,5),(1343,1636261227,4),(1343,1647147627,5),(1343,1667710827,4),(1343,1678597227,5),(1343,1699160427,4),(1343,1710046827,5),(1343,1730610027,4),(1343,1741496427,5),(1343,1762059627,4),(1343,1772946027,5),(1343,1793509227,4),(1343,1805000427,5),(1343,1825563627,4),(1343,1836450027,5),(1343,1857013227,4),(1343,1867899627,5),(1343,1888462827,4),(1343,1899349227,5),(1343,1919912427,4),(1343,1930798827,5),(1343,1951362027,4),(1343,1962853227,5),(1343,1983416427,4),(1343,1994302827,5),(1343,2014866027,4),(1343,2025752427,5),(1343,2046315627,4),(1343,2057202027,5),(1343,2077765227,4),(1343,2088651627,5),(1343,2109214827,4),(1343,2120101227,5),(1343,2140664427,4),(1344,-2147483648,0),(1344,-1514739600,1),(1344,-1343066400,2),(1344,-1234807200,1),(1344,-1220292000,2),(1344,-1207159200,1),(1344,-1191344400,2),(1344,-873828000,1),(1344,-661539600,3),(1344,28800,1),(1344,828867620,4),(1344,846403220,1),(1344,860317220,4),(1344,877852821,1),(1344,891766821,4),(1344,909302421,1),(1345,-2147483648,2),(1345,-1633276800,1),(1345,-1615136400,2),(1345,-1601827200,1),(1345,-1583686800,2),(1345,-900259200,1),(1345,-891795600,2),(1345,-880214400,3),(1345,-769395600,4),(1345,-765392400,2),(1345,-747244800,1),(1345,-733942800,2),(1345,-715795200,1),(1345,-702493200,2),(1345,-684345600,1),(1345,-671043600,2),(1345,-652896000,1),(1345,-639594000,2),(1345,-620841600,1),(1345,-608144400,2),(1345,-589392000,1),(1345,-576090000,2),(1345,-557942400,1),(1345,-544640400,2),(1345,-526492800,1),(1345,-513190800,2),(1345,-495043200,1),(1345,-481741200,2),(1345,-463593600,5),(1345,-386787600,2),(1345,-368640000,5),(1345,-21488400,6),(1345,-5767200,5),(1345,9961200,6),(1345,25682400,5),(1345,1143961223,6),(1345,1162101623,5),(1345,1173596423,6),(1345,1194156023,5),(1345,1205046023,6),(1345,1225605623,5),(1345,1236495624,6),(1345,1257055224,5),(1345,1268550024,6),(1345,1289109624,5),(1345,1299999624,6),(1345,1320559224,5),(1345,1331449224,6),(1345,1352008825,5),(1345,1362898825,6),(1345,1383458425,5),(1345,1394348425,6),(1345,1414908025,5),(1345,1425798025,6),(1345,1446357626,5),(1345,1457852426,6),(1345,1478412026,5),(1345,1489302027,6),(1345,1509861627,5),(1345,1520751627,6),(1345,1541311227,5),(1345,1552201227,6),(1345,1572760827,5),(1345,1583650827,6),(1345,1604210427,5),(1345,1615705227,6),(1345,1636264827,5),(1345,1647154827,6),(1345,1667714427,5),(1345,1678604427,6),(1345,1699164027,5),(1345,1710054027,6),(1345,1730613627,5),(1345,1741503627,6),(1345,1762063227,5),(1345,1772953227,6),(1345,1793512827,5),(1345,1805007627,6),(1345,1825567227,5),(1345,1836457227,6),(1345,1857016827,5),(1345,1867906827,6),(1345,1888466427,5),(1345,1899356427,6),(1345,1919916027,5),(1345,1930806027,6),(1345,1951365627,5),(1345,1962860427,6),(1345,1983420027,5),(1345,1994310027,6),(1345,2014869627,5),(1345,2025759627,6),(1345,2046319227,5),(1345,2057209227,6),(1345,2077768827,5),(1345,2088658827,6),(1345,2109218427,5),(1345,2120108427,6),(1345,2140668027,5),(1346,-2147483648,2),(1346,-1633276800,1),(1346,-1615136400,2),(1346,-1601827200,1),(1346,-1583686800,2),(1346,-880214400,3),(1346,-769395600,4),(1346,-765392400,2),(1346,-715795200,1),(1346,-702493200,2),(1346,-684345600,1),(1346,-671043600,2),(1346,-652896000,1),(1346,-639594000,2),(1346,-620841600,1),(1346,-608144400,2),(1346,-589392000,1),(1346,-576090000,2),(1346,-557942400,1),(1346,-544640400,2),(1346,-526492800,1),(1346,-513190800,2),(1346,-495043200,1),(1346,-481741200,2),(1346,-463593600,1),(1346,-447267600,2),(1346,-431539200,1),(1346,-415818000,2),(1346,-400089600,1),(1346,-386787600,2),(1346,-368640000,1),(1346,-355338000,2),(1346,-337190400,1),(1346,-321469200,2),(1346,-305740800,1),(1346,-289414800,2),(1346,-273686400,1),(1346,-257965200,2),(1346,-242236800,5),(1346,-195066000,2),(1346,-84384000,1),(1346,-68662800,2),(1346,-52934400,1),(1346,-37213200,2),(1346,-21484800,1),(1346,-5763600,2),(1346,9964800,1),(1346,25686000,2),(1346,41414400,1),(1346,57740400,2),(1346,73468800,1),(1346,89190001,2),(1346,104918402,1),(1346,120639602,2),(1346,126691203,1),(1346,152089203,2),(1346,162374404,1),(1346,183538804,2),(1346,199267205,1),(1346,215593205,2),(1346,230716806,1),(1346,247042806,2),(1346,262771207,1),(1346,278492407,2),(1346,294220808,1),(1346,309942008,2),(1346,325670409,1),(1346,341391609,2),(1346,357120009,1),(1346,372841210,2),(1346,388569610,1),(1346,404895611,2),(1346,420019211,1),(1346,436345212,2),(1346,452073612,1),(1346,467794812,2),(1346,483523212,1),(1346,499244413,2),(1346,514972813,1),(1346,530694013,2),(1346,544608013,1),(1346,562143613,2),(1346,576057614,1),(1346,594198014,2),(1346,607507214,1),(1346,625647614,2),(1346,638956815,1),(1346,657097215,2),(1346,671011216,1),(1346,688546816,5),(1346,1143961223,1),(1346,1162105223,2),(1346,1173600023,1),(1346,1194159623,2),(1346,1205049623,1),(1346,1225609223,2),(1346,1236499224,1),(1346,1257058824,2),(1346,1268553624,1),(1346,1289113224,2),(1346,1300003224,1),(1346,1320562824,2),(1346,1331452824,1),(1346,1352012425,2),(1346,1362902425,1),(1346,1383462025,2),(1346,1394352025,1),(1346,1414911625,2),(1346,1425801625,1),(1346,1446361226,2),(1346,1457856026,1),(1346,1478415626,2),(1346,1489305627,1),(1346,1509865227,2),(1346,1520755227,1),(1346,1541314827,2),(1346,1552204827,1),(1346,1572764427,2),(1346,1583654427,1),(1346,1604214027,2),(1346,1615708827,1),(1346,1636268427,2),(1346,1647158427,1),(1346,1667718027,2),(1346,1678608027,1),(1346,1699167627,2),(1346,1710057627,1),(1346,1730617227,2),(1346,1741507227,1),(1346,1762066827,2),(1346,1772956827,1),(1346,1793516427,2),(1346,1805011227,1),(1346,1825570827,2),(1346,1836460827,1),(1346,1857020427,2),(1346,1867910427,1),(1346,1888470027,2),(1346,1899360027,1),(1346,1919919627,2),(1346,1930809627,1),(1346,1951369227,2),(1346,1962864027,1),(1346,1983423627,2),(1346,1994313627,1),(1346,2014873227,2),(1346,2025763227,1),(1346,2046322827,2),(1346,2057212827,1),(1346,2077772427,2),(1346,2088662427,1),(1346,2109222027,2),(1346,2120112027,1),(1346,2140671627,2),(1347,-2147483648,2),(1347,-1633276800,1),(1347,-1615136400,2),(1347,-1601827200,1),(1347,-1583686800,2),(1347,-880214400,3),(1347,-769395600,4),(1347,-765392400,2),(1347,-589392000,1),(1347,-576090000,2),(1347,-495043200,1),(1347,-481741200,2),(1347,-463593600,1),(1347,-450291600,2),(1347,-431539200,1),(1347,-418237200,2),(1347,-400089600,1),(1347,-386787600,2),(1347,-368640000,1),(1347,-355338000,2),(1347,-337190400,1),(1347,-323888400,2),(1347,-305740800,1),(1347,-292438800,2),(1347,-273686400,5),(1347,-21488400,6),(1347,-5767200,5),(1347,9961200,6),(1347,25682400,5),(1347,41410800,6),(1347,57736800,5),(1347,73465200,6),(1347,89186401,5),(1347,104914802,6),(1347,120636002,5),(1347,126687603,1),(1347,152089203,5),(1347,162370804,6),(1347,183535204,5),(1347,1143961223,6),(1347,1162101623,5),(1347,1173596423,6),(1347,1194156023,5),(1347,1205046023,6),(1347,1225605623,5),(1347,1236495624,6),(1347,1257055224,5),(1347,1268550024,6),(1347,1289109624,5),(1347,1299999624,6),(1347,1320559224,5),(1347,1331449224,6),(1347,1352008825,5),(1347,1362898825,6),(1347,1383458425,5),(1347,1394348425,6),(1347,1414908025,5),(1347,1425798025,6),(1347,1446357626,5),(1347,1457852426,6),(1347,1478412026,5),(1347,1489302027,6),(1347,1509861627,5),(1347,1520751627,6),(1347,1541311227,5),(1347,1552201227,6),(1347,1572760827,5),(1347,1583650827,6),(1347,1604210427,5),(1347,1615705227,6),(1347,1636264827,5),(1347,1647154827,6),(1347,1667714427,5),(1347,1678604427,6),(1347,1699164027,5),(1347,1710054027,6),(1347,1730613627,5),(1347,1741503627,6),(1347,1762063227,5),(1347,1772953227,6),(1347,1793512827,5),(1347,1805007627,6),(1347,1825567227,5),(1347,1836457227,6),(1347,1857016827,5),(1347,1867906827,6),(1347,1888466427,5),(1347,1899356427,6),(1347,1919916027,5),(1347,1930806027,6),(1347,1951365627,5),(1347,1962860427,6),(1347,1983420027,5),(1347,1994310027,6),(1347,2014869627,5),(1347,2025759627,6),(1347,2046319227,5),(1347,2057209227,6),(1347,2077768827,5),(1347,2088658827,6),(1347,2109218427,5),(1347,2120108427,6),(1347,2140668027,5),(1348,-2147483648,2),(1348,-1633276800,1),(1348,-1615136400,2),(1348,-1601827200,1),(1348,-1583686800,2),(1348,-880214400,3),(1348,-769395600,4),(1348,-765392400,2),(1348,-462996000,1),(1348,-450291600,2),(1348,-431539200,1),(1348,-418237200,2),(1348,-400089600,1),(1348,-386787600,2),(1348,-368640000,1),(1348,-355338000,2),(1348,-337190400,1),(1348,-323888400,2),(1348,-305740800,1),(1348,-292438800,2),(1348,-273686400,1),(1348,-257965200,2),(1348,-242236800,1),(1348,-226515600,2),(1348,-210787200,1),(1348,-195066000,2),(1348,-179337600,1),(1348,-163616400,2),(1348,-147888000,5),(1348,-100112400,2),(1348,-84384000,1),(1348,-68662800,2),(1348,-52934400,1),(1348,-37213200,2),(1348,-21484800,1),(1348,-5763600,2),(1348,9964800,1),(1348,25686000,2),(1348,41414400,1),(1348,57740400,2),(1348,73468800,1),(1348,89190001,2),(1348,104918402,1),(1348,120639602,2),(1348,126691203,1),(1348,152089203,2),(1348,162374404,1),(1348,183538804,2),(1348,199267205,1),(1348,215593205,2),(1348,230716806,1),(1348,247042806,5),(1348,1143961223,1),(1348,1162105223,2),(1348,1173600023,1),(1348,1194159623,5),(1348,1205046023,6),(1348,1225605623,5),(1348,1236495624,6),(1348,1257055224,5),(1348,1268550024,6),(1348,1289109624,5),(1348,1299999624,6),(1348,1320559224,5),(1348,1331449224,6),(1348,1352008825,5),(1348,1362898825,6),(1348,1383458425,5),(1348,1394348425,6),(1348,1414908025,5),(1348,1425798025,6),(1348,1446357626,5),(1348,1457852426,6),(1348,1478412026,5),(1348,1489302027,6),(1348,1509861627,5),(1348,1520751627,6),(1348,1541311227,5),(1348,1552201227,6),(1348,1572760827,5),(1348,1583650827,6),(1348,1604210427,5),(1348,1615705227,6),(1348,1636264827,5),(1348,1647154827,6),(1348,1667714427,5),(1348,1678604427,6),(1348,1699164027,5),(1348,1710054027,6),(1348,1730613627,5),(1348,1741503627,6),(1348,1762063227,5),(1348,1772953227,6),(1348,1793512827,5),(1348,1805007627,6),(1348,1825567227,5),(1348,1836457227,6),(1348,1857016827,5),(1348,1867906827,6),(1348,1888466427,5),(1348,1899356427,6),(1348,1919916027,5),(1348,1930806027,6),(1348,1951365627,5),(1348,1962860427,6),(1348,1983420027,5),(1348,1994310027,6),(1348,2014869627,5),(1348,2025759627,6),(1348,2046319227,5),(1348,2057209227,6),(1348,2077768827,5),(1348,2088658827,6),(1348,2109218427,5),(1348,2120108427,6),(1348,2140668027,5),(1349,-2147483648,2),(1349,-1633276800,1),(1349,-1615136400,2),(1349,-1601827200,1),(1349,-1583686800,2),(1349,-880214400,3),(1349,-769395600,4),(1349,-765392400,2),(1349,-462996000,1),(1349,-450291600,2),(1349,-431539200,1),(1349,-418237200,2),(1349,-400089600,1),(1349,-386787600,2),(1349,-368640000,1),(1349,-355338000,2),(1349,-337190400,1),(1349,-323888400,2),(1349,-305740800,1),(1349,-292438800,2),(1349,-273686400,1),(1349,-257965200,2),(1349,-242236800,1),(1349,-226515600,2),(1349,-210787200,1),(1349,-195066000,2),(1349,-179337600,5),(1349,-68662800,2),(1349,-52934400,1),(1349,-37213200,2),(1349,-21484800,6),(1349,-5767200,5),(1349,9961200,6),(1349,25682400,5),(1349,1143961223,1),(1349,1162105223,2),(1349,1173600023,1),(1349,1194159623,2),(1349,1205049623,1),(1349,1225609223,2),(1349,1236499224,1),(1349,1257058824,2),(1349,1268553624,1),(1349,1289113224,2),(1349,1300003224,1),(1349,1320562824,2),(1349,1331452824,1),(1349,1352012425,2),(1349,1362902425,1),(1349,1383462025,2),(1349,1394352025,1),(1349,1414911625,2),(1349,1425801625,1),(1349,1446361226,2),(1349,1457856026,1),(1349,1478415626,2),(1349,1489305627,1),(1349,1509865227,2),(1349,1520755227,1),(1349,1541314827,2),(1349,1552204827,1),(1349,1572764427,2),(1349,1583654427,1),(1349,1604214027,2),(1349,1615708827,1),(1349,1636268427,2),(1349,1647158427,1),(1349,1667718027,2),(1349,1678608027,1),(1349,1699167627,2),(1349,1710057627,1),(1349,1730617227,2),(1349,1741507227,1),(1349,1762066827,2),(1349,1772956827,1),(1349,1793516427,2),(1349,1805011227,1),(1349,1825570827,2),(1349,1836460827,1),(1349,1857020427,2),(1349,1867910427,1),(1349,1888470027,2),(1349,1899360027,1),(1349,1919919627,2),(1349,1930809627,1),(1349,1951369227,2),(1349,1962864027,1),(1349,1983423627,2),(1349,1994313627,1),(1349,2014873227,2),(1349,2025763227,1),(1349,2046322827,2),(1349,2057212827,1),(1349,2077772427,2),(1349,2088662427,1),(1349,2109222027,2),(1349,2120112027,1),(1349,2140671627,2),(1350,-2147483648,2),(1350,-1633276800,1),(1350,-1615136400,2),(1350,-1601827200,1),(1350,-1583686800,2),(1350,-880214400,3),(1350,-769395600,4),(1350,-765392400,2),(1350,-495043200,5),(1350,-21488400,6),(1350,-5767200,5),(1350,9961200,6),(1350,25682400,5),(1350,41410800,6),(1350,57736800,5),(1350,73465200,6),(1350,89186401,5),(1350,1143961223,6),(1350,1162101623,5),(1350,1173596423,6),(1350,1194156023,5),(1350,1205046023,6),(1350,1225605623,5),(1350,1236495624,6),(1350,1257055224,5),(1350,1268550024,6),(1350,1289109624,5),(1350,1299999624,6),(1350,1320559224,5),(1350,1331449224,6),(1350,1352008825,5),(1350,1362898825,6),(1350,1383458425,5),(1350,1394348425,6),(1350,1414908025,5),(1350,1425798025,6),(1350,1446357626,5),(1350,1457852426,6),(1350,1478412026,5),(1350,1489302027,6),(1350,1509861627,5),(1350,1520751627,6),(1350,1541311227,5),(1350,1552201227,6),(1350,1572760827,5),(1350,1583650827,6),(1350,1604210427,5),(1350,1615705227,6),(1350,1636264827,5),(1350,1647154827,6),(1350,1667714427,5),(1350,1678604427,6),(1350,1699164027,5),(1350,1710054027,6),(1350,1730613627,5),(1350,1741503627,6),(1350,1762063227,5),(1350,1772953227,6),(1350,1793512827,5),(1350,1805007627,6),(1350,1825567227,5),(1350,1836457227,6),(1350,1857016827,5),(1350,1867906827,6),(1350,1888466427,5),(1350,1899356427,6),(1350,1919916027,5),(1350,1930806027,6),(1350,1951365627,5),(1350,1962860427,6),(1350,1983420027,5),(1350,1994310027,6),(1350,2014869627,5),(1350,2025759627,6),(1350,2046319227,5),(1350,2057209227,6),(1350,2077768827,5),(1350,2088658827,6),(1350,2109218427,5),(1350,2120108427,6),(1350,2140668027,5),(1351,-2147483648,2),(1351,-1633276800,1),(1351,-1615136400,2),(1351,-1601827200,1),(1351,-1583686800,2),(1351,-880214400,3),(1351,-769395600,4),(1351,-765392400,2),(1351,-747244800,1),(1351,-733942800,2),(1351,-526492800,1),(1351,-513190800,2),(1351,-495043200,1),(1351,-481741200,2),(1351,-462996000,1),(1351,-450291600,2),(1351,-431539200,1),(1351,-418237200,2),(1351,-400089600,1),(1351,-386787600,2),(1351,-368640000,1),(1351,-355338000,2),(1351,-337190400,1),(1351,-323888400,2),(1351,-305740800,1),(1351,-289414800,2),(1351,-273686400,1),(1351,-260989200,2),(1351,-242236800,1),(1351,-226515600,2),(1351,-210787200,1),(1351,-195066000,2),(1351,-179337600,5),(1351,-21488400,6),(1351,-5767200,5),(1351,9961200,6),(1351,25682400,5),(1351,1143961223,1),(1351,1162105223,2),(1351,1173600023,1),(1351,1194159623,5),(1351,1205046023,6),(1351,1225605623,5),(1351,1236495624,6),(1351,1257055224,5),(1351,1268550024,6),(1351,1289109624,5),(1351,1299999624,6),(1351,1320559224,5),(1351,1331449224,6),(1351,1352008825,5),(1351,1362898825,6),(1351,1383458425,5),(1351,1394348425,6),(1351,1414908025,5),(1351,1425798025,6),(1351,1446357626,5),(1351,1457852426,6),(1351,1478412026,5),(1351,1489302027,6),(1351,1509861627,5),(1351,1520751627,6),(1351,1541311227,5),(1351,1552201227,6),(1351,1572760827,5),(1351,1583650827,6),(1351,1604210427,5),(1351,1615705227,6),(1351,1636264827,5),(1351,1647154827,6),(1351,1667714427,5),(1351,1678604427,6),(1351,1699164027,5),(1351,1710054027,6),(1351,1730613627,5),(1351,1741503627,6),(1351,1762063227,5),(1351,1772953227,6),(1351,1793512827,5),(1351,1805007627,6),(1351,1825567227,5),(1351,1836457227,6),(1351,1857016827,5),(1351,1867906827,6),(1351,1888466427,5),(1351,1899356427,6),(1351,1919916027,5),(1351,1930806027,6),(1351,1951365627,5),(1351,1962860427,6),(1351,1983420027,5),(1351,1994310027,6),(1351,2014869627,5),(1351,2025759627,6),(1351,2046319227,5),(1351,2057209227,6),(1351,2077768827,5),(1351,2088658827,6),(1351,2109218427,5),(1351,2120108427,6),(1351,2140668027,5),(1352,-2147483648,2),(1352,-1633276800,1),(1352,-1615136400,2),(1352,-1601827200,1),(1352,-1583686800,2),(1352,-880214400,3),(1352,-769395600,4),(1352,-765392400,2),(1352,-747244800,1),(1352,-733942800,2),(1352,-715795200,1),(1352,-702493200,2),(1352,-684345600,1),(1352,-671043600,2),(1352,-652896000,1),(1352,-639594000,2),(1352,-620841600,1),(1352,-608144400,2),(1352,-589392000,1),(1352,-576090000,2),(1352,-557942400,1),(1352,-544640400,2),(1352,-526492800,1),(1352,-513190800,2),(1352,-495043200,1),(1352,-481741200,2),(1352,-463593600,1),(1352,-447267600,2),(1352,-431539200,1),(1352,-415818000,2),(1352,-400089600,1),(1352,-386787600,2),(1352,-368640000,1),(1352,-355338000,2),(1352,-337190400,1),(1352,-323888400,2),(1352,-305740800,1),(1352,-292438800,2),(1352,-273686400,5),(1352,-21488400,6),(1352,-5767200,5),(1352,9961200,6),(1352,25682400,5),(1352,1143961223,1),(1352,1162105223,2),(1352,1173600023,6),(1352,1194156023,5),(1352,1205046023,6),(1352,1225605623,5),(1352,1236495624,6),(1352,1257055224,5),(1352,1268550024,6),(1352,1289109624,5),(1352,1299999624,6),(1352,1320559224,5),(1352,1331449224,6),(1352,1352008825,5),(1352,1362898825,6),(1352,1383458425,5),(1352,1394348425,6),(1352,1414908025,5),(1352,1425798025,6),(1352,1446357626,5),(1352,1457852426,6),(1352,1478412026,5),(1352,1489302027,6),(1352,1509861627,5),(1352,1520751627,6),(1352,1541311227,5),(1352,1552201227,6),(1352,1572760827,5),(1352,1583650827,6),(1352,1604210427,5),(1352,1615705227,6),(1352,1636264827,5),(1352,1647154827,6),(1352,1667714427,5),(1352,1678604427,6),(1352,1699164027,5),(1352,1710054027,6),(1352,1730613627,5),(1352,1741503627,6),(1352,1762063227,5),(1352,1772953227,6),(1352,1793512827,5),(1352,1805007627,6),(1352,1825567227,5),(1352,1836457227,6),(1352,1857016827,5),(1352,1867906827,6),(1352,1888466427,5),(1352,1899356427,6),(1352,1919916027,5),(1352,1930806027,6),(1352,1951365627,5),(1352,1962860427,6),(1352,1983420027,5),(1352,1994310027,6),(1352,2014869627,5),(1352,2025759627,6),(1352,2046319227,5),(1352,2057209227,6),(1352,2077768827,5),(1352,2088658827,6),(1352,2109218427,5),(1352,2120108427,6),(1352,2140668027,5),(1353,-2147483648,2),(1353,-1633276800,1),(1353,-1615136400,2),(1353,-1601827200,1),(1353,-1583686800,2),(1353,-900259200,1),(1353,-891795600,2),(1353,-880214400,3),(1353,-769395600,4),(1353,-765392400,2),(1353,-747244800,1),(1353,-733942800,2),(1353,-715795200,1),(1353,-702493200,2),(1353,-684345600,1),(1353,-671043600,2),(1353,-652896000,1),(1353,-639594000,2),(1353,-620841600,1),(1353,-608144400,2),(1353,-589392000,1),(1353,-576090000,2),(1353,-557942400,1),(1353,-544640400,2),(1353,-526492800,1),(1353,-513190800,2),(1353,-495043200,1),(1353,-481741200,2),(1353,-463593600,5),(1353,-386787600,2),(1353,-368640000,5),(1353,-21488400,6),(1353,-5767200,5),(1353,9961200,6),(1353,25682400,5),(1353,1143961223,6),(1353,1162101623,5),(1353,1173596423,6),(1353,1194156023,5),(1353,1205046023,6),(1353,1225605623,5),(1353,1236495624,6),(1353,1257055224,5),(1353,1268550024,6),(1353,1289109624,5),(1353,1299999624,6),(1353,1320559224,5),(1353,1331449224,6),(1353,1352008825,5),(1353,1362898825,6),(1353,1383458425,5),(1353,1394348425,6),(1353,1414908025,5),(1353,1425798025,6),(1353,1446357626,5),(1353,1457852426,6),(1353,1478412026,5),(1353,1489302027,6),(1353,1509861627,5),(1353,1520751627,6),(1353,1541311227,5),(1353,1552201227,6),(1353,1572760827,5),(1353,1583650827,6),(1353,1604210427,5),(1353,1615705227,6),(1353,1636264827,5),(1353,1647154827,6),(1353,1667714427,5),(1353,1678604427,6),(1353,1699164027,5),(1353,1710054027,6),(1353,1730613627,5),(1353,1741503627,6),(1353,1762063227,5),(1353,1772953227,6),(1353,1793512827,5),(1353,1805007627,6),(1353,1825567227,5),(1353,1836457227,6),(1353,1857016827,5),(1353,1867906827,6),(1353,1888466427,5),(1353,1899356427,6),(1353,1919916027,5),(1353,1930806027,6),(1353,1951365627,5),(1353,1962860427,6),(1353,1983420027,5),(1353,1994310027,6),(1353,2014869627,5),(1353,2025759627,6),(1353,2046319227,5),(1353,2057209227,6),(1353,2077768827,5),(1353,2088658827,6),(1353,2109218427,5),(1353,2120108427,6),(1353,2140668027,5),(1354,-2147483648,0),(1354,-536457600,2),(1354,-147888000,1),(1354,-131558400,2),(1354,294228008,3),(1354,325674009,4),(1354,341395209,3),(1354,357123609,4),(1354,372844810,3),(1354,388573210,4),(1354,404899211,3),(1354,420022811,4),(1354,436348812,3),(1354,452077212,4),(1354,467798412,3),(1354,483526812,4),(1354,499248013,3),(1354,514976413,4),(1354,530697613,3),(1354,544611613,4),(1354,562147213,3),(1354,576061214,4),(1354,594201614,3),(1354,607510814,4),(1354,625651214,3),(1354,638960415,4),(1354,657100815,3),(1354,671014816,4),(1354,688550416,3),(1354,702464416,4),(1354,720000017,3),(1354,733914017,4),(1354,752054418,3),(1354,765363618,4),(1354,783504019,3),(1354,796813219,4),(1354,814953619,3),(1354,828867620,4),(1354,846403220,3),(1354,860317220,4),(1354,877852821,3),(1354,891766821,4),(1354,909302421,3),(1354,923216422,4),(1354,941356822,3),(1354,954666022,4),(1354,972806422,3),(1354,986115622,4),(1354,1004256022,3),(1354,1018170022,4),(1354,1035705622,3),(1354,1049619622,4),(1354,1067155222,3),(1354,1081069222,4),(1354,1099209622,3),(1354,1112518822,4),(1354,1130659222,3),(1354,1143968423,4),(1354,1162108823,3),(1354,1173603623,4),(1354,1194163223,3),(1354,1205053223,4),(1354,1225612823,3),(1354,1236502824,4),(1354,1257062424,3),(1354,1268557224,4),(1354,1289116824,3),(1354,1300006824,4),(1354,1320566424,3),(1354,1331456424,4),(1354,1352016025,3),(1354,1362906025,4),(1354,1383465625,3),(1354,1394355625,4),(1354,1414915225,3),(1354,1425805225,4),(1354,1446364826,3),(1354,1457859626,4),(1354,1478419226,3),(1354,1489309227,4),(1354,1509868827,3),(1354,1520758827,4),(1354,1541318427,3),(1354,1552208427,4),(1354,1572768027,3),(1354,1583658027,4),(1354,1604217627,3),(1354,1615712427,4),(1354,1636272027,3),(1354,1647162027,4),(1354,1667721627,3),(1354,1678611627,4),(1354,1699171227,3),(1354,1710061227,4),(1354,1730620827,3),(1354,1741510827,4),(1354,1762070427,3),(1354,1772960427,4),(1354,1793520027,3),(1354,1805014827,4),(1354,1825574427,3),(1354,1836464427,4),(1354,1857024027,3),(1354,1867914027,4),(1354,1888473627,3),(1354,1899363627,4),(1354,1919923227,3),(1354,1930813227,4),(1354,1951372827,3),(1354,1962867627,4),(1354,1983427227,3),(1354,1994317227,4),(1354,2014876827,3),(1354,2025766827,4),(1354,2046326427,3),(1354,2057216427,4),(1354,2077776027,3),(1354,2088666027,4),(1354,2109225627,3),(1354,2120115627,4),(1354,2140675227,3),(1355,-2147483648,0),(1355,-865296000,5),(1355,-769395600,1),(1355,-765396000,2),(1355,-147898800,3),(1355,-131569200,2),(1355,325666809,4),(1355,341388009,2),(1355,357116409,4),(1355,372837610,2),(1355,388566010,4),(1355,404892011,2),(1355,420015611,4),(1355,436341612,2),(1355,452070012,4),(1355,467791212,2),(1355,483519612,4),(1355,499240813,2),(1355,514969213,4),(1355,530690413,2),(1355,544604413,4),(1355,562140013,2),(1355,576054014,4),(1355,594194414,2),(1355,607503614,4),(1355,625644014,2),(1355,638953215,4),(1355,657093615,2),(1355,671007616,4),(1355,688543216,2),(1355,702457216,4),(1355,719992817,2),(1355,733906817,4),(1355,752047218,2),(1355,765356418,4),(1355,783496819,2),(1355,796806019,4),(1355,814946419,2),(1355,828860420,4),(1355,846396020,2),(1355,860310020,4),(1355,877845621,2),(1355,891759621,4),(1355,909295221,2),(1355,923209222,4),(1355,941349622,6),(1355,954662422,7),(1355,972802822,2),(1355,986108422,4),(1355,1004248822,2),(1355,1018162822,4),(1355,1035698422,2),(1355,1049612422,4),(1355,1067148022,2),(1355,1081062022,4),(1355,1099202422,2),(1355,1112511622,4),(1355,1130652022,2),(1355,1143961223,4),(1355,1162101623,2),(1355,1173596423,4),(1355,1194156023,2),(1355,1205046023,4),(1355,1225605623,2),(1355,1236495624,4),(1355,1257055224,2),(1355,1268550024,4),(1355,1289109624,2),(1355,1299999624,4),(1355,1320559224,2),(1355,1331449224,4),(1355,1352008825,2),(1355,1362898825,4),(1355,1383458425,2),(1355,1394348425,4),(1355,1414908025,2),(1355,1425798025,4),(1355,1446357626,2),(1355,1457852426,4),(1355,1478412026,2),(1355,1489302027,4),(1355,1509861627,2),(1355,1520751627,4),(1355,1541311227,2),(1355,1552201227,4),(1355,1572760827,2),(1355,1583650827,4),(1355,1604210427,2),(1355,1615705227,4),(1355,1636264827,2),(1355,1647154827,4),(1355,1667714427,2),(1355,1678604427,4),(1355,1699164027,2),(1355,1710054027,4),(1355,1730613627,2),(1355,1741503627,4),(1355,1762063227,2),(1355,1772953227,4),(1355,1793512827,2),(1355,1805007627,4),(1355,1825567227,2),(1355,1836457227,4),(1355,1857016827,2),(1355,1867906827,4),(1355,1888466427,2),(1355,1899356427,4),(1355,1919916027,2),(1355,1930806027,4),(1355,1951365627,2),(1355,1962860427,4),(1355,1983420027,2),(1355,1994310027,4),(1355,2014869627,2),(1355,2025759627,4),(1355,2046319227,2),(1355,2057209227,4),(1355,2077768827,2),(1355,2088658827,4),(1355,2109218427,2),(1355,2120108427,4),(1355,2140668027,2),(1356,-2147483648,1),(1356,-1827687170,2),(1356,126687603,3),(1356,152085603,2),(1356,162370804,3),(1356,183535204,2),(1356,199263605,3),(1356,215589605,2),(1356,230713206,3),(1356,247039206,2),(1356,262767607,3),(1356,278488807,2),(1356,294217208,3),(1356,309938408,2),(1356,325666809,3),(1356,341388009,2),(1356,357116409,3),(1356,372837610,2),(1356,388566010,3),(1356,404892011,2),(1356,420015611,3),(1356,436341612,2),(1357,-2147483648,1),(1357,-1567453392,2),(1357,-1233432000,3),(1357,-1222981200,2),(1357,-1205956800,3),(1357,-1194037200,2),(1357,-1172865600,3),(1357,-1162501200,2),(1357,-1141329600,3),(1357,-1130965200,2),(1357,-1109793600,3),(1357,-1099429200,2),(1357,-1078257600,3),(1357,-1067806800,2),(1357,-1046635200,3),(1357,-1036270800,2),(1357,-1015099200,3),(1357,-1004734800,2),(1357,-983563200,3),(1357,-973198800,2),(1357,-952027200,3),(1357,-941576400,2),(1357,-931032000,3),(1357,-900882000,2),(1357,-890337600,3),(1357,-833749200,2),(1357,-827265600,3),(1357,-752274000,2),(1357,-733780800,3),(1357,-197326800,2),(1357,-190843200,3),(1357,-184194000,2),(1357,-164491200,3),(1357,-152658000,2),(1357,-132955200,3),(1357,-121122000,2),(1357,-101419200,3),(1357,-86821200,2),(1357,-71092800,3),(1357,-54766800,2),(1357,-39038400,3),(1357,-23317200,2),(1357,-7588800,5),(1357,128142003,4),(1357,136605603,5),(1357,596948414,4),(1357,605066414,5),(1357,624423614,4),(1357,636516015,2),(1357,657086415,3),(1357,669178816,2),(1357,686721616,4),(1357,699415216,5),(1357,719377217,4),(1357,731469617,5),(1357,938919622,3),(1357,952052422,5),(1357,1198983623,4),(1357,1205632823,5),(1358,-2147483648,1),(1358,-880207200,2),(1358,-769395600,3),(1358,-765385200,1),(1358,-21477600,4),(1358,-5756400,1),(1358,9972000,4),(1358,25693200,1),(1358,41421600,4),(1358,57747600,1),(1358,73476000,4),(1358,89197201,1),(1358,104925602,4),(1358,120646802,1),(1358,126698403,4),(1358,152096403,1),(1358,162381604,4),(1358,183546004,1),(1358,199274405,4),(1358,215600405,1),(1358,230724006,4),(1358,247050006,1),(1358,262778407,4),(1358,278499607,1),(1358,294228008,4),(1358,309949208,1),(1358,325677609,5),(1358,341402409,1),(1358,357127209,4),(1358,372848410,1),(1358,388576810,4),(1358,404902811,1),(1358,420026411,4),(1358,436352412,6),(1358,439030812,8),(1358,452084412,7),(1358,467805612,8),(1358,483534012,7),(1358,499255213,8),(1358,514983613,7),(1358,530704813,8),(1358,544618813,7),(1358,562154413,8),(1358,576068414,7),(1358,594208814,8),(1358,607518014,7),(1358,625658414,8),(1358,638967615,7),(1358,657108015,8),(1358,671022016,7),(1358,688557616,8),(1358,702471616,7),(1358,720007217,8),(1358,733921217,7),(1358,752061618,8),(1358,765370818,7),(1358,783511219,8),(1358,796820419,7),(1358,814960819,8),(1358,828874820,7),(1358,846410420,8),(1358,860324420,7),(1358,877860021,8),(1358,891774021,7),(1358,909309621,8),(1358,923223622,7),(1358,941364022,8),(1358,954673222,7),(1358,972813622,8),(1358,986122822,7),(1358,1004263222,8),(1358,1018177222,7),(1358,1035712822,8),(1358,1049626822,7),(1358,1067162422,8),(1358,1081076422,7),(1358,1099216822,8),(1358,1112526022,7),(1358,1130666422,8),(1358,1143975623,7),(1358,1162116023,8),(1358,1173610823,7),(1358,1194170423,8),(1358,1205060423,7),(1358,1225620023,8),(1358,1236510024,7),(1358,1257069624,8),(1358,1268564424,7),(1358,1289124024,8),(1358,1300014024,7),(1358,1320573624,8),(1358,1331463624,7),(1358,1352023225,8),(1358,1362913225,7),(1358,1383472825,8),(1358,1394362825,7),(1358,1414922425,8),(1358,1425812425,7),(1358,1446372026,8),(1358,1457866826,7),(1358,1478426426,8),(1358,1489316427,7),(1358,1509876027,8),(1358,1520766027,7),(1358,1541325627,8),(1358,1552215627,7),(1358,1572775227,8),(1358,1583665227,7),(1358,1604224827,8),(1358,1615719627,7),(1358,1636279227,8),(1358,1647169227,7),(1358,1667728827,8),(1358,1678618827,7),(1358,1699178427,8),(1358,1710068427,7),(1358,1730628027,8),(1358,1741518027,7),(1358,1762077627,8),(1358,1772967627,7),(1358,1793527227,8),(1358,1805022027,7),(1358,1825581627,8),(1358,1836471627,7),(1358,1857031227,8),(1358,1867921227,7),(1358,1888480827,8),(1358,1899370827,7),(1358,1919930427,8),(1358,1930820427,7),(1358,1951380027,8),(1358,1962874827,7),(1358,1983434427,8),(1358,1994324427,7),(1358,2014884027,8),(1358,2025774027,7),(1358,2046333627,8),(1358,2057223627,7),(1358,2077783227,8),(1358,2088673227,7),(1358,2109232827,8),(1358,2120122827,7),(1358,2140682427,8),(1359,-2147483648,2),(1359,-1633276800,1),(1359,-1615136400,2),(1359,-1601827200,1),(1359,-1583686800,2),(1359,-1535904000,1),(1359,-1525280400,2),(1359,-905097600,1),(1359,-891795600,2),(1359,-880214400,3),(1359,-769395600,4),(1359,-765392400,2),(1359,-747251940,1),(1359,-744224400,2),(1359,-620841600,1),(1359,-608144400,2),(1359,-589392000,1),(1359,-576090000,2),(1359,-557942400,1),(1359,-544640400,2),(1359,-526492800,1),(1359,-513190800,2),(1359,-495043200,1),(1359,-481741200,2),(1359,-463593600,1),(1359,-450291600,2),(1359,-431539200,1),(1359,-415818000,2),(1359,-400089600,1),(1359,-384368400,2),(1359,-368640000,1),(1359,-352918800,2),(1359,-337190400,1),(1359,-321469200,2),(1359,-305740800,1),(1359,-289414800,2),(1359,-273686400,1),(1359,-266432400,5),(1359,-52938000,6),(1359,-37216800,5),(1359,-21488400,6),(1359,-5767200,5),(1359,9961200,6),(1359,25682400,5),(1359,41410800,6),(1359,57736800,5),(1359,73465200,6),(1359,89186401,5),(1359,104914802,6),(1359,120636002,5),(1359,126687603,1),(1359,152089203,5),(1359,162370804,6),(1359,183535204,5),(1359,199263605,6),(1359,215589605,5),(1359,230713206,6),(1359,247039206,5),(1359,262767607,6),(1359,278488807,5),(1359,294217208,6),(1359,309938408,5),(1359,325666809,6),(1359,341388009,5),(1359,357116409,6),(1359,372837610,5),(1359,388566010,6),(1359,404892011,5),(1359,420015611,6),(1359,436341612,5),(1359,452070012,6),(1359,467791212,5),(1359,483519612,6),(1359,499240813,5),(1359,514969213,6),(1359,530690413,5),(1359,544604413,6),(1359,562140013,5),(1359,576054014,6),(1359,594194414,5),(1359,607503614,6),(1359,625644014,5),(1359,638953215,6),(1359,657093615,5),(1359,671007616,6),(1359,688543216,5),(1359,702457216,6),(1359,719992817,5),(1359,733906817,6),(1359,752047218,5),(1359,765356418,6),(1359,783496819,5),(1359,796806019,6),(1359,814946419,5),(1359,828860420,6),(1359,846396020,5),(1359,860310020,6),(1359,877845621,5),(1359,891759621,6),(1359,909295221,5),(1359,923209222,6),(1359,941349622,5),(1359,954658822,6),(1359,972799222,5),(1359,986108422,6),(1359,1004248822,5),(1359,1018162822,6),(1359,1035698422,5),(1359,1049612422,6),(1359,1067148022,5),(1359,1081062022,6),(1359,1099202422,5),(1359,1112511622,6),(1359,1130652022,5),(1359,1143961223,6),(1359,1162101623,5),(1359,1173596423,6),(1359,1194156023,5),(1359,1205046023,6),(1359,1225605623,5),(1359,1236495624,6),(1359,1257055224,5),(1359,1268550024,6),(1359,1289109624,5),(1359,1299999624,6),(1359,1320559224,5),(1359,1331449224,6),(1359,1352008825,5),(1359,1362898825,6),(1359,1383458425,5),(1359,1394348425,6),(1359,1414908025,5),(1359,1425798025,6),(1359,1446357626,5),(1359,1457852426,6),(1359,1478412026,5),(1359,1489302027,6),(1359,1509861627,5),(1359,1520751627,6),(1359,1541311227,5),(1359,1552201227,6),(1359,1572760827,5),(1359,1583650827,6),(1359,1604210427,5),(1359,1615705227,6),(1359,1636264827,5),(1359,1647154827,6),(1359,1667714427,5),(1359,1678604427,6),(1359,1699164027,5),(1359,1710054027,6),(1359,1730613627,5),(1359,1741503627,6),(1359,1762063227,5),(1359,1772953227,6),(1359,1793512827,5),(1359,1805007627,6),(1359,1825567227,5),(1359,1836457227,6),(1359,1857016827,5),(1359,1867906827,6),(1359,1888466427,5),(1359,1899356427,6),(1359,1919916027,5),(1359,1930806027,6),(1359,1951365627,5),(1359,1962860427,6),(1359,1983420027,5),(1359,1994310027,6),(1359,2014869627,5),(1359,2025759627,6),(1359,2046319227,5),(1359,2057209227,6),(1359,2077768827,5),(1359,2088658827,6),(1359,2109218427,5),(1359,2120108427,6),(1359,2140668027,5),(1360,-2147483648,2),(1360,-1633276800,1),(1360,-1615136400,2),(1360,-1601827200,1),(1360,-1583686800,2),(1360,-880214400,3),(1360,-769395600,4),(1360,-765392400,2),(1360,-52934400,1),(1360,-37213200,2),(1360,-21484800,1),(1360,-5763600,2),(1360,9964800,1),(1360,25686000,2),(1360,41414400,1),(1360,57740400,2),(1360,73468800,1),(1360,89190001,2),(1360,104918402,1),(1360,120639602,2),(1360,126691203,1),(1360,152089203,2),(1360,162374404,1),(1360,183538804,2),(1360,199267205,1),(1360,215593205,2),(1360,230716806,1),(1360,247042806,2),(1360,262771207,1),(1360,278492407,2),(1360,294220808,1),(1360,309942008,2),(1360,325670409,1),(1360,341391609,2),(1360,357120009,1),(1360,372841210,2),(1360,388569610,1),(1360,404895611,2),(1360,420019211,1),(1360,436345212,2),(1360,452073612,1),(1360,467794812,2),(1360,483523212,1),(1360,499244413,2),(1360,514972813,1),(1360,530694013,2),(1360,544608013,1),(1360,562143613,2),(1360,576057614,1),(1360,594198014,2),(1360,607507214,1),(1360,625647614,2),(1360,638956815,1),(1360,657097215,2),(1360,671011216,1),(1360,688546816,2),(1360,702460816,1),(1360,719996417,2),(1360,733910417,1),(1360,752050818,2),(1360,765360018,1),(1360,783500419,2),(1360,796809619,1),(1360,814950019,2),(1360,828864020,1),(1360,846399620,2),(1360,860313620,1),(1360,877849221,2),(1360,891763221,1),(1360,909298821,2),(1360,923212822,1),(1360,941353222,2),(1360,954662422,1),(1360,972802822,6),(1360,986108422,5),(1360,1004248822,6),(1360,1018162822,5),(1360,1035698422,6),(1360,1049612422,5),(1360,1067148022,6),(1360,1081062022,5),(1360,1099202422,6),(1360,1112511622,5),(1360,1130652022,6),(1360,1143961223,5),(1360,1162101623,6),(1360,1173596423,5),(1360,1194156023,6),(1360,1205046023,5),(1360,1225605623,6),(1360,1236495624,5),(1360,1257055224,6),(1360,1268550024,5),(1360,1289109624,6),(1360,1299999624,5),(1360,1320559224,6),(1360,1331449224,5),(1360,1352008825,6),(1360,1362898825,5),(1360,1383458425,6),(1360,1394348425,5),(1360,1414908025,6),(1360,1425798025,5),(1360,1446357626,6),(1360,1457852426,5),(1360,1478412026,6),(1360,1489302027,5),(1360,1509861627,6),(1360,1520751627,5),(1360,1541311227,6),(1360,1552201227,5),(1360,1572760827,6),(1360,1583650827,5),(1360,1604210427,6),(1360,1615705227,5),(1360,1636264827,6),(1360,1647154827,5),(1360,1667714427,6),(1360,1678604427,5),(1360,1699164027,6),(1360,1710054027,5),(1360,1730613627,6),(1360,1741503627,5),(1360,1762063227,6),(1360,1772953227,5),(1360,1793512827,6),(1360,1805007627,5),(1360,1825567227,6),(1360,1836457227,5),(1360,1857016827,6),(1360,1867906827,5),(1360,1888466427,6),(1360,1899356427,5),(1360,1919916027,6),(1360,1930806027,5),(1360,1951365627,6),(1360,1962860427,5),(1360,1983420027,6),(1360,1994310027,5),(1360,2014869627,6),(1360,2025759627,5),(1360,2046319227,6),(1360,2057209227,5),(1360,2077768827,6),(1360,2088658827,5),(1360,2109218427,6),(1360,2120108427,5),(1360,2140668027,6),(1361,-2147483648,2),(1361,-1633276800,1),(1361,-1615136400,2),(1361,-1601827200,1),(1361,-1583686800,2),(1361,-880214400,3),(1361,-769395600,4),(1361,-765392400,2),(1361,-715795200,1),(1361,-702493200,2),(1361,-684345600,1),(1361,-671043600,2),(1361,-652896000,1),(1361,-639594000,2),(1361,-620841600,1),(1361,-608144400,2),(1361,-589392000,1),(1361,-576090000,2),(1361,-557942400,1),(1361,-544640400,2),(1361,-526492800,1),(1361,-513190800,2),(1361,-495043200,1),(1361,-481741200,2),(1361,-463593600,1),(1361,-447267600,2),(1361,-431539200,1),(1361,-415818000,2),(1361,-400089600,1),(1361,-386787600,2),(1361,-368640000,1),(1361,-355338000,2),(1361,-337190400,1),(1361,-321469200,2),(1361,-305740800,1),(1361,-289414800,2),(1361,-273686400,1),(1361,-257965200,2),(1361,-242236800,5),(1361,-195066000,2),(1361,-84384000,1),(1361,-68662800,2),(1361,-52934400,1),(1361,-37213200,2),(1361,-21484800,1),(1361,-5763600,2),(1361,9964800,1),(1361,25686000,2),(1361,41414400,1),(1361,57740400,2),(1361,73468800,1),(1361,89190001,2),(1361,104918402,1),(1361,120639602,2),(1361,126691203,1),(1361,152089203,2),(1361,162374404,1),(1361,183538804,2),(1361,199267205,1),(1361,215593205,2),(1361,230716806,1),(1361,247042806,2),(1361,262771207,1),(1361,278492407,2),(1361,294220808,1),(1361,309942008,2),(1361,325670409,1),(1361,341391609,2),(1361,357120009,1),(1361,372841210,2),(1361,388569610,1),(1361,404895611,2),(1361,420019211,1),(1361,436345212,2),(1361,452073612,1),(1361,467794812,2),(1361,483523212,1),(1361,499244413,2),(1361,514972813,1),(1361,530694013,2),(1361,544608013,1),(1361,562143613,2),(1361,576057614,1),(1361,594198014,2),(1361,607507214,1),(1361,625647614,2),(1361,638956815,1),(1361,657097215,2),(1361,671011216,1),(1361,688546816,5),(1361,1143961223,1),(1361,1162105223,2),(1361,1173600023,1),(1361,1194159623,2),(1361,1205049623,1),(1361,1225609223,2),(1361,1236499224,1),(1361,1257058824,2),(1361,1268553624,1),(1361,1289113224,2),(1361,1300003224,1),(1361,1320562824,2),(1361,1331452824,1),(1361,1352012425,2),(1361,1362902425,1),(1361,1383462025,2),(1361,1394352025,1),(1361,1414911625,2),(1361,1425801625,1),(1361,1446361226,2),(1361,1457856026,1),(1361,1478415626,2),(1361,1489305627,1),(1361,1509865227,2),(1361,1520755227,1),(1361,1541314827,2),(1361,1552204827,1),(1361,1572764427,2),(1361,1583654427,1),(1361,1604214027,2),(1361,1615708827,1),(1361,1636268427,2),(1361,1647158427,1),(1361,1667718027,2),(1361,1678608027,1),(1361,1699167627,2),(1361,1710057627,1),(1361,1730617227,2),(1361,1741507227,1),(1361,1762066827,2),(1361,1772956827,1),(1361,1793516427,2),(1361,1805011227,1),(1361,1825570827,2),(1361,1836460827,1),(1361,1857020427,2),(1361,1867910427,1),(1361,1888470027,2),(1361,1899360027,1),(1361,1919919627,2),(1361,1930809627,1),(1361,1951369227,2),(1361,1962864027,1),(1361,1983423627,2),(1361,1994313627,1),(1361,2014873227,2),(1361,2025763227,1),(1361,2046322827,2),(1361,2057212827,1),(1361,2077772427,2),(1361,2088662427,1),(1361,2109222027,2),(1361,2120112027,1),(1361,2140671627,2),(1362,-2147483648,0),(1362,-1826738653,1),(1362,-157750200,2),(1363,-2147483648,1),(1363,-1205954844,2),(1363,-1192307244,3),(1364,-2147483648,1),(1364,-1938538284,3),(1364,-1009825200,2),(1364,-1002052800,3),(1364,-986756400,2),(1364,-971035200,3),(1364,-955306800,2),(1364,-939585600,3),(1364,504939613,2),(1364,512712013,3),(1364,536475613,2),(1364,544248013,3),(1364,631170015,2),(1364,638942415,3),(1364,757400418,2),(1364,765172818,3),(1365,-2147483648,2),(1365,-1633269600,1),(1365,-1615129200,2),(1365,-1601820000,1),(1365,-1583679600,2),(1365,-880207200,3),(1365,-769395600,4),(1365,-765385200,2),(1365,-687967140,1),(1365,-662655600,2),(1365,-620838000,1),(1365,-608137200,2),(1365,-589388400,1),(1365,-576082800,2),(1365,-557938800,1),(1365,-544633200,2),(1365,-526489200,1),(1365,-513183600,2),(1365,-495039600,1),(1365,-481734000,2),(1365,-463590000,1),(1365,-450284400,2),(1365,-431535600,1),(1365,-418230000,2),(1365,-400086000,1),(1365,-386780400,2),(1365,-368636400,1),(1365,-355330800,2),(1365,-337186800,1),(1365,-323881200,2),(1365,-305737200,1),(1365,-292431600,2),(1365,-273682800,1),(1365,-260982000,2),(1365,-242233200,1),(1365,-226508400,2),(1365,-210783600,1),(1365,-195058800,2),(1365,-179334000,1),(1365,-163609200,2),(1365,-147884400,1),(1365,-131554800,2),(1365,-116434800,1),(1365,-100105200,2),(1365,-84376800,1),(1365,-68655600,2),(1365,-52927200,1),(1365,-37206000,2),(1365,-21477600,1),(1365,-5756400,2),(1365,9972000,1),(1365,25693200,2),(1365,41421600,1),(1365,57747600,2),(1365,73476000,1),(1365,89197201,2),(1365,104925602,1),(1365,120646802,2),(1365,126698403,1),(1365,152096403,2),(1365,162381604,1),(1365,183546004,2),(1365,199274405,1),(1365,215600405,2),(1365,230724006,1),(1365,247050006,2),(1365,262778407,1),(1365,278499607,2),(1365,294228008,1),(1365,309949208,2),(1365,325677609,1),(1365,341398809,2),(1365,357127209,1),(1365,372848410,2),(1365,388576810,1),(1365,404902811,2),(1365,420026411,1),(1365,436352412,2),(1365,452080812,1),(1365,467802012,2),(1365,483530412,1),(1365,499251613,2),(1365,514980013,1),(1365,530701213,2),(1365,544615213,1),(1365,562150813,2),(1365,576064814,1),(1365,594205214,2),(1365,607514414,1),(1365,625654814,2),(1365,638964015,1),(1365,657104415,2),(1365,671018416,1),(1365,688554016,2),(1365,702468016,1),(1365,720003617,2),(1365,733917617,1),(1365,752058018,2),(1365,765367218,1),(1365,783507619,2),(1365,796816819,1),(1365,814957219,2),(1365,828871220,1),(1365,846406820,2),(1365,860320820,1),(1365,877856421,2),(1365,891770421,1),(1365,909306021,2),(1365,923220022,1),(1365,941360422,2),(1365,954669622,1),(1365,972810022,2),(1365,986119222,1),(1365,1004259622,2),(1365,1018173622,1),(1365,1035709222,2),(1365,1049623222,1),(1365,1067158822,2),(1365,1081072822,1),(1365,1099213222,2),(1365,1112522422,1),(1365,1130662822,2),(1365,1143972023,1),(1365,1162112423,2),(1365,1173607223,1),(1365,1194166823,2),(1365,1205056823,1),(1365,1225616423,2),(1365,1236506424,1),(1365,1257066024,2),(1365,1268560824,1),(1365,1289120424,2),(1365,1300010424,1),(1365,1320570024,2),(1365,1331460024,1),(1365,1352019625,2),(1365,1362909625,1),(1365,1383469225,2),(1365,1394359225,1),(1365,1414918825,2),(1365,1425808825,1),(1365,1446368426,2),(1365,1457863226,1),(1365,1478422826,2),(1365,1489312827,1),(1365,1509872427,2),(1365,1520762427,1),(1365,1541322027,2),(1365,1552212027,1),(1365,1572771627,2),(1365,1583661627,1),(1365,1604221227,2),(1365,1615716027,1),(1365,1636275627,2),(1365,1647165627,1),(1365,1667725227,2),(1365,1678615227,1),(1365,1699174827,2),(1365,1710064827,1),(1365,1730624427,2),(1365,1741514427,1),(1365,1762074027,2),(1365,1772964027,1),(1365,1793523627,2),(1365,1805018427,1),(1365,1825578027,2),(1365,1836468027,1),(1365,1857027627,2),(1365,1867917627,1),(1365,1888477227,2),(1365,1899367227,1),(1365,1919926827,2),(1365,1930816827,1),(1365,1951376427,2),(1365,1962871227,1),(1365,1983430827,2),(1365,1994320827,1),(1365,2014880427,2),(1365,2025770427,1),(1365,2046330027,2),(1365,2057220027,1),(1365,2077779627,2),(1365,2088669627,1),(1365,2109229227,2),(1365,2120119227,1),(1365,2140678827,2),(1366,-2147483648,2),(1366,-1633276800,1),(1366,-1615136400,2),(1366,-1601827200,1),(1366,-1583686800,2),(1366,-1535904000,1),(1366,-1525280400,2),(1366,-905097600,1),(1366,-891795600,2),(1366,-880214400,3),(1366,-769395600,4),(1366,-765392400,2),(1366,-747251940,1),(1366,-744224400,2),(1366,-620841600,1),(1366,-608144400,2),(1366,-589392000,1),(1366,-576090000,2),(1366,-557942400,1),(1366,-544640400,2),(1366,-526492800,1),(1366,-513190800,2),(1366,-495043200,1),(1366,-481741200,2),(1366,-463593600,1),(1366,-450291600,2),(1366,-431539200,1),(1366,-415818000,2),(1366,-400089600,1),(1366,-384368400,2),(1366,-368640000,1),(1366,-352918800,2),(1366,-337190400,1),(1366,-321469200,2),(1366,-305740800,1),(1366,-289414800,2),(1366,-273686400,1),(1366,-266432400,5),(1366,-52938000,6),(1366,-37216800,5),(1366,-21488400,6),(1366,-5767200,5),(1366,9961200,6),(1366,25682400,5),(1366,41410800,6),(1366,57736800,5),(1366,73465200,6),(1366,89186401,5),(1366,104914802,6),(1366,120636002,5),(1366,126687603,1),(1366,152089203,5),(1366,162370804,6),(1366,183535204,5),(1366,199263605,6),(1366,215589605,5),(1366,230713206,6),(1366,247039206,5),(1366,262767607,6),(1366,278488807,5),(1366,294217208,6),(1366,309938408,5),(1366,325666809,6),(1366,341388009,5),(1366,357116409,6),(1366,372837610,5),(1366,388566010,6),(1366,404892011,5),(1366,420015611,6),(1366,436341612,5),(1366,452070012,6),(1366,467791212,5),(1366,483519612,6),(1366,499240813,5),(1366,514969213,6),(1366,530690413,5),(1366,544604413,6),(1366,562140013,5),(1366,576054014,6),(1366,594194414,5),(1366,607503614,6),(1366,625644014,5),(1366,638953215,6),(1366,657093615,5),(1366,671007616,6),(1366,688543216,5),(1366,702457216,6),(1366,719992817,5),(1366,733906817,6),(1366,752047218,5),(1366,765356418,6),(1366,783496819,5),(1366,796806019,6),(1366,814946419,5),(1366,828860420,6),(1366,846396020,5),(1366,860310020,6),(1366,877845621,5),(1366,891759621,6),(1366,909295221,5),(1366,923209222,6),(1366,941349622,5),(1366,954658822,6),(1366,972799222,5),(1366,986108422,6),(1366,1004248822,5),(1366,1018162822,6),(1366,1035698422,5),(1366,1049612422,6),(1366,1067148022,5),(1366,1081062022,6),(1366,1099202422,5),(1366,1112511622,6),(1366,1130652022,5),(1366,1143961223,6),(1366,1162101623,5),(1366,1173596423,6),(1366,1194156023,5),(1366,1205046023,6),(1366,1225605623,5),(1366,1236495624,6),(1366,1257055224,5),(1366,1268550024,6),(1366,1289109624,5),(1366,1299999624,6),(1366,1320559224,5),(1366,1331449224,6),(1366,1352008825,5),(1366,1362898825,6),(1366,1383458425,5),(1366,1394348425,6),(1366,1414908025,5),(1366,1425798025,6),(1366,1446357626,5),(1366,1457852426,6),(1366,1478412026,5),(1366,1489302027,6),(1366,1509861627,5),(1366,1520751627,6),(1366,1541311227,5),(1366,1552201227,6),(1366,1572760827,5),(1366,1583650827,6),(1366,1604210427,5),(1366,1615705227,6),(1366,1636264827,5),(1366,1647154827,6),(1366,1667714427,5),(1366,1678604427,6),(1366,1699164027,5),(1366,1710054027,6),(1366,1730613627,5),(1366,1741503627,6),(1366,1762063227,5),(1366,1772953227,6),(1366,1793512827,5),(1366,1805007627,6),(1366,1825567227,5),(1366,1836457227,6),(1366,1857016827,5),(1366,1867906827,6),(1366,1888466427,5),(1366,1899356427,6),(1366,1919916027,5),(1366,1930806027,6),(1366,1951365627,5),(1366,1962860427,6),(1366,1983420027,5),(1366,1994310027,6),(1366,2014869627,5),(1366,2025759627,6),(1366,2046319227,5),(1366,2057209227,6),(1366,2077768827,5),(1366,2088658827,6),(1366,2109218427,5),(1366,2120108427,6),(1366,2140668027,5),(1367,-2147483648,0),(1367,-1826738653,1),(1367,-157750200,2),(1368,-2147483648,0),(1368,-1767217028,2),(1368,-1206957600,1),(1368,-1191362400,2),(1368,-1175374800,1),(1368,-1159826400,2),(1368,-633819600,1),(1368,-622069200,2),(1368,-602283600,1),(1368,-591832800,2),(1368,-570747600,1),(1368,-560210400,2),(1368,-539125200,1),(1368,-531352800,2),(1368,-191365200,1),(1368,-184197600,2),(1368,-155163600,1),(1368,-150069600,2),(1368,-128898000,1),(1368,-121125600,2),(1368,-99954000,1),(1368,-89589600,2),(1368,-68418000,1),(1368,-57967200,2),(1368,499748413,1),(1368,511236013,2),(1368,530593213,1),(1368,540266413,2),(1368,562129213,1),(1368,571197614,2),(1368,592974014,1),(1368,602042414,2),(1368,624423614,1),(1368,634701615,2),(1368,813726019,1),(1368,824004020,2),(1368,938919622,1),(1368,951616822,2),(1368,970974022,1),(1368,972180022,2),(1368,1003028422,1),(1368,1013911222,2),(1369,-2147483648,1),(1369,-1121105688,2),(1369,105084002,3),(1369,161758804,2),(1369,290584808,4),(1369,299134808,2),(1369,322034409,4),(1369,330584409,2),(1369,694260016,3),(1369,717310817,2),(1369,725868017,3),(1369,852094820,2),(1369,1113112822,4),(1369,1128229222,2),(1369,1146384023,4),(1369,1159682423,2),(1370,-2147483648,0),(1370,-1767211196,2),(1370,-1206954000,1),(1370,-1191358800,2),(1370,-1175371200,1),(1370,-1159822800,2),(1370,-633816000,1),(1370,-622065600,2),(1370,-602280000,1),(1370,-591829200,2),(1370,-570744000,1),(1370,-560206800,2),(1370,-539121600,1),(1370,-531349200,2),(1370,-191361600,1),(1370,-184194000,2),(1370,-155160000,1),(1370,-150066000,2),(1370,-128894400,1),(1370,-121122000,2),(1370,-99950400,1),(1370,-89586000,2),(1370,-68414400,1),(1370,-57963600,2),(1370,499752013,1),(1370,511239613,2),(1370,530596813,1),(1370,540270013,2),(1370,562132813,1),(1370,571201214,2),(1370,750830418,1),(1370,761713218,2),(1371,-2147483648,0),(1371,-1825098836,1),(1372,-2147483648,1),(1372,-1851537340,2),(1372,323841609,3),(1372,338958009,2),(1373,-2147483648,0),(1373,-1514743200,1),(1373,576057614,2),(1373,594198014,1),(1373,828864020,2),(1373,846399620,1),(1373,860313620,2),(1373,877849221,1),(1373,891763221,2),(1373,909298821,1),(1373,923212822,2),(1373,941353222,1),(1373,954662422,2),(1373,972802822,1),(1373,989136022,2),(1373,1001833222,1),(1373,1018166422,2),(1373,1035702022,1),(1373,1049616022,2),(1373,1067151622,1),(1373,1081065622,2),(1373,1099206022,1),(1373,1112515222,2),(1373,1130655622,1),(1373,1143964823,2),(1373,1162105223,1),(1373,1175414423,2),(1373,1193554823,1),(1373,1207468823,2),(1373,1225004423,1),(1373,1238918424,2),(1373,1256454024,1),(1373,1268553624,2),(1373,1289113224,1),(1373,1300003224,2),(1373,1320562824,1),(1373,1331452824,2),(1373,1352012425,1),(1373,1362902425,2),(1373,1383462025,1),(1373,1394352025,2),(1373,1414911625,1),(1373,1425801625,2),(1373,1446361226,1),(1373,1457856026,2),(1373,1478415626,1),(1373,1489305627,2),(1373,1509865227,1),(1373,1520755227,2),(1373,1541314827,1),(1373,1552204827,2),(1373,1572764427,1),(1373,1583654427,2),(1373,1604214027,1),(1373,1615708827,2),(1373,1636268427,1),(1373,1647158427,2),(1373,1667718027,1),(1373,1678608027,2),(1373,1699167627,1),(1373,1710057627,2),(1373,1730617227,1),(1373,1741507227,2),(1373,1762066827,1),(1373,1772956827,2),(1373,1793516427,1),(1373,1805011227,2),(1373,1825570827,1),(1373,1836460827,2),(1373,1857020427,1),(1373,1867910427,2),(1373,1888470027,1),(1373,1899360027,2),(1373,1919919627,1),(1373,1930809627,2),(1373,1951369227,1),(1373,1962864027,2),(1373,1983423627,1),(1373,1994313627,2),(1373,2014873227,1),(1373,2025763227,2),(1373,2046322827,1),(1373,2057212827,2),(1373,2077772427,1),(1373,2088662427,2),(1373,2109222027,1),(1373,2120112027,2),(1373,2140671627,1),(1374,-2147483648,0),(1374,-1514739600,1),(1374,-1343066400,2),(1374,-1234807200,1),(1374,-1220292000,2),(1374,-1207159200,1),(1374,-1191344400,2),(1374,-873828000,1),(1374,-661539600,3),(1374,28800,1),(1374,828867620,4),(1374,846403220,1),(1374,860317220,4),(1374,877852821,1),(1374,891766821,4),(1374,909302421,1),(1374,923216422,4),(1374,941356822,1),(1374,954666022,4),(1374,972806422,1),(1374,989139622,4),(1374,1001836822,1),(1374,1018170022,4),(1374,1035705622,1),(1374,1049619622,4),(1374,1067155222,1),(1374,1081069222,4),(1374,1099209622,1),(1374,1112518822,4),(1374,1130659222,1),(1374,1143968423,4),(1374,1162108823,1),(1374,1175418023,4),(1374,1193558423,1),(1374,1207472423,4),(1374,1225008023,1),(1374,1238922024,4),(1374,1256457624,1),(1374,1270371624,4),(1374,1288512024,1),(1374,1301821224,4),(1374,1319961624,1),(1374,1333270824,4),(1374,1351411225,1),(1374,1365325225,4),(1374,1382860825,1),(1374,1396774825,4),(1374,1414310425,1),(1374,1428224425,4),(1374,1445760026,1),(1374,1459674026,4),(1374,1477814426,1),(1374,1491123627,4),(1374,1509264027,1),(1374,1522573227,4),(1374,1540713627,1),(1374,1554627627,4),(1374,1572163227,1),(1374,1586077227,4),(1374,1603612827,1),(1374,1617526827,4),(1374,1635667227,1),(1374,1648976427,4),(1374,1667116827,1),(1374,1680426027,4),(1374,1698566427,1),(1374,1712480427,4),(1374,1730016027,1),(1374,1743930027,4),(1374,1761465627,1),(1374,1775379627,4),(1374,1792915227,1),(1374,1806829227,4),(1374,1824969627,1),(1374,1838278827,4),(1374,1856419227,1),(1374,1869728427,4),(1374,1887868827,1),(1374,1901782827,4),(1374,1919318427,1),(1374,1933232427,4),(1374,1950768027,1),(1374,1964682027,4),(1374,1982822427,1),(1374,1996131627,4),(1374,2014272027,1),(1374,2027581227,4),(1374,2045721627,1),(1374,2059030827,4),(1374,2077171227,1),(1374,2091085227,4),(1374,2108620827,1),(1374,2122534827,4),(1374,2140070427,1),(1375,-2147483648,1),(1375,-1567453392,2),(1375,-1233432000,3),(1375,-1222981200,2),(1375,-1205956800,3),(1375,-1194037200,2),(1375,-1172865600,3),(1375,-1162501200,2),(1375,-1141329600,3),(1375,-1130965200,2),(1375,-1109793600,3),(1375,-1099429200,2),(1375,-1078257600,3),(1375,-1067806800,2),(1375,-1046635200,3),(1375,-1036270800,2),(1375,-1015099200,3),(1375,-1004734800,2),(1375,-983563200,3),(1375,-973198800,2),(1375,-952027200,3),(1375,-941576400,2),(1375,-931032000,3),(1375,-900882000,2),(1375,-890337600,3),(1375,-833749200,2),(1375,-827265600,3),(1375,-752274000,2),(1375,-733780800,3),(1375,-197326800,2),(1375,-190843200,3),(1375,-184194000,2),(1375,-164491200,3),(1375,-152658000,2),(1375,-132955200,3),(1375,-121122000,2),(1375,-101419200,3),(1375,-86821200,2),(1375,-71092800,3),(1375,-54766800,2),(1375,-39038400,3),(1375,-23317200,2),(1375,-7588800,5),(1375,128142003,4),(1375,136605603,5),(1375,596948414,4),(1375,605066414,5),(1375,624423614,4),(1375,636516015,2),(1375,655963215,3),(1375,667796416,2),(1375,687499216,3),(1375,699418816,2),(1375,719380817,4),(1375,731469617,5),(1375,938919622,3),(1375,952052422,5),(1375,1085281222,2),(1375,1096171222,5),(1375,1198983623,4),(1375,1205632823,5),(1376,-2147483648,2),(1376,-1633276800,1),(1376,-1615136400,2),(1376,-1601827200,1),(1376,-1583686800,2),(1376,-880214400,3),(1376,-769395600,4),(1376,-765392400,2),(1376,-747244800,1),(1376,-733942800,2),(1376,-116438400,1),(1376,-100112400,2),(1376,-21484800,5),(1376,104914802,1),(1376,120639602,2),(1376,126691203,1),(1376,152089203,2),(1376,162374404,1),(1376,183538804,2),(1376,199267205,1),(1376,215593205,2),(1376,230716806,1),(1376,247042806,2),(1376,262771207,1),(1376,278492407,2),(1376,294220808,1),(1376,309942008,2),(1376,325670409,1),(1376,341391609,2),(1376,357120009,1),(1376,372841210,2),(1376,388569610,1),(1376,404895611,2),(1376,420019211,1),(1376,436345212,2),(1376,452073612,1),(1376,467794812,2),(1376,483523212,1),(1376,499244413,2),(1376,514972813,1),(1376,530694013,2),(1376,544608013,1),(1376,562143613,2),(1376,576057614,1),(1376,594198014,2),(1376,607507214,1),(1376,625647614,2),(1376,638956815,1),(1376,657097215,2),(1376,671011216,1),(1376,688546816,2),(1376,702460816,1),(1376,719996417,2),(1376,733910417,1),(1376,752050818,2),(1376,765360018,1),(1376,783500419,2),(1376,796809619,1),(1376,814950019,2),(1376,828864020,1),(1376,846399620,2),(1376,860313620,1),(1376,877849221,2),(1376,891763221,1),(1376,909298821,2),(1376,923212822,1),(1376,941353222,2),(1376,954662422,1),(1376,972802822,2),(1376,986112022,1),(1376,1004252422,2),(1376,1018166422,1),(1376,1035702022,2),(1376,1049616022,1),(1376,1067151622,2),(1376,1081065622,1),(1376,1099206022,2),(1376,1112515222,1),(1376,1130655622,2),(1376,1143964823,1),(1376,1162105223,2),(1376,1173600023,1),(1376,1194159623,2),(1376,1205049623,1),(1376,1225609223,2),(1376,1236499224,1),(1376,1257058824,2),(1376,1268553624,1),(1376,1289113224,2),(1376,1300003224,1),(1376,1320562824,2),(1376,1331452824,1),(1376,1352012425,2),(1376,1362902425,1),(1376,1383462025,2),(1376,1394352025,1),(1376,1414911625,2),(1376,1425801625,1),(1376,1446361226,2),(1376,1457856026,1),(1376,1478415626,2),(1376,1489305627,1),(1376,1509865227,2),(1376,1520755227,1),(1376,1541314827,2),(1376,1552204827,1),(1376,1572764427,2),(1376,1583654427,1),(1376,1604214027,2),(1376,1615708827,1),(1376,1636268427,2),(1376,1647158427,1),(1376,1667718027,2),(1376,1678608027,1),(1376,1699167627,2),(1376,1710057627,1),(1376,1730617227,2),(1376,1741507227,1),(1376,1762066827,2),(1376,1772956827,1),(1376,1793516427,2),(1376,1805011227,1),(1376,1825570827,2),(1376,1836460827,1),(1376,1857020427,2),(1376,1867910427,1),(1376,1888470027,2),(1376,1899360027,1),(1376,1919919627,2),(1376,1930809627,1),(1376,1951369227,2),(1376,1962864027,1),(1376,1983423627,2),(1376,1994313627,1),(1376,2014873227,2),(1376,2025763227,1),(1376,2046322827,2),(1376,2057212827,1),(1376,2077772427,2),(1376,2088662427,1),(1376,2109222027,2),(1376,2120112027,1),(1376,2140671627,2),(1377,-2147483648,0),(1377,-1514743200,1),(1377,377935210,2),(1377,407653211,1),(1377,828864020,3),(1377,846399620,1),(1377,860313620,3),(1377,877849221,1),(1377,891763221,3),(1377,909298821,1),(1377,923212822,3),(1377,941353222,1),(1377,954662422,3),(1377,972802822,1),(1377,989136022,3),(1377,1001833222,1),(1377,1018166422,3),(1377,1035702022,1),(1377,1049616022,3),(1377,1067151622,1),(1377,1081065622,3),(1377,1099206022,1),(1377,1112515222,3),(1377,1130655622,1),(1377,1143964823,3),(1377,1162105223,1),(1377,1175414423,3),(1377,1193554823,1),(1377,1207468823,3),(1377,1225004423,1),(1377,1238918424,3),(1377,1256454024,1),(1377,1270368024,3),(1377,1288508424,1),(1377,1301817624,3),(1377,1319958024,1),(1377,1333267224,3),(1377,1351407625,1),(1377,1365321625,3),(1377,1382857225,1),(1377,1396771225,3),(1377,1414306825,1),(1377,1428220825,3),(1377,1445756426,1),(1377,1459670426,3),(1377,1477810826,1),(1377,1491120027,3),(1377,1509260427,1),(1377,1522569627,3),(1377,1540710027,1),(1377,1554624027,3),(1377,1572159627,1),(1377,1586073627,3),(1377,1603609227,1),(1377,1617523227,3),(1377,1635663627,1),(1377,1648972827,3),(1377,1667113227,1),(1377,1680422427,3),(1377,1698562827,1),(1377,1712476827,3),(1377,1730012427,1),(1377,1743926427,3),(1377,1761462027,1),(1377,1775376027,3),(1377,1792911627,1),(1377,1806825627,3),(1377,1824966027,1),(1377,1838275227,3),(1377,1856415627,1),(1377,1869724827,3),(1377,1887865227,1),(1377,1901779227,3),(1377,1919314827,1),(1377,1933228827,3),(1377,1950764427,1),(1377,1964678427,3),(1377,1982818827,1),(1377,1996128027,3),(1377,2014268427,1),(1377,2027577627,3),(1377,2045718027,1),(1377,2059027227,3),(1377,2077167627,1),(1377,2091081627,3),(1377,2108617227,1),(1377,2122531227,3),(1377,2140066827,1),(1378,-2147483648,1),(1378,-880207200,2),(1378,-769395600,3),(1378,-765385200,1),(1378,-21477600,4),(1378,-5756400,1),(1378,9972000,4),(1378,25693200,1),(1378,41421600,4),(1378,57747600,1),(1378,73476000,4),(1378,89197201,1),(1378,104925602,4),(1378,120646802,1),(1378,126698403,4),(1378,152096403,1),(1378,162381604,4),(1378,183546004,1),(1378,199274405,4),(1378,215600405,1),(1378,230724006,4),(1378,247050006,1),(1378,262778407,4),(1378,278499607,1),(1378,294228008,4),(1378,309949208,1),(1378,325677609,4),(1378,341398809,1),(1378,357127209,4),(1378,372848410,1),(1378,388576810,4),(1378,404902811,1),(1378,420026411,4),(1378,436352412,1),(1378,1446372026,5),(1378,1457866826,6),(1378,1478426426,5),(1378,1489316427,6),(1378,1509876027,5),(1378,1520766027,6),(1378,1541325627,1),(1378,1547978427,5),(1378,1552215627,6),(1378,1572775227,5),(1378,1583665227,6),(1378,1604224827,5),(1378,1615719627,6),(1378,1636279227,5),(1378,1647169227,6),(1378,1667728827,5),(1378,1678618827,6),(1378,1699178427,5),(1378,1710068427,6),(1378,1730628027,5),(1378,1741518027,6),(1378,1762077627,5),(1378,1772967627,6),(1378,1793527227,5),(1378,1805022027,6),(1378,1825581627,5),(1378,1836471627,6),(1378,1857031227,5),(1378,1867921227,6),(1378,1888480827,5),(1378,1899370827,6),(1378,1919930427,5),(1378,1930820427,6),(1378,1951380027,5),(1378,1962874827,6),(1378,1983434427,5),(1378,1994324427,6),(1378,2014884027,5),(1378,2025774027,6),(1378,2046333627,5),(1378,2057223627,6),(1378,2077783227,5),(1378,2088673227,6),(1378,2109232827,5),(1378,2120122827,6),(1378,2140682427,5),(1379,-2147483648,0),(1379,-1514739600,1),(1379,-1343066400,2),(1379,-1234807200,1),(1379,-1220292000,2),(1379,-1207159200,1),(1379,-1191344400,2),(1379,-975261600,3),(1379,-963169200,2),(1379,-917114400,3),(1379,-907354800,2),(1379,-821901600,4),(1379,-810068400,2),(1379,-627501600,3),(1379,-612990000,2),(1379,828864020,3),(1379,846399620,2),(1379,860313620,3),(1379,877849221,2),(1379,891763221,3),(1379,909298821,2),(1379,923212822,3),(1379,941353222,2),(1379,954662422,3),(1379,972802822,2),(1379,989136022,3),(1379,1001833222,2),(1379,1018166422,3),(1379,1035702022,2),(1379,1049616022,3),(1379,1067151622,2),(1379,1081065622,3),(1379,1099206022,2),(1379,1112515222,3),(1379,1130655622,2),(1379,1143964823,3),(1379,1162105223,2),(1379,1175414423,3),(1379,1193554823,2),(1379,1207468823,3),(1379,1225004423,2),(1379,1238918424,3),(1379,1256454024,2),(1379,1270368024,3),(1379,1288508424,2),(1379,1301817624,3),(1379,1319958024,2),(1379,1333267224,3),(1379,1351407625,2),(1379,1365321625,3),(1379,1382857225,2),(1379,1396771225,3),(1379,1414306825,2),(1379,1428220825,3),(1379,1445756426,2),(1379,1459670426,3),(1379,1477810826,2),(1379,1491120027,3),(1379,1509260427,2),(1379,1522569627,3),(1379,1540710027,2),(1379,1554624027,3),(1379,1572159627,2),(1379,1586073627,3),(1379,1603609227,2),(1379,1617523227,3),(1379,1635663627,2),(1379,1648972827,3),(1379,1667113227,2),(1379,1680422427,3),(1379,1698562827,2),(1379,1712476827,3),(1379,1730012427,2),(1379,1743926427,3),(1379,1761462027,2),(1379,1775376027,3),(1379,1792911627,2),(1379,1806825627,3),(1379,1824966027,2),(1379,1838275227,3),(1379,1856415627,2),(1379,1869724827,3),(1379,1887865227,2),(1379,1901779227,3),(1379,1919314827,2),(1379,1933228827,3),(1379,1950764427,2),(1379,1964678427,3),(1379,1982818827,2),(1379,1996128027,3),(1379,2014268427,2),(1379,2027577627,3),(1379,2045718027,2),(1379,2059027227,3),(1379,2077167627,2),(1379,2091081627,3),(1379,2108617227,2),(1379,2122531227,3),(1379,2140066827,2),(1380,-2147483648,0),(1380,-1850328920,1),(1380,326001609,2),(1380,544597213,3),(1380,562132813,2),(1380,576046814,3),(1380,594187214,2),(1380,607496414,3),(1380,625636814,2),(1380,638946015,3),(1380,657086415,2),(1380,671000416,3),(1380,688536016,2),(1380,702450016,3),(1380,719985617,2),(1380,733899617,3),(1380,752040018,2),(1380,765349218,3),(1380,783489619,2),(1380,796798819,3),(1380,814939219,2),(1380,828853220,3),(1380,846388820,2),(1380,860302820,3),(1380,877838421,2),(1380,891752421,3),(1380,909288021,2),(1380,923202022,3),(1380,941342422,2),(1380,954651622,3),(1380,972792022,2),(1380,986101222,3),(1380,1004241622,2),(1380,1018155622,3),(1380,1035691222,2),(1380,1049605222,3),(1380,1067140822,2),(1380,1081054822,3),(1380,1099195222,2),(1380,1112504422,3),(1380,1130644822,2),(1380,1143954023,3),(1380,1162094423,2),(1380,1173589223,3),(1380,1194148823,2),(1380,1205038823,3),(1380,1225598423,2),(1380,1236488424,3),(1380,1257048024,2),(1380,1268542824,3),(1380,1289102424,2),(1380,1299992424,3),(1380,1320552024,2),(1380,1331442024,3),(1380,1352001625,2),(1380,1362891625,3),(1380,1383451225,2),(1380,1394341225,3),(1380,1414900825,2),(1380,1425790825,3),(1380,1446350426,2),(1380,1457845226,3),(1380,1478404826,2),(1380,1489294827,3),(1380,1509854427,2),(1380,1520744427,3),(1380,1541304027,2),(1380,1552194027,3),(1380,1572753627,2),(1380,1583643627,3),(1380,1604203227,2),(1380,1615698027,3),(1380,1636257627,2),(1380,1647147627,3),(1380,1667707227,2),(1380,1678597227,3),(1380,1699156827,2),(1380,1710046827,3),(1380,1730606427,2),(1380,1741496427,3),(1380,1762056027,2),(1380,1772946027,3),(1380,1793505627,2),(1380,1805000427,3),(1380,1825560027,2),(1380,1836450027,3),(1380,1857009627,2),(1380,1867899627,3),(1380,1888459227,2),(1380,1899349227,3),(1380,1919908827,2),(1380,1930798827,3),(1380,1951358427,2),(1380,1962853227,3),(1380,1983412827,2),(1380,1994302827,3),(1380,2014862427,2),(1380,2025752427,3),(1380,2046312027,2),(1380,2057202027,3),(1380,2077761627,2),(1380,2088651627,3),(1380,2109211227,2),(1380,2120101227,3),(1380,2140660827,2),(1381,-2147483648,1),(1381,-2131642800,3),(1381,-1632074400,2),(1381,-1615143600,3),(1381,-1153681200,2),(1381,-1145822400,3),(1381,-1122231600,2),(1381,-1114372800,3),(1381,-1090782000,2),(1381,-1082923200,3),(1381,-1059332400,2),(1381,-1051473600,3),(1381,-1027882800,2),(1381,-1020024000,3),(1381,-996433200,2),(1381,-988574400,3),(1381,-965674800,2),(1381,-955396800,3),(1381,-934743600,2),(1381,-923947200,3),(1381,-904503600,2),(1381,-891892800,3),(1381,-880221600,4),(1381,-769395600,5),(1381,-765399600,3),(1381,-747252000,2),(1381,-733950000,3),(1381,-715802400,2),(1381,-702500400,3),(1381,-684352800,2),(1381,-671050800,3),(1381,-652903200,2),(1381,-639601200,3),(1381,-620848800,2),(1381,-608151600,3),(1381,-589399200,2),(1381,-576097200,3),(1381,-557949600,2),(1381,-544647600,3),(1381,-526500000,2),(1381,-513198000,3),(1381,-495050400,2),(1381,-481748400,3),(1381,-463600800,2),(1381,-450298800,3),(1381,-431546400,2),(1381,-418244400,3),(1381,-400096800,2),(1381,-384375600,3),(1381,-368647200,2),(1381,-352926000,3),(1381,-337197600,2),(1381,-321476400,3),(1381,-305748000,2),(1381,-289422000,3),(1381,-273693600,2),(1381,-257972400,3),(1381,-242244000,2),(1381,-226522800,3),(1381,-210794400,2),(1381,-195073200,3),(1381,-179344800,2),(1381,-163623600,3),(1381,-147895200,2),(1381,-131569200,3),(1381,-116445600,2),(1381,-100119600,3),(1381,-84391200,2),(1381,-68670000,3),(1381,-52941600,2),(1381,-37220400,3),(1381,-21492000,2),(1381,-5770800,3),(1381,9957600,2),(1381,25678800,3),(1381,41407200,2),(1381,57733200,3),(1381,73461600,2),(1381,89182801,3),(1381,136360803,2),(1381,152082003,3),(1381,167810404,2),(1381,183531604,3),(1381,199260005,2),(1381,215586005,3),(1381,230709606,2),(1381,247035606,3),(1381,262764007,2),(1381,278485207,3),(1381,294213608,2),(1381,309934808,3),(1381,325663209,2),(1381,341384409,3),(1381,357112809,2),(1381,372834010,3),(1381,388562410,2),(1381,404888411,3),(1381,420012011,2),(1381,436338012,3),(1381,452066412,2),(1381,467787612,3),(1381,483516012,2),(1381,499237213,3),(1381,514965613,2),(1381,530686813,3),(1381,544600813,2),(1381,562136413,3),(1381,576050414,2),(1381,594190814,3),(1381,607500014,2),(1381,625640414,3),(1381,638949615,2),(1381,657090015,3),(1381,671004016,2),(1381,688539616,3),(1381,702453616,2),(1381,719989217,3),(1381,733896077,2),(1381,752036478,3),(1381,765345678,2),(1381,783486079,3),(1381,796795279,2),(1381,814935679,3),(1381,828849680,2),(1381,846385280,3),(1381,860299280,2),(1381,877834881,3),(1381,891748881,2),(1381,909284481,3),(1381,923198482,2),(1381,941338882,3),(1381,954648082,2),(1381,972788482,3),(1381,986097682,2),(1381,1004238082,3),(1381,1018152082,2),(1381,1035687682,3),(1381,1049601682,2),(1381,1067137282,3),(1381,1081051282,2),(1381,1099191682,3),(1381,1112500882,2),(1381,1130641282,3),(1381,1143950483,2),(1381,1162090883,3),(1381,1173592823,2),(1381,1194152423,3),(1381,1205042423,2),(1381,1225602023,3),(1381,1236492024,2),(1381,1257051624,3),(1381,1268546424,2),(1381,1289106024,3),(1381,1299996024,2),(1381,1320555624,3),(1381,1331445624,2),(1381,1352005225,3),(1381,1362895225,2),(1381,1383454825,3),(1381,1394344825,2),(1381,1414904425,3),(1381,1425794425,2),(1381,1446354026,3),(1381,1457848826,2),(1381,1478408426,3),(1381,1489298427,2),(1381,1509858027,3),(1381,1520748027,2),(1381,1541307627,3),(1381,1552197627,2),(1381,1572757227,3),(1381,1583647227,2),(1381,1604206827,3),(1381,1615701627,2),(1381,1636261227,3),(1381,1647151227,2),(1381,1667710827,3),(1381,1678600827,2),(1381,1699160427,3),(1381,1710050427,2),(1381,1730610027,3),(1381,1741500027,2),(1381,1762059627,3),(1381,1772949627,2),(1381,1793509227,3),(1381,1805004027,2),(1381,1825563627,3),(1381,1836453627,2),(1381,1857013227,3),(1381,1867903227,2),(1381,1888462827,3),(1381,1899352827,2),(1381,1919912427,3),(1381,1930802427,2),(1381,1951362027,3),(1381,1962856827,2),(1381,1983416427,3),(1381,1994306427,2),(1381,2014866027,3),(1381,2025756027,2),(1381,2046315627,3),(1381,2057205627,2),(1381,2077765227,3),(1381,2088655227,2),(1381,2109214827,3),(1381,2120104827,2),(1381,2140664427,3),(1382,-2147483648,0),(1382,-1514743200,1),(1382,576057614,2),(1382,594198014,1),(1382,828864020,2),(1382,846399620,1),(1382,860313620,2),(1382,877849221,1),(1382,891763221,2),(1382,909298821,1),(1382,923212822,2),(1382,941353222,1),(1382,954662422,2),(1382,972802822,1),(1382,989136022,2),(1382,1001833222,1),(1382,1018166422,2),(1382,1035702022,1),(1382,1049616022,2),(1382,1067151622,1),(1382,1081065622,2),(1382,1099206022,1),(1382,1112515222,2),(1382,1130655622,1),(1382,1143964823,2),(1382,1162105223,1),(1382,1175414423,2),(1382,1193554823,1),(1382,1207468823,2),(1382,1225004423,1),(1382,1238918424,2),(1382,1256454024,1),(1382,1270368024,2),(1382,1288508424,1),(1382,1301817624,2),(1382,1319958024,1),(1382,1333267224,2),(1382,1351407625,1),(1382,1365321625,2),(1382,1382857225,1),(1382,1396771225,2),(1382,1414306825,1),(1382,1428220825,2),(1382,1445756426,1),(1382,1459670426,2),(1382,1477810826,1),(1382,1491120027,2),(1382,1509260427,1),(1382,1522569627,2),(1382,1540710027,1),(1382,1554624027,2),(1382,1572159627,1),(1382,1586073627,2),(1382,1603609227,1),(1382,1617523227,2),(1382,1635663627,1),(1382,1648972827,2),(1382,1667113227,1),(1382,1680422427,2),(1382,1698562827,1),(1382,1712476827,2),(1382,1730012427,1),(1382,1743926427,2),(1382,1761462027,1),(1382,1775376027,2),(1382,1792911627,1),(1382,1806825627,2),(1382,1824966027,1),(1382,1838275227,2),(1382,1856415627,1),(1382,1869724827,2),(1382,1887865227,1),(1382,1901779227,2),(1382,1919314827,1),(1382,1933228827,2),(1382,1950764427,1),(1382,1964678427,2),(1382,1982818827,1),(1382,1996128027,2),(1382,2014268427,1),(1382,2027577627,2),(1382,2045718027,1),(1382,2059027227,2),(1382,2077167627,1),(1382,2091081627,2),(1382,2108617227,1),(1382,2122531227,2),(1382,2140066827,1),(1383,-2147483648,0),(1383,-1942690509,1),(1383,-1567455309,2),(1383,-1459627200,4),(1383,-1443819600,3),(1383,-1428006600,4),(1383,-1412283600,3),(1383,-1396470600,4),(1383,-1380747600,3),(1383,-1141590600,4),(1383,-1128286800,3),(1383,-1110141000,4),(1383,-1096837200,3),(1383,-1078691400,4),(1383,-1065387600,3),(1383,-1047241800,4),(1383,-1033938000,3),(1383,-1015187400,4),(1383,-1002488400,3),(1383,-983737800,4),(1383,-971038800,3),(1383,-954707400,4),(1383,-938984400,3),(1383,-920838600,4),(1383,-907534800,3),(1383,-896819400,4),(1383,-853621200,6),(1383,-845847000,5),(1383,-334789200,6),(1383,-319671000,5),(1383,-314226000,7),(1383,-309996000,5),(1383,-149720400,7),(1383,-134604000,5),(1383,-50446800,6),(1383,-34205400,5),(1383,9860400,7),(1383,14176800,5),(1383,72846000,7),(1383,80100001,5),(1383,127278003,8),(1383,132111003,6),(1383,147234603,5),(1383,156913203,7),(1383,165376804,5),(1383,219812405,7),(1383,226461606,5),(1383,250052406,7),(1383,257911207,5),(1383,282711607,7),(1383,289360808,5),(1383,294202808,7),(1383,322020009,5),(1383,566449213,7),(1383,573012014,5),(1383,597812414,7),(1383,605066414,5),(1383,625633214,7),(1383,635911215,5),(1383,656478015,7),(1383,667965616,5),(1383,688532416,7),(1383,699415216,5),(1383,719377217,7),(1383,730864817,5),(1383,1095562822,7),(1383,1111896022,5),(1383,1128834022,7),(1383,1142136023,5),(1383,1159678823,7),(1383,1173585623,5),(1383,1191733223,7),(1383,1205035223,5),(1383,1223182823,7),(1383,1236484824,5),(1383,1254632424,7),(1383,1268539224,5),(1383,1286082024,7),(1383,1299988824,5),(1383,1317531624,7),(1383,1331438424,5),(1383,1349586025,7),(1383,1362888025,5),(1383,1381035625,7),(1383,1394337625,5),(1383,1412485225,7),(1383,1425787225,5),(1384,-2147483648,2),(1384,-1632070800,1),(1384,-1615140000,2),(1384,-1601753400,1),(1384,-1583697600,2),(1384,-1567357200,1),(1384,-1554667200,2),(1384,-1534698000,1),(1384,-1524074400,2),(1384,-1503248400,1),(1384,-1492365600,2),(1384,-1471798800,1),(1384,-1460916000,2),(1384,-1440954000,1),(1384,-1428861600,2),(1384,-1409504400,1),(1384,-1397412000,2),(1384,-1378054800,1),(1384,-1365962400,2),(1384,-1346605200,1),(1384,-1333908000,2),(1384,-1315155600,1),(1384,-1301853600,2),(1384,-1283706000,1),(1384,-1270404000,2),(1384,-1252256400,1),(1384,-1238954400,2),(1384,-1220806800,1),(1384,-1207504800,2),(1384,-1188752400,1),(1384,-1176055200,2),(1384,-1157302800,1),(1384,-1144000800,2),(1384,-1125853200,1),(1384,-1112551200,2),(1384,-1094403600,1),(1384,-1081101600,2),(1384,-1062954000,1),(1384,-1049652000,2),(1384,-1031504400,1),(1384,-1018202400,2),(1384,-1000054800,1),(1384,-986752800,2),(1384,-968000400,1),(1384,-955303200,2),(1384,-936550800,1),(1384,-880218000,3),(1384,-769395600,4),(1384,-765396000,2),(1384,-747248400,1),(1384,-733946400,2),(1384,-715806000,1),(1384,-702504000,2),(1384,-684356400,1),(1384,-671054400,2),(1384,-652906800,1),(1384,-634161600,2),(1384,-620845200,1),(1384,-602704800,2),(1384,-589395600,1),(1384,-576093600,2),(1384,-557946000,1),(1384,-544644000,2),(1384,-526496400,1),(1384,-513194400,2),(1384,-495046800,1),(1384,-481744800,2),(1384,-463597200,1),(1384,-450295200,2),(1384,-431542800,1),(1384,-418240800,2),(1384,-400093200,1),(1384,-384372000,2),(1384,-368643600,1),(1384,-352922400,2),(1384,-337194000,1),(1384,-321472800,2),(1384,-305744400,1),(1384,-289418400,2),(1384,-273690000,1),(1384,-257968800,2),(1384,-242240400,1),(1384,-226519200,2),(1384,-210790800,1),(1384,-195069600,2),(1384,-179341200,1),(1384,-163620000,2),(1384,-147891600,1),(1384,-131565600,2),(1384,-116442000,1),(1384,-100116000,2),(1384,-84387600,1),(1384,-68666400,2),(1384,-52938000,1),(1384,-37216800,2),(1384,-21488400,1),(1384,-5767200,2),(1384,9961200,1),(1384,25682400,2),(1384,41410800,1),(1384,57736800,2),(1384,73465200,1),(1384,89186401,2),(1384,104914802,1),(1384,120636002,2),(1384,136364403,1),(1384,152085603,2),(1384,167814004,1),(1384,183535204,2),(1384,199263605,1),(1384,215589605,2),(1384,230713206,1),(1384,247039206,2),(1384,262767607,1),(1384,278488807,2),(1384,294217208,1),(1384,309938408,2),(1384,325666809,1),(1384,341388009,2),(1384,357116409,1),(1384,372837610,2),(1384,388566010,1),(1384,404892011,2),(1384,420015611,1),(1384,436341612,2),(1384,452070012,1),(1384,467791212,2),(1384,483519612,1),(1384,499240813,2),(1384,514969213,1),(1384,530690413,2),(1384,544604413,1),(1384,562140013,2),(1384,576054014,1),(1384,594194414,2),(1384,607503614,1),(1384,625644014,2),(1384,638953215,1),(1384,657093615,2),(1384,671007616,1),(1384,688543216,2),(1384,702457216,1),(1384,719992817,2),(1384,733906817,1),(1384,752047218,2),(1384,765356418,1),(1384,783496819,2),(1384,796806019,1),(1384,814946419,2),(1384,828860420,1),(1384,846396020,2),(1384,860310020,1),(1384,877845621,2),(1384,891759621,1),(1384,909295221,2),(1384,923209222,1),(1384,941349622,2),(1384,954658822,1),(1384,972799222,2),(1384,986108422,1),(1384,1004248822,2),(1384,1018162822,1),(1384,1035698422,2),(1384,1049612422,1),(1384,1067148022,2),(1384,1081062022,1),(1384,1099202422,2),(1384,1112511622,1),(1384,1130652022,2),(1384,1143961223,1),(1384,1162101623,2),(1384,1173596423,1),(1384,1194156023,2),(1384,1205046023,1),(1384,1225605623,2),(1384,1236495624,1),(1384,1257055224,2),(1384,1268550024,1),(1384,1289109624,2),(1384,1299999624,1),(1384,1320559224,2),(1384,1331449224,1),(1384,1352008825,2),(1384,1362898825,1),(1384,1383458425,2),(1384,1394348425,1),(1384,1414908025,2),(1384,1425798025,1),(1384,1446357626,2),(1384,1457852426,1),(1384,1478412026,2),(1384,1489302027,1),(1384,1509861627,2),(1384,1520751627,1),(1384,1541311227,2),(1384,1552201227,1),(1384,1572760827,2),(1384,1583650827,1),(1384,1604210427,2),(1384,1615705227,1),(1384,1636264827,2),(1384,1647154827,1),(1384,1667714427,2),(1384,1678604427,1),(1384,1699164027,2),(1384,1710054027,1),(1384,1730613627,2),(1384,1741503627,1),(1384,1762063227,2),(1384,1772953227,1),(1384,1793512827,2),(1384,1805007627,1),(1384,1825567227,2),(1384,1836457227,1),(1384,1857016827,2),(1384,1867906827,1),(1384,1888466427,2),(1384,1899356427,1),(1384,1919916027,2),(1384,1930806027,1),(1384,1951365627,2),(1384,1962860427,1),(1384,1983420027,2),(1384,1994310027,1),(1384,2014869627,2),(1384,2025759627,1),(1384,2046319227,2),(1384,2057209227,1),(1384,2077768827,2),(1384,2088658827,1),(1384,2109218427,2),(1384,2120108427,1),(1384,2140668027,2),(1385,-2147483648,0),(1385,-1825098836,1),(1386,-2147483648,0),(1386,-1825095030,2),(1386,-873140400,1),(1386,-788904000,2),(1386,-786222000,1),(1386,-769395600,3),(1386,-763848000,2),(1386,-179341200,4),(1386,-163620000,2),(1386,-147891600,4),(1386,-131565600,2),(1386,-116442000,4),(1386,-100116000,2),(1386,-84387600,4),(1386,-68666400,2),(1386,-52938000,4),(1386,-37216800,2),(1386,-21488400,4),(1386,-5767200,2),(1386,9961200,4),(1386,25682400,2),(1386,41410800,4),(1386,57736800,2),(1386,73465200,4),(1386,89186401,2),(1386,104914802,4),(1386,120636002,2),(1386,136364403,4),(1386,152085603,2),(1386,167814004,4),(1386,183535204,2),(1386,199263605,4),(1386,215589605,2),(1386,230713206,4),(1386,247039206,2),(1386,262767607,4),(1386,278488807,2),(1386,294217208,4),(1386,309938408,2),(1386,325666809,4),(1386,341388009,2),(1386,357116409,4),(1386,372837610,2),(1386,388566010,4),(1386,404892011,2),(1386,420015611,4),(1386,436341612,2),(1386,452070012,4),(1386,467791212,2),(1386,483519612,4),(1386,499240813,2),(1386,514969213,4),(1386,530690413,2),(1386,544604413,4),(1386,562140013,2),(1386,576054014,4),(1386,594194414,2),(1386,607503614,4),(1386,625644014,2),(1386,638953215,4),(1386,657093615,2),(1386,671007616,4),(1386,688543216,2),(1386,702457216,4),(1386,719992817,2),(1386,733906817,4),(1386,752047218,2),(1386,765356418,4),(1386,783496819,2),(1386,796806019,4),(1386,814946419,2),(1386,828860420,4),(1386,846396020,2),(1386,860310020,4),(1386,877845621,2),(1386,891759621,4),(1386,909295221,2),(1386,923209222,4),(1386,941349622,2),(1386,954658822,4),(1386,972799222,2),(1386,986108422,4),(1386,1004248822,2),(1386,1018162822,4),(1386,1035698422,2),(1386,1049612422,4),(1386,1067148022,2),(1386,1081062022,4),(1386,1099202422,2),(1386,1112511622,4),(1386,1130652022,2),(1386,1143961223,4),(1386,1162101623,2),(1386,1173596423,4),(1386,1194156023,2),(1386,1205046023,4),(1386,1225605623,2),(1386,1236495624,4),(1386,1257055224,2),(1386,1268550024,4),(1386,1289109624,2),(1386,1299999624,4),(1386,1320559224,2),(1386,1331449224,4),(1386,1352008825,2),(1386,1362898825,4),(1386,1383458425,2),(1386,1394348425,4),(1386,1414908025,2),(1386,1425798025,4),(1386,1446357626,2),(1386,1457852426,4),(1386,1478412026,2),(1386,1489302027,4),(1386,1509861627,2),(1386,1520751627,4),(1386,1541311227,2),(1386,1552201227,4),(1386,1572760827,2),(1386,1583650827,4),(1386,1604210427,2),(1386,1615705227,4),(1386,1636264827,2),(1386,1647154827,4),(1386,1667714427,2),(1386,1678604427,4),(1386,1699164027,2),(1386,1710054027,4),(1386,1730613627,2),(1386,1741503627,4),(1386,1762063227,2),(1386,1772953227,4),(1386,1793512827,2),(1386,1805007627,4),(1386,1825567227,2),(1386,1836457227,4),(1386,1857016827,2),(1386,1867906827,4),(1386,1888466427,2),(1386,1899356427,4),(1386,1919916027,2),(1386,1930806027,4),(1386,1951365627,2),(1386,1962860427,4),(1386,1983420027,2),(1386,1994310027,4),(1386,2014869627,2),(1386,2025759627,4),(1386,2046319227,2),(1386,2057209227,4),(1386,2077768827,2),(1386,2088658827,4),(1386,2109218427,2),(1386,2120108427,4),(1386,2140668027,2),(1387,-2147483648,2),(1387,-1633280400,1),(1387,-1615140000,2),(1387,-1601830800,1),(1387,-1583690400,2),(1387,-1570381200,1),(1387,-1551636000,2),(1387,-1536512400,1),(1387,-1523210400,2),(1387,-1504458000,1),(1387,-1491760800,2),(1387,-1473008400,1),(1387,-1459706400,2),(1387,-1441558800,1),(1387,-1428256800,2),(1387,-1410109200,1),(1387,-1396807200,2),(1387,-1378659600,1),(1387,-1365357600,2),(1387,-1347210000,1),(1387,-1333908000,2),(1387,-1315155600,1),(1387,-1301853600,2),(1387,-1283706000,1),(1387,-1270404000,2),(1387,-1252256400,1),(1387,-1238954400,2),(1387,-1220806800,1),(1387,-1207504800,2),(1387,-1189357200,1),(1387,-1176055200,2),(1387,-1157302800,1),(1387,-1144605600,2),(1387,-1125853200,1),(1387,-1112551200,2),(1387,-1094403600,1),(1387,-1081101600,2),(1387,-1062954000,1),(1387,-1049652000,2),(1387,-1031504400,1),(1387,-1018202400,2),(1387,-1000054800,1),(1387,-986752800,2),(1387,-968000400,1),(1387,-955303200,2),(1387,-936550800,1),(1387,-923248800,2),(1387,-905101200,1),(1387,-891799200,2),(1387,-880218000,3),(1387,-769395600,4),(1387,-765396000,2),(1387,-747248400,1),(1387,-733946400,2),(1387,-715798800,1),(1387,-702496800,2),(1387,-684349200,1),(1387,-671047200,2),(1387,-652899600,1),(1387,-639597600,2),(1387,-620845200,1),(1387,-608148000,2),(1387,-589395600,1),(1387,-576093600,2),(1387,-557946000,1),(1387,-544644000,2),(1387,-526496400,1),(1387,-513194400,2),(1387,-495046800,1),(1387,-481744800,2),(1387,-463597200,1),(1387,-447271200,2),(1387,-431542800,1),(1387,-415821600,2),(1387,-400093200,1),(1387,-384372000,2),(1387,-368643600,1),(1387,-352922400,2),(1387,-337194000,1),(1387,-321472800,2),(1387,-305744400,1),(1387,-289418400,2),(1387,-273690000,1),(1387,-257968800,2),(1387,-242240400,1),(1387,-226519200,2),(1387,-210790800,1),(1387,-195069600,2),(1387,-179341200,1),(1387,-163620000,2),(1387,-147891600,1),(1387,-131565600,2),(1387,-116442000,1),(1387,-100116000,2),(1387,-84387600,1),(1387,-68666400,2),(1387,-52938000,1),(1387,-37216800,2),(1387,-21488400,1),(1387,-5767200,2),(1387,9961200,1),(1387,25682400,2),(1387,41410800,1),(1387,57736800,2),(1387,73465200,1),(1387,89186401,2),(1387,104914802,1),(1387,120636002,2),(1387,126687603,1),(1387,152085603,2),(1387,162370804,1),(1387,183535204,2),(1387,199263605,1),(1387,215589605,2),(1387,230713206,1),(1387,247039206,2),(1387,262767607,1),(1387,278488807,2),(1387,294217208,1),(1387,309938408,2),(1387,325666809,1),(1387,341388009,2),(1387,357116409,1),(1387,372837610,2),(1387,388566010,1),(1387,404892011,2),(1387,420015611,1),(1387,436341612,2),(1387,452070012,1),(1387,467791212,2),(1387,483519612,1),(1387,499240813,2),(1387,514969213,1),(1387,530690413,2),(1387,544604413,1),(1387,562140013,2),(1387,576054014,1),(1387,594194414,2),(1387,607503614,1),(1387,625644014,2),(1387,638953215,1),(1387,657093615,2),(1387,671007616,1),(1387,688543216,2),(1387,702457216,1),(1387,719992817,2),(1387,733906817,1),(1387,752047218,2),(1387,765356418,1),(1387,783496819,2),(1387,796806019,1),(1387,814946419,2),(1387,828860420,1),(1387,846396020,2),(1387,860310020,1),(1387,877845621,2),(1387,891759621,1),(1387,909295221,2),(1387,923209222,1),(1387,941349622,2),(1387,954658822,1),(1387,972799222,2),(1387,986108422,1),(1387,1004248822,2),(1387,1018162822,1),(1387,1035698422,2),(1387,1049612422,1),(1387,1067148022,2),(1387,1081062022,1),(1387,1099202422,2),(1387,1112511622,1),(1387,1130652022,2),(1387,1143961223,1),(1387,1162101623,2),(1387,1173596423,1),(1387,1194156023,2),(1387,1205046023,1),(1387,1225605623,2),(1387,1236495624,1),(1387,1257055224,2),(1387,1268550024,1),(1387,1289109624,2),(1387,1299999624,1),(1387,1320559224,2),(1387,1331449224,1),(1387,1352008825,2),(1387,1362898825,1),(1387,1383458425,2),(1387,1394348425,1),(1387,1414908025,2),(1387,1425798025,1),(1387,1446357626,2),(1387,1457852426,1),(1387,1478412026,2),(1387,1489302027,1),(1387,1509861627,2),(1387,1520751627,1),(1387,1541311227,2),(1387,1552201227,1),(1387,1572760827,2),(1387,1583650827,1),(1387,1604210427,2),(1387,1615705227,1),(1387,1636264827,2),(1387,1647154827,1),(1387,1667714427,2),(1387,1678604427,1),(1387,1699164027,2),(1387,1710054027,1),(1387,1730613627,2),(1387,1741503627,1),(1387,1762063227,2),(1387,1772953227,1),(1387,1793512827,2),(1387,1805007627,1),(1387,1825567227,2),(1387,1836457227,1),(1387,1857016827,2),(1387,1867906827,1),(1387,1888466427,2),(1387,1899356427,1),(1387,1919916027,2),(1387,1930806027,1),(1387,1951365627,2),(1387,1962860427,1),(1387,1983420027,2),(1387,1994310027,1),(1387,2014869627,2),(1387,2025759627,1),(1387,2046319227,2),(1387,2057209227,1),(1387,2077768827,2),(1387,2088658827,1),(1387,2109218427,2),(1387,2120108427,1),(1387,2140668027,2),(1388,-2147483648,2),(1388,-1632070800,1),(1388,-1615140000,2),(1388,-923252400,1),(1388,-880218000,3),(1388,-769395600,4),(1388,-765396000,2),(1388,136364403,1),(1388,152085603,2),(1388,167814004,1),(1388,183535204,2),(1388,199263605,1),(1388,215589605,2),(1388,230713206,1),(1388,247039206,2),(1388,262767607,1),(1388,278488807,2),(1388,294217208,1),(1388,309938408,2),(1388,325666809,1),(1388,341388009,2),(1388,357116409,1),(1388,372837610,2),(1388,388566010,1),(1388,404892011,2),(1388,420015611,1),(1388,436341612,2),(1388,452070012,1),(1388,467791212,2),(1388,483519612,1),(1388,499240813,2),(1388,514969213,1),(1388,530690413,2),(1388,544604413,1),(1388,562140013,2),(1388,576054014,1),(1388,594194414,2),(1388,607503614,1),(1388,625644014,2),(1388,638953215,1),(1388,657093615,2),(1388,671007616,1),(1388,688543216,2),(1388,702457216,1),(1388,719992817,2),(1388,733906817,1),(1388,752047218,2),(1388,765356418,1),(1388,783496819,2),(1388,796806019,1),(1388,814946419,2),(1388,828860420,1),(1388,846396020,2),(1388,860310020,1),(1388,877845621,2),(1388,891759621,1),(1388,909295221,2),(1388,923209222,1),(1388,941349622,2),(1388,954658822,1),(1388,972799222,2),(1388,986108422,1),(1388,1004248822,2),(1388,1018162822,1),(1388,1035698422,2),(1388,1049612422,1),(1388,1067148022,2),(1388,1081062022,1),(1388,1099202422,2),(1388,1112511622,1),(1388,1130652022,2),(1388,1143961223,1),(1388,1162101623,2),(1388,1173596423,1),(1388,1194156023,2),(1388,1205046023,1),(1388,1225605623,2),(1388,1236495624,1),(1388,1257055224,2),(1388,1268550024,1),(1388,1289109624,2),(1388,1299999624,1),(1388,1320559224,2),(1388,1331449224,1),(1388,1352008825,2),(1388,1362898825,1),(1388,1383458425,2),(1388,1394348425,1),(1388,1414908025,2),(1388,1425798025,1),(1388,1446357626,2),(1388,1457852426,1),(1388,1478412026,2),(1388,1489302027,1),(1388,1509861627,2),(1388,1520751627,1),(1388,1541311227,2),(1388,1552201227,1),(1388,1572760827,2),(1388,1583650827,1),(1388,1604210427,2),(1388,1615705227,1),(1388,1636264827,2),(1388,1647154827,1),(1388,1667714427,2),(1388,1678604427,1),(1388,1699164027,2),(1388,1710054027,1),(1388,1730613627,2),(1388,1741503627,1),(1388,1762063227,2),(1388,1772953227,1),(1388,1793512827,2),(1388,1805007627,1),(1388,1825567227,2),(1388,1836457227,1),(1388,1857016827,2),(1388,1867906827,1),(1388,1888466427,2),(1388,1899356427,1),(1388,1919916027,2),(1388,1930806027,1),(1388,1951365627,2),(1388,1962860427,1),(1388,1983420027,2),(1388,1994310027,1),(1388,2014869627,2),(1388,2025759627,1),(1388,2046319227,2),(1388,2057209227,1),(1388,2077768827,2),(1388,2088658827,1),(1388,2109218427,2),(1388,2120108427,1),(1388,2140668027,2),(1389,-2147483648,1),(1389,-880196400,2),(1389,-769395600,3),(1389,-765374400,1),(1389,-86878800,4),(1389,-21466800,5),(1389,-5745600,4),(1389,9982800,5),(1389,25704000,4),(1389,41432400,5),(1389,57758400,4),(1389,73486800,5),(1389,89208001,4),(1389,104936402,5),(1389,120657602,4),(1389,126709203,5),(1389,152107203,4),(1389,162392404,5),(1389,183556804,4),(1389,199285205,5),(1389,215611205,4),(1389,230734806,5),(1389,247060806,4),(1389,262789207,5),(1389,278510407,4),(1389,294238808,5),(1389,309960008,4),(1389,325688409,5),(1389,341409609,4),(1389,357138009,5),(1389,372859210,4),(1389,388587610,5),(1389,404913611,4),(1389,420037211,5),(1389,436363212,6),(1389,439030812,8),(1389,452084412,7),(1389,467805612,8),(1389,483534012,7),(1389,499255213,8),(1389,514983613,7),(1389,530704813,8),(1389,544618813,7),(1389,562154413,8),(1389,576068414,7),(1389,594208814,8),(1389,607518014,7),(1389,625658414,8),(1389,638967615,7),(1389,657108015,8),(1389,671022016,7),(1389,688557616,8),(1389,702471616,7),(1389,720007217,8),(1389,733921217,7),(1389,752061618,8),(1389,765370818,7),(1389,783511219,8),(1389,796820419,7),(1389,814960819,8),(1389,828874820,7),(1389,846410420,8),(1389,860324420,7),(1389,877860021,8),(1389,891774021,7),(1389,909309621,8),(1389,923223622,7),(1389,941364022,8),(1389,954673222,7),(1389,972813622,8),(1389,986122822,7),(1389,1004263222,8),(1389,1018177222,7),(1389,1035712822,8),(1389,1049626822,7),(1389,1067162422,8),(1389,1081076422,7),(1389,1099216822,8),(1389,1112526022,7),(1389,1130666422,8),(1389,1143975623,7),(1389,1162116023,8),(1389,1173610823,7),(1389,1194170423,8),(1389,1205060423,7),(1389,1225620023,8),(1389,1236510024,7),(1389,1257069624,8),(1389,1268564424,7),(1389,1289124024,8),(1389,1300014024,7),(1389,1320573624,8),(1389,1331463624,7),(1389,1352023225,8),(1389,1362913225,7),(1389,1383472825,8),(1389,1394362825,7),(1389,1414922425,8),(1389,1425812425,7),(1389,1446372026,8),(1389,1457866826,7),(1389,1478426426,8),(1389,1489316427,7),(1389,1509876027,8),(1389,1520766027,7),(1389,1541325627,8),(1389,1552215627,7),(1389,1572775227,8),(1389,1583665227,7),(1389,1604224827,8),(1389,1615719627,7),(1389,1636279227,8),(1389,1647169227,7),(1389,1667728827,8),(1389,1678618827,7),(1389,1699178427,8),(1389,1710068427,7),(1389,1730628027,8),(1389,1741518027,7),(1389,1762077627,8),(1389,1772967627,7),(1389,1793527227,8),(1389,1805022027,7),(1389,1825581627,8),(1389,1836471627,7),(1389,1857031227,8),(1389,1867921227,7),(1389,1888480827,8),(1389,1899370827,7),(1389,1919930427,8),(1389,1930820427,7),(1389,1951380027,8),(1389,1962874827,7),(1389,1983434427,8),(1389,1994324427,7),(1389,2014884027,8),(1389,2025774027,7),(1389,2046333627,8),(1389,2057223627,7),(1389,2077783227,8),(1389,2088673227,7),(1389,2109232827,8),(1389,2120122827,7),(1389,2140682427,8),(1390,-2147483648,0),(1390,-1767217820,2),(1390,-1206961200,1),(1390,-1191366000,2),(1390,-1175378400,1),(1390,-1159830000,2),(1390,-633823200,1),(1390,-622072800,2),(1390,-602287200,1),(1390,-591836400,2),(1390,-570751200,1),(1390,-560214000,2),(1390,-539128800,1),(1390,-531356400,2),(1390,-191368800,1),(1390,-184201200,2),(1390,-155167200,1),(1390,-150073200,2),(1390,-128901600,1),(1390,-121129200,2),(1390,-99957600,1),(1390,-89593200,2),(1390,-68421600,1),(1390,-57970800,2),(1390,499744813,1),(1390,511232413,2),(1390,530589613,1),(1390,540262813,2),(1390,562125613,1),(1390,571194014,2),(1390,592970414,1),(1390,602038814,2),(1390,624420014,1),(1390,634698015,2),(1390,938916022,1),(1390,951613222,2),(1390,970970422,1),(1390,971571622,2),(1390,1003024822,1),(1390,1013907622,2),(1391,-2147483648,2),(1391,-1633273200,1),(1391,-1615132800,2),(1391,-1601823600,1),(1391,-1583683200,2),(1391,-880210800,3),(1391,-769395600,4),(1391,-765388800,2),(1391,-84380400,1),(1391,-68659200,2),(1391,-52930800,1),(1391,-37209600,2),(1391,-21481200,1),(1391,-5760000,2),(1391,9968400,1),(1391,25689600,2),(1391,41418000,1),(1391,57744000,2),(1391,73472400,1),(1391,89193601,2),(1391,104922002,1),(1391,120643202,2),(1391,126694803,1),(1391,152092803,2),(1391,162378004,1),(1391,183542404,2),(1391,199270805,1),(1391,215596805,2),(1391,230720406,1),(1391,247046406,2),(1391,262774807,1),(1391,278496007,2),(1391,294224408,1),(1391,309945608,2),(1391,325674009,1),(1391,341395209,2),(1391,357123609,1),(1391,372844810,2),(1391,388573210,1),(1391,404899211,2),(1391,420022811,1),(1391,436348812,2),(1391,452077212,1),(1391,467798412,2),(1391,483526812,1),(1391,499248013,2),(1391,514976413,1),(1391,530697613,2),(1391,544611613,1),(1391,562147213,2),(1391,576061214,1),(1391,594201614,2),(1391,607510814,1),(1391,625651214,2),(1391,638960415,1),(1391,657100815,2),(1391,671014816,1),(1391,688550416,2),(1391,702464416,1),(1391,720000017,2),(1391,733914017,1),(1391,752054418,2),(1391,765363618,1),(1391,783504019,2),(1391,796813219,1),(1391,814953619,2),(1391,828867620,1),(1391,846403220,2),(1391,860317220,1),(1391,877852821,2),(1391,891766821,1),(1391,909302421,2),(1391,923216422,1),(1391,941356822,2),(1391,954666022,1),(1391,972806422,2),(1391,986115622,1),(1391,1004256022,2),(1391,1018170022,1),(1391,1035705622,2),(1391,1049619622,1),(1391,1067155222,2),(1391,1081069222,1),(1391,1099209622,2),(1391,1112518822,1),(1391,1130659222,2),(1391,1143968423,1),(1391,1162108823,2),(1391,1173603623,1),(1391,1194163223,2),(1391,1205053223,1),(1391,1225612823,2),(1391,1236502824,1),(1391,1257062424,2),(1391,1268557224,1),(1391,1289116824,6),(1391,1300003224,5),(1391,1320562824,6),(1391,1331452824,5),(1391,1352012425,6),(1391,1362902425,5),(1391,1383462025,6),(1391,1394352025,5),(1391,1414911625,6),(1391,1425801625,5),(1391,1446361226,6),(1391,1457856026,5),(1391,1478415626,6),(1391,1489305627,5),(1391,1509865227,6),(1391,1520755227,5),(1391,1541314827,6),(1391,1552204827,5),(1391,1572764427,6),(1391,1583654427,5),(1391,1604214027,6),(1391,1615708827,5),(1391,1636268427,6),(1391,1647158427,5),(1391,1667718027,6),(1391,1678608027,5),(1391,1699167627,6),(1391,1710057627,5),(1391,1730617227,6),(1391,1741507227,5),(1391,1762066827,6),(1391,1772956827,5),(1391,1793516427,6),(1391,1805011227,5),(1391,1825570827,6),(1391,1836460827,5),(1391,1857020427,6),(1391,1867910427,5),(1391,1888470027,6),(1391,1899360027,5),(1391,1919919627,6),(1391,1930809627,5),(1391,1951369227,6),(1391,1962864027,5),(1391,1983423627,6),(1391,1994313627,5),(1391,2014873227,6),(1391,2025763227,5),(1391,2046322827,6),(1391,2057212827,5),(1391,2077772427,6),(1391,2088662427,5),(1391,2109222027,6),(1391,2120112027,5),(1391,2140671627,6),(1392,-2147483648,2),(1392,-1633273200,1),(1392,-1615132800,2),(1392,-1601823600,1),(1392,-1583683200,2),(1392,-880210800,3),(1392,-769395600,4),(1392,-765388800,2),(1392,-84380400,1),(1392,-68659200,2),(1392,-52930800,1),(1392,-37209600,2),(1392,-21481200,1),(1392,-5760000,2),(1392,9968400,1),(1392,25689600,2),(1392,41418000,1),(1392,57744000,2),(1392,73472400,1),(1392,89193601,2),(1392,104922002,1),(1392,120643202,2),(1392,126694803,1),(1392,152092803,2),(1392,162378004,1),(1392,183542404,2),(1392,199270805,1),(1392,215596805,2),(1392,230720406,1),(1392,247046406,2),(1392,262774807,1),(1392,278496007,2),(1392,294224408,1),(1392,309945608,2),(1392,325674009,1),(1392,341395209,2),(1392,357123609,1),(1392,372844810,2),(1392,388573210,1),(1392,404899211,2),(1392,420022811,1),(1392,436348812,2),(1392,452077212,1),(1392,467798412,2),(1392,483526812,1),(1392,499248013,2),(1392,514976413,1),(1392,530697613,2),(1392,544611613,1),(1392,562147213,2),(1392,576061214,1),(1392,594201614,2),(1392,607510814,1),(1392,625651214,2),(1392,638960415,1),(1392,657100815,2),(1392,671014816,1),(1392,688550416,2),(1392,702464416,1),(1392,720000017,6),(1392,733910417,5),(1392,752050818,6),(1392,765360018,5),(1392,783500419,6),(1392,796809619,5),(1392,814950019,6),(1392,828864020,5),(1392,846399620,6),(1392,860313620,5),(1392,877849221,6),(1392,891763221,5),(1392,909298821,6),(1392,923212822,5),(1392,941353222,6),(1392,954662422,5),(1392,972802822,6),(1392,986112022,5),(1392,1004252422,6),(1392,1018166422,5),(1392,1035702022,6),(1392,1049616022,5),(1392,1067151622,6),(1392,1081065622,5),(1392,1099206022,6),(1392,1112515222,5),(1392,1130655622,6),(1392,1143964823,5),(1392,1162105223,6),(1392,1173600023,5),(1392,1194159623,6),(1392,1205049623,5),(1392,1225609223,6),(1392,1236499224,5),(1392,1257058824,6),(1392,1268553624,5),(1392,1289113224,6),(1392,1300003224,5),(1392,1320562824,6),(1392,1331452824,5),(1392,1352012425,6),(1392,1362902425,5),(1392,1383462025,6),(1392,1394352025,5),(1392,1414911625,6),(1392,1425801625,5),(1392,1446361226,6),(1392,1457856026,5),(1392,1478415626,6),(1392,1489305627,5),(1392,1509865227,6),(1392,1520755227,5),(1392,1541314827,6),(1392,1552204827,5),(1392,1572764427,6),(1392,1583654427,5),(1392,1604214027,6),(1392,1615708827,5),(1392,1636268427,6),(1392,1647158427,5),(1392,1667718027,6),(1392,1678608027,5),(1392,1699167627,6),(1392,1710057627,5),(1392,1730617227,6),(1392,1741507227,5),(1392,1762066827,6),(1392,1772956827,5),(1392,1793516427,6),(1392,1805011227,5),(1392,1825570827,6),(1392,1836460827,5),(1392,1857020427,6),(1392,1867910427,5),(1392,1888470027,6),(1392,1899360027,5),(1392,1919919627,6),(1392,1930809627,5),(1392,1951369227,6),(1392,1962864027,5),(1392,1983423627,6),(1392,1994313627,5),(1392,2014873227,6),(1392,2025763227,5),(1392,2046322827,6),(1392,2057212827,5),(1392,2077772427,6),(1392,2088662427,5),(1392,2109222027,6),(1392,2120112027,5),(1392,2140671627,6),(1393,-2147483648,2),(1393,-1633273200,1),(1393,-1615132800,2),(1393,-1601823600,1),(1393,-1583683200,2),(1393,-880210800,3),(1393,-769395600,4),(1393,-765388800,2),(1393,-84380400,1),(1393,-68659200,2),(1393,-52930800,1),(1393,-37209600,2),(1393,-21481200,1),(1393,-5760000,2),(1393,9968400,1),(1393,25689600,2),(1393,41418000,1),(1393,57744000,2),(1393,73472400,1),(1393,89193601,2),(1393,104922002,1),(1393,120643202,2),(1393,126694803,1),(1393,152092803,2),(1393,162378004,1),(1393,183542404,2),(1393,199270805,1),(1393,215596805,2),(1393,230720406,1),(1393,247046406,2),(1393,262774807,1),(1393,278496007,2),(1393,294224408,1),(1393,309945608,2),(1393,325674009,1),(1393,341395209,2),(1393,357123609,1),(1393,372844810,2),(1393,388573210,1),(1393,404899211,2),(1393,420022811,1),(1393,436348812,2),(1393,452077212,1),(1393,467798412,2),(1393,483526812,1),(1393,499248013,2),(1393,514976413,1),(1393,530697613,2),(1393,544611613,1),(1393,562147213,2),(1393,576061214,1),(1393,594201614,2),(1393,607510814,1),(1393,625651214,2),(1393,638960415,1),(1393,657100815,2),(1393,671014816,1),(1393,688550416,2),(1393,702464416,1),(1393,720000017,2),(1393,733914017,1),(1393,752054418,2),(1393,765363618,1),(1393,783504019,2),(1393,796813219,1),(1393,814953619,2),(1393,828867620,1),(1393,846403220,2),(1393,860317220,1),(1393,877852821,2),(1393,891766821,1),(1393,909302421,2),(1393,923216422,1),(1393,941356822,2),(1393,954666022,1),(1393,972806422,2),(1393,986115622,1),(1393,1004256022,2),(1393,1018170022,1),(1393,1035705622,2),(1393,1049619622,1),(1393,1067155222,6),(1393,1081065622,5),(1393,1099206022,6),(1393,1112515222,5),(1393,1130655622,6),(1393,1143964823,5),(1393,1162105223,6),(1393,1173600023,5),(1393,1194159623,6),(1393,1205049623,5),(1393,1225609223,6),(1393,1236499224,5),(1393,1257058824,6),(1393,1268553624,5),(1393,1289113224,6),(1393,1300003224,5),(1393,1320562824,6),(1393,1331452824,5),(1393,1352012425,6),(1393,1362902425,5),(1393,1383462025,6),(1393,1394352025,5),(1393,1414911625,6),(1393,1425801625,5),(1393,1446361226,6),(1393,1457856026,5),(1393,1478415626,6),(1393,1489305627,5),(1393,1509865227,6),(1393,1520755227,5),(1393,1541314827,6),(1393,1552204827,5),(1393,1572764427,6),(1393,1583654427,5),(1393,1604214027,6),(1393,1615708827,5),(1393,1636268427,6),(1393,1647158427,5),(1393,1667718027,6),(1393,1678608027,5),(1393,1699167627,6),(1393,1710057627,5),(1393,1730617227,6),(1393,1741507227,5),(1393,1762066827,6),(1393,1772956827,5),(1393,1793516427,6),(1393,1805011227,5),(1393,1825570827,6),(1393,1836460827,5),(1393,1857020427,6),(1393,1867910427,5),(1393,1888470027,6),(1393,1899360027,5),(1393,1919919627,6),(1393,1930809627,5),(1393,1951369227,6),(1393,1962864027,5),(1393,1983423627,6),(1393,1994313627,5),(1393,2014873227,6),(1393,2025763227,5),(1393,2046322827,6),(1393,2057212827,5),(1393,2077772427,6),(1393,2088662427,5),(1393,2109222027,6),(1393,2120112027,5),(1393,2140671627,6),(1394,-2147483648,0),(1394,-1686083584,1),(1394,323845209,4),(1394,338950809,2),(1394,354675609,3),(1394,370400410,2),(1394,386125210,3),(1394,401850011,2),(1394,417574811,3),(1394,433299612,2),(1394,449024412,3),(1394,465354012,2),(1394,481078812,3),(1394,496803613,2),(1394,512528413,3),(1394,528253213,2),(1394,543978013,3),(1394,559702813,2),(1394,575427614,3),(1394,591152414,2),(1394,606877214,3),(1394,622602014,2),(1394,638326815,3),(1394,654656415,2),(1394,670381216,3),(1394,686106016,2),(1394,701830816,3),(1394,717555617,2),(1394,733280417,3),(1394,749005218,2),(1394,764730018,3),(1394,780454819,2),(1394,796179619,3),(1394,811904419,2),(1394,828234020,3),(1394,846378020,2),(1394,859683620,3),(1394,877827621,2),(1394,891133221,3),(1394,909277221,2),(1394,922582822,3),(1394,941331622,2),(1394,954032422,3),(1394,972781222,2),(1394,985482022,3),(1394,1004230822,2),(1394,1017536422,3),(1394,1035680422,2),(1394,1048986022,3),(1394,1067130022,2),(1394,1080435622,3),(1394,1099184422,2),(1394,1111885222,3),(1394,1130634022,2),(1394,1143334823,3),(1394,1162083623,2),(1394,1174784423,3),(1394,1193533223,2),(1394,1206838823,3),(1394,1224982823,2),(1394,1238288424,3),(1394,1256432424,2),(1394,1269738024,3),(1394,1288486824,2),(1394,1301187624,3),(1394,1319936424,2),(1394,1332637224,3),(1394,1351386025,2),(1394,1364691625,3),(1394,1382835625,2),(1394,1396141225,3),(1394,1414285225,2),(1394,1427590825,3),(1394,1445734826,2),(1394,1459040426,3),(1394,1477789226,2),(1394,1490490027,3),(1394,1509238827,2),(1394,1521939627,3),(1394,1540688427,2),(1394,1553994027,3),(1394,1572138027,2),(1394,1585443627,3),(1394,1603587627,2),(1394,1616893227,3),(1394,1635642027,2),(1394,1648342827,3),(1394,1667091627,2),(1394,1679792427,3),(1394,1698541227,2),(1394,1711846827,3),(1394,1729990827,2),(1394,1743296427,3),(1394,1761440427,2),(1394,1774746027,3),(1394,1792890027,2),(1394,1806195627,3),(1394,1824944427,2),(1394,1837645227,3),(1394,1856394027,2),(1394,1869094827,3),(1394,1887843627,2),(1394,1901149227,3),(1394,1919293227,2),(1394,1932598827,3),(1394,1950742827,2),(1394,1964048427,3),(1394,1982797227,2),(1394,1995498027,3),(1394,2014246827,2),(1394,2026947627,3),(1394,2045696427,2),(1394,2058397227,3),(1394,2077146027,2),(1394,2090451627,3),(1394,2108595627,2),(1394,2121901227,3),(1394,2140045227,2),(1395,-2147483648,0),(1395,-1514739600,1),(1395,-1343066400,2),(1395,-1234807200,1),(1395,-1220292000,2),(1395,-1207159200,1),(1395,-1191344400,2),(1395,828864020,3),(1395,846399620,2),(1395,860313620,3),(1395,877849221,2),(1395,891766821,4),(1395,909302421,1),(1395,923216422,4),(1395,941356822,1),(1395,954666022,4),(1395,972806422,1),(1395,989139622,4),(1395,1001836822,1),(1395,1018170022,4),(1395,1035705622,1),(1395,1049619622,4),(1395,1067155222,1),(1395,1081069222,4),(1395,1099209622,1),(1395,1112518822,4),(1395,1130659222,1),(1395,1143968423,4),(1395,1162108823,1),(1395,1175418023,4),(1395,1193558423,1),(1395,1207472423,4),(1395,1225008023,1),(1395,1238922024,4),(1395,1256457624,1),(1395,1268557224,4),(1395,1289116824,1),(1395,1300006824,4),(1395,1320566424,1),(1395,1331456424,4),(1395,1352016025,1),(1395,1362906025,4),(1395,1383465625,1),(1395,1394355625,4),(1395,1414915225,1),(1395,1425805225,4),(1395,1446364826,1),(1395,1457859626,4),(1395,1478419226,1),(1395,1489309227,4),(1395,1509868827,1),(1395,1520758827,4),(1395,1541318427,1),(1395,1552208427,4),(1395,1572768027,1),(1395,1583658027,4),(1395,1604217627,1),(1395,1615712427,4),(1395,1636272027,1),(1395,1647162027,4),(1395,1667721627,1),(1395,1678611627,4),(1395,1699171227,1),(1395,1710061227,4),(1395,1730620827,1),(1395,1741510827,4),(1395,1762070427,1),(1395,1772960427,4),(1395,1793520027,1),(1395,1805014827,4),(1395,1825574427,1),(1395,1836464427,4),(1395,1857024027,1),(1395,1867914027,4),(1395,1888473627,1),(1395,1899363627,4),(1395,1919923227,1),(1395,1930813227,4),(1395,1951372827,1),(1395,1962867627,4),(1395,1983427227,1),(1395,1994317227,4),(1395,2014876827,1),(1395,2025766827,4),(1395,2046326427,1),(1395,2057216427,4),(1395,2077776027,1),(1395,2088666027,4),(1395,2109225627,1),(1395,2120115627,4),(1395,2140675227,1),(1396,-2147483648,1),(1396,-1946918424,2),(1397,-2147483648,0),(1397,-1546300800,3),(1397,-880221600,1),(1397,-769395600,2),(1397,-765399600,3),(1397,-147902400,4),(1397,-131572800,3),(1397,325663209,5),(1397,341384409,3),(1397,357112809,5),(1397,372834010,3),(1397,388562410,5),(1397,404888411,3),(1397,420012011,5),(1397,436338012,3),(1397,452066412,5),(1397,467787612,3),(1397,483516012,5),(1397,499237213,3),(1397,514965613,5),(1397,530686813,3),(1397,544600813,5),(1397,562136413,3),(1397,576050414,5),(1397,594190814,3),(1397,607500014,5),(1397,625640414,3),(1397,638949615,5),(1397,657090015,3),(1397,671004016,5),(1397,688539616,3),(1397,702453616,5),(1397,719989217,3),(1397,733903217,5),(1397,752043618,3),(1397,765352818,5),(1397,783493219,3),(1397,796802419,6),(1397,814946419,7),(1397,828860420,6),(1397,846396020,7),(1397,860310020,6),(1397,877845621,7),(1397,891759621,6),(1397,909295221,7),(1397,923209222,6),(1397,941349622,8),(1397,954662422,9),(1397,972802822,7),(1397,986108422,6),(1397,1004248822,7),(1397,1018162822,6),(1397,1035698422,7),(1397,1049612422,6),(1397,1067148022,7),(1397,1081062022,6),(1397,1099202422,7),(1397,1112511622,6),(1397,1130652022,7),(1397,1143961223,6),(1397,1162101623,7),(1397,1173596423,6),(1397,1194156023,7),(1397,1205046023,6),(1397,1225605623,7),(1397,1236495624,6),(1397,1257055224,7),(1397,1268550024,6),(1397,1289109624,7),(1397,1299999624,6),(1397,1320559224,7),(1397,1331449224,6),(1397,1352008825,7),(1397,1362898825,6),(1397,1383458425,7),(1397,1394348425,6),(1397,1414908025,7),(1397,1425798025,6),(1397,1446357626,7),(1397,1457852426,6),(1397,1478412026,7),(1397,1489302027,6),(1397,1509861627,7),(1397,1520751627,6),(1397,1541311227,7),(1397,1552201227,6),(1397,1572760827,7),(1397,1583650827,6),(1397,1604210427,7),(1397,1615705227,6),(1397,1636264827,7),(1397,1647154827,6),(1397,1667714427,7),(1397,1678604427,6),(1397,1699164027,7),(1397,1710054027,6),(1397,1730613627,7),(1397,1741503627,6),(1397,1762063227,7),(1397,1772953227,6),(1397,1793512827,7),(1397,1805007627,6),(1397,1825567227,7),(1397,1836457227,6),(1397,1857016827,7),(1397,1867906827,6),(1397,1888466427,7),(1397,1899356427,6),(1397,1919916027,7),(1397,1930806027,6),(1397,1951365627,7),(1397,1962860427,6),(1397,1983420027,7),(1397,1994310027,6),(1397,2014869627,7),(1397,2025759627,6),(1397,2046319227,7),(1397,2057209227,6),(1397,2077768827,7),(1397,2088658827,6),(1397,2109218427,7),(1397,2120108427,6),(1397,2140668027,7),(1398,-2147483648,0),(1398,-1861906760,1),(1398,-1104524348,2),(1398,-765317964,3),(1398,465449412,4),(1399,-2147483648,2),(1399,-1633273200,1),(1399,-1615132800,2),(1399,-1601823600,1),(1399,-1583683200,2),(1399,-880210800,3),(1399,-820519140,2),(1399,-812653140,3),(1399,-796845540,2),(1399,-84380400,1),(1399,-68659200,2),(1400,-2147483648,1),(1400,-1670483460,3),(1400,421218011,2),(1400,436334412,3),(1400,452062812,2),(1400,467784012,3),(1400,483512412,2),(1400,499233613,3),(1400,514962013,2),(1400,530683213,3),(1400,546411613,2),(1400,562132813,3),(1400,576050414,4),(1400,594194414,5),(1400,607500014,4),(1400,625644014,5),(1400,638949615,4),(1400,657093615,5),(1400,671004016,4),(1400,688543216,5),(1400,702453616,4),(1400,719992817,5),(1400,733903217,4),(1400,752047218,5),(1400,765352818,4),(1400,783496819,5),(1400,796802419,4),(1400,814946419,5),(1400,828856820,4),(1400,846396020,5),(1400,860306420,4),(1400,877845621,5),(1400,1112504422,2),(1400,1130644822,3),(1400,1143954023,2),(1400,1162094423,3),(1400,1331449224,2),(1400,1352008825,3),(1400,1362898825,2),(1400,1383458425,3),(1400,1394348425,2),(1400,1414908025,3),(1400,1425798025,2),(1400,1446357626,3),(1400,1489302027,2),(1400,1509861627,3),(1400,1520751627,2),(1400,1541311227,3),(1400,1552201227,2),(1400,1572760827,3),(1400,1583650827,2),(1400,1604210427,3),(1400,1615705227,2),(1400,1636264827,3),(1400,1647154827,2),(1400,1667714427,3),(1400,1678604427,2),(1400,1699164027,3),(1400,1710054027,2),(1400,1730613627,3),(1400,1741503627,2),(1400,1762063227,3),(1400,1772953227,2),(1400,1793512827,3),(1400,1805007627,2),(1400,1825567227,3),(1400,1836457227,2),(1400,1857016827,3),(1400,1867906827,2),(1400,1888466427,3),(1400,1899356427,2),(1400,1919916027,3),(1400,1930806027,2),(1400,1951365627,3),(1400,1962860427,2),(1400,1983420027,3),(1400,1994310027,2),(1400,2014869627,3),(1400,2025759627,2),(1400,2046319227,3),(1400,2057209227,2),(1400,2077768827,3),(1400,2088658827,2),(1400,2109218427,3),(1400,2120108427,2),(1400,2140668027,3),(1401,-2147483648,0),(1401,-1825098836,1),(1402,-2147483648,0),(1402,-1767209328,2),(1402,-1206950400,1),(1402,-1191355200,2),(1402,-1175367600,1),(1402,-1159819200,2),(1402,-633812400,1),(1402,-622062000,2),(1402,-602276400,1),(1402,-591825600,2),(1402,-570740400,1),(1402,-560203200,2),(1402,-539118000,1),(1402,-531345600,2),(1402,-191358000,1),(1402,-184190400,2),(1402,-155156400,1),(1402,-150062400,2),(1402,-128890800,1),(1402,-121118400,2),(1402,-99946800,1),(1402,-89582400,2),(1402,-68410800,1),(1402,-57960000,2),(1402,499755613,1),(1402,511243213,2),(1402,530600413,1),(1402,540273613,2),(1402,562136413,1),(1402,571204814,2),(1402,1214283623,3),(1402,1384056025,2),(1403,-2147483648,0),(1403,-1767210264,2),(1403,-1206954000,1),(1403,-1191358800,2),(1403,-1175371200,1),(1403,-1159822800,2),(1403,-633816000,1),(1403,-622065600,2),(1403,-602280000,1),(1403,-591829200,2),(1403,-570744000,1),(1403,-560206800,2),(1403,-539121600,1),(1403,-531349200,2),(1403,-191361600,1),(1403,-184194000,2),(1403,-155160000,1),(1403,-150066000,2),(1403,-128894400,1),(1403,-121122000,2),(1403,-99950400,1),(1403,-89586000,2),(1403,-68414400,1),(1403,-57963600,2),(1403,499752013,1),(1403,511239613,2),(1403,530596813,1),(1403,540270013,2),(1403,562132813,1),(1403,571201214,2),(1404,-2147483648,1),(1404,-873057600,3),(1404,-769395600,2),(1404,-765399600,1),(1405,-2147483648,1),(1405,-1892661434,2),(1405,-1688410800,1),(1405,-1619205434,3),(1405,-1593806400,1),(1405,-1335986234,4),(1405,-1317585600,2),(1405,-1304362800,4),(1405,-1286049600,2),(1405,-1272826800,4),(1405,-1254513600,2),(1405,-1241290800,4),(1405,-1222977600,2),(1405,-1209754800,4),(1405,-1191355200,2),(1405,-1178132400,3),(1405,-870552000,2),(1405,-865278000,3),(1405,-718056000,2),(1405,-713649600,3),(1405,-36619200,5),(1405,-23922000,6),(1405,-3355200,5),(1405,7527600,6),(1405,24465600,5),(1405,37767600,6),(1405,55915200,5),(1405,69217200,6),(1405,87969601,5),(1405,100666802,6),(1405,118209602,5),(1405,132116403,6),(1405,150868803,5),(1405,163566004,6),(1405,182318404,5),(1405,195620405,6),(1405,213768005,5),(1405,227070006,6),(1405,245217606,5),(1405,258519607,6),(1405,277272007,5),(1405,289969208,6),(1405,308721608,5),(1405,321418809,6),(1405,340171209,5),(1405,353473209,6),(1405,371620810,5),(1405,384922810,6),(1405,403070411,5),(1405,416372411,6),(1405,434520012,5),(1405,447822012,6),(1405,466574412,5),(1405,479271612,6),(1405,498024013,5),(1405,510721213,6),(1405,529473613,5),(1405,545194813,6),(1405,560923213,5),(1405,574225214,6),(1405,592372814,5),(1405,605674814,6),(1405,624427214,5),(1405,637124415,6),(1405,653457615,5),(1405,668574016,6),(1405,687326416,5),(1405,700628416,6),(1405,718776017,5),(1405,732078017,6),(1405,750225618,5),(1405,763527618,6),(1405,781675219,5),(1405,794977219,6),(1405,813729619,5),(1405,826426820,6),(1405,845179220,5),(1405,859690820,6),(1405,876628821,5),(1405,889930821,6),(1405,906868821,5),(1405,923194822,6),(1405,939528022,5),(1405,952830022,6),(1405,971582422,5),(1405,984279622,6),(1405,1003032022,5),(1405,1015729222,6),(1405,1034481622,5),(1405,1047178822,6),(1405,1065931222,5),(1405,1079233222,6),(1405,1097380822,5),(1405,1110682822,6),(1405,1128830422,5),(1405,1142132423,6),(1405,1160884823,5),(1405,1173582023,6),(1405,1192334423,5),(1405,1206846023,6),(1405,1223784023,5),(1405,1237086024,6),(1405,1255233624,5),(1405,1270350024,6),(1405,1286683224,5),(1405,1304823624,6),(1405,1313899224,5),(1405,1335668424,6),(1405,1346558425,5),(1405,1367118025,6),(1405,1378612825,5),(1405,1398567625,6),(1405,1410062425,5),(1405,1463281226,6),(1405,1471147226,5),(1405,1480820426,7),(1406,-2147483648,2),(1406,-1632067200,1),(1406,-1615136400,2),(1406,-923248800,1),(1406,-880214400,3),(1406,-769395600,4),(1406,-765392400,2),(1406,136368003,1),(1406,152089203,2),(1406,167817604,1),(1406,183538804,2),(1406,199267205,1),(1406,215593205,2),(1406,230716806,1),(1406,247042806,2),(1406,262771207,1),(1406,278492407,2),(1406,294220808,1),(1406,309942008,2),(1406,325670409,1),(1406,341391609,2),(1406,357120009,1),(1406,372841210,2),(1406,388569610,1),(1406,404895611,2),(1406,420019211,1),(1406,436345212,2),(1406,452073612,1),(1406,467794812,2),(1406,483523212,1),(1406,499244413,2),(1406,514972813,1),(1406,530694013,2),(1406,544608013,1),(1406,562143613,2),(1406,576057614,1),(1406,594198014,2),(1406,607507214,1),(1406,625647614,2),(1406,638956815,1),(1406,657097215,2),(1406,671011216,1),(1406,688546816,2),(1406,702460816,1),(1406,719996417,2),(1406,733910417,1),(1406,752050818,2),(1406,765360018,1),(1406,783500419,2),(1406,796809619,1),(1406,814950019,2),(1406,828864020,1),(1406,846399620,2),(1406,860313620,1),(1406,877849221,2),(1406,891763221,1),(1406,909298821,2),(1406,923212822,1),(1406,941353222,2),(1406,954662422,1),(1406,972802822,2),(1406,986112022,1),(1406,1004252422,2),(1406,1018166422,1),(1406,1035702022,2),(1406,1049616022,1),(1406,1067151622,2),(1406,1081065622,1),(1406,1099206022,2),(1406,1112515222,1),(1406,1130655622,2),(1406,1143964823,1),(1406,1162105223,2),(1406,1173600023,1),(1406,1194159623,2),(1406,1205049623,1),(1406,1225609223,2),(1406,1236499224,1),(1406,1257058824,2),(1406,1268553624,1),(1406,1289113224,2),(1406,1300003224,1),(1406,1320562824,2),(1406,1331452824,1),(1406,1352012425,2),(1406,1362902425,1),(1406,1383462025,2),(1406,1394352025,1),(1406,1414911625,2),(1406,1425801625,1),(1406,1446361226,2),(1406,1457856026,1),(1406,1478415626,2),(1406,1489305627,1),(1406,1509865227,2),(1406,1520755227,1),(1406,1541314827,2),(1406,1552204827,1),(1406,1572764427,2),(1406,1583654427,1),(1406,1604214027,2),(1406,1615708827,1),(1406,1636268427,2),(1406,1647158427,1),(1406,1667718027,2),(1406,1678608027,1),(1406,1699167627,2),(1406,1710057627,1),(1406,1730617227,2),(1406,1741507227,1),(1406,1762066827,2),(1406,1772956827,1),(1406,1793516427,2),(1406,1805011227,1),(1406,1825570827,2),(1406,1836460827,1),(1406,1857020427,2),(1406,1867910427,1),(1406,1888470027,2),(1406,1899360027,1),(1406,1919919627,2),(1406,1930809627,1),(1406,1951369227,2),(1406,1962864027,1),(1406,1983423627,2),(1406,1994313627,1),(1406,2014873227,2),(1406,2025763227,1),(1406,2046322827,2),(1406,2057212827,1),(1406,2077772427,2),(1406,2088662427,1),(1406,2109222027,2),(1406,2120112027,1),(1406,2140671627,2),(1407,-2147483648,0),(1407,-410227200,2),(1407,-147895200,1),(1407,-131565600,2),(1407,325670409,3),(1407,341391609,2),(1407,357120009,3),(1407,372841210,2),(1407,388569610,3),(1407,404895611,2),(1407,420019211,3),(1407,436345212,2),(1407,452073612,3),(1407,467794812,2),(1407,483523212,3),(1407,499244413,2),(1407,514972813,3),(1407,530694013,2),(1407,544608013,3),(1407,562143613,2),(1407,576057614,3),(1407,594198014,2),(1407,607507214,3),(1407,625647614,2),(1407,638956815,3),(1407,657097215,2),(1407,671011216,3),(1407,688546816,2),(1407,702460816,3),(1407,719996417,2),(1407,733910417,3),(1407,752050818,2),(1407,765360018,3),(1407,783500419,2),(1407,796809619,3),(1407,814950019,2),(1407,828864020,3),(1407,846399620,2),(1407,860313620,3),(1407,877849221,2),(1407,891763221,3),(1407,909298821,2),(1407,923212822,3),(1407,941353222,2),(1407,954662422,3),(1407,972802822,4),(1407,986112022,3),(1407,1004252422,2),(1407,1018166422,3),(1407,1035702022,2),(1407,1049616022,3),(1407,1067151622,2),(1407,1081065622,3),(1407,1099206022,2),(1407,1112515222,3),(1407,1130655622,2),(1407,1143964823,3),(1407,1162105223,2),(1407,1173600023,3),(1407,1194159623,2),(1407,1205049623,3),(1407,1225609223,2),(1407,1236499224,3),(1407,1257058824,2),(1407,1268553624,3),(1407,1289113224,2),(1407,1300003224,3),(1407,1320562824,2),(1407,1331452824,3),(1407,1352012425,2),(1407,1362902425,3),(1407,1383462025,2),(1407,1394352025,3),(1407,1414911625,2),(1407,1425801625,3),(1407,1446361226,2),(1407,1457856026,3),(1407,1478415626,2),(1407,1489305627,3),(1407,1509865227,2),(1407,1520755227,3),(1407,1541314827,2),(1407,1552204827,3),(1407,1572764427,2),(1407,1583654427,3),(1407,1604214027,2),(1407,1615708827,3),(1407,1636268427,2),(1407,1647158427,3),(1407,1667718027,2),(1407,1678608027,3),(1407,1699167627,2),(1407,1710057627,3),(1407,1730617227,2),(1407,1741507227,3),(1407,1762066827,2),(1407,1772956827,3),(1407,1793516427,2),(1407,1805011227,3),(1407,1825570827,2),(1407,1836460827,3),(1407,1857020427,2),(1407,1867910427,3),(1407,1888470027,2),(1407,1899360027,3),(1407,1919919627,2),(1407,1930809627,3),(1407,1951369227,2),(1407,1962864027,3),(1407,1983423627,2),(1407,1994313627,3),(1407,2014873227,2),(1407,2025763227,3),(1407,2046322827,2),(1407,2057212827,3),(1407,2077772427,2),(1407,2088662427,3),(1407,2109222027,2),(1407,2120112027,3),(1407,2140671627,2),(1408,-2147483648,0),(1408,-1767217224,2),(1408,-1206957600,1),(1408,-1191362400,2),(1408,-1175374800,1),(1408,-1159826400,2),(1408,-633819600,1),(1408,-622069200,2),(1408,-602283600,1),(1408,-591832800,2),(1408,-570747600,1),(1408,-560210400,2),(1408,-539125200,1),(1408,-531352800,2),(1408,-191365200,1),(1408,-184197600,2),(1408,-155163600,1),(1408,-150069600,2),(1408,-128898000,1),(1408,-121125600,2),(1408,-99954000,1),(1408,-89589600,2),(1408,-68418000,1),(1408,-57967200,2),(1408,499748413,1),(1408,511236013,2),(1408,530593213,1),(1408,540266413,2),(1408,562129213,1),(1408,571197614,2),(1408,592974014,1),(1408,602042414,2),(1408,624423614,1),(1408,634701615,2),(1408,938919622,1),(1408,951616822,2),(1408,970974022,1),(1408,971575222,2),(1408,1003028422,1),(1408,1013911222,2),(1409,-2147483648,0),(1409,-2030202084,2),(1409,-1632063600,1),(1409,-1615132800,2),(1409,-1251651600,1),(1409,-1238349600,2),(1409,-1220202000,1),(1409,-1206900000,2),(1409,-1188752400,1),(1409,-1175450400,2),(1409,-1156698000,1),(1409,-1144000800,2),(1409,-1125248400,1),(1409,-1111946400,2),(1409,-1032714000,1),(1409,-1016992800,2),(1409,-1001264400,1),(1409,-986148000,2),(1409,-969814800,1),(1409,-954093600,2),(1409,-937760400,1),(1409,-922039200,2),(1409,-906310800,1),(1409,-890589600,2),(1409,-880210800,3),(1409,-769395600,4),(1409,-765388800,2),(1409,-748450800,1),(1409,-732729600,2),(1409,-715791600,1),(1409,-702489600,2),(1409,-684342000,1),(1409,-671040000,2),(1409,-652892400,1),(1409,-639590400,2),(1409,-620838000,1),(1409,-608140800,2),(1409,-589388400,1),(1409,-576086400,2),(1409,-557938800,1),(1409,-544636800,2),(1409,-526489200,1),(1409,-513187200,2),(1409,-495039600,1),(1409,-481737600,2),(1409,-463590000,1),(1409,-450288000,2),(1409,-431535600,1),(1409,-418233600,2),(1409,-400086000,1),(1409,-386784000,2),(1409,-337186800,1),(1409,-321465600,2),(1409,-305737200,5),(1410,-2147483648,0),(1410,-704937600,2),(1410,-147895200,1),(1410,-131565600,2),(1410,325670409,3),(1410,341391609,2),(1410,357120009,3),(1410,372841210,2),(1410,388569610,3),(1410,404895611,2),(1410,420019211,3),(1410,436345212,2),(1410,452073612,3),(1410,467794812,2),(1410,483523212,3),(1410,499244413,2),(1410,514972813,3),(1410,530694013,2),(1410,544608013,3),(1410,562143613,2),(1410,576057614,3),(1410,594198014,2),(1410,607507214,3),(1410,625647614,2),(1410,638956815,3),(1410,657097215,2),(1410,671011216,3),(1410,688546816,2),(1410,702460816,3),(1410,719996417,2),(1410,733910417,3),(1410,752050818,2),(1410,765360018,3),(1410,783500419,2),(1410,796809619,3),(1410,814950019,2),(1410,828864020,3),(1410,846399620,2),(1410,860313620,3),(1410,877849221,2),(1410,891763221,3),(1410,909298821,2),(1410,923212822,3),(1410,941353222,2),(1410,954662422,3),(1410,972802822,4),(1410,986112022,3),(1410,1004252422,2),(1410,1018166422,3),(1410,1035702022,2),(1410,1049616022,3),(1410,1067151622,2),(1410,1081065622,3),(1410,1099206022,2),(1410,1112515222,3),(1410,1130655622,2),(1410,1143964823,3),(1410,1162105223,4),(1410,1173600023,3),(1410,1194159623,2),(1410,1205049623,3),(1410,1225609223,2),(1410,1236499224,3),(1410,1257058824,2),(1410,1268553624,3),(1410,1289113224,2),(1410,1300003224,3),(1410,1320562824,2),(1410,1331452824,3),(1410,1352012425,2),(1410,1362902425,3),(1410,1383462025,2),(1410,1394352025,3),(1410,1414911625,2),(1410,1425801625,3),(1410,1446361226,2),(1410,1457856026,3),(1410,1478415626,2),(1410,1489305627,3),(1410,1509865227,2),(1410,1520755227,3),(1410,1541314827,2),(1410,1552204827,3),(1410,1572764427,2),(1410,1583654427,3),(1410,1604214027,2),(1410,1615708827,3),(1410,1636268427,2),(1410,1647158427,3),(1410,1667718027,2),(1410,1678608027,3),(1410,1699167627,2),(1410,1710057627,3),(1410,1730617227,2),(1410,1741507227,3),(1410,1762066827,2),(1410,1772956827,3),(1410,1793516427,2),(1410,1805011227,3),(1410,1825570827,2),(1410,1836460827,3),(1410,1857020427,2),(1410,1867910427,3),(1410,1888470027,2),(1410,1899360027,3),(1410,1919919627,2),(1410,1930809627,3),(1410,1951369227,2),(1410,1962864027,3),(1410,1983423627,2),(1410,1994313627,3),(1410,2014873227,2),(1410,2025763227,3),(1410,2046322827,2),(1410,2057212827,3),(1410,2077772427,2),(1410,2088662427,3),(1410,2109222027,2),(1410,2120112027,3),(1410,2140671627,2),(1411,-2147483648,0),(1411,-1767209328,2),(1411,-1206950400,1),(1411,-1191355200,2),(1411,-1175367600,1),(1411,-1159819200,2),(1411,-633812400,1),(1411,-622062000,2),(1411,-602276400,1),(1411,-591825600,2),(1411,-570740400,1),(1411,-560203200,2),(1411,-539118000,1),(1411,-531345600,2),(1411,-191358000,1),(1411,-184190400,2),(1411,-155156400,1),(1411,-150062400,2),(1411,-128890800,1),(1411,-121118400,2),(1411,-99946800,1),(1411,-89582400,2),(1411,-68410800,1),(1411,-57960000,2),(1411,499755613,1),(1411,511243213,2),(1411,530600413,1),(1411,540273613,2),(1411,562136413,1),(1411,571204814,2),(1411,1214283623,3),(1411,1384056025,2),(1412,-2147483648,1),(1412,-1567453392,2),(1412,-1233432000,3),(1412,-1222981200,2),(1412,-1205956800,3),(1412,-1194037200,2),(1412,-1172865600,3),(1412,-1162501200,2),(1412,-1141329600,3),(1412,-1130965200,2),(1412,-1109793600,3),(1412,-1099429200,2),(1412,-1078257600,3),(1412,-1067806800,2),(1412,-1046635200,3),(1412,-1036270800,2),(1412,-1015099200,3),(1412,-1004734800,2),(1412,-983563200,3),(1412,-973198800,2),(1412,-952027200,3),(1412,-941576400,2),(1412,-931032000,3),(1412,-900882000,2),(1412,-890337600,3),(1412,-833749200,2),(1412,-827265600,3),(1412,-752274000,2),(1412,-733780800,3),(1412,-197326800,2),(1412,-190843200,3),(1412,-184194000,2),(1412,-164491200,3),(1412,-152658000,2),(1412,-132955200,3),(1412,-121122000,2),(1412,-101419200,3),(1412,-86821200,2),(1412,-71092800,3),(1412,-54766800,2),(1412,-39038400,3),(1412,-23317200,2),(1412,-7588800,5),(1412,128142003,4),(1412,136605603,5),(1412,596948414,4),(1412,605066414,5),(1412,624423614,4),(1412,636516015,5),(1412,656478015,4),(1412,667965616,2),(1412,687931216,4),(1412,699415216,5),(1412,719377217,4),(1412,731469617,5),(1412,938919622,3),(1412,952052422,5),(1412,1198983623,4),(1412,1205632823,5),(1412,1224385223,4),(1412,1237082424,5),(1413,-2147483648,0),(1413,-1514736000,1),(1413,-1451667600,2),(1413,-1343062800,1),(1413,-1234803600,2),(1413,-1222963200,3),(1413,-1207242000,2),(1413,-873820800,4),(1413,-769395600,5),(1413,-761677200,2),(1413,-686073600,3),(1413,-661539600,2),(1413,-495039600,3),(1413,-481734000,2),(1413,-463590000,3),(1413,-450284400,2),(1413,-431535600,3),(1413,-418230000,2),(1413,-400086000,3),(1413,-386780400,2),(1413,-368636400,3),(1413,-355330800,2),(1413,-337186800,3),(1413,-323881200,2),(1413,-305737200,3),(1413,-292431600,2),(1413,199274405,3),(1413,215600405,2),(1413,230724006,3),(1413,247050006,2),(1413,262778407,3),(1413,278499607,2),(1413,294228008,3),(1413,309949208,2),(1413,325677609,3),(1413,341398809,2),(1413,357127209,3),(1413,372848410,2),(1413,388576810,3),(1413,404902811,2),(1413,420026411,3),(1413,436352412,2),(1413,452080812,3),(1413,467802012,2),(1413,483530412,3),(1413,499251613,2),(1413,514980013,3),(1413,530701213,2),(1413,544615213,3),(1413,562150813,2),(1413,576064814,3),(1413,594205214,2),(1413,607514414,3),(1413,625654814,2),(1413,638964015,3),(1413,657104415,2),(1413,671018416,3),(1413,688554016,2),(1413,702468016,3),(1413,720003617,2),(1413,733917617,3),(1413,752058018,2),(1413,765367218,3),(1413,783507619,2),(1413,796816819,3),(1413,814957219,2),(1413,828871220,3),(1413,846406820,2),(1413,860320820,3),(1413,877856421,2),(1413,891770421,3),(1413,909306021,2),(1413,923220022,3),(1413,941360422,2),(1413,954669622,3),(1413,972810022,2),(1413,986119222,3),(1413,1004259622,2),(1413,1018173622,3),(1413,1035709222,2),(1413,1049623222,3),(1413,1067158822,2),(1413,1081072822,3),(1413,1099213222,2),(1413,1112522422,3),(1413,1130662822,2),(1413,1143972023,3),(1413,1162112423,2),(1413,1175421623,3),(1413,1193562023,2),(1413,1207476023,3),(1413,1225011623,2),(1413,1238925624,3),(1413,1256461224,2),(1413,1268560824,3),(1413,1289120424,2),(1413,1300010424,3),(1413,1320570024,2),(1413,1331460024,3),(1413,1352019625,2),(1413,1362909625,3),(1413,1383469225,2),(1413,1394359225,3),(1413,1414918825,2),(1413,1425808825,3),(1413,1446368426,2),(1413,1457863226,3),(1413,1478422826,2),(1413,1489312827,3),(1413,1509872427,2),(1413,1520762427,3),(1413,1541322027,2),(1413,1552212027,3),(1413,1572771627,2),(1413,1583661627,3),(1413,1604221227,2),(1413,1615716027,3),(1413,1636275627,2),(1413,1647165627,3),(1413,1667725227,2),(1413,1678615227,3),(1413,1699174827,2),(1413,1710064827,3),(1413,1730624427,2),(1413,1741514427,3),(1413,1762074027,2),(1413,1772964027,3),(1413,1793523627,2),(1413,1805018427,3),(1413,1825578027,2),(1413,1836468027,3),(1413,1857027627,2),(1413,1867917627,3),(1413,1888477227,2),(1413,1899367227,3),(1413,1919926827,2),(1413,1930816827,3),(1413,1951376427,2),(1413,1962871227,3),(1413,1983430827,2),(1413,1994320827,3),(1413,2014880427,2),(1413,2025770427,3),(1413,2046330027,2),(1413,2057220027,3),(1413,2077779627,2),(1413,2088669627,3),(1413,2109229227,2),(1413,2120119227,3),(1413,2140678827,2),(1414,-2147483648,0),(1414,-1767212472,2),(1414,-1206954000,1),(1414,-1191358800,2),(1414,-1175371200,1),(1414,-1159822800,2),(1414,-633816000,1),(1414,-622065600,2),(1414,-602280000,1),(1414,-591829200,2),(1414,-570744000,1),(1414,-560206800,2),(1414,-539121600,1),(1414,-531349200,2),(1414,-191361600,1),(1414,-184194000,2),(1414,-155160000,1),(1414,-150066000,2),(1414,-128894400,1),(1414,-121122000,2),(1414,-99950400,1),(1414,-89586000,2),(1414,-68414400,1),(1414,-57963600,2),(1414,499752013,1),(1414,511239613,2),(1414,530596813,1),(1414,540270013,2),(1414,562132813,1),(1414,571201214,2),(1414,1214280023,3),(1415,-2147483648,1),(1415,-1892661434,2),(1415,-1688410800,1),(1415,-1619205434,3),(1415,-1593806400,1),(1415,-1335986234,4),(1415,-1317585600,2),(1415,-1304362800,4),(1415,-1286049600,2),(1415,-1272826800,4),(1415,-1254513600,2),(1415,-1241290800,4),(1415,-1222977600,2),(1415,-1209754800,4),(1415,-1191355200,2),(1415,-1178132400,3),(1415,-870552000,2),(1415,-865278000,3),(1415,-740520000,5),(1415,-736376400,3),(1415,-718056000,2),(1415,-713649600,3),(1415,-36619200,6),(1415,-23922000,7),(1415,-3355200,6),(1415,7527600,7),(1415,24465600,6),(1415,37767600,7),(1415,55915200,6),(1415,69217200,7),(1415,87969601,6),(1415,100666802,7),(1415,118209602,6),(1415,132116403,7),(1415,150868803,6),(1415,163566004,7),(1415,182318404,6),(1415,195620405,7),(1415,213768005,6),(1415,227070006,7),(1415,245217606,6),(1415,258519607,7),(1415,277272007,6),(1415,289969208,7),(1415,308721608,6),(1415,321418809,7),(1415,340171209,6),(1415,353473209,7),(1415,371620810,6),(1415,384922810,7),(1415,403070411,6),(1415,416372411,7),(1415,434520012,6),(1415,447822012,7),(1415,466574412,6),(1415,479271612,7),(1415,498024013,6),(1415,510721213,7),(1415,529473613,6),(1415,545194813,7),(1415,560923213,6),(1415,574225214,7),(1415,592372814,6),(1415,605674814,7),(1415,624427214,6),(1415,637124415,7),(1415,653457615,6),(1415,668574016,7),(1415,687326416,6),(1415,700628416,7),(1415,718776017,6),(1415,732078017,7),(1415,750225618,6),(1415,763527618,7),(1415,781675219,6),(1415,794977219,7),(1415,813729619,6),(1415,826426820,7),(1415,845179220,6),(1415,859690820,7),(1415,876628821,6),(1415,889930821,7),(1415,906868821,6),(1415,923194822,7),(1415,939528022,6),(1415,952830022,7),(1415,971582422,6),(1415,984279622,7),(1415,1003032022,6),(1415,1015729222,7),(1415,1034481622,6),(1415,1047178822,7),(1415,1065931222,6),(1415,1079233222,7),(1415,1097380822,6),(1415,1110682822,7),(1415,1128830422,6),(1415,1142132423,7),(1415,1160884823,6),(1415,1173582023,7),(1415,1192334423,6),(1415,1206846023,7),(1415,1223784023,6),(1415,1237086024,7),(1415,1255233624,6),(1415,1270350024,7),(1415,1286683224,6),(1415,1304823624,7),(1415,1313899224,6),(1415,1335668424,7),(1415,1346558425,6),(1415,1367118025,7),(1415,1378612825,6),(1415,1398567625,7),(1415,1410062425,6),(1415,1463281226,7),(1415,1471147226,6),(1415,1494730827,7),(1415,1502596827,6),(1415,1526180427,7),(1415,1534046427,6),(1415,1554606027,7),(1415,1567915227,6),(1415,1586055627,7),(1415,1599364827,6),(1415,1617505227,7),(1415,1630814427,6),(1415,1648954827,7),(1415,1662264027,6),(1415,1680404427,7),(1415,1693713627,6),(1415,1712458827,7),(1415,1725768027,6),(1415,1743908427,7),(1415,1757217627,6),(1415,1775358027,7),(1415,1788667227,6),(1415,1806807627,7),(1415,1820116827,6),(1415,1838257227,7),(1415,1851566427,6),(1415,1870311627,7),(1415,1883016027,6),(1415,1901761227,7),(1415,1915070427,6),(1415,1933210827,7),(1415,1946520027,6),(1415,1964660427,7),(1415,1977969627,6),(1415,1996110027,7),(1415,2009419227,6),(1415,2027559627,7),(1415,2040868827,6),(1415,2059614027,7),(1415,2072318427,6),(1415,2091063627,7),(1415,2104372827,6),(1415,2122513227,7),(1415,2135822427,6),(1416,-2147483648,1),(1416,-1159773600,3),(1416,-100119600,2),(1416,-89668800,3),(1416,-5770800,4),(1416,4422600,3),(1416,25678800,4),(1416,33193800,3),(1416,57733200,4),(1416,64816200,3),(1416,89182801,4),(1416,96438602,3),(1416,120632402,4),(1416,127974603,3),(1416,152082003,5),(1416,972799222,3),(1416,975823222,5),(1417,-2147483648,0),(1417,-1767214412,2),(1417,-1206957600,1),(1417,-1191362400,2),(1417,-1175374800,1),(1417,-1159826400,2),(1417,-633819600,1),(1417,-622069200,2),(1417,-602283600,1),(1417,-591832800,2),(1417,-570747600,1),(1417,-560210400,2),(1417,-539125200,1),(1417,-531352800,2),(1417,-195426000,1),(1417,-184197600,2),(1417,-155163600,1),(1417,-150069600,2),(1417,-128898000,1),(1417,-121125600,2),(1417,-99954000,1),(1417,-89589600,2),(1417,-68418000,1),(1417,-57967200,2),(1417,499748413,1),(1417,511236013,2),(1417,530593213,1),(1417,540266413,2),(1417,562129213,1),(1417,571197614,2),(1417,592974014,1),(1417,602042414,2),(1417,624423614,1),(1417,634701615,2),(1417,656478015,1),(1417,666756016,2),(1417,687927616,1),(1417,697600816,2),(1417,719982017,1),(1417,728445617,2),(1417,750826818,1),(1417,761709618,2),(1417,782276419,1),(1417,793159219,2),(1417,813726019,1),(1417,824004020,2),(1417,844570820,1),(1417,856058420,2),(1417,876106821,1),(1417,888717621,2),(1417,908074821,1),(1417,919562422,2),(1417,938919622,1),(1417,951616822,2),(1417,970974022,1),(1417,982461622,2),(1417,1003028422,1),(1417,1013911222,2),(1417,1036292422,1),(1417,1045360822,2),(1417,1066532422,1),(1417,1076810422,2),(1417,1099364422,1),(1417,1108864822,2),(1417,1129431622,1),(1417,1140314423,2),(1417,1162695623,1),(1417,1172368823,2),(1417,1192330823,1),(1417,1203213623,2),(1417,1224385223,1),(1417,1234663224,2),(1417,1255834824,1),(1417,1266717624,2),(1417,1287284424,1),(1417,1298167224,2),(1417,1318734024,1),(1417,1330221624,2),(1417,1350788425,1),(1417,1361066425,2),(1417,1382238025,1),(1417,1392516025,2),(1417,1413687625,1),(1417,1424570425,2),(1417,1445137226,1),(1417,1456020026,2),(1417,1476586826,1),(1417,1487469627,2),(1417,1508036427,1),(1417,1518919227,2),(1417,1541300427,1),(1417,1550368827,2),(1418,-2147483648,0),(1418,-1686090728,1),(1418,323841609,2),(1418,338961609,3),(1418,354679209,6),(1418,370400410,4),(1418,386125210,5),(1418,401850011,4),(1418,417574811,5),(1418,433299612,4),(1418,449024412,5),(1418,465354012,4),(1418,481078812,5),(1418,496803613,4),(1418,512528413,5),(1418,528253213,4),(1418,543978013,5),(1418,559702813,4),(1418,575427614,5),(1418,591152414,4),(1418,606877214,5),(1418,622602014,4),(1418,638326815,5),(1418,654656415,4),(1418,670381216,5),(1418,686106016,4),(1418,701830816,5),(1418,717555617,4),(1418,733280417,5),(1418,749005218,4),(1418,764730018,5),(1418,780454819,4),(1418,796179619,5),(1418,811904419,4),(1418,828234020,5),(1418,846378020,4),(1418,859683620,5),(1418,877827621,4),(1418,891133221,5),(1418,909277221,4),(1418,922582822,5),(1418,941331622,4),(1418,954032422,5),(1418,972781222,4),(1418,985482022,5),(1418,1004230822,4),(1418,1017536422,5),(1418,1035680422,4),(1418,1048986022,5),(1418,1067130022,4),(1418,1080435622,5),(1418,1099184422,4),(1418,1111885222,5),(1418,1130634022,4),(1418,1143334823,5),(1418,1162083623,4),(1418,1174784423,5),(1418,1193533223,4),(1418,1206838823,5),(1418,1224982823,4),(1418,1238288424,5),(1418,1256432424,4),(1418,1269738024,5),(1418,1288486824,4),(1418,1301187624,5),(1418,1319936424,4),(1418,1332637224,5),(1418,1351386025,4),(1418,1364691625,5),(1418,1382835625,4),(1418,1396141225,5),(1418,1414285225,4),(1418,1427590825,5),(1418,1445734826,4),(1418,1459040426,5),(1418,1477789226,4),(1418,1490490027,5),(1418,1509238827,4),(1418,1521939627,5),(1418,1540688427,4),(1418,1553994027,5),(1418,1572138027,4),(1418,1585443627,5),(1418,1603587627,4),(1418,1616893227,5),(1418,1635642027,4),(1418,1648342827,5),(1418,1667091627,4),(1418,1679792427,5),(1418,1698541227,4),(1418,1711846827,5),(1418,1729990827,4),(1418,1743296427,5),(1418,1761440427,4),(1418,1774746027,5),(1418,1792890027,4),(1418,1806195627,5),(1418,1824944427,4),(1418,1837645227,5),(1418,1856394027,4),(1418,1869094827,5),(1418,1887843627,4),(1418,1901149227,5),(1418,1919293227,4),(1418,1932598827,5),(1418,1950742827,4),(1418,1964048427,5),(1418,1982797227,4),(1418,1995498027,5),(1418,2014246827,4),(1418,2026947627,5),(1418,2045696427,4),(1418,2058397227,5),(1418,2077146027,4),(1418,2090451627,5),(1418,2108595627,4),(1418,2121901227,5),(1418,2140045227,4),(1419,-2147483648,2),(1419,-1633273200,1),(1419,-1615132800,2),(1419,-1601823600,1),(1419,-1583683200,2),(1419,-1570374000,1),(1419,-1551628800,2),(1419,-1538924400,1),(1419,-1534089600,2),(1419,-880210800,3),(1419,-769395600,4),(1419,-765388800,2),(1419,-147884400,1),(1419,-131558400,2),(1419,-116434800,1),(1419,-100108800,2),(1419,-84380400,1),(1419,-68659200,2),(1419,-52930800,1),(1419,-37209600,2),(1419,-21481200,1),(1419,-5760000,2),(1419,9968400,1),(1419,25689600,2),(1419,41418000,1),(1419,57744000,2),(1419,73472400,1),(1419,89193601,2),(1419,104922002,1),(1419,120643202,2),(1419,126694803,1),(1419,152092803,2),(1419,162378004,1),(1419,183542404,2),(1419,199270805,1),(1419,215596805,2),(1419,230720406,1),(1419,247046406,2),(1419,262774807,1),(1419,278496007,2),(1419,294224408,1),(1419,309945608,2),(1419,325674009,1),(1419,341395209,2),(1419,357123609,1),(1419,372844810,2),(1419,388573210,1),(1419,404899211,2),(1419,420022811,1),(1419,436348812,2),(1419,452077212,1),(1419,467798412,2),(1419,483526812,1),(1419,499248013,2),(1419,514976413,1),(1419,530697613,2),(1419,544611613,1),(1419,562147213,2),(1419,576061214,1),(1419,594201614,2),(1419,607510814,1),(1419,625651214,2),(1419,638960415,1),(1419,657100815,2),(1419,671014816,1),(1419,688550416,2),(1419,702464416,1),(1419,720000017,2),(1419,733914017,1),(1419,752054418,2),(1419,765363618,1),(1419,783504019,2),(1419,796813219,1),(1419,814953619,2),(1419,828867620,1),(1419,846403220,2),(1419,860317220,1),(1419,877852821,2),(1419,891766821,1),(1419,909302421,2),(1419,923216422,1),(1419,941356822,2),(1419,954666022,1),(1419,972806422,2),(1419,986115622,1),(1419,1004256022,2),(1419,1018170022,1),(1419,1035705622,2),(1419,1049619622,1),(1419,1067155222,2),(1419,1081069222,1),(1419,1099209622,2),(1419,1112518822,1),(1419,1130659222,2),(1419,1143968423,1),(1419,1162108823,2),(1419,1173603623,1),(1419,1194163223,2),(1419,1205053223,1),(1419,1225612823,2),(1419,1236502824,1),(1419,1257062424,2),(1419,1268557224,1),(1419,1289116824,2),(1419,1300006824,1),(1419,1320566424,2),(1419,1331456424,1),(1419,1352016025,2),(1419,1362906025,1),(1419,1383465625,2),(1419,1394355625,1),(1419,1414915225,2),(1419,1425805225,1),(1419,1446364826,2),(1419,1457859626,1),(1419,1478419226,2),(1419,1489309227,1),(1419,1509868827,2),(1419,1520758827,1),(1419,1541318427,2),(1419,1552208427,1),(1419,1572768027,2),(1419,1583658027,1),(1419,1604217627,2),(1419,1615712427,1),(1419,1636272027,2),(1419,1647162027,1),(1419,1667721627,2),(1419,1678611627,1),(1419,1699171227,2),(1419,1710061227,1),(1419,1730620827,2),(1419,1741510827,1),(1419,1762070427,2),(1419,1772960427,1),(1419,1793520027,2),(1419,1805014827,1),(1419,1825574427,2),(1419,1836464427,1),(1419,1857024027,2),(1419,1867914027,1),(1419,1888473627,2),(1419,1899363627,1),(1419,1919923227,2),(1419,1930813227,1),(1419,1951372827,2),(1419,1962867627,1),(1419,1983427227,2),(1419,1994317227,1),(1419,2014876827,2),(1419,2025766827,1),(1419,2046326427,2),(1419,2057216427,1),(1419,2077776027,2),(1419,2088666027,1),(1419,2109225627,2),(1419,2120115627,1),(1419,2140675227,2),(1420,-2147483648,1),(1420,-880207200,2),(1420,-769395600,3),(1420,-765385200,1),(1420,-21477600,4),(1420,-5756400,1),(1420,9972000,4),(1420,25693200,1),(1420,41421600,4),(1420,57747600,1),(1420,73476000,4),(1420,89197201,1),(1420,104925602,4),(1420,120646802,1),(1420,126698403,4),(1420,152096403,1),(1420,162381604,4),(1420,183546004,1),(1420,199274405,4),(1420,215600405,1),(1420,230724006,4),(1420,247050006,1),(1420,262778407,4),(1420,278499607,1),(1420,294228008,4),(1420,309949208,1),(1420,325677609,4),(1420,341398809,1),(1420,357127209,4),(1420,372848410,1),(1420,388576810,4),(1420,404902811,1),(1420,420026411,4),(1420,436352412,5),(1420,439030812,7),(1420,452084412,6),(1420,467805612,7),(1420,483534012,6),(1420,499255213,7),(1420,514983613,6),(1420,530704813,7),(1420,544618813,6),(1420,562154413,7),(1420,576068414,6),(1420,594208814,7),(1420,607518014,6),(1420,625658414,7),(1420,638967615,6),(1420,657108015,7),(1420,671022016,6),(1420,688557616,7),(1420,702471616,6),(1420,720007217,7),(1420,733921217,6),(1420,752061618,7),(1420,765370818,6),(1420,783511219,7),(1420,796820419,6),(1420,814960819,7),(1420,828874820,6),(1420,846410420,7),(1420,860324420,6),(1420,877860021,7),(1420,891774021,6),(1420,909309621,7),(1420,923223622,6),(1420,941364022,7),(1420,954673222,6),(1420,972813622,7),(1420,986122822,6),(1420,1004263222,7),(1420,1018177222,6),(1420,1035712822,7),(1420,1049626822,6),(1420,1067162422,7),(1420,1081076422,6),(1420,1099216822,7),(1420,1112526022,6),(1420,1130666422,7),(1420,1143975623,6),(1420,1162116023,7),(1420,1173610823,6),(1420,1194170423,7),(1420,1205060423,6),(1420,1225620023,7),(1420,1236510024,6),(1420,1257069624,7),(1420,1268564424,6),(1420,1289124024,7),(1420,1300014024,6),(1420,1320573624,7),(1420,1331463624,6),(1420,1352023225,7),(1420,1362913225,6),(1420,1383472825,7),(1420,1394362825,6),(1420,1414922425,7),(1420,1425812425,6),(1420,1446372026,7),(1420,1457866826,6),(1420,1478426426,7),(1420,1489316427,6),(1420,1509876027,7),(1420,1520766027,6),(1420,1541325627,7),(1420,1552215627,6),(1420,1572775227,7),(1420,1583665227,6),(1420,1604224827,7),(1420,1615719627,6),(1420,1636279227,7),(1420,1647169227,6),(1420,1667728827,7),(1420,1678618827,6),(1420,1699178427,7),(1420,1710068427,6),(1420,1730628027,7),(1420,1741518027,6),(1420,1762077627,7),(1420,1772967627,6),(1420,1793527227,7),(1420,1805022027,6),(1420,1825581627,7),(1420,1836471627,6),(1420,1857031227,7),(1420,1867921227,6),(1420,1888480827,7),(1420,1899370827,6),(1420,1919930427,7),(1420,1930820427,6),(1420,1951380027,7),(1420,1962874827,6),(1420,1983434427,7),(1420,1994324427,6),(1420,2014884027,7),(1420,2025774027,6),(1420,2046333627,7),(1420,2057223627,6),(1420,2077783227,7),(1420,2088673227,6),(1420,2109232827,7),(1420,2120122827,6),(1420,2140682427,7),(1421,-2147483648,0),(1421,-1825098836,1),(1422,-2147483648,2),(1422,-1664130548,1),(1422,-1650137348,2),(1422,-1632076148,1),(1422,-1615145348,2),(1422,-1598650148,1),(1422,-1590100148,2),(1422,-1567286948,1),(1422,-1551565748,2),(1422,-1535837348,1),(1422,-1520116148,2),(1422,-1503782948,1),(1422,-1488666548,2),(1422,-1472333348,1),(1422,-1457216948,2),(1422,-1440883748,1),(1422,-1425767348,2),(1422,-1409434148,1),(1422,-1394317748,2),(1422,-1377984548,1),(1422,-1362263348,2),(1422,-1346534948,1),(1422,-1330813748,2),(1422,-1314480548,1),(1422,-1299364148,2),(1422,-1283030948,1),(1422,-1267914548,2),(1422,-1251581348,1),(1422,-1236464948,2),(1422,-1220131748,1),(1422,-1205015348,2),(1422,-1188682148,1),(1422,-1172960948,2),(1422,-1156627748,1),(1422,-1141511348,2),(1422,-1125178148,1),(1422,-1110061748,2),(1422,-1096921748,4),(1422,-1093728600,3),(1422,-1078612200,4),(1422,-1061670600,3),(1422,-1048973400,4),(1422,-1030221000,3),(1422,-1017523800,4),(1422,-998771400,3),(1422,-986074200,4),(1422,-966717000,3),(1422,-954624600,4),(1422,-935267400,3),(1422,-922570200,4),(1422,-903817800,3),(1422,-891120600,4),(1422,-872368200,6),(1422,-769395600,5),(1422,-765401400,4),(1422,-746044200,3),(1422,-733347000,4),(1422,-714594600,3),(1422,-701897400,4),(1422,-683145000,3),(1422,-670447800,4),(1422,-651695400,3),(1422,-638998200,4),(1422,-619641000,3),(1422,-606943800,4),(1422,-589401000,3),(1422,-576099000,4),(1422,-557951400,3),(1422,-544649400,4),(1422,-526501800,3),(1422,-513199800,4),(1422,-495052200,3),(1422,-481750200,4),(1422,-463602600,3),(1422,-450300600,4),(1422,-431548200,3),(1422,-418246200,4),(1422,-400098600,3),(1422,-386796600,4),(1422,-368649000,3),(1422,-355347000,4),(1422,-337199400,3),(1422,-323897400,4),(1422,-305749800,3),(1422,-289423800,4),(1422,-273695400,3),(1422,-257974200,4),(1422,-242245800,3),(1422,-226524600,4),(1422,-210796200,3),(1422,-195075000,4),(1422,-179346600,3),(1422,-163625400,4),(1422,-147897000,3),(1422,-131571000,4),(1422,-116447400,3),(1422,-100121400,4),(1422,-84393000,3),(1422,-68671800,4),(1422,-52943400,3),(1422,-37222200,4),(1422,-21493800,3),(1422,-5772600,4),(1422,9955800,3),(1422,25677000,4),(1422,41405400,3),(1422,57731400,4),(1422,73459800,3),(1422,89181001,4),(1422,104909402,3),(1422,120630602,4),(1422,136359003,3),(1422,152080203,4),(1422,167808604,3),(1422,183529804,4),(1422,199258205,3),(1422,215584205,4),(1422,230707806,3),(1422,247033806,4),(1422,262762207,3),(1422,278483407,4),(1422,294211808,3),(1422,309933008,4),(1422,325661409,3),(1422,341382609,4),(1422,357111009,3),(1422,372832210,4),(1422,388560610,3),(1422,404886611,4),(1422,420010211,3),(1422,436336212,4),(1422,452064612,3),(1422,467785812,4),(1422,483514212,3),(1422,499235413,4),(1422,514963813,3),(1422,530685013,4),(1422,544591873,3),(1422,562127473,4),(1422,576041474,7),(1422,594178274,4),(1422,607491074,3),(1422,625631474,4),(1422,638940675,3),(1422,657081075,4),(1422,670995076,3),(1422,688530676,4),(1422,702444676,3),(1422,719980277,4),(1422,733894277,3),(1422,752034678,4),(1422,765343878,3),(1422,783484279,4),(1422,796793479,3),(1422,814933879,4),(1422,828847880,3),(1422,846383480,4),(1422,860297480,3),(1422,877833081,4),(1422,891747081,3),(1422,909282681,4),(1422,923196682,3),(1422,941337082,4),(1422,954646282,3),(1422,972786682,4),(1422,986095882,3),(1422,1004236282,4),(1422,1018150282,3),(1422,1035685882,4),(1422,1049599882,3),(1422,1067135482,4),(1422,1081049482,3),(1422,1099189882,4),(1422,1112499082,3),(1422,1130639482,4),(1422,1143948683,3),(1422,1162089083,4),(1422,1173583883,3),(1422,1194143483,4),(1422,1205033483,3),(1422,1225593083,4),(1422,1236483084,3),(1422,1257042684,4),(1422,1268537484,3),(1422,1289097084,4),(1422,1299987084,3),(1422,1320553824,4),(1422,1331443824,3),(1422,1352003425,4),(1422,1362893425,3),(1422,1383453025,4),(1422,1394343025,3),(1422,1414902625,4),(1422,1425792625,3),(1422,1446352226,4),(1422,1457847026,3),(1422,1478406626,4),(1422,1489296627,3),(1422,1509856227,4),(1422,1520746227,3),(1422,1541305827,4),(1422,1552195827,3),(1422,1572755427,4),(1422,1583645427,3),(1422,1604205027,4),(1422,1615699827,3),(1422,1636259427,4),(1422,1647149427,3),(1422,1667709027,4),(1422,1678599027,3),(1422,1699158627,4),(1422,1710048627,3),(1422,1730608227,4),(1422,1741498227,3),(1422,1762057827,4),(1422,1772947827,3),(1422,1793507427,4),(1422,1805002227,3),(1422,1825561827,4),(1422,1836451827,3),(1422,1857011427,4),(1422,1867901427,3),(1422,1888461027,4),(1422,1899351027,3),(1422,1919910627,4),(1422,1930800627,3),(1422,1951360227,4),(1422,1962855027,3),(1422,1983414627,4),(1422,1994304627,3),(1422,2014864227,4),(1422,2025754227,3),(1422,2046313827,4),(1422,2057203827,3),(1422,2077763427,4),(1422,2088653427,3),(1422,2109213027,4),(1422,2120103027,3),(1422,2140662627,4),(1423,-2147483648,0),(1423,-1825098836,1),(1424,-2147483648,0),(1424,-1825098836,1),(1425,-2147483648,0),(1425,-1825098836,1),(1426,-2147483648,0),(1426,-1825098836,1),(1427,-2147483648,0),(1427,-2030201320,2),(1427,-1632063600,1),(1427,-1615132800,2),(1427,-880210800,3),(1427,-769395600,4),(1427,-765388800,2),(1427,-747241200,1),(1427,-732729600,2),(1427,-715791600,1),(1427,-702489600,2),(1427,-684342000,1),(1427,-671040000,2),(1427,-652892400,1),(1427,-639590400,2),(1427,-400086000,1),(1427,-384364800,2),(1427,-337186800,1),(1427,-321465600,2),(1427,-305737200,1),(1427,-292435200,2),(1427,-273682800,1),(1427,-260985600,2),(1427,73472400,5),(1428,-2147483648,0),(1428,-1538503868,2),(1428,547020013,1),(1428,559717213,2),(1428,578469614,1),(1428,591166814,2),(1428,1146981623,1),(1428,1154926823,2),(1429,-2147483648,0),(1429,-1686079492,2),(1429,670399216,1),(1429,686120416,2),(1429,701848816,1),(1429,717570017,2),(1429,733903217,1),(1429,752043618,2),(1429,765352818,1),(1429,783493219,2),(1429,796802419,1),(1429,814942819,2),(1429,828856820,1),(1429,846392420,2),(1429,860306420,1),(1429,877842021,2),(1429,891756021,1),(1429,909291621,2),(1429,923205622,1),(1429,941346022,2),(1429,954655222,1),(1429,972795622,2),(1429,986104822,1),(1429,1004245222,2),(1429,1018159222,1),(1429,1035694822,2),(1429,1049608822,1),(1429,1067144422,2),(1429,1081058422,1),(1429,1099198822,2),(1429,1112508022,1),(1429,1130648422,2),(1429,1143957623,1),(1429,1162098023,2),(1429,1173592823,1),(1429,1194152423,2),(1429,1205042423,1),(1429,1225602023,2),(1429,1236492024,1),(1429,1257051624,2),(1429,1268546424,1),(1429,1289106024,2),(1429,1299996024,1),(1429,1320555624,2),(1429,1331445624,1),(1429,1352005225,2),(1429,1362895225,1),(1429,1383454825,2),(1429,1394344825,1),(1429,1414904425,2),(1429,1425794425,1),(1429,1446354026,2),(1429,1457848826,1),(1429,1478408426,2),(1429,1489298427,1),(1429,1509858027,2),(1429,1520748027,1),(1429,1541307627,2),(1429,1552197627,1),(1429,1572757227,2),(1429,1583647227,1),(1429,1604206827,2),(1429,1615701627,1),(1429,1636261227,2),(1429,1647151227,1),(1429,1667710827,2),(1429,1678600827,1),(1429,1699160427,2),(1429,1710050427,1),(1429,1730610027,2),(1429,1741500027,1),(1429,1762059627,2),(1429,1772949627,1),(1429,1793509227,2),(1429,1805004027,1),(1429,1825563627,2),(1429,1836453627,1),(1429,1857013227,2),(1429,1867903227,1),(1429,1888462827,2),(1429,1899352827,1),(1429,1919912427,2),(1429,1930802427,1),(1429,1951362027,2),(1429,1962856827,1),(1429,1983416427,2),(1429,1994306427,1),(1429,2014866027,2),(1429,2025756027,1),(1429,2046315627,2),(1429,2057205627,1),(1429,2077765227,2),(1429,2088655227,1),(1429,2109214827,2),(1429,2120104827,1),(1429,2140664427,2),(1430,-2147483648,1),(1430,-1893434400,2),(1430,-880218000,3),(1430,-769395600,4),(1430,-765396000,2),(1430,9961200,5),(1430,25682400,2),(1430,41410800,5),(1430,57736800,2),(1430,73465200,5),(1430,89186401,2),(1430,136364403,5),(1430,152085603,2),(1430,167814004,5),(1430,183535204,2),(1430,199263605,5),(1430,215589605,2),(1430,230713206,5),(1430,247039206,2),(1430,262767607,5),(1430,278488807,2),(1430,294217208,5),(1430,309938408,2),(1430,325666809,5),(1430,341388009,2),(1430,357116409,5),(1430,372837610,2),(1430,388566010,5),(1430,404892011,2),(1430,420015611,5),(1430,436341612,2),(1430,452070012,5),(1430,467791212,2),(1430,483519612,5),(1430,499240813,2),(1430,514969213,5),(1430,530690413,2),(1430,544604413,5),(1430,562140013,2),(1430,576054014,5),(1430,594194414,2),(1430,607503614,5),(1430,625644014,2),(1430,638953215,5),(1430,657093615,2),(1430,671007616,5),(1430,688543216,2),(1430,702457216,5),(1430,719992817,2),(1430,733906817,5),(1430,752047218,2),(1430,765356418,5),(1430,783496819,2),(1430,796806019,5),(1430,814946419,2),(1430,828860420,5),(1430,846396020,2),(1430,860310020,5),(1430,877845621,2),(1430,891759621,5),(1430,909295221,2),(1430,923209222,5),(1430,941349622,2),(1430,954658822,5),(1430,972799222,2),(1430,986108422,5),(1430,1004248822,2),(1430,1018162822,5),(1430,1035698422,2),(1430,1049612422,5),(1430,1067148022,2),(1430,1081062022,5),(1430,1099202422,2),(1430,1112511622,5),(1430,1130652022,2),(1430,1143961223,5),(1430,1162101623,2),(1430,1173596423,5),(1430,1194156023,2),(1430,1205046023,5),(1430,1225605623,2),(1430,1236495624,5),(1430,1257055224,2),(1430,1268550024,5),(1430,1289109624,2),(1430,1299999624,5),(1430,1320559224,2),(1430,1331449224,5),(1430,1352008825,2),(1430,1362898825,5),(1430,1383458425,2),(1430,1394348425,5),(1430,1414908025,2),(1430,1425798025,5),(1430,1446357626,2),(1430,1457852426,5),(1430,1478412026,2),(1430,1489302027,5),(1430,1509861627,2),(1430,1520751627,5),(1430,1541311227,2),(1430,1552201227,5),(1430,1572760827,2),(1430,1583650827,5),(1430,1604210427,2),(1430,1615705227,5),(1430,1636264827,2),(1430,1647154827,5),(1430,1667714427,2),(1430,1678604427,5),(1430,1699164027,2),(1430,1710054027,5),(1430,1730613627,2),(1430,1741503627,5),(1430,1762063227,2),(1430,1772953227,5),(1430,1793512827,2),(1430,1805007627,5),(1430,1825567227,2),(1430,1836457227,5),(1430,1857016827,2),(1430,1867906827,5),(1430,1888466427,2),(1430,1899356427,5),(1430,1919916027,2),(1430,1930806027,5),(1430,1951365627,2),(1430,1962860427,5),(1430,1983420027,2),(1430,1994310027,5),(1430,2014869627,2),(1430,2025759627,5),(1430,2046319227,2),(1430,2057209227,5),(1430,2077768827,2),(1430,2088658827,5),(1430,2109218427,2),(1430,2120108427,5),(1430,2140668027,2),(1431,-2147483648,0),(1431,-1514736000,1),(1431,-1451667600,2),(1431,-1343062800,1),(1431,-1234803600,2),(1431,-1222963200,3),(1431,-1207242000,2),(1431,-873820800,4),(1431,-769395600,5),(1431,-761677200,2),(1431,-686073600,3),(1431,-661539600,2),(1431,-495039600,3),(1431,-481734000,2),(1431,-463590000,3),(1431,-450284400,2),(1431,-431535600,3),(1431,-418230000,2),(1431,-400086000,3),(1431,-386780400,2),(1431,-368636400,3),(1431,-355330800,2),(1431,-337186800,3),(1431,-323881200,2),(1431,-305737200,3),(1431,-292431600,2),(1431,199274405,3),(1431,215600405,2),(1431,230724006,3),(1431,247050006,2),(1431,262778407,3),(1431,278499607,2),(1431,294228008,3),(1431,309949208,2),(1431,325677609,3),(1431,341398809,2),(1431,357127209,3),(1431,372848410,2),(1431,388576810,3),(1431,404902811,2),(1431,420026411,3),(1431,436352412,2),(1431,452080812,3),(1431,467802012,2),(1431,483530412,3),(1431,499251613,2),(1431,514980013,3),(1431,530701213,2),(1431,544615213,3),(1431,562150813,2),(1431,576064814,3),(1431,594205214,2),(1431,607514414,3),(1431,625654814,2),(1431,638964015,3),(1431,657104415,2),(1431,671018416,3),(1431,688554016,2),(1431,702468016,3),(1431,720003617,2),(1431,733917617,3),(1431,752058018,2),(1431,765367218,3),(1431,783507619,2),(1431,796816819,3),(1431,814957219,2),(1431,828871220,3),(1431,846406820,2),(1431,860320820,3),(1431,877856421,2),(1431,891770421,3),(1431,909306021,2),(1431,923220022,3),(1431,941360422,2),(1431,954669622,3),(1431,972810022,2),(1431,986119222,3),(1431,1004259622,2),(1431,1018173622,3),(1431,1035709222,2),(1431,1049623222,3),(1431,1067158822,2),(1431,1081072822,3),(1431,1099213222,2),(1431,1112522422,3),(1431,1130662822,2),(1431,1143972023,3),(1431,1162112423,2),(1431,1175421623,3),(1431,1193562023,2),(1431,1207476023,3),(1431,1225011623,2),(1431,1238925624,3),(1431,1256461224,2),(1431,1268560824,3),(1431,1289120424,2),(1431,1300010424,3),(1431,1320570024,2),(1431,1331460024,3),(1431,1352019625,2),(1431,1362909625,3),(1431,1383469225,2),(1431,1394359225,3),(1431,1414918825,2),(1431,1425808825,3),(1431,1446368426,2),(1431,1457863226,3),(1431,1478422826,2),(1431,1489312827,3),(1431,1509872427,2),(1431,1520762427,3),(1431,1541322027,2),(1431,1552212027,3),(1431,1572771627,2),(1431,1583661627,3),(1431,1604221227,2),(1431,1615716027,3),(1431,1636275627,2),(1431,1647165627,3),(1431,1667725227,2),(1431,1678615227,3),(1431,1699174827,2),(1431,1710064827,3),(1431,1730624427,2),(1431,1741514427,3),(1431,1762074027,2),(1431,1772964027,3),(1431,1793523627,2),(1431,1805018427,3),(1431,1825578027,2),(1431,1836468027,3),(1431,1857027627,2),(1431,1867917627,3),(1431,1888477227,2),(1431,1899367227,3),(1431,1919926827,2),(1431,1930816827,3),(1431,1951376427,2),(1431,1962871227,3),(1431,1983430827,2),(1431,1994320827,3),(1431,2014880427,2),(1431,2025770427,3),(1431,2046330027,2),(1431,2057220027,3),(1431,2077779627,2),(1431,2088669627,3),(1431,2109229227,2),(1431,2120119227,3),(1431,2140678827,2),(1432,-2147483648,2),(1432,-1632070800,1),(1432,-1615140000,2),(1432,-1601753400,1),(1432,-1583697600,2),(1432,-1567357200,1),(1432,-1554667200,2),(1432,-1534698000,1),(1432,-1524074400,2),(1432,-1503248400,1),(1432,-1492365600,2),(1432,-1471798800,1),(1432,-1460916000,2),(1432,-1440954000,1),(1432,-1428861600,2),(1432,-1409504400,1),(1432,-1397412000,2),(1432,-1378054800,1),(1432,-1365962400,2),(1432,-1346605200,1),(1432,-1333908000,2),(1432,-1315155600,1),(1432,-1301853600,2),(1432,-1283706000,1),(1432,-1270404000,2),(1432,-1252256400,1),(1432,-1238954400,2),(1432,-1220806800,1),(1432,-1207504800,2),(1432,-1188752400,1),(1432,-1176055200,2),(1432,-1157302800,1),(1432,-1144000800,2),(1432,-1125853200,1),(1432,-1112551200,2),(1432,-1094403600,1),(1432,-1081101600,2),(1432,-1062954000,1),(1432,-1049652000,2),(1432,-1031504400,1),(1432,-1018202400,2),(1432,-1000054800,1),(1432,-986752800,2),(1432,-968000400,1),(1432,-955303200,2),(1432,-936550800,1),(1432,-880218000,3),(1432,-769395600,4),(1432,-765396000,2),(1432,-747248400,1),(1432,-733946400,2),(1432,-715806000,1),(1432,-702504000,2),(1432,-684356400,1),(1432,-671054400,2),(1432,-652906800,1),(1432,-634161600,2),(1432,-620845200,1),(1432,-602704800,2),(1432,-589395600,1),(1432,-576093600,2),(1432,-557946000,1),(1432,-544644000,2),(1432,-526496400,1),(1432,-513194400,2),(1432,-495046800,1),(1432,-481744800,2),(1432,-463597200,1),(1432,-450295200,2),(1432,-431542800,1),(1432,-418240800,2),(1432,-400093200,1),(1432,-384372000,2),(1432,-368643600,1),(1432,-352922400,2),(1432,-337194000,1),(1432,-321472800,2),(1432,-305744400,1),(1432,-289418400,2),(1432,-273690000,1),(1432,-257968800,2),(1432,-242240400,1),(1432,-226519200,2),(1432,-210790800,1),(1432,-195069600,2),(1432,-179341200,1),(1432,-163620000,2),(1432,-147891600,1),(1432,-131565600,2),(1432,-116442000,1),(1432,-100116000,2),(1432,-84387600,1),(1432,-68666400,2),(1432,-52938000,1),(1432,-37216800,2),(1432,-21488400,1),(1432,-5767200,2),(1432,9961200,1),(1432,25682400,2),(1432,41410800,1),(1432,57736800,2),(1432,73465200,1),(1432,89186401,2),(1432,104914802,1),(1432,120636002,2),(1432,136364403,1),(1432,152085603,2),(1432,167814004,1),(1432,183535204,2),(1432,199263605,1),(1432,215589605,2),(1432,230713206,1),(1432,247039206,2),(1432,262767607,1),(1432,278488807,2),(1432,294217208,1),(1432,309938408,2),(1432,325666809,1),(1432,341388009,2),(1432,357116409,1),(1432,372837610,2),(1432,388566010,1),(1432,404892011,2),(1432,420015611,1),(1432,436341612,2),(1432,452070012,1),(1432,467791212,2),(1432,483519612,1),(1432,499240813,2),(1432,514969213,1),(1432,530690413,2),(1432,544604413,1),(1432,562140013,2),(1432,576054014,1),(1432,594194414,2),(1432,607503614,1),(1432,625644014,2),(1432,638953215,1),(1432,657093615,2),(1432,671007616,1),(1432,688543216,2),(1432,702457216,1),(1432,719992817,2),(1432,733906817,1),(1432,752047218,2),(1432,765356418,1),(1432,783496819,2),(1432,796806019,1),(1432,814946419,2),(1432,828860420,1),(1432,846396020,2),(1432,860310020,1),(1432,877845621,2),(1432,891759621,1),(1432,909295221,2),(1432,923209222,1),(1432,941349622,2),(1432,954658822,1),(1432,972799222,2),(1432,986108422,1),(1432,1004248822,2),(1432,1018162822,1),(1432,1035698422,2),(1432,1049612422,1),(1432,1067148022,2),(1432,1081062022,1),(1432,1099202422,2),(1432,1112511622,1),(1432,1130652022,2),(1432,1143961223,1),(1432,1162101623,2),(1432,1173596423,1),(1432,1194156023,2),(1432,1205046023,1),(1432,1225605623,2),(1432,1236495624,1),(1432,1257055224,2),(1432,1268550024,1),(1432,1289109624,2),(1432,1299999624,1),(1432,1320559224,2),(1432,1331449224,1),(1432,1352008825,2),(1432,1362898825,1),(1432,1383458425,2),(1432,1394348425,1),(1432,1414908025,2),(1432,1425798025,1),(1432,1446357626,2),(1432,1457852426,1),(1432,1478412026,2),(1432,1489302027,1),(1432,1509861627,2),(1432,1520751627,1),(1432,1541311227,2),(1432,1552201227,1),(1432,1572760827,2),(1432,1583650827,1),(1432,1604210427,2),(1432,1615705227,1),(1432,1636264827,2),(1432,1647154827,1),(1432,1667714427,2),(1432,1678604427,1),(1432,1699164027,2),(1432,1710054027,1),(1432,1730613627,2),(1432,1741503627,1),(1432,1762063227,2),(1432,1772953227,1),(1432,1793512827,2),(1432,1805007627,1),(1432,1825567227,2),(1432,1836457227,1),(1432,1857016827,2),(1432,1867906827,1),(1432,1888466427,2),(1432,1899356427,1),(1432,1919916027,2),(1432,1930806027,1),(1432,1951365627,2),(1432,1962860427,1),(1432,1983420027,2),(1432,1994310027,1),(1432,2014869627,2),(1432,2025759627,1),(1432,2046319227,2),(1432,2057209227,1),(1432,2077768827,2),(1432,2088658827,1),(1432,2109218427,2),(1432,2120108427,1),(1432,2140668027,2),(1433,-2147483648,0),(1433,-1825098836,1),(1434,-2147483648,2),(1434,-1632060000,1),(1434,-1615129200,2),(1434,-880207200,3),(1434,-769395600,4),(1434,-765385200,2),(1434,-747237600,1),(1434,-733935600,2),(1434,-715788000,1),(1434,-702486000,2),(1434,-684338400,1),(1434,-671036400,2),(1434,-652888800,1),(1434,-639586800,2),(1434,-620834400,1),(1434,-608137200,2),(1434,-589384800,1),(1434,-576082800,2),(1434,-557935200,1),(1434,-544633200,2),(1434,-526485600,1),(1434,-513183600,2),(1434,-495036000,1),(1434,-481734000,2),(1434,-463586400,1),(1434,-450284400,2),(1434,-431532000,1),(1434,-418230000,2),(1434,-400082400,1),(1434,-386780400,2),(1434,-368632800,1),(1434,-355330800,2),(1434,-337183200,1),(1434,-323881200,2),(1434,-305733600,1),(1434,-292431600,2),(1434,-273679200,1),(1434,-260982000,2),(1434,-242229600,1),(1434,-226508400,2),(1434,-210780000,1),(1434,-195058800,2),(1434,-179330400,1),(1434,-163609200,2),(1434,-147880800,1),(1434,-131554800,2),(1434,-116431200,1),(1434,-100105200,2),(1434,-84376800,1),(1434,-68655600,2),(1434,-52927200,1),(1434,-37206000,2),(1434,-21477600,1),(1434,-5756400,2),(1434,9972000,1),(1434,25693200,2),(1434,41421600,1),(1434,57747600,2),(1434,73476000,1),(1434,89197201,2),(1434,104925602,1),(1434,120646802,2),(1434,136375203,1),(1434,152096403,2),(1434,167824804,1),(1434,183546004,2),(1434,199274405,1),(1434,215600405,2),(1434,230724006,1),(1434,247050006,2),(1434,262778407,1),(1434,278499607,2),(1434,294228008,1),(1434,309949208,2),(1434,325677609,1),(1434,341398809,2),(1434,357127209,1),(1434,372848410,2),(1434,388576810,1),(1434,404902811,2),(1434,420026411,1),(1434,436352412,2),(1434,452080812,1),(1434,467802012,2),(1434,483530412,1),(1434,499251613,2),(1434,514980013,1),(1434,530701213,2),(1434,544615213,1),(1434,562150813,2),(1434,576064814,1),(1434,594205214,2),(1434,607514414,1),(1434,625654814,2),(1434,638964015,1),(1434,657104415,2),(1434,671018416,1),(1434,688554016,2),(1434,702468016,1),(1434,720003617,2),(1434,733917617,1),(1434,752058018,2),(1434,765367218,1),(1434,783507619,2),(1434,796816819,1),(1434,814957219,2),(1434,828871220,1),(1434,846406820,2),(1434,860320820,1),(1434,877856421,2),(1434,891770421,1),(1434,909306021,2),(1434,923220022,1),(1434,941360422,2),(1434,954669622,1),(1434,972810022,2),(1434,986119222,1),(1434,1004259622,2),(1434,1018173622,1),(1434,1035709222,2),(1434,1049623222,1),(1434,1067158822,2),(1434,1081072822,1),(1434,1099213222,2),(1434,1112522422,1),(1434,1130662822,2),(1434,1143972023,1),(1434,1162112423,2),(1434,1173607223,1),(1434,1194166823,2),(1434,1205056823,1),(1434,1225616423,2),(1434,1236506424,1),(1434,1257066024,2),(1434,1268560824,1),(1434,1289120424,2),(1434,1300010424,1),(1434,1320570024,2),(1434,1331460024,1),(1434,1352019625,2),(1434,1362909625,1),(1434,1383469225,2),(1434,1394359225,1),(1434,1414918825,2),(1434,1425808825,1),(1434,1446368426,2),(1434,1457863226,1),(1434,1478422826,2),(1434,1489312827,1),(1434,1509872427,2),(1434,1520762427,1),(1434,1541322027,2),(1434,1552212027,1),(1434,1572771627,2),(1434,1583661627,1),(1434,1604221227,2),(1434,1615716027,1),(1434,1636275627,2),(1434,1647165627,1),(1434,1667725227,2),(1434,1678615227,1),(1434,1699174827,2),(1434,1710064827,1),(1434,1730624427,2),(1434,1741514427,1),(1434,1762074027,2),(1434,1772964027,1),(1434,1793523627,2),(1434,1805018427,1),(1434,1825578027,2),(1434,1836468027,1),(1434,1857027627,2),(1434,1867917627,1),(1434,1888477227,2),(1434,1899367227,1),(1434,1919926827,2),(1434,1930816827,1),(1434,1951376427,2),(1434,1962871227,1),(1434,1983430827,2),(1434,1994320827,1),(1434,2014880427,2),(1434,2025770427,1),(1434,2046330027,2),(1434,2057220027,1),(1434,2077779627,2),(1434,2088669627,1),(1434,2109229227,2),(1434,2120119227,1),(1434,2140678827,2),(1435,-2147483648,0),(1435,-1825098836,1),(1436,-2147483648,2),(1436,-1632056400,1),(1436,-1615125600,2),(1436,-1596978000,1),(1436,-1583164800,2),(1436,-880203600,3),(1436,-769395600,4),(1436,-765381600,2),(1436,-147884400,5),(1436,-131554800,2),(1436,-81961200,6),(1436,325677609,7),(1436,341398809,6),(1436,357127209,7),(1436,372848410,6),(1436,388576810,7),(1436,404902811,6),(1436,420026411,7),(1436,436352412,6),(1436,452080812,7),(1436,467802012,6),(1436,483530412,7),(1436,499251613,6),(1436,514980013,7),(1436,530701213,6),(1436,544615213,7),(1436,562150813,6),(1436,576064814,7),(1436,594205214,6),(1436,607514414,7),(1436,625654814,6),(1436,638964015,7),(1436,657104415,6),(1436,671018416,7),(1436,688554016,6),(1436,702468016,7),(1436,720003617,6),(1436,733917617,7),(1436,752058018,6),(1436,765367218,7),(1436,783507619,6),(1436,796816819,7),(1436,814957219,6),(1436,828871220,7),(1436,846406820,6),(1436,860320820,7),(1436,877856421,6),(1436,891770421,7),(1436,909306021,6),(1436,923220022,7),(1436,941360422,6),(1436,954669622,7),(1436,972810022,6),(1436,986119222,7),(1436,1004259622,6),(1436,1018173622,7),(1436,1035709222,6),(1436,1049623222,7),(1436,1067158822,6),(1436,1081072822,7),(1436,1099213222,6),(1436,1112522422,7),(1436,1130662822,6),(1436,1143972023,7),(1436,1162112423,6),(1436,1173607223,7),(1436,1194166823,6),(1436,1205056823,7),(1436,1225616423,6),(1436,1236506424,7),(1436,1257066024,6),(1436,1268560824,7),(1436,1289120424,6),(1436,1300010424,7),(1436,1320570024,6),(1436,1331460024,7),(1436,1352019625,6),(1436,1362909625,7),(1436,1383469225,6),(1436,1394359225,7),(1436,1414918825,6),(1436,1425808825,7),(1436,1446368426,6),(1436,1457863226,7),(1436,1478422826,6),(1436,1489312827,7),(1436,1509872427,6),(1436,1520762427,7),(1436,1541322027,6),(1436,1552212027,7),(1436,1572771627,6),(1436,1583661627,7),(1436,1604214027,8),(1437,-2147483648,2),(1437,-1694368800,1),(1437,-1681671600,2),(1437,-1632067200,1),(1437,-1615136400,2),(1437,-1029686400,1),(1437,-1018198800,2),(1437,-880214400,3),(1437,-769395600,4),(1437,-765392400,2),(1437,-746035200,1),(1437,-732733200,2),(1437,-715795200,1),(1437,-702493200,2),(1437,-684345600,1),(1437,-671043600,2),(1437,-652896000,1),(1437,-639594000,2),(1437,-620755200,1),(1437,-607626000,2),(1437,-589392000,1),(1437,-576090000,2),(1437,-557942400,1),(1437,-544640400,2),(1437,-526492800,1),(1437,-513190800,2),(1437,-495043200,1),(1437,-481741200,2),(1437,-463593600,1),(1437,-450291600,2),(1437,-431539200,1),(1437,-418237200,2),(1437,-400089600,1),(1437,-386787600,2),(1437,-368640000,1),(1437,-355338000,2),(1437,-337190400,1),(1437,-321469200,2),(1437,-305740800,1),(1437,-292438800,2),(1437,-210787200,1),(1437,-198090000,2),(1437,-116438400,5),(1437,-100108800,6),(1437,-84384000,5),(1437,-68659200,6),(1437,-52934400,5),(1437,-37209600,6),(1437,-21484800,5),(1437,-5760000,6),(1437,9964800,5),(1437,25689600,6),(1437,41414400,5),(1437,57744000,6),(1437,73468800,5),(1437,89193601,6),(1437,104918402,5),(1437,120643202,6),(1437,136368003,5),(1437,152092803,6),(1437,167817604,5),(1437,183542404,6),(1437,199267205,5),(1437,215596805,6),(1437,230716806,5),(1437,247046406,6),(1437,262771207,5),(1437,278496007,6),(1437,294220808,5),(1437,309945608,6),(1437,325670409,5),(1437,341395209,6),(1437,357120009,5),(1437,372844810,6),(1437,388569610,5),(1437,404899211,6),(1437,420019211,5),(1437,436348812,6),(1437,452073612,5),(1437,467798412,6),(1437,483523212,5),(1437,499248013,6),(1437,514972813,5),(1437,530697613,6),(1437,544608013,5),(1437,562147213,6),(1437,576057614,5),(1437,594201614,6),(1437,607507214,5),(1437,625651214,6),(1437,638956815,5),(1437,657100815,6),(1437,671011216,5),(1437,688550416,6),(1437,702460816,5),(1437,720000017,6),(1437,733910417,5),(1437,752054418,6),(1437,765360018,5),(1437,783504019,6),(1437,796809619,5),(1437,814953619,6),(1437,828864020,5),(1437,846403220,6),(1437,860313620,5),(1437,877852821,6),(1437,891763221,5),(1437,909302421,6),(1437,923212822,5),(1437,941356822,6),(1437,954662422,5),(1437,972806422,6),(1437,986112022,5),(1437,1004256022,6),(1437,1018166422,5),(1437,1035705622,6),(1437,1049616022,5),(1437,1067155222,6),(1437,1081065622,5),(1437,1099209622,6),(1437,1112515222,5),(1437,1130659222,6),(1437,1136095223,2),(1437,1143964823,1),(1437,1162105223,2),(1437,1173600023,1),(1437,1194159623,2),(1437,1205049623,1),(1437,1225609223,2),(1437,1236499224,1),(1437,1257058824,2),(1437,1268553624,1),(1437,1289113224,2),(1437,1300003224,1),(1437,1320562824,2),(1437,1331452824,1),(1437,1352012425,2),(1437,1362902425,1),(1437,1383462025,2),(1437,1394352025,1),(1437,1414911625,2),(1437,1425801625,1),(1437,1446361226,2),(1437,1457856026,1),(1437,1478415626,2),(1437,1489305627,1),(1437,1509865227,2),(1437,1520755227,1),(1437,1541314827,2),(1437,1552204827,1),(1437,1572764427,2),(1437,1583654427,1),(1437,1604214027,2),(1437,1615708827,1),(1437,1636268427,2),(1437,1647158427,1),(1437,1667718027,2),(1437,1678608027,1),(1437,1699167627,2),(1437,1710057627,1),(1437,1730617227,2),(1437,1741507227,1),(1437,1762066827,2),(1437,1772956827,1),(1437,1793516427,2),(1437,1805011227,1),(1437,1825570827,2),(1437,1836460827,1),(1437,1857020427,2),(1437,1867910427,1),(1437,1888470027,2),(1437,1899360027,1),(1437,1919919627,2),(1437,1930809627,1),(1437,1951369227,2),(1437,1962864027,1),(1437,1983423627,2),(1437,1994313627,1),(1437,2014873227,2),(1437,2025763227,1),(1437,2046322827,2),(1437,2057212827,1),(1437,2077772427,2),(1437,2088662427,1),(1437,2109222027,2),(1437,2120112027,1),(1437,2140671627,2),(1438,-2147483648,1),(1438,-880203600,2),(1438,-769395600,3),(1438,-765381600,1),(1438,-21474000,4),(1438,-5752800,1),(1438,9975600,4),(1438,25696800,1),(1438,41425200,4),(1438,57751200,1),(1438,73479600,4),(1438,89200801,1),(1438,104929202,4),(1438,120650402,1),(1438,126702003,4),(1438,152100003,1),(1438,162385204,4),(1438,183549604,1),(1438,199278005,4),(1438,215604005,1),(1438,230727606,4),(1438,247053606,1),(1438,262782007,4),(1438,278503207,1),(1438,294231608,4),(1438,309952808,1),(1438,325681209,4),(1438,341402409,1),(1438,357130809,4),(1438,372852010,1),(1438,388580410,4),(1438,404906411,1),(1438,420030011,4),(1438,436356012,1),(1438,439030812,6),(1438,452084412,5),(1438,467805612,6),(1438,483534012,5),(1438,499255213,6),(1438,514983613,5),(1438,530704813,6),(1438,544618813,5),(1438,562154413,6),(1438,576068414,5),(1438,594208814,6),(1438,607518014,5),(1438,625658414,6),(1438,638967615,5),(1438,657108015,6),(1438,671022016,5),(1438,688557616,6),(1438,702471616,5),(1438,720007217,6),(1438,733921217,5),(1438,752061618,6),(1438,765370818,5),(1438,783511219,6),(1438,796820419,5),(1438,814960819,6),(1438,828874820,5),(1438,846410420,6),(1438,860324420,5),(1438,877860021,6),(1438,891774021,5),(1438,909309621,6),(1438,923223622,5),(1438,941364022,6),(1438,954673222,5),(1438,972813622,6),(1438,986122822,5),(1438,1004263222,6),(1438,1018177222,5),(1438,1035712822,6),(1438,1049626822,5),(1438,1067162422,6),(1438,1081076422,5),(1438,1099216822,6),(1438,1112526022,5),(1438,1130666422,6),(1438,1143975623,5),(1438,1162116023,6),(1438,1173610823,5),(1438,1194170423,6),(1438,1205060423,5),(1438,1225620023,6),(1438,1236510024,5),(1438,1257069624,6),(1438,1268564424,5),(1438,1289124024,6),(1438,1300014024,5),(1438,1320573624,6),(1438,1331463624,5),(1438,1352023225,6),(1438,1362913225,5),(1438,1383472825,6),(1438,1394362825,5),(1438,1414922425,6),(1438,1425812425,5),(1438,1446372026,6),(1438,1457866826,5),(1438,1478426426,6),(1438,1489316427,5),(1438,1509876027,6),(1438,1520766027,5),(1438,1541325627,6),(1438,1552215627,5),(1438,1572775227,6),(1438,1583665227,5),(1438,1604224827,6),(1438,1615719627,5),(1438,1636279227,6),(1438,1647169227,5),(1438,1667728827,6),(1438,1678618827,5),(1438,1699178427,6),(1438,1710068427,5),(1438,1730628027,6),(1438,1741518027,5),(1438,1762077627,6),(1438,1772967627,5),(1438,1793527227,6),(1438,1805022027,5),(1438,1825581627,6),(1438,1836471627,5),(1438,1857031227,6),(1438,1867921227,5),(1438,1888480827,6),(1438,1899370827,5),(1438,1919930427,6),(1438,1930820427,5),(1438,1951380027,6),(1438,1962874827,5),(1438,1983434427,6),(1438,1994324427,5),(1438,2014884027,6),(1438,2025774027,5),(1438,2046333627,6),(1438,2057223627,5),(1438,2077783227,6),(1438,2088673227,5),(1438,2109232827,6),(1438,2120122827,5),(1438,2140682427,6),(1439,-2147483648,0),(1439,-1104537600,3),(1439,-880210800,1),(1439,-769395600,2),(1439,-765388800,3),(1439,-147891600,4),(1439,-131562000,3),(1439,325674009,5),(1439,341395209,3),(1439,357123609,5),(1439,372844810,3),(1439,388573210,5),(1439,404899211,3),(1439,420022811,5),(1439,436348812,3),(1439,452077212,5),(1439,467798412,3),(1439,483526812,5),(1439,499248013,3),(1439,514976413,5),(1439,530697613,3),(1439,544611613,5),(1439,562147213,3),(1439,576061214,5),(1439,594201614,3),(1439,607510814,5),(1439,625651214,3),(1439,638960415,5),(1439,657100815,3),(1439,671014816,5),(1439,688550416,3),(1439,702464416,5),(1439,720000017,3),(1439,733914017,5),(1439,752054418,3),(1439,765363618,5),(1439,783504019,3),(1439,796813219,5),(1439,814953619,3),(1439,828867620,5),(1439,846403220,3),(1439,860317220,5),(1439,877852821,3),(1439,891766821,5),(1439,909302421,3),(1439,923216422,5),(1439,941356822,3),(1439,954666022,5),(1439,972806422,3),(1439,986115622,5),(1439,1004256022,3),(1439,1018170022,5),(1439,1035705622,3),(1439,1049619622,5),(1439,1067155222,3),(1439,1081069222,5),(1439,1099209622,3),(1439,1112518822,5),(1439,1130659222,3),(1439,1143968423,5),(1439,1162108823,3),(1439,1173603623,5),(1439,1194163223,3),(1439,1205053223,5),(1439,1225612823,3),(1439,1236502824,5),(1439,1257062424,3),(1439,1268557224,5),(1439,1289116824,3),(1439,1300006824,5),(1439,1320566424,3),(1439,1331456424,5),(1439,1352016025,3),(1439,1362906025,5),(1439,1383465625,3),(1439,1394355625,5),(1439,1414915225,3),(1439,1425805225,5),(1439,1446364826,3),(1439,1457859626,5),(1439,1478419226,3),(1439,1489309227,5),(1439,1509868827,3),(1439,1520758827,5),(1439,1541318427,3),(1439,1552208427,5),(1439,1572768027,3),(1439,1583658027,5),(1439,1604217627,3),(1439,1615712427,5),(1439,1636272027,3),(1439,1647162027,5),(1439,1667721627,3),(1439,1678611627,5),(1439,1699171227,3),(1439,1710061227,5),(1439,1730620827,3),(1439,1741510827,5),(1439,1762070427,3),(1439,1772960427,5),(1439,1793520027,3),(1439,1805014827,5),(1439,1825574427,3),(1439,1836464427,5),(1439,1857024027,3),(1439,1867914027,5),(1439,1888473627,3),(1439,1899363627,5),(1439,1919923227,3),(1439,1930813227,5),(1439,1951372827,3),(1439,1962867627,5),(1439,1983427227,3),(1439,1994317227,5),(1439,2014876827,3),(1439,2025766827,5),(1439,2046326427,3),(1439,2057216427,5),(1439,2077776027,3),(1439,2088666027,5),(1439,2109225627,3),(1439,2120115627,5),(1439,2140675227,3),(1440,-2147483648,0),(1440,-31536000,1),(1440,1255802424,2),(1440,1267714824,1),(1440,1319738424,2),(1440,1329843624,3),(1440,1477065626,2),(1440,1520701227,1),(1440,1538856027,2),(1440,1552752027,1),(1440,1570129227,2),(1440,1583596827,1),(1440,1601740887,2),(1441,-2147483648,0),(1441,-409190400,1),(1441,-163062000,0),(1441,-28857600,1),(1441,1255806024,2),(1441,1268251224,3),(1441,1319742024,2),(1441,1329854424,3),(1442,-2147483648,0),(1442,-725846400,1),(1442,-566992800,0),(1442,-415497600,1),(1443,-2147483648,1),(1443,-1680508800,2),(1443,-1665388800,3),(1443,-1601719200,4),(1443,-687052800,1),(1443,-71136000,5),(1443,-55411200,3),(1443,-37267200,5),(1443,-25776000,3),(1443,-5817600,5),(1443,5673600,3),(1443,25632000,5),(1443,37728000,3),(1443,57686400,5),(1443,67968000,3),(1443,89136001,5),(1443,100022402,3),(1443,120585602,5),(1443,131472003,3),(1443,152035203,5),(1443,162921604,3),(1443,183484804,5),(1443,194976005,3),(1443,215539205,5),(1443,226425606,3),(1443,246988806,5),(1443,257875207,3),(1443,278438407,5),(1443,289324808,3),(1443,309888008,5),(1443,320774409,3),(1443,341337609,5),(1443,352224009,3),(1443,372787210,5),(1443,386092810,3),(1443,404841611,5),(1443,417542411,3),(1443,436291212,5),(1443,447177612,3),(1443,467740812,5),(1443,478627212,3),(1443,499190413,5),(1443,510076813,3),(1443,530035213,5),(1443,542736013,3),(1443,562089613,5),(1443,574790414,3),(1443,594144014,5),(1443,606240014,3),(1443,625593614,5),(1443,637689615,3),(1443,657043215,5),(1443,670348816,3),(1443,686678416,5),(1443,701798416,3),(1443,718128017,5),(1443,733248017,3),(1443,749577618,5),(1443,764697618,3),(1443,781027219,5),(1443,796147219,3),(1443,812476819,5),(1443,828201620,3),(1443,844531220,5),(1443,859651220,3),(1443,875980821,5),(1443,891100821,3),(1443,907430421,5),(1443,922550422,3),(1443,938880022,5),(1443,954000022,3),(1443,967305622,5),(1443,985449622,3),(1443,1002384022,5),(1443,1017504022,3),(1443,1033833622,5),(1443,1048953622,3),(1443,1065283222,5),(1443,1080403222,3),(1443,1096732822,5),(1443,1111852822,3),(1443,1128182422,5),(1443,1143907223,3),(1443,1159632023,5),(1443,1174752023,3),(1443,1191686423,5),(1443,1207411223,3),(1443,1223136023,5),(1443,1238860824,3),(1443,1254585624,5),(1443,1262264424,2),(1443,1301760024,3),(1443,1317484824,5),(1443,1333209624,3),(1443,1349539225,5),(1443,1365264025,3),(1443,1380988825,5),(1443,1396713625,3),(1443,1412438425,5),(1443,1428163225,3),(1443,1443888026,5),(1443,1459612826,3),(1443,1475337626,5),(1443,1491062427,3),(1443,1506787227,5),(1443,1522512027,3),(1443,1538841627,5),(1443,1554566427,3),(1443,1570291227,5),(1443,1586016027,3),(1443,1601740827,5),(1443,1617465627,3),(1443,1633190427,5),(1443,1648915227,3),(1443,1664640027,5),(1443,1680364827,3),(1443,1696089627,5),(1443,1712419227,3),(1443,1728144027,5),(1443,1743868827,3),(1443,1759593627,5),(1443,1775318427,3),(1443,1791043227,5),(1443,1806768027,3),(1443,1822492827,5),(1443,1838217627,3),(1443,1853942427,5),(1443,1869667227,3),(1443,1885996827,5),(1443,1901721627,3),(1443,1917446427,5),(1443,1933171227,3),(1443,1948896027,5),(1443,1964620827,3),(1443,1980345627,5),(1443,1996070427,3),(1443,2011795227,5),(1443,2027520027,3),(1443,2043244827,5),(1443,2058969627,3),(1443,2075299227,5),(1443,2091024027,3),(1443,2106748827,5),(1443,2122473627,3),(1443,2138198427,5),(1444,-2147483648,0),(1444,-501206400,1),(1444,1255809624,2),(1445,-2147483648,2),(1445,-1330335000,1),(1445,-1320057000,2),(1445,-1300699800,3),(1445,-1287396000,2),(1445,-1269250200,3),(1445,-1255946400,2),(1445,-1237800600,3),(1445,-1224496800,2),(1445,-1206351000,3),(1445,-1192442400,2),(1445,-1174901400,3),(1445,-1160992800,2),(1445,-1143451800,3),(1445,-1125914400,2),(1445,-1112607000,3),(1445,-1094464800,2),(1445,-1081157400,3),(1445,-1063015200,2),(1445,-1049707800,3),(1445,-1031565600,2),(1445,-1018258200,3),(1445,-1000116000,2),(1445,-986808600,3),(1445,-968061600,2),(1445,-955359000,3),(1445,-936612000,2),(1445,-923304600,3),(1445,-757425600,6),(1445,152632803,4),(1445,162309604,5),(1445,183477604,4),(1445,194968805,5),(1445,215532005,4),(1445,226418406,5),(1445,246981606,4),(1445,257868007,5),(1445,278431207,4),(1445,289317608,5),(1445,309880808,4),(1445,320767209,5),(1445,341330409,4),(1445,352216809,5),(1445,372780010,4),(1445,384271210,5),(1445,404834411,4),(1445,415720811,5),(1445,436284012,4),(1445,447170412,5),(1445,467733612,4),(1445,478620012,5),(1445,499183213,4),(1445,510069613,5),(1445,530632813,4),(1445,541519213,5),(1445,562082413,4),(1445,573573614,5),(1445,594136814,4),(1445,605023214,5),(1445,623772014,4),(1445,637682415,5),(1445,655221615,4),(1445,669132016,5),(1445,686671216,4),(1445,700581616,5),(1445,718120817,4),(1445,732636017,5),(1445,749570418,4),(1445,764085618,5),(1445,781020019,4),(1445,795535219,5),(1445,812469619,4),(1445,826984820,5),(1445,844524020,4),(1445,858434420,5),(1445,875973621,4),(1445,889884021,5),(1445,907423221,4),(1445,921938422,5),(1445,938872822,4),(1445,953388022,5),(1445,970322422,4),(1445,984837622,5),(1445,1002376822,4),(1445,1016287222,5),(1445,1033826422,4),(1445,1047736822,5),(1445,1065276022,4),(1445,1079791222,5),(1445,1096725622,4),(1445,1111240822,5),(1445,1128175222,4),(1445,1142690423,5),(1445,1159624823,4),(1445,1174140023,5),(1445,1191074423,4),(1445,1207404023,5),(1445,1222524023,4),(1445,1238853624,5),(1445,1253973624,4),(1445,1270303224,5),(1445,1285423224,4),(1445,1301752824,5),(1445,1316872824,4),(1445,1333202424,5),(1445,1348927225,4),(1445,1365256825,5),(1445,1380376825,4),(1445,1396706425,5),(1445,1411826425,4),(1445,1428156025,5),(1445,1443276026,4),(1445,1459605626,5),(1445,1474725626,4),(1445,1491055227,5),(1445,1506175227,4),(1445,1522504827,5),(1445,1538229627,4),(1445,1554559227,5),(1445,1569679227,4),(1445,1586008827,5),(1445,1601128827,4),(1445,1617458427,5),(1445,1632578427,4),(1445,1648908027,5),(1445,1664028027,4),(1445,1680357627,5),(1445,1695477627,4),(1445,1712412027,5),(1445,1727532027,4),(1445,1743861627,5),(1445,1758981627,4),(1445,1775311227,5),(1445,1790431227,4),(1445,1806760827,5),(1445,1821880827,4),(1445,1838210427,5),(1445,1853330427,4),(1445,1869660027,5),(1445,1885384827,4),(1445,1901714427,5),(1445,1916834427,4),(1445,1933164027,5),(1445,1948284027,4),(1445,1964613627,5),(1445,1979733627,4),(1445,1996063227,5),(1445,2011183227,4),(1445,2027512827,5),(1445,2042632827,4),(1445,2058962427,5),(1445,2074687227,4),(1445,2091016827,5),(1445,2106136827,4),(1445,2122466427,5),(1445,2137586427,4),(1446,-2147483648,0),(1446,-157766400,2),(1446,-152658000,1),(1446,-132955200,2),(1446,-121122000,1),(1446,-101419200,2),(1446,-86821200,1),(1446,-71092800,2),(1446,-54766800,1),(1446,-39038400,2),(1446,-23317200,1),(1446,-7588800,4),(1446,128142003,3),(1446,136605603,4),(1446,389070010,1),(1446,403070411,5),(1446,416372411,6),(1446,434520012,5),(1446,447822012,6),(1446,466574412,5),(1446,479271612,6),(1446,498024013,5),(1446,510721213,6),(1446,529473613,5),(1446,545194813,6),(1446,560923213,5),(1446,574225214,6),(1446,592372814,5),(1446,605674814,6),(1446,624427214,5),(1446,637124415,6),(1446,653457615,5),(1446,668574016,6),(1446,687326416,5),(1446,700628416,6),(1446,718776017,5),(1446,732078017,6),(1446,750225618,5),(1446,763527618,6),(1446,781675219,5),(1446,794977219,6),(1446,813729619,5),(1446,826426820,6),(1446,845179220,5),(1446,859690820,6),(1446,876628821,5),(1446,889930821,6),(1446,906868821,5),(1446,923194822,6),(1446,939528022,5),(1446,952830022,6),(1446,971582422,5),(1446,984279622,6),(1446,1003032022,5),(1446,1015729222,6),(1446,1034481622,5),(1446,1047178822,6),(1446,1065931222,5),(1446,1079233222,6),(1446,1097380822,5),(1446,1110682822,6),(1446,1128830422,5),(1446,1142132423,6),(1446,1160884823,5),(1446,1173582023,6),(1446,1192334423,5),(1446,1206846023,6),(1446,1223784023,5),(1446,1237086024,6),(1446,1255233624,5),(1446,1270350024,6),(1446,1286683224,5),(1446,1304823624,6),(1446,1313899224,5),(1446,1335668424,6),(1446,1346558425,5),(1446,1367118025,6),(1446,1378612825,5),(1446,1398567625,6),(1446,1410062425,5),(1446,1463281226,6),(1446,1471147226,5),(1446,1480820426,4),(1447,-2147483648,0),(1447,218246405,1),(1448,-2147483648,2),(1448,-1330335000,1),(1448,-1320057000,2),(1448,-1300699800,3),(1448,-1287396000,2),(1448,-1269250200,3),(1448,-1255946400,2),(1448,-1237800600,3),(1448,-1224496800,2),(1448,-1206351000,3),(1448,-1192442400,2),(1448,-1174901400,3),(1448,-1160992800,2),(1448,-1143451800,3),(1448,-1125914400,2),(1448,-1112607000,3),(1448,-1094464800,2),(1448,-1081157400,3),(1448,-1063015200,2),(1448,-1049707800,3),(1448,-1031565600,2),(1448,-1018258200,3),(1448,-1000116000,2),(1448,-986808600,3),(1448,-968061600,2),(1448,-955359000,3),(1448,-936612000,2),(1448,-923304600,3),(1448,-757425600,6),(1448,152632803,4),(1448,162309604,5),(1448,183477604,4),(1448,194968805,5),(1448,215532005,4),(1448,226418406,5),(1448,246981606,4),(1448,257868007,5),(1448,278431207,4),(1448,289317608,5),(1448,309880808,4),(1448,320767209,5),(1448,341330409,4),(1448,352216809,5),(1448,372780010,4),(1448,384271210,5),(1448,404834411,4),(1448,415720811,5),(1448,436284012,4),(1448,447170412,5),(1448,467733612,4),(1448,478620012,5),(1448,499183213,4),(1448,510069613,5),(1448,530632813,4),(1448,541519213,5),(1448,562082413,4),(1448,573573614,5),(1448,594136814,4),(1448,605023214,5),(1448,623772014,4),(1448,637682415,5),(1448,655221615,4),(1448,669132016,5),(1448,686671216,4),(1448,700581616,5),(1448,718120817,4),(1448,732636017,5),(1448,749570418,4),(1448,764085618,5),(1448,781020019,4),(1448,795535219,5),(1448,812469619,4),(1448,826984820,5),(1448,844524020,4),(1448,858434420,5),(1448,875973621,4),(1448,889884021,5),(1448,907423221,4),(1448,921938422,5),(1448,938872822,4),(1448,953388022,5),(1448,970322422,4),(1448,984837622,5),(1448,1002376822,4),(1448,1016287222,5),(1448,1033826422,4),(1448,1047736822,5),(1448,1065276022,4),(1448,1079791222,5),(1448,1096725622,4),(1448,1111240822,5),(1448,1128175222,4),(1448,1142690423,5),(1448,1159624823,4),(1448,1174140023,5),(1448,1191074423,4),(1448,1207404023,5),(1448,1222524023,4),(1448,1238853624,5),(1448,1253973624,4),(1448,1270303224,5),(1448,1285423224,4),(1448,1301752824,5),(1448,1316872824,4),(1448,1333202424,5),(1448,1348927225,4),(1448,1365256825,5),(1448,1380376825,4),(1448,1396706425,5),(1448,1411826425,4),(1448,1428156025,5),(1448,1443276026,4),(1448,1459605626,5),(1448,1474725626,4),(1448,1491055227,5),(1448,1506175227,4),(1448,1522504827,5),(1448,1538229627,4),(1448,1554559227,5),(1448,1569679227,4),(1448,1586008827,5),(1448,1601128827,4),(1448,1617458427,5),(1448,1632578427,4),(1448,1648908027,5),(1448,1664028027,4),(1448,1680357627,5),(1448,1695477627,4),(1448,1712412027,5),(1448,1727532027,4),(1448,1743861627,5),(1448,1758981627,4),(1448,1775311227,5),(1448,1790431227,4),(1448,1806760827,5),(1448,1821880827,4),(1448,1838210427,5),(1448,1853330427,4),(1448,1869660027,5),(1448,1885384827,4),(1448,1901714427,5),(1448,1916834427,4),(1448,1933164027,5),(1448,1948284027,4),(1448,1964613627,5),(1448,1979733627,4),(1448,1996063227,5),(1448,2011183227,4),(1448,2027512827,5),(1448,2042632827,4),(1448,2058962427,5),(1448,2074687227,4),(1448,2091016827,5),(1448,2106136827,4),(1448,2122466427,5),(1448,2137586427,4),(1449,-2147483648,0),(1449,-407808000,1),(1450,-2147483648,0),(1450,1108166422,3),(1450,1111885222,1),(1450,1130634022,2),(1450,1143334823,1),(1450,1162083623,2),(1450,1174784423,1),(1450,1193533223,2),(1450,1206838823,1),(1450,1224982823,2),(1450,1238288424,1),(1450,1256432424,2),(1450,1269738024,1),(1450,1288486824,2),(1450,1301187624,1),(1450,1319936424,2),(1450,1332637224,1),(1450,1351386025,2),(1450,1364691625,1),(1450,1382835625,2),(1450,1396141225,1),(1450,1414285225,2),(1450,1427590825,1),(1450,1445734826,2),(1450,1459040426,1),(1450,1477789226,2),(1450,1490490027,1),(1450,1509238827,2),(1450,1521939627,1),(1450,1540688427,2),(1450,1553994027,1),(1450,1572138027,2),(1450,1585443627,1),(1450,1603587627,2),(1450,1616893227,1),(1450,1635642027,2),(1450,1648342827,1),(1450,1667091627,2),(1450,1679792427,1),(1450,1698541227,2),(1450,1711846827,1),(1450,1729990827,2),(1450,1743296427,1),(1450,1761440427,2),(1450,1774746027,1),(1450,1792890027,2),(1450,1806195627,1),(1450,1824944427,2),(1450,1837645227,1),(1450,1856394027,2),(1450,1869094827,1),(1450,1887843627,2),(1450,1901149227,1),(1450,1919293227,2),(1450,1932598827,1),(1450,1950742827,2),(1450,1964048427,1),(1450,1982797227,2),(1450,1995498027,1),(1450,2014246827,2),(1450,2026947627,1),(1450,2045696427,2),(1450,2058397227,1),(1450,2077146027,2),(1450,2090451627,1),(1450,2108595627,2),(1450,2121901227,1),(1450,2140045227,2),(1451,-2147483648,0),(1451,-380073600,1),(1452,-2147483648,2),(1452,-1691884800,1),(1452,-1680573600,2),(1452,-927511200,1),(1452,-857257200,3),(1452,-844556400,4),(1452,-828226800,3),(1452,-812502000,4),(1452,-796777200,3),(1452,-781052400,4),(1452,-765327600,3),(1452,-340844400,4),(1452,-324514800,3),(1452,-308790000,4),(1452,-293065200,3),(1452,-277340400,4),(1452,-261615600,3),(1452,-245890800,4),(1452,-230166000,3),(1452,-214441200,4),(1452,-198716400,3),(1452,-182991600,4),(1452,-166662000,3),(1452,-147913200,4),(1452,-135212400,3),(1452,315529208,2),(1452,323830809,5),(1452,338950809,6),(1452,354675609,5),(1452,370400410,6),(1452,386125210,5),(1452,401850011,6),(1452,417574811,5),(1452,433299612,6),(1452,449024412,5),(1452,465354012,6),(1452,481078812,5),(1452,496803613,6),(1452,512528413,5),(1452,528253213,6),(1452,543978013,5),(1452,559702813,6),(1452,575427614,5),(1452,591152414,6),(1452,606877214,5),(1452,622602014,6),(1452,638326815,5),(1452,654656415,6),(1452,670381216,5),(1452,686106016,6),(1452,701830816,5),(1452,717555617,6),(1452,733280417,5),(1452,749005218,6),(1452,764730018,5),(1452,780454819,6),(1452,796179619,5),(1452,811904419,6),(1452,828234020,5),(1452,846378020,6),(1452,859683620,5),(1452,877827621,6),(1452,891133221,5),(1452,909277221,6),(1452,922582822,5),(1452,941331622,6),(1452,954032422,5),(1452,972781222,6),(1452,985482022,5),(1452,1004230822,6),(1452,1017536422,5),(1452,1035680422,6),(1452,1048986022,5),(1452,1067130022,6),(1452,1080435622,5),(1452,1099184422,6),(1452,1111885222,5),(1452,1130634022,6),(1452,1143334823,5),(1452,1162083623,6),(1452,1174784423,5),(1452,1193533223,6),(1452,1206838823,5),(1452,1224982823,6),(1452,1238288424,5),(1452,1256432424,6),(1452,1269738024,5),(1452,1288486824,6),(1452,1301187624,5),(1452,1319936424,6),(1452,1332637224,5),(1452,1351386025,6),(1452,1364691625,5),(1452,1382835625,6),(1452,1396141225,5),(1452,1414285225,6),(1452,1427590825,5),(1452,1445734826,6),(1452,1459040426,5),(1452,1477789226,6),(1452,1490490027,5),(1452,1509238827,6),(1452,1521939627,5),(1452,1540688427,6),(1452,1553994027,5),(1452,1572138027,6),(1452,1585443627,5),(1452,1603587627,6),(1452,1616893227,5),(1452,1635642027,6),(1452,1648342827,5),(1452,1667091627,6),(1452,1679792427,5),(1452,1698541227,6),(1452,1711846827,5),(1452,1729990827,6),(1452,1743296427,5),(1452,1761440427,6),(1452,1774746027,5),(1452,1792890027,6),(1452,1806195627,5),(1452,1824944427,6),(1452,1837645227,5),(1452,1856394027,6),(1452,1869094827,5),(1452,1887843627,6),(1452,1901149227,5),(1452,1919293227,6),(1452,1932598827,5),(1452,1950742827,6),(1452,1964048427,5),(1452,1982797227,6),(1452,1995498027,5),(1452,2014246827,6),(1452,2026947627,5),(1452,2045696427,6),(1452,2058397227,5),(1452,2077146027,6),(1452,2090451627,5),(1452,2108595627,6),(1452,2121901227,5),(1452,2140045227,6),(1453,-2147483648,0),(1453,-719636812,1),(1454,-2147483648,0),(1454,-1441170468,1),(1454,-1247547600,3),(1454,354909609,2),(1454,370717210,3),(1454,386445610,2),(1454,402253211,3),(1454,417981611,2),(1454,433789212,3),(1454,449604012,2),(1454,465336012,4),(1454,481060812,5),(1454,496785613,4),(1454,512510413,5),(1454,528235213,4),(1454,543960013,5),(1454,559684813,4),(1454,575409614,5),(1454,591134414,4),(1454,606859214,5),(1454,622584014,4),(1454,638308815,5),(1454,654638415,4),(1454,670363216,6),(1454,686091616,7),(1454,695768416,4),(1454,701812816,5),(1454,717537617,4),(1454,733262417,5),(1454,748987218,4),(1454,764712018,5),(1454,780436819,4),(1454,796161619,5),(1454,811886419,4),(1454,828216020,5),(1454,846360020,4),(1454,859665620,5),(1454,877809621,4),(1454,891115221,5),(1454,909259221,4),(1454,922564822,5),(1454,941313622,4),(1454,954014422,5),(1454,972763222,4),(1454,985464022,5),(1454,1004212822,4),(1454,1017518422,5),(1454,1035662422,4),(1454,1048968022,5),(1454,1067112022,4),(1454,1080417622,5),(1454,1099166422,4),(1455,-2147483648,0),(1455,-1230776624,2),(1455,108165602,1),(1455,118270802,2),(1455,136591203,1),(1455,149806803,2),(1455,168127204,1),(1455,181342804,2),(1455,199749605,1),(1455,215643605,2),(1455,231285606,1),(1455,244501206,2),(1455,262735207,1),(1455,275950807,2),(1455,481154412,1),(1455,496962013,2),(1455,512949613,1),(1455,528670813,2),(1455,544399213,1),(1455,560120413,2),(1455,575848814,1),(1455,592174814,2),(1455,610581614,1),(1455,623624414,2),(1455,641167215,1),(1455,655074015,2),(1455,671839216,1),(1455,685918816,2),(1455,702856816,1),(1455,717973217,2),(1455,733701617,1),(1455,749422818,2),(1455,765151218,1),(1455,779662819,2),(1455,797205619,1),(1455,811116019,3),(1455,828655220,1),(1455,843170420,3),(1455,860104820,1),(1455,874620021,3),(1455,891554421,1),(1455,906069621,3),(1455,930780022,4),(1455,938124022,3),(1455,954367222,4),(1455,970178422,3),(1455,985816822,4),(1455,1001628022,3),(1455,1017352822,1),(1455,1033077622,3),(1455,1048802422,1),(1455,1066946422,3),(1455,1080252022,1),(1455,1097791222,3),(1455,1112306422,1),(1455,1128031222,3),(1455,1143756023,1),(1455,1161900023,3),(1455,1175205623,1),(1455,1193349623,3),(1455,1206655223,1),(1455,1225404023,3),(1455,1238104824,1),(1455,1256853624,3),(1455,1269554424,1),(1455,1288303224,3),(1455,1301608824,1),(1455,1319752824,3),(1455,1333058424,1),(1455,1387486825,2),(1455,1395957625,1),(1455,1414706425,3),(1455,1427407225,1),(1455,1446156026,3),(1455,1459461626,1),(1455,1477605626,3),(1455,1490911227,1),(1455,1509055227,3),(1455,1522360827,1),(1455,1540504827,3),(1455,1553810427,1),(1455,1571954427,3),(1455,1585260027,1),(1455,1604008827,3),(1455,1616709627,1),(1455,1635458427,3),(1455,1648764027,1),(1455,1666908027,3),(1455,1680213627,1),(1455,1698357627,3),(1455,1711663227,1),(1455,1729807227,3),(1455,1743112827,1),(1455,1761861627,3),(1455,1774562427,1),(1455,1793311227,3),(1455,1806012027,1),(1455,1824760827,3),(1455,1838066427,1),(1455,1856210427,3),(1455,1869516027,1),(1455,1887660027,3),(1455,1900965627,1),(1455,1919109627,3),(1455,1932415227,1),(1455,1951164027,3),(1455,1963864827,1),(1455,1982613627,3),(1455,1995919227,1),(1455,2014063227,3),(1455,2027368827,1),(1455,2045512827,3),(1455,2058818427,1),(1455,2076962427,3),(1455,2090268027,1),(1455,2109016827,3),(1455,2121717627,1),(1455,2140466427,3),(1456,-2147483648,0),(1456,-1441194596,1),(1456,-1247572800,3),(1456,354884409,2),(1456,370692010,3),(1456,386420410,4),(1456,402231611,1),(1456,417960011,4),(1456,433767612,1),(1456,449582412,4),(1456,465314412,5),(1456,481039212,6),(1456,496764013,5),(1456,512488813,6),(1456,528213613,5),(1456,543938413,6),(1456,559663213,5),(1456,575388014,6),(1456,591112814,5),(1456,606837614,6),(1456,622562414,5),(1456,638287215,6),(1456,654616815,5),(1456,670341616,7),(1456,686070016,8),(1456,695746816,5),(1456,701791216,6),(1456,717516017,5),(1456,733240817,6),(1456,748965618,5),(1456,764690418,6),(1456,780415219,5),(1456,796140019,6),(1456,811864819,5),(1456,828194420,6),(1456,846338420,5),(1456,859644020,6),(1456,877788021,5),(1456,891093621,6),(1456,909237621,5),(1456,922543222,6),(1456,941292022,5),(1456,953992822,6),(1456,972741622,5),(1456,985442422,6),(1456,1004191222,5),(1456,1017496822,6),(1456,1035640822,5),(1456,1048946422,6),(1456,1067090422,5),(1456,1080396022,6),(1456,1099144822,5),(1456,1111845622,6),(1456,1130594422,5),(1456,1143295223,6),(1456,1162044023,5),(1456,1174744823,6),(1456,1193493623,5),(1456,1206799223,6),(1456,1224943223,5),(1456,1238248824,6),(1456,1256392824,5),(1456,1269698424,7),(1456,1288450824,8),(1456,1301151624,5),(1457,-2147483648,0),(1457,-1441164064,1),(1457,-1247544000,2),(1457,370724410,3),(1457,386445610,4),(1457,402256811,2),(1457,417985211,4),(1457,433792812,2),(1457,449607612,4),(1457,465339612,5),(1457,481064412,6),(1457,496789213,5),(1457,512514013,6),(1457,528238813,5),(1457,543963613,6),(1457,559688413,5),(1457,575413214,6),(1457,591138014,5),(1457,606862814,6),(1457,622587614,5),(1457,638312415,6),(1457,654642015,5),(1457,670366816,7),(1457,686095216,8),(1457,695772016,5),(1457,701816416,6),(1457,717541217,5),(1457,733266017,6),(1457,748990818,5),(1457,764715618,6),(1457,780440419,8),(1457,796168819,7),(1457,811893619,8),(1457,828223220,7),(1457,846367220,8),(1457,859672820,7),(1457,877816821,8),(1457,891122421,7),(1457,909266421,8),(1457,922572022,7),(1457,941320822,8),(1457,954021622,7),(1457,972770422,8),(1457,985471222,7),(1457,1004220022,8),(1457,1017525622,7),(1457,1035669622,8),(1457,1048975222,7),(1457,1067119222,8),(1457,1080424822,7),(1457,1099173622,5),(1458,-2147483648,0),(1458,-1441165720,1),(1458,-1247544000,2),(1458,354913209,3),(1458,370720810,4),(1458,386445610,3),(1458,402256811,2),(1458,417985211,3),(1458,433792812,2),(1458,449607612,3),(1458,465339612,5),(1458,481064412,6),(1458,496789213,5),(1458,512514013,6),(1458,528238813,5),(1458,543963613,6),(1458,559688413,5),(1458,575413214,6),(1458,591138014,5),(1458,606862814,6),(1458,622587614,5),(1458,638312415,6),(1458,654642015,5),(1458,670366816,7),(1458,686095216,8),(1458,695772016,5),(1458,701816416,6),(1458,717541217,5),(1458,733266017,6),(1458,748990818,5),(1458,764715618,6),(1458,780440419,5),(1458,796165219,6),(1458,811890019,5),(1458,828219620,6),(1458,846363620,5),(1458,859669220,6),(1458,877813221,5),(1458,891118821,6),(1458,909262821,5),(1458,922568422,6),(1458,941317222,5),(1458,954018022,6),(1458,972766822,5),(1458,985467622,6),(1458,1004216422,5),(1458,1017522022,6),(1458,1035666022,5),(1458,1048971622,6),(1458,1067115622,5),(1458,1080421222,6),(1458,1099170022,5),(1459,-2147483648,0),(1459,-1441166012,1),(1459,-1247544000,3),(1459,354913209,2),(1459,370720810,3),(1459,386449210,2),(1459,402256811,3),(1459,417985211,2),(1459,433792812,3),(1459,449607612,2),(1459,465339612,4),(1459,481064412,5),(1459,496789213,4),(1459,512514013,5),(1459,528238813,4),(1459,543963613,5),(1459,559688413,4),(1459,575413214,5),(1459,591138014,4),(1459,606862814,5),(1459,622587614,4),(1459,638312415,5),(1459,654642015,4),(1459,670366816,6),(1459,686095216,7),(1459,695772016,3),(1460,-2147483648,0),(1460,-1441166012,1),(1460,-1247544000,3),(1460,354913209,2),(1460,370720810,3),(1460,386449210,2),(1460,402256811,3),(1460,417985211,2),(1460,433792812,3),(1460,449607612,2),(1460,465339612,4),(1460,481064412,5),(1460,496789213,4),(1460,512514013,5),(1460,528238813,4),(1460,543963613,5),(1460,559688413,4),(1460,575413214,5),(1460,591138014,4),(1460,606862814,5),(1460,622587614,4),(1460,638312415,5),(1460,654642015,4),(1460,670366816,6),(1460,686095216,7),(1460,695772016,3),(1461,-2147483648,0),(1461,-1441164464,1),(1461,-1247540400,2),(1461,370724410,3),(1461,386445610,4),(1461,402256811,2),(1461,417985211,4),(1461,433792812,2),(1461,449607612,4),(1461,465339612,5),(1461,481064412,6),(1461,496789213,5),(1461,512514013,6),(1461,528238813,5),(1461,543963613,6),(1461,559688413,5),(1461,575413214,6),(1461,591138014,5),(1461,606862814,6),(1461,622587614,5),(1461,638312415,6),(1461,654642015,5),(1461,670366816,7),(1461,686095216,8),(1461,695772016,5),(1461,701816416,6),(1461,717541217,5),(1461,733266017,6),(1461,748990818,5),(1461,764715618,6),(1461,780440419,5),(1461,796165219,6),(1461,811890019,5),(1461,828219620,6),(1461,846363620,5),(1461,859669220,6),(1461,877813221,5),(1461,891118821,6),(1461,909262821,5),(1461,922568422,7),(1461,941320822,8),(1461,954021622,7),(1461,972770422,8),(1461,985471222,7),(1461,1004220022,8),(1461,1017525622,7),(1461,1035669622,8),(1461,1048975222,7),(1461,1067119222,8),(1461,1080424822,7),(1461,1099173622,5),(1462,-2147483648,1),(1462,-1641005856,2),(1462,389048410,3),(1462,402264011,2),(1462,417906011,3),(1462,433800012,2),(1462,449614812,3),(1462,465422412,2),(1462,481150812,3),(1462,496792813,4),(1462,512517613,5),(1462,528242413,4),(1462,543967213,5),(1462,559692013,4),(1462,575416814,5),(1462,591141614,4),(1462,606866414,5),(1462,622591214,4),(1462,638316015,5),(1462,654645615,4),(1462,670464016,5),(1462,686275216,4),(1462,702086416,5),(1462,717897617,4),(1462,733622417,5),(1462,749433618,4),(1462,765158418,5),(1462,780969619,4),(1462,796694419,5),(1462,812505619,4),(1462,828316820,5),(1462,844128020,4),(1462,859852820,5),(1462,875664021,4),(1462,891388821,5),(1462,907200021,4),(1462,922924822,5),(1462,938736022,4),(1462,954547222,5),(1462,970358422,4),(1462,986083222,5),(1462,1001894422,4),(1462,1017619222,5),(1462,1033430422,4),(1462,1049155222,5),(1462,1064966422,4),(1462,1080777622,5),(1462,1096588822,4),(1462,1112313622,5),(1462,1128124822,4),(1462,1143849623,5),(1462,1159660823,4),(1462,1175385623,5),(1462,1191196823,4),(1463,-2147483648,0),(1463,-1577935568,1),(1463,76190400,2),(1464,-2147483648,0),(1464,-1441163964,1),(1464,-405140400,3),(1464,354916809,2),(1464,370724410,3),(1464,386452810,2),(1464,402260411,3),(1464,417988811,2),(1464,433796412,3),(1464,449611212,2),(1464,465343212,4),(1464,481068012,5),(1464,496792813,4),(1464,512517613,5),(1464,528242413,4),(1464,543967213,5),(1464,559692013,4),(1464,575416814,5),(1464,591141614,4),(1464,606866414,5),(1464,622591214,4),(1464,638316015,5),(1464,654645615,4),(1464,670370416,6),(1464,686098816,7),(1464,701823616,6),(1464,717548417,4),(1464,820440019,3),(1464,828234020,8),(1464,846378020,9),(1464,852062420,3),(1464,859680020,2),(1464,877824021,3),(1464,891129621,2),(1464,909273621,3),(1464,922579222,2),(1464,941328022,3),(1464,954028822,2),(1464,972777622,3),(1464,985478422,2),(1464,1004227222,3),(1464,1017532822,2),(1464,1035676822,3),(1464,1048982422,2),(1464,1067126422,3),(1464,1080432022,2),(1464,1099180822,3),(1464,1111881622,2),(1464,1130630422,3),(1464,1143331223,2),(1464,1162080023,3),(1464,1174780823,2),(1464,1193529623,3),(1464,1206835223,2),(1464,1224979223,3),(1464,1238284824,2),(1464,1256428824,3),(1464,1269734424,2),(1464,1288483224,3),(1464,1301184024,2),(1464,1319932824,3),(1464,1332633624,2),(1464,1351382425,3),(1464,1364688025,2),(1464,1382832025,3),(1464,1396137625,2),(1464,1414281625,3),(1464,1427587225,2),(1464,1445731226,3),(1465,-2147483648,1),(1465,-1570084924,2),(1466,-2147483648,0),(1466,-1579844100,1),(1466,-1247551200,3),(1466,354906009,2),(1466,370713610,3),(1466,386442010,2),(1466,402249611,3),(1466,417978011,2),(1466,433785612,3),(1466,449600412,2),(1466,465332412,4),(1466,481057212,5),(1466,496782013,4),(1466,512506813,5),(1466,528231613,4),(1466,543956413,5),(1466,559681213,4),(1466,575406014,5),(1466,591130814,4),(1466,606855614,5),(1466,622580414,4),(1466,638305215,5),(1466,654634815,4),(1466,670359616,6),(1466,686088016,7),(1466,695764816,4),(1466,701809216,5),(1466,717534017,4),(1466,733258817,5),(1466,748983618,4),(1466,764708418,5),(1466,780433219,4),(1466,796158019,5),(1466,801590419,8),(1466,811886419,7),(1466,828216020,6),(1466,846360020,7),(1466,859665620,6),(1466,877809621,7),(1466,891115221,6),(1466,909259221,7),(1466,922564822,6),(1466,941313622,7),(1466,954014422,6),(1466,972763222,7),(1466,985464022,6),(1466,1004212822,7),(1466,1017518422,6),(1466,1035662422,7),(1466,1048968022,6),(1466,1067112022,7),(1466,1080417622,6),(1466,1099166422,7),(1466,1111867222,6),(1466,1130616022,7),(1466,1143316823,6),(1466,1162065623,7),(1466,1174766423,6),(1466,1193515223,7),(1466,1206820823,6),(1466,1224964823,7),(1466,1238270424,6),(1466,1256414424,7),(1466,1269720024,6),(1466,1288468824,7),(1466,1301169624,4),(1466,1414263625,7),(1466,1459022426,4),(1467,-2147483648,2),(1467,-1570413600,1),(1467,-1552186800,2),(1467,-1538359200,1),(1467,-1522551600,2),(1467,-1507514400,1),(1467,-1490583600,2),(1467,-1473645600,1),(1467,-1460948400,2),(1467,-399866400,1),(1467,-386650800,2),(1467,-368330400,1),(1467,-355114800,2),(1467,-336794400,1),(1467,-323578800,2),(1467,-305172000,1),(1467,-291956400,2),(1467,-273636000,1),(1467,-260420400,2),(1467,78012000,1),(1467,86734801,2),(1467,105055202,1),(1467,118270802,2),(1467,136591203,1),(1467,149806803,2),(1467,168127204,1),(1467,181342804,2),(1467,199749605,1),(1467,212965205,2),(1467,231285606,1),(1467,244501206,2),(1467,262735207,1),(1467,275950807,2),(1467,452210412,1),(1467,466722012,2),(1467,483746412,1),(1467,498258013,2),(1467,515282413,1),(1467,529794013,2),(1467,546818413,1),(1467,561330013,2),(1467,581119214,1),(1467,592952414,2),(1467,610754414,1),(1467,624488414,2),(1467,641512815,1),(1467,656024415,2),(1467,673048816,1),(1467,687560416,2),(1467,704671216,1),(1467,718146017,2),(1467,733269617,1),(1467,748990818,2),(1467,764719218,1),(1467,780440419,2),(1467,796168819,1),(1467,811890019,2),(1467,828223220,1),(1467,843944420,2),(1467,859672820,1),(1467,875394021,2),(1467,891122421,1),(1467,906843621,2),(1467,922572022,1),(1467,941317222,2),(1467,954021622,1),(1467,972766822,2),(1467,985471222,1),(1467,1004216422,2),(1467,1017525622,1),(1467,1035666022,2),(1467,1048975222,1),(1467,1067115622,2),(1467,1080424822,1),(1467,1099170022,2),(1467,1111874422,1),(1467,1130619622,2),(1467,1143324023,1),(1467,1162069223,2),(1467,1174773623,1),(1467,1193518823,2),(1467,1206828023,1),(1467,1224968423,2),(1467,1238277624,1),(1467,1256418024,2),(1467,1269727224,1),(1467,1288472424,2),(1467,1301176824,1),(1467,1319922024,2),(1467,1332626424,1),(1467,1351371625,2),(1467,1364680825,1),(1467,1382821225,2),(1467,1396130425,1),(1467,1414270825,2),(1467,1427580025,1),(1467,1445720426,2),(1467,1459029626,1),(1467,1477774826,2),(1467,1490479227,1),(1467,1509224427,2),(1467,1521928827,1),(1467,1540674027,2),(1467,1553983227,1),(1467,1572123627,2),(1467,1585432827,1),(1467,1603573227,2),(1467,1616882427,1),(1467,1635627627,2),(1467,1648332027,1),(1467,1667077227,2),(1467,1679781627,1),(1467,1698526827,2),(1467,1711836027,1),(1467,1729976427,2),(1467,1743285627,1),(1467,1761426027,2),(1467,1774735227,1),(1467,1792875627,2),(1467,1806184827,1),(1467,1824930027,2),(1467,1837634427,1),(1467,1856379627,2),(1467,1869084027,1),(1467,1887829227,2),(1467,1901138427,1),(1467,1919278827,2),(1467,1932588027,1),(1467,1950728427,2),(1467,1964037627,1),(1467,1982782827,2),(1467,1995487227,1),(1467,2014232427,2),(1467,2026936827,1),(1467,2045682027,2),(1467,2058386427,1),(1467,2077131627,2),(1467,2090440827,1),(1467,2108581227,2),(1467,2121890427,1),(1467,2140030827,2),(1468,-2147483648,0),(1468,-1441169904,1),(1468,-1247547600,3),(1468,354909609,2),(1468,370717210,3),(1468,386445610,2),(1468,402253211,3),(1468,417981611,2),(1468,433789212,3),(1468,449604012,2),(1468,465336012,4),(1468,481060812,5),(1468,496785613,4),(1468,512510413,5),(1468,528235213,4),(1468,543960013,5),(1468,559684813,4),(1468,575409614,5),(1468,591134414,4),(1468,606859214,5),(1468,622584014,4),(1468,638308815,5),(1468,654638415,4),(1468,670363216,6),(1468,683582416,1),(1468,703018816,6),(1468,717530417,1),(1468,734468417,6),(1468,748980018,1),(1468,765918018,6),(1468,780429619,1),(1468,797367619,6),(1468,811879219,1),(1468,828817220,6),(1468,843933620,1),(1468,859671020,7),(1468,877811421,1),(1468,891120621,7),(1468,909261021,1),(1468,922570222,7),(1468,941315422,1),(1468,954019822,7),(1468,972765022,1),(1468,985469422,7),(1468,1004214622,1),(1468,1017523822,7),(1468,1035664222,1),(1468,1048973422,7),(1468,1067113822,1),(1468,1080423022,7),(1468,1099168222,1),(1468,1111872622,7),(1468,1123783222,3),(1469,-2147483648,0),(1469,-1383464380,1),(1469,-1167636600,2),(1470,-2147483648,1),(1470,-2019705670,2),(1470,-891581400,3),(1470,-872058600,2),(1470,-862637400,3),(1470,-764145000,2),(1471,-2147483648,0),(1471,-1579419232,1),(1471,-1247558400,3),(1471,354898809,2),(1471,370706410,3),(1471,386434810,2),(1471,402242411,3),(1471,417970811,2),(1471,433778412,3),(1471,449593212,2),(1471,465325212,4),(1471,481050012,5),(1471,496774813,4),(1471,512499613,5),(1471,528224413,4),(1471,543949213,5),(1471,559674013,4),(1471,575398814,5),(1471,591123614,4),(1471,606848414,5),(1471,622573214,4),(1471,638298015,5),(1471,654627615,4),(1471,670352416,6),(1471,686080816,7),(1471,695757616,4),(1471,701802016,5),(1471,717526817,4),(1471,733251617,5),(1471,748976418,4),(1471,764701218,5),(1471,780426019,4),(1471,796150819,5),(1471,811875619,4),(1471,828205220,5),(1471,846349220,4),(1471,859654820,5),(1471,877798821,4),(1471,891104421,5),(1471,909248421,4),(1471,922554022,5),(1471,941302822,4),(1471,954003622,5),(1471,972752422,4),(1471,985453222,5),(1471,1004202022,4),(1471,1017507622,5),(1471,1035651622,4),(1471,1048957222,5),(1471,1067101222,4),(1471,1080406822,5),(1471,1099155622,4),(1471,1111856422,5),(1471,1130605222,4),(1471,1143306023,5),(1471,1162054823,4),(1471,1174755623,5),(1471,1193504423,4),(1471,1206810023,5),(1471,1224954023,4),(1471,1238259624,5),(1471,1256403624,4),(1471,1269709224,5),(1471,1288458024,4),(1471,1301158824,8),(1471,1414252825,7),(1471,1459015226,3),(1472,-2147483648,0),(1472,-2032933080,1),(1472,252435606,2),(1472,417974411,4),(1472,433778412,3),(1472,449593212,4),(1472,465314412,3),(1472,481042812,4),(1472,496764013,3),(1472,512492413,4),(1472,528213613,3),(1472,543942013,4),(1472,559663213,3),(1472,575391614,4),(1472,591112814,3),(1472,606841214,4),(1472,622562414,3),(1472,638290815,4),(1472,654616815,3),(1472,670345216,4),(1472,686066416,3),(1472,701794816,4),(1472,717516017,3),(1472,733244417,4),(1472,748965618,3),(1472,764694018,4),(1472,780415219,3),(1472,796143619,4),(1472,811864819,3),(1472,828198020,4),(1472,843919220,3),(1472,859647620,4),(1472,875368821,3),(1472,891097221,4),(1472,906818421,3),(1472,988390822,4),(1472,1001692822,3),(1472,1017421222,4),(1472,1033142422,3),(1472,1048870822,4),(1472,1064592022,3),(1472,1080320422,4),(1472,1096041622,3),(1472,1111770022,4),(1472,1127491222,3),(1472,1143219623,4),(1472,1159545623,3),(1472,1206889223,2),(1472,1427479225,5),(1472,1443193226,2),(1472,1458928826,5),(1472,1474642826,2),(1473,-2147483648,2),(1473,-1600675200,1),(1473,-1585904400,2),(1473,-933667200,1),(1473,-922093200,2),(1473,-908870400,1),(1473,-888829200,2),(1473,-881049600,1),(1473,-767869200,2),(1473,-745833600,1),(1473,-733827600,2),(1473,-716889600,1),(1473,-699613200,2),(1473,-683884800,1),(1473,-670669200,2),(1473,-652348800,1),(1473,-650019600,2),(1473,515527213,1),(1473,527014813,2),(1473,545162413,1),(1473,558464413,2),(1473,577216814,1),(1473,589914014,2),(1473,608666414,1),(1473,621968414,2),(1473,640116015,1),(1473,653418015,2),(1473,671565616,1),(1473,684867616,2),(1474,-2147483648,2),(1474,-1600675200,1),(1474,-1585904400,2),(1474,-933667200,1),(1474,-922093200,2),(1474,-908870400,1),(1474,-888829200,2),(1474,-881049600,1),(1474,-767869200,2),(1474,-745833600,1),(1474,-733827600,2),(1474,-716889600,1),(1474,-699613200,2),(1474,-683884800,1),(1474,-670669200,2),(1474,-652348800,1),(1474,-650019600,2),(1474,515527213,1),(1474,527014813,2),(1474,545162413,1),(1474,558464413,2),(1474,577216814,1),(1474,589914014,2),(1474,608666414,1),(1474,621968414,2),(1474,640116015,1),(1474,653418015,2),(1474,671565616,1),(1474,684867616,2),(1475,-2147483648,1),(1475,-2019705572,2),(1475,-883287000,3),(1475,-862639200,4),(1475,-764051400,2),(1475,832962620,5),(1475,846266420,6),(1475,1145039423,2),(1476,-2147483648,1),(1476,-891582800,2),(1476,-872058600,3),(1476,-862637400,2),(1476,-576138600,4),(1476,1245430824,5),(1476,1262278824,4),(1477,-2147483648,0),(1477,-1577931912,2),(1477,-1568592000,1),(1477,-1554080400,2),(1477,-1537142400,1),(1477,-1522630800,2),(1477,-1505692800,1),(1477,-1491181200,2),(1477,-1474243200,1),(1477,-1459126800,2),(1477,-242265600,1),(1477,-228877200,2),(1477,-210556800,1),(1477,-197427600,2),(1477,-178934400,1),(1477,-165718800,2),(1477,-147398400,1),(1477,-134269200,2),(1477,-116467200,1),(1477,-102646800,2),(1477,-84326400,1),(1477,-71110800,2),(1477,-52704000,1),(1477,-39488400,2),(1477,-21168000,1),(1477,-7952400,2),(1477,10368000,1),(1477,23583600,2),(1477,41904000,1),(1477,55119600,2),(1477,73526400,1),(1477,86742001,2),(1477,105062402,1),(1477,118278002,2),(1477,136598403,1),(1477,149814003,2),(1477,168134404,1),(1477,181350004,2),(1477,199756805,1),(1477,212972405,2),(1477,231292806,1),(1477,241916406,2),(1477,262828807,1),(1477,273452407,2),(1477,418694411,1),(1477,433810812,2),(1477,450316812,1),(1477,465433212,2),(1477,508896013,1),(1477,529196413,2),(1477,541555213,1),(1477,562633213,2),(1477,574387214,1),(1477,594255614,2),(1477,607305614,1),(1477,623199614,2),(1477,638928015,1),(1477,654649215,2),(1477,670456816,1),(1477,686264416,2),(1477,702684016,1),(1477,717886817,2),(1477,733096817,1),(1477,748904418,2),(1477,765151218,1),(1477,780958819,2),(1477,796687219,1),(1477,812494819,2),(1477,828309620,1),(1477,844117220,2),(1477,859759220,1),(1477,875653221,2),(1477,891208821,1),(1477,907189221,2),(1477,922917622,1),(1477,938725222,2),(1477,954540022,1),(1477,970347622,2),(1477,986076022,1),(1477,1001883622,2),(1477,1017612022,1),(1477,1033419622,2),(1477,1049148022,1),(1477,1064955622,2),(1477,1080770422,1),(1477,1096578022,2),(1477,1112306422,1),(1477,1128114022,2),(1477,1143842423,1),(1477,1158872423,2),(1477,1175205623,1),(1477,1193950823,2),(1477,1207260023,1),(1477,1225486823,2),(1477,1238104824,1),(1477,1256850024,2),(1477,1270159224,1),(1477,1288299624,2),(1477,1301608824,1),(1477,1319749224,2),(1477,1333058424,1),(1477,1351198825,2),(1477,1364508025,1),(1477,1382648425,2),(1477,1395957625,1),(1477,1414702825,2),(1477,1427407225,1),(1477,1446152426,2),(1477,1458856826,1),(1477,1477602026,2),(1477,1490911227,1),(1477,1509051627,2),(1477,1522360827,1),(1477,1540501227,2),(1477,1553810427,1),(1477,1571950827,2),(1477,1585260027,1),(1477,1604005227,2),(1477,1616709627,1),(1477,1635454827,2),(1477,1648159227,1),(1477,1666904427,2),(1477,1680213627,1),(1477,1698354027,2),(1477,1711663227,1),(1477,1729803627,2),(1477,1743112827,1),(1477,1761858027,2),(1477,1774562427,1),(1477,1793307627,2),(1477,1806012027,1),(1477,1824757227,2),(1477,1838066427,1),(1477,1856206827,2),(1477,1869516027,1),(1477,1887656427,2),(1477,1900965627,1),(1477,1919106027,2),(1477,1932415227,1),(1477,1951160427,2),(1477,1963864827,1),(1477,1982610027,2),(1477,1995314427,1),(1477,2014059627,2),(1477,2027368827,1),(1477,2045509227,2),(1477,2058818427,1),(1477,2076958827,2),(1477,2090268027,1),(1477,2109013227,2),(1477,2121717627,1),(1477,2140462827,2),(1478,-2147483648,1),(1478,-891582800,2),(1478,-872058600,3),(1478,-862637400,2),(1478,-576138600,4),(1478,1245430824,5),(1478,1262278824,4),(1479,-2147483648,0),(1479,-1830414140,1),(1479,-879152400,2),(1479,199897205,1),(1479,969120022,2),(1480,-2147483648,0),(1480,-1577936472,1),(1481,-2147483648,0),(1481,-1441168512,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,684363616,7),(1482,-2147483648,0),(1482,-1518920148,2),(1482,166572004,1),(1482,182293204,2),(1482,200959205,1),(1482,213829205,2),(1482,228866406,1),(1482,243982806,2),(1482,260316007,1),(1482,276123607,2),(1482,291765608,1),(1482,307486808,2),(1482,323820009,1),(1482,338936409,2),(1482,354664809,1),(1482,370386010,2),(1482,386114410,1),(1482,401835611,2),(1482,417564011,1),(1482,433285212,2),(1482,449013612,1),(1482,465339612,2),(1482,481068012,1),(1482,496789213,2),(1482,512517613,1),(1482,528238813,2),(1482,543967213,1),(1482,559688413,2),(1482,575416814,1),(1482,591138014,2),(1482,606866414,1),(1482,622587614,2),(1482,638316015,1),(1482,654642015,2),(1482,670370416,1),(1482,686091616,2),(1482,701820016,1),(1482,717541217,2),(1482,733269617,1),(1482,748990818,2),(1482,764719218,1),(1482,780440419,2),(1482,796168819,1),(1482,811890019,2),(1482,828223220,1),(1482,843944420,2),(1482,859672820,1),(1482,875394021,2),(1482,891122421,1),(1482,909277221,3),(1482,922582822,4),(1482,941331622,3),(1482,954032422,4),(1482,972781222,3),(1482,985482022,4),(1482,1004230822,3),(1482,1017536422,4),(1482,1035680422,3),(1482,1048986022,4),(1482,1067130022,3),(1482,1080435622,4),(1482,1099184422,3),(1482,1111885222,4),(1482,1130634022,3),(1482,1143334823,4),(1482,1162083623,3),(1482,1174784423,4),(1482,1193533223,3),(1482,1206838823,4),(1482,1224982823,3),(1482,1238288424,4),(1482,1256432424,3),(1482,1269738024,4),(1482,1288486824,3),(1482,1301187624,4),(1482,1319936424,3),(1482,1332637224,4),(1482,1351386025,3),(1482,1364691625,4),(1482,1382835625,3),(1482,1396141225,4),(1482,1414285225,3),(1482,1427590825,4),(1482,1445734826,3),(1482,1459040426,4),(1482,1473282026,5),(1482,1509238827,3),(1482,1521939627,4),(1482,1540688427,3),(1482,1553994027,4),(1482,1572138027,3),(1482,1585443627,4),(1482,1603587627,3),(1482,1616893227,4),(1482,1635642027,3),(1482,1648342827,4),(1482,1667091627,3),(1482,1679792427,4),(1482,1698541227,3),(1482,1711846827,4),(1482,1729990827,3),(1482,1743296427,4),(1482,1761440427,3),(1482,1774746027,4),(1482,1792890027,3),(1482,1806195627,4),(1482,1824944427,3),(1482,1837645227,4),(1482,1856394027,3),(1482,1869094827,4),(1482,1887843627,3),(1482,1901149227,4),(1482,1919293227,3),(1482,1932598827,4),(1482,1950742827,3),(1482,1964048427,4),(1482,1982797227,3),(1482,1995498027,4),(1482,2014246827,3),(1482,2026947627,4),(1482,2045696427,3),(1482,2058397227,4),(1482,2077146027,3),(1482,2090451627,4),(1482,2108595627,3),(1482,2121901227,4),(1482,2140045227,3),(1483,-2147483648,3),(1483,-933638400,1),(1483,-923097600,2),(1483,-919036800,1),(1483,-857347200,2),(1483,-844300800,1),(1483,-825811200,2),(1483,-812678400,1),(1483,-794188800,2),(1483,-779846400,1),(1483,-762652800,2),(1483,-748310400,1),(1483,-731116800,2),(1483,-682653600,3),(1483,-399088800,4),(1483,-386650800,3),(1483,-368330400,4),(1483,-355114800,3),(1483,-336790800,4),(1483,-323654400,3),(1483,-305168400,4),(1483,-292032000,3),(1483,-273632400,4),(1483,-260496000,3),(1483,-242096400,4),(1483,-228960000,3),(1483,-210560400,4),(1483,-197424000,3),(1483,-178938000,4),(1483,-165801600,3),(1483,-147402000,4),(1483,-134265600,3),(1483,-115866000,4),(1483,-102643200,3),(1483,-84330000,4),(1483,-81313200,6),(1483,142380003,5),(1483,150843603,6),(1483,167176804,5),(1483,178664404,6),(1483,334101609,7),(1483,337730409,8),(1483,452642412,7),(1483,462319212,8),(1483,482277612,5),(1483,494370013,6),(1483,516751213,5),(1483,526424413,6),(1483,545436013,5),(1483,558478813,6),(1483,576626414,5),(1483,589323614,6),(1483,609890414,5),(1483,620773214,6),(1483,638316015,5),(1483,651618015,6),(1483,669765616,5),(1483,683672416,6),(1483,701820016,5),(1483,715726817,6),(1483,733701617,5),(1483,747176418,6),(1483,765151218,5),(1483,778021219,6),(1483,796600819,5),(1483,810075619,6),(1483,820447219,3),(1483,828655220,4),(1483,843170420,9),(1483,860104820,4),(1483,874620021,9),(1483,891554421,4),(1483,906069621,9),(1483,915141621,3),(1483,924213622,4),(1483,939934822,3),(1483,956268022,4),(1483,971989222,3),(1483,987717622,4),(1483,1003438822,3),(1483,1019167222,4),(1483,1034888422,3),(1483,1050616822,4),(1483,1066338022,3),(1483,1082066422,4),(1483,1096581622,3),(1483,1113516022,4),(1483,1128380422,3),(1483,1143842423,4),(1483,1158872423,3),(1483,1175378423,4),(1483,1189638023,3),(1483,1206655223,4),(1483,1219957223,3),(1483,1238104824,4),(1483,1252015224,3),(1483,1269640884,4),(1483,1281474024,3),(1483,1301608884,4),(1483,1312146024,3),(1483,1333058424,4),(1483,1348178425,3),(1483,1364508025,4),(1483,1380229225,3),(1483,1395957625,4),(1483,1414098025,3),(1483,1427493625,4),(1483,1445551226,3),(1483,1458946826,4),(1483,1477692026,3),(1483,1490396427,4),(1483,1509141627,3),(1483,1521846027,4),(1483,1540591227,3),(1483,1553810427,4),(1483,1572037227,3),(1483,1585346427,4),(1483,1603490427,3),(1483,1616796027,4),(1483,1635544827,3),(1483,1648245627,4),(1483,1666994427,3),(1483,1679695227,4),(1483,1698444027,3),(1483,1711749627,4),(1483,1729893627,3),(1483,1743199227,4),(1483,1761343227,3),(1483,1774648827,4),(1483,1792792827,3),(1483,1806098427,4),(1483,1824847227,3),(1483,1837548027,4),(1483,1856296827,3),(1483,1868997627,4),(1483,1887746427,3),(1483,1901052027,4),(1483,1919196027,3),(1483,1932501627,4),(1483,1950645627,3),(1483,1963951227,4),(1483,1982700027,3),(1483,1995400827,4),(1483,2014149627,3),(1483,2026850427,4),(1483,2045599227,3),(1483,2058300027,4),(1483,2077048827,3),(1483,2090354427,4),(1483,2108498427,3),(1483,2121804027,4),(1483,2139948027,3),(1484,-2147483648,2),(1484,-1600675200,1),(1484,-1585904400,2),(1484,-933667200,1),(1484,-922093200,2),(1484,-908870400,1),(1484,-888829200,2),(1484,-881049600,1),(1484,-767869200,2),(1484,-745833600,1),(1484,-733827600,2),(1484,-716889600,1),(1484,-699613200,2),(1484,-683884800,1),(1484,-670669200,2),(1484,-652348800,1),(1484,-650019600,2),(1484,515527213,1),(1484,527014813,2),(1484,545162413,1),(1484,558464413,2),(1484,577216814,1),(1484,589914014,2),(1484,608666414,1),(1484,621968414,2),(1484,640116015,1),(1484,653418015,2),(1484,671565616,1),(1484,684867616,2),(1485,-2147483648,3),(1485,-933638400,1),(1485,-923097600,2),(1485,-919036800,1),(1485,-857347200,2),(1485,-844300800,1),(1485,-825811200,2),(1485,-812678400,1),(1485,-794188800,2),(1485,-779846400,1),(1485,-762652800,2),(1485,-748310400,1),(1485,-731116800,2),(1485,-682653600,3),(1485,-399088800,4),(1485,-386650800,3),(1485,-368330400,4),(1485,-355114800,3),(1485,-336790800,4),(1485,-323654400,3),(1485,-305168400,4),(1485,-292032000,3),(1485,-273632400,4),(1485,-260496000,3),(1485,-242096400,4),(1485,-228960000,3),(1485,-210560400,4),(1485,-197424000,3),(1485,-178938000,4),(1485,-165801600,3),(1485,-147402000,4),(1485,-134265600,3),(1485,-115866000,4),(1485,-102643200,3),(1485,-84330000,4),(1485,-81313200,6),(1485,142380003,5),(1485,150843603,6),(1485,167176804,5),(1485,178664404,6),(1485,334101609,7),(1485,337730409,8),(1485,452642412,7),(1485,462319212,8),(1485,482277612,5),(1485,494370013,6),(1485,516751213,5),(1485,526424413,6),(1485,545436013,5),(1485,558478813,6),(1485,576626414,5),(1485,589323614,6),(1485,609890414,5),(1485,620773214,6),(1485,638316015,5),(1485,651618015,6),(1485,669765616,5),(1485,683672416,6),(1485,701820016,5),(1485,715726817,6),(1485,733701617,5),(1485,747176418,6),(1485,765151218,5),(1485,778021219,6),(1485,796600819,5),(1485,810075619,6),(1485,820447219,3),(1485,828655220,4),(1485,843170420,9),(1485,860104820,4),(1485,874620021,9),(1485,891554421,4),(1485,906069621,9),(1485,915141621,3),(1485,924213622,4),(1485,939934822,3),(1485,956268022,4),(1485,971989222,3),(1485,987717622,4),(1485,1003438822,3),(1485,1019167222,4),(1485,1034888422,3),(1485,1050616822,4),(1485,1066338022,3),(1485,1082066422,4),(1485,1096581622,3),(1485,1113516022,4),(1485,1128380422,3),(1485,1143842423,4),(1485,1158872423,3),(1485,1175378423,4),(1485,1189638023,3),(1485,1206655223,4),(1485,1220216423,3),(1485,1238104824,4),(1485,1252015224,3),(1485,1269554424,4),(1485,1281474024,3),(1485,1301608884,4),(1485,1312146024,3),(1485,1314655224,4),(1485,1317330024,3),(1485,1333058424,4),(1485,1348178425,3),(1485,1364508025,4),(1485,1380229225,3),(1485,1395957625,4),(1485,1414098025,3),(1485,1427493625,4),(1485,1445551226,3),(1485,1458946826,4),(1485,1477692026,3),(1485,1490396427,4),(1485,1509141627,3),(1485,1521846027,4),(1485,1540591227,3),(1485,1553810427,4),(1485,1572037227,3),(1485,1585346427,4),(1485,1603490427,3),(1485,1616796027,4),(1485,1635544827,3),(1485,1648245627,4),(1485,1666994427,3),(1485,1679695227,4),(1485,1698444027,3),(1485,1711749627,4),(1485,1729893627,3),(1485,1743199227,4),(1485,1761343227,3),(1485,1774648827,4),(1485,1792792827,3),(1485,1806098427,4),(1485,1824847227,3),(1485,1837548027,4),(1485,1856296827,3),(1485,1868997627,4),(1485,1887746427,3),(1485,1901052027,4),(1485,1919196027,3),(1485,1932501627,4),(1485,1950645627,3),(1485,1963951227,4),(1485,1982700027,3),(1485,1995400827,4),(1485,2014149627,3),(1485,2026850427,4),(1485,2045599227,3),(1485,2058300027,4),(1485,2077048827,3),(1485,2090354427,4),(1485,2108498427,3),(1485,2121804027,4),(1485,2139948027,3),(1486,-2147483648,0),(1486,-2004073600,1),(1486,-1851577590,2),(1486,-852105600,3),(1486,-782643600,4),(1486,-767869200,2),(1486,-718095600,3),(1486,-457776000,2),(1486,-315648000,3),(1486,171820804,2),(1487,-2147483648,0),(1487,-2056690800,1),(1487,-900910800,2),(1487,-891579600,3),(1487,-884248200,4),(1487,-761209200,1),(1487,-747907200,2),(1487,-728541000,5),(1487,-717049800,6),(1487,-697091400,5),(1487,-683785800,6),(1487,-668061000,5),(1487,-654755400,2),(1487,-636611400,5),(1487,-623305800,2),(1487,-605161800,5),(1487,-591856200,2),(1487,-573712200,5),(1487,-559801800,2),(1487,-541657800,5),(1487,-528352200,2),(1487,-510211800,1),(1487,-498112200,2),(1487,-478762200,1),(1487,-466662600,2),(1487,-446707800,1),(1487,-435213000,2),(1487,-415258200,1),(1487,-403158600,2),(1487,-383808600,1),(1487,-371709000,2),(1487,-352359000,1),(1487,-340259400,2),(1487,-320909400,1),(1487,-308809800,2),(1487,-288855000,1),(1487,-277360200,2),(1487,-257405400,1),(1487,-245910600,2),(1487,-225955800,1),(1487,-213856200,2),(1487,-194506200,1),(1487,-182406600,2),(1487,-163056600,1),(1487,-148537800,2),(1487,-132816600,1),(1487,-117088200,2),(1487,-101367000,1),(1487,-85638600,2),(1487,-69312600,1),(1487,-53584200,2),(1487,-37863000,1),(1487,-22134600,2),(1487,-6413400,1),(1487,9315000,2),(1487,25036200,1),(1487,40764600,2),(1487,56485800,1),(1487,72214200,2),(1487,88540201,1),(1487,104268602,2),(1487,119989802,1),(1487,126041402,2),(1487,151439403,1),(1487,167167804,2),(1487,182889004,1),(1487,198617405,2),(1487,214338605,1),(1487,295385408,2),(1487,309292208,1),(1488,-2147483648,0),(1488,-2032927596,1),(1488,252439206,3),(1488,417978011,2),(1488,433785612,3),(1488,449600412,2),(1488,465321612,3),(1488,481050012,2),(1488,496771213,3),(1488,512499613,2),(1488,528220813,3),(1488,543949213,2),(1488,559670413,3),(1488,575398814,2),(1488,591120014,3),(1488,606848414,2),(1488,622569614,3),(1488,638298015,2),(1488,654624015,3),(1488,670352416,2),(1488,686073616,3),(1488,701802016,2),(1488,717523217,3),(1488,733251617,2),(1488,748972818,3),(1488,764701218,2),(1488,780422419,3),(1488,796150819,2),(1488,811872019,3),(1488,828205220,2),(1488,843926420,3),(1488,859654820,2),(1488,875376021,3),(1488,891104421,2),(1488,906825621,3),(1488,988398022,2),(1488,1001700022,3),(1488,1017428422,2),(1488,1033149622,3),(1488,1048878022,2),(1488,1064599222,3),(1488,1080327622,2),(1488,1096048822,3),(1488,1111777222,2),(1488,1127498422,3),(1488,1143226823,2),(1488,1159552823,3),(1488,1427482825,2),(1488,1443196826,3),(1488,1458932426,2),(1488,1474646426,3),(1489,-2147483648,1),(1489,-1575874625,2),(1489,-1247554800,4),(1489,354902409,3),(1489,370710010,4),(1489,386438410,3),(1489,402246011,4),(1489,417974411,3),(1489,433782012,4),(1489,449596812,3),(1489,465328812,5),(1489,481053612,6),(1489,496778413,5),(1489,512503213,6),(1489,528228013,5),(1489,543952813,6),(1489,559677613,5),(1489,575402414,6),(1489,591127214,5),(1489,606852014,6),(1489,622576814,5),(1489,638301615,6),(1489,654631215,5),(1489,670356016,7),(1489,686084416,8),(1489,695761216,5),(1489,701805616,6),(1489,717530417,5),(1489,733255217,6),(1489,748980018,5),(1489,764704818,6),(1489,780429619,5),(1489,796154419,6),(1489,811879219,5),(1489,828208820,6),(1489,846352820,5),(1489,859658420,6),(1489,877802421,5),(1489,891108021,6),(1489,909252021,5),(1489,922557622,6),(1489,941306422,5),(1489,954007222,6),(1489,972756022,5),(1489,985456822,6),(1489,1004205622,5),(1489,1017511222,6),(1489,1035655222,5),(1489,1048960822,6),(1489,1067104822,5),(1489,1080410422,6),(1489,1099159222,5),(1489,1111860022,6),(1489,1130608822,5),(1489,1143309623,6),(1489,1162058423,5),(1489,1174759223,6),(1489,1193508023,5),(1489,1206813623,6),(1489,1224957623,5),(1489,1238263224,6),(1489,1256407224,5),(1489,1269712824,6),(1489,1288461624,5),(1489,1301162424,9),(1489,1414256425,5),(1490,-2147483648,1),(1490,-1869875816,3),(1490,-1693706400,2),(1490,-1680490800,3),(1490,-1570413600,2),(1490,-1552186800,3),(1490,-1538359200,2),(1490,-1522551600,3),(1490,-1507514400,2),(1490,-1490583600,3),(1490,-1440208800,2),(1490,-1428030000,3),(1490,-1409709600,2),(1490,-1396494000,3),(1490,-931053600,2),(1490,-922676400,3),(1490,-917834400,2),(1490,-892436400,3),(1490,-875844000,2),(1490,-764737200,3),(1490,-744343200,2),(1490,-733806000,3),(1490,-716436000,2),(1490,-701924400,3),(1490,-684986400,2),(1490,-670474800,3),(1490,-654141600,2),(1490,-639025200,3),(1490,-622087200,2),(1490,-606970800,3),(1490,-590032800,2),(1490,-575521200,3),(1490,-235620000,2),(1490,-194842800,3),(1490,-177732000,2),(1490,-165726000,3),(1490,107910002,2),(1490,121215602,3),(1490,133920003,2),(1490,152665203,3),(1490,164678404,2),(1490,184114804,3),(1490,196214405,2),(1490,215564405,3),(1490,228873606,2),(1490,245804406,3),(1490,260323207,2),(1490,267915607,4),(1490,428454012,5),(1490,433893612,4),(1490,468111612,3),(1490,482799612,6),(1490,496710013,7),(1490,512521213,6),(1490,528246013,7),(1490,543970813,6),(1490,559695613,7),(1490,575420414,6),(1490,591145214,7),(1490,606870014,6),(1490,622594814,7),(1490,638319615,6),(1490,654649215,7),(1490,670374016,6),(1490,686098816,7),(1490,701823616,6),(1490,717548417,7),(1490,733273217,6),(1490,748998018,7),(1490,764118018,6),(1490,780447619,7),(1490,796172419,6),(1490,811897219,7),(1490,828226820,6),(1490,846370820,7),(1490,859676420,6),(1490,877820421,7),(1490,891126021,6),(1490,909270021,7),(1490,922575622,6),(1490,941324422,7),(1490,954025222,6),(1490,972774022,7),(1490,985474822,6),(1490,1004223622,7),(1490,1017529222,6),(1490,1035673222,7),(1490,1048978822,6),(1490,1067122822,7),(1490,1080428422,6),(1490,1099177222,7),(1490,1111878022,6),(1490,1130626822,7),(1490,1143327623,6),(1490,1162076423,7),(1490,1167602423,3),(1490,1174784423,8),(1490,1193533223,9),(1490,1206838823,8),(1490,1224982823,9),(1490,1238288424,8),(1490,1256432424,9),(1490,1269738024,8),(1490,1288486824,9),(1490,1301274024,8),(1490,1319936424,9),(1490,1332637224,8),(1490,1351386025,9),(1490,1364691625,8),(1490,1382835625,9),(1490,1396227625,8),(1490,1414285225,9),(1490,1427590825,8),(1490,1446944426,9),(1490,1459040426,8),(1490,1473195626,4),(1491,-2147483648,1),(1491,-1451719200,2),(1491,-1172906400,3),(1491,-876641400,4),(1491,-766054800,3),(1491,-683883000,5),(1491,-620812800,3),(1491,-189415800,6),(1492,-2147483648,0),(1492,-1172913768,1),(1492,-799491600,2),(1492,-189423000,3),(1493,-2147483648,1),(1493,-1641003640,6),(1493,-933638400,2),(1493,-923097600,3),(1493,-919036800,2),(1493,-857347200,3),(1493,-844300800,2),(1493,-825811200,3),(1493,-812678400,2),(1493,-794188800,3),(1493,-779846400,2),(1493,-762652800,3),(1493,-748310400,2),(1493,-731116800,3),(1493,-681955200,4),(1493,-673228800,2),(1493,-667958400,3),(1493,-652320000,2),(1493,-636422400,3),(1493,-622080000,2),(1493,-608947200,3),(1493,-591840000,2),(1493,-572486400,3),(1493,-558576000,2),(1493,-542851200,3),(1493,-527731200,2),(1493,-514425600,3),(1493,-490838400,2),(1493,-482976000,3),(1493,-459388800,2),(1493,-451526400,3),(1493,-428544000,2),(1493,-418262400,3),(1493,-400118400,2),(1493,-387417600,3),(1493,142380003,5),(1493,150843603,6),(1493,167176804,5),(1493,178664404,6),(1493,334101609,7),(1493,337730409,8),(1493,452642412,7),(1493,462319212,8),(1493,482277612,5),(1493,494370013,6),(1493,516751213,5),(1493,526424413,6),(1493,545436013,5),(1493,558478813,6),(1493,576626414,5),(1493,589323614,6),(1493,609890414,5),(1493,620773214,6),(1493,638316015,5),(1493,651618015,6),(1493,669765616,5),(1493,683672416,6),(1493,701820016,5),(1493,715726817,6),(1493,733701617,5),(1493,747176418,6),(1493,765151218,5),(1493,778021219,6),(1493,796600819,5),(1493,810075619,6),(1493,826840820,5),(1493,842821220,6),(1493,858895220,5),(1493,874184421,6),(1493,890344821,5),(1493,905029221,6),(1493,923011222,5),(1493,936313222,6),(1493,955670422,5),(1493,970783222,6),(1493,986770822,5),(1493,1001282422,6),(1493,1017356422,5),(1493,1033941622,6),(1493,1048806022,5),(1493,1065132022,6),(1493,1081292422,5),(1493,1095804022,6),(1493,1112313622,5),(1493,1128812422,6),(1493,1143763223,5),(1493,1159657223,6),(1493,1175212823,5),(1493,1189897223,6),(1493,1206662423,5),(1493,1223161223,6),(1493,1238112024,5),(1493,1254006024,6),(1493,1269561624,5),(1493,1284246024,6),(1493,1301616024,5),(1493,1317510024,6),(1493,1333065624,5),(1493,1348354825,6),(1493,1364515225,5),(1493,1382828425,6),(1493,1395964825,5),(1493,1414278025,6),(1493,1427414425,5),(1493,1445727626,6),(1493,1458864026,5),(1493,1477782026,6),(1493,1490313627,5),(1493,1509231627,6),(1493,1521763227,5),(1493,1540681227,6),(1493,1553817627,5),(1493,1572130827,6),(1493,1585267227,5),(1493,1603580427,6),(1493,1616716827,5),(1493,1635634827,6),(1493,1648166427,5),(1493,1667084427,6),(1493,1679616027,5),(1493,1698534027,6),(1493,1711670427,5),(1493,1729983627,6),(1493,1743120027,5),(1493,1761433227,6),(1493,1774569627,5),(1493,1792882827,6),(1493,1806019227,5),(1493,1824937227,6),(1493,1837468827,5),(1493,1856386827,6),(1493,1868918427,5),(1493,1887836427,6),(1493,1900972827,5),(1493,1919286027,6),(1493,1932422427,5),(1493,1950735627,6),(1493,1963872027,5),(1493,1982790027,6),(1493,1995321627,5),(1493,2014239627,6),(1493,2026771227,5),(1493,2045689227,6),(1493,2058220827,5),(1493,2077138827,6),(1493,2090275227,5),(1493,2108588427,6),(1493,2121724827,5),(1493,2140038027,6),(1494,-2147483648,1),(1494,-788932800,2),(1495,-2147483648,0),(1495,-1487759676,1),(1495,-1247569200,3),(1495,354888009,2),(1495,370695610,3),(1495,386424010,2),(1495,402231611,3),(1495,417960011,2),(1495,433767612,3),(1495,449582412,2),(1495,465314412,4),(1495,481039212,5),(1495,496764013,4),(1495,512488813,5),(1495,528213613,4),(1495,543938413,5),(1495,559663213,4),(1495,575388014,5),(1495,591112814,4),(1495,606837614,5),(1495,622562414,4),(1495,638287215,5),(1495,654616815,4),(1495,670341616,6),(1495,686070016,7),(1495,695746816,4),(1495,701791216,5),(1495,717516017,4),(1495,733240817,5),(1495,748965618,4),(1495,764690418,5),(1495,780415219,4),(1495,796140019,5),(1495,811864819,4),(1495,828194420,5),(1495,846338420,4),(1495,859644020,5),(1495,877788021,4),(1495,891093621,5),(1495,909237621,4),(1495,922543222,5),(1495,941292022,4),(1495,953992822,5),(1495,972741622,4),(1495,985442422,5),(1495,1004191222,4),(1495,1017496822,5),(1495,1035640822,4),(1495,1048946422,5),(1495,1067090422,4),(1495,1080396022,5),(1495,1099144822,4),(1495,1111845622,5),(1495,1130594422,4),(1495,1143295223,5),(1495,1162044023,4),(1495,1174744823,5),(1495,1193493623,4),(1495,1206799223,5),(1495,1224943223,4),(1495,1238248824,5),(1495,1256392824,4),(1495,1269698424,6),(1495,1288450824,7),(1495,1301151624,4),(1496,-2147483648,0),(1496,-1988166492,1),(1496,-862637400,2),(1496,-764145000,1),(1496,-576135000,3),(1496,38775600,5),(1496,1018119622,4),(1496,1033840822,5),(1496,1212260423,4),(1496,1225476023,5),(1496,1239735624,4),(1496,1257012024,5),(1497,-2147483648,0),(1497,-1325483420,1),(1498,-2147483648,0),(1498,-1577943676,1),(1498,504901813,2),(1499,-2147483648,0),(1499,-1577943676,1),(1499,504901813,2),(1500,-2147483648,0),(1500,-1579424533,1),(1500,-1247558400,3),(1500,354898809,2),(1500,370706410,3),(1500,386434810,2),(1500,402242411,3),(1500,417970811,2),(1500,433778412,3),(1500,449593212,2),(1500,465325212,4),(1500,481050012,5),(1500,496774813,4),(1500,512499613,5),(1500,528224413,4),(1500,543949213,5),(1500,559674013,4),(1500,575398814,5),(1500,591123614,4),(1500,606848414,5),(1500,622573214,4),(1500,638298015,5),(1500,654627615,4),(1500,670352416,6),(1500,686080816,7),(1500,695757616,4),(1500,701802016,5),(1500,717526817,4),(1500,733251617,5),(1500,748976418,4),(1500,764701218,5),(1500,780426019,4),(1500,796150819,5),(1500,811875619,4),(1500,828205220,5),(1500,846349220,4),(1500,859654820,5),(1500,877798821,4),(1500,891104421,5),(1500,909248421,4),(1500,922554022,5),(1500,941302822,4),(1500,954003622,5),(1500,972752422,4),(1500,985453222,5),(1500,1004202022,4),(1500,1017507622,5),(1500,1035651622,4),(1500,1048957222,5),(1500,1067101222,4),(1500,1072882822,10),(1500,1080403222,8),(1500,1099152022,9),(1500,1111852822,8),(1500,1130601622,9),(1500,1143302423,8),(1500,1162051223,9),(1500,1174752023,8),(1500,1193500823,9),(1500,1206806423,8),(1500,1224950423,9),(1500,1238256024,8),(1500,1256400024,9),(1500,1269705624,8),(1500,1288454424,9),(1500,1301155224,11),(1500,1315832424,9),(1500,1414252825,4),(1501,-2147483648,1),(1501,-2019705670,2),(1501,-891581400,3),(1501,-872058600,2),(1501,-862637400,3),(1501,-764145000,2),(1502,-2147483648,0),(1502,-1577513486,1),(1502,-1247551200,3),(1502,354906009,2),(1502,370713610,3),(1502,386442010,2),(1502,402249611,3),(1502,417978011,2),(1502,433785612,3),(1502,449600412,2),(1502,465332412,4),(1502,481057212,5),(1502,496782013,4),(1502,512506813,5),(1502,528231613,4),(1502,543956413,5),(1502,559681213,4),(1502,575406014,5),(1502,591130814,4),(1502,606855614,5),(1502,622580414,4),(1502,638305215,5),(1502,654634815,4),(1502,670359616,6),(1502,686088016,7),(1502,695764816,4),(1502,701809216,5),(1502,717534017,4),(1502,733258817,5),(1502,748983618,4),(1502,764708418,5),(1502,780433219,4),(1502,796158019,5),(1502,811882819,4),(1502,828212420,5),(1502,846356420,4),(1502,859662020,5),(1502,877806021,4),(1502,891111621,5),(1502,909255621,4),(1502,922561222,5),(1502,941310022,4),(1502,954010822,5),(1502,972759622,4),(1502,985460422,5),(1502,1004209222,4),(1502,1017514822,5),(1502,1035658822,4),(1502,1048964422,5),(1502,1067108422,4),(1502,1080414022,5),(1502,1099162822,4),(1502,1111863622,5),(1502,1130612422,4),(1502,1143313223,5),(1502,1162062023,4),(1502,1174762823,5),(1502,1193511623,4),(1502,1206817223,5),(1502,1224961223,4),(1502,1238266824,5),(1502,1256410824,4),(1502,1269716424,5),(1502,1288465224,4),(1502,1301166024,8),(1502,1414260025,4),(1503,-2147483648,1),(1503,-2038200925,2),(1503,-1167634800,3),(1503,-1073028000,4),(1503,-894180000,5),(1503,-879665400,6),(1503,-767005200,5),(1503,378664210,7),(1504,-2147483648,0),(1504,-1383463280,1),(1504,-1167636600,3),(1504,-1082448000,2),(1504,-1074586800,3),(1504,-1050825600,2),(1504,-1042964400,3),(1504,-1019289600,2),(1504,-1011428400,3),(1504,-987753600,2),(1504,-979892400,3),(1504,-956217600,2),(1504,-948356400,3),(1504,-924595200,2),(1504,-916734000,3),(1504,-893059200,2),(1504,-885198000,3),(1504,-879667200,4),(1504,-767005200,3),(1505,-2147483648,0),(1505,-719636812,1),(1506,-2147483648,0),(1506,-2056692850,1),(1506,-884509200,3),(1506,-873280800,2),(1506,-855918000,3),(1506,-841744800,2),(1506,-828529200,3),(1506,-765363600,1),(1506,-747046800,4),(1506,-733827600,5),(1506,-716461200,4),(1506,-697021200,5),(1506,-683715600,4),(1506,-667990800,5),(1506,-654771600,4),(1506,-636627600,5),(1506,-623322000,4),(1506,-605178000,5),(1506,-591872400,4),(1506,-573642000,5),(1506,-559818000,4),(1506,-541674000,5),(1506,-528368400,4),(1506,-510224400,5),(1506,-498128400,4),(1506,-478774800,5),(1506,-466678800,4),(1506,-446720400,5),(1506,-435229200,4),(1506,-415258200,1),(1506,-403158600,6),(1506,-383808600,1),(1506,-371709000,6),(1506,-352359000,1),(1506,-340259400,6),(1506,-320909400,1),(1506,-308809800,6),(1506,-288855000,1),(1506,-277360200,6),(1506,-257405400,1),(1506,-245910600,6),(1506,-225955800,1),(1506,-213856200,6),(1506,-194506200,1),(1506,-182406600,6),(1506,-163056600,1),(1506,-148537800,6),(1506,-132820200,1),(1506,-117088200,6),(1506,-101370600,1),(1506,-85638600,6),(1506,-69312600,1),(1506,-53584200,6),(1506,-37863000,1),(1506,-22134600,6),(1506,-6413400,1),(1506,9315000,6),(1506,25036200,1),(1506,40764600,6),(1506,56485800,1),(1506,72214200,6),(1506,88540201,1),(1506,104268602,6),(1506,119989802,1),(1506,126041402,6),(1506,151439403,1),(1506,167167804,6),(1506,182889004,1),(1506,198617405,6),(1506,214338605,1),(1506,295385408,6),(1506,309292208,1),(1507,-2147483648,0),(1507,-2056692850,1),(1507,-884509200,3),(1507,-873280800,2),(1507,-855918000,3),(1507,-841744800,2),(1507,-828529200,3),(1507,-765363600,1),(1507,-747046800,4),(1507,-733827600,5),(1507,-716461200,4),(1507,-697021200,5),(1507,-683715600,4),(1507,-667990800,5),(1507,-654771600,4),(1507,-636627600,5),(1507,-623322000,4),(1507,-605178000,5),(1507,-591872400,4),(1507,-573642000,5),(1507,-559818000,4),(1507,-541674000,5),(1507,-528368400,4),(1507,-510224400,5),(1507,-498128400,4),(1507,-478774800,5),(1507,-466678800,4),(1507,-446720400,5),(1507,-435229200,4),(1507,-415258200,1),(1507,-403158600,6),(1507,-383808600,1),(1507,-371709000,6),(1507,-352359000,1),(1507,-340259400,6),(1507,-320909400,1),(1507,-308809800,6),(1507,-288855000,1),(1507,-277360200,6),(1507,-257405400,1),(1507,-245910600,6),(1507,-225955800,1),(1507,-213856200,6),(1507,-194506200,1),(1507,-182406600,6),(1507,-163056600,1),(1507,-148537800,6),(1507,-132820200,1),(1507,-117088200,6),(1507,-101370600,1),(1507,-85638600,6),(1507,-69312600,1),(1507,-53584200,6),(1507,-37863000,1),(1507,-22134600,6),(1507,-6413400,1),(1507,9315000,6),(1507,25036200,1),(1507,40764600,6),(1507,56485800,1),(1507,72214200,6),(1507,88540201,1),(1507,104268602,6),(1507,119989802,1),(1507,126041402,6),(1507,151439403,1),(1507,167167804,6),(1507,182889004,1),(1507,198617405,6),(1507,214338605,1),(1507,295385408,6),(1507,309292208,1),(1508,-2147483648,0),(1508,-1441188192,1),(1508,-1247565600,3),(1508,354891609,2),(1508,370699210,3),(1508,386427610,2),(1508,402235211,3),(1508,417963611,2),(1508,433771212,3),(1508,449586012,2),(1508,465318012,4),(1508,481042812,5),(1508,496767613,4),(1508,512492413,5),(1508,528217213,4),(1508,543942013,5),(1508,559666813,4),(1508,575391614,5),(1508,591116414,4),(1508,606841214,5),(1508,622566014,4),(1508,638290815,5),(1508,654620415,4),(1508,670345216,6),(1508,686073616,7),(1508,695750416,4),(1508,701794816,5),(1508,717519617,4),(1508,733244417,5),(1508,748969218,4),(1508,764694018,5),(1508,780418819,4),(1508,796143619,5),(1508,811868419,4),(1508,828198020,5),(1508,846342020,4),(1508,859647620,5),(1508,877791621,4),(1508,891097221,5),(1508,909241221,4),(1508,922546822,5),(1508,941295622,4),(1508,953996422,5),(1508,972745222,4),(1508,985446022,5),(1508,1004194822,4),(1508,1017500422,5),(1508,1035644422,4),(1508,1048950022,5),(1508,1067094022,4),(1508,1080399622,5),(1508,1099148422,4),(1508,1111849222,5),(1508,1130598022,4),(1508,1143298823,5),(1508,1162047623,4),(1508,1174748423,5),(1508,1193497223,4),(1508,1206802823,5),(1508,1224946823,4),(1508,1238252424,5),(1508,1256396424,4),(1508,1269702024,5),(1508,1288450824,4),(1508,1301151624,8),(1508,1414245625,7),(1508,1461427226,4),(1509,-2147483648,0),(1509,-1577951856,1),(1509,-1172908656,2),(1509,-880272000,3),(1509,-766054800,4),(1510,-2147483648,2),(1510,-1046678400,1),(1510,-1038733200,2),(1510,-873273600,3),(1510,-794221200,2),(1510,-496224000,1),(1510,-489315600,2),(1510,259344007,1),(1510,275151607,2),(1511,-2147483648,0),(1511,-1577936472,1),(1512,-2147483648,0),(1512,-1518920008,2),(1512,166572004,1),(1512,182293204,2),(1512,200959205,1),(1512,213829205,2),(1512,228866406,1),(1512,243982806,2),(1512,260316007,1),(1512,276123607,2),(1512,291765608,1),(1512,307486808,2),(1512,323820009,1),(1512,338936409,2),(1512,354664809,1),(1512,370386010,2),(1512,386114410,1),(1512,401835611,2),(1512,417564011,1),(1512,433285212,2),(1512,449013612,1),(1512,465339612,2),(1512,481068012,1),(1512,496789213,2),(1512,512517613,1),(1512,528238813,2),(1512,543967213,1),(1512,559688413,2),(1512,575416814,1),(1512,591138014,2),(1512,606866414,1),(1512,622587614,2),(1512,638316015,1),(1512,654642015,2),(1512,670370416,1),(1512,686091616,2),(1512,701820016,1),(1512,717541217,2),(1512,733269617,1),(1512,748990818,2),(1512,764719218,1),(1512,780440419,2),(1512,796168819,1),(1512,811890019,2),(1512,828223220,1),(1512,843944420,2),(1512,859672820,1),(1512,875394021,2),(1512,891122421,1),(1512,909277221,3),(1512,922582822,4),(1512,941331622,3),(1512,954032422,4),(1512,972781222,3),(1512,985482022,4),(1512,1004230822,3),(1512,1017536422,4),(1512,1035680422,3),(1512,1048986022,4),(1512,1067130022,3),(1512,1080435622,4),(1512,1099184422,3),(1512,1111885222,4),(1512,1130634022,3),(1512,1143334823,4),(1512,1162083623,3),(1512,1174784423,4),(1512,1193533223,3),(1512,1206838823,4),(1512,1224982823,3),(1512,1238288424,4),(1512,1256432424,3),(1512,1269738024,4),(1512,1288486824,3),(1512,1301187624,4),(1512,1319936424,3),(1512,1332637224,4),(1512,1351386025,3),(1512,1364691625,4),(1512,1382835625,3),(1512,1396141225,4),(1512,1414285225,3),(1512,1427590825,4),(1512,1445734826,3),(1512,1459040426,4),(1512,1477789226,3),(1512,1490490027,4),(1512,1509238827,3),(1512,1521939627,4),(1512,1540688427,3),(1512,1553994027,4),(1512,1572138027,3),(1512,1585443627,4),(1512,1603587627,3),(1512,1616893227,4),(1512,1635642027,3),(1512,1648342827,4),(1512,1667091627,3),(1512,1679792427,4),(1512,1698541227,3),(1512,1711846827,4),(1512,1729990827,3),(1512,1743296427,4),(1512,1761440427,3),(1512,1774746027,4),(1512,1792890027,3),(1512,1806195627,4),(1512,1824944427,3),(1512,1837645227,4),(1512,1856394027,3),(1512,1869094827,4),(1512,1887843627,3),(1512,1901149227,4),(1512,1919293227,3),(1512,1932598827,4),(1512,1950742827,3),(1512,1964048427,4),(1512,1982797227,3),(1512,1995498027,4),(1512,2014246827,3),(1512,2026947627,4),(1512,2045696427,3),(1512,2058397227,4),(1512,2077146027,3),(1512,2090451627,4),(1512,2108595627,3),(1512,2121901227,4),(1512,2140045227,3),(1513,-2147483648,0),(1513,-1441259328,1),(1513,-1247551200,3),(1513,354906009,2),(1513,370713610,3),(1513,386442010,2),(1513,402249611,3),(1513,417978011,2),(1513,433785612,3),(1513,449600412,2),(1513,465332412,4),(1513,481057212,5),(1513,496782013,4),(1513,512506813,5),(1513,528231613,4),(1513,543956413,5),(1513,559681213,4),(1513,575406014,5),(1513,591130814,4),(1513,606855614,5),(1513,622580414,4),(1513,638305215,5),(1513,654634815,4),(1513,670359616,6),(1513,686088016,7),(1513,695764816,4),(1513,701809216,5),(1513,717534017,4),(1513,733258817,5),(1513,748983618,4),(1513,764708418,5),(1513,780433219,4),(1513,796158019,5),(1513,811882819,4),(1513,828212420,5),(1513,846356420,4),(1513,859662020,5),(1513,877806021,4),(1513,891111621,5),(1513,909255621,4),(1513,922561222,5),(1513,941310022,4),(1513,954010822,5),(1513,972759622,4),(1513,985460422,5),(1513,1004209222,4),(1513,1017514822,5),(1513,1035658822,4),(1513,1048964422,5),(1513,1067108422,4),(1513,1080414022,5),(1513,1099162822,4),(1513,1111863622,5),(1513,1130612422,4),(1513,1143313223,5),(1513,1162062023,4),(1513,1174762823,5),(1513,1193511623,4),(1513,1206817223,5),(1513,1224961223,4),(1513,1238266824,5),(1513,1256410824,4),(1513,1269716424,6),(1513,1288468824,7),(1513,1301169624,4),(1514,-2147483648,0),(1514,-1579476700,1),(1514,-1247551200,3),(1514,354906009,2),(1514,370713610,3),(1514,386442010,2),(1514,402249611,3),(1514,417978011,2),(1514,433785612,3),(1514,449600412,2),(1514,465332412,4),(1514,481057212,5),(1514,496782013,4),(1514,512506813,5),(1514,528231613,4),(1514,543956413,5),(1514,559681213,4),(1514,575406014,5),(1514,591130814,4),(1514,606855614,5),(1514,622580414,4),(1514,638305215,5),(1514,654634815,4),(1514,670359616,6),(1514,686088016,7),(1514,695764816,4),(1514,701809216,5),(1514,717534017,4),(1514,733258817,5),(1514,738086417,8),(1514,748987218,7),(1514,764712018,6),(1514,780436819,7),(1514,796161619,6),(1514,811886419,7),(1514,828216020,6),(1514,846360020,7),(1514,859665620,6),(1514,877809621,7),(1514,891115221,6),(1514,909259221,7),(1514,922564822,6),(1514,941313622,7),(1514,954014422,6),(1514,972763222,7),(1514,985464022,6),(1514,1004212822,7),(1514,1017518422,6),(1514,1035662422,7),(1514,1048968022,6),(1514,1067112022,7),(1514,1080417622,6),(1514,1099166422,7),(1514,1111867222,6),(1514,1130616022,7),(1514,1143316823,6),(1514,1162065623,7),(1514,1174766423,6),(1514,1193515223,7),(1514,1206820823,6),(1514,1224964823,7),(1514,1238270424,6),(1514,1256414424,7),(1514,1269720024,6),(1514,1288468824,7),(1514,1301169624,4),(1514,1414263625,7),(1514,1469304026,4),(1515,-2147483648,0),(1515,-1582088010,1),(1515,-1247547600,3),(1515,354909609,2),(1515,370717210,3),(1515,386445610,2),(1515,402253211,3),(1515,417981611,2),(1515,433789212,3),(1515,449604012,2),(1515,465336012,4),(1515,481060812,5),(1515,496785613,4),(1515,512510413,5),(1515,528235213,4),(1515,543960013,5),(1515,559684813,4),(1515,575409614,5),(1515,591134414,4),(1515,606859214,5),(1515,622584014,4),(1515,638308815,5),(1515,654638415,4),(1515,670363216,6),(1515,686091616,7),(1515,695768416,4),(1515,701812816,5),(1515,717537617,4),(1515,733262417,5),(1515,748987218,4),(1515,764712018,5),(1515,780436819,4),(1515,796161619,5),(1515,811886419,4),(1515,828216020,5),(1515,846360020,4),(1515,859665620,5),(1515,877809621,4),(1515,891115221,5),(1515,909259221,4),(1515,922564822,5),(1515,941313622,4),(1515,954014422,5),(1515,972763222,4),(1515,985464022,5),(1515,1004212822,4),(1515,1017518422,5),(1515,1035662422,4),(1515,1048968022,5),(1515,1067112022,4),(1515,1080417622,5),(1515,1099166422,4),(1515,1111867222,5),(1515,1130616022,4),(1515,1143316823,5),(1515,1162065623,4),(1515,1174766423,5),(1515,1193515223,4),(1515,1206820823,5),(1515,1224964823,4),(1515,1238270424,5),(1515,1256414424,4),(1515,1269720024,5),(1515,1288468824,4),(1515,1301169624,8),(1515,1414263625,4),(1516,-2147483648,0),(1516,-1441164324,1),(1516,-1247540400,2),(1516,354913209,3),(1516,370720810,4),(1516,386445610,3),(1516,402256811,2),(1516,417985211,3),(1516,433792812,2),(1516,449607612,3),(1516,465339612,5),(1516,481064412,6),(1516,496789213,5),(1516,512514013,6),(1516,528238813,5),(1516,543963613,6),(1516,559688413,5),(1516,575413214,6),(1516,591138014,5),(1516,606862814,7),(1516,622591214,8),(1516,638316015,7),(1516,654645615,8),(1516,670370416,7),(1516,686095216,8),(1516,695772016,5),(1516,701816416,7),(1516,717544817,8),(1516,733269617,7),(1516,748994418,8),(1516,764719218,7),(1516,780444019,8),(1516,796168819,7),(1516,811893619,8),(1516,828223220,7),(1516,846367220,8),(1516,859672820,7),(1516,877816821,8),(1516,891122421,7),(1516,909266421,8),(1516,922572022,7),(1516,941320822,8),(1516,954021622,7),(1516,972770422,8),(1516,985471222,7),(1516,1004220022,8),(1516,1017525622,7),(1516,1035669622,8),(1516,1048975222,7),(1516,1067119222,8),(1516,1080424822,7),(1516,1099173622,5),(1517,-2147483648,1),(1517,-1570084924,2),(1518,-2147483648,0),(1518,-1946186240,1),(1518,-1172906240,2),(1518,-881220600,3),(1518,-766054800,2),(1518,-683883000,4),(1518,-620812800,2),(1518,-189415800,5),(1518,567964813,6),(1519,-2147483648,0),(1519,-1948782180,1),(1519,-1830414600,2),(1519,-768646800,3),(1519,1439564426,1),(1519,1525446027,3),(1520,-2147483648,0),(1520,-1577935568,1),(1520,76190400,2),(1521,-2147483648,0),(1521,-1441167268,1),(1521,-1247544000,2),(1521,354913209,3),(1521,370720810,4),(1521,386445610,3),(1521,402256811,2),(1521,417985211,3),(1521,433792812,2),(1521,449607612,3),(1521,465339612,5),(1521,481064412,6),(1521,496789213,5),(1521,512514013,6),(1521,528238813,5),(1521,543963613,6),(1521,559688413,5),(1521,575413214,6),(1521,591138014,5),(1521,606862814,6),(1521,622587614,5),(1521,638312415,6),(1521,654642015,5),(1521,670366816,7),(1521,686095216,8),(1521,695772016,5),(1521,701816416,6),(1521,717541217,5),(1521,733266017,6),(1521,748990818,5),(1521,764715618,6),(1521,780440419,5),(1521,796165219,6),(1521,811890019,5),(1521,828219620,6),(1521,846363620,5),(1521,859669220,6),(1521,877813221,5),(1521,891118821,6),(1521,909262821,5),(1521,922568422,6),(1521,941317222,5),(1521,954018022,6),(1521,972766822,5),(1521,985467622,6),(1521,1004216422,5),(1521,1017522022,6),(1521,1035666022,5),(1521,1048971622,6),(1521,1067115622,5),(1521,1080421222,6),(1521,1099170022,9),(1522,-2147483648,0),(1522,-1441167712,1),(1522,-1247544000,2),(1522,354913209,3),(1522,370720810,4),(1522,386445610,3),(1522,402256811,2),(1522,417985211,3),(1522,433792812,2),(1522,449607612,3),(1522,465339612,5),(1522,481064412,6),(1522,496789213,5),(1522,512514013,6),(1522,528238813,5),(1522,543963613,6),(1522,559688413,5),(1522,575413214,6),(1522,591138014,5),(1522,606862814,6),(1522,622587614,5),(1522,638312415,6),(1522,654642015,5),(1522,670366816,7),(1522,686095216,5),(1522,695768416,8),(1522,701812816,6),(1522,717541217,5),(1522,733266017,6),(1522,748990818,5),(1522,764715618,6),(1522,780440419,5),(1522,796165219,6),(1522,811890019,5),(1522,828219620,6),(1522,846363620,5),(1522,859669220,6),(1522,877813221,5),(1522,891118821,6),(1522,909262821,5),(1522,922568422,6),(1522,941317222,5),(1522,954018022,6),(1522,972766822,5),(1522,985467622,6),(1522,1004216422,5),(1522,1017522022,6),(1522,1035666022,5),(1522,1048971622,6),(1522,1067115622,5),(1522,1080421222,6),(1522,1099170022,8),(1522,1545328827,2),(1523,-2147483648,1),(1523,-1577946287,2),(1523,-873268200,3),(1523,-778410000,2),(1524,-2147483648,0),(1524,-719636812,1),(1525,-2147483648,0),(1525,-2004073600,1),(1525,-1851577590,2),(1525,-852105600,3),(1525,-782643600,4),(1525,-767869200,2),(1525,-718095600,3),(1525,-457776000,2),(1525,-315648000,3),(1525,171820804,2),(1526,-2147483648,0),(1526,-2031039048,1),(1526,-768560400,3),(1526,354891609,2),(1526,370699210,3),(1526,386427610,2),(1526,402235211,3),(1526,417963611,2),(1526,433771212,3),(1526,449586012,2),(1526,465318012,4),(1526,481042812,5),(1526,496767613,4),(1526,512492413,5),(1526,528217213,4),(1526,543942013,5),(1526,559666813,4),(1526,575391614,5),(1526,591116414,4),(1526,606841214,5),(1526,622566014,4),(1526,638290815,5),(1526,654620415,4),(1526,670345216,6),(1526,686073616,7),(1526,695750416,4),(1526,701794816,5),(1526,717519617,4),(1526,733244417,5),(1526,748969218,4),(1526,764694018,5),(1526,780418819,4),(1526,796143619,5),(1526,811868419,4),(1526,828198020,5),(1526,846342020,4),(1526,859647620,6),(1526,877795221,7),(1526,891100821,6),(1526,909244821,7),(1526,922550422,6),(1526,941299222,7),(1526,954000022,6),(1526,972748822,7),(1526,985449622,6),(1526,1004198422,7),(1526,1017504022,6),(1526,1035648022,7),(1526,1048953622,6),(1526,1067097622,7),(1526,1080403222,6),(1526,1099152022,7),(1526,1111852822,6),(1526,1130601622,7),(1526,1143302423,6),(1526,1162051223,7),(1526,1174752023,6),(1526,1193500823,7),(1526,1206806423,6),(1526,1224950423,7),(1526,1238256024,6),(1526,1256400024,7),(1526,1269705624,6),(1526,1288454424,7),(1526,1301155224,4),(1526,1414249225,7),(1526,1459008026,4),(1527,-2147483648,0),(1527,-1441168073,1),(1527,-1247544000,2),(1527,354913209,3),(1527,370720810,4),(1527,386445610,3),(1527,402256811,2),(1527,417985211,3),(1527,433792812,2),(1527,449607612,3),(1527,465339612,5),(1527,481064412,6),(1527,496789213,5),(1527,512514013,6),(1527,528238813,5),(1527,543963613,6),(1527,559688413,5),(1527,575413214,6),(1527,591138014,5),(1527,606862814,6),(1527,622587614,5),(1527,638312415,6),(1527,654642015,5),(1527,670366816,6),(1527,686091616,5),(1527,694206016,2),(1528,-2147483648,0),(1528,-1948782472,1),(1528,-1830414600,2),(1528,-767350800,4),(1528,-681210000,3),(1528,-672228000,4),(1528,-654771600,3),(1528,-640864800,4),(1528,-623408400,3),(1528,-609415200,4),(1528,-588848400,3),(1528,-577965600,4),(1528,-498128400,1),(1528,-462702600,5),(1528,-451733400,1),(1528,-429784200,5),(1528,-418296600,1),(1528,-399544200,5),(1528,-387451800,1),(1528,-368094600,5),(1528,-356002200,1),(1528,-336645000,5),(1528,-324552600,1),(1528,-305195400,5),(1528,-293103000,1),(1528,-264933000,4),(1528,547578013,3),(1528,560883613,4),(1528,579027614,3),(1528,592333214,4),(1529,-2147483648,2),(1529,-1600675200,1),(1529,-1585904400,2),(1529,-933667200,1),(1529,-922093200,2),(1529,-908870400,1),(1529,-888829200,2),(1529,-881049600,1),(1529,-767869200,2),(1529,-745833600,1),(1529,-733827600,2),(1529,-716889600,1),(1529,-699613200,2),(1529,-683884800,1),(1529,-670669200,2),(1529,-652348800,1),(1529,-650019600,2),(1529,515527213,1),(1529,527014813,2),(1529,545162413,1),(1529,558464413,2),(1529,577216814,1),(1529,589914014,2),(1529,608666414,1),(1529,621968414,2),(1529,640116015,1),(1529,653418015,2),(1529,671565616,1),(1529,684867616,2),(1530,-2147483648,1),(1530,-2038200925,2),(1530,-1167634800,3),(1530,-1073028000,4),(1530,-894180000,5),(1530,-879665400,6),(1530,-767005200,5),(1530,378664210,7),(1531,-2147483648,0),(1531,-1441188892,1),(1531,-1247565600,3),(1531,354891609,2),(1531,370699210,3),(1531,386427610,2),(1531,402235211,3),(1531,417963611,2),(1531,433771212,3),(1531,449586012,2),(1531,465318012,4),(1531,481042812,5),(1531,496767613,4),(1531,512492413,5),(1531,528217213,4),(1531,543942013,5),(1531,559666813,4),(1531,575391614,5),(1531,591116414,4),(1531,606841214,5),(1531,622566014,4),(1531,638290815,5),(1531,654620415,4),(1531,670345216,6),(1531,686073616,7),(1531,695750416,4),(1531,701794816,5),(1531,717519617,4),(1531,733244417,5),(1531,748969218,4),(1531,764694018,5),(1531,780418819,4),(1531,796143619,5),(1531,811868419,4),(1531,828198020,5),(1531,846342020,4),(1531,859647620,5),(1531,877791621,4),(1531,891097221,5),(1531,909241221,4),(1531,922546822,5),(1531,941295622,4),(1531,953996422,5),(1531,972745222,4),(1531,985446022,5),(1531,1004194822,4),(1531,1017500422,5),(1531,1035644422,4),(1531,1048950022,5),(1531,1067094022,4),(1531,1080399622,5),(1531,1099148422,4),(1531,1111849222,5),(1531,1130598022,4),(1531,1143298823,5),(1531,1162047623,4),(1531,1174748423,5),(1531,1193497223,4),(1531,1206802823,5),(1531,1224946823,4),(1531,1238252424,5),(1531,1256396424,4),(1531,1269702024,5),(1531,1288450824,4),(1531,1301151624,8),(1531,1414245625,4),(1532,-2147483648,1),(1532,-1017820800,2),(1532,-766224000,1),(1532,-745833600,3),(1532,-733827600,1),(1532,-716889600,3),(1532,-699613200,1),(1532,-683884800,3),(1532,-670669200,1),(1532,-652348800,3),(1532,-639133200,1),(1532,-620812800,3),(1532,-607597200,1),(1532,-589276800,3),(1532,-576061200,1),(1532,-562924800,3),(1532,-541760400,1),(1532,-528710400,3),(1532,-510224400,1),(1532,-497174400,3),(1532,-478688400,1),(1532,-465638400,3),(1532,-449830800,1),(1532,-434016000,3),(1532,-418208400,1),(1532,-402480000,3),(1532,-386672400,1),(1532,-370944000,3),(1532,-355136400,1),(1532,-339408000,3),(1532,-323600400,1),(1532,-302515200,3),(1532,-291978000,1),(1532,-270979200,3),(1532,-260442000,1),(1532,133977603,3),(1532,149785203,1),(1532,165513604,3),(1532,181321204,1),(1532,299606408,3),(1532,307551608,1),(1533,-2147483648,0),(1533,-1441168631,1),(1533,-1247547600,3),(1533,354909609,2),(1533,370717210,3),(1533,386445610,2),(1533,402253211,3),(1533,417981611,2),(1533,433789212,3),(1533,449604012,2),(1533,465336012,4),(1533,481060812,5),(1533,496785613,4),(1533,512510413,5),(1533,528235213,4),(1533,543960013,5),(1533,559684813,4),(1533,575409614,5),(1533,591134414,4),(1533,606859214,5),(1533,622584014,4),(1533,638308815,5),(1533,654638415,4),(1533,670363216,6),(1533,686091616,7),(1533,694206016,1),(1534,-2147483648,1),(1534,-1441162751,2),(1534,-405140400,4),(1534,354916809,3),(1534,370724410,4),(1534,386452810,3),(1534,402260411,4),(1534,417988811,3),(1534,433796412,4),(1534,449611212,3),(1534,465343212,5),(1534,481068012,6),(1534,496792813,5),(1534,512517613,6),(1534,528242413,5),(1534,543967213,6),(1534,559692013,5),(1534,575416814,6),(1534,591141614,5),(1534,606866414,6),(1534,622591214,5),(1534,638316015,6),(1534,654645615,5),(1534,670370416,7),(1534,686098816,8),(1534,694213216,2),(1534,701816416,9),(1534,717537617,2),(1534,733266017,9),(1534,748987218,2),(1534,764715618,9),(1534,780436819,4),(1534,796161619,3),(1534,811882819,4),(1534,828216020,3),(1534,859662020,3),(1534,877806021,4),(1534,891115221,3),(1534,909255621,4),(1534,922564822,3),(1534,941310022,4),(1534,954014422,3),(1534,972759622,4),(1534,985464022,3),(1534,1004209222,4),(1534,1017518422,3),(1534,1035658822,4),(1534,1048968022,3),(1534,1067108422,4),(1534,1080417622,3),(1534,1088276422,9),(1534,1099177222,8),(1534,1111878022,4),(1535,-2147483648,0),(1535,-1704165944,1),(1535,-757394744,2),(1535,247177806,4),(1535,259272007,3),(1535,277758007,4),(1535,283982407,2),(1535,290809808,5),(1535,306531008,2),(1535,322432209,5),(1535,338499009,2),(1535,673216216,5),(1535,685481416,2),(1535,701209816,5),(1535,717103817,2),(1535,732745817,5),(1535,748639818,2),(1535,764281818,5),(1535,780175819,2),(1535,795817819,5),(1535,811711819,2),(1535,827353820,5),(1535,843247820,2),(1535,858976220,5),(1535,874870221,2),(1535,890512221,5),(1535,906406221,2),(1535,922048222,5),(1535,937942222,2),(1535,953584222,5),(1535,969478222,2),(1535,985206622,5),(1535,1001100622,2),(1535,1016742622,5),(1535,1032636622,2),(1535,1048278622,5),(1535,1064172622,2),(1535,1079814622,5),(1535,1095708622,2),(1535,1111437022,5),(1535,1127331022,2),(1535,1206045023,5),(1535,1221939023,2),(1535,1237667424,5),(1535,1253561424,2),(1535,1269203424,5),(1535,1285097424,2),(1535,1300739424,5),(1535,1316633424,2),(1535,1332275424,5),(1535,1348169425,2),(1535,1363897825,5),(1535,1379791825,2),(1535,1395433825,5),(1535,1411327825,2),(1535,1426969825,5),(1535,1442863826,2),(1535,1458505826,5),(1535,1474399826,2),(1535,1490128227,5),(1535,1506022227,2),(1535,1521664227,5),(1535,1537558227,2),(1535,1553200227,5),(1535,1569094227,2),(1535,1584736227,5),(1535,1600630227,2),(1535,1616358627,5),(1535,1632252627,2),(1535,1647894627,5),(1535,1663788627,2),(1535,1679430627,5),(1535,1695324627,2),(1535,1710966627,5),(1535,1726860627,2),(1535,1742589027,5),(1535,1758483027,2),(1535,1774125027,5),(1535,1790019027,2),(1535,1805661027,5),(1535,1821555027,2),(1535,1837197027,5),(1535,1853091027,2),(1535,1868733027,5),(1535,1884627027,2),(1535,1900355427,5),(1535,1916249427,2),(1535,1931891427,5),(1535,1947785427,2),(1535,1963427427,5),(1535,1979321427,2),(1535,1994963427,5),(1535,2010857427,2),(1535,2026585827,5),(1535,2042479827,2),(1535,2058121827,5),(1535,2074015827,2),(1535,2089657827,5),(1535,2105551827,2),(1535,2121193827,5),(1535,2137087827,2),(1536,-2147483648,1),(1536,-1641003640,6),(1536,-933638400,2),(1536,-923097600,3),(1536,-919036800,2),(1536,-857347200,3),(1536,-844300800,2),(1536,-825811200,3),(1536,-812678400,2),(1536,-794188800,3),(1536,-779846400,2),(1536,-762652800,3),(1536,-748310400,2),(1536,-731116800,3),(1536,-681955200,4),(1536,-673228800,2),(1536,-667958400,3),(1536,-652320000,2),(1536,-636422400,3),(1536,-622080000,2),(1536,-608947200,3),(1536,-591840000,2),(1536,-572486400,3),(1536,-558576000,2),(1536,-542851200,3),(1536,-527731200,2),(1536,-514425600,3),(1536,-490838400,2),(1536,-482976000,3),(1536,-459388800,2),(1536,-451526400,3),(1536,-428544000,2),(1536,-418262400,3),(1536,-400118400,2),(1536,-387417600,3),(1536,142380003,5),(1536,150843603,6),(1536,167176804,5),(1536,178664404,6),(1536,334101609,7),(1536,337730409,8),(1536,452642412,7),(1536,462319212,8),(1536,482277612,5),(1536,494370013,6),(1536,516751213,5),(1536,526424413,6),(1536,545436013,5),(1536,558478813,6),(1536,576626414,5),(1536,589323614,6),(1536,609890414,5),(1536,620773214,6),(1536,638316015,5),(1536,651618015,6),(1536,669765616,5),(1536,683672416,6),(1536,701820016,5),(1536,715726817,6),(1536,733701617,5),(1536,747176418,6),(1536,765151218,5),(1536,778021219,6),(1536,796600819,5),(1536,810075619,6),(1536,826840820,5),(1536,842821220,6),(1536,858895220,5),(1536,874184421,6),(1536,890344821,5),(1536,905029221,6),(1536,923011222,5),(1536,936313222,6),(1536,955670422,5),(1536,970783222,6),(1536,986770822,5),(1536,1001282422,6),(1536,1017356422,5),(1536,1033941622,6),(1536,1048806022,5),(1536,1065132022,6),(1536,1081292422,5),(1536,1095804022,6),(1536,1112313622,5),(1536,1128812422,6),(1536,1143763223,5),(1536,1159657223,6),(1536,1175212823,5),(1536,1189897223,6),(1536,1206662423,5),(1536,1223161223,6),(1536,1238112024,5),(1536,1254006024,6),(1536,1269561624,5),(1536,1284246024,6),(1536,1301616024,5),(1536,1317510024,6),(1536,1333065624,5),(1536,1348354825,6),(1536,1364515225,5),(1536,1382828425,6),(1536,1395964825,5),(1536,1414278025,6),(1536,1427414425,5),(1536,1445727626,6),(1536,1458864026,5),(1536,1477782026,6),(1536,1490313627,5),(1536,1509231627,6),(1536,1521763227,5),(1536,1540681227,6),(1536,1553817627,5),(1536,1572130827,6),(1536,1585267227,5),(1536,1603580427,6),(1536,1616716827,5),(1536,1635634827,6),(1536,1648166427,5),(1536,1667084427,6),(1536,1679616027,5),(1536,1698534027,6),(1536,1711670427,5),(1536,1729983627,6),(1536,1743120027,5),(1536,1761433227,6),(1536,1774569627,5),(1536,1792882827,6),(1536,1806019227,5),(1536,1824937227,6),(1536,1837468827,5),(1536,1856386827,6),(1536,1868918427,5),(1536,1887836427,6),(1536,1900972827,5),(1536,1919286027,6),(1536,1932422427,5),(1536,1950735627,6),(1536,1963872027,5),(1536,1982790027,6),(1536,1995321627,5),(1536,2014239627,6),(1536,2026771227,5),(1536,2045689227,6),(1536,2058220827,5),(1536,2077138827,6),(1536,2090275227,5),(1536,2108588427,6),(1536,2121724827,5),(1536,2140038027,6),(1537,-2147483648,0),(1537,-706341516,1),(1537,560025013,2),(1538,-2147483648,0),(1538,-706341516,1),(1538,560025013,2),(1539,-2147483648,3),(1539,-683802000,1),(1539,-672310800,2),(1539,-654771600,1),(1539,-640861200,2),(1539,-620298000,1),(1539,-609411600,2),(1539,-588848400,1),(1539,-577962000,2),(1540,-2147483648,0),(1540,-1578807591,1),(1540,-1247551200,3),(1540,354906009,2),(1540,370713610,3),(1540,386442010,2),(1540,402249611,3),(1540,417978011,2),(1540,433785612,3),(1540,449600412,2),(1540,465332412,4),(1540,481057212,5),(1540,496782013,4),(1540,512506813,5),(1540,528231613,4),(1540,543956413,5),(1540,559681213,4),(1540,575406014,5),(1540,591130814,4),(1540,606855614,5),(1540,622580414,4),(1540,638305215,5),(1540,654634815,4),(1540,670359616,6),(1540,686088016,7),(1540,695764816,4),(1540,701809216,5),(1540,717534017,4),(1540,733258817,5),(1540,748983618,4),(1540,764708418,5),(1540,780433219,4),(1540,796158019,5),(1540,811882819,4),(1540,828212420,5),(1540,846356420,4),(1540,859662020,5),(1540,877806021,4),(1540,891111621,5),(1540,909255621,4),(1540,922561222,5),(1540,941310022,4),(1540,954010822,5),(1540,972759622,4),(1540,985460422,5),(1540,1004209222,4),(1540,1017514822,5),(1540,1020193222,8),(1540,1035662422,7),(1540,1048968022,6),(1540,1067112022,7),(1540,1080417622,6),(1540,1099166422,7),(1540,1111867222,6),(1540,1130616022,7),(1540,1143316823,6),(1540,1162065623,7),(1540,1174766423,6),(1540,1193515223,7),(1540,1206820823,6),(1540,1224964823,7),(1540,1238270424,6),(1540,1256414424,7),(1540,1269720024,6),(1540,1288468824,7),(1540,1301169624,4),(1540,1414263625,7),(1540,1464465626,4),(1541,-2147483648,0),(1541,-1577951856,1),(1541,-1172908656,2),(1541,-880272000,3),(1541,-766054800,4),(1542,-2147483648,0),(1542,-2032931252,1),(1542,252435606,3),(1542,417974411,2),(1542,433782012,3),(1542,449596812,2),(1542,465318012,3),(1542,481046412,2),(1542,496767613,3),(1542,512496013,2),(1542,528217213,3),(1542,543945613,2),(1542,559666813,3),(1542,575395214,2),(1542,591116414,3),(1542,606844814,2),(1542,622566014,3),(1542,638294415,2),(1542,654620415,3),(1542,670348816,2),(1542,686070016,3),(1542,701798416,2),(1542,717519617,3),(1542,733248017,2),(1542,748969218,3),(1542,764697618,2),(1542,780418819,3),(1542,796147219,2),(1542,811868419,3),(1542,828201620,2),(1542,843922820,3),(1542,859651220,2),(1542,875372421,3),(1542,891100821,2),(1542,906822021,3),(1542,988394422,2),(1542,1001696422,3),(1542,1017424822,2),(1542,1033146022,3),(1542,1048874422,2),(1542,1064595622,3),(1542,1080324022,2),(1542,1096045222,3),(1542,1111773622,2),(1542,1127494822,3),(1542,1143223223,2),(1542,1159549223,3),(1542,1427479225,2),(1542,1443193226,3),(1542,1458928826,2),(1542,1474642826,3),(1543,-2147483648,0),(1543,-2032931252,1),(1543,252435606,3),(1543,417974411,2),(1543,433782012,3),(1543,449596812,2),(1543,465318012,3),(1543,481046412,2),(1543,496767613,3),(1543,512496013,2),(1543,528217213,3),(1543,543945613,2),(1543,559666813,3),(1543,575395214,2),(1543,591116414,3),(1543,606844814,2),(1543,622566014,3),(1543,638294415,2),(1543,654620415,3),(1543,670348816,2),(1543,686070016,3),(1543,701798416,2),(1543,717519617,3),(1543,733248017,2),(1543,748969218,3),(1543,764697618,2),(1543,780418819,3),(1543,796147219,2),(1543,811868419,3),(1543,828201620,2),(1543,843922820,3),(1543,859651220,2),(1543,875372421,3),(1543,891100821,2),(1543,906822021,3),(1543,988394422,2),(1543,1001696422,3),(1543,1017424822,2),(1543,1033146022,3),(1543,1048874422,2),(1543,1064595622,3),(1543,1080324022,2),(1543,1096045222,3),(1543,1111773622,2),(1543,1127494822,3),(1543,1143223223,2),(1543,1159549223,3),(1543,1427479225,2),(1543,1443193226,3),(1543,1458928826,2),(1543,1474642826,3),(1544,-2147483648,0),(1544,-1325483420,1),(1545,-2147483648,0),(1545,-1579426374,1),(1545,-1247558400,2),(1545,354898809,4),(1545,370699210,3),(1545,386427610,4),(1545,402235211,3),(1545,417963611,4),(1545,433771212,3),(1545,449586012,4),(1545,465318012,5),(1545,481042812,6),(1545,496767613,5),(1545,512492413,6),(1545,528217213,5),(1545,543942013,6),(1545,559666813,5),(1545,575391614,6),(1545,591116414,5),(1545,606841214,6),(1545,622566014,5),(1545,638290815,6),(1545,654620415,5),(1545,670345216,7),(1545,686073616,8),(1545,695750416,5),(1545,701794816,6),(1545,717519617,5),(1545,733244417,6),(1545,748969218,5),(1545,764694018,6),(1545,780418819,5),(1545,796143619,6),(1545,811868419,5),(1545,828198020,6),(1545,846342020,5),(1545,859647620,6),(1545,877791621,5),(1545,891097221,6),(1545,909241221,5),(1545,922546822,6),(1545,941295622,5),(1545,953996422,6),(1545,972745222,5),(1545,985446022,6),(1545,1004194822,5),(1545,1017500422,6),(1545,1035644422,5),(1545,1048950022,6),(1545,1067094022,5),(1545,1080399622,6),(1545,1099148422,5),(1545,1111849222,6),(1545,1130598022,5),(1545,1143298823,6),(1545,1162047623,5),(1545,1174748423,6),(1545,1193497223,5),(1545,1206802823,6),(1545,1224946823,5),(1545,1238252424,6),(1545,1256396424,5),(1545,1269702024,6),(1545,1288450824,5),(1545,1301151624,9),(1545,1315828824,5),(1545,1414249225,8),(1546,-2147483648,1),(1546,-1570084924,2),(1547,-2147483648,0),(1547,-1487321251,1),(1547,-1247562000,3),(1547,354895209,2),(1547,370702810,3),(1547,386431210,2),(1547,402238811,3),(1547,417967211,2),(1547,433774812,3),(1547,449589612,2),(1547,465321612,4),(1547,481046412,5),(1547,496771213,4),(1547,512496013,5),(1547,528220813,4),(1547,543945613,5),(1547,559670413,4),(1547,575395214,5),(1547,591120014,4),(1547,606844814,5),(1547,622569614,4),(1547,638294415,5),(1547,654624015,4),(1547,670348816,6),(1547,686077216,7),(1547,695754016,4),(1547,701798416,5),(1547,717523217,4),(1547,733248017,5),(1547,748972818,4),(1547,764697618,5),(1547,780422419,4),(1547,796147219,5),(1547,811872019,4),(1547,828201620,5),(1547,846345620,4),(1547,859651220,5),(1547,877795221,4),(1547,891100821,5),(1547,909244821,4),(1547,922550422,5),(1547,941299222,4),(1547,954000022,5),(1547,972748822,4),(1547,985449622,5),(1547,1004198422,4),(1547,1017504022,5),(1547,1035648022,4),(1547,1048953622,5),(1547,1067097622,4),(1547,1080403222,5),(1547,1099152022,4),(1547,1111852822,5),(1547,1130601622,4),(1547,1143302423,5),(1547,1162051223,4),(1547,1174752023,5),(1547,1193500823,4),(1547,1206806423,5),(1547,1224950423,4),(1547,1238256024,5),(1547,1256400024,4),(1547,1269705624,5),(1547,1288454424,4),(1547,1301155224,8),(1547,1414249225,4),(1548,-2147483648,0),(1548,-1579423138,1),(1548,-1247558400,3),(1548,354898809,2),(1548,370706410,3),(1548,386434810,2),(1548,402242411,3),(1548,417970811,2),(1548,433778412,3),(1548,449593212,2),(1548,465325212,4),(1548,481050012,5),(1548,496774813,4),(1548,512499613,5),(1548,528224413,4),(1548,543949213,5),(1548,559674013,4),(1548,575398814,5),(1548,591123614,4),(1548,606848414,5),(1548,622573214,4),(1548,638298015,5),(1548,654627615,4),(1548,670352416,6),(1548,686080816,7),(1548,695757616,4),(1548,701802016,5),(1548,717526817,4),(1548,733251617,5),(1548,748976418,4),(1548,764701218,5),(1548,780426019,4),(1548,796150819,5),(1548,811875619,4),(1548,828205220,5),(1548,846349220,4),(1548,859654820,5),(1548,877798821,4),(1548,891104421,5),(1548,909248421,4),(1548,922554022,5),(1548,941302822,4),(1548,954003622,5),(1548,972752422,4),(1548,985453222,5),(1548,1004202022,4),(1548,1017507622,5),(1548,1035651622,4),(1548,1048957222,5),(1548,1067101222,4),(1548,1080406822,5),(1548,1099155622,4),(1548,1111856422,5),(1548,1130605222,4),(1548,1143306023,5),(1548,1162054823,4),(1548,1174755623,5),(1548,1193504423,4),(1548,1206810023,5),(1548,1224954023,4),(1548,1238259624,5),(1548,1256403624,4),(1548,1269709224,5),(1548,1288458024,4),(1548,1301158824,8),(1548,1414252825,4),(1549,-2147483648,1),(1549,-1577946287,2),(1549,-873268200,3),(1549,-778410000,2),(1550,-2147483648,0),(1550,-1688270553,1),(1550,-1592610305,2),(1550,-1247544000,4),(1550,354913209,3),(1550,370720810,4),(1550,386449210,3),(1550,402256811,4),(1550,417985211,3),(1550,433792812,4),(1550,449607612,3),(1550,465339612,5),(1550,481064412,6),(1550,496789213,5),(1550,512514013,6),(1550,528238813,5),(1550,543963613,6),(1550,559688413,5),(1550,575413214,6),(1550,591138014,5),(1550,606862814,6),(1550,622587614,5),(1550,638312415,6),(1550,654642015,5),(1550,670366816,7),(1550,686095216,8),(1550,695772016,5),(1550,701816416,6),(1550,717541217,5),(1550,733266017,6),(1550,748990818,5),(1550,764715618,6),(1550,780440419,5),(1550,796165219,6),(1550,811890019,5),(1550,828219620,6),(1550,846363620,5),(1550,859669220,6),(1550,877813221,5),(1550,891118821,6),(1550,909262821,5),(1550,922568422,6),(1550,941317222,5),(1550,954018022,6),(1550,972766822,5),(1550,985467622,6),(1550,1004216422,5),(1550,1017522022,6),(1550,1035666022,5),(1550,1048971622,6),(1550,1067115622,5),(1550,1080421222,6),(1550,1099170022,5),(1550,1111870822,6),(1550,1130619622,5),(1550,1143320423,6),(1550,1162069223,5),(1550,1174770023,6),(1550,1193518823,5),(1550,1206824423,6),(1550,1224968423,5),(1550,1238274024,6),(1550,1256418024,5),(1550,1269723624,6),(1550,1288472424,5),(1550,1301173224,9),(1550,1414267225,5),(1551,-2147483648,0),(1551,-1441162680,1),(1551,-405140400,3),(1551,354916809,2),(1551,370724410,3),(1551,386452810,2),(1551,402260411,3),(1551,417988811,2),(1551,433796412,3),(1551,449611212,2),(1551,465343212,4),(1551,481068012,5),(1551,496792813,4),(1551,512517613,5),(1551,528242413,4),(1551,543967213,5),(1551,559692013,4),(1551,575416814,5),(1551,591141614,4),(1551,606866414,5),(1551,622591214,4),(1551,638316015,5),(1551,654645615,4),(1551,670370416,6),(1551,686098816,7),(1551,701823616,6),(1551,717548417,7),(1551,733273217,6),(1551,748998018,7),(1551,764722818,6),(1551,780447619,7),(1551,796172419,6),(1551,811897219,4),(1551,852062420,3),(1551,859672820,5),(1551,877816821,4),(1551,891122421,5),(1551,909266421,4),(1551,922572022,5),(1551,941320822,4),(1551,954021622,5),(1551,972770422,4),(1551,985471222,5),(1551,1004220022,4),(1551,1017525622,5),(1551,1035669622,4),(1551,1048975222,5),(1551,1067119222,4),(1551,1080424822,5),(1551,1099173622,4),(1551,1111874422,5),(1551,1130623222,4),(1551,1143324023,5),(1551,1162072823,4),(1551,1174773623,5),(1551,1193522423,4),(1551,1206828023,5),(1551,1224972023,4),(1551,1238277624,5),(1551,1256421624,4),(1551,1269727224,5),(1551,1288476024,4),(1551,1293825624,3),(1551,1301176824,5),(1551,1319925624,4),(1552,-2147483648,1),(1552,-1830376800,6),(1552,-1689548400,2),(1552,-1677794400,3),(1552,-1667430000,4),(1552,-1647730800,5),(1552,-1635807600,4),(1552,-1616194800,5),(1552,-1604358000,4),(1552,-1584658800,5),(1552,-1572735600,4),(1552,-1553036400,5),(1552,-1541199600,4),(1552,-1521500400,5),(1552,-1442444400,4),(1552,-1426806000,5),(1552,-1379286000,4),(1552,-1364770800,5),(1552,-1348441200,4),(1552,-1333321200,5),(1552,-1316386800,4),(1552,-1301266800,5),(1552,-1284332400,4),(1552,-1269817200,5),(1552,-1221433200,4),(1552,-1206918000,5),(1552,-1191193200,4),(1552,-1175468400,5),(1552,-1127689200,4),(1552,-1111964400,5),(1552,-1096844400,4),(1552,-1080514800,5),(1552,-1063580400,4),(1552,-1049065200,5),(1552,-1033340400,4),(1552,-1017615600,5),(1552,-1002495600,4),(1552,-986166000,5),(1552,-969231600,4),(1552,-950482800,5),(1552,-942015600,4),(1552,-922662000,5),(1552,-906937200,4),(1552,-891126000,5),(1552,-877302000,4),(1552,-873676800,7),(1552,-864000000,4),(1552,-857948400,5),(1552,-845852400,4),(1552,-842832000,7),(1552,-831340800,4),(1552,-825894000,5),(1552,-814402800,4),(1552,-810777600,7),(1552,-799891200,4),(1552,-794444400,5),(1552,-782953200,4),(1552,-779328000,7),(1552,-768441600,4),(1552,-762994800,5),(1552,-749084400,4),(1552,-733359600,5),(1552,-717624000,4),(1552,-701899200,5),(1552,-686174400,4),(1552,-670449600,5),(1552,-654724800,4),(1552,-639000000,5),(1552,-591825600,4),(1552,-575496000,5),(1552,-559771200,4),(1552,-544046400,5),(1552,-528321600,4),(1552,-512596800,5),(1552,-496872000,4),(1552,-481147200,5),(1552,-465422400,4),(1552,-449697600,5),(1552,-433972800,4),(1552,-417643200,5),(1552,-401918400,4),(1552,-386193600,5),(1552,-370468800,4),(1552,-354744000,5),(1552,-339019200,4),(1552,-323294400,5),(1552,-307569600,4),(1552,-291844800,5),(1552,-276120000,4),(1552,-260395200,5),(1552,-244670400,4),(1552,-228340800,5),(1552,-212616000,4),(1552,-196891200,5),(1552,-181166400,4),(1552,-165441600,5),(1552,-149716800,4),(1552,-133992000,5),(1552,-118267200,9),(1552,228272406,7),(1552,243997206,8),(1552,260326807,7),(1552,276051607,8),(1552,291776408,7),(1552,307504808,8),(1552,323226009,7),(1552,338954409,8),(1552,354679209,7),(1552,370404010,8),(1552,386128810,7),(1552,401853611,8),(1552,417582011,7),(1552,433303212,8),(1552,449028012,7),(1552,465357612,8),(1552,481082412,7),(1552,496807213,8),(1552,512532013,7),(1552,528256813,8),(1552,543981613,7),(1552,559706413,8),(1552,575431214,7),(1552,591156014,8),(1552,606880814,7),(1552,622605614,8),(1552,638330415,7),(1552,654660015,8),(1552,670384816,7),(1552,686109616,8),(1552,701834416,7),(1552,717559217,10),(1552,733280417,11),(1552,749005218,12),(1552,764730018,11),(1552,780454819,12),(1552,796179619,11),(1552,811904419,12),(1552,828234020,11),(1552,846378020,12),(1552,859683620,11),(1552,877827621,12),(1552,891133221,11),(1552,909277221,12),(1552,922582822,11),(1552,941331622,12),(1552,954032422,11),(1552,972781222,12),(1552,985482022,11),(1552,1004230822,12),(1552,1017536422,11),(1552,1035680422,12),(1552,1048986022,11),(1552,1067130022,12),(1552,1080435622,11),(1552,1099184422,12),(1552,1111885222,11),(1552,1130634022,12),(1552,1143334823,11),(1552,1162083623,12),(1552,1174784423,11),(1552,1193533223,12),(1552,1206838823,11),(1552,1224982823,12),(1552,1238288424,11),(1552,1256432424,12),(1552,1269738024,11),(1552,1288486824,12),(1552,1301187624,11),(1552,1319936424,12),(1552,1332637224,11),(1552,1351386025,12),(1552,1364691625,11),(1552,1382835625,12),(1552,1396141225,11),(1552,1414285225,12),(1552,1427590825,11),(1552,1445734826,12),(1552,1459040426,11),(1552,1477789226,12),(1552,1490490027,11),(1552,1509238827,12),(1552,1521939627,11),(1552,1540688427,12),(1552,1553994027,11),(1552,1572138027,12),(1552,1585443627,11),(1552,1603587627,12),(1552,1616893227,11),(1552,1635642027,12),(1552,1648342827,11),(1552,1667091627,12),(1552,1679792427,11),(1552,1698541227,12),(1552,1711846827,11),(1552,1729990827,12),(1552,1743296427,11),(1552,1761440427,12),(1552,1774746027,11),(1552,1792890027,12),(1552,1806195627,11),(1552,1824944427,12),(1552,1837645227,11),(1552,1856394027,12),(1552,1869094827,11),(1552,1887843627,12),(1552,1901149227,11),(1552,1919293227,12),(1552,1932598827,11),(1552,1950742827,12),(1552,1964048427,11),(1552,1982797227,12),(1552,1995498027,11),(1552,2014246827,12),(1552,2026947627,11),(1552,2045696427,12),(1552,2058397227,11),(1552,2077146027,12),(1552,2090451627,11),(1552,2108595627,12),(1552,2121901227,11),(1552,2140045227,12),(1553,-2147483648,2),(1553,-1664307642,1),(1553,-1648932042,2),(1553,-1632080442,1),(1553,-1618692042,2),(1553,-1262281242,4),(1553,-882727200,3),(1553,-858538800,4),(1553,-845229600,3),(1553,-825879600,4),(1553,-814384800,3),(1553,-793825200,4),(1553,-782935200,3),(1553,-762375600,4),(1553,-713988000,3),(1553,-703710000,4),(1553,-681933600,3),(1553,-672865200,4),(1553,-650484000,3),(1553,-641415600,4),(1553,-618429600,3),(1553,-609966000,4),(1553,-586980000,3),(1553,-578516400,4),(1553,-555530400,3),(1553,-546462000,4),(1553,-429127200,3),(1553,-415825200,4),(1553,136360803,3),(1553,152082003,4),(1553,167810404,3),(1553,183531604,4),(1553,199260005,3),(1553,215586005,4),(1553,230709606,3),(1553,247035606,4),(1553,262764007,3),(1553,278485207,4),(1553,294213608,3),(1553,309934808,4),(1553,325663209,3),(1553,341384409,4),(1553,357112809,3),(1553,372834010,4),(1553,388562410,3),(1553,404888411,4),(1553,420012011,3),(1553,436338012,4),(1553,452066412,3),(1553,467787612,4),(1553,483516012,3),(1553,499237213,4),(1553,514965613,3),(1553,530686813,4),(1553,544600813,3),(1553,562136413,4),(1553,576050414,3),(1553,594190814,4),(1553,607500014,3),(1553,625640414,4),(1553,638949615,3),(1553,657090015,4),(1553,671004016,3),(1553,688539616,4),(1553,702453616,3),(1553,719989217,4),(1553,733903217,3),(1553,752043618,4),(1553,765352818,3),(1553,783493219,4),(1553,796802419,3),(1553,814942819,4),(1553,828856820,3),(1553,846392420,4),(1553,860306420,3),(1553,877842021,4),(1553,891756021,3),(1553,909291621,4),(1553,923205622,3),(1553,941346022,4),(1553,954655222,3),(1553,972795622,4),(1553,986104822,3),(1553,1004245222,4),(1553,1018159222,3),(1553,1035694822,4),(1553,1049608822,3),(1553,1067144422,4),(1553,1081058422,3),(1553,1099198822,4),(1553,1112508022,3),(1553,1130648422,4),(1553,1143957623,3),(1553,1162098023,4),(1553,1173592823,3),(1553,1194152423,4),(1553,1205042423,3),(1553,1225602023,4),(1553,1236492024,3),(1553,1257051624,4),(1553,1268546424,3),(1553,1289106024,4),(1553,1299996024,3),(1553,1320555624,4),(1553,1331445624,3),(1553,1352005225,4),(1553,1362895225,3),(1553,1383454825,4),(1553,1394344825,3),(1553,1414904425,4),(1553,1425794425,3),(1553,1446354026,4),(1553,1457848826,3),(1553,1478408426,4),(1553,1489298427,3),(1553,1509858027,4),(1553,1520748027,3),(1553,1541307627,4),(1553,1552197627,3),(1553,1572757227,4),(1553,1583647227,3),(1553,1604206827,4),(1553,1615701627,3),(1553,1636261227,4),(1553,1647151227,3),(1553,1667710827,4),(1553,1678600827,3),(1553,1699160427,4),(1553,1710050427,3),(1553,1730610027,4),(1553,1741500027,3),(1553,1762059627,4),(1553,1772949627,3),(1553,1793509227,4),(1553,1805004027,3),(1553,1825563627,4),(1553,1836453627,3),(1553,1857013227,4),(1553,1867903227,3),(1553,1888462827,4),(1553,1899352827,3),(1553,1919912427,4),(1553,1930802427,3),(1553,1951362027,4),(1553,1962856827,3),(1553,1983416427,4),(1553,1994306427,3),(1553,2014866027,4),(1553,2025756027,3),(1553,2046315627,4),(1553,2057205627,3),(1553,2077765227,4),(1553,2088655227,3),(1553,2109214827,4),(1553,2120104827,3),(1553,2140664427,4),(1554,-2147483648,0),(1554,-1509663504,1),(1554,-733874400,2),(1554,323827209,3),(1554,338950809,4),(1554,354675609,5),(1554,370400410,4),(1554,386125210,5),(1554,401850011,4),(1554,417574811,5),(1554,433299612,4),(1554,449024412,5),(1554,465354012,4),(1554,481078812,5),(1554,496803613,4),(1554,512528413,5),(1554,528253213,4),(1554,543978013,5),(1554,559702813,4),(1554,575427614,5),(1554,591152414,4),(1554,606877214,5),(1554,622602014,4),(1554,638326815,5),(1554,654656415,4),(1554,670381216,5),(1554,686106016,4),(1554,701830816,5),(1554,717555617,4),(1554,733280417,5),(1554,749005218,4),(1554,764730018,5),(1554,780454819,4),(1554,796179619,5),(1554,811904419,4),(1554,828234020,5),(1554,846378020,4),(1554,859683620,5),(1554,877827621,4),(1554,891133221,5),(1554,909277221,4),(1554,922582822,5),(1554,941331622,4),(1554,954032422,5),(1554,972781222,4),(1554,985482022,5),(1554,1004230822,4),(1554,1017536422,5),(1554,1035680422,4),(1554,1048986022,5),(1554,1067130022,4),(1554,1080435622,5),(1554,1099184422,4),(1554,1111885222,5),(1554,1130634022,4),(1554,1143334823,5),(1554,1162083623,4),(1554,1174784423,5),(1554,1193533223,4),(1554,1206838823,5),(1554,1224982823,4),(1554,1238288424,5),(1554,1256432424,4),(1554,1269738024,5),(1554,1288486824,4),(1554,1301187624,5),(1554,1319936424,4),(1554,1332637224,5),(1554,1351386025,4),(1554,1364691625,5),(1554,1382835625,4),(1554,1396141225,5),(1554,1414285225,4),(1554,1427590825,5),(1554,1445734826,4),(1554,1459040426,5),(1554,1477789226,4),(1554,1490490027,5),(1554,1509238827,4),(1554,1521939627,5),(1554,1540688427,4),(1554,1553994027,5),(1554,1572138027,4),(1554,1585443627,5),(1554,1603587627,4),(1554,1616893227,5),(1554,1635642027,4),(1554,1648342827,5),(1554,1667091627,4),(1554,1679792427,5),(1554,1698541227,4),(1554,1711846827,5),(1554,1729990827,4),(1554,1743296427,5),(1554,1761440427,4),(1554,1774746027,5),(1554,1792890027,4),(1554,1806195627,5),(1554,1824944427,4),(1554,1837645227,5),(1554,1856394027,4),(1554,1869094827,5),(1554,1887843627,4),(1554,1901149227,5),(1554,1919293227,4),(1554,1932598827,5),(1554,1950742827,4),(1554,1964048427,5),(1554,1982797227,4),(1554,1995498027,5),(1554,2014246827,4),(1554,2026947627,5),(1554,2045696427,4),(1554,2058397227,5),(1554,2077146027,4),(1554,2090451627,5),(1554,2108595627,4),(1554,2121901227,5),(1554,2140045227,4),(1555,-2147483648,0),(1555,-1830376800,1),(1555,-862610400,2),(1555,-764118000,3),(1555,186120004,4),(1556,-2147483648,0),(1556,-1955748776,1),(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,-2147483648,0),(1557,-1955748776,1),(1557,354675609,2),(1557,370400410,3),(1557,386125210,2),(1557,401850011,3),(1557,417574811,2),(1557,433299612,3),(1557,449024412,2),(1557,465354012,3),(1557,481078812,2),(1557,496803613,3),(1557,512528413,2),(1557,528253213,3),(1557,543978013,2),(1557,559702813,3),(1557,575427614,2),(1557,591152414,3),(1557,606877214,2),(1557,622602014,3),(1557,638326815,2),(1557,654656415,3),(1557,670381216,2),(1557,686106016,3),(1557,701830816,2),(1557,717555617,3),(1557,733280417,2),(1557,749005218,3),(1557,764730018,2),(1557,780454819,3),(1557,796179619,2),(1557,811904419,3),(1557,828234020,2),(1557,846378020,3),(1557,859683620,2),(1557,877827621,3),(1557,891133221,2),(1557,909277221,3),(1557,922582822,2),(1557,941331622,3),(1557,954032422,2),(1557,972781222,3),(1557,985482022,2),(1557,1004230822,3),(1557,1017536422,2),(1557,1035680422,3),(1557,1048986022,2),(1557,1067130022,3),(1557,1080435622,2),(1557,1099184422,3),(1557,1111885222,2),(1557,1130634022,3),(1557,1143334823,2),(1557,1162083623,3),(1557,1174784423,2),(1557,1193533223,3),(1557,1206838823,2),(1557,1224982823,3),(1557,1238288424,2),(1557,1256432424,3),(1557,1269738024,2),(1557,1288486824,3),(1557,1301187624,2),(1557,1319936424,3),(1557,1332637224,2),(1557,1351386025,3),(1557,1364691625,2),(1557,1382835625,3),(1557,1396141225,2),(1557,1414285225,3),(1557,1427590825,2),(1557,1445734826,3),(1557,1459040426,2),(1557,1477789226,3),(1557,1490490027,2),(1557,1509238827,3),(1557,1521939627,2),(1557,1540688427,3),(1557,1553994027,2),(1557,1572138027,3),(1557,1585443627,2),(1557,1603587627,3),(1557,1616893227,2),(1557,1635642027,3),(1557,1648342827,2),(1557,1667091627,3),(1557,1679792427,2),(1557,1698541227,3),(1557,1711846827,2),(1557,1729990827,3),(1557,1743296427,2),(1557,1761440427,3),(1557,1774746027,2),(1557,1792890027,3),(1557,1806195627,2),(1557,1824944427,3),(1557,1837645227,2),(1557,1856394027,3),(1557,1869094827,2),(1557,1887843627,3),(1557,1901149227,2),(1557,1919293227,3),(1557,1932598827,2),(1557,1950742827,3),(1557,1964048427,2),(1557,1982797227,3),(1557,1995498027,2),(1557,2014246827,3),(1557,2026947627,2),(1557,2045696427,3),(1557,2058397227,2),(1557,2077146027,3),(1557,2090451627,2),(1557,2108595627,3),(1557,2121901227,2),(1557,2140045227,3),(1558,-2147483648,2),(1558,-1691884800,1),(1558,-1680573600,2),(1558,-927511200,1),(1558,-857257200,3),(1558,-844556400,4),(1558,-828226800,3),(1558,-812502000,4),(1558,-796777200,3),(1558,-781052400,4),(1558,-765327600,3),(1558,-340844400,4),(1558,-324514800,3),(1558,-308790000,4),(1558,-293065200,3),(1558,-277340400,4),(1558,-261615600,3),(1558,-245890800,4),(1558,-230166000,3),(1558,-214441200,4),(1558,-198716400,3),(1558,-182991600,4),(1558,-166662000,3),(1558,-147913200,4),(1558,-135212400,3),(1558,315529208,2),(1558,323830809,5),(1558,338950809,6),(1558,354675609,5),(1558,370400410,6),(1558,386125210,5),(1558,401850011,6),(1558,417574811,5),(1558,433299612,6),(1558,449024412,5),(1558,465354012,6),(1558,481078812,5),(1558,496803613,6),(1558,512528413,5),(1558,528253213,6),(1558,543978013,5),(1558,559702813,6),(1558,575427614,5),(1558,591152414,6),(1558,606877214,5),(1558,622602014,6),(1558,638326815,5),(1558,654656415,6),(1558,670381216,5),(1558,686106016,6),(1558,701830816,5),(1558,717555617,6),(1558,733280417,5),(1558,749005218,6),(1558,764730018,5),(1558,780454819,6),(1558,796179619,5),(1558,811904419,6),(1558,828234020,5),(1558,846378020,6),(1558,859683620,5),(1558,877827621,6),(1558,891133221,5),(1558,909277221,6),(1558,922582822,5),(1558,941331622,6),(1558,954032422,5),(1558,972781222,6),(1558,985482022,5),(1558,1004230822,6),(1558,1017536422,5),(1558,1035680422,6),(1558,1048986022,5),(1558,1067130022,6),(1558,1080435622,5),(1558,1099184422,6),(1558,1111885222,5),(1558,1130634022,6),(1558,1143334823,5),(1558,1162083623,6),(1558,1174784423,5),(1558,1193533223,6),(1558,1206838823,5),(1558,1224982823,6),(1558,1238288424,5),(1558,1256432424,6),(1558,1269738024,5),(1558,1288486824,6),(1558,1301187624,5),(1558,1319936424,6),(1558,1332637224,5),(1558,1351386025,6),(1558,1364691625,5),(1558,1382835625,6),(1558,1396141225,5),(1558,1414285225,6),(1558,1427590825,5),(1558,1445734826,6),(1558,1459040426,5),(1558,1477789226,6),(1558,1490490027,5),(1558,1509238827,6),(1558,1521939627,5),(1558,1540688427,6),(1558,1553994027,5),(1558,1572138027,6),(1558,1585443627,5),(1558,1603587627,6),(1558,1616893227,5),(1558,1635642027,6),(1558,1648342827,5),(1558,1667091627,6),(1558,1679792427,5),(1558,1698541227,6),(1558,1711846827,5),(1558,1729990827,6),(1558,1743296427,5),(1558,1761440427,6),(1558,1774746027,5),(1558,1792890027,6),(1558,1806195627,5),(1558,1824944427,6),(1558,1837645227,5),(1558,1856394027,6),(1558,1869094827,5),(1558,1887843627,6),(1558,1901149227,5),(1558,1919293227,6),(1558,1932598827,5),(1558,1950742827,6),(1558,1964048427,5),(1558,1982797227,6),(1558,1995498027,5),(1558,2014246827,6),(1558,2026947627,5),(1558,2045696427,6),(1558,2058397227,5),(1558,2077146027,6),(1558,2090451627,5),(1558,2108595627,6),(1558,2121901227,5),(1558,2140045227,6),(1559,-2147483648,1),(1559,-1830380400,6),(1559,-1689552000,2),(1559,-1677798000,3),(1559,-1667433600,4),(1559,-1647734400,5),(1559,-1635811200,4),(1559,-1616198400,5),(1559,-1604361600,4),(1559,-1584662400,5),(1559,-1572739200,4),(1559,-1553040000,5),(1559,-1541203200,4),(1559,-1521504000,5),(1559,-1442448000,4),(1559,-1426809600,5),(1559,-1379289600,4),(1559,-1364774400,5),(1559,-1348444800,4),(1559,-1333324800,5),(1559,-1316390400,4),(1559,-1301270400,5),(1559,-1284336000,4),(1559,-1269820800,5),(1559,-1221436800,4),(1559,-1206921600,5),(1559,-1191196800,4),(1559,-1175472000,5),(1559,-1127692800,4),(1559,-1111968000,5),(1559,-1096848000,4),(1559,-1080518400,5),(1559,-1063584000,4),(1559,-1049068800,5),(1559,-1033344000,4),(1559,-1017619200,5),(1559,-1002499200,4),(1559,-986169600,5),(1559,-969235200,4),(1559,-950486400,5),(1559,-942019200,4),(1559,-922665600,5),(1559,-906940800,4),(1559,-891129600,5),(1559,-877305600,4),(1559,-873680400,7),(1559,-864003600,4),(1559,-857952000,5),(1559,-845856000,4),(1559,-842835600,7),(1559,-831344400,4),(1559,-825897600,5),(1559,-814406400,4); +INSERT INTO `time_zone_transition` VALUES (1559,-810781200,7),(1559,-799894800,4),(1559,-794448000,5),(1559,-782956800,4),(1559,-779331600,7),(1559,-768445200,4),(1559,-762998400,5),(1559,-749088000,4),(1559,-733363200,5),(1559,-717627600,4),(1559,-701902800,5),(1559,-686178000,4),(1559,-670453200,5),(1559,-654728400,4),(1559,-639003600,5),(1559,-591829200,4),(1559,-575499600,5),(1559,-559774800,4),(1559,-544050000,5),(1559,-528325200,4),(1559,-512600400,5),(1559,-496875600,4),(1559,-481150800,5),(1559,-465426000,4),(1559,-449701200,5),(1559,-433976400,4),(1559,-417646800,5),(1559,-401922000,4),(1559,-386197200,5),(1559,-370472400,4),(1559,-354747600,5),(1559,-339022800,4),(1559,-323298000,5),(1559,-307573200,4),(1559,-291848400,5),(1559,-276123600,4),(1559,-260398800,5),(1559,-244674000,4),(1559,-228344400,5),(1559,-212619600,4),(1559,-196894800,5),(1559,-181170000,4),(1559,-165445200,5),(1559,-149720400,4),(1559,-133995600,5),(1559,-118270800,10),(1559,228268806,8),(1559,243993606,9),(1559,260323207,8),(1559,276048007,9),(1559,291772808,8),(1559,307501208,9),(1559,323222409,8),(1559,338950809,9),(1559,354675609,8),(1559,370400410,9),(1559,386125210,8),(1559,401850011,9),(1559,417578411,8),(1559,433299612,11),(1559,449024412,12),(1559,465354012,11),(1559,481078812,12),(1559,496803613,11),(1559,512528413,12),(1559,528253213,11),(1559,543978013,12),(1559,559702813,11),(1559,575427614,12),(1559,591152414,11),(1559,606877214,12),(1559,622602014,11),(1559,638326815,12),(1559,654656415,11),(1559,670381216,12),(1559,686106016,11),(1559,701830816,12),(1559,717555617,11),(1559,733280417,12),(1559,749005218,11),(1559,764730018,12),(1559,780454819,11),(1559,796179619,12),(1559,811904419,11),(1559,828234020,12),(1559,846378020,11),(1559,859683620,12),(1559,877827621,11),(1559,891133221,12),(1559,909277221,11),(1559,922582822,12),(1559,941331622,11),(1559,954032422,12),(1559,972781222,11),(1559,985482022,12),(1559,1004230822,11),(1559,1017536422,12),(1559,1035680422,11),(1559,1048986022,12),(1559,1067130022,11),(1559,1080435622,12),(1559,1099184422,11),(1559,1111885222,12),(1559,1130634022,11),(1559,1143334823,12),(1559,1162083623,11),(1559,1174784423,12),(1559,1193533223,11),(1559,1206838823,12),(1559,1224982823,11),(1559,1238288424,12),(1559,1256432424,11),(1559,1269738024,12),(1559,1288486824,11),(1559,1301187624,12),(1559,1319936424,11),(1559,1332637224,12),(1559,1351386025,11),(1559,1364691625,12),(1559,1382835625,11),(1559,1396141225,12),(1559,1414285225,11),(1559,1427590825,12),(1559,1445734826,11),(1559,1459040426,12),(1559,1477789226,11),(1559,1490490027,12),(1559,1509238827,11),(1559,1521939627,12),(1559,1540688427,11),(1559,1553994027,12),(1559,1572138027,11),(1559,1585443627,12),(1559,1603587627,11),(1559,1616893227,12),(1559,1635642027,11),(1559,1648342827,12),(1559,1667091627,11),(1559,1679792427,12),(1559,1698541227,11),(1559,1711846827,12),(1559,1729990827,11),(1559,1743296427,12),(1559,1761440427,11),(1559,1774746027,12),(1559,1792890027,11),(1559,1806195627,12),(1559,1824944427,11),(1559,1837645227,12),(1559,1856394027,11),(1559,1869094827,12),(1559,1887843627,11),(1559,1901149227,12),(1559,1919293227,11),(1559,1932598827,12),(1559,1950742827,11),(1559,1964048427,12),(1559,1982797227,11),(1559,1995498027,12),(1559,2014246827,11),(1559,2026947627,12),(1559,2045696427,11),(1559,2058397227,12),(1559,2077146027,11),(1559,2090451627,12),(1559,2108595627,11),(1559,2121901227,12),(1559,2140045227,11),(1560,-2147483648,0),(1560,-1956609120,2),(1560,-1668211200,1),(1560,-1647212400,2),(1560,-1636675200,1),(1560,-1613430000,2),(1560,-1605139200,1),(1560,-1581894000,2),(1560,-1539561600,1),(1560,-1531350000,2),(1560,-968025600,1),(1560,-952293600,2),(1560,-942008400,1),(1560,-920239200,3),(1560,-909957600,4),(1560,-888789600,3),(1560,-877903200,4),(1560,-857944800,3),(1560,-846453600,4),(1560,-826495200,3),(1560,-815004000,4),(1560,-795045600,3),(1560,-783554400,4),(1560,-762991200,3),(1560,-752104800,4),(1560,-731541600,3),(1560,-717631200,4),(1560,-700092000,3),(1560,-686181600,4),(1560,-668642400,3),(1560,-654732000,4),(1560,-636588000,3),(1560,-623282400,4),(1560,-605743200,3),(1560,-591832800,4),(1560,-573688800,3),(1560,-559778400,4),(1560,-542239200,3),(1560,-528328800,4),(1560,-510789600,3),(1560,-496879200,4),(1560,-479340000,3),(1560,-465429600,4),(1560,-447890400,3),(1560,-433980000,4),(1560,-415836000,3),(1560,-401925600,4),(1560,-384386400,3),(1560,-370476000,4),(1560,-352936800,3),(1560,-339026400,4),(1560,-321487200,3),(1560,-307576800,4),(1560,-290037600,3),(1560,-276127200,4),(1560,-258588000,3),(1560,-244677600,4),(1560,-226533600,3),(1560,-212623200,4),(1560,-195084000,3),(1560,-181173600,4),(1560,-163634400,3),(1560,-149724000,4),(1560,-132184800,3),(1560,-118274400,4),(1560,-100735200,3),(1560,-86824800,4),(1560,-68680800,3),(1560,-54770400,5),(1562,-2147483648,0),(1562,-1830383032,1),(1563,-2147483648,1),(1563,-1824235716,3),(1563,-1018209600,2),(1563,-1003093200,3),(1563,-986760000,2),(1563,-971643600,3),(1563,-954705600,2),(1563,-939589200,3),(1563,-923256000,2),(1563,-908139600,3),(1563,-891806400,2),(1563,-876690000,3),(1563,-860356800,2),(1563,-852066000,3),(1563,420609611,5),(1563,433306812,4),(1563,452052012,5),(1563,464151612,4),(1563,483501612,5),(1563,495601213,2),(1563,514350013,3),(1563,527054413,2),(1563,545799613,3),(1563,558504013,2),(1563,577249214,3),(1563,589953614,2),(1563,608698814,3),(1563,621403214,2),(1563,640753215,3),(1563,652852815,2),(1563,672202816,3),(1563,684907216,2),(1563,703652416,3),(1563,716356817,2),(1563,735102017,3),(1563,747806418,2),(1563,766551618,3),(1563,779256019,2),(1563,798001219,3),(1563,810705619,2),(1563,830055620,3),(1563,842760020,2),(1563,861505220,3),(1563,874209621,2),(1563,892954821,3),(1563,905659221,2),(1563,924404422,3),(1563,937108822,2),(1563,955854022,3),(1563,968558422,2),(1563,987310822,3),(1563,999410422,2),(1563,1019365222,3),(1563,1030860022,2),(1563,1050814822,3),(1563,1062914422,2),(1563,1082264422,3),(1563,1094364022,2),(1563,1113714022,3),(1563,1125813622,2),(1563,1145163623,3),(1563,1157263223,2),(1563,1176613223,3),(1563,1188712823,2),(1563,1208667623,3),(1563,1220767223,2),(1563,1240117224,3),(1563,1252216824,2),(1563,1271566824,3),(1563,1283666424,5),(1564,-2147483648,3),(1564,-1672560000,1),(1564,-1665388800,2),(1564,-883641600,1),(1564,-876124800,2),(1564,-860400000,1),(1564,-844675200,2),(1564,-828345600,1),(1564,-813225600,2),(1564,31500000,3),(1564,57686400,1),(1564,67968000,2),(1564,89136001,1),(1564,100022402,2),(1564,120585602,1),(1564,131472003,2),(1564,152035203,1),(1564,162921604,2),(1564,183484804,1),(1564,194976005,2),(1564,215539205,1),(1564,226425606,2),(1564,246988806,1),(1564,257875207,2),(1564,278438407,1),(1564,289324808,2),(1564,309888008,1),(1564,320774409,2),(1564,341337609,1),(1564,352224009,2),(1564,372787210,1),(1564,386697610,2),(1564,404841611,1),(1564,415728011,2),(1564,436291212,1),(1564,447177612,2),(1564,467740812,1),(1564,478627212,2),(1564,499190413,1),(1564,511286413,2),(1564,530035213,1),(1564,542736013,2),(1564,562089613,1),(1564,574790414,2),(1564,594144014,1),(1564,606240014,2),(1564,625593614,1),(1564,636480015,2),(1564,657043215,1),(1564,667929616,2),(1564,688492816,1),(1564,699379216,2),(1564,719942417,1),(1564,731433617,2),(1564,751996818,1),(1564,762883218,2),(1564,783446419,1),(1564,794332819,2),(1564,814896019,1),(1564,828201620,2),(1564,846345620,1),(1564,859651220,2),(1564,877795221,1),(1564,891100821,2),(1564,909244821,1),(1564,922550422,2),(1564,941299222,1),(1564,954000022,2),(1564,967305622,1),(1564,985449622,2),(1564,1004198422,1),(1564,1017504022,2),(1564,1035648022,1),(1564,1048953622,2),(1564,1067097622,1),(1564,1080403222,2),(1564,1099152022,1),(1564,1111852822,2),(1564,1130601622,1),(1564,1143907223,2),(1564,1162051223,1),(1564,1174752023,2),(1564,1193500823,1),(1564,1207411223,2),(1564,1223136023,1),(1564,1238860824,2),(1564,1254585624,1),(1564,1270310424,2),(1564,1286035224,1),(1564,1301760024,2),(1564,1317484824,1),(1564,1333209624,2),(1564,1349539225,1),(1564,1365264025,2),(1564,1380988825,1),(1564,1396713625,2),(1564,1412438425,1),(1564,1428163225,2),(1564,1443888026,1),(1564,1459612826,2),(1564,1475337626,1),(1564,1491062427,2),(1564,1506787227,1),(1564,1522512027,2),(1564,1538841627,1),(1564,1554566427,2),(1564,1570291227,1),(1564,1586016027,2),(1564,1601740827,1),(1564,1617465627,2),(1564,1633190427,1),(1564,1648915227,2),(1564,1664640027,1),(1564,1680364827,2),(1564,1696089627,1),(1564,1712419227,2),(1564,1728144027,1),(1564,1743868827,2),(1564,1759593627,1),(1564,1775318427,2),(1564,1791043227,1),(1564,1806768027,2),(1564,1822492827,1),(1564,1838217627,2),(1564,1853942427,1),(1564,1869667227,2),(1564,1885996827,1),(1564,1901721627,2),(1564,1917446427,1),(1564,1933171227,2),(1564,1948896027,1),(1564,1964620827,2),(1564,1980345627,1),(1564,1996070427,2),(1564,2011795227,1),(1564,2027520027,2),(1564,2043244827,1),(1564,2058969627,2),(1564,2075299227,1),(1564,2091024027,2),(1564,2106748827,1),(1564,2122473627,2),(1564,2138198427,1),(1565,-2147483648,3),(1565,-1672558200,1),(1565,-1665387000,2),(1565,-883639800,1),(1565,-876123000,2),(1565,-860398200,1),(1565,-844673400,2),(1565,-828343800,1),(1565,-813223800,2),(1565,31501800,3),(1565,57688200,1),(1565,67969800,2),(1565,89137801,1),(1565,100024202,2),(1565,120587402,1),(1565,131473803,2),(1565,152037003,1),(1565,162923404,2),(1565,183486604,1),(1565,194977805,2),(1565,215541005,1),(1565,226427406,2),(1565,246990606,1),(1565,257877007,2),(1565,278440207,1),(1565,289326608,2),(1565,309889808,1),(1565,320776209,2),(1565,341339409,1),(1565,352225809,2),(1565,372789010,1),(1565,384280210,2),(1565,404843411,1),(1565,415729811,2),(1565,436293012,1),(1565,447179412,2),(1565,467742612,1),(1565,478629012,2),(1565,499192213,1),(1565,511288213,2),(1565,530037013,1),(1565,542737813,2),(1565,562091413,1),(1565,574792214,2),(1565,594145814,1),(1565,606241814,2),(1565,625595414,1),(1565,637691415,2),(1565,657045015,1),(1565,667931416,2),(1565,688494616,1),(1565,701195416,2),(1565,719944217,1),(1565,731435417,2),(1565,751998618,1),(1565,764094618,2),(1565,783448219,1),(1565,796149019,2),(1565,814897819,1),(1565,828203420,2),(1565,846347420,1),(1565,859653020,2),(1565,877797021,1),(1565,891102621,2),(1565,909246621,1),(1565,922552222,2),(1565,941301022,1),(1565,954001822,2),(1565,972750622,1),(1565,985451422,2),(1565,1004200222,1),(1565,1017505822,2),(1565,1035649822,1),(1565,1048955422,2),(1565,1067099422,1),(1565,1080405022,2),(1565,1099153822,1),(1565,1111854622,2),(1565,1130603422,1),(1565,1143909023,2),(1565,1162053023,1),(1565,1174753823,2),(1565,1193502623,1),(1565,1207413023,2),(1565,1223137823,1),(1565,1238862624,2),(1565,1254587424,1),(1565,1270312224,2),(1565,1286037024,1),(1565,1301761824,2),(1565,1317486624,1),(1565,1333211424,2),(1565,1349541025,1),(1565,1365265825,2),(1565,1380990625,1),(1565,1396715425,2),(1565,1412440225,1),(1565,1428165025,2),(1565,1443889826,1),(1565,1459614626,2),(1565,1475339426,1),(1565,1491064227,2),(1565,1506789027,1),(1565,1522513827,2),(1565,1538843427,1),(1565,1554568227,2),(1565,1570293027,1),(1565,1586017827,2),(1565,1601742627,1),(1565,1617467427,2),(1565,1633192227,1),(1565,1648917027,2),(1565,1664641827,1),(1565,1680366627,2),(1565,1696091427,1),(1565,1712421027,2),(1565,1728145827,1),(1565,1743870627,2),(1565,1759595427,1),(1565,1775320227,2),(1565,1791045027,1),(1565,1806769827,2),(1565,1822494627,1),(1565,1838219427,2),(1565,1853944227,1),(1565,1869669027,2),(1565,1885998627,1),(1565,1901723427,2),(1565,1917448227,1),(1565,1933173027,2),(1565,1948897827,1),(1565,1964622627,2),(1565,1980347427,1),(1565,1996072227,2),(1565,2011797027,1),(1565,2027521827,2),(1565,2043246627,1),(1565,2058971427,2),(1565,2075301027,1),(1565,2091025827,2),(1565,2106750627,1),(1565,2122475427,2),(1565,2138200227,1),(1566,-2147483648,3),(1566,-1672560000,1),(1566,-1665388800,2),(1566,-883641600,1),(1566,-876124800,2),(1566,-860400000,1),(1566,-844675200,2),(1566,-828345600,1),(1566,-813225600,2),(1566,31500000,3),(1566,57686400,1),(1566,67968000,2),(1566,625593614,1),(1566,636480015,2),(1566,657043215,1),(1566,667929616,2),(1566,688492816,1),(1566,699379216,2),(1567,-2147483648,3),(1567,-1672558200,1),(1567,-1665387000,2),(1567,-883639800,1),(1567,-876123000,2),(1567,-860398200,1),(1567,-844673400,2),(1567,-828343800,1),(1567,-813223800,2),(1567,31501800,3),(1567,57688200,1),(1567,67969800,2),(1567,89137801,1),(1567,100024202,2),(1567,120587402,1),(1567,131473803,2),(1567,152037003,1),(1567,162923404,2),(1567,183486604,1),(1567,194977805,2),(1567,215541005,1),(1567,226427406,2),(1567,246990606,1),(1567,257877007,2),(1567,278440207,1),(1567,289326608,2),(1567,309889808,1),(1567,320776209,2),(1567,341339409,1),(1567,352225809,2),(1567,372789010,1),(1567,386699410,2),(1567,404843411,1),(1567,415729811,2),(1567,436293012,1),(1567,447179412,2),(1567,467742612,1),(1567,478629012,2),(1567,499192213,1),(1567,511288213,2),(1567,530037013,1),(1567,542737813,2),(1567,562091413,1),(1567,574792214,2),(1567,594145814,1),(1567,606241814,2),(1567,625595414,1),(1567,636481815,2),(1567,657045015,1),(1567,667931416,2),(1567,688494616,1),(1567,699381016,2),(1567,719944217,1),(1567,731435417,2),(1567,751998618,1),(1567,762885018,2),(1567,783448219,1),(1567,794334619,2),(1567,814897819,1),(1567,828203420,2),(1567,846347420,1),(1567,859653020,2),(1567,877797021,1),(1567,891102621,2),(1567,909246621,1),(1567,922552222,2),(1567,941301022,1),(1567,946647022,4),(1567,954001822,2),(1567,972750622,1),(1567,985451422,2),(1567,1004200222,1),(1567,1017505822,2),(1567,1035649822,1),(1567,1048955422,2),(1567,1067099422,1),(1567,1080405022,2),(1567,1099153822,1),(1567,1111854622,2),(1567,1130603422,1),(1567,1143909023,2),(1567,1162053023,1),(1567,1174753823,2),(1567,1193502623,1),(1567,1207413023,2),(1567,1223137823,1),(1567,1238862624,2),(1567,1254587424,1),(1567,1270312224,2),(1567,1286037024,1),(1567,1301761824,2),(1567,1317486624,1),(1567,1333211424,2),(1567,1349541025,1),(1567,1365265825,2),(1567,1380990625,1),(1567,1396715425,2),(1567,1412440225,1),(1567,1428165025,2),(1567,1443889826,1),(1567,1459614626,2),(1567,1475339426,1),(1567,1491064227,2),(1567,1506789027,1),(1567,1522513827,2),(1567,1538843427,1),(1567,1554568227,2),(1567,1570293027,1),(1567,1586017827,2),(1567,1601742627,1),(1567,1617467427,2),(1567,1633192227,1),(1567,1648917027,2),(1567,1664641827,1),(1567,1680366627,2),(1567,1696091427,1),(1567,1712421027,2),(1567,1728145827,1),(1567,1743870627,2),(1567,1759595427,1),(1567,1775320227,2),(1567,1791045027,1),(1567,1806769827,2),(1567,1822494627,1),(1567,1838219427,2),(1567,1853944227,1),(1567,1869669027,2),(1567,1885998627,1),(1567,1901723427,2),(1567,1917448227,1),(1567,1933173027,2),(1567,1948897827,1),(1567,1964622627,2),(1567,1980347427,1),(1567,1996072227,2),(1567,2011797027,1),(1567,2027521827,2),(1567,2043246627,1),(1567,2058971427,2),(1567,2075301027,1),(1567,2091025827,2),(1567,2106750627,1),(1567,2122475427,2),(1567,2138200227,1),(1568,-2147483648,3),(1568,-1672560000,1),(1568,-1665388800,2),(1568,-883641600,1),(1568,-876124800,2),(1568,-860400000,1),(1568,-844675200,2),(1568,-828345600,1),(1568,-813225600,2),(1568,31500000,3),(1568,57686400,1),(1568,67968000,2),(1568,89136001,1),(1568,100022402,2),(1568,120585602,1),(1568,131472003,2),(1568,152035203,1),(1568,162921604,2),(1568,183484804,1),(1568,194976005,2),(1568,215539205,1),(1568,226425606,2),(1568,246988806,1),(1568,257875207,2),(1568,278438407,1),(1568,289324808,2),(1568,309888008,1),(1568,320774409,2),(1568,341337609,1),(1568,352224009,2),(1568,372787210,1),(1568,386697610,2),(1568,404841611,1),(1568,415728011,2),(1568,436291212,1),(1568,447177612,2),(1568,467740812,1),(1568,478627212,2),(1568,499190413,1),(1568,511286413,2),(1568,530035213,1),(1568,542736013,2),(1568,562089613,1),(1568,574790414,2),(1568,594144014,1),(1568,606240014,2),(1568,625593614,1),(1568,636480015,2),(1568,657043215,1),(1568,667929616,2),(1568,688492816,1),(1568,699379216,2),(1568,719942417,1),(1568,731433617,2),(1568,751996818,1),(1568,762883218,2),(1568,783446419,1),(1568,794332819,2),(1568,814896019,1),(1568,828201620,2),(1568,846345620,1),(1568,859651220,2),(1568,877795221,1),(1568,891100821,2),(1568,909244821,1),(1568,922550422,2),(1568,941299222,1),(1568,954000022,2),(1568,967305622,1),(1568,985449622,2),(1568,1004198422,1),(1568,1017504022,2),(1568,1035648022,1),(1568,1048953622,2),(1568,1067097622,1),(1568,1080403222,2),(1568,1099152022,1),(1568,1111852822,2),(1568,1130601622,1),(1568,1143907223,2),(1568,1162051223,1),(1568,1174752023,2),(1568,1193500823,1),(1568,1207411223,2),(1568,1223136023,1),(1568,1238860824,2),(1568,1254585624,1),(1568,1270310424,2),(1568,1286035224,1),(1568,1301760024,2),(1568,1317484824,1),(1568,1333209624,2),(1568,1349539225,1),(1568,1365264025,2),(1568,1380988825,1),(1568,1396713625,2),(1568,1412438425,1),(1568,1428163225,2),(1568,1443888026,1),(1568,1459612826,2),(1568,1475337626,1),(1568,1491062427,2),(1568,1506787227,1),(1568,1522512027,2),(1568,1538841627,1),(1568,1554566427,2),(1568,1570291227,1),(1568,1586016027,2),(1568,1601740827,1),(1568,1617465627,2),(1568,1633190427,1),(1568,1648915227,2),(1568,1664640027,1),(1568,1680364827,2),(1568,1696089627,1),(1568,1712419227,2),(1568,1728144027,1),(1568,1743868827,2),(1568,1759593627,1),(1568,1775318427,2),(1568,1791043227,1),(1568,1806768027,2),(1568,1822492827,1),(1568,1838217627,2),(1568,1853942427,1),(1568,1869667227,2),(1568,1885996827,1),(1568,1901721627,2),(1568,1917446427,1),(1568,1933171227,2),(1568,1948896027,1),(1568,1964620827,2),(1568,1980345627,1),(1568,1996070427,2),(1568,2011795227,1),(1568,2027520027,2),(1568,2043244827,1),(1568,2058969627,2),(1568,2075299227,1),(1568,2091024027,2),(1568,2106748827,1),(1568,2122473627,2),(1568,2138198427,1),(1569,-2147483648,3),(1569,-1680508800,1),(1569,-1665388800,2),(1569,-1646640000,1),(1569,-1635753600,2),(1569,-1615190400,1),(1569,-1604304000,2),(1569,-1583920800,3),(1569,-883641600,1),(1569,-876124800,2),(1569,-860400000,1),(1569,-844675200,2),(1569,-828345600,1),(1569,-813225600,2),(1569,-94730400,3),(1569,-71136000,1),(1569,-55411200,2),(1569,-37267200,1),(1569,-25776000,2),(1569,-5817600,1),(1569,5673600,2),(1569,25632000,1),(1569,37728000,2),(1569,57686400,1),(1569,67968000,2),(1569,89136001,1),(1569,100022402,2),(1569,120585602,1),(1569,131472003,2),(1569,152035203,1),(1569,162921604,2),(1569,183484804,1),(1569,194976005,2),(1569,215539205,1),(1569,226425606,2),(1569,246988806,1),(1569,257875207,2),(1569,278438407,1),(1569,289324808,2),(1569,309888008,1),(1569,320774409,2),(1569,341337609,1),(1569,352224009,2),(1569,372787210,1),(1569,386092810,2),(1569,404841611,1),(1569,417542411,2),(1569,436291212,1),(1569,447177612,2),(1569,467740812,1),(1569,478627212,2),(1569,499190413,1),(1569,510076813,2),(1569,530035213,1),(1569,542736013,2),(1569,562089613,1),(1569,574790414,2),(1569,594144014,1),(1569,606240014,2),(1569,625593614,1),(1569,637689615,2),(1569,657043215,1),(1569,670348816,2),(1569,686678416,1),(1569,701798416,2),(1569,718128017,1),(1569,733248017,2),(1569,749577618,1),(1569,764697618,2),(1569,781027219,1),(1569,796147219,2),(1569,812476819,1),(1569,828201620,2),(1569,844531220,1),(1569,859651220,2),(1569,875980821,1),(1569,891100821,2),(1569,907430421,1),(1569,922550422,2),(1569,938880022,1),(1569,954000022,2),(1569,967305622,1),(1569,985449622,2),(1569,1002384022,1),(1569,1017504022,2),(1569,1033833622,1),(1569,1048953622,2),(1569,1065283222,1),(1569,1080403222,2),(1569,1096732822,1),(1569,1111852822,2),(1569,1128182422,1),(1569,1143907223,2),(1569,1159632023,1),(1569,1174752023,2),(1569,1191686423,1),(1569,1207411223,2),(1569,1223136023,1),(1569,1238860824,2),(1569,1254585624,1),(1569,1270310424,2),(1569,1286035224,1),(1569,1301760024,2),(1569,1317484824,1),(1569,1333209624,2),(1569,1349539225,1),(1569,1365264025,2),(1569,1380988825,1),(1569,1396713625,2),(1569,1412438425,1),(1569,1428163225,2),(1569,1443888026,1),(1569,1459612826,2),(1569,1475337626,1),(1569,1491062427,2),(1569,1506787227,1),(1569,1522512027,2),(1569,1538841627,1),(1569,1554566427,2),(1569,1570291227,1),(1569,1586016027,2),(1569,1601740827,1),(1569,1617465627,2),(1569,1633190427,1),(1569,1648915227,2),(1569,1664640027,1),(1569,1680364827,2),(1569,1696089627,1),(1569,1712419227,2),(1569,1728144027,1),(1569,1743868827,2),(1569,1759593627,1),(1569,1775318427,2),(1569,1791043227,1),(1569,1806768027,2),(1569,1822492827,1),(1569,1838217627,2),(1569,1853942427,1),(1569,1869667227,2),(1569,1885996827,1),(1569,1901721627,2),(1569,1917446427,1),(1569,1933171227,2),(1569,1948896027,1),(1569,1964620827,2),(1569,1980345627,1),(1569,1996070427,2),(1569,2011795227,1),(1569,2027520027,2),(1569,2043244827,1),(1569,2058969627,2),(1569,2075299227,1),(1569,2091024027,2),(1569,2106748827,1),(1569,2122473627,2),(1569,2138198427,1),(1570,-2147483648,3),(1570,-1672558200,1),(1570,-1665387000,2),(1570,-883639800,1),(1570,-876123000,2),(1570,-860398200,1),(1570,-844673400,2),(1570,-828343800,1),(1570,-813223800,2),(1571,-2147483648,3),(1571,-1672555500,1),(1571,-1665384300,2),(1571,-883637100,1),(1571,-876120300,2),(1571,-860395500,1),(1571,-844670700,2),(1571,-836469900,3),(1571,152039703,1),(1571,162926104,2),(1571,436295712,1),(1571,447182112,2),(1571,690311716,1),(1571,699383716,2),(1571,1165079723,1),(1571,1174756523,2),(1571,1193505323,1),(1571,1206810923,2),(1571,1224954923,1),(1571,1238260524,2),(1572,-2147483648,3),(1572,-1680508800,1),(1572,-1665388800,2),(1572,-1646640000,1),(1572,-1635753600,2),(1572,-1615190400,1),(1572,-1604304000,2),(1572,-1583920800,3),(1572,-883641600,1),(1572,-876124800,2),(1572,-860400000,1),(1572,-844675200,2),(1572,-828345600,1),(1572,-813225600,2),(1572,-94730400,3),(1572,-71136000,1),(1572,-55411200,2),(1572,-37267200,1),(1572,-25776000,2),(1572,-5817600,1),(1572,5673600,2),(1572,25632000,1),(1572,37728000,2),(1572,57686400,1),(1572,67968000,2),(1572,89136001,1),(1572,100022402,2),(1572,120585602,1),(1572,131472003,2),(1572,152035203,1),(1572,162921604,2),(1572,183484804,1),(1572,194976005,2),(1572,215539205,1),(1572,226425606,2),(1572,246988806,1),(1572,257875207,2),(1572,278438407,1),(1572,289324808,2),(1572,309888008,1),(1572,320774409,2),(1572,341337609,1),(1572,352224009,2),(1572,372787210,1),(1572,386092810,2),(1572,404841611,1),(1572,417542411,2),(1572,436291212,1),(1572,447177612,2),(1572,467740812,1),(1572,478627212,2),(1572,499190413,1),(1572,510076813,2),(1572,530035213,1),(1572,542736013,2),(1572,562089613,1),(1572,574790414,2),(1572,594144014,1),(1572,606240014,2),(1572,625593614,1),(1572,637689615,2),(1572,657043215,1),(1572,670348816,2),(1572,686678416,1),(1572,701798416,2),(1572,718128017,1),(1572,733248017,2),(1572,749577618,1),(1572,764697618,2),(1572,781027219,1),(1572,796147219,2),(1572,812476819,1),(1572,828201620,2),(1572,844531220,1),(1572,859651220,2),(1572,875980821,1),(1572,891100821,2),(1572,907430421,1),(1572,922550422,2),(1572,938880022,1),(1572,954000022,2),(1572,967305622,1),(1572,985449622,2),(1572,1002384022,1),(1572,1017504022,2),(1572,1033833622,1),(1572,1048953622,2),(1572,1065283222,1),(1572,1080403222,2),(1572,1096732822,1),(1572,1111852822,2),(1572,1128182422,1),(1572,1143907223,2),(1572,1159632023,1),(1572,1174752023,2),(1572,1191686423,1),(1572,1207411223,2),(1572,1223136023,1),(1572,1238860824,2),(1572,1254585624,1),(1572,1270310424,2),(1572,1286035224,1),(1572,1301760024,2),(1572,1317484824,1),(1572,1333209624,2),(1572,1349539225,1),(1572,1365264025,2),(1572,1380988825,1),(1572,1396713625,2),(1572,1412438425,1),(1572,1428163225,2),(1572,1443888026,1),(1572,1459612826,2),(1572,1475337626,1),(1572,1491062427,2),(1572,1506787227,1),(1572,1522512027,2),(1572,1538841627,1),(1572,1554566427,2),(1572,1570291227,1),(1572,1586016027,2),(1572,1601740827,1),(1572,1617465627,2),(1572,1633190427,1),(1572,1648915227,2),(1572,1664640027,1),(1572,1680364827,2),(1572,1696089627,1),(1572,1712419227,2),(1572,1728144027,1),(1572,1743868827,2),(1572,1759593627,1),(1572,1775318427,2),(1572,1791043227,1),(1572,1806768027,2),(1572,1822492827,1),(1572,1838217627,2),(1572,1853942427,1),(1572,1869667227,2),(1572,1885996827,1),(1572,1901721627,2),(1572,1917446427,1),(1572,1933171227,2),(1572,1948896027,1),(1572,1964620827,2),(1572,1980345627,1),(1572,1996070427,2),(1572,2011795227,1),(1572,2027520027,2),(1572,2043244827,1),(1572,2058969627,2),(1572,2075299227,1),(1572,2091024027,2),(1572,2106748827,1),(1572,2122473627,2),(1572,2138198427,1),(1573,-2147483648,1),(1573,352216809,3),(1573,372785410,2),(1573,384273010,3),(1573,404839811,2),(1573,415722611,3),(1573,436289412,2),(1573,447172212,3),(1573,467739012,2),(1573,478621812,3),(1573,499188613,4),(1573,511282813,3),(1573,530033413,4),(1573,542732413,3),(1573,562087813,4),(1573,574786814,3),(1573,594142214,4),(1573,606236414,3),(1573,625591814,4),(1573,636476415,3),(1573,657041415,4),(1573,667926016,3),(1573,688491016,4),(1573,699375616,3),(1573,719940617,4),(1573,731430017,3),(1573,751995018,4),(1573,762879618,3),(1573,783444619,4),(1573,794329219,3),(1573,814894219,4),(1573,828198020,3),(1573,846343820,4),(1573,859647620,3),(1573,877793421,4),(1573,891097221,3),(1573,909243021,4),(1573,922546822,3),(1573,941297422,4),(1573,953996422,3),(1573,967303822,4),(1573,985446022,3),(1573,1004196622,4),(1573,1017500422,3),(1573,1035646222,4),(1573,1048950022,3),(1573,1067095822,4),(1573,1080399622,3),(1573,1099150222,4),(1573,1111849222,3),(1573,1130599822,4),(1573,1143903623,3),(1573,1162049423,4),(1573,1174748423,3),(1573,1193499023,4),(1573,1207407623,3),(1573,1223134223,4),(1573,1238857224,3),(1573,1254583824,4),(1573,1270306824,3),(1573,1286033424,4),(1573,1301756424,3),(1573,1317483024,4),(1573,1333206024,3),(1573,1349537425,4),(1573,1365260425,3),(1573,1380987025,4),(1573,1396710025,3),(1573,1412436625,4),(1573,1428159625,3),(1573,1443886226,4),(1573,1459609226,3),(1573,1475335826,4),(1573,1491058827,3),(1573,1506785427,4),(1573,1522508427,3),(1573,1538839827,4),(1573,1554562827,3),(1573,1570289427,4),(1573,1586012427,3),(1573,1601739027,4),(1573,1617462027,3),(1573,1633188627,4),(1573,1648911627,3),(1573,1664638227,4),(1573,1680361227,3),(1573,1696087827,4),(1573,1712415627,3),(1573,1728142227,4),(1573,1743865227,3),(1573,1759591827,4),(1573,1775314827,3),(1573,1791041427,4),(1573,1806764427,3),(1573,1822491027,4),(1573,1838214027,3),(1573,1853940627,4),(1573,1869663627,3),(1573,1885995027,4),(1573,1901718027,3),(1573,1917444627,4),(1573,1933167627,3),(1573,1948894227,4),(1573,1964617227,3),(1573,1980343827,4),(1573,1996066827,3),(1573,2011793427,4),(1573,2027516427,3),(1573,2043243027,4),(1573,2058966027,3),(1573,2075297427,4),(1573,2091020427,3),(1573,2106747027,4),(1573,2122470027,3),(1573,2138196627,4),(1574,-2147483648,3),(1574,-1672560000,1),(1574,-1665388800,2),(1574,-883641600,1),(1574,-876124800,2),(1574,-860400000,1),(1574,-844675200,2),(1574,-828345600,1),(1574,-813225600,2),(1574,31500000,3),(1574,57686400,1),(1574,67968000,2),(1574,625593614,1),(1574,636480015,2),(1574,657043215,1),(1574,667929616,2),(1574,688492816,1),(1574,699379216,2),(1574,709912816,3),(1574,719942417,1),(1574,731433617,2),(1574,751996818,1),(1574,762883218,2),(1575,-2147483648,1),(1575,352216809,3),(1575,372785410,2),(1575,384273010,3),(1575,404839811,2),(1575,415722611,3),(1575,436289412,2),(1575,447172212,3),(1575,467739012,2),(1575,478621812,3),(1575,499188613,4),(1575,511282813,3),(1575,530033413,4),(1575,542732413,3),(1575,562087813,4),(1575,574786814,3),(1575,594142214,4),(1575,606236414,3),(1575,625591814,4),(1575,636476415,3),(1575,657041415,4),(1575,667926016,3),(1575,688491016,4),(1575,699375616,3),(1575,719940617,4),(1575,731430017,3),(1575,751995018,4),(1575,762879618,3),(1575,783444619,4),(1575,794329219,3),(1575,814894219,4),(1575,828198020,3),(1575,846343820,4),(1575,859647620,3),(1575,877793421,4),(1575,891097221,3),(1575,909243021,4),(1575,922546822,3),(1575,941297422,4),(1575,953996422,3),(1575,967303822,4),(1575,985446022,3),(1575,1004196622,4),(1575,1017500422,3),(1575,1035646222,4),(1575,1048950022,3),(1575,1067095822,4),(1575,1080399622,3),(1575,1099150222,4),(1575,1111849222,3),(1575,1130599822,4),(1575,1143903623,3),(1575,1162049423,4),(1575,1174748423,3),(1575,1193499023,4),(1575,1207407623,3),(1575,1223134223,4),(1575,1238857224,3),(1575,1254583824,4),(1575,1270306824,3),(1575,1286033424,4),(1575,1301756424,3),(1575,1317483024,4),(1575,1333206024,3),(1575,1349537425,4),(1575,1365260425,3),(1575,1380987025,4),(1575,1396710025,3),(1575,1412436625,4),(1575,1428159625,3),(1575,1443886226,4),(1575,1459609226,3),(1575,1475335826,4),(1575,1491058827,3),(1575,1506785427,4),(1575,1522508427,3),(1575,1538839827,4),(1575,1554562827,3),(1575,1570289427,4),(1575,1586012427,3),(1575,1601739027,4),(1575,1617462027,3),(1575,1633188627,4),(1575,1648911627,3),(1575,1664638227,4),(1575,1680361227,3),(1575,1696087827,4),(1575,1712415627,3),(1575,1728142227,4),(1575,1743865227,3),(1575,1759591827,4),(1575,1775314827,3),(1575,1791041427,4),(1575,1806764427,3),(1575,1822491027,4),(1575,1838214027,3),(1575,1853940627,4),(1575,1869663627,3),(1575,1885995027,4),(1575,1901718027,3),(1575,1917444627,4),(1575,1933167627,3),(1575,1948894227,4),(1575,1964617227,3),(1575,1980343827,4),(1575,1996066827,3),(1575,2011793427,4),(1575,2027516427,3),(1575,2043243027,4),(1575,2058966027,3),(1575,2075297427,4),(1575,2091020427,3),(1575,2106747027,4),(1575,2122470027,3),(1575,2138196627,4),(1576,-2147483648,3),(1576,-1672560000,1),(1576,-1665388800,2),(1576,-883641600,1),(1576,-876124800,2),(1576,-860400000,1),(1576,-844675200,2),(1576,-828345600,1),(1576,-813225600,2),(1576,31500000,3),(1576,57686400,1),(1576,67968000,2),(1576,89136001,1),(1576,100022402,2),(1576,120585602,1),(1576,131472003,2),(1576,152035203,1),(1576,162921604,2),(1576,183484804,1),(1576,194976005,2),(1576,215539205,1),(1576,226425606,2),(1576,246988806,1),(1576,257875207,2),(1576,278438407,1),(1576,289324808,2),(1576,309888008,1),(1576,320774409,2),(1576,341337609,1),(1576,352224009,2),(1576,372787210,1),(1576,384278410,2),(1576,404841611,1),(1576,415728011,2),(1576,436291212,1),(1576,447177612,2),(1576,467740812,1),(1576,478627212,2),(1576,499190413,1),(1576,511286413,2),(1576,530035213,1),(1576,542736013,2),(1576,561484813,1),(1576,574790414,2),(1576,594144014,1),(1576,606240014,2),(1576,625593614,1),(1576,637689615,2),(1576,657043215,1),(1576,667929616,2),(1576,688492816,1),(1576,699379216,2),(1576,719942417,1),(1576,731433617,2),(1576,751996818,1),(1576,762883218,2),(1576,783446419,1),(1576,796147219,2),(1576,814896019,1),(1576,828201620,2),(1576,846345620,1),(1576,859651220,2),(1576,877795221,1),(1576,891100821,2),(1576,909244821,1),(1576,922550422,2),(1576,941299222,1),(1576,954000022,2),(1576,967305622,1),(1576,985449622,2),(1576,1004198422,1),(1576,1017504022,2),(1576,1035648022,1),(1576,1048953622,2),(1576,1067097622,1),(1576,1080403222,2),(1576,1099152022,1),(1576,1111852822,2),(1576,1130601622,1),(1576,1143907223,2),(1576,1162051223,1),(1576,1174752023,2),(1576,1193500823,1),(1576,1207411223,2),(1576,1223136023,1),(1576,1238860824,2),(1576,1254585624,1),(1576,1270310424,2),(1576,1286035224,1),(1576,1301760024,2),(1576,1317484824,1),(1576,1333209624,2),(1576,1349539225,1),(1576,1365264025,2),(1576,1380988825,1),(1576,1396713625,2),(1576,1412438425,1),(1576,1428163225,2),(1576,1443888026,1),(1576,1459612826,2),(1576,1475337626,1),(1576,1491062427,2),(1576,1506787227,1),(1576,1522512027,2),(1576,1538841627,1),(1576,1554566427,2),(1576,1570291227,1),(1576,1586016027,2),(1576,1601740827,1),(1576,1617465627,2),(1576,1633190427,1),(1576,1648915227,2),(1576,1664640027,1),(1576,1680364827,2),(1576,1696089627,1),(1576,1712419227,2),(1576,1728144027,1),(1576,1743868827,2),(1576,1759593627,1),(1576,1775318427,2),(1576,1791043227,1),(1576,1806768027,2),(1576,1822492827,1),(1576,1838217627,2),(1576,1853942427,1),(1576,1869667227,2),(1576,1885996827,1),(1576,1901721627,2),(1576,1917446427,1),(1576,1933171227,2),(1576,1948896027,1),(1576,1964620827,2),(1576,1980345627,1),(1576,1996070427,2),(1576,2011795227,1),(1576,2027520027,2),(1576,2043244827,1),(1576,2058969627,2),(1576,2075299227,1),(1576,2091024027,2),(1576,2106748827,1),(1576,2122473627,2),(1576,2138198427,1),(1577,-2147483648,3),(1577,-1672560000,1),(1577,-1665388800,2),(1577,-883641600,1),(1577,-876124800,2),(1577,-860400000,1),(1577,-844675200,2),(1577,-828345600,1),(1577,-813225600,2),(1577,31500000,3),(1577,57686400,1),(1577,67968000,2),(1577,89136001,1),(1577,100022402,2),(1577,120585602,1),(1577,131472003,2),(1577,152035203,1),(1577,162921604,2),(1577,183484804,1),(1577,194976005,2),(1577,215539205,1),(1577,226425606,2),(1577,246988806,1),(1577,257875207,2),(1577,278438407,1),(1577,289324808,2),(1577,309888008,1),(1577,320774409,2),(1577,341337609,1),(1577,352224009,2),(1577,372787210,1),(1577,386697610,2),(1577,404841611,1),(1577,415728011,2),(1577,436291212,1),(1577,447177612,2),(1577,467740812,1),(1577,478627212,2),(1577,499190413,1),(1577,511286413,2),(1577,530035213,1),(1577,542736013,2),(1577,562089613,1),(1577,574790414,2),(1577,594144014,1),(1577,606240014,2),(1577,625593614,1),(1577,636480015,2),(1577,657043215,1),(1577,667929616,2),(1577,688492816,1),(1577,699379216,2),(1577,719942417,1),(1577,731433617,2),(1577,751996818,1),(1577,762883218,2),(1577,783446419,1),(1577,794332819,2),(1577,814896019,1),(1577,828201620,2),(1577,846345620,1),(1577,859651220,2),(1577,877795221,1),(1577,891100821,2),(1577,909244821,1),(1577,922550422,2),(1577,941299222,1),(1577,954000022,2),(1577,967305622,1),(1577,985449622,2),(1577,1004198422,1),(1577,1017504022,2),(1577,1035648022,1),(1577,1048953622,2),(1577,1067097622,1),(1577,1080403222,2),(1577,1099152022,1),(1577,1111852822,2),(1577,1130601622,1),(1577,1143907223,2),(1577,1162051223,1),(1577,1174752023,2),(1577,1193500823,1),(1577,1207411223,2),(1577,1223136023,1),(1577,1238860824,2),(1577,1254585624,1),(1577,1270310424,2),(1577,1286035224,1),(1577,1301760024,2),(1577,1317484824,1),(1577,1333209624,2),(1577,1349539225,1),(1577,1365264025,2),(1577,1380988825,1),(1577,1396713625,2),(1577,1412438425,1),(1577,1428163225,2),(1577,1443888026,1),(1577,1459612826,2),(1577,1475337626,1),(1577,1491062427,2),(1577,1506787227,1),(1577,1522512027,2),(1577,1538841627,1),(1577,1554566427,2),(1577,1570291227,1),(1577,1586016027,2),(1577,1601740827,1),(1577,1617465627,2),(1577,1633190427,1),(1577,1648915227,2),(1577,1664640027,1),(1577,1680364827,2),(1577,1696089627,1),(1577,1712419227,2),(1577,1728144027,1),(1577,1743868827,2),(1577,1759593627,1),(1577,1775318427,2),(1577,1791043227,1),(1577,1806768027,2),(1577,1822492827,1),(1577,1838217627,2),(1577,1853942427,1),(1577,1869667227,2),(1577,1885996827,1),(1577,1901721627,2),(1577,1917446427,1),(1577,1933171227,2),(1577,1948896027,1),(1577,1964620827,2),(1577,1980345627,1),(1577,1996070427,2),(1577,2011795227,1),(1577,2027520027,2),(1577,2043244827,1),(1577,2058969627,2),(1577,2075299227,1),(1577,2091024027,2),(1577,2106748827,1),(1577,2122473627,2),(1577,2138198427,1),(1578,-2147483648,3),(1578,-1672558200,1),(1578,-1665387000,2),(1578,-883639800,1),(1578,-876123000,2),(1578,-860398200,1),(1578,-844673400,2),(1578,-828343800,1),(1578,-813223800,2),(1579,-2147483648,3),(1579,-1672552800,1),(1579,-1665381600,2),(1579,-883634400,1),(1579,-876117600,2),(1579,-860392800,1),(1579,-844668000,2),(1579,-836467200,3),(1579,152042403,1),(1579,162928804,2),(1579,436298412,1),(1579,447184812,2),(1579,690314416,1),(1579,699386416,2),(1579,1165082423,1),(1579,1174759223,2),(1579,1193508023,1),(1579,1206813623,2),(1579,1224957623,1),(1579,1238263224,2),(1580,-2147483648,3),(1580,-1672560000,1),(1580,-1665388800,2),(1580,-883641600,1),(1580,-876124800,2),(1580,-860400000,1),(1580,-844675200,2),(1580,-828345600,1),(1580,-813225600,2),(1580,31500000,3),(1580,57686400,1),(1580,67968000,2),(1580,625593614,1),(1580,636480015,2),(1580,657043215,1),(1580,667929616,2),(1580,688492816,1),(1580,699379216,2),(1581,-2147483648,3),(1581,-1672558200,1),(1581,-1665387000,2),(1581,-883639800,1),(1581,-876123000,2),(1581,-860398200,1),(1581,-844673400,2),(1581,-828343800,1),(1581,-813223800,2),(1581,31501800,3),(1581,57688200,1),(1581,67969800,2),(1581,89137801,1),(1581,100024202,2),(1581,120587402,1),(1581,131473803,2),(1581,152037003,1),(1581,162923404,2),(1581,183486604,1),(1581,194977805,2),(1581,215541005,1),(1581,226427406,2),(1581,246990606,1),(1581,257877007,2),(1581,278440207,1),(1581,289326608,2),(1581,309889808,1),(1581,320776209,2),(1581,341339409,1),(1581,352225809,2),(1581,372789010,1),(1581,384280210,2),(1581,404843411,1),(1581,415729811,2),(1581,436293012,1),(1581,447179412,2),(1581,467742612,1),(1581,478629012,2),(1581,499192213,1),(1581,511288213,2),(1581,530037013,1),(1581,542737813,2),(1581,562091413,1),(1581,574792214,2),(1581,594145814,1),(1581,606241814,2),(1581,625595414,1),(1581,637691415,2),(1581,657045015,1),(1581,667931416,2),(1581,688494616,1),(1581,701195416,2),(1581,719944217,1),(1581,731435417,2),(1581,751998618,1),(1581,764094618,2),(1581,783448219,1),(1581,796149019,2),(1581,814897819,1),(1581,828203420,2),(1581,846347420,1),(1581,859653020,2),(1581,877797021,1),(1581,891102621,2),(1581,909246621,1),(1581,922552222,2),(1581,941301022,1),(1581,954001822,2),(1581,972750622,1),(1581,985451422,2),(1581,1004200222,1),(1581,1017505822,2),(1581,1035649822,1),(1581,1048955422,2),(1581,1067099422,1),(1581,1080405022,2),(1581,1099153822,1),(1581,1111854622,2),(1581,1130603422,1),(1581,1143909023,2),(1581,1162053023,1),(1581,1174753823,2),(1581,1193502623,1),(1581,1207413023,2),(1581,1223137823,1),(1581,1238862624,2),(1581,1254587424,1),(1581,1270312224,2),(1581,1286037024,1),(1581,1301761824,2),(1581,1317486624,1),(1581,1333211424,2),(1581,1349541025,1),(1581,1365265825,2),(1581,1380990625,1),(1581,1396715425,2),(1581,1412440225,1),(1581,1428165025,2),(1581,1443889826,1),(1581,1459614626,2),(1581,1475339426,1),(1581,1491064227,2),(1581,1506789027,1),(1581,1522513827,2),(1581,1538843427,1),(1581,1554568227,2),(1581,1570293027,1),(1581,1586017827,2),(1581,1601742627,1),(1581,1617467427,2),(1581,1633192227,1),(1581,1648917027,2),(1581,1664641827,1),(1581,1680366627,2),(1581,1696091427,1),(1581,1712421027,2),(1581,1728145827,1),(1581,1743870627,2),(1581,1759595427,1),(1581,1775320227,2),(1581,1791045027,1),(1581,1806769827,2),(1581,1822494627,1),(1581,1838219427,2),(1581,1853944227,1),(1581,1869669027,2),(1581,1885998627,1),(1581,1901723427,2),(1581,1917448227,1),(1581,1933173027,2),(1581,1948897827,1),(1581,1964622627,2),(1581,1980347427,1),(1581,1996072227,2),(1581,2011797027,1),(1581,2027521827,2),(1581,2043246627,1),(1581,2058971427,2),(1581,2075301027,1),(1581,2091025827,2),(1581,2106750627,1),(1581,2122475427,2),(1581,2138200227,1),(1582,-2147483648,3),(1582,-1672560000,1),(1582,-1665388800,2),(1582,-883641600,1),(1582,-876124800,2),(1582,-860400000,1),(1582,-844675200,2),(1582,-828345600,1),(1582,-813225600,2),(1582,31500000,3),(1582,57686400,1),(1582,67968000,2),(1582,89136001,1),(1582,100022402,2),(1582,120585602,1),(1582,131472003,2),(1582,152035203,1),(1582,162921604,2),(1582,183484804,1),(1582,194976005,2),(1582,215539205,1),(1582,226425606,2),(1582,246988806,1),(1582,257875207,2),(1582,278438407,1),(1582,289324808,2),(1582,309888008,1),(1582,320774409,2),(1582,341337609,1),(1582,352224009,2),(1582,372787210,1),(1582,386697610,2),(1582,404841611,1),(1582,415728011,2),(1582,436291212,1),(1582,447177612,2),(1582,467740812,1),(1582,478627212,2),(1582,499190413,1),(1582,511286413,2),(1582,530035213,1),(1582,542736013,2),(1582,562089613,1),(1582,574790414,2),(1582,594144014,1),(1582,606240014,2),(1582,625593614,1),(1582,636480015,2),(1582,657043215,1),(1582,667929616,2),(1582,688492816,1),(1582,699379216,2),(1582,719942417,1),(1582,731433617,2),(1582,751996818,1),(1582,762883218,2),(1582,783446419,1),(1582,794332819,2),(1582,814896019,1),(1582,828201620,2),(1582,846345620,1),(1582,859651220,2),(1582,877795221,1),(1582,891100821,2),(1582,909244821,1),(1582,922550422,2),(1582,941299222,1),(1582,954000022,2),(1582,967305622,1),(1582,985449622,2),(1582,1004198422,1),(1582,1017504022,2),(1582,1035648022,1),(1582,1048953622,2),(1582,1067097622,1),(1582,1080403222,2),(1582,1099152022,1),(1582,1111852822,2),(1582,1130601622,1),(1582,1143907223,2),(1582,1162051223,1),(1582,1174752023,2),(1582,1193500823,1),(1582,1207411223,2),(1582,1223136023,1),(1582,1238860824,2),(1582,1254585624,1),(1582,1270310424,2),(1582,1286035224,1),(1582,1301760024,2),(1582,1317484824,1),(1582,1333209624,2),(1582,1349539225,1),(1582,1365264025,2),(1582,1380988825,1),(1582,1396713625,2),(1582,1412438425,1),(1582,1428163225,2),(1582,1443888026,1),(1582,1459612826,2),(1582,1475337626,1),(1582,1491062427,2),(1582,1506787227,1),(1582,1522512027,2),(1582,1538841627,1),(1582,1554566427,2),(1582,1570291227,1),(1582,1586016027,2),(1582,1601740827,1),(1582,1617465627,2),(1582,1633190427,1),(1582,1648915227,2),(1582,1664640027,1),(1582,1680364827,2),(1582,1696089627,1),(1582,1712419227,2),(1582,1728144027,1),(1582,1743868827,2),(1582,1759593627,1),(1582,1775318427,2),(1582,1791043227,1),(1582,1806768027,2),(1582,1822492827,1),(1582,1838217627,2),(1582,1853942427,1),(1582,1869667227,2),(1582,1885996827,1),(1582,1901721627,2),(1582,1917446427,1),(1582,1933171227,2),(1582,1948896027,1),(1582,1964620827,2),(1582,1980345627,1),(1582,1996070427,2),(1582,2011795227,1),(1582,2027520027,2),(1582,2043244827,1),(1582,2058969627,2),(1582,2075299227,1),(1582,2091024027,2),(1582,2106748827,1),(1582,2122473627,2),(1582,2138198427,1),(1583,-2147483648,3),(1583,-1680508800,1),(1583,-1665388800,2),(1583,-1646640000,1),(1583,-1635753600,2),(1583,-1615190400,1),(1583,-1604304000,2),(1583,-1583920800,3),(1583,-883641600,1),(1583,-876124800,2),(1583,-860400000,1),(1583,-844675200,2),(1583,-828345600,1),(1583,-813225600,2),(1583,-94730400,3),(1583,-71136000,1),(1583,-55411200,2),(1583,-37267200,1),(1583,-25776000,2),(1583,-5817600,1),(1583,5673600,2),(1583,25632000,1),(1583,37728000,2),(1583,57686400,1),(1583,67968000,2),(1583,89136001,1),(1583,100022402,2),(1583,120585602,1),(1583,131472003,2),(1583,152035203,1),(1583,162921604,2),(1583,183484804,1),(1583,194976005,2),(1583,215539205,1),(1583,226425606,2),(1583,246988806,1),(1583,257875207,2),(1583,278438407,1),(1583,289324808,2),(1583,309888008,1),(1583,320774409,2),(1583,341337609,1),(1583,352224009,2),(1583,372787210,1),(1583,386092810,2),(1583,404841611,1),(1583,417542411,2),(1583,436291212,1),(1583,447177612,2),(1583,467740812,1),(1583,478627212,2),(1583,499190413,1),(1583,510076813,2),(1583,530035213,1),(1583,542736013,2),(1583,562089613,1),(1583,574790414,2),(1583,594144014,1),(1583,606240014,2),(1583,625593614,1),(1583,637689615,2),(1583,657043215,1),(1583,670348816,2),(1583,686678416,1),(1583,701798416,2),(1583,718128017,1),(1583,733248017,2),(1583,749577618,1),(1583,764697618,2),(1583,781027219,1),(1583,796147219,2),(1583,812476819,1),(1583,828201620,2),(1583,844531220,1),(1583,859651220,2),(1583,875980821,1),(1583,891100821,2),(1583,907430421,1),(1583,922550422,2),(1583,938880022,1),(1583,954000022,2),(1583,967305622,1),(1583,985449622,2),(1583,1002384022,1),(1583,1017504022,2),(1583,1033833622,1),(1583,1048953622,2),(1583,1065283222,1),(1583,1080403222,2),(1583,1096732822,1),(1583,1111852822,2),(1583,1128182422,1),(1583,1143907223,2),(1583,1159632023,1),(1583,1174752023,2),(1583,1191686423,1),(1583,1207411223,2),(1583,1223136023,1),(1583,1238860824,2),(1583,1254585624,1),(1583,1270310424,2),(1583,1286035224,1),(1583,1301760024,2),(1583,1317484824,1),(1583,1333209624,2),(1583,1349539225,1),(1583,1365264025,2),(1583,1380988825,1),(1583,1396713625,2),(1583,1412438425,1),(1583,1428163225,2),(1583,1443888026,1),(1583,1459612826,2),(1583,1475337626,1),(1583,1491062427,2),(1583,1506787227,1),(1583,1522512027,2),(1583,1538841627,1),(1583,1554566427,2),(1583,1570291227,1),(1583,1586016027,2),(1583,1601740827,1),(1583,1617465627,2),(1583,1633190427,1),(1583,1648915227,2),(1583,1664640027,1),(1583,1680364827,2),(1583,1696089627,1),(1583,1712419227,2),(1583,1728144027,1),(1583,1743868827,2),(1583,1759593627,1),(1583,1775318427,2),(1583,1791043227,1),(1583,1806768027,2),(1583,1822492827,1),(1583,1838217627,2),(1583,1853942427,1),(1583,1869667227,2),(1583,1885996827,1),(1583,1901721627,2),(1583,1917446427,1),(1583,1933171227,2),(1583,1948896027,1),(1583,1964620827,2),(1583,1980345627,1),(1583,1996070427,2),(1583,2011795227,1),(1583,2027520027,2),(1583,2043244827,1),(1583,2058969627,2),(1583,2075299227,1),(1583,2091024027,2),(1583,2106748827,1),(1583,2122473627,2),(1583,2138198427,1),(1584,-2147483648,3),(1584,-1672560000,1),(1584,-1665388800,2),(1584,-883641600,1),(1584,-876124800,2),(1584,-860400000,1),(1584,-844675200,2),(1584,-828345600,1),(1584,-813225600,2),(1584,31500000,3),(1584,57686400,1),(1584,67968000,2),(1584,89136001,1),(1584,100022402,2),(1584,120585602,1),(1584,131472003,2),(1584,152035203,1),(1584,162921604,2),(1584,183484804,1),(1584,194976005,2),(1584,215539205,1),(1584,226425606,2),(1584,246988806,1),(1584,257875207,2),(1584,278438407,1),(1584,289324808,2),(1584,309888008,1),(1584,320774409,2),(1584,341337609,1),(1584,352224009,2),(1584,372787210,1),(1584,384278410,2),(1584,404841611,1),(1584,415728011,2),(1584,436291212,1),(1584,447177612,2),(1584,467740812,1),(1584,478627212,2),(1584,499190413,1),(1584,511286413,2),(1584,530035213,1),(1584,542736013,2),(1584,561484813,1),(1584,574790414,2),(1584,594144014,1),(1584,606240014,2),(1584,625593614,1),(1584,637689615,2),(1584,657043215,1),(1584,667929616,2),(1584,688492816,1),(1584,699379216,2),(1584,719942417,1),(1584,731433617,2),(1584,751996818,1),(1584,762883218,2),(1584,783446419,1),(1584,796147219,2),(1584,814896019,1),(1584,828201620,2),(1584,846345620,1),(1584,859651220,2),(1584,877795221,1),(1584,891100821,2),(1584,909244821,1),(1584,922550422,2),(1584,941299222,1),(1584,954000022,2),(1584,967305622,1),(1584,985449622,2),(1584,1004198422,1),(1584,1017504022,2),(1584,1035648022,1),(1584,1048953622,2),(1584,1067097622,1),(1584,1080403222,2),(1584,1099152022,1),(1584,1111852822,2),(1584,1130601622,1),(1584,1143907223,2),(1584,1162051223,1),(1584,1174752023,2),(1584,1193500823,1),(1584,1207411223,2),(1584,1223136023,1),(1584,1238860824,2),(1584,1254585624,1),(1584,1270310424,2),(1584,1286035224,1),(1584,1301760024,2),(1584,1317484824,1),(1584,1333209624,2),(1584,1349539225,1),(1584,1365264025,2),(1584,1380988825,1),(1584,1396713625,2),(1584,1412438425,1),(1584,1428163225,2),(1584,1443888026,1),(1584,1459612826,2),(1584,1475337626,1),(1584,1491062427,2),(1584,1506787227,1),(1584,1522512027,2),(1584,1538841627,1),(1584,1554566427,2),(1584,1570291227,1),(1584,1586016027,2),(1584,1601740827,1),(1584,1617465627,2),(1584,1633190427,1),(1584,1648915227,2),(1584,1664640027,1),(1584,1680364827,2),(1584,1696089627,1),(1584,1712419227,2),(1584,1728144027,1),(1584,1743868827,2),(1584,1759593627,1),(1584,1775318427,2),(1584,1791043227,1),(1584,1806768027,2),(1584,1822492827,1),(1584,1838217627,2),(1584,1853942427,1),(1584,1869667227,2),(1584,1885996827,1),(1584,1901721627,2),(1584,1917446427,1),(1584,1933171227,2),(1584,1948896027,1),(1584,1964620827,2),(1584,1980345627,1),(1584,1996070427,2),(1584,2011795227,1),(1584,2027520027,2),(1584,2043244827,1),(1584,2058969627,2),(1584,2075299227,1),(1584,2091024027,2),(1584,2106748827,1),(1584,2122473627,2),(1584,2138198427,1),(1585,-2147483648,3),(1585,-1672552800,1),(1585,-1665381600,2),(1585,-883634400,1),(1585,-876117600,2),(1585,-860392800,1),(1585,-844668000,2),(1585,-836467200,3),(1585,152042403,1),(1585,162928804,2),(1585,436298412,1),(1585,447184812,2),(1585,690314416,1),(1585,699386416,2),(1585,1165082423,1),(1585,1174759223,2),(1585,1193508023,1),(1585,1206813623,2),(1585,1224957623,1),(1585,1238263224,2),(1586,-2147483648,3),(1586,-1672558200,1),(1586,-1665387000,2),(1586,-883639800,1),(1586,-876123000,2),(1586,-860398200,1),(1586,-844673400,2),(1586,-828343800,1),(1586,-813223800,2),(1586,31501800,3),(1586,57688200,1),(1586,67969800,2),(1586,89137801,1),(1586,100024202,2),(1586,120587402,1),(1586,131473803,2),(1586,152037003,1),(1586,162923404,2),(1586,183486604,1),(1586,194977805,2),(1586,215541005,1),(1586,226427406,2),(1586,246990606,1),(1586,257877007,2),(1586,278440207,1),(1586,289326608,2),(1586,309889808,1),(1586,320776209,2),(1586,341339409,1),(1586,352225809,2),(1586,372789010,1),(1586,386699410,2),(1586,404843411,1),(1586,415729811,2),(1586,436293012,1),(1586,447179412,2),(1586,467742612,1),(1586,478629012,2),(1586,499192213,1),(1586,511288213,2),(1586,530037013,1),(1586,542737813,2),(1586,562091413,1),(1586,574792214,2),(1586,594145814,1),(1586,606241814,2),(1586,625595414,1),(1586,636481815,2),(1586,657045015,1),(1586,667931416,2),(1586,688494616,1),(1586,699381016,2),(1586,719944217,1),(1586,731435417,2),(1586,751998618,1),(1586,762885018,2),(1586,783448219,1),(1586,794334619,2),(1586,814897819,1),(1586,828203420,2),(1586,846347420,1),(1586,859653020,2),(1586,877797021,1),(1586,891102621,2),(1586,909246621,1),(1586,922552222,2),(1586,941301022,1),(1586,946647022,4),(1586,954001822,2),(1586,972750622,1),(1586,985451422,2),(1586,1004200222,1),(1586,1017505822,2),(1586,1035649822,1),(1586,1048955422,2),(1586,1067099422,1),(1586,1080405022,2),(1586,1099153822,1),(1586,1111854622,2),(1586,1130603422,1),(1586,1143909023,2),(1586,1162053023,1),(1586,1174753823,2),(1586,1193502623,1),(1586,1207413023,2),(1586,1223137823,1),(1586,1238862624,2),(1586,1254587424,1),(1586,1270312224,2),(1586,1286037024,1),(1586,1301761824,2),(1586,1317486624,1),(1586,1333211424,2),(1586,1349541025,1),(1586,1365265825,2),(1586,1380990625,1),(1586,1396715425,2),(1586,1412440225,1),(1586,1428165025,2),(1586,1443889826,1),(1586,1459614626,2),(1586,1475339426,1),(1586,1491064227,2),(1586,1506789027,1),(1586,1522513827,2),(1586,1538843427,1),(1586,1554568227,2),(1586,1570293027,1),(1586,1586017827,2),(1586,1601742627,1),(1586,1617467427,2),(1586,1633192227,1),(1586,1648917027,2),(1586,1664641827,1),(1586,1680366627,2),(1586,1696091427,1),(1586,1712421027,2),(1586,1728145827,1),(1586,1743870627,2),(1586,1759595427,1),(1586,1775320227,2),(1586,1791045027,1),(1586,1806769827,2),(1586,1822494627,1),(1586,1838219427,2),(1586,1853944227,1),(1586,1869669027,2),(1586,1885998627,1),(1586,1901723427,2),(1586,1917448227,1),(1586,1933173027,2),(1586,1948897827,1),(1586,1964622627,2),(1586,1980347427,1),(1586,1996072227,2),(1586,2011797027,1),(1586,2027521827,2),(1586,2043246627,1),(1586,2058971427,2),(1586,2075301027,1),(1586,2091025827,2),(1586,2106750627,1),(1586,2122475427,2),(1586,2138200227,1),(1587,-2147483648,0),(1587,-1767209328,2),(1587,-1206950400,1),(1587,-1191355200,2),(1587,-1175367600,1),(1587,-1159819200,2),(1587,-633812400,1),(1587,-622062000,2),(1587,-602276400,1),(1587,-591825600,2),(1587,-570740400,1),(1587,-560203200,2),(1587,-539118000,1),(1587,-531345600,2),(1587,-191358000,1),(1587,-184190400,2),(1587,-155156400,1),(1587,-150062400,2),(1587,-128890800,1),(1587,-121118400,2),(1587,-99946800,1),(1587,-89582400,2),(1587,-68410800,1),(1587,-57960000,2),(1587,499755613,1),(1587,511243213,2),(1587,530600413,1),(1587,540273613,2),(1587,562136413,1),(1587,571204814,2),(1587,1214283623,3),(1587,1384056025,2),(1588,-2147483648,0),(1588,-1767217820,2),(1588,-1206961200,1),(1588,-1191366000,2),(1588,-1175378400,1),(1588,-1159830000,2),(1588,-633823200,1),(1588,-622072800,2),(1588,-602287200,1),(1588,-591836400,2),(1588,-570751200,1),(1588,-560214000,2),(1588,-539128800,1),(1588,-531356400,2),(1588,-191368800,1),(1588,-184201200,2),(1588,-155167200,1),(1588,-150073200,2),(1588,-128901600,1),(1588,-121129200,2),(1588,-99957600,1),(1588,-89593200,2),(1588,-68421600,1),(1588,-57970800,2),(1588,499744813,1),(1588,511232413,2),(1588,530589613,1),(1588,540262813,2),(1588,562125613,1),(1588,571194014,2),(1588,592970414,1),(1588,602038814,2),(1588,624420014,1),(1588,634698015,2),(1588,938916022,1),(1588,951613222,2),(1588,970970422,1),(1588,971571622,2),(1588,1003024822,1),(1588,1013907622,2),(1589,-2147483648,0),(1589,-1767214412,2),(1589,-1206957600,1),(1589,-1191362400,2),(1589,-1175374800,1),(1589,-1159826400,2),(1589,-633819600,1),(1589,-622069200,2),(1589,-602283600,1),(1589,-591832800,2),(1589,-570747600,1),(1589,-560210400,2),(1589,-539125200,1),(1589,-531352800,2),(1589,-195426000,1),(1589,-184197600,2),(1589,-155163600,1),(1589,-150069600,2),(1589,-128898000,1),(1589,-121125600,2),(1589,-99954000,1),(1589,-89589600,2),(1589,-68418000,1),(1589,-57967200,2),(1589,499748413,1),(1589,511236013,2),(1589,530593213,1),(1589,540266413,2),(1589,562129213,1),(1589,571197614,2),(1589,592974014,1),(1589,602042414,2),(1589,624423614,1),(1589,634701615,2),(1589,656478015,1),(1589,666756016,2),(1589,687927616,1),(1589,697600816,2),(1589,719982017,1),(1589,728445617,2),(1589,750826818,1),(1589,761709618,2),(1589,782276419,1),(1589,793159219,2),(1589,813726019,1),(1589,824004020,2),(1589,844570820,1),(1589,856058420,2),(1589,876106821,1),(1589,888717621,2),(1589,908074821,1),(1589,919562422,2),(1589,938919622,1),(1589,951616822,2),(1589,970974022,1),(1589,982461622,2),(1589,1003028422,1),(1589,1013911222,2),(1589,1036292422,1),(1589,1045360822,2),(1589,1066532422,1),(1589,1076810422,2),(1589,1099364422,1),(1589,1108864822,2),(1589,1129431622,1),(1589,1140314423,2),(1589,1162695623,1),(1589,1172368823,2),(1589,1192330823,1),(1589,1203213623,2),(1589,1224385223,1),(1589,1234663224,2),(1589,1255834824,1),(1589,1266717624,2),(1589,1287284424,1),(1589,1298167224,2),(1589,1318734024,1),(1589,1330221624,2),(1589,1350788425,1),(1589,1361066425,2),(1589,1382238025,1),(1589,1392516025,2),(1589,1413687625,1),(1589,1424570425,2),(1589,1445137226,1),(1589,1456020026,2),(1589,1476586826,1),(1589,1487469627,2),(1589,1508036427,1),(1589,1518919227,2),(1589,1541300427,1),(1589,1550368827,2),(1590,-2147483648,0),(1590,-1767211196,2),(1590,-1206954000,1),(1590,-1191358800,2),(1590,-1175371200,1),(1590,-1159822800,2),(1590,-633816000,1),(1590,-622065600,2),(1590,-602280000,1),(1590,-591829200,2),(1590,-570744000,1),(1590,-560206800,2),(1590,-539121600,1),(1590,-531349200,2),(1590,-191361600,1),(1590,-184194000,2),(1590,-155160000,1),(1590,-150066000,2),(1590,-128894400,1),(1590,-121122000,2),(1590,-99950400,1),(1590,-89586000,2),(1590,-68414400,1),(1590,-57963600,2),(1590,499752013,1),(1590,511239613,2),(1590,530596813,1),(1590,540270013,2),(1590,562132813,1),(1590,571201214,2),(1590,750830418,1),(1590,761713218,2),(1591,-1693706400,0),(1591,-1680483600,1),(1591,-1663455600,2),(1591,-1650150000,3),(1591,-1632006000,2),(1591,-1618700400,3),(1591,-938905200,2),(1591,-857257200,3),(1591,-844556400,2),(1591,-828226800,3),(1591,-812502000,2),(1591,-796777200,3),(1591,-781052400,2),(1591,-766623600,3),(1591,228877206,2),(1591,243997206,3),(1591,260326807,2),(1591,276051607,3),(1591,291776408,2),(1591,307501208,3),(1591,323830809,2),(1591,338950809,3),(1591,354675609,2),(1591,370400410,3),(1591,386125210,2),(1591,401850011,3),(1591,417574811,2),(1591,433299612,3),(1591,449024412,2),(1591,465354012,3),(1591,481078812,2),(1591,496803613,3),(1591,512528413,2),(1591,528253213,3),(1591,543978013,2),(1591,559702813,3),(1591,575427614,2),(1591,591152414,3),(1591,606877214,2),(1591,622602014,3),(1591,638326815,2),(1591,654656415,3),(1591,670381216,2),(1591,686106016,3),(1591,701830816,2),(1591,717555617,3),(1591,733280417,2),(1591,749005218,3),(1591,764730018,2),(1591,780454819,3),(1591,796179619,2),(1591,811904419,3),(1591,828234020,2),(1591,846378020,3),(1591,859683620,2),(1591,877827621,3),(1591,891133221,2),(1591,909277221,3),(1591,922582822,2),(1591,941331622,3),(1591,954032422,2),(1591,972781222,3),(1591,985482022,2),(1591,1004230822,3),(1591,1017536422,2),(1591,1035680422,3),(1591,1048986022,2),(1591,1067130022,3),(1591,1080435622,2),(1591,1099184422,3),(1591,1111885222,2),(1591,1130634022,3),(1591,1143334823,2),(1591,1162083623,3),(1591,1174784423,2),(1591,1193533223,3),(1591,1206838823,2),(1591,1224982823,3),(1591,1238288424,2),(1591,1256432424,3),(1591,1269738024,2),(1591,1288486824,3),(1591,1301187624,2),(1591,1319936424,3),(1591,1332637224,2),(1591,1351386025,3),(1591,1364691625,2),(1591,1382835625,3),(1591,1396141225,2),(1591,1414285225,3),(1591,1427590825,2),(1591,1445734826,3),(1591,1459040426,2),(1591,1477789226,3),(1591,1490490027,2),(1591,1509238827,3),(1591,1521939627,2),(1591,1540688427,3),(1591,1553994027,2),(1591,1572138027,3),(1591,1585443627,2),(1591,1603587627,3),(1591,1616893227,2),(1591,1635642027,3),(1591,1648342827,2),(1591,1667091627,3),(1591,1679792427,2),(1591,1698541227,3),(1591,1711846827,2),(1591,1729990827,3),(1591,1743296427,2),(1591,1761440427,3),(1591,1774746027,2),(1591,1792890027,3),(1591,1806195627,2),(1591,1824944427,3),(1591,1837645227,2),(1591,1856394027,3),(1591,1869094827,2),(1591,1887843627,3),(1591,1901149227,2),(1591,1919293227,3),(1591,1932598827,2),(1591,1950742827,3),(1591,1964048427,2),(1591,1982797227,3),(1591,1995498027,2),(1591,2014246827,3),(1591,2026947627,2),(1591,2045696427,3),(1591,2058397227,2),(1591,2077146027,3),(1591,2090451627,2),(1591,2108595627,3),(1591,2121901227,2),(1591,2140045227,3),(1592,-1633276800,0),(1592,-1615136400,1),(1592,-1601827200,0),(1592,-1583686800,1),(1592,-880214400,2),(1592,-769395600,3),(1592,-765392400,1),(1592,-84384000,0),(1592,-68662800,1),(1592,-52934400,0),(1592,-37213200,1),(1592,-21484800,0),(1592,-5763600,1),(1592,9964800,0),(1592,25686000,1),(1592,41414400,0),(1592,57740400,1),(1592,73468800,0),(1592,89190001,1),(1592,104918402,0),(1592,120639602,1),(1592,126691203,0),(1592,152089203,1),(1592,162374404,0),(1592,183538804,1),(1592,199267205,0),(1592,215593205,1),(1592,230716806,0),(1592,247042806,1),(1592,262771207,0),(1592,278492407,1),(1592,294220808,0),(1592,309942008,1),(1592,325670409,0),(1592,341391609,1),(1592,357120009,0),(1592,372841210,1),(1592,388569610,0),(1592,404895611,1),(1592,420019211,0),(1592,436345212,1),(1592,452073612,0),(1592,467794812,1),(1592,483523212,0),(1592,499244413,1),(1592,514972813,0),(1592,530694013,1),(1592,544608013,0),(1592,562143613,1),(1592,576057614,0),(1592,594198014,1),(1592,607507214,0),(1592,625647614,1),(1592,638956815,0),(1592,657097215,1),(1592,671011216,0),(1592,688546816,1),(1592,702460816,0),(1592,719996417,1),(1592,733910417,0),(1592,752050818,1),(1592,765360018,0),(1592,783500419,1),(1592,796809619,0),(1592,814950019,1),(1592,828864020,0),(1592,846399620,1),(1592,860313620,0),(1592,877849221,1),(1592,891763221,0),(1592,909298821,1),(1592,923212822,0),(1592,941353222,1),(1592,954662422,0),(1592,972802822,1),(1592,986112022,0),(1592,1004252422,1),(1592,1018166422,0),(1592,1035702022,1),(1592,1049616022,0),(1592,1067151622,1),(1592,1081065622,0),(1592,1099206022,1),(1592,1112515222,0),(1592,1130655622,1),(1592,1143964823,0),(1592,1162105223,1),(1592,1173600023,0),(1592,1194159623,1),(1592,1205049623,0),(1592,1225609223,1),(1592,1236499224,0),(1592,1257058824,1),(1592,1268553624,0),(1592,1289113224,1),(1592,1300003224,0),(1592,1320562824,1),(1592,1331452824,0),(1592,1352012425,1),(1592,1362902425,0),(1592,1383462025,1),(1592,1394352025,0),(1592,1414911625,1),(1592,1425801625,0),(1592,1446361226,1),(1592,1457856026,0),(1592,1478415626,1),(1592,1489305627,0),(1592,1509865227,1),(1592,1520755227,0),(1592,1541314827,1),(1592,1552204827,0),(1592,1572764427,1),(1592,1583654427,0),(1592,1604214027,1),(1592,1615708827,0),(1592,1636268427,1),(1592,1647158427,0),(1592,1667718027,1),(1592,1678608027,0),(1592,1699167627,1),(1592,1710057627,0),(1592,1730617227,1),(1592,1741507227,0),(1592,1762066827,1),(1592,1772956827,0),(1592,1793516427,1),(1592,1805011227,0),(1592,1825570827,1),(1592,1836460827,0),(1592,1857020427,1),(1592,1867910427,0),(1592,1888470027,1),(1592,1899360027,0),(1592,1919919627,1),(1592,1930809627,0),(1592,1951369227,1),(1592,1962864027,0),(1592,1983423627,1),(1592,1994313627,0),(1592,2014873227,1),(1592,2025763227,0),(1592,2046322827,1),(1592,2057212827,0),(1592,2077772427,1),(1592,2088662427,0),(1592,2109222027,1),(1592,2120112027,0),(1592,2140671627,1),(1593,-2147483648,0),(1593,-2131645536,2),(1593,-1696276800,1),(1593,-1680469200,2),(1593,-1632074400,1),(1593,-1615143600,2),(1593,-1566763200,1),(1593,-1557090000,2),(1593,-1535486400,1),(1593,-1524949200,2),(1593,-1504468800,1),(1593,-1493413200,2),(1593,-1472414400,1),(1593,-1461963600,2),(1593,-1440964800,1),(1593,-1429390800,2),(1593,-1409515200,1),(1593,-1396731600,2),(1593,-1376856000,1),(1593,-1366491600,2),(1593,-1346616000,1),(1593,-1333832400,2),(1593,-1313956800,1),(1593,-1303678800,2),(1593,-1282507200,1),(1593,-1272661200,2),(1593,-1251057600,1),(1593,-1240088400,2),(1593,-1219608000,1),(1593,-1207429200,2),(1593,-1188763200,1),(1593,-1175979600,2),(1593,-1157313600,1),(1593,-1143925200,2),(1593,-1124049600,1),(1593,-1113771600,2),(1593,-1091390400,1),(1593,-1081026000,2),(1593,-1059854400,1),(1593,-1050786000,2),(1593,-1030910400,1),(1593,-1018126800,2),(1593,-999460800,1),(1593,-986677200,2),(1593,-965592000,1),(1593,-955227600,2),(1593,-935956800,1),(1593,-923173200,2),(1593,-904507200,1),(1593,-891723600,2),(1593,-880221600,3),(1593,-769395600,4),(1593,-765399600,2),(1593,-747252000,1),(1593,-733950000,2),(1593,-715802400,1),(1593,-702500400,2),(1593,-684352800,1),(1593,-671050800,2),(1593,-652903200,1),(1593,-639601200,2),(1593,-589399200,1),(1593,-576097200,2),(1593,-557949600,1),(1593,-544647600,2),(1593,-526500000,1),(1593,-513198000,2),(1593,-495050400,1),(1593,-481748400,2),(1593,-431546400,1),(1593,-418244400,2),(1593,-400096800,1),(1593,-386794800,2),(1593,-368647200,1),(1593,-355345200,2),(1593,-337197600,1),(1593,-323895600,2),(1593,-242244000,1),(1593,-226522800,2),(1593,-210794400,1),(1593,-195073200,2),(1593,-179344800,1),(1593,-163623600,2),(1593,-147895200,1),(1593,-131569200,2),(1593,-116445600,1),(1593,-100119600,2),(1593,-84391200,1),(1593,-68670000,2),(1593,-52941600,1),(1593,-37220400,2),(1593,-21492000,1),(1593,-5770800,2),(1593,9957600,1),(1593,25678800,2),(1593,41407200,1),(1593,57733200,2),(1593,73461600,1),(1593,89182801,2),(1593,104911202,1),(1593,120632402,2),(1593,136360803,1),(1593,152082003,2),(1593,167810404,1),(1593,183531604,2),(1593,199260005,1),(1593,215586005,2),(1593,230709606,1),(1593,247035606,2),(1593,262764007,1),(1593,278485207,2),(1593,294213608,1),(1593,309934808,2),(1593,325663209,1),(1593,341384409,2),(1593,357112809,1),(1593,372834010,2),(1593,388562410,1),(1593,404888411,2),(1593,420012011,1),(1593,436338012,2),(1593,452066412,1),(1593,467787612,2),(1593,483516012,1),(1593,499237213,2),(1593,514965613,1),(1593,530686813,2),(1593,544600813,1),(1593,562136413,2),(1593,576050414,1),(1593,594190814,2),(1593,607500014,1),(1593,625640414,2),(1593,638949615,1),(1593,657090015,2),(1593,671004016,1),(1593,688539616,2),(1593,702453616,1),(1593,719989217,2),(1593,733903217,1),(1593,752043618,2),(1593,765352818,1),(1593,783493219,2),(1593,796802419,1),(1593,814942819,2),(1593,828856820,1),(1593,846392420,2),(1593,860306420,1),(1593,877842021,2),(1593,891756021,1),(1593,909291621,2),(1593,923205622,1),(1593,941346022,2),(1593,954655222,1),(1593,972795622,2),(1593,986104822,1),(1593,1004245222,2),(1593,1018159222,1),(1593,1035694822,2),(1593,1049608822,1),(1593,1067144422,2),(1593,1081058422,1),(1593,1099198822,2),(1593,1112508022,1),(1593,1130648422,2),(1593,1143957623,1),(1593,1162098023,2),(1593,1173592823,1),(1593,1194152423,2),(1593,1205042423,1),(1593,1225602023,2),(1593,1236492024,1),(1593,1257051624,2),(1593,1268546424,1),(1593,1289106024,2),(1593,1299996024,1),(1593,1320555624,2),(1593,1331445624,1),(1593,1352005225,2),(1593,1362895225,1),(1593,1383454825,2),(1593,1394344825,1),(1593,1414904425,2),(1593,1425794425,1),(1593,1446354026,2),(1593,1457848826,1),(1593,1478408426,2),(1593,1489298427,1),(1593,1509858027,2),(1593,1520748027,1),(1593,1541307627,2),(1593,1552197627,1),(1593,1572757227,2),(1593,1583647227,1),(1593,1604206827,2),(1593,1615701627,1),(1593,1636261227,2),(1593,1647151227,1),(1593,1667710827,2),(1593,1678600827,1),(1593,1699160427,2),(1593,1710050427,1),(1593,1730610027,2),(1593,1741500027,1),(1593,1762059627,2),(1593,1772949627,1),(1593,1793509227,2),(1593,1805004027,1),(1593,1825563627,2),(1593,1836453627,1),(1593,1857013227,2),(1593,1867903227,1),(1593,1888462827,2),(1593,1899352827,1),(1593,1919912427,2),(1593,1930802427,1),(1593,1951362027,2),(1593,1962856827,1),(1593,1983416427,2),(1593,1994306427,1),(1593,2014866027,2),(1593,2025756027,1),(1593,2046315627,2),(1593,2057205627,1),(1593,2077765227,2),(1593,2088655227,1),(1593,2109214827,2),(1593,2120104827,1),(1593,2140664427,2),(1594,-2147483648,2),(1594,-1694368800,1),(1594,-1681671600,2),(1594,-1632067200,1),(1594,-1615136400,2),(1594,-1029686400,1),(1594,-1018198800,2),(1594,-880214400,3),(1594,-769395600,4),(1594,-765392400,2),(1594,-746035200,1),(1594,-732733200,2),(1594,-715795200,1),(1594,-702493200,2),(1594,-684345600,1),(1594,-671043600,2),(1594,-652896000,1),(1594,-639594000,2),(1594,-620755200,1),(1594,-607626000,2),(1594,-589392000,1),(1594,-576090000,2),(1594,-557942400,1),(1594,-544640400,2),(1594,-526492800,1),(1594,-513190800,2),(1594,-495043200,1),(1594,-481741200,2),(1594,-463593600,1),(1594,-450291600,2),(1594,-431539200,1),(1594,-418237200,2),(1594,-400089600,1),(1594,-386787600,2),(1594,-368640000,1),(1594,-355338000,2),(1594,-337190400,1),(1594,-321469200,2),(1594,-305740800,1),(1594,-292438800,2),(1594,-210787200,1),(1594,-198090000,2),(1594,-116438400,5),(1594,-100108800,6),(1594,-84384000,5),(1594,-68659200,6),(1594,-52934400,5),(1594,-37209600,6),(1594,-21484800,5),(1594,-5760000,6),(1594,9964800,5),(1594,25689600,6),(1594,41414400,5),(1594,57744000,6),(1594,73468800,5),(1594,89193601,6),(1594,104918402,5),(1594,120643202,6),(1594,136368003,5),(1594,152092803,6),(1594,167817604,5),(1594,183542404,6),(1594,199267205,5),(1594,215596805,6),(1594,230716806,5),(1594,247046406,6),(1594,262771207,5),(1594,278496007,6),(1594,294220808,5),(1594,309945608,6),(1594,325670409,5),(1594,341395209,6),(1594,357120009,5),(1594,372844810,6),(1594,388569610,5),(1594,404899211,6),(1594,420019211,5),(1594,436348812,6),(1594,452073612,5),(1594,467798412,6),(1594,483523212,5),(1594,499248013,6),(1594,514972813,5),(1594,530697613,6),(1594,544608013,5),(1594,562147213,6),(1594,576057614,5),(1594,594201614,6),(1594,607507214,5),(1594,625651214,6),(1594,638956815,5),(1594,657100815,6),(1594,671011216,5),(1594,688550416,6),(1594,702460816,5),(1594,720000017,6),(1594,733910417,5),(1594,752054418,6),(1594,765360018,5),(1594,783504019,6),(1594,796809619,5),(1594,814953619,6),(1594,828864020,5),(1594,846403220,6),(1594,860313620,5),(1594,877852821,6),(1594,891763221,5),(1594,909302421,6),(1594,923212822,5),(1594,941356822,6),(1594,954662422,5),(1594,972806422,6),(1594,986112022,5),(1594,1004256022,6),(1594,1018166422,5),(1594,1035705622,6),(1594,1049616022,5),(1594,1067155222,6),(1594,1081065622,5),(1594,1099209622,6),(1594,1112515222,5),(1594,1130659222,6),(1594,1136095223,2),(1594,1143964823,1),(1594,1162105223,2),(1594,1173600023,1),(1594,1194159623,2),(1594,1205049623,1),(1594,1225609223,2),(1594,1236499224,1),(1594,1257058824,2),(1594,1268553624,1),(1594,1289113224,2),(1594,1300003224,1),(1594,1320562824,2),(1594,1331452824,1),(1594,1352012425,2),(1594,1362902425,1),(1594,1383462025,2),(1594,1394352025,1),(1594,1414911625,2),(1594,1425801625,1),(1594,1446361226,2),(1594,1457856026,1),(1594,1478415626,2),(1594,1489305627,1),(1594,1509865227,2),(1594,1520755227,1),(1594,1541314827,2),(1594,1552204827,1),(1594,1572764427,2),(1594,1583654427,1),(1594,1604214027,2),(1594,1615708827,1),(1594,1636268427,2),(1594,1647158427,1),(1594,1667718027,2),(1594,1678608027,1),(1594,1699167627,2),(1594,1710057627,1),(1594,1730617227,2),(1594,1741507227,1),(1594,1762066827,2),(1594,1772956827,1),(1594,1793516427,2),(1594,1805011227,1),(1594,1825570827,2),(1594,1836460827,1),(1594,1857020427,2),(1594,1867910427,1),(1594,1888470027,2),(1594,1899360027,1),(1594,1919919627,2),(1594,1930809627,1),(1594,1951369227,2),(1594,1962864027,1),(1594,1983423627,2),(1594,1994313627,1),(1594,2014873227,2),(1594,2025763227,1),(1594,2046322827,2),(1594,2057212827,1),(1594,2077772427,2),(1594,2088662427,1),(1594,2109222027,2),(1594,2120112027,1),(1594,2140671627,2),(1595,-2147483648,2),(1595,-1632070800,1),(1595,-1615140000,2),(1595,-1601753400,1),(1595,-1583697600,2),(1595,-1567357200,1),(1595,-1554667200,2),(1595,-1534698000,1),(1595,-1524074400,2),(1595,-1503248400,1),(1595,-1492365600,2),(1595,-1471798800,1),(1595,-1460916000,2),(1595,-1440954000,1),(1595,-1428861600,2),(1595,-1409504400,1),(1595,-1397412000,2),(1595,-1378054800,1),(1595,-1365962400,2),(1595,-1346605200,1),(1595,-1333908000,2),(1595,-1315155600,1),(1595,-1301853600,2),(1595,-1283706000,1),(1595,-1270404000,2),(1595,-1252256400,1),(1595,-1238954400,2),(1595,-1220806800,1),(1595,-1207504800,2),(1595,-1188752400,1),(1595,-1176055200,2),(1595,-1157302800,1),(1595,-1144000800,2),(1595,-1125853200,1),(1595,-1112551200,2),(1595,-1094403600,1),(1595,-1081101600,2),(1595,-1062954000,1),(1595,-1049652000,2),(1595,-1031504400,1),(1595,-1018202400,2),(1595,-1000054800,1),(1595,-986752800,2),(1595,-968000400,1),(1595,-955303200,2),(1595,-936550800,1),(1595,-880218000,3),(1595,-769395600,4),(1595,-765396000,2),(1595,-747248400,1),(1595,-733946400,2),(1595,-715806000,1),(1595,-702504000,2),(1595,-684356400,1),(1595,-671054400,2),(1595,-652906800,1),(1595,-634161600,2),(1595,-620845200,1),(1595,-602704800,2),(1595,-589395600,1),(1595,-576093600,2),(1595,-557946000,1),(1595,-544644000,2),(1595,-526496400,1),(1595,-513194400,2),(1595,-495046800,1),(1595,-481744800,2),(1595,-463597200,1),(1595,-450295200,2),(1595,-431542800,1),(1595,-418240800,2),(1595,-400093200,1),(1595,-384372000,2),(1595,-368643600,1),(1595,-352922400,2),(1595,-337194000,1),(1595,-321472800,2),(1595,-305744400,1),(1595,-289418400,2),(1595,-273690000,1),(1595,-257968800,2),(1595,-242240400,1),(1595,-226519200,2),(1595,-210790800,1),(1595,-195069600,2),(1595,-179341200,1),(1595,-163620000,2),(1595,-147891600,1),(1595,-131565600,2),(1595,-116442000,1),(1595,-100116000,2),(1595,-84387600,1),(1595,-68666400,2),(1595,-52938000,1),(1595,-37216800,2),(1595,-21488400,1),(1595,-5767200,2),(1595,9961200,1),(1595,25682400,2),(1595,41410800,1),(1595,57736800,2),(1595,73465200,1),(1595,89186401,2),(1595,104914802,1),(1595,120636002,2),(1595,136364403,1),(1595,152085603,2),(1595,167814004,1),(1595,183535204,2),(1595,199263605,1),(1595,215589605,2),(1595,230713206,1),(1595,247039206,2),(1595,262767607,1),(1595,278488807,2),(1595,294217208,1),(1595,309938408,2),(1595,325666809,1),(1595,341388009,2),(1595,357116409,1),(1595,372837610,2),(1595,388566010,1),(1595,404892011,2),(1595,420015611,1),(1595,436341612,2),(1595,452070012,1),(1595,467791212,2),(1595,483519612,1),(1595,499240813,2),(1595,514969213,1),(1595,530690413,2),(1595,544604413,1),(1595,562140013,2),(1595,576054014,1),(1595,594194414,2),(1595,607503614,1),(1595,625644014,2),(1595,638953215,1),(1595,657093615,2),(1595,671007616,1),(1595,688543216,2),(1595,702457216,1),(1595,719992817,2),(1595,733906817,1),(1595,752047218,2),(1595,765356418,1),(1595,783496819,2),(1595,796806019,1),(1595,814946419,2),(1595,828860420,1),(1595,846396020,2),(1595,860310020,1),(1595,877845621,2),(1595,891759621,1),(1595,909295221,2),(1595,923209222,1),(1595,941349622,2),(1595,954658822,1),(1595,972799222,2),(1595,986108422,1),(1595,1004248822,2),(1595,1018162822,1),(1595,1035698422,2),(1595,1049612422,1),(1595,1067148022,2),(1595,1081062022,1),(1595,1099202422,2),(1595,1112511622,1),(1595,1130652022,2),(1595,1143961223,1),(1595,1162101623,2),(1595,1173596423,1),(1595,1194156023,2),(1595,1205046023,1),(1595,1225605623,2),(1595,1236495624,1),(1595,1257055224,2),(1595,1268550024,1),(1595,1289109624,2),(1595,1299999624,1),(1595,1320559224,2),(1595,1331449224,1),(1595,1352008825,2),(1595,1362898825,1),(1595,1383458425,2),(1595,1394348425,1),(1595,1414908025,2),(1595,1425798025,1),(1595,1446357626,2),(1595,1457852426,1),(1595,1478412026,2),(1595,1489302027,1),(1595,1509861627,2),(1595,1520751627,1),(1595,1541311227,2),(1595,1552201227,1),(1595,1572760827,2),(1595,1583650827,1),(1595,1604210427,2),(1595,1615705227,1),(1595,1636264827,2),(1595,1647154827,1),(1595,1667714427,2),(1595,1678604427,1),(1595,1699164027,2),(1595,1710054027,1),(1595,1730613627,2),(1595,1741503627,1),(1595,1762063227,2),(1595,1772953227,1),(1595,1793512827,2),(1595,1805007627,1),(1595,1825567227,2),(1595,1836457227,1),(1595,1857016827,2),(1595,1867906827,1),(1595,1888466427,2),(1595,1899356427,1),(1595,1919916027,2),(1595,1930806027,1),(1595,1951365627,2),(1595,1962860427,1),(1595,1983420027,2),(1595,1994310027,1),(1595,2014869627,2),(1595,2025759627,1),(1595,2046319227,2),(1595,2057209227,1),(1595,2077768827,2),(1595,2088658827,1),(1595,2109218427,2),(1595,2120108427,1),(1595,2140668027,2),(1596,-2147483648,0),(1596,-1998663968,2),(1596,-1632063600,1),(1596,-1615132800,2),(1596,-1600614000,1),(1596,-1596816000,2),(1596,-1567954800,1),(1596,-1551628800,2),(1596,-1536505200,1),(1596,-1523203200,2),(1596,-1504450800,1),(1596,-1491753600,2),(1596,-1473001200,1),(1596,-1459699200,2),(1596,-880210800,3),(1596,-769395600,4),(1596,-765388800,2),(1596,-715791600,1),(1596,-702489600,2),(1596,73472400,1),(1596,89193601,2),(1596,104922002,1),(1596,120643202,2),(1596,136371603,1),(1596,152092803,2),(1596,167821204,1),(1596,183542404,2),(1596,199270805,1),(1596,215596805,2),(1596,230720406,1),(1596,247046406,2),(1596,262774807,1),(1596,278496007,2),(1596,294224408,1),(1596,309945608,2),(1596,325674009,1),(1596,341395209,2),(1596,357123609,1),(1596,372844810,2),(1596,388573210,1),(1596,404899211,2),(1596,420022811,1),(1596,436348812,2),(1596,452077212,1),(1596,467798412,2),(1596,483526812,1),(1596,499248013,2),(1596,514976413,1),(1596,530697613,2),(1596,544611613,1),(1596,562147213,2),(1596,576061214,1),(1596,594201614,2),(1596,607510814,1),(1596,625651214,2),(1596,638960415,1),(1596,657100815,2),(1596,671014816,1),(1596,688550416,2),(1596,702464416,1),(1596,720000017,2),(1596,733914017,1),(1596,752054418,2),(1596,765363618,1),(1596,783504019,2),(1596,796813219,1),(1596,814953619,2),(1596,828867620,1),(1596,846403220,2),(1596,860317220,1),(1596,877852821,2),(1596,891766821,1),(1596,909302421,2),(1596,923216422,1),(1596,941356822,2),(1596,954666022,1),(1596,972806422,2),(1596,986115622,1),(1596,1004256022,2),(1596,1018170022,1),(1596,1035705622,2),(1596,1049619622,1),(1596,1067155222,2),(1596,1081069222,1),(1596,1099209622,2),(1596,1112518822,1),(1596,1130659222,2),(1596,1143968423,1),(1596,1162108823,2),(1596,1173603623,1),(1596,1194163223,2),(1596,1205053223,1),(1596,1225612823,2),(1596,1236502824,1),(1596,1257062424,2),(1596,1268557224,1),(1596,1289116824,2),(1596,1300006824,1),(1596,1320566424,2),(1596,1331456424,1),(1596,1352016025,2),(1596,1362906025,1),(1596,1383465625,2),(1596,1394355625,1),(1596,1414915225,2),(1596,1425805225,1),(1596,1446364826,2),(1596,1457859626,1),(1596,1478419226,2),(1596,1489309227,1),(1596,1509868827,2),(1596,1520758827,1),(1596,1541318427,2),(1596,1552208427,1),(1596,1572768027,2),(1596,1583658027,1),(1596,1604217627,2),(1596,1615712427,1),(1596,1636272027,2),(1596,1647162027,1),(1596,1667721627,2),(1596,1678611627,1),(1596,1699171227,2),(1596,1710061227,1),(1596,1730620827,2),(1596,1741510827,1),(1596,1762070427,2),(1596,1772960427,1),(1596,1793520027,2),(1596,1805014827,1),(1596,1825574427,2),(1596,1836464427,1),(1596,1857024027,2),(1596,1867914027,1),(1596,1888473627,2),(1596,1899363627,1),(1596,1919923227,2),(1596,1930813227,1),(1596,1951372827,2),(1596,1962867627,1),(1596,1983427227,2),(1596,1994317227,1),(1596,2014876827,2),(1596,2025766827,1),(1596,2046326427,2),(1596,2057216427,1),(1596,2077776027,2),(1596,2088666027,1),(1596,2109225627,2),(1596,2120115627,1),(1596,2140675227,2),(1597,-2147483648,2),(1597,-1664130548,1),(1597,-1650137348,2),(1597,-1632076148,1),(1597,-1615145348,2),(1597,-1598650148,1),(1597,-1590100148,2),(1597,-1567286948,1),(1597,-1551565748,2),(1597,-1535837348,1),(1597,-1520116148,2),(1597,-1503782948,1),(1597,-1488666548,2),(1597,-1472333348,1),(1597,-1457216948,2),(1597,-1440883748,1),(1597,-1425767348,2),(1597,-1409434148,1),(1597,-1394317748,2),(1597,-1377984548,1),(1597,-1362263348,2),(1597,-1346534948,1),(1597,-1330813748,2),(1597,-1314480548,1),(1597,-1299364148,2),(1597,-1283030948,1),(1597,-1267914548,2),(1597,-1251581348,1),(1597,-1236464948,2),(1597,-1220131748,1),(1597,-1205015348,2),(1597,-1188682148,1),(1597,-1172960948,2),(1597,-1156627748,1),(1597,-1141511348,2),(1597,-1125178148,1),(1597,-1110061748,2),(1597,-1096921748,4),(1597,-1093728600,3),(1597,-1078612200,4),(1597,-1061670600,3),(1597,-1048973400,4),(1597,-1030221000,3),(1597,-1017523800,4),(1597,-998771400,3),(1597,-986074200,4),(1597,-966717000,3),(1597,-954624600,4),(1597,-935267400,3),(1597,-922570200,4),(1597,-903817800,3),(1597,-891120600,4),(1597,-872368200,6),(1597,-769395600,5),(1597,-765401400,4),(1597,-746044200,3),(1597,-733347000,4),(1597,-714594600,3),(1597,-701897400,4),(1597,-683145000,3),(1597,-670447800,4),(1597,-651695400,3),(1597,-638998200,4),(1597,-619641000,3),(1597,-606943800,4),(1597,-589401000,3),(1597,-576099000,4),(1597,-557951400,3),(1597,-544649400,4),(1597,-526501800,3),(1597,-513199800,4),(1597,-495052200,3),(1597,-481750200,4),(1597,-463602600,3),(1597,-450300600,4),(1597,-431548200,3),(1597,-418246200,4),(1597,-400098600,3),(1597,-386796600,4),(1597,-368649000,3),(1597,-355347000,4),(1597,-337199400,3),(1597,-323897400,4),(1597,-305749800,3),(1597,-289423800,4),(1597,-273695400,3),(1597,-257974200,4),(1597,-242245800,3),(1597,-226524600,4),(1597,-210796200,3),(1597,-195075000,4),(1597,-179346600,3),(1597,-163625400,4),(1597,-147897000,3),(1597,-131571000,4),(1597,-116447400,3),(1597,-100121400,4),(1597,-84393000,3),(1597,-68671800,4),(1597,-52943400,3),(1597,-37222200,4),(1597,-21493800,3),(1597,-5772600,4),(1597,9955800,3),(1597,25677000,4),(1597,41405400,3),(1597,57731400,4),(1597,73459800,3),(1597,89181001,4),(1597,104909402,3),(1597,120630602,4),(1597,136359003,3),(1597,152080203,4),(1597,167808604,3),(1597,183529804,4),(1597,199258205,3),(1597,215584205,4),(1597,230707806,3),(1597,247033806,4),(1597,262762207,3),(1597,278483407,4),(1597,294211808,3),(1597,309933008,4),(1597,325661409,3),(1597,341382609,4),(1597,357111009,3),(1597,372832210,4),(1597,388560610,3),(1597,404886611,4),(1597,420010211,3),(1597,436336212,4),(1597,452064612,3),(1597,467785812,4),(1597,483514212,3),(1597,499235413,4),(1597,514963813,3),(1597,530685013,4),(1597,544591873,3),(1597,562127473,4),(1597,576041474,7),(1597,594178274,4),(1597,607491074,3),(1597,625631474,4),(1597,638940675,3),(1597,657081075,4),(1597,670995076,3),(1597,688530676,4),(1597,702444676,3),(1597,719980277,4),(1597,733894277,3),(1597,752034678,4),(1597,765343878,3),(1597,783484279,4),(1597,796793479,3),(1597,814933879,4),(1597,828847880,3),(1597,846383480,4),(1597,860297480,3),(1597,877833081,4),(1597,891747081,3),(1597,909282681,4),(1597,923196682,3),(1597,941337082,4),(1597,954646282,3),(1597,972786682,4),(1597,986095882,3),(1597,1004236282,4),(1597,1018150282,3),(1597,1035685882,4),(1597,1049599882,3),(1597,1067135482,4),(1597,1081049482,3),(1597,1099189882,4),(1597,1112499082,3),(1597,1130639482,4),(1597,1143948683,3),(1597,1162089083,4),(1597,1173583883,3),(1597,1194143483,4),(1597,1205033483,3),(1597,1225593083,4),(1597,1236483084,3),(1597,1257042684,4),(1597,1268537484,3),(1597,1289097084,4),(1597,1299987084,3),(1597,1320553824,4),(1597,1331443824,3),(1597,1352003425,4),(1597,1362893425,3),(1597,1383453025,4),(1597,1394343025,3),(1597,1414902625,4),(1597,1425792625,3),(1597,1446352226,4),(1597,1457847026,3),(1597,1478406626,4),(1597,1489296627,3),(1597,1509856227,4),(1597,1520746227,3),(1597,1541305827,4),(1597,1552195827,3),(1597,1572755427,4),(1597,1583645427,3),(1597,1604205027,4),(1597,1615699827,3),(1597,1636259427,4),(1597,1647149427,3),(1597,1667709027,4),(1597,1678599027,3),(1597,1699158627,4),(1597,1710048627,3),(1597,1730608227,4),(1597,1741498227,3),(1597,1762057827,4),(1597,1772947827,3),(1597,1793507427,4),(1597,1805002227,3),(1597,1825561827,4),(1597,1836451827,3),(1597,1857011427,4),(1597,1867901427,3),(1597,1888461027,4),(1597,1899351027,3),(1597,1919910627,4),(1597,1930800627,3),(1597,1951360227,4),(1597,1962855027,3),(1597,1983414627,4),(1597,1994304627,3),(1597,2014864227,4),(1597,2025754227,3),(1597,2046313827,4),(1597,2057203827,3),(1597,2077763427,4),(1597,2088653427,3),(1597,2109213027,4),(1597,2120103027,3),(1597,2140662627,4),(1598,-2147483648,2),(1598,-1632060000,1),(1598,-1615129200,2),(1598,-880207200,3),(1598,-769395600,4),(1598,-765385200,2),(1598,-747237600,1),(1598,-733935600,2),(1598,-715788000,1),(1598,-702486000,2),(1598,-684338400,1),(1598,-671036400,2),(1598,-652888800,1),(1598,-639586800,2),(1598,-620834400,1),(1598,-608137200,2),(1598,-589384800,1),(1598,-576082800,2),(1598,-557935200,1),(1598,-544633200,2),(1598,-526485600,1),(1598,-513183600,2),(1598,-495036000,1),(1598,-481734000,2),(1598,-463586400,1),(1598,-450284400,2),(1598,-431532000,1),(1598,-418230000,2),(1598,-400082400,1),(1598,-386780400,2),(1598,-368632800,1),(1598,-355330800,2),(1598,-337183200,1),(1598,-323881200,2),(1598,-305733600,1),(1598,-292431600,2),(1598,-273679200,1),(1598,-260982000,2),(1598,-242229600,1),(1598,-226508400,2),(1598,-210780000,1),(1598,-195058800,2),(1598,-179330400,1),(1598,-163609200,2),(1598,-147880800,1),(1598,-131554800,2),(1598,-116431200,1),(1598,-100105200,2),(1598,-84376800,1),(1598,-68655600,2),(1598,-52927200,1),(1598,-37206000,2),(1598,-21477600,1),(1598,-5756400,2),(1598,9972000,1),(1598,25693200,2),(1598,41421600,1),(1598,57747600,2),(1598,73476000,1),(1598,89197201,2),(1598,104925602,1),(1598,120646802,2),(1598,136375203,1),(1598,152096403,2),(1598,167824804,1),(1598,183546004,2),(1598,199274405,1),(1598,215600405,2),(1598,230724006,1),(1598,247050006,2),(1598,262778407,1),(1598,278499607,2),(1598,294228008,1),(1598,309949208,2),(1598,325677609,1),(1598,341398809,2),(1598,357127209,1),(1598,372848410,2),(1598,388576810,1),(1598,404902811,2),(1598,420026411,1),(1598,436352412,2),(1598,452080812,1),(1598,467802012,2),(1598,483530412,1),(1598,499251613,2),(1598,514980013,1),(1598,530701213,2),(1598,544615213,1),(1598,562150813,2),(1598,576064814,1),(1598,594205214,2),(1598,607514414,1),(1598,625654814,2),(1598,638964015,1),(1598,657104415,2),(1598,671018416,1),(1598,688554016,2),(1598,702468016,1),(1598,720003617,2),(1598,733917617,1),(1598,752058018,2),(1598,765367218,1),(1598,783507619,2),(1598,796816819,1),(1598,814957219,2),(1598,828871220,1),(1598,846406820,2),(1598,860320820,1),(1598,877856421,2),(1598,891770421,1),(1598,909306021,2),(1598,923220022,1),(1598,941360422,2),(1598,954669622,1),(1598,972810022,2),(1598,986119222,1),(1598,1004259622,2),(1598,1018173622,1),(1598,1035709222,2),(1598,1049623222,1),(1598,1067158822,2),(1598,1081072822,1),(1598,1099213222,2),(1598,1112522422,1),(1598,1130662822,2),(1598,1143972023,1),(1598,1162112423,2),(1598,1173607223,1),(1598,1194166823,2),(1598,1205056823,1),(1598,1225616423,2),(1598,1236506424,1),(1598,1257066024,2),(1598,1268560824,1),(1598,1289120424,2),(1598,1300010424,1),(1598,1320570024,2),(1598,1331460024,1),(1598,1352019625,2),(1598,1362909625,1),(1598,1383469225,2),(1598,1394359225,1),(1598,1414918825,2),(1598,1425808825,1),(1598,1446368426,2),(1598,1457863226,1),(1598,1478422826,2),(1598,1489312827,1),(1598,1509872427,2),(1598,1520762427,1),(1598,1541322027,2),(1598,1552212027,1),(1598,1572771627,2),(1598,1583661627,1),(1598,1604221227,2),(1598,1615716027,1),(1598,1636275627,2),(1598,1647165627,1),(1598,1667725227,2),(1598,1678615227,1),(1598,1699174827,2),(1598,1710064827,1),(1598,1730624427,2),(1598,1741514427,1),(1598,1762074027,2),(1598,1772964027,1),(1598,1793523627,2),(1598,1805018427,1),(1598,1825578027,2),(1598,1836468027,1),(1598,1857027627,2),(1598,1867917627,1),(1598,1888477227,2),(1598,1899367227,1),(1598,1919926827,2),(1598,1930816827,1),(1598,1951376427,2),(1598,1962871227,1),(1598,1983430827,2),(1598,1994320827,1),(1598,2014880427,2),(1598,2025770427,1),(1598,2046330027,2),(1598,2057220027,1),(1598,2077779627,2),(1598,2088669627,1),(1598,2109229227,2),(1598,2120119227,1),(1598,2140678827,2),(1599,-2147483648,0),(1599,-2030202084,2),(1599,-1632063600,1),(1599,-1615132800,2),(1599,-1251651600,1),(1599,-1238349600,2),(1599,-1220202000,1),(1599,-1206900000,2),(1599,-1188752400,1),(1599,-1175450400,2),(1599,-1156698000,1),(1599,-1144000800,2),(1599,-1125248400,1),(1599,-1111946400,2),(1599,-1032714000,1),(1599,-1016992800,2),(1599,-1001264400,1),(1599,-986148000,2),(1599,-969814800,1),(1599,-954093600,2),(1599,-937760400,1),(1599,-922039200,2),(1599,-906310800,1),(1599,-890589600,2),(1599,-880210800,3),(1599,-769395600,4),(1599,-765388800,2),(1599,-748450800,1),(1599,-732729600,2),(1599,-715791600,1),(1599,-702489600,2),(1599,-684342000,1),(1599,-671040000,2),(1599,-652892400,1),(1599,-639590400,2),(1599,-620838000,1),(1599,-608140800,2),(1599,-589388400,1),(1599,-576086400,2),(1599,-557938800,1),(1599,-544636800,2),(1599,-526489200,1),(1599,-513187200,2),(1599,-495039600,1),(1599,-481737600,2),(1599,-463590000,1),(1599,-450288000,2),(1599,-431535600,1),(1599,-418233600,2),(1599,-400086000,1),(1599,-386784000,2),(1599,-337186800,1),(1599,-321465600,2),(1599,-305737200,5),(1600,-2147483648,2),(1600,-1632056400,1),(1600,-1615125600,2),(1600,-1596978000,1),(1600,-1583164800,2),(1600,-880203600,3),(1600,-769395600,4),(1600,-765381600,2),(1600,-147884400,5),(1600,-131554800,2),(1600,-81961200,6),(1600,325677609,7),(1600,341398809,6),(1600,357127209,7),(1600,372848410,6),(1600,388576810,7),(1600,404902811,6),(1600,420026411,7),(1600,436352412,6),(1600,452080812,7),(1600,467802012,6),(1600,483530412,7),(1600,499251613,6),(1600,514980013,7),(1600,530701213,6),(1600,544615213,7),(1600,562150813,6),(1600,576064814,7),(1600,594205214,6),(1600,607514414,7),(1600,625654814,6),(1600,638964015,7),(1600,657104415,6),(1600,671018416,7),(1600,688554016,6),(1600,702468016,7),(1600,720003617,6),(1600,733917617,7),(1600,752058018,6),(1600,765367218,7),(1600,783507619,6),(1600,796816819,7),(1600,814957219,6),(1600,828871220,7),(1600,846406820,6),(1600,860320820,7),(1600,877856421,6),(1600,891770421,7),(1600,909306021,6),(1600,923220022,7),(1600,941360422,6),(1600,954669622,7),(1600,972810022,6),(1600,986119222,7),(1600,1004259622,6),(1600,1018173622,7),(1600,1035709222,6),(1600,1049623222,7),(1600,1067158822,6),(1600,1081072822,7),(1600,1099213222,6),(1600,1112522422,7),(1600,1130662822,6),(1600,1143972023,7),(1600,1162112423,6),(1600,1173607223,7),(1600,1194166823,6),(1600,1205056823,7),(1600,1225616423,6),(1600,1236506424,7),(1600,1257066024,6),(1600,1268560824,7),(1600,1289120424,6),(1600,1300010424,7),(1600,1320570024,6),(1600,1331460024,7),(1600,1352019625,6),(1600,1362909625,7),(1600,1383469225,6),(1600,1394359225,7),(1600,1414918825,6),(1600,1425808825,7),(1600,1446368426,6),(1600,1457863226,7),(1600,1478422826,6),(1600,1489312827,7),(1600,1509872427,6),(1600,1520762427,7),(1600,1541322027,6),(1600,1552212027,7),(1600,1572771627,6),(1600,1583661627,7),(1600,1604214027,8),(1601,-2147483648,1),(1601,-1892661434,2),(1601,-1688410800,1),(1601,-1619205434,3),(1601,-1593806400,1),(1601,-1335986234,4),(1601,-1317585600,2),(1601,-1304362800,4),(1601,-1286049600,2),(1601,-1272826800,4),(1601,-1254513600,2),(1601,-1241290800,4),(1601,-1222977600,2),(1601,-1209754800,4),(1601,-1191355200,2),(1601,-1178132400,3),(1601,-870552000,2),(1601,-865278000,3),(1601,-740520000,5),(1601,-736376400,3),(1601,-718056000,2),(1601,-713649600,3),(1601,-36619200,6),(1601,-23922000,7),(1601,-3355200,6),(1601,7527600,7),(1601,24465600,6),(1601,37767600,7),(1601,55915200,6),(1601,69217200,7),(1601,87969601,6),(1601,100666802,7),(1601,118209602,6),(1601,132116403,7),(1601,150868803,6),(1601,163566004,7),(1601,182318404,6),(1601,195620405,7),(1601,213768005,6),(1601,227070006,7),(1601,245217606,6),(1601,258519607,7),(1601,277272007,6),(1601,289969208,7),(1601,308721608,6),(1601,321418809,7),(1601,340171209,6),(1601,353473209,7),(1601,371620810,6),(1601,384922810,7),(1601,403070411,6),(1601,416372411,7),(1601,434520012,6),(1601,447822012,7),(1601,466574412,6),(1601,479271612,7),(1601,498024013,6),(1601,510721213,7),(1601,529473613,6),(1601,545194813,7),(1601,560923213,6),(1601,574225214,7),(1601,592372814,6),(1601,605674814,7),(1601,624427214,6),(1601,637124415,7),(1601,653457615,6),(1601,668574016,7),(1601,687326416,6),(1601,700628416,7),(1601,718776017,6),(1601,732078017,7),(1601,750225618,6),(1601,763527618,7),(1601,781675219,6),(1601,794977219,7),(1601,813729619,6),(1601,826426820,7),(1601,845179220,6),(1601,859690820,7),(1601,876628821,6),(1601,889930821,7),(1601,906868821,6),(1601,923194822,7),(1601,939528022,6),(1601,952830022,7),(1601,971582422,6),(1601,984279622,7),(1601,1003032022,6),(1601,1015729222,7),(1601,1034481622,6),(1601,1047178822,7),(1601,1065931222,6),(1601,1079233222,7),(1601,1097380822,6),(1601,1110682822,7),(1601,1128830422,6),(1601,1142132423,7),(1601,1160884823,6),(1601,1173582023,7),(1601,1192334423,6),(1601,1206846023,7),(1601,1223784023,6),(1601,1237086024,7),(1601,1255233624,6),(1601,1270350024,7),(1601,1286683224,6),(1601,1304823624,7),(1601,1313899224,6),(1601,1335668424,7),(1601,1346558425,6),(1601,1367118025,7),(1601,1378612825,6),(1601,1398567625,7),(1601,1410062425,6),(1601,1463281226,7),(1601,1471147226,6),(1601,1494730827,7),(1601,1502596827,6),(1601,1526180427,7),(1601,1534046427,6),(1601,1554606027,7),(1601,1567915227,6),(1601,1586055627,7),(1601,1599364827,6),(1601,1617505227,7),(1601,1630814427,6),(1601,1648954827,7),(1601,1662264027,6),(1601,1680404427,7),(1601,1693713627,6),(1601,1712458827,7),(1601,1725768027,6),(1601,1743908427,7),(1601,1757217627,6),(1601,1775358027,7),(1601,1788667227,6),(1601,1806807627,7),(1601,1820116827,6),(1601,1838257227,7),(1601,1851566427,6),(1601,1870311627,7),(1601,1883016027,6),(1601,1901761227,7),(1601,1915070427,6),(1601,1933210827,7),(1601,1946520027,6),(1601,1964660427,7),(1601,1977969627,6),(1601,1996110027,7),(1601,2009419227,6),(1601,2027559627,7),(1601,2040868827,6),(1601,2059614027,7),(1601,2072318427,6),(1601,2091063627,7),(1601,2104372827,6),(1601,2122513227,7),(1601,2135822427,6),(1602,-2147483648,1),(1602,-1178124152,4),(1602,-36619200,2),(1602,-23922000,3),(1602,-3355200,2),(1602,7527600,3),(1602,24465600,2),(1602,37767600,3),(1602,55915200,2),(1602,69217200,3),(1602,87969601,2),(1602,100666802,3),(1602,118209602,2),(1602,132116403,3),(1602,150868803,2),(1602,163566004,3),(1602,182318404,2),(1602,195620405,3),(1602,213768005,2),(1602,227070006,3),(1602,245217606,2),(1602,258519607,3),(1602,277272007,2),(1602,289969208,3),(1602,308721608,2),(1602,321418809,3),(1602,340171209,2),(1602,353473209,3),(1602,371620810,2),(1602,384922810,5),(1602,403070411,6),(1602,416372411,5),(1602,434520012,6),(1602,447822012,5),(1602,466574412,6),(1602,479271612,5),(1602,498024013,6),(1602,510721213,5),(1602,529473613,6),(1602,545194813,5),(1602,560923213,6),(1602,574225214,5),(1602,592372814,6),(1602,605674814,5),(1602,624427214,6),(1602,637124415,5),(1602,653457615,6),(1602,668574016,5),(1602,687326416,6),(1602,700628416,5),(1602,718776017,6),(1602,732078017,5),(1602,750225618,6),(1602,763527618,5),(1602,781675219,6),(1602,794977219,5),(1602,813729619,6),(1602,826426820,5),(1602,845179220,6),(1602,859690820,5),(1602,876628821,6),(1602,889930821,5),(1602,906868821,6),(1602,923194822,5),(1602,939528022,6),(1602,952830022,5),(1602,971582422,6),(1602,984279622,5),(1602,1003032022,6),(1602,1015729222,5),(1602,1034481622,6),(1602,1047178822,5),(1602,1065931222,6),(1602,1079233222,5),(1602,1097380822,6),(1602,1110682822,5),(1602,1128830422,6),(1602,1142132423,5),(1602,1160884823,6),(1602,1173582023,5),(1602,1192334423,6),(1602,1206846023,5),(1602,1223784023,6),(1602,1237086024,5),(1602,1255233624,6),(1602,1270350024,5),(1602,1286683224,6),(1602,1304823624,5),(1602,1313899224,6),(1602,1335668424,5),(1602,1346558425,6),(1602,1367118025,5),(1602,1378612825,6),(1602,1398567625,5),(1602,1410062425,6),(1602,1463281226,5),(1602,1471147226,6),(1602,1494730827,5),(1602,1502596827,6),(1602,1526180427,5),(1602,1534046427,6),(1602,1554606027,5),(1602,1567915227,6),(1602,1586055627,5),(1602,1599364827,6),(1602,1617505227,5),(1602,1630814427,6),(1602,1648954827,5),(1602,1662264027,6),(1602,1680404427,5),(1602,1693713627,6),(1602,1712458827,5),(1602,1725768027,6),(1602,1743908427,5),(1602,1757217627,6),(1602,1775358027,5),(1602,1788667227,6),(1602,1806807627,5),(1602,1820116827,6),(1602,1838257227,5),(1602,1851566427,6),(1602,1870311627,5),(1602,1883016027,6),(1602,1901761227,5),(1602,1915070427,6),(1602,1933210827,5),(1602,1946520027,6),(1602,1964660427,5),(1602,1977969627,6),(1602,1996110027,5),(1602,2009419227,6),(1602,2027559627,5),(1602,2040868827,6),(1602,2059614027,5),(1602,2072318427,6),(1602,2091063627,5),(1602,2104372827,6),(1602,2122513227,5),(1602,2135822427,6),(1603,-2147483648,1),(1603,-1402813824,3),(1603,-1311534000,2),(1603,-1300996800,3),(1603,-933534000,2),(1603,-925675200,3),(1603,-902084400,2),(1603,-893620800,3),(1603,-870030000,2),(1603,-862171200,3),(1603,-775681200,2),(1603,-767822400,3),(1603,-744231600,2),(1603,-736372800,3),(1603,-144702000,2),(1603,-134251200,3),(1603,-113425200,2),(1603,-102542400,3),(1603,-86295600,2),(1603,-72907200,3),(1603,-54154800,2),(1603,-41457600,3),(1603,-21495600,2),(1603,-5774400,3),(1603,9954000,2),(1603,25675200,3),(1603,41403600,2),(1603,57729600,3),(1603,73458000,2),(1603,87364801,3),(1603,104907602,2),(1603,118900802,3),(1603,136357203,2),(1603,150436803,3),(1603,167806804,2),(1603,183528004,3),(1603,199256405,2),(1603,215582405,3),(1603,230706006,2),(1603,247032006,3),(1603,263365207,2),(1603,276667207,3),(1603,290581208,2),(1603,308721608,3),(1603,322030809,2),(1603,340171209,3),(1603,358318809,2),(1603,371620810,3),(1603,389768410,2),(1603,403070411,3),(1603,421218011,2),(1603,434520012,3),(1603,452667612,2),(1603,466574412,3),(1603,484117212,2),(1603,498024013,3),(1603,511333213,2),(1603,529473613,3),(1603,542782813,2),(1603,560923213,3),(1603,574837214,2),(1603,592372814,3),(1603,606286814,2),(1603,623822414,3),(1603,638946015,2),(1603,655876815,3),(1603,671000416,2),(1603,687330016,4),(1603,702450016,2),(1603,718779617,4),(1603,733899617,2),(1603,750229218,4),(1603,765349218,2),(1603,781678819,4),(1603,796798819,2),(1603,813128419,4),(1603,828853220,2),(1603,844578020,4),(1603,860302820,2),(1603,876632421,4),(1603,891147621,5),(1603,909291621,4),(1603,922597222,5),(1603,941346022,4),(1603,954651622,5),(1603,972795622,4),(1603,986101222,5),(1603,1004245222,4),(1603,1018155622,5),(1603,1035694822,4),(1603,1049605222,5),(1603,1067144422,4),(1603,1080450022,5),(1603,1162098023,4),(1603,1173589223,5),(1603,1193547623,4),(1603,1205643623,5),(1603,1224997223,4),(1603,1236488424,5),(1603,1256446824,4),(1603,1268542824,5),(1603,1288501224,4),(1603,1300597224,5),(1603,1321160424,4),(1603,1333256424,5),(1603,1352005225,4),(1603,1362891625,5),(1603,1383454825,4),(1603,1394341225,5),(1603,1414904425,4),(1603,1425790825,5),(1603,1446354026,4),(1603,1457845226,5),(1603,1478408426,4),(1603,1489294827,5),(1603,1509858027,4),(1603,1520744427,5),(1603,1541307627,4),(1603,1552194027,5),(1603,1572757227,4),(1603,1583643627,5),(1603,1604206827,4),(1603,1615698027,5),(1603,1636261227,4),(1603,1647147627,5),(1603,1667710827,4),(1603,1678597227,5),(1603,1699160427,4),(1603,1710046827,5),(1603,1730610027,4),(1603,1741496427,5),(1603,1762059627,4),(1603,1772946027,5),(1603,1793509227,4),(1603,1805000427,5),(1603,1825563627,4),(1603,1836450027,5),(1603,1857013227,4),(1603,1867899627,5),(1603,1888462827,4),(1603,1899349227,5),(1603,1919912427,4),(1603,1930798827,5),(1603,1951362027,4),(1603,1962853227,5),(1603,1983416427,4),(1603,1994302827,5),(1603,2014866027,4),(1603,2025752427,5),(1603,2046315627,4),(1603,2057202027,5),(1603,2077765227,4),(1603,2088651627,5),(1603,2109214827,4),(1603,2120101227,5),(1603,2140664427,4),(1604,228877206,0),(1604,243997206,1),(1604,260326807,0),(1604,276051607,1),(1604,291776408,0),(1604,307501208,1),(1604,323830809,0),(1604,338950809,1),(1604,354675609,0),(1604,370400410,1),(1604,386125210,0),(1604,401850011,1),(1604,417574811,0),(1604,433299612,1),(1604,449024412,0),(1604,465354012,1),(1604,481078812,0),(1604,496803613,1),(1604,512528413,0),(1604,528253213,1),(1604,543978013,0),(1604,559702813,1),(1604,575427614,0),(1604,591152414,1),(1604,606877214,0),(1604,622602014,1),(1604,638326815,0),(1604,654656415,1),(1604,670381216,0),(1604,686106016,1),(1604,701830816,0),(1604,717555617,1),(1604,733280417,0),(1604,749005218,1),(1604,764730018,0),(1604,780454819,1),(1604,796179619,0),(1604,811904419,1),(1604,828234020,0),(1604,846378020,1),(1604,859683620,0),(1604,877827621,1),(1604,891133221,0),(1604,909277221,1),(1604,922582822,0),(1604,941331622,1),(1604,954032422,0),(1604,972781222,1),(1604,985482022,0),(1604,1004230822,1),(1604,1017536422,0),(1604,1035680422,1),(1604,1048986022,0),(1604,1067130022,1),(1604,1080435622,0),(1604,1099184422,1),(1604,1111885222,0),(1604,1130634022,1),(1604,1143334823,0),(1604,1162083623,1),(1604,1174784423,0),(1604,1193533223,1),(1604,1206838823,0),(1604,1224982823,1),(1604,1238288424,0),(1604,1256432424,1),(1604,1269738024,0),(1604,1288486824,1),(1604,1301187624,0),(1604,1319936424,1),(1604,1332637224,0),(1604,1351386025,1),(1604,1364691625,0),(1604,1382835625,1),(1604,1396141225,0),(1604,1414285225,1),(1604,1427590825,0),(1604,1445734826,1),(1604,1459040426,0),(1604,1477789226,1),(1604,1490490027,0),(1604,1509238827,1),(1604,1521939627,0),(1604,1540688427,1),(1604,1553994027,0),(1604,1572138027,1),(1604,1585443627,0),(1604,1603587627,1),(1604,1616893227,0),(1604,1635642027,1),(1604,1648342827,0),(1604,1667091627,1),(1604,1679792427,0),(1604,1698541227,1),(1604,1711846827,0),(1604,1729990827,1),(1604,1743296427,0),(1604,1761440427,1),(1604,1774746027,0),(1604,1792890027,1),(1604,1806195627,0),(1604,1824944427,1),(1604,1837645227,0),(1604,1856394027,1),(1604,1869094827,0),(1604,1887843627,1),(1604,1901149227,0),(1604,1919293227,1),(1604,1932598827,0),(1604,1950742827,1),(1604,1964048427,0),(1604,1982797227,1),(1604,1995498027,0),(1604,2014246827,1),(1604,2026947627,0),(1604,2045696427,1),(1604,2058397227,0),(1604,2077146027,1),(1604,2090451627,0),(1604,2108595627,1),(1604,2121901227,0),(1604,2140045227,1),(1606,-1633280400,0),(1606,-1615140000,1),(1606,-1601830800,0),(1606,-1583690400,1),(1606,-880218000,2),(1606,-769395600,3),(1606,-765396000,1),(1606,-84387600,0),(1606,-68666400,1),(1606,-52938000,0),(1606,-37216800,1),(1606,-21488400,0),(1606,-5767200,1),(1606,9961200,0),(1606,25682400,1),(1606,41410800,0),(1606,57736800,1),(1606,73465200,0),(1606,89186401,1),(1606,104914802,0),(1606,120636002,1),(1606,126687603,0),(1606,152085603,1),(1606,162370804,0),(1606,183535204,1),(1606,199263605,0),(1606,215589605,1),(1606,230713206,0),(1606,247039206,1),(1606,262767607,0),(1606,278488807,1),(1606,294217208,0),(1606,309938408,1),(1606,325666809,0),(1606,341388009,1),(1606,357116409,0),(1606,372837610,1),(1606,388566010,0),(1606,404892011,1),(1606,420015611,0),(1606,436341612,1),(1606,452070012,0),(1606,467791212,1),(1606,483519612,0),(1606,499240813,1),(1606,514969213,0),(1606,530690413,1),(1606,544604413,0),(1606,562140013,1),(1606,576054014,0),(1606,594194414,1),(1606,607503614,0),(1606,625644014,1),(1606,638953215,0),(1606,657093615,1),(1606,671007616,0),(1606,688543216,1),(1606,702457216,0),(1606,719992817,1),(1606,733906817,0),(1606,752047218,1),(1606,765356418,0),(1606,783496819,1),(1606,796806019,0),(1606,814946419,1),(1606,828860420,0),(1606,846396020,1),(1606,860310020,0),(1606,877845621,1),(1606,891759621,0),(1606,909295221,1),(1606,923209222,0),(1606,941349622,1),(1606,954658822,0),(1606,972799222,1),(1606,986108422,0),(1606,1004248822,1),(1606,1018162822,0),(1606,1035698422,1),(1606,1049612422,0),(1606,1067148022,1),(1606,1081062022,0),(1606,1099202422,1),(1606,1112511622,0),(1606,1130652022,1),(1606,1143961223,0),(1606,1162101623,1),(1606,1173596423,0),(1606,1194156023,1),(1606,1205046023,0),(1606,1225605623,1),(1606,1236495624,0),(1606,1257055224,1),(1606,1268550024,0),(1606,1289109624,1),(1606,1299999624,0),(1606,1320559224,1),(1606,1331449224,0),(1606,1352008825,1),(1606,1362898825,0),(1606,1383458425,1),(1606,1394348425,0),(1606,1414908025,1),(1606,1425798025,0),(1606,1446357626,1),(1606,1457852426,0),(1606,1478412026,1),(1606,1489302027,0),(1606,1509861627,1),(1606,1520751627,0),(1606,1541311227,1),(1606,1552201227,0),(1606,1572760827,1),(1606,1583650827,0),(1606,1604210427,1),(1606,1615705227,0),(1606,1636264827,1),(1606,1647154827,0),(1606,1667714427,1),(1606,1678604427,0),(1606,1699164027,1),(1606,1710054027,0),(1606,1730613627,1),(1606,1741503627,0),(1606,1762063227,1),(1606,1772953227,0),(1606,1793512827,1),(1606,1805007627,0),(1606,1825567227,1),(1606,1836457227,0),(1606,1857016827,1),(1606,1867906827,0),(1606,1888466427,1),(1606,1899356427,0),(1606,1919916027,1),(1606,1930806027,0),(1606,1951365627,1),(1606,1962860427,0),(1606,1983420027,1),(1606,1994310027,0),(1606,2014869627,1),(1606,2025759627,0),(1606,2046319227,1),(1606,2057209227,0),(1606,2077768827,1),(1606,2088658827,0),(1606,2109218427,1),(1606,2120108427,0),(1606,2140668027,1),(1607,-2147483648,2),(1607,-929844000,1),(1607,-923108400,2),(1607,-906170400,1),(1607,-892868400,2),(1607,-875844000,1),(1607,-857790000,2),(1607,-844308000,1),(1607,-825822000,2),(1607,-812685600,1),(1607,-794199600,2),(1607,-779853600,1),(1607,-762663600,2),(1607,-399088800,1),(1607,-386650800,2),(1607,-368330400,1),(1607,-355114800,2),(1607,-336790800,1),(1607,-323654400,2),(1607,-305168400,1),(1607,-292032000,2),(1607,-273632400,1),(1607,-260496000,2),(1607,-242096400,1),(1607,-228960000,2),(1607,-210560400,1),(1607,-197424000,2),(1607,-178938000,1),(1607,-165801600,2),(1607,-147402000,1),(1607,-134265600,2),(1607,-115866000,1),(1607,-102643200,2),(1607,-84330000,1),(1607,-71107200,2),(1607,-52707600,1),(1607,-39484800,2),(1607,-21171600,1),(1607,-7948800,2),(1607,10364400,1),(1607,23587200,2),(1607,41900400,1),(1607,55123200,2),(1607,73522800,1),(1607,86745601,2),(1607,105058802,1),(1607,118281602,2),(1607,136594803,1),(1607,149817603,2),(1607,168130804,1),(1607,181353604,2),(1607,199753205,1),(1607,212976005,2),(1607,231289206,1),(1607,244512006,2),(1607,262825207,1),(1607,276048007,2),(1607,294361208,1),(1607,307584008,2),(1607,325983609,1),(1607,339206409,2),(1607,357519609,1),(1607,370742410,2),(1607,396399611,1),(1607,402278411,2),(1607,426812412,1),(1607,433814412,2),(1607,452214012,1),(1607,465436812,2),(1607,483750012,1),(1607,496972813,2),(1607,515286013,1),(1607,528508813,2),(1607,546822013,1),(1607,560044813,2),(1607,578444414,1),(1607,591667214,2),(1607,610412414,1),(1607,623203214,2),(1607,641516415,1),(1607,654739215,2),(1607,673052416,1),(1607,686275216,2),(1607,704674816,1),(1607,717897617,2),(1607,736210817,1),(1607,749433618,2),(1607,767746818,1),(1607,780969619,2),(1607,799020019,3),(1607,812322019,2),(1607,830469620,3),(1607,843771620,2),(1607,861919220,3),(1607,875221221,2),(1607,893368821,3),(1607,906670821,2),(1607,925423222,3),(1607,938725222,2),(1607,956872822,3),(1607,970174822,2),(1607,988322422,3),(1607,1001624422,2),(1607,1019772022,3),(1607,1033074022,2),(1607,1051221622,3),(1607,1064523622,2),(1607,1083276022,3),(1607,1096578022,2),(1607,1114725622,3),(1607,1128027622,2),(1607,1146175223,3),(1607,1158872423,2),(1607,1177624823,3),(1607,1189112423,2),(1607,1209074423,3),(1607,1219957223,2),(1607,1240524024,3),(1607,1250802024,2),(1607,1272578424,3),(1607,1281474024,2),(1607,1284069624,1),(1607,1285880424,2),(1607,1400191225,1),(1607,1403816425,2),(1607,1406844025,1),(1607,1411678825,2),(1608,-2147483648,1),(1608,-1691962479,2),(1608,-1680471279,4),(1608,-1664143200,3),(1608,-1650146400,4),(1608,-1633903200,3),(1608,-1617487200,4),(1608,-1601848800,3),(1608,-1586037600,4),(1608,-1570399200,3),(1608,-1552168800,4),(1608,-1538344800,3),(1608,-1522533600,4),(1608,-1517011200,6),(1608,-1507500000,5),(1608,-1490565600,4),(1608,-1473631200,5),(1608,-1460930400,4),(1608,-1442786400,5),(1608,-1428876000,4),(1608,-1410732000,5),(1608,-1396216800,4),(1608,-1379282400,5),(1608,-1364767200,4),(1608,-1348437600,5),(1608,-1333317600,4),(1608,-1315778400,5),(1608,-1301263200,4),(1608,-1284328800,5),(1608,-1269813600,4),(1608,-1253484000,5),(1608,-1238364000,4),(1608,-1221429600,5),(1608,-1206914400,4),(1608,-1189980000,5),(1608,-1175464800,4),(1608,-1159135200,5),(1608,-1143410400,4),(1608,-1126476000,5),(1608,-1111960800,4),(1608,-1095631200,5),(1608,-1080511200,4),(1608,-1063576800,5),(1608,-1049061600,4),(1608,-1032127200,5),(1608,-1017612000,4),(1608,-1001282400,5),(1608,-986162400,4),(1608,-969228000,5),(1608,-950479200,4),(1608,-942012000,5),(1608,-733356000,4),(1608,-719445600,5),(1608,-699487200,4),(1608,-684972000,5),(1608,-668037600,4),(1608,-654732000,5),(1608,-636588000,4),(1608,-622072800,5),(1608,-605743200,4),(1608,-590623200,5),(1608,-574293600,4),(1608,-558568800,5),(1608,-542239200,4),(1608,-527119200,5),(1608,-512604000,4),(1608,-496274400,5),(1608,-481154400,4),(1608,-464220000,5),(1608,-449704800,4),(1608,-432165600,5),(1608,-417650400,4),(1608,-401320800,5),(1608,-386200800,4),(1608,-369266400,5),(1608,-354751200,4),(1608,-337816800,5),(1608,-323301600,4),(1608,-306972000,5),(1608,-291852000,4),(1608,-276732000,5),(1608,-257983200,4),(1608,-245282400,5),(1608,-226533600,4),(1608,-213228000,5),(1608,-195084000,4),(1608,-182383200,5),(1608,-163634400,4),(1608,-150933600,5),(1608,-132184800,4),(1608,-119484000,5),(1608,-100735200,4),(1608,-88034400,5),(1608,-68680800,4),(1608,-59004000,5),(1608,-37242000,9),(1608,57722400,7),(1608,69818400,8),(1608,89172001,7),(1608,101268002,8),(1608,120621602,7),(1608,132717603,8),(1608,152071203,7),(1608,164167204,8),(1608,183520804,7),(1608,196221605,8),(1608,214970405,7),(1608,227671206,8),(1608,246420006,7),(1608,259120807,8),(1608,278474407,7),(1608,290570408,8),(1608,309924008,7),(1608,322020009,8),(1608,341373609,7),(1608,354675609,8),(1608,372819610,7),(1608,386125210,8),(1608,404269211,7),(1608,417574811,8),(1608,435718812,7),(1608,449024412,8),(1608,467773212,7),(1608,481078812,8),(1608,499222813,7),(1608,512528413,8),(1608,530672413,7),(1608,543978013,8),(1608,562122013,7),(1608,575427614,8),(1608,593571614,7),(1608,606877214,8),(1608,625626014,7),(1608,638326815,8),(1608,657075615,7),(1608,670381216,8),(1608,688525216,7),(1608,701830816,8),(1608,719974817,7),(1608,733280417,8),(1608,751424418,7),(1608,764730018,8),(1608,782874019,7),(1608,796179619,8),(1608,814323619,7),(1608,828234020,8),(1608,846378020,7),(1608,859683620,8),(1608,877827621,7),(1608,891133221,8),(1608,909277221,7),(1608,922582822,8),(1608,941331622,7),(1608,954032422,8),(1608,972781222,7),(1608,985482022,8),(1608,1004230822,7),(1608,1017536422,8),(1608,1035680422,7),(1608,1048986022,8),(1608,1067130022,7),(1608,1080435622,8),(1608,1099184422,7),(1608,1111885222,8),(1608,1130634022,7),(1608,1143334823,8),(1608,1162083623,7),(1608,1174784423,8),(1608,1193533223,7),(1608,1206838823,8),(1608,1224982823,7),(1608,1238288424,8),(1608,1256432424,7),(1608,1269738024,8),(1608,1288486824,7),(1608,1301187624,8),(1608,1319936424,7),(1608,1332637224,8),(1608,1351386025,7),(1608,1364691625,8),(1608,1382835625,7),(1608,1396141225,8),(1608,1414285225,7),(1608,1427590825,8),(1608,1445734826,7),(1608,1459040426,8),(1608,1477789226,7),(1608,1490490027,8),(1608,1509238827,7),(1608,1521939627,8),(1608,1540688427,7),(1608,1553994027,8),(1608,1572138027,7),(1608,1585443627,8),(1608,1603587627,7),(1608,1616893227,8),(1608,1635642027,7),(1608,1648342827,8),(1608,1667091627,7),(1608,1679792427,8),(1608,1698541227,7),(1608,1711846827,8),(1608,1729990827,7),(1608,1743296427,8),(1608,1761440427,7),(1608,1774746027,8),(1608,1792890027,7),(1608,1806195627,8),(1608,1824944427,7),(1608,1837645227,8),(1608,1856394027,7),(1608,1869094827,8),(1608,1887843627,7),(1608,1901149227,8),(1608,1919293227,7),(1608,1932598827,8),(1608,1950742827,7),(1608,1964048427,8),(1608,1982797227,7),(1608,1995498027,8),(1608,2014246827,7),(1608,2026947627,8),(1608,2045696427,7),(1608,2058397227,8),(1608,2077146027,7),(1608,2090451627,8),(1608,2108595627,7),(1608,2121901227,8),(1608,2140045227,7),(1644,-2147483648,2),(1644,-1693700372,1),(1644,-1680484772,2),(1644,-1663453172,3),(1644,-1650147572,4),(1644,-1633213172,3),(1644,-1617488372,4),(1644,-1601158772,3),(1644,-1586038772,4),(1644,-1569709172,3),(1644,-1554589172,4),(1644,-1538259572,3),(1644,-1523139572,4),(1644,-1507501172,3),(1644,-1490566772,4),(1644,-1470176372,3),(1644,-1459117172,4),(1644,-1443997172,3),(1644,-1427667572,4),(1644,-1406672372,3),(1644,-1396217972,4),(1644,-1376950772,3),(1644,-1364768372,4),(1644,-1345414772,3),(1644,-1333318772,4),(1644,-1313792372,3),(1644,-1301264372,4),(1644,-1282256372,3),(1644,-1269814772,4),(1644,-1250720372,3),(1644,-1238365172,4),(1644,-1219184372,3),(1644,-1206915572,4),(1644,-1186957172,3),(1644,-1175465972,4),(1644,-1156025972,3),(1644,-1143411572,4),(1644,-1124489972,3),(1644,-1111961972,4),(1644,-1092953972,3),(1644,-1080512372,4),(1644,-1061331572,3),(1644,-1049062772,4),(1644,-1029190772,3),(1644,-1025745572,7),(1644,-1017613200,5),(1644,-998259600,6),(1644,-986163600,5),(1644,-966723600,6),(1644,-954109200,5),(1644,-935022000,10),(1644,-857257200,8),(1644,-844556400,9),(1644,-828226800,8),(1644,-812502000,9),(1644,-796777200,8),(1644,-781052400,9),(1644,-766623600,8),(1644,220921205,13),(1644,228877206,11),(1644,243997206,12),(1644,260326807,11),(1644,276051607,12),(1644,291776408,11),(1644,307501208,12),(1644,323830809,11),(1644,338950809,12),(1644,354675609,11),(1644,370400410,12),(1644,386125210,11),(1644,401850011,12),(1644,417574811,11),(1644,433299612,12),(1644,449024412,11),(1644,465354012,12),(1644,481078812,11),(1644,496803613,12),(1644,512528413,11),(1644,528253213,12),(1644,543978013,11),(1644,559702813,12),(1644,575427614,11),(1644,591152414,12),(1644,606877214,11),(1644,622602014,12),(1644,638326815,11),(1644,654656415,12),(1644,670381216,11),(1644,686106016,12),(1644,701830816,11),(1644,717555617,12),(1644,733280417,11),(1644,749005218,12),(1644,764730018,11),(1644,780454819,12),(1644,796179619,11),(1644,811904419,12),(1644,828234020,11),(1644,846378020,12),(1644,859683620,11),(1644,877827621,12),(1644,891133221,11),(1644,909277221,12),(1644,922582822,11),(1644,941331622,12),(1644,954032422,11),(1644,972781222,12),(1644,985482022,11),(1644,1004230822,12),(1644,1017536422,11),(1644,1035680422,12),(1644,1048986022,11),(1644,1067130022,12),(1644,1080435622,11),(1644,1099184422,12),(1644,1111885222,11),(1644,1130634022,12),(1644,1143334823,11),(1644,1162083623,12),(1644,1174784423,11),(1644,1193533223,12),(1644,1206838823,11),(1644,1224982823,12),(1644,1238288424,11),(1644,1256432424,12),(1644,1269738024,11),(1644,1288486824,12),(1644,1301187624,11),(1644,1319936424,12),(1644,1332637224,11),(1644,1351386025,12),(1644,1364691625,11),(1644,1382835625,12),(1644,1396141225,11),(1644,1414285225,12),(1644,1427590825,11),(1644,1445734826,12),(1644,1459040426,11),(1644,1477789226,12),(1644,1490490027,11),(1644,1509238827,12),(1644,1521939627,11),(1644,1540688427,12),(1644,1553994027,11),(1644,1572138027,12),(1644,1585443627,11),(1644,1603587627,12),(1644,1616893227,11),(1644,1635642027,12),(1644,1648342827,11),(1644,1667091627,12),(1644,1679792427,11),(1644,1698541227,12),(1644,1711846827,11),(1644,1729990827,12),(1644,1743296427,11),(1644,1761440427,12),(1644,1774746027,11),(1644,1792890027,12),(1644,1806195627,11),(1644,1824944427,12),(1644,1837645227,11),(1644,1856394027,12),(1644,1869094827,11),(1644,1887843627,12),(1644,1901149227,11),(1644,1919293227,12),(1644,1932598827,11),(1644,1950742827,12),(1644,1964048427,11),(1644,1982797227,12),(1644,1995498027,11),(1644,2014246827,12),(1644,2026947627,11),(1644,2045696427,12),(1644,2058397227,11),(1644,2077146027,12),(1644,2090451627,11),(1644,2108595627,12),(1644,2121901227,11),(1644,2140045227,12),(1645,-2147483648,1),(1645,-733881600,2),(1645,481078812,3),(1645,496803613,4),(1645,512528413,3),(1645,528253213,4),(1645,543978013,3),(1645,559702813,4),(1645,575427614,3),(1645,591152414,4),(1645,606877214,3),(1645,622602014,4),(1645,638326815,3),(1645,654656415,4),(1645,670381216,3),(1645,686106016,4),(1645,701830816,3),(1645,717555617,4),(1645,733280417,3),(1645,749005218,4),(1645,764730018,3),(1645,780454819,4),(1645,796179619,3),(1645,811904419,4),(1645,828234020,3),(1645,846378020,4),(1645,859683620,3),(1645,877827621,4),(1645,891133221,3),(1645,909277221,4),(1645,922582822,3),(1645,941331622,4),(1645,954032422,3),(1645,972781222,4),(1645,985482022,3),(1645,1004230822,4),(1645,1017536422,3),(1645,1035680422,4),(1645,1048986022,3),(1645,1067130022,4),(1645,1080435622,3),(1645,1099184422,4),(1645,1111885222,3),(1645,1130634022,4),(1645,1143334823,3),(1645,1162083623,4),(1645,1174784423,3),(1645,1193533223,4),(1645,1206838823,3),(1645,1224982823,4),(1645,1238288424,3),(1645,1256432424,4),(1645,1269738024,3),(1645,1288486824,4),(1645,1301187624,3),(1645,1319936424,4),(1645,1332637224,3),(1645,1351386025,4),(1645,1364691625,3),(1645,1382835625,4),(1645,1396141225,3),(1645,1414285225,4),(1645,1427590825,3),(1645,1445734826,4),(1645,1459040426,3),(1645,1477789226,4),(1645,1490490027,3),(1645,1509238827,4),(1645,1521939627,3),(1645,1540688427,4),(1645,1553994027,3),(1645,1572138027,4),(1645,1585443627,3),(1645,1603587627,4),(1645,1616893227,3),(1645,1635642027,4),(1645,1648342827,3),(1645,1667091627,4),(1645,1679792427,3),(1645,1698541227,4),(1645,1711846827,3),(1645,1729990827,4),(1645,1743296427,3),(1645,1761440427,4),(1645,1774746027,3),(1645,1792890027,4),(1645,1806195627,3),(1645,1824944427,4),(1645,1837645227,3),(1645,1856394027,4),(1645,1869094827,3),(1645,1887843627,4),(1645,1901149227,3),(1645,1919293227,4),(1645,1932598827,3),(1645,1950742827,4),(1645,1964048427,3),(1645,1982797227,4),(1645,1995498027,3),(1645,2014246827,4),(1645,2026947627,3),(1645,2045696427,4),(1645,2058397227,3),(1645,2077146027,4),(1645,2090451627,3),(1645,2108595627,4),(1645,2121901227,3),(1645,2140045227,4),(1646,-2147483648,0),(1646,-1441249932,1),(1646,-1247540400,3),(1646,354916809,2),(1646,370724410,3),(1646,386452810,2),(1646,402260411,3),(1646,417988811,2),(1646,433796412,3),(1646,449611212,2),(1646,465343212,4),(1646,481068012,5),(1646,496792813,4),(1646,512517613,5),(1646,528242413,4),(1646,543967213,5),(1646,559692013,4),(1646,575416814,5),(1646,591141614,4),(1646,606866414,6),(1646,622594814,7),(1646,638319615,6),(1646,654649215,7),(1646,670374016,4),(1646,701820016,6),(1646,717548417,7),(1646,733273217,6),(1646,748998018,7),(1646,764722818,6),(1646,780447619,7),(1646,796172419,6),(1646,811897219,7),(1646,828226820,6),(1646,846370820,7),(1646,859676420,6),(1646,877820421,7),(1646,891126021,6),(1646,909270021,7),(1646,922575622,6),(1646,941324422,7),(1646,954025222,6),(1646,972774022,7),(1646,985474822,6),(1646,1004223622,7),(1646,1017529222,6),(1646,1035673222,7),(1646,1048978822,6),(1646,1067122822,7),(1646,1080428422,6),(1646,1099177222,7),(1646,1111878022,6),(1646,1130626822,7),(1646,1143327623,6),(1646,1162076423,7),(1646,1174777223,6),(1646,1193526023,7),(1646,1206831623,6),(1646,1224975623,7),(1646,1238281224,6),(1646,1256425224,7),(1646,1269730824,6),(1646,1288479624,7),(1646,1301180424,4),(1646,1414274425,7),(1646,1459033226,4),(1647,-2147483648,1),(1647,-1686101632,3),(1647,-1182996000,2),(1647,-1178161200,3),(1647,-906861600,2),(1647,-904878000,5),(1647,-857257200,4),(1647,-844477200,5),(1647,-828237600,4),(1647,-812422800,3),(1647,-552362400,2),(1647,-541652400,3),(1647,166485604,6),(1647,186184804,7),(1647,198028805,6),(1647,213753605,7),(1647,228873606,6),(1647,244080006,7),(1647,260323207,6),(1647,275446807,3),(1647,291798008,2),(1647,307407608,3),(1647,323388009,2),(1647,338936409,3),(1647,354675609,8),(1647,370400410,9),(1647,386125210,8),(1647,401850011,9),(1647,417574811,8),(1647,433299612,9),(1647,449024412,8),(1647,465354012,9),(1647,481078812,8),(1647,496803613,9),(1647,512528413,8),(1647,528253213,9),(1647,543978013,8),(1647,559702813,9),(1647,575427614,8),(1647,591152414,9),(1647,606877214,8),(1647,622602014,9),(1647,638326815,8),(1647,654656415,9),(1647,670381216,8),(1647,686106016,9),(1647,701830816,8),(1647,717555617,9),(1647,733280417,8),(1647,749005218,9),(1647,764730018,8),(1647,780454819,9),(1647,796179619,8),(1647,811904419,9),(1647,828234020,8),(1647,846378020,9),(1647,859683620,8),(1647,877827621,9),(1647,891133221,8),(1647,909277221,9),(1647,922582822,8),(1647,941331622,9),(1647,954032422,8),(1647,972781222,9),(1647,985482022,8),(1647,1004230822,9),(1647,1017536422,8),(1647,1035680422,9),(1647,1048986022,8),(1647,1067130022,9),(1647,1080435622,8),(1647,1099184422,9),(1647,1111885222,8),(1647,1130634022,9),(1647,1143334823,8),(1647,1162083623,9),(1647,1174784423,8),(1647,1193533223,9),(1647,1206838823,8),(1647,1224982823,9),(1647,1238288424,8),(1647,1256432424,9),(1647,1269738024,8),(1647,1288486824,9),(1647,1301187624,8),(1647,1319936424,9),(1647,1332637224,8),(1647,1351386025,9),(1647,1364691625,8),(1647,1382835625,9),(1647,1396141225,8),(1647,1414285225,9),(1647,1427590825,8),(1647,1445734826,9),(1647,1459040426,8),(1647,1477789226,9),(1647,1490490027,8),(1647,1509238827,9),(1647,1521939627,8),(1647,1540688427,9),(1647,1553994027,8),(1647,1572138027,9),(1647,1585443627,8),(1647,1603587627,9),(1647,1616893227,8),(1647,1635642027,9),(1647,1648342827,8),(1647,1667091627,9),(1647,1679792427,8),(1647,1698541227,9),(1647,1711846827,8),(1647,1729990827,9),(1647,1743296427,8),(1647,1761440427,9),(1647,1774746027,8),(1647,1792890027,9),(1647,1806195627,8),(1647,1824944427,9),(1647,1837645227,8),(1647,1856394027,9),(1647,1869094827,8),(1647,1887843627,9),(1647,1901149227,8),(1647,1919293227,9),(1647,1932598827,8),(1647,1950742827,9),(1647,1964048427,8),(1647,1982797227,9),(1647,1995498027,8),(1647,2014246827,9),(1647,2026947627,8),(1647,2045696427,9),(1647,2058397227,8),(1647,2077146027,9),(1647,2090451627,8),(1647,2108595627,9),(1647,2121901227,8),(1647,2140045227,9),(1648,-2147483648,2),(1648,-1691964000,1),(1648,-1680472800,2),(1648,-1664143200,1),(1648,-1650146400,2),(1648,-1633903200,1),(1648,-1617487200,2),(1648,-1601848800,1),(1648,-1586037600,2),(1648,-1570399200,1),(1648,-1552168800,2),(1648,-1538344800,1),(1648,-1522533600,2),(1648,-1507500000,1),(1648,-1490565600,2),(1648,-1473631200,1),(1648,-1460930400,2),(1648,-1442786400,1),(1648,-1428876000,2),(1648,-1410732000,1),(1648,-1396216800,2),(1648,-1379282400,1),(1648,-1364767200,2),(1648,-1348437600,1),(1648,-1333317600,2),(1648,-1315778400,1),(1648,-1301263200,2),(1648,-1284328800,1),(1648,-1269813600,2),(1648,-1253484000,1),(1648,-1238364000,2),(1648,-1221429600,1),(1648,-1206914400,2),(1648,-1189980000,1),(1648,-1175464800,2),(1648,-1159135200,1),(1648,-1143410400,2),(1648,-1126476000,1),(1648,-1111960800,2),(1648,-1095631200,1),(1648,-1080511200,2),(1648,-1063576800,1),(1648,-1049061600,2),(1648,-1032127200,1),(1648,-1017612000,2),(1648,-1001282400,1),(1648,-986162400,2),(1648,-969228000,1),(1648,-950479200,2),(1648,-942012000,1),(1648,-904518000,3),(1648,-896050800,1),(1648,-875487600,3),(1648,-864601200,1),(1648,-844038000,3),(1648,-832546800,1),(1648,-812588400,3),(1648,-798073200,1),(1648,-781052400,3),(1648,-772066800,1),(1648,-764805600,2),(1648,-748476000,1),(1648,-733356000,2),(1648,-719445600,1),(1648,-717030000,3),(1648,-706748400,1),(1648,-699487200,2),(1648,-687996000,1),(1648,-668037600,2),(1648,-654732000,1),(1648,-636588000,2),(1648,-622072800,1),(1648,-605743200,2),(1648,-590623200,1),(1648,-574293600,2),(1648,-558568800,1),(1648,-542239200,2),(1648,-527119200,1),(1648,-512604000,2),(1648,-496274400,1),(1648,-481154400,2),(1648,-464220000,1),(1648,-449704800,2),(1648,-432165600,1),(1648,-417650400,2),(1648,-401320800,1),(1648,-386200800,2),(1648,-369266400,1),(1648,-354751200,2),(1648,-337816800,1),(1648,-323301600,2),(1648,-306972000,1),(1648,-291852000,2),(1648,-276732000,1),(1648,-257983200,2),(1648,-245282400,1),(1648,-226533600,2),(1648,-213228000,1),(1648,-195084000,2),(1648,-182383200,1),(1648,-163634400,2),(1648,-150933600,1),(1648,-132184800,2),(1648,-119484000,1),(1648,-100735200,2),(1648,-88034400,1),(1648,-68680800,2),(1648,-59004000,1),(1648,-37242000,4),(1648,57722400,6),(1648,69818400,1),(1648,89172001,2),(1648,101268002,1),(1648,120621602,2),(1648,132717603,1),(1648,152071203,2),(1648,164167204,1),(1648,183520804,2),(1648,196221605,1),(1648,214970405,2),(1648,227671206,1),(1648,246420006,2),(1648,259120807,1),(1648,278474407,2),(1648,290570408,1),(1648,309924008,2),(1648,322020009,1),(1648,341373609,2),(1648,354675609,5),(1648,372819610,6),(1648,386125210,5),(1648,404269211,6),(1648,417574811,5),(1648,435718812,6),(1648,449024412,5),(1648,467773212,6),(1648,481078812,5),(1648,499222813,6),(1648,512528413,5),(1648,530672413,6),(1648,543978013,5),(1648,562122013,6),(1648,575427614,5),(1648,593571614,6),(1648,606877214,5),(1648,625626014,6),(1648,638326815,5),(1648,657075615,6),(1648,670381216,5),(1648,688525216,6),(1648,701830816,5),(1648,719974817,6),(1648,733280417,5),(1648,751424418,6),(1648,764730018,5),(1648,782874019,6),(1648,796179619,5),(1648,814323619,6),(1648,820454420,7),(1648,828234020,5),(1648,846378020,6),(1648,859683620,5),(1648,877827621,6),(1648,891133221,5),(1648,909277221,6),(1648,922582822,5),(1648,941331622,6),(1648,954032422,5),(1648,972781222,6),(1648,985482022,5),(1648,1004230822,6),(1648,1017536422,5),(1648,1035680422,6),(1648,1048986022,5),(1648,1067130022,6),(1648,1080435622,5),(1648,1099184422,6),(1648,1111885222,5),(1648,1130634022,6),(1648,1143334823,5),(1648,1162083623,6),(1648,1174784423,5),(1648,1193533223,6),(1648,1206838823,5),(1648,1224982823,6),(1648,1238288424,5),(1648,1256432424,6),(1648,1269738024,5),(1648,1288486824,6),(1648,1301187624,5),(1648,1319936424,6),(1648,1332637224,5),(1648,1351386025,6),(1648,1364691625,5),(1648,1382835625,6),(1648,1396141225,5),(1648,1414285225,6),(1648,1427590825,5),(1648,1445734826,6),(1648,1459040426,5),(1648,1477789226,6),(1648,1490490027,5),(1648,1509238827,6),(1648,1521939627,5),(1648,1540688427,6),(1648,1553994027,5),(1648,1572138027,6),(1648,1585443627,5),(1648,1603587627,6),(1648,1616893227,5),(1648,1635642027,6),(1648,1648342827,5),(1648,1667091627,6),(1648,1679792427,5),(1648,1698541227,6),(1648,1711846827,5),(1648,1729990827,6),(1648,1743296427,5),(1648,1761440427,6),(1648,1774746027,5),(1648,1792890027,6),(1648,1806195627,5),(1648,1824944427,6),(1648,1837645227,5),(1648,1856394027,6),(1648,1869094827,5),(1648,1887843627,6),(1648,1901149227,5),(1648,1919293227,6),(1648,1932598827,5),(1648,1950742827,6),(1648,1964048427,5),(1648,1982797227,6),(1648,1995498027,5),(1648,2014246827,6),(1648,2026947627,5),(1648,2045696427,6),(1648,2058397227,5),(1648,2077146027,6),(1648,2090451627,5),(1648,2108595627,6),(1648,2121901227,5),(1648,2140045227,6),(1649,-2147483648,1),(1649,-905824800,4),(1649,-857257200,2),(1649,-844556400,3),(1649,-828226800,2),(1649,-812502000,3),(1649,-796777200,2),(1649,-788922000,1),(1649,-777942000,3),(1649,-766623600,2),(1649,407199611,1),(1649,417574811,5),(1649,433299612,6),(1649,449024412,5),(1649,465354012,6),(1649,481078812,5),(1649,496803613,6),(1649,512528413,5),(1649,528253213,6),(1649,543978013,5),(1649,559702813,6),(1649,575427614,5),(1649,591152414,6),(1649,606877214,5),(1649,622602014,6),(1649,638326815,5),(1649,654656415,6),(1649,670381216,5),(1649,686106016,6),(1649,701830816,5),(1649,717555617,6),(1649,733280417,5),(1649,749005218,6),(1649,764730018,5),(1649,780454819,6),(1649,796179619,5),(1649,811904419,6),(1649,828234020,5),(1649,846378020,6),(1649,859683620,5),(1649,877827621,6),(1649,891133221,5),(1649,909277221,6),(1649,922582822,5),(1649,941331622,6),(1649,954032422,5),(1649,972781222,6),(1649,985482022,5),(1649,1004230822,6),(1649,1017536422,5),(1649,1035680422,6),(1649,1048986022,5),(1649,1067130022,6),(1649,1080435622,5),(1649,1099184422,6),(1649,1111885222,5),(1649,1130634022,6),(1649,1143334823,5),(1649,1162083623,6),(1649,1174784423,5),(1649,1193533223,6),(1649,1206838823,5),(1649,1224982823,6),(1649,1238288424,5),(1649,1256432424,6),(1649,1269738024,5),(1649,1288486824,6),(1649,1301187624,5),(1649,1319936424,6),(1649,1332637224,5),(1649,1351386025,6),(1649,1364691625,5),(1649,1382835625,6),(1649,1396141225,5),(1649,1414285225,6),(1649,1427590825,5),(1649,1445734826,6),(1649,1459040426,5),(1649,1477789226,6),(1649,1490490027,5),(1649,1509238827,6),(1649,1521939627,5),(1649,1540688427,6),(1649,1553994027,5),(1649,1572138027,6),(1649,1585443627,5),(1649,1603587627,6),(1649,1616893227,5),(1649,1635642027,6),(1649,1648342827,5),(1649,1667091627,6),(1649,1679792427,5),(1649,1698541227,6),(1649,1711846827,5),(1649,1729990827,6),(1649,1743296427,5),(1649,1761440427,6),(1649,1774746027,5),(1649,1792890027,6),(1649,1806195627,5),(1649,1824944427,6),(1649,1837645227,5),(1649,1856394027,6),(1649,1869094827,5),(1649,1887843627,6),(1649,1901149227,5),(1649,1919293227,6),(1649,1932598827,5),(1649,1950742827,6),(1649,1964048427,5),(1649,1982797227,6),(1649,1995498027,5),(1649,2014246827,6),(1649,2026947627,5),(1649,2045696427,6),(1649,2058397227,5),(1649,2077146027,6),(1649,2090451627,5),(1649,2108595627,6),(1649,2121901227,5),(1649,2140045227,6),(1650,-2147483648,2),(1650,-1693706400,1),(1650,-1680483600,2),(1650,-1663455600,3),(1650,-1650150000,4),(1650,-1632006000,3),(1650,-1618700400,4),(1650,-938905200,3),(1650,-857257200,4),(1650,-844556400,3),(1650,-828226800,4),(1650,-812502000,3),(1650,-796777200,4),(1650,-781052400,3),(1650,-776563200,5),(1650,-765936000,1),(1650,-761180400,4),(1650,-757386000,2),(1650,-748479600,3),(1650,-733273200,4),(1650,-717631200,3),(1650,-714610800,6),(1650,-710380800,1),(1650,-701910000,4),(1650,-684975600,3),(1650,-670460400,4),(1650,-654130800,3),(1650,-639010800,4),(1650,315529208,2),(1650,323830809,7),(1650,338950809,8),(1650,354675609,7),(1650,370400410,8),(1650,386125210,7),(1650,401850011,8),(1650,417574811,7),(1650,433299612,8),(1650,449024412,7),(1650,465354012,8),(1650,481078812,7),(1650,496803613,8),(1650,512528413,7),(1650,528253213,8),(1650,543978013,7),(1650,559702813,8),(1650,575427614,7),(1650,591152414,8),(1650,606877214,7),(1650,622602014,8),(1650,638326815,7),(1650,654656415,8),(1650,670381216,7),(1650,686106016,8),(1650,701830816,7),(1650,717555617,8),(1650,733280417,7),(1650,749005218,8),(1650,764730018,7),(1650,780454819,8),(1650,796179619,7),(1650,811904419,8),(1650,828234020,7),(1650,846378020,8),(1650,859683620,7),(1650,877827621,8),(1650,891133221,7),(1650,909277221,8),(1650,922582822,7),(1650,941331622,8),(1650,954032422,7),(1650,972781222,8),(1650,985482022,7),(1650,1004230822,8),(1650,1017536422,7),(1650,1035680422,8),(1650,1048986022,7),(1650,1067130022,8),(1650,1080435622,7),(1650,1099184422,8),(1650,1111885222,7),(1650,1130634022,8),(1650,1143334823,7),(1650,1162083623,8),(1650,1174784423,7),(1650,1193533223,8),(1650,1206838823,7),(1650,1224982823,8),(1650,1238288424,7),(1650,1256432424,8),(1650,1269738024,7),(1650,1288486824,8),(1650,1301187624,7),(1650,1319936424,8),(1650,1332637224,7),(1650,1351386025,8),(1650,1364691625,7),(1650,1382835625,8),(1650,1396141225,7),(1650,1414285225,8),(1650,1427590825,7),(1650,1445734826,8),(1650,1459040426,7),(1650,1477789226,8),(1650,1490490027,7),(1650,1509238827,8),(1650,1521939627,7),(1650,1540688427,8),(1650,1553994027,7),(1650,1572138027,8),(1650,1585443627,7),(1650,1603587627,8),(1650,1616893227,7),(1650,1635642027,8),(1650,1648342827,7),(1650,1667091627,8),(1650,1679792427,7),(1650,1698541227,8),(1650,1711846827,7),(1650,1729990827,8),(1650,1743296427,7),(1650,1761440427,8),(1650,1774746027,7),(1650,1792890027,8),(1650,1806195627,7),(1650,1824944427,8),(1650,1837645227,7),(1650,1856394027,8),(1650,1869094827,7),(1650,1887843627,8),(1650,1901149227,7),(1650,1919293227,8),(1650,1932598827,7),(1650,1950742827,8),(1650,1964048427,7),(1650,1982797227,8),(1650,1995498027,7),(1650,2014246827,8),(1650,2026947627,7),(1650,2045696427,8),(1650,2058397227,7),(1650,2077146027,8),(1650,2090451627,7),(1650,2108595627,8),(1650,2121901227,7),(1650,2140045227,8),(1651,-2147483648,2),(1651,-1693706400,1),(1651,-1680483600,2),(1651,-1663455600,3),(1651,-1650150000,4),(1651,-1632006000,3),(1651,-1618700400,4),(1651,-938905200,3),(1651,-857257200,4),(1651,-844556400,3),(1651,-828226800,4),(1651,-812502000,3),(1651,-796777200,4),(1651,-781052400,3),(1651,-777866400,1),(1651,-765327600,4),(1651,-746578800,3),(1651,-733359600,4),(1651,-728517600,5),(1651,-721260000,2),(1651,-716425200,3),(1651,-701910000,4),(1651,-684975600,3),(1651,-670460400,4),(1651,-654217200,3),(1651,-639010800,4),(1651,283993207,2),(1651,291776408,6),(1651,307501208,7),(1651,323830809,6),(1651,338950809,7),(1651,354675609,6),(1651,370400410,7),(1651,386125210,6),(1651,401850011,7),(1651,417574811,6),(1651,433299612,7),(1651,449024412,6),(1651,465354012,7),(1651,481078812,6),(1651,496803613,7),(1651,512528413,6),(1651,528253213,7),(1651,543978013,6),(1651,559702813,7),(1651,575427614,6),(1651,591152414,7),(1651,606877214,6),(1651,622602014,7),(1651,638326815,6),(1651,654656415,7),(1651,670381216,6),(1651,686106016,7),(1651,701830816,6),(1651,717555617,7),(1651,733280417,6),(1651,749005218,7),(1651,764730018,6),(1651,780454819,7),(1651,796179619,6),(1651,811904419,7),(1651,828234020,6),(1651,846378020,7),(1651,859683620,6),(1651,877827621,7),(1651,891133221,6),(1651,909277221,7),(1651,922582822,6),(1651,941331622,7),(1651,954032422,6),(1651,972781222,7),(1651,985482022,6),(1651,1004230822,7),(1651,1017536422,6),(1651,1035680422,7),(1651,1048986022,6),(1651,1067130022,7),(1651,1080435622,6),(1651,1099184422,7),(1651,1111885222,6),(1651,1130634022,7),(1651,1143334823,6),(1651,1162083623,7),(1651,1174784423,6),(1651,1193533223,7),(1651,1206838823,6),(1651,1224982823,7),(1651,1238288424,6),(1651,1256432424,7),(1651,1269738024,6),(1651,1288486824,7),(1651,1301187624,6),(1651,1319936424,7),(1651,1332637224,6),(1651,1351386025,7),(1651,1364691625,6),(1651,1382835625,7),(1651,1396141225,6),(1651,1414285225,7),(1651,1427590825,6),(1651,1445734826,7),(1651,1459040426,6),(1651,1477789226,7),(1651,1490490027,6),(1651,1509238827,7),(1651,1521939627,6),(1651,1540688427,7),(1651,1553994027,6),(1651,1572138027,7),(1651,1585443627,6),(1651,1603587627,7),(1651,1616893227,6),(1651,1635642027,7),(1651,1648342827,6),(1651,1667091627,7),(1651,1679792427,6),(1651,1698541227,7),(1651,1711846827,6),(1651,1729990827,7),(1651,1743296427,6),(1651,1761440427,7),(1651,1774746027,6),(1651,1792890027,7),(1651,1806195627,6),(1651,1824944427,7),(1651,1837645227,6),(1651,1856394027,7),(1651,1869094827,6),(1651,1887843627,7),(1651,1901149227,6),(1651,1919293227,7),(1651,1932598827,6),(1651,1950742827,7),(1651,1964048427,6),(1651,1982797227,7),(1651,1995498027,6),(1651,2014246827,7),(1651,2026947627,6),(1651,2045696427,7),(1651,2058397227,6),(1651,2077146027,7),(1651,2090451627,6),(1651,2108595627,7),(1651,2121901227,6),(1651,2140045227,7),(1652,-2147483648,1),(1652,-1740355200,2),(1652,-1693702800,5),(1652,-1680483600,2),(1652,-1663455600,3),(1652,-1650150000,4),(1652,-1632006000,3),(1652,-1618700400,4),(1652,-1613826000,8),(1652,-1604278800,6),(1652,-1585530000,7),(1652,-1574038800,6),(1652,-1552266000,7),(1652,-1539997200,6),(1652,-1520557200,7),(1652,-1507510800,6),(1652,-1490576400,7),(1652,-1473642000,6),(1652,-1459126800,7),(1652,-1444006800,6),(1652,-1427677200,7),(1652,-1411952400,6),(1652,-1396227600,7),(1652,-1379293200,6),(1652,-1364778000,7),(1652,-1348448400,6),(1652,-1333328400,7),(1652,-1316394000,6),(1652,-1301263200,7),(1652,-1284328800,6),(1652,-1269813600,7),(1652,-1253484000,6),(1652,-1238364000,7),(1652,-1221429600,6),(1652,-1206914400,7),(1652,-1191189600,6),(1652,-1175464800,7),(1652,-1160344800,6),(1652,-1143410400,7),(1652,-1127685600,6),(1652,-1111960800,7),(1652,-1096840800,6),(1652,-1080511200,7),(1652,-1063576800,6),(1652,-1049061600,7),(1652,-1033336800,6),(1652,-1017612000,7),(1652,-1002492000,6),(1652,-986162400,7),(1652,-969228000,6),(1652,-950479200,7),(1652,-942012000,6),(1652,-934668000,3),(1652,-857257200,4),(1652,-844556400,3),(1652,-828226800,4),(1652,-812502000,3),(1652,-799293600,5),(1652,-798073200,4),(1652,-781052400,3),(1652,-766623600,4),(1652,-745455600,3),(1652,-733273200,4),(1652,220921205,2),(1652,228877206,9),(1652,243997206,10),(1652,260326807,9),(1652,276051607,10),(1652,291776408,9),(1652,307501208,10),(1652,323830809,9),(1652,338950809,10),(1652,354675609,9),(1652,370400410,10),(1652,386125210,9),(1652,401850011,10),(1652,417574811,9),(1652,433299612,10),(1652,449024412,9),(1652,465354012,10),(1652,481078812,9),(1652,496803613,10),(1652,512528413,9),(1652,528253213,10),(1652,543978013,9),(1652,559702813,10),(1652,575427614,9),(1652,591152414,10),(1652,606877214,9),(1652,622602014,10),(1652,638326815,9),(1652,654656415,10),(1652,670381216,9),(1652,686106016,10),(1652,701830816,9),(1652,717555617,10),(1652,733280417,9),(1652,749005218,10),(1652,764730018,9),(1652,780454819,10),(1652,796179619,9),(1652,811904419,10),(1652,828234020,9),(1652,846378020,10),(1652,859683620,9),(1652,877827621,10),(1652,891133221,9),(1652,909277221,10),(1652,922582822,9),(1652,941331622,10),(1652,954032422,9),(1652,972781222,10),(1652,985482022,9),(1652,1004230822,10),(1652,1017536422,9),(1652,1035680422,10),(1652,1048986022,9),(1652,1067130022,10),(1652,1080435622,9),(1652,1099184422,10),(1652,1111885222,9),(1652,1130634022,10),(1652,1143334823,9),(1652,1162083623,10),(1652,1174784423,9),(1652,1193533223,10),(1652,1206838823,9),(1652,1224982823,10),(1652,1238288424,9),(1652,1256432424,10),(1652,1269738024,9),(1652,1288486824,10),(1652,1301187624,9),(1652,1319936424,10),(1652,1332637224,9),(1652,1351386025,10),(1652,1364691625,9),(1652,1382835625,10),(1652,1396141225,9),(1652,1414285225,10),(1652,1427590825,9),(1652,1445734826,10),(1652,1459040426,9),(1652,1477789226,10),(1652,1490490027,9),(1652,1509238827,10),(1652,1521939627,9),(1652,1540688427,10),(1652,1553994027,9),(1652,1572138027,10),(1652,1585443627,9),(1652,1603587627,10),(1652,1616893227,9),(1652,1635642027,10),(1652,1648342827,9),(1652,1667091627,10),(1652,1679792427,9),(1652,1698541227,10),(1652,1711846827,9),(1652,1729990827,10),(1652,1743296427,9),(1652,1761440427,10),(1652,1774746027,9),(1652,1792890027,10),(1652,1806195627,9),(1652,1824944427,10),(1652,1837645227,9),(1652,1856394027,10),(1652,1869094827,9),(1652,1887843627,10),(1652,1901149227,9),(1652,1919293227,10),(1652,1932598827,9),(1652,1950742827,10),(1652,1964048427,9),(1652,1982797227,10),(1652,1995498027,9),(1652,2014246827,10),(1652,2026947627,9),(1652,2045696427,10),(1652,2058397227,9),(1652,2077146027,10),(1652,2090451627,9),(1652,2108595627,10),(1652,2121901227,9),(1652,2140045227,10),(1653,-2147483648,1),(1653,-1213148664,5),(1653,-1187056800,2),(1653,-1175479200,3),(1653,-1159754400,2),(1653,-1144029600,3),(1653,-1127700000,2),(1653,-1111975200,3),(1653,-1096250400,2),(1653,-1080525600,3),(1653,-1064800800,2),(1653,-1049076000,3),(1653,-1033351200,2),(1653,-1017626400,3),(1653,-1001901600,2),(1653,-986176800,3),(1653,-970452000,2),(1653,-954727200,3),(1653,296604008,4),(1653,307486808,5),(1653,323816409,4),(1653,338940009,5),(1653,354672009,2),(1653,370396810,3),(1653,386121610,2),(1653,401846411,3),(1653,417571211,2),(1653,433296012,3),(1653,449020812,2),(1653,465350412,3),(1653,481075212,2),(1653,496800013,3),(1653,512524813,2),(1653,528249613,3),(1653,543974413,2),(1653,559699213,3),(1653,575424014,2),(1653,591148814,3),(1653,606873614,2),(1653,622598414,3),(1653,638323215,2),(1653,654652815,3),(1653,662680815,5),(1653,670370416,2),(1653,686095216,3),(1653,701820016,2),(1653,717544817,3),(1653,733269617,2),(1653,748994418,3),(1653,757375218,5),(1653,764719218,4),(1653,780440419,5),(1653,796168819,4),(1653,811890019,5),(1653,828223220,4),(1653,846363620,5),(1653,859683620,6),(1653,877827621,7),(1653,891133221,6),(1653,909277221,7),(1653,922582822,6),(1653,941331622,7),(1653,954032422,6),(1653,972781222,7),(1653,985482022,6),(1653,1004230822,7),(1653,1017536422,6),(1653,1035680422,7),(1653,1048986022,6),(1653,1067130022,7),(1653,1080435622,6),(1653,1099184422,7),(1653,1111885222,6),(1653,1130634022,7),(1653,1143334823,6),(1653,1162083623,7),(1653,1174784423,6),(1653,1193533223,7),(1653,1206838823,6),(1653,1224982823,7),(1653,1238288424,6),(1653,1256432424,7),(1653,1269738024,6),(1653,1288486824,7),(1653,1301187624,6),(1653,1319936424,7),(1653,1332637224,6),(1653,1351386025,7),(1653,1364691625,6),(1653,1382835625,7),(1653,1396141225,6),(1653,1414285225,7),(1653,1427590825,6),(1653,1445734826,7),(1653,1459040426,6),(1653,1477789226,7),(1653,1490490027,6),(1653,1509238827,7),(1653,1521939627,6),(1653,1540688427,7),(1653,1553994027,6),(1653,1572138027,7),(1653,1585443627,6),(1653,1603587627,7),(1653,1616893227,6),(1653,1635642027,7),(1653,1648342827,6),(1653,1667091627,7),(1653,1679792427,6),(1653,1698541227,7),(1653,1711846827,6),(1653,1729990827,7),(1653,1743296427,6),(1653,1761440427,7),(1653,1774746027,6),(1653,1792890027,7),(1653,1806195627,6),(1653,1824944427,7),(1653,1837645227,6),(1653,1856394027,7),(1653,1869094827,6),(1653,1887843627,7),(1653,1901149227,6),(1653,1919293227,7),(1653,1932598827,6),(1653,1950742827,7),(1653,1964048427,6),(1653,1982797227,7),(1653,1995498027,6),(1653,2014246827,7),(1653,2026947627,6),(1653,2045696427,7),(1653,2058397227,6),(1653,2077146027,7),(1653,2090451627,6),(1653,2108595627,7),(1653,2121901227,6),(1653,2140045227,7),(1654,-2147483648,2),(1654,-1693706400,1),(1654,-1680483600,2),(1654,-1663455600,3),(1654,-1650150000,4),(1654,-1640998800,2),(1654,-1632006000,1),(1654,-1618700400,2),(1654,-1600470000,1),(1654,-1587250800,2),(1654,-1569711600,1),(1654,-1555196400,2),(1654,-906775200,1),(1654,-857257200,4),(1654,-844556400,3),(1654,-828226800,4),(1654,-812502000,3),(1654,-796777200,4),(1654,-788922000,2),(1654,-778471200,1),(1654,-762656400,2),(1654,-749689200,3),(1654,-733276800,2),(1654,-717634800,3),(1654,-701910000,4),(1654,-686185200,3),(1654,-670460400,4),(1654,-654130800,3),(1654,-639010800,4),(1654,-492656400,1),(1654,-481168800,2),(1654,-461199600,1),(1654,-449708400,2),(1654,-428540400,1),(1654,-418258800,2),(1654,-397090800,1),(1654,-386809200,2),(1654,323823609,1),(1654,338943609,2),(1654,354668409,1),(1654,370393210,2),(1654,386118010,1),(1654,401842811,2),(1654,417567611,1),(1654,433292412,2),(1654,449024412,5),(1654,465354012,6),(1654,481078812,5),(1654,496803613,6),(1654,512528413,5),(1654,528253213,6),(1654,543978013,5),(1654,559702813,6),(1654,575427614,5),(1654,591152414,6),(1654,606877214,5),(1654,622602014,6),(1654,638326815,5),(1654,654656415,6),(1654,670381216,5),(1654,686106016,6),(1654,701830816,5),(1654,717555617,6),(1654,733280417,5),(1654,749005218,6),(1654,764730018,5),(1654,780454819,6),(1654,796179619,5),(1654,811904419,6),(1654,828234020,5),(1654,846378020,6),(1654,859683620,5),(1654,877827621,6),(1654,891133221,5),(1654,909277221,6),(1654,922582822,5),(1654,941331622,6),(1654,954032422,5),(1654,972781222,6),(1654,985482022,5),(1654,1004230822,6),(1654,1017536422,5),(1654,1035680422,6),(1654,1048986022,5),(1654,1067130022,6),(1654,1080435622,5),(1654,1099184422,6),(1654,1111885222,5),(1654,1130634022,6),(1654,1143334823,5),(1654,1162083623,6),(1654,1174784423,5),(1654,1193533223,6),(1654,1206838823,5),(1654,1224982823,6),(1654,1238288424,5),(1654,1256432424,6),(1654,1269738024,5),(1654,1288486824,6),(1654,1301187624,5),(1654,1319936424,6),(1654,1332637224,5),(1654,1351386025,6),(1654,1364691625,5),(1654,1382835625,6),(1654,1396141225,5),(1654,1414285225,6),(1654,1427590825,5),(1654,1445734826,6),(1654,1459040426,5),(1654,1477789226,6),(1654,1490490027,5),(1654,1509238827,6),(1654,1521939627,5),(1654,1540688427,6),(1654,1553994027,5),(1654,1572138027,6),(1654,1585443627,5),(1654,1603587627,6),(1654,1616893227,5),(1654,1635642027,6),(1654,1648342827,5),(1654,1667091627,6),(1654,1679792427,5),(1654,1698541227,6),(1654,1711846827,5),(1654,1729990827,6),(1654,1743296427,5),(1654,1761440427,6),(1654,1774746027,5),(1654,1792890027,6),(1654,1806195627,5),(1654,1824944427,6),(1654,1837645227,5),(1654,1856394027,6),(1654,1869094827,5),(1654,1887843627,6),(1654,1901149227,5),(1654,1919293227,6),(1654,1932598827,5),(1654,1950742827,6),(1654,1964048427,5),(1654,1982797227,6),(1654,1995498027,5),(1654,2014246827,6),(1654,2026947627,5),(1654,2045696427,6),(1654,2058397227,5),(1654,2077146027,6),(1654,2090451627,5),(1654,2108595627,6),(1654,2121901227,5),(1654,2140045227,6),(1655,-2147483648,2),(1655,-904435200,1),(1655,-891129600,2),(1655,-872985600,1),(1655,-859680000,2),(1655,354675609,3),(1655,370400410,4),(1655,386125210,3),(1655,401850011,4),(1655,417574811,3),(1655,433299612,4),(1655,449024412,3),(1655,465354012,4),(1655,481078812,3),(1655,496803613,4),(1655,512528413,3),(1655,528253213,4),(1655,543978013,3),(1655,559702813,4),(1655,575427614,3),(1655,591152414,4),(1655,606877214,3),(1655,622602014,4),(1655,638326815,3),(1655,654656415,4),(1655,670381216,3),(1655,686106016,4),(1655,701830816,3),(1655,717555617,4),(1655,733280417,3),(1655,749005218,4),(1655,764730018,3),(1655,780454819,4),(1655,796179619,3),(1655,811904419,4),(1655,828234020,3),(1655,846378020,4),(1655,859683620,3),(1655,877827621,4),(1655,891133221,3),(1655,909277221,4),(1655,922582822,3),(1655,941331622,4),(1655,954032422,3),(1655,972781222,4),(1655,985482022,3),(1655,1004230822,4),(1655,1017536422,3),(1655,1035680422,4),(1655,1048986022,3),(1655,1067130022,4),(1655,1080435622,3),(1655,1099184422,4),(1655,1111885222,3),(1655,1130634022,4),(1655,1143334823,3),(1655,1162083623,4),(1655,1174784423,3),(1655,1193533223,4),(1655,1206838823,3),(1655,1224982823,4),(1655,1238288424,3),(1655,1256432424,4),(1655,1269738024,3),(1655,1288486824,4),(1655,1301187624,3),(1655,1319936424,4),(1655,1332637224,3),(1655,1351386025,4),(1655,1364691625,3),(1655,1382835625,4),(1655,1396141225,3),(1655,1414285225,4),(1655,1427590825,3),(1655,1445734826,4),(1655,1459040426,3),(1655,1477789226,4),(1655,1490490027,3),(1655,1509238827,4),(1655,1521939627,3),(1655,1540688427,4),(1655,1553994027,3),(1655,1572138027,4),(1655,1585443627,3),(1655,1603587627,4),(1655,1616893227,3),(1655,1635642027,4),(1655,1648342827,3),(1655,1667091627,4),(1655,1679792427,3),(1655,1698541227,4),(1655,1711846827,3),(1655,1729990827,4),(1655,1743296427,3),(1655,1761440427,4),(1655,1774746027,3),(1655,1792890027,4),(1655,1806195627,3),(1655,1824944427,4),(1655,1837645227,3),(1655,1856394027,4),(1655,1869094827,3),(1655,1887843627,4),(1655,1901149227,3),(1655,1919293227,4),(1655,1932598827,3),(1655,1950742827,4),(1655,1964048427,3),(1655,1982797227,4),(1655,1995498027,3),(1655,2014246827,4),(1655,2026947627,3),(1655,2045696427,4),(1655,2058397227,3),(1655,2077146027,4),(1655,2090451627,3),(1655,2108595627,4),(1655,2121901227,3),(1655,2140045227,4),(1656,-2147483648,1),(1656,-1637114100,2),(1656,-1213148664,5),(1656,-1187056800,3),(1656,-1175479200,4),(1656,-1159754400,3),(1656,-1144029600,4),(1656,-1127700000,3),(1656,-1111975200,4),(1656,-1096250400,3),(1656,-1080525600,4),(1656,-1064800800,3),(1656,-1049076000,4),(1656,-1033351200,3),(1656,-1017626400,4),(1656,-1001901600,3),(1656,-986176800,4),(1656,-970452000,3),(1656,-954727200,4),(1656,-927165600,6),(1656,-898138800,9),(1656,-857257200,7),(1656,-844556400,8),(1656,-828226800,7),(1656,-812502000,8),(1656,-800157600,11),(1656,354920409,10),(1656,370728010,11),(1656,386456410,10),(1656,402264011,11),(1656,417992411,10),(1656,433800012,11),(1656,449614812,10),(1656,465346812,12),(1656,481071612,13),(1656,496796413,12),(1656,512521213,13),(1656,528246013,12),(1656,543970813,13),(1656,559695613,12),(1656,575420414,13),(1656,591145214,12),(1656,606870014,13),(1656,622594814,12),(1656,638319615,13),(1656,641944815,6),(1656,654652815,4),(1656,670377616,3),(1656,686102416,4),(1656,694216816,5),(1656,701820016,6),(1656,717541217,5),(1656,733269617,6),(1656,748990818,5),(1656,764719218,6),(1656,780440419,5),(1656,796168819,6),(1656,811890019,5),(1656,828223220,6),(1656,846363620,5),(1656,859680020,6),(1656,877824021,5),(1656,891129621,6),(1656,909273621,5),(1656,922579222,6),(1656,941328022,5),(1656,954028822,6),(1656,972777622,5),(1656,985478422,6),(1656,1004227222,5),(1656,1017532822,6),(1656,1035676822,5),(1656,1048982422,6),(1656,1067126422,5),(1656,1080432022,6),(1656,1099180822,5),(1656,1111881622,6),(1656,1130630422,5),(1656,1143331223,6),(1656,1162080023,5),(1656,1174780823,6),(1656,1193529623,5),(1656,1206835223,6),(1656,1224979223,5),(1656,1238284824,6),(1656,1256428824,5),(1656,1269734424,6),(1656,1288483224,5),(1656,1301184024,6),(1656,1319932824,5),(1656,1332633624,6),(1656,1351382425,5),(1656,1364688025,6),(1656,1382832025,5),(1656,1396137625,6),(1656,1414281625,5),(1656,1427587225,6),(1656,1445731226,5),(1656,1459036826,6),(1656,1477785626,5),(1656,1490486427,6),(1656,1509235227,5),(1656,1521936027,6),(1656,1540684827,5),(1656,1553990427,6),(1656,1572134427,5),(1656,1585440027,6),(1656,1603584027,5),(1656,1616889627,6),(1656,1635638427,5),(1656,1648339227,6),(1656,1667088027,5),(1656,1679788827,6),(1656,1698537627,5),(1656,1711843227,6),(1656,1729987227,5),(1656,1743292827,6),(1656,1761436827,5),(1656,1774742427,6),(1656,1792886427,5),(1656,1806192027,6),(1656,1824940827,5),(1656,1837641627,6),(1656,1856390427,5),(1656,1869091227,6),(1656,1887840027,5),(1656,1901145627,6),(1656,1919289627,5),(1656,1932595227,6),(1656,1950739227,5),(1656,1964044827,6),(1656,1982793627,5),(1656,1995494427,6),(1656,2014243227,5),(1656,2026944027,6),(1656,2045692827,5),(1656,2058393627,6),(1656,2077142427,5),(1656,2090448027,6),(1656,2108592027,5),(1656,2121897627,6),(1656,2140041627,5),(1657,-2147483648,2),(1657,-1692496800,1),(1657,-1680490800,2),(1657,-935110800,1),(1657,-857257200,3),(1657,-844556400,4),(1657,-828226800,3),(1657,-812502000,4),(1657,-796777200,3),(1657,-781052400,4),(1657,-769388400,3),(1657,-747010800,4),(1657,-736383600,3),(1657,-715215600,4),(1657,-706748400,3),(1657,-683161200,4),(1657,-675298800,3),(1657,315529208,2),(1657,323830809,5),(1657,338950809,6),(1657,354675609,5),(1657,370400410,6),(1657,386125210,5),(1657,401850011,6),(1657,417574811,5),(1657,433299612,6),(1657,449024412,5),(1657,465354012,6),(1657,481078812,5),(1657,496803613,6),(1657,512528413,5),(1657,528253213,6),(1657,543978013,5),(1657,559702813,6),(1657,575427614,5),(1657,591152414,6),(1657,606877214,5),(1657,622602014,6),(1657,638326815,5),(1657,654656415,6),(1657,670381216,5),(1657,686106016,6),(1657,701830816,5),(1657,717555617,6),(1657,733280417,5),(1657,749005218,6),(1657,764730018,5),(1657,780454819,6),(1657,796179619,5),(1657,811904419,6),(1657,828234020,5),(1657,846378020,6),(1657,859683620,5),(1657,877827621,6),(1657,891133221,5),(1657,909277221,6),(1657,922582822,5),(1657,941331622,6),(1657,954032422,5),(1657,972781222,6),(1657,985482022,5),(1657,1004230822,6),(1657,1017536422,5),(1657,1035680422,6),(1657,1048986022,5),(1657,1067130022,6),(1657,1080435622,5),(1657,1099184422,6),(1657,1111885222,5),(1657,1130634022,6),(1657,1143334823,5),(1657,1162083623,6),(1657,1174784423,5),(1657,1193533223,6),(1657,1206838823,5),(1657,1224982823,6),(1657,1238288424,5),(1657,1256432424,6),(1657,1269738024,5),(1657,1288486824,6),(1657,1301187624,5),(1657,1319936424,6),(1657,1332637224,5),(1657,1351386025,6),(1657,1364691625,5),(1657,1382835625,6),(1657,1396141225,5),(1657,1414285225,6),(1657,1427590825,5),(1657,1445734826,6),(1657,1459040426,5),(1657,1477789226,6),(1657,1490490027,5),(1657,1509238827,6),(1657,1521939627,5),(1657,1540688427,6),(1657,1553994027,5),(1657,1572138027,6),(1657,1585443627,5),(1657,1603587627,6),(1657,1616893227,5),(1657,1635642027,6),(1657,1648342827,5),(1657,1667091627,6),(1657,1679792427,5),(1657,1698541227,6),(1657,1711846827,5),(1657,1729990827,6),(1657,1743296427,5),(1657,1761440427,6),(1657,1774746027,5),(1657,1792890027,6),(1657,1806195627,5),(1657,1824944427,6),(1657,1837645227,5),(1657,1856394027,6),(1657,1869094827,5),(1657,1887843627,6),(1657,1901149227,5),(1657,1919293227,6),(1657,1932598827,5),(1657,1950742827,6),(1657,1964048427,5),(1657,1982797227,6),(1657,1995498027,5),(1657,2014246827,6),(1657,2026947627,5),(1657,2045696427,6),(1657,2058397227,5),(1657,2077146027,6),(1657,2090451627,5),(1657,2108595627,6),(1657,2121901227,5),(1657,2140045227,6),(1658,-2147483648,1),(1658,-1691962479,2),(1658,-1680471279,4),(1658,-1664143200,3),(1658,-1650146400,4),(1658,-1633903200,3),(1658,-1617487200,4),(1658,-1601848800,3),(1658,-1586037600,4),(1658,-1570399200,3),(1658,-1552168800,4),(1658,-1538344800,3),(1658,-1522533600,4),(1658,-1517011200,6),(1658,-1507500000,5),(1658,-1490565600,4),(1658,-1473631200,5),(1658,-1460930400,4),(1658,-1442786400,5),(1658,-1428876000,4),(1658,-1410732000,5),(1658,-1396216800,4),(1658,-1379282400,5),(1658,-1364767200,4),(1658,-1348437600,5),(1658,-1333317600,4),(1658,-1315778400,5),(1658,-1301263200,4),(1658,-1284328800,5),(1658,-1269813600,4),(1658,-1253484000,5),(1658,-1238364000,4),(1658,-1221429600,5),(1658,-1206914400,4),(1658,-1189980000,5),(1658,-1175464800,4),(1658,-1159135200,5),(1658,-1143410400,4),(1658,-1126476000,5),(1658,-1111960800,4),(1658,-1095631200,5),(1658,-1080511200,4),(1658,-1063576800,5),(1658,-1049061600,4),(1658,-1032127200,5),(1658,-1017612000,4),(1658,-1001282400,5),(1658,-986162400,4),(1658,-969228000,5),(1658,-950479200,4),(1658,-942012000,5),(1658,-733356000,4),(1658,-719445600,5),(1658,-699487200,4),(1658,-684972000,5),(1658,-668037600,4),(1658,-654732000,5),(1658,-636588000,4),(1658,-622072800,5),(1658,-605743200,4),(1658,-590623200,5),(1658,-574293600,4),(1658,-558568800,5),(1658,-542239200,4),(1658,-527119200,5),(1658,-512604000,4),(1658,-496274400,5),(1658,-481154400,4),(1658,-464220000,5),(1658,-449704800,4),(1658,-432165600,5),(1658,-417650400,4),(1658,-401320800,5),(1658,-386200800,4),(1658,-369266400,5),(1658,-354751200,4),(1658,-337816800,5),(1658,-323301600,4),(1658,-306972000,5),(1658,-291852000,4),(1658,-276732000,5),(1658,-257983200,4),(1658,-245282400,5),(1658,-226533600,4),(1658,-213228000,5),(1658,-195084000,4),(1658,-182383200,5),(1658,-163634400,4),(1658,-150933600,5),(1658,-132184800,4),(1658,-119484000,5),(1658,-100735200,4),(1658,-88034400,5),(1658,-68680800,4),(1658,-59004000,5),(1658,-37242000,9),(1658,57722400,7),(1658,69818400,8),(1658,89172001,7),(1658,101268002,8),(1658,120621602,7),(1658,132717603,8),(1658,152071203,7),(1658,164167204,8),(1658,183520804,7),(1658,196221605,8),(1658,214970405,7),(1658,227671206,8),(1658,246420006,7),(1658,259120807,8),(1658,278474407,7),(1658,290570408,8),(1658,309924008,7),(1658,322020009,8),(1658,341373609,7),(1658,354675609,8),(1658,372819610,7),(1658,386125210,8),(1658,404269211,7),(1658,417574811,8),(1658,435718812,7),(1658,449024412,8),(1658,467773212,7),(1658,481078812,8),(1658,499222813,7),(1658,512528413,8),(1658,530672413,7),(1658,543978013,8),(1658,562122013,7),(1658,575427614,8),(1658,593571614,7),(1658,606877214,8),(1658,625626014,7),(1658,638326815,8),(1658,657075615,7),(1658,670381216,8),(1658,688525216,7),(1658,701830816,8),(1658,719974817,7),(1658,733280417,8),(1658,751424418,7),(1658,764730018,8),(1658,782874019,7),(1658,796179619,8),(1658,814323619,7),(1658,828234020,8),(1658,846378020,7),(1658,859683620,8),(1658,877827621,7),(1658,891133221,8),(1658,909277221,7),(1658,922582822,8),(1658,941331622,7),(1658,954032422,8),(1658,972781222,7),(1658,985482022,8),(1658,1004230822,7),(1658,1017536422,8),(1658,1035680422,7),(1658,1048986022,8),(1658,1067130022,7),(1658,1080435622,8),(1658,1099184422,7),(1658,1111885222,8),(1658,1130634022,7),(1658,1143334823,8),(1658,1162083623,7),(1658,1174784423,8),(1658,1193533223,7),(1658,1206838823,8),(1658,1224982823,7),(1658,1238288424,8),(1658,1256432424,7),(1658,1269738024,8),(1658,1288486824,7),(1658,1301187624,8),(1658,1319936424,7),(1658,1332637224,8),(1658,1351386025,7),(1658,1364691625,8),(1658,1382835625,7),(1658,1396141225,8),(1658,1414285225,7),(1658,1427590825,8),(1658,1445734826,7),(1658,1459040426,8),(1658,1477789226,7),(1658,1490490027,8),(1658,1509238827,7),(1658,1521939627,8),(1658,1540688427,7),(1658,1553994027,8),(1658,1572138027,7),(1658,1585443627,8),(1658,1603587627,7),(1658,1616893227,8),(1658,1635642027,7),(1658,1648342827,8),(1658,1667091627,7),(1658,1679792427,8),(1658,1698541227,7),(1658,1711846827,8),(1658,1729990827,7),(1658,1743296427,8),(1658,1761440427,7),(1658,1774746027,8),(1658,1792890027,7),(1658,1806195627,8),(1658,1824944427,7),(1658,1837645227,8),(1658,1856394027,7),(1658,1869094827,8),(1658,1887843627,7),(1658,1901149227,8),(1658,1919293227,7),(1658,1932598827,8),(1658,1950742827,7),(1658,1964048427,8),(1658,1982797227,7),(1658,1995498027,8),(1658,2014246827,7),(1658,2026947627,8),(1658,2045696427,7),(1658,2058397227,8),(1658,2077146027,7),(1658,2090451627,8),(1658,2108595627,7),(1658,2121901227,8),(1658,2140045227,7),(1659,-2147483648,2),(1659,-1691964000,1),(1659,-1680472800,2),(1659,-1664143200,1),(1659,-1650146400,2),(1659,-1633903200,1),(1659,-1617487200,2),(1659,-1601848800,1),(1659,-1586037600,2),(1659,-1570399200,1),(1659,-1552168800,2),(1659,-1538344800,1),(1659,-1522533600,2),(1659,-1507500000,1),(1659,-1490565600,2),(1659,-1473631200,1),(1659,-1460930400,2),(1659,-1442786400,1),(1659,-1428876000,2),(1659,-1410732000,1),(1659,-1396216800,2),(1659,-1379282400,1),(1659,-1364767200,2),(1659,-1348437600,1),(1659,-1333317600,2),(1659,-1315778400,1),(1659,-1301263200,2),(1659,-1284328800,1),(1659,-1269813600,2),(1659,-1253484000,1),(1659,-1238364000,2),(1659,-1221429600,1),(1659,-1206914400,2),(1659,-1189980000,1),(1659,-1175464800,2),(1659,-1159135200,1),(1659,-1143410400,2),(1659,-1126476000,1),(1659,-1111960800,2),(1659,-1095631200,1),(1659,-1080511200,2),(1659,-1063576800,1),(1659,-1049061600,2),(1659,-1032127200,1),(1659,-1017612000,2),(1659,-1001282400,1),(1659,-986162400,2),(1659,-969228000,1),(1659,-950479200,2),(1659,-942012000,1),(1659,-904518000,3),(1659,-896050800,1),(1659,-875487600,3),(1659,-864601200,1),(1659,-844038000,3),(1659,-832546800,1),(1659,-812588400,3),(1659,-798073200,1),(1659,-781052400,3),(1659,-772066800,1),(1659,-764805600,2),(1659,-748476000,1),(1659,-733356000,2),(1659,-719445600,1),(1659,-717030000,3),(1659,-706748400,1),(1659,-699487200,2),(1659,-687996000,1),(1659,-668037600,2),(1659,-654732000,1),(1659,-636588000,2),(1659,-622072800,1),(1659,-605743200,2),(1659,-590623200,1),(1659,-574293600,2),(1659,-558568800,1),(1659,-542239200,2),(1659,-527119200,1),(1659,-512604000,2),(1659,-496274400,1),(1659,-481154400,2),(1659,-464220000,1),(1659,-449704800,2),(1659,-432165600,1),(1659,-417650400,2),(1659,-401320800,4),(1659,386125210,5),(1659,401850011,6),(1659,417574811,5),(1659,433299612,6),(1659,449024412,5),(1659,465354012,6),(1659,481078812,5),(1659,496803613,6),(1659,512528413,5),(1659,528253213,6),(1659,543978013,5),(1659,559702813,6),(1659,575427614,5),(1659,591152414,6),(1659,606877214,5),(1659,622602014,6),(1659,638326815,5),(1659,654656415,6),(1659,670381216,5),(1659,686106016,6),(1659,701830816,5),(1659,717555617,6),(1659,733280417,5),(1659,749005218,6),(1659,764730018,5),(1659,780454819,6),(1659,796179619,5),(1659,811904419,6),(1659,828234020,5),(1659,846378020,6),(1659,859683620,5),(1659,877827621,6),(1659,891133221,5),(1659,909277221,6),(1659,922582822,5),(1659,941331622,6),(1659,954032422,5),(1659,972781222,6),(1659,985482022,5),(1659,1004230822,6),(1659,1017536422,5),(1659,1035680422,6),(1659,1048986022,5),(1659,1067130022,6),(1659,1080435622,5),(1659,1099184422,6),(1659,1111885222,5),(1659,1130634022,6),(1659,1143334823,5),(1659,1162083623,6),(1659,1174784423,5),(1659,1193533223,6),(1659,1206838823,5),(1659,1224982823,6),(1659,1238288424,5),(1659,1256432424,6),(1659,1269738024,5),(1659,1288486824,6),(1659,1301187624,5),(1659,1319936424,6),(1659,1332637224,5),(1659,1351386025,6),(1659,1364691625,5),(1659,1382835625,6),(1659,1396141225,5),(1659,1414285225,6),(1659,1427590825,5),(1659,1445734826,6),(1659,1459040426,5),(1659,1477789226,6),(1659,1490490027,5),(1659,1509238827,6),(1659,1521939627,5),(1659,1540688427,6),(1659,1553994027,5),(1659,1572138027,6),(1659,1585443627,5),(1659,1603587627,6),(1659,1616893227,5),(1659,1635642027,6),(1659,1648342827,5),(1659,1667091627,6),(1659,1679792427,5),(1659,1698541227,6),(1659,1711846827,5),(1659,1729990827,6),(1659,1743296427,5),(1659,1761440427,6),(1659,1774746027,5),(1659,1792890027,6),(1659,1806195627,5),(1659,1824944427,6),(1659,1837645227,5),(1659,1856394027,6),(1659,1869094827,5),(1659,1887843627,6),(1659,1901149227,5),(1659,1919293227,6),(1659,1932598827,5),(1659,1950742827,6),(1659,1964048427,5),(1659,1982797227,6),(1659,1995498027,5),(1659,2014246827,6),(1659,2026947627,5),(1659,2045696427,6),(1659,2058397227,5),(1659,2077146027,6),(1659,2090451627,5),(1659,2108595627,6),(1659,2121901227,5),(1659,2140045227,6),(1660,-2147483648,2),(1660,-1691964000,1),(1660,-1680472800,2),(1660,-1664143200,1),(1660,-1650146400,2),(1660,-1633903200,1),(1660,-1617487200,2),(1660,-1601848800,1),(1660,-1586037600,2),(1660,-1570399200,1),(1660,-1552168800,2),(1660,-1538344800,1),(1660,-1522533600,2),(1660,-1507500000,1),(1660,-1490565600,2),(1660,-1473631200,1),(1660,-1460930400,2),(1660,-1442786400,1),(1660,-1428876000,2),(1660,-1410732000,1),(1660,-1396216800,2),(1660,-1379282400,1),(1660,-1364767200,2),(1660,-1348437600,1),(1660,-1333317600,2),(1660,-1315778400,1),(1660,-1301263200,2),(1660,-1284328800,1),(1660,-1269813600,2),(1660,-1253484000,1),(1660,-1238364000,2),(1660,-1221429600,1),(1660,-1206914400,2),(1660,-1189980000,1),(1660,-1175464800,2),(1660,-1159135200,1),(1660,-1143410400,2),(1660,-1126476000,1),(1660,-1111960800,2),(1660,-1095631200,1),(1660,-1080511200,2),(1660,-1063576800,1),(1660,-1049061600,2),(1660,-1032127200,1),(1660,-1017612000,2),(1660,-1001282400,1),(1660,-986162400,2),(1660,-969228000,1),(1660,-950479200,2),(1660,-942012000,1),(1660,-904518000,3),(1660,-896050800,1),(1660,-875487600,3),(1660,-864601200,1),(1660,-844038000,3),(1660,-832546800,1),(1660,-812588400,3),(1660,-798073200,1),(1660,-781052400,3),(1660,-772066800,1),(1660,-764805600,2),(1660,-748476000,1),(1660,-733356000,2),(1660,-719445600,1),(1660,-717030000,3),(1660,-706748400,1),(1660,-699487200,2),(1660,-687996000,1),(1660,-668037600,2),(1660,-654732000,1),(1660,-636588000,2),(1660,-622072800,1),(1660,-605743200,2),(1660,-590623200,1),(1660,-574293600,2),(1660,-558568800,1),(1660,-542239200,2),(1660,-527119200,1),(1660,-512604000,2),(1660,-496274400,1),(1660,-481154400,2),(1660,-464220000,1),(1660,-449704800,2),(1660,-432165600,1),(1660,-417650400,2),(1660,-401320800,1),(1660,-386200800,2),(1660,-369266400,1),(1660,-354751200,2),(1660,-337816800,1),(1660,-323301600,2),(1660,-306972000,1),(1660,-291852000,2),(1660,-276732000,1),(1660,-257983200,2),(1660,-245282400,1),(1660,-226533600,2),(1660,-213228000,1),(1660,-195084000,2),(1660,-182383200,1),(1660,-163634400,2),(1660,-150933600,1),(1660,-132184800,2),(1660,-119484000,1),(1660,-100735200,2),(1660,-88034400,1),(1660,-68680800,2),(1660,-59004000,1),(1660,-37242000,4),(1660,57722400,6),(1660,69818400,1),(1660,89172001,2),(1660,101268002,1),(1660,120621602,2),(1660,132717603,1),(1660,152071203,2),(1660,164167204,1),(1660,183520804,2),(1660,196221605,1),(1660,214970405,2),(1660,227671206,1),(1660,246420006,2),(1660,259120807,1),(1660,278474407,2),(1660,290570408,1),(1660,309924008,2),(1660,322020009,1),(1660,341373609,2),(1660,354675609,5),(1660,372819610,6),(1660,386125210,5),(1660,404269211,6),(1660,417574811,5),(1660,435718812,6),(1660,449024412,5),(1660,467773212,6),(1660,481078812,5),(1660,499222813,6),(1660,512528413,5),(1660,530672413,6),(1660,543978013,5),(1660,562122013,6),(1660,575427614,5),(1660,593571614,6),(1660,606877214,5),(1660,625626014,6),(1660,638326815,5),(1660,657075615,6),(1660,670381216,5),(1660,688525216,6),(1660,701830816,5),(1660,719974817,6),(1660,733280417,5),(1660,751424418,6),(1660,764730018,5),(1660,782874019,6),(1660,796179619,5),(1660,814323619,6),(1660,820454420,7),(1660,828234020,5),(1660,846378020,6),(1660,859683620,5),(1660,877827621,6),(1660,891133221,5),(1660,909277221,6),(1660,922582822,5),(1660,941331622,6),(1660,954032422,5),(1660,972781222,6),(1660,985482022,5),(1660,1004230822,6),(1660,1017536422,5),(1660,1035680422,6),(1660,1048986022,5),(1660,1067130022,6),(1660,1080435622,5),(1660,1099184422,6),(1660,1111885222,5),(1660,1130634022,6),(1660,1143334823,5),(1660,1162083623,6),(1660,1174784423,5),(1660,1193533223,6),(1660,1206838823,5),(1660,1224982823,6),(1660,1238288424,5),(1660,1256432424,6),(1660,1269738024,5),(1660,1288486824,6),(1660,1301187624,5),(1660,1319936424,6),(1660,1332637224,5),(1660,1351386025,6),(1660,1364691625,5),(1660,1382835625,6),(1660,1396141225,5),(1660,1414285225,6),(1660,1427590825,5),(1660,1445734826,6),(1660,1459040426,5),(1660,1477789226,6),(1660,1490490027,5),(1660,1509238827,6),(1660,1521939627,5),(1660,1540688427,6),(1660,1553994027,5),(1660,1572138027,6),(1660,1585443627,5),(1660,1603587627,6),(1660,1616893227,5),(1660,1635642027,6),(1660,1648342827,5),(1660,1667091627,6),(1660,1679792427,5),(1660,1698541227,6),(1660,1711846827,5),(1660,1729990827,6),(1660,1743296427,5),(1660,1761440427,6),(1660,1774746027,5),(1660,1792890027,6),(1660,1806195627,5),(1660,1824944427,6),(1660,1837645227,5),(1660,1856394027,6),(1660,1869094827,5),(1660,1887843627,6),(1660,1901149227,5),(1660,1919293227,6),(1660,1932598827,5),(1660,1950742827,6),(1660,1964048427,5),(1660,1982797227,6),(1660,1995498027,5),(1660,2014246827,6),(1660,2026947627,5),(1660,2045696427,6),(1660,2058397227,5),(1660,2077146027,6),(1660,2090451627,5),(1660,2108595627,6),(1660,2121901227,5),(1660,2140045227,6),(1661,-2147483648,1),(1661,-1535938789,3),(1661,-875671200,2),(1661,-859773600,3),(1661,354672009,2),(1661,370396810,3),(1661,386121610,2),(1661,401846411,3),(1661,417574811,4),(1661,433299612,5),(1661,449024412,4),(1661,465354012,5),(1661,481078812,4),(1661,496803613,5),(1661,512528413,4),(1661,528253213,5),(1661,543978013,4),(1661,559702813,5),(1661,575427614,4),(1661,591152414,5),(1661,606877214,4),(1661,622602014,5),(1661,638326815,4),(1661,654656415,5),(1661,670381216,4),(1661,686106016,5),(1661,701830816,4),(1661,717555617,5),(1661,733280417,4),(1661,749005218,5),(1661,764730018,4),(1661,780454819,5),(1661,796179619,4),(1661,811904419,5),(1661,828234020,4),(1661,846378020,5),(1661,859683620,4),(1661,877827621,5),(1661,891133221,4),(1661,909277221,5),(1661,922582822,4),(1661,941331622,5),(1661,954032422,4),(1661,972781222,5),(1661,985482022,4),(1661,1004230822,5),(1661,1017536422,4),(1661,1035680422,5),(1661,1048986022,4),(1661,1067130022,5),(1661,1080435622,4),(1661,1099184422,5),(1661,1111885222,4),(1661,1130634022,5),(1661,1143334823,4),(1661,1162083623,5),(1661,1174784423,4),(1661,1193533223,5),(1661,1206838823,4),(1661,1224982823,5),(1661,1238288424,4),(1661,1256432424,5),(1661,1269738024,4),(1661,1288486824,5),(1661,1301187624,4),(1661,1319936424,5),(1661,1332637224,4),(1661,1351386025,5),(1661,1364691625,4),(1661,1382835625,5),(1661,1396141225,4),(1661,1414285225,5),(1661,1427590825,4),(1661,1445734826,5),(1661,1459040426,4),(1661,1477789226,5),(1661,1490490027,4),(1661,1509238827,5),(1661,1521939627,4),(1661,1540688427,5),(1661,1553994027,4),(1661,1572138027,5),(1661,1585443627,4),(1661,1603587627,5),(1661,1616893227,4),(1661,1635642027,5),(1661,1648342827,4),(1661,1667091627,5),(1661,1679792427,4),(1661,1698541227,5),(1661,1711846827,4),(1661,1729990827,5),(1661,1743296427,4),(1661,1761440427,5),(1661,1774746027,4),(1661,1792890027,5),(1661,1806195627,4),(1661,1824944427,5),(1661,1837645227,4),(1661,1856394027,5),(1661,1869094827,4),(1661,1887843627,5),(1661,1901149227,4),(1661,1919293227,5),(1661,1932598827,4),(1661,1950742827,5),(1661,1964048427,4),(1661,1982797227,5),(1661,1995498027,4),(1661,2014246827,5),(1661,2026947627,4),(1661,2045696427,5),(1661,2058397227,4),(1661,2077146027,5),(1661,2090451627,4),(1661,2108595627,5),(1661,2121901227,4),(1661,2140045227,5),(1662,-2147483648,2),(1662,-1691964000,1),(1662,-1680472800,2),(1662,-1664143200,1),(1662,-1650146400,2),(1662,-1633903200,1),(1662,-1617487200,2),(1662,-1601848800,1),(1662,-1586037600,2),(1662,-1570399200,1),(1662,-1552168800,2),(1662,-1538344800,1),(1662,-1522533600,2),(1662,-1507500000,1),(1662,-1490565600,2),(1662,-1473631200,1),(1662,-1460930400,2),(1662,-1442786400,1),(1662,-1428876000,2),(1662,-1410732000,1),(1662,-1396216800,2),(1662,-1379282400,1),(1662,-1364767200,2),(1662,-1348437600,1),(1662,-1333317600,2),(1662,-1315778400,1),(1662,-1301263200,2),(1662,-1284328800,1),(1662,-1269813600,2),(1662,-1253484000,1),(1662,-1238364000,2),(1662,-1221429600,1),(1662,-1206914400,2),(1662,-1189980000,1),(1662,-1175464800,2),(1662,-1159135200,1),(1662,-1143410400,2),(1662,-1126476000,1),(1662,-1111960800,2),(1662,-1095631200,1),(1662,-1080511200,2),(1662,-1063576800,1),(1662,-1049061600,2),(1662,-1032127200,1),(1662,-1017612000,2),(1662,-1001282400,1),(1662,-986162400,2),(1662,-969228000,1),(1662,-950479200,2),(1662,-942012000,1),(1662,-904518000,3),(1662,-896050800,1),(1662,-875487600,3),(1662,-864601200,1),(1662,-844038000,3),(1662,-832546800,1),(1662,-812588400,3),(1662,-798073200,1),(1662,-781052400,3),(1662,-772066800,1),(1662,-764805600,2),(1662,-748476000,1),(1662,-733356000,2),(1662,-719445600,1),(1662,-717030000,3),(1662,-706748400,1),(1662,-699487200,2),(1662,-687996000,1),(1662,-668037600,2),(1662,-654732000,1),(1662,-636588000,2),(1662,-622072800,1),(1662,-605743200,2),(1662,-590623200,1),(1662,-574293600,2),(1662,-558568800,1),(1662,-542239200,2),(1662,-527119200,1),(1662,-512604000,2),(1662,-496274400,1),(1662,-481154400,2),(1662,-464220000,1),(1662,-449704800,2),(1662,-432165600,1),(1662,-417650400,2),(1662,-401320800,1),(1662,-386200800,2),(1662,-369266400,1),(1662,-354751200,2),(1662,-337816800,1),(1662,-323301600,2),(1662,-306972000,1),(1662,-291852000,2),(1662,-276732000,1),(1662,-257983200,2),(1662,-245282400,1),(1662,-226533600,2),(1662,-213228000,1),(1662,-195084000,2),(1662,-182383200,1),(1662,-163634400,2),(1662,-150933600,1),(1662,-132184800,2),(1662,-119484000,1),(1662,-100735200,2),(1662,-88034400,1),(1662,-68680800,2),(1662,-59004000,1),(1662,-37242000,4),(1662,57722400,6),(1662,69818400,1),(1662,89172001,2),(1662,101268002,1),(1662,120621602,2),(1662,132717603,1),(1662,152071203,2),(1662,164167204,1),(1662,183520804,2),(1662,196221605,1),(1662,214970405,2),(1662,227671206,1),(1662,246420006,2),(1662,259120807,1),(1662,278474407,2),(1662,290570408,1),(1662,309924008,2),(1662,322020009,1),(1662,341373609,2),(1662,354675609,5),(1662,372819610,6),(1662,386125210,5),(1662,404269211,6),(1662,417574811,5),(1662,435718812,6),(1662,449024412,5),(1662,467773212,6),(1662,481078812,5),(1662,499222813,6),(1662,512528413,5),(1662,530672413,6),(1662,543978013,5),(1662,562122013,6),(1662,575427614,5),(1662,593571614,6),(1662,606877214,5),(1662,625626014,6),(1662,638326815,5),(1662,657075615,6),(1662,670381216,5),(1662,688525216,6),(1662,701830816,5),(1662,719974817,6),(1662,733280417,5),(1662,751424418,6),(1662,764730018,5),(1662,782874019,6),(1662,796179619,5),(1662,814323619,6),(1662,820454420,7),(1662,828234020,5),(1662,846378020,6),(1662,859683620,5),(1662,877827621,6),(1662,891133221,5),(1662,909277221,6),(1662,922582822,5),(1662,941331622,6),(1662,954032422,5),(1662,972781222,6),(1662,985482022,5),(1662,1004230822,6),(1662,1017536422,5),(1662,1035680422,6),(1662,1048986022,5),(1662,1067130022,6),(1662,1080435622,5),(1662,1099184422,6),(1662,1111885222,5),(1662,1130634022,6),(1662,1143334823,5),(1662,1162083623,6),(1662,1174784423,5),(1662,1193533223,6),(1662,1206838823,5),(1662,1224982823,6),(1662,1238288424,5),(1662,1256432424,6),(1662,1269738024,5),(1662,1288486824,6),(1662,1301187624,5),(1662,1319936424,6),(1662,1332637224,5),(1662,1351386025,6),(1662,1364691625,5),(1662,1382835625,6),(1662,1396141225,5),(1662,1414285225,6),(1662,1427590825,5),(1662,1445734826,6),(1662,1459040426,5),(1662,1477789226,6),(1662,1490490027,5),(1662,1509238827,6),(1662,1521939627,5),(1662,1540688427,6),(1662,1553994027,5),(1662,1572138027,6),(1662,1585443627,5),(1662,1603587627,6),(1662,1616893227,5),(1662,1635642027,6),(1662,1648342827,5),(1662,1667091627,6),(1662,1679792427,5),(1662,1698541227,6),(1662,1711846827,5),(1662,1729990827,6),(1662,1743296427,5),(1662,1761440427,6),(1662,1774746027,5),(1662,1792890027,6),(1662,1806195627,5),(1662,1824944427,6),(1662,1837645227,5),(1662,1856394027,6),(1662,1869094827,5),(1662,1887843627,6),(1662,1901149227,5),(1662,1919293227,6),(1662,1932598827,5),(1662,1950742827,6),(1662,1964048427,5),(1662,1982797227,6),(1662,1995498027,5),(1662,2014246827,6),(1662,2026947627,5),(1662,2045696427,6),(1662,2058397227,5),(1662,2077146027,6),(1662,2090451627,5),(1662,2108595627,6),(1662,2121901227,5),(1662,2140045227,6),(1663,-2147483648,1),(1663,-1869875816,3),(1663,-1693706400,2),(1663,-1680490800,3),(1663,-1570413600,2),(1663,-1552186800,3),(1663,-1538359200,2),(1663,-1522551600,3),(1663,-1507514400,2),(1663,-1490583600,3),(1663,-1440208800,2),(1663,-1428030000,3),(1663,-1409709600,2),(1663,-1396494000,3),(1663,-931053600,2),(1663,-922676400,3),(1663,-917834400,2),(1663,-892436400,3),(1663,-875844000,2),(1663,-764737200,3),(1663,-744343200,2),(1663,-733806000,3),(1663,-716436000,2),(1663,-701924400,3),(1663,-684986400,2),(1663,-670474800,3),(1663,-654141600,2),(1663,-639025200,3),(1663,-622087200,2),(1663,-606970800,3),(1663,-590032800,2),(1663,-575521200,3),(1663,-235620000,2),(1663,-194842800,3),(1663,-177732000,2),(1663,-165726000,3),(1663,107910002,2),(1663,121215602,3),(1663,133920003,2),(1663,152665203,3),(1663,164678404,2),(1663,184114804,3),(1663,196214405,2),(1663,215564405,3),(1663,228873606,2),(1663,245804406,3),(1663,260323207,2),(1663,267915607,4),(1663,428454012,5),(1663,433893612,4),(1663,468111612,3),(1663,482799612,6),(1663,496710013,7),(1663,512521213,6),(1663,528246013,7),(1663,543970813,6),(1663,559695613,7),(1663,575420414,6),(1663,591145214,7),(1663,606870014,6),(1663,622594814,7),(1663,638319615,6),(1663,654649215,7),(1663,670374016,6),(1663,686098816,7),(1663,701823616,6),(1663,717548417,7),(1663,733273217,6),(1663,748998018,7),(1663,764118018,6),(1663,780447619,7),(1663,796172419,6),(1663,811897219,7),(1663,828226820,6),(1663,846370820,7),(1663,859676420,6),(1663,877820421,7),(1663,891126021,6),(1663,909270021,7),(1663,922575622,6),(1663,941324422,7),(1663,954025222,6),(1663,972774022,7),(1663,985474822,6),(1663,1004223622,7),(1663,1017529222,6),(1663,1035673222,7),(1663,1048978822,6),(1663,1067122822,7),(1663,1080428422,6),(1663,1099177222,7),(1663,1111878022,6),(1663,1130626822,7),(1663,1143327623,6),(1663,1162076423,7),(1663,1167602423,3),(1663,1174784423,8),(1663,1193533223,9),(1663,1206838823,8),(1663,1224982823,9),(1663,1238288424,8),(1663,1256432424,9),(1663,1269738024,8),(1663,1288486824,9),(1663,1301274024,8),(1663,1319936424,9),(1663,1332637224,8),(1663,1351386025,9),(1663,1364691625,8),(1663,1382835625,9),(1663,1396227625,8),(1663,1414285225,9),(1663,1427590825,8),(1663,1446944426,9),(1663,1459040426,8),(1663,1473195626,4),(1664,-2147483648,2),(1664,-1691964000,1),(1664,-1680472800,2),(1664,-1664143200,1),(1664,-1650146400,2),(1664,-1633903200,1),(1664,-1617487200,2),(1664,-1601848800,1),(1664,-1586037600,2),(1664,-1570399200,1),(1664,-1552168800,2),(1664,-1538344800,1),(1664,-1522533600,2),(1664,-1507500000,1),(1664,-1490565600,2),(1664,-1473631200,1),(1664,-1460930400,2),(1664,-1442786400,1),(1664,-1428876000,2),(1664,-1410732000,1),(1664,-1396216800,2),(1664,-1379282400,1),(1664,-1364767200,2),(1664,-1348437600,1),(1664,-1333317600,2),(1664,-1315778400,1),(1664,-1301263200,2),(1664,-1284328800,1),(1664,-1269813600,2),(1664,-1253484000,1),(1664,-1238364000,2),(1664,-1221429600,1),(1664,-1206914400,2),(1664,-1189980000,1),(1664,-1175464800,2),(1664,-1159135200,1),(1664,-1143410400,2),(1664,-1126476000,1),(1664,-1111960800,2),(1664,-1095631200,1),(1664,-1080511200,2),(1664,-1063576800,1),(1664,-1049061600,2),(1664,-1032127200,1),(1664,-1017612000,2),(1664,-1001282400,1),(1664,-986162400,2),(1664,-969228000,1),(1664,-950479200,2),(1664,-942012000,1),(1664,-904518000,3),(1664,-896050800,1),(1664,-875487600,3),(1664,-864601200,1),(1664,-844038000,3),(1664,-832546800,1),(1664,-812588400,3),(1664,-798073200,1),(1664,-781052400,3),(1664,-772066800,1),(1664,-764805600,2),(1664,-748476000,1),(1664,-733356000,2),(1664,-719445600,1),(1664,-717030000,3),(1664,-706748400,1),(1664,-699487200,2),(1664,-687996000,1),(1664,-668037600,2),(1664,-654732000,1),(1664,-636588000,2),(1664,-622072800,1),(1664,-605743200,2),(1664,-590623200,1),(1664,-574293600,2),(1664,-558568800,1),(1664,-542239200,2),(1664,-527119200,1),(1664,-512604000,2),(1664,-496274400,1),(1664,-481154400,2),(1664,-464220000,1),(1664,-449704800,2),(1664,-432165600,1),(1664,-417650400,2),(1664,-401320800,1),(1664,-386200800,2),(1664,-369266400,1),(1664,-354751200,2),(1664,-337816800,1),(1664,-323301600,2),(1664,-306972000,1),(1664,-291852000,2),(1664,-276732000,1),(1664,-257983200,2),(1664,-245282400,1),(1664,-226533600,2),(1664,-213228000,1),(1664,-195084000,2),(1664,-182383200,1),(1664,-163634400,2),(1664,-150933600,1),(1664,-132184800,2),(1664,-119484000,1),(1664,-100735200,2),(1664,-88034400,1),(1664,-68680800,2),(1664,-59004000,1),(1664,-37242000,4),(1664,57722400,6),(1664,69818400,1),(1664,89172001,2),(1664,101268002,1),(1664,120621602,2),(1664,132717603,1),(1664,152071203,2),(1664,164167204,1),(1664,183520804,2),(1664,196221605,1),(1664,214970405,2),(1664,227671206,1),(1664,246420006,2),(1664,259120807,1),(1664,278474407,2),(1664,290570408,1),(1664,309924008,2),(1664,322020009,1),(1664,341373609,2),(1664,354675609,5),(1664,372819610,6),(1664,386125210,5),(1664,404269211,6),(1664,417574811,5),(1664,435718812,6),(1664,449024412,5),(1664,467773212,6),(1664,481078812,5),(1664,499222813,6),(1664,512528413,5),(1664,530672413,6),(1664,543978013,5),(1664,562122013,6),(1664,575427614,5),(1664,593571614,6),(1664,606877214,5),(1664,625626014,6),(1664,638326815,5),(1664,657075615,6),(1664,670381216,5),(1664,688525216,6),(1664,701830816,5),(1664,719974817,6),(1664,733280417,5),(1664,751424418,6),(1664,764730018,5),(1664,782874019,6),(1664,796179619,5),(1664,814323619,6),(1664,820454420,7),(1664,828234020,5),(1664,846378020,6),(1664,859683620,5),(1664,877827621,6),(1664,891133221,5),(1664,909277221,6),(1664,922582822,5),(1664,941331622,6),(1664,954032422,5),(1664,972781222,6),(1664,985482022,5),(1664,1004230822,6),(1664,1017536422,5),(1664,1035680422,6),(1664,1048986022,5),(1664,1067130022,6),(1664,1080435622,5),(1664,1099184422,6),(1664,1111885222,5),(1664,1130634022,6),(1664,1143334823,5),(1664,1162083623,6),(1664,1174784423,5),(1664,1193533223,6),(1664,1206838823,5),(1664,1224982823,6),(1664,1238288424,5),(1664,1256432424,6),(1664,1269738024,5),(1664,1288486824,6),(1664,1301187624,5),(1664,1319936424,6),(1664,1332637224,5),(1664,1351386025,6),(1664,1364691625,5),(1664,1382835625,6),(1664,1396141225,5),(1664,1414285225,6),(1664,1427590825,5),(1664,1445734826,6),(1664,1459040426,5),(1664,1477789226,6),(1664,1490490027,5),(1664,1509238827,6),(1664,1521939627,5),(1664,1540688427,6),(1664,1553994027,5),(1664,1572138027,6),(1664,1585443627,5),(1664,1603587627,6),(1664,1616893227,5),(1664,1635642027,6),(1664,1648342827,5),(1664,1667091627,6),(1664,1679792427,5),(1664,1698541227,6),(1664,1711846827,5),(1664,1729990827,6),(1664,1743296427,5),(1664,1761440427,6),(1664,1774746027,5),(1664,1792890027,6),(1664,1806195627,5),(1664,1824944427,6),(1664,1837645227,5),(1664,1856394027,6),(1664,1869094827,5),(1664,1887843627,6),(1664,1901149227,5),(1664,1919293227,6),(1664,1932598827,5),(1664,1950742827,6),(1664,1964048427,5),(1664,1982797227,6),(1664,1995498027,5),(1664,2014246827,6),(1664,2026947627,5),(1664,2045696427,6),(1664,2058397227,5),(1664,2077146027,6),(1664,2090451627,5),(1664,2108595627,6),(1664,2121901227,5),(1664,2140045227,6),(1665,-2147483648,2),(1665,-1693706400,1),(1665,-1680483600,2),(1665,-1663455600,3),(1665,-1650150000,4),(1665,-1632006000,3),(1665,-1618700400,4),(1665,-938905200,3),(1665,-857257200,4),(1665,-844556400,3),(1665,-828226800,4),(1665,-812502000,3),(1665,-796777200,4),(1665,-781052400,3),(1665,-780372000,6),(1665,-778730400,5),(1665,-762663600,6),(1665,-749095200,8),(1665,354920409,7),(1665,370728010,8),(1665,386456410,7),(1665,402264011,8),(1665,417992411,7),(1665,433800012,8),(1665,449614812,7),(1665,465346812,9),(1665,481071612,10),(1665,496796413,9),(1665,512521213,10),(1665,528246013,9),(1665,543970813,10),(1665,559695613,9),(1665,575420414,10),(1665,591145214,9),(1665,606870014,11),(1665,622598414,12),(1665,638323215,11),(1665,654652815,12),(1665,670377616,11),(1665,686102416,12),(1665,701827216,11),(1665,717552017,12),(1665,733276817,11),(1665,749001618,12),(1665,764726418,11),(1665,780451219,12),(1665,796176019,11),(1665,811900819,12),(1665,828230420,11),(1665,846374420,12),(1665,859680020,11),(1665,877824021,12),(1665,891129621,11),(1665,909273621,12),(1665,922579222,11),(1665,941328022,12),(1665,954028822,11),(1665,972777622,12),(1665,985478422,11),(1665,1004227222,12),(1665,1017532822,11),(1665,1035676822,12),(1665,1048982422,11),(1665,1067126422,12),(1665,1080432022,11),(1665,1099180822,12),(1665,1111881622,11),(1665,1130630422,12),(1665,1143331223,11),(1665,1162080023,12),(1665,1174780823,11),(1665,1193529623,12),(1665,1206835223,11),(1665,1224979223,12),(1665,1238284824,11),(1665,1256428824,12),(1665,1269734424,11),(1665,1288483224,12),(1665,1301184024,13),(1665,1414278025,12),(1666,-2147483648,1),(1666,-1441159324,2),(1666,-1247536800,3),(1666,-892522800,6),(1666,-857257200,4),(1666,-844556400,5),(1666,-828226800,4),(1666,-825382800,3),(1666,354920409,7),(1666,370728010,3),(1666,386456410,7),(1666,402264011,3),(1666,417992411,7),(1666,433800012,3),(1666,449614812,7),(1666,465346812,8),(1666,481071612,9),(1666,496796413,8),(1666,512521213,9),(1666,528246013,8),(1666,543970813,9),(1666,559695613,8),(1666,575420414,9),(1666,591145214,8),(1666,606870014,9),(1666,622594814,8),(1666,638319615,9),(1666,646783215,10),(1666,686102416,2),(1666,701820016,10),(1666,717541217,2),(1666,733269617,10),(1666,748990818,2),(1666,764719218,10),(1666,780440419,2),(1666,796179619,11),(1666,811904419,12),(1666,828234020,11),(1666,846378020,12),(1666,859683620,11),(1666,877827621,12),(1666,891133221,11),(1666,909277221,12),(1666,922582822,11),(1666,941331622,12),(1666,954032422,11),(1666,972781222,12),(1666,985482022,11),(1666,1004230822,12),(1666,1017536422,11),(1666,1035680422,12),(1666,1048986022,11),(1666,1067130022,12),(1666,1080435622,11),(1666,1099184422,12),(1666,1111885222,11),(1666,1130634022,12),(1666,1143334823,11),(1666,1162083623,12),(1666,1174784423,11),(1666,1193533223,12),(1666,1206838823,11),(1666,1224982823,12),(1666,1238288424,11),(1666,1256432424,12),(1666,1269738024,11),(1666,1288486824,12),(1666,1301187624,11),(1666,1319936424,12),(1666,1332637224,11),(1666,1351386025,12),(1666,1364691625,11),(1666,1382835625,12),(1666,1396141225,11),(1666,1414285225,12),(1666,1427590825,11),(1666,1445734826,12),(1666,1459040426,11),(1666,1477789226,12),(1666,1490490027,11),(1666,1509238827,12),(1666,1521939627,11),(1666,1540688427,12),(1666,1553994027,11),(1666,1572138027,12),(1666,1585443627,11),(1666,1603587627,12),(1666,1616893227,11),(1666,1635642027,12),(1666,1648342827,11),(1666,1667091627,12),(1666,1679792427,11),(1666,1698541227,12),(1666,1711846827,11),(1666,1729990827,12),(1666,1743296427,11),(1666,1761440427,12),(1666,1774746027,11),(1666,1792890027,12),(1666,1806195627,11),(1666,1824944427,12),(1666,1837645227,11),(1666,1856394027,12),(1666,1869094827,11),(1666,1887843627,12),(1666,1901149227,11),(1666,1919293227,12),(1666,1932598827,11),(1666,1950742827,12),(1666,1964048427,11),(1666,1982797227,12),(1666,1995498027,11),(1666,2014246827,12),(1666,2026947627,11),(1666,2045696427,12),(1666,2058397227,11),(1666,2077146027,12),(1666,2090451627,11),(1666,2108595627,12),(1666,2121901227,11),(1666,2140045227,12),(1667,-2147483648,0),(1667,-1593820800,1),(1667,-1247540400,3),(1667,354916809,2),(1667,370724410,3),(1667,386452810,2),(1667,402260411,3),(1667,417988811,2),(1667,433796412,3),(1667,449611212,2),(1667,465343212,4),(1667,481068012,5),(1667,496792813,4),(1667,512517613,5),(1667,528242413,4),(1667,543967213,5),(1667,559692013,4),(1667,575416814,5),(1667,591141614,4),(1667,606866414,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,-2147483648,0),(1668,-1830384000,6),(1668,-1689555600,1),(1668,-1677801600,2),(1668,-1667437200,3),(1668,-1647738000,4),(1668,-1635814800,3),(1668,-1616202000,4),(1668,-1604365200,3),(1668,-1584666000,4),(1668,-1572742800,3),(1668,-1553043600,4),(1668,-1541206800,3),(1668,-1521507600,4),(1668,-1442451600,3),(1668,-1426813200,4),(1668,-1379293200,3),(1668,-1364778000,4),(1668,-1348448400,3),(1668,-1333328400,4),(1668,-1316394000,3),(1668,-1301274000,4),(1668,-1284339600,3),(1668,-1269824400,4),(1668,-1221440400,3),(1668,-1206925200,4),(1668,-1191200400,3),(1668,-1175475600,4),(1668,-1127696400,3),(1668,-1111971600,4),(1668,-1096851600,3),(1668,-1080522000,4),(1668,-1063587600,3),(1668,-1049072400,4),(1668,-1033347600,3),(1668,-1017622800,4),(1668,-1002502800,3),(1668,-986173200,4),(1668,-969238800,3),(1668,-950490000,4),(1668,-942022800,3),(1668,-922669200,4),(1668,-906944400,3),(1668,-891133200,4),(1668,-877309200,3),(1668,-873684000,5),(1668,-864007200,3),(1668,-857955600,4),(1668,-845859600,3),(1668,-842839200,5),(1668,-831348000,3),(1668,-825901200,4),(1668,-814410000,3),(1668,-810784800,5),(1668,-799898400,3),(1668,-794451600,4),(1668,-782960400,3),(1668,-779335200,5),(1668,-768448800,3),(1668,-763002000,4),(1668,-749091600,3),(1668,-733366800,4),(1668,-717631200,3),(1668,-701906400,4),(1668,-686181600,3),(1668,-670456800,4),(1668,-654732000,3),(1668,-639007200,4),(1668,-591832800,3),(1668,-575503200,4),(1668,-559778400,3),(1668,-544053600,4),(1668,-528328800,3),(1668,-512604000,4),(1668,-496879200,3),(1668,-481154400,4),(1668,-465429600,3),(1668,-449704800,4),(1668,-433980000,3),(1668,-417650400,4),(1668,-401925600,3),(1668,-386200800,4),(1668,-370476000,3),(1668,-354751200,4),(1668,-339026400,3),(1668,-323301600,4),(1668,-307576800,3),(1668,-291852000,4),(1668,-276127200,3),(1668,-260402400,4),(1668,-244677600,3),(1668,-228348000,4),(1668,-212623200,3),(1668,-196898400,4),(1668,-181173600,3),(1668,-165448800,4),(1668,-149724000,3),(1668,-133999200,4),(1668,-118274400,7),(1668,212544005,2),(1668,228268806,3),(1668,243993606,4),(1668,260323207,3),(1668,276048007,4),(1668,291772808,3),(1668,307501208,4),(1668,323222409,3),(1668,338950809,4),(1668,354675609,3),(1668,370400410,4),(1668,386125210,3),(1668,401850011,4),(1668,417578411,3),(1668,433299612,4),(1668,449024412,3),(1668,465354012,4),(1668,481078812,3),(1668,496803613,4),(1668,512528413,3),(1668,528253213,4),(1668,543978013,3),(1668,559702813,4),(1668,575427614,3),(1668,591152414,4),(1668,606877214,3),(1668,622602014,4),(1668,638326815,3),(1668,654656415,4),(1668,670381216,3),(1668,686106016,4),(1668,701830816,3),(1668,717555617,8),(1668,733280417,9),(1668,749005218,8),(1668,764730018,9),(1668,780454819,8),(1668,796179619,9),(1668,811904419,8),(1668,828234020,10),(1668,846378020,6),(1668,859683620,10),(1668,877827621,6),(1668,891133221,10),(1668,909277221,6),(1668,922582822,10),(1668,941331622,6),(1668,954032422,10),(1668,972781222,6),(1668,985482022,10),(1668,1004230822,6),(1668,1017536422,10),(1668,1035680422,6),(1668,1048986022,10),(1668,1067130022,6),(1668,1080435622,10),(1668,1099184422,6),(1668,1111885222,10),(1668,1130634022,6),(1668,1143334823,10),(1668,1162083623,6),(1668,1174784423,10),(1668,1193533223,6),(1668,1206838823,10),(1668,1224982823,6),(1668,1238288424,10),(1668,1256432424,6),(1668,1269738024,10),(1668,1288486824,6),(1668,1301187624,10),(1668,1319936424,6),(1668,1332637224,10),(1668,1351386025,6),(1668,1364691625,10),(1668,1382835625,6),(1668,1396141225,10),(1668,1414285225,6),(1668,1427590825,10),(1668,1445734826,6),(1668,1459040426,10),(1668,1477789226,6),(1668,1490490027,10),(1668,1509238827,6),(1668,1521939627,10),(1668,1540688427,6),(1668,1553994027,10),(1668,1572138027,6),(1668,1585443627,10),(1668,1603587627,6),(1668,1616893227,10),(1668,1635642027,6),(1668,1648342827,10),(1668,1667091627,6),(1668,1679792427,10),(1668,1698541227,6),(1668,1711846827,10),(1668,1729990827,6),(1668,1743296427,10),(1668,1761440427,6),(1668,1774746027,10),(1668,1792890027,6),(1668,1806195627,10),(1668,1824944427,6),(1668,1837645227,10),(1668,1856394027,6),(1668,1869094827,10),(1668,1887843627,6),(1668,1901149227,10),(1668,1919293227,6),(1668,1932598827,10),(1668,1950742827,6),(1668,1964048427,10),(1668,1982797227,6),(1668,1995498027,10),(1668,2014246827,6),(1668,2026947627,10),(1668,2045696427,6),(1668,2058397227,10),(1668,2077146027,6),(1668,2090451627,10),(1668,2108595627,6),(1668,2121901227,10),(1668,2140045227,6),(1669,-2147483648,1),(1669,-905824800,4),(1669,-857257200,2),(1669,-844556400,3),(1669,-828226800,2),(1669,-812502000,3),(1669,-796777200,2),(1669,-788922000,1),(1669,-777942000,3),(1669,-766623600,2),(1669,407199611,1),(1669,417574811,5),(1669,433299612,6),(1669,449024412,5),(1669,465354012,6),(1669,481078812,5),(1669,496803613,6),(1669,512528413,5),(1669,528253213,6),(1669,543978013,5),(1669,559702813,6),(1669,575427614,5),(1669,591152414,6),(1669,606877214,5),(1669,622602014,6),(1669,638326815,5),(1669,654656415,6),(1669,670381216,5),(1669,686106016,6),(1669,701830816,5),(1669,717555617,6),(1669,733280417,5),(1669,749005218,6),(1669,764730018,5),(1669,780454819,6),(1669,796179619,5),(1669,811904419,6),(1669,828234020,5),(1669,846378020,6),(1669,859683620,5),(1669,877827621,6),(1669,891133221,5),(1669,909277221,6),(1669,922582822,5),(1669,941331622,6),(1669,954032422,5),(1669,972781222,6),(1669,985482022,5),(1669,1004230822,6),(1669,1017536422,5),(1669,1035680422,6),(1669,1048986022,5),(1669,1067130022,6),(1669,1080435622,5),(1669,1099184422,6),(1669,1111885222,5),(1669,1130634022,6),(1669,1143334823,5),(1669,1162083623,6),(1669,1174784423,5),(1669,1193533223,6),(1669,1206838823,5),(1669,1224982823,6),(1669,1238288424,5),(1669,1256432424,6),(1669,1269738024,5),(1669,1288486824,6),(1669,1301187624,5),(1669,1319936424,6),(1669,1332637224,5),(1669,1351386025,6),(1669,1364691625,5),(1669,1382835625,6),(1669,1396141225,5),(1669,1414285225,6),(1669,1427590825,5),(1669,1445734826,6),(1669,1459040426,5),(1669,1477789226,6),(1669,1490490027,5),(1669,1509238827,6),(1669,1521939627,5),(1669,1540688427,6),(1669,1553994027,5),(1669,1572138027,6),(1669,1585443627,5),(1669,1603587627,6),(1669,1616893227,5),(1669,1635642027,6),(1669,1648342827,5),(1669,1667091627,6),(1669,1679792427,5),(1669,1698541227,6),(1669,1711846827,5),(1669,1729990827,6),(1669,1743296427,5),(1669,1761440427,6),(1669,1774746027,5),(1669,1792890027,6),(1669,1806195627,5),(1669,1824944427,6),(1669,1837645227,5),(1669,1856394027,6),(1669,1869094827,5),(1669,1887843627,6),(1669,1901149227,5),(1669,1919293227,6),(1669,1932598827,5),(1669,1950742827,6),(1669,1964048427,5),(1669,1982797227,6),(1669,1995498027,5),(1669,2014246827,6),(1669,2026947627,5),(1669,2045696427,6),(1669,2058397227,5),(1669,2077146027,6),(1669,2090451627,5),(1669,2108595627,6),(1669,2121901227,5),(1669,2140045227,6),(1670,-2147483648,2),(1670,-1691964000,1),(1670,-1680472800,2),(1670,-1664143200,1),(1670,-1650146400,2),(1670,-1633903200,1),(1670,-1617487200,2),(1670,-1601848800,1),(1670,-1586037600,2),(1670,-1570399200,1),(1670,-1552168800,2),(1670,-1538344800,1),(1670,-1522533600,2),(1670,-1507500000,1),(1670,-1490565600,2),(1670,-1473631200,1),(1670,-1460930400,2),(1670,-1442786400,1),(1670,-1428876000,2),(1670,-1410732000,1),(1670,-1396216800,2),(1670,-1379282400,1),(1670,-1364767200,2),(1670,-1348437600,1),(1670,-1333317600,2),(1670,-1315778400,1),(1670,-1301263200,2),(1670,-1284328800,1),(1670,-1269813600,2),(1670,-1253484000,1),(1670,-1238364000,2),(1670,-1221429600,1),(1670,-1206914400,2),(1670,-1189980000,1),(1670,-1175464800,2),(1670,-1159135200,1),(1670,-1143410400,2),(1670,-1126476000,1),(1670,-1111960800,2),(1670,-1095631200,1),(1670,-1080511200,2),(1670,-1063576800,1),(1670,-1049061600,2),(1670,-1032127200,1),(1670,-1017612000,2),(1670,-1001282400,1),(1670,-986162400,2),(1670,-969228000,1),(1670,-950479200,2),(1670,-942012000,1),(1670,-904518000,3),(1670,-896050800,1),(1670,-875487600,3),(1670,-864601200,1),(1670,-844038000,3),(1670,-832546800,1),(1670,-812588400,3),(1670,-798073200,1),(1670,-781052400,3),(1670,-772066800,1),(1670,-764805600,2),(1670,-748476000,1),(1670,-733356000,2),(1670,-719445600,1),(1670,-717030000,3),(1670,-706748400,1),(1670,-699487200,2),(1670,-687996000,1),(1670,-668037600,2),(1670,-654732000,1),(1670,-636588000,2),(1670,-622072800,1),(1670,-605743200,2),(1670,-590623200,1),(1670,-574293600,2),(1670,-558568800,1),(1670,-542239200,2),(1670,-527119200,1),(1670,-512604000,2),(1670,-496274400,1),(1670,-481154400,2),(1670,-464220000,1),(1670,-449704800,2),(1670,-432165600,1),(1670,-417650400,2),(1670,-401320800,1),(1670,-386200800,2),(1670,-369266400,1),(1670,-354751200,2),(1670,-337816800,1),(1670,-323301600,2),(1670,-306972000,1),(1670,-291852000,2),(1670,-276732000,1),(1670,-257983200,2),(1670,-245282400,1),(1670,-226533600,2),(1670,-213228000,1),(1670,-195084000,2),(1670,-182383200,1),(1670,-163634400,2),(1670,-150933600,1),(1670,-132184800,2),(1670,-119484000,1),(1670,-100735200,2),(1670,-88034400,1),(1670,-68680800,2),(1670,-59004000,1),(1670,-37242000,4),(1670,57722400,6),(1670,69818400,1),(1670,89172001,2),(1670,101268002,1),(1670,120621602,2),(1670,132717603,1),(1670,152071203,2),(1670,164167204,1),(1670,183520804,2),(1670,196221605,1),(1670,214970405,2),(1670,227671206,1),(1670,246420006,2),(1670,259120807,1),(1670,278474407,2),(1670,290570408,1),(1670,309924008,2),(1670,322020009,1),(1670,341373609,2),(1670,354675609,5),(1670,372819610,6),(1670,386125210,5),(1670,404269211,6),(1670,417574811,5),(1670,435718812,6),(1670,449024412,5),(1670,467773212,6),(1670,481078812,5),(1670,499222813,6),(1670,512528413,5),(1670,530672413,6),(1670,543978013,5),(1670,562122013,6),(1670,575427614,5),(1670,593571614,6),(1670,606877214,5),(1670,625626014,6),(1670,638326815,5),(1670,657075615,6),(1670,670381216,5),(1670,688525216,6),(1670,701830816,5),(1670,719974817,6),(1670,733280417,5),(1670,751424418,6),(1670,764730018,5),(1670,782874019,6),(1670,796179619,5),(1670,814323619,6),(1670,820454420,7),(1670,828234020,5),(1670,846378020,6),(1670,859683620,5),(1670,877827621,6),(1670,891133221,5),(1670,909277221,6),(1670,922582822,5),(1670,941331622,6),(1670,954032422,5),(1670,972781222,6),(1670,985482022,5),(1670,1004230822,6),(1670,1017536422,5),(1670,1035680422,6),(1670,1048986022,5),(1670,1067130022,6),(1670,1080435622,5),(1670,1099184422,6),(1670,1111885222,5),(1670,1130634022,6),(1670,1143334823,5),(1670,1162083623,6),(1670,1174784423,5),(1670,1193533223,6),(1670,1206838823,5),(1670,1224982823,6),(1670,1238288424,5),(1670,1256432424,6),(1670,1269738024,5),(1670,1288486824,6),(1670,1301187624,5),(1670,1319936424,6),(1670,1332637224,5),(1670,1351386025,6),(1670,1364691625,5),(1670,1382835625,6),(1670,1396141225,5),(1670,1414285225,6),(1670,1427590825,5),(1670,1445734826,6),(1670,1459040426,5),(1670,1477789226,6),(1670,1490490027,5),(1670,1509238827,6),(1670,1521939627,5),(1670,1540688427,6),(1670,1553994027,5),(1670,1572138027,6),(1670,1585443627,5),(1670,1603587627,6),(1670,1616893227,5),(1670,1635642027,6),(1670,1648342827,5),(1670,1667091627,6),(1670,1679792427,5),(1670,1698541227,6),(1670,1711846827,5),(1670,1729990827,6),(1670,1743296427,5),(1670,1761440427,6),(1670,1774746027,5),(1670,1792890027,6),(1670,1806195627,5),(1670,1824944427,6),(1670,1837645227,5),(1670,1856394027,6),(1670,1869094827,5),(1670,1887843627,6),(1670,1901149227,5),(1670,1919293227,6),(1670,1932598827,5),(1670,1950742827,6),(1670,1964048427,5),(1670,1982797227,6),(1670,1995498027,5),(1670,2014246827,6),(1670,2026947627,5),(1670,2045696427,6),(1670,2058397227,5),(1670,2077146027,6),(1670,2090451627,5),(1670,2108595627,6),(1670,2121901227,5),(1670,2140045227,6),(1671,-2147483648,0),(1671,-2069713476,2),(1671,-1692496800,1),(1671,-1680483600,2),(1671,-1662343200,1),(1671,-1650157200,2),(1671,-1632006000,3),(1671,-1618700400,4),(1671,-1612659600,6),(1671,-1604278800,5),(1671,-1585519200,6),(1671,-1574038800,5),(1671,-1552258800,6),(1671,-1539997200,5),(1671,-1520550000,6),(1671,-1507510800,5),(1671,-1490572800,6),(1671,-1473642000,5),(1671,-1459119600,6),(1671,-1444006800,5),(1671,-1427673600,6),(1671,-1411866000,5),(1671,-1396224000,6),(1671,-1379293200,5),(1671,-1364774400,6),(1671,-1348448400,5),(1671,-1333324800,6),(1671,-1316394000,5),(1671,-1301270400,6),(1671,-1284339600,5),(1671,-1269813600,7),(1671,-1253484000,8),(1671,-1238364000,7),(1671,-1221429600,8),(1671,-1206914400,7),(1671,-1191189600,8),(1671,-1175464800,7),(1671,-1160344800,8),(1671,-1143410400,7),(1671,-1127685600,8),(1671,-1111960800,7),(1671,-1096840800,8),(1671,-1080511200,7),(1671,-1063576800,8),(1671,-1049061600,7),(1671,-1033336800,8),(1671,-1017612000,7),(1671,-1002492000,8),(1671,-986162400,7),(1671,-969228000,8),(1671,-950479200,7),(1671,-942012000,8),(1671,-935186400,11),(1671,-857257200,9),(1671,-844556400,10),(1671,-828226800,9),(1671,-812502000,10),(1671,-797986800,2),(1671,-781052400,3),(1671,-766623600,4),(1671,-745455600,3),(1671,-733273200,4),(1671,220921205,2),(1671,228877206,12),(1671,243997206,13),(1671,260326807,12),(1671,276051607,13),(1671,291776408,12),(1671,307501208,13),(1671,323830809,12),(1671,338950809,13),(1671,354675609,12),(1671,370400410,13),(1671,386125210,12),(1671,401850011,13),(1671,417574811,12),(1671,433299612,13),(1671,449024412,12),(1671,465354012,13),(1671,481078812,12),(1671,496803613,13),(1671,512528413,12),(1671,528253213,13),(1671,543978013,12),(1671,559702813,13),(1671,575427614,12),(1671,591152414,13),(1671,606877214,12),(1671,622602014,13),(1671,638326815,12),(1671,654656415,13),(1671,670381216,12),(1671,686106016,13),(1671,701830816,12),(1671,717555617,13),(1671,733280417,12),(1671,749005218,13),(1671,764730018,12),(1671,780454819,13),(1671,796179619,12),(1671,811904419,13),(1671,828234020,12),(1671,846378020,13),(1671,859683620,12),(1671,877827621,13),(1671,891133221,12),(1671,909277221,13),(1671,922582822,12),(1671,941331622,13),(1671,954032422,12),(1671,972781222,13),(1671,985482022,12),(1671,1004230822,13),(1671,1017536422,12),(1671,1035680422,13),(1671,1048986022,12),(1671,1067130022,13),(1671,1080435622,12),(1671,1099184422,13),(1671,1111885222,12),(1671,1130634022,13),(1671,1143334823,12),(1671,1162083623,13),(1671,1174784423,12),(1671,1193533223,13),(1671,1206838823,12),(1671,1224982823,13),(1671,1238288424,12),(1671,1256432424,13),(1671,1269738024,12),(1671,1288486824,13),(1671,1301187624,12),(1671,1319936424,13),(1671,1332637224,12),(1671,1351386025,13),(1671,1364691625,12),(1671,1382835625,13),(1671,1396141225,12),(1671,1414285225,13),(1671,1427590825,12),(1671,1445734826,13),(1671,1459040426,12),(1671,1477789226,13),(1671,1490490027,12),(1671,1509238827,13),(1671,1521939627,12),(1671,1540688427,13),(1671,1553994027,12),(1671,1572138027,13),(1671,1585443627,12),(1671,1603587627,13),(1671,1616893227,12),(1671,1635642027,13),(1671,1648342827,12),(1671,1667091627,13),(1671,1679792427,12),(1671,1698541227,13),(1671,1711846827,12),(1671,1729990827,13),(1671,1743296427,12),(1671,1761440427,13),(1671,1774746027,12),(1671,1792890027,13),(1671,1806195627,12),(1671,1824944427,13),(1671,1837645227,12),(1671,1856394027,13),(1671,1869094827,12),(1671,1887843627,13),(1671,1901149227,12),(1671,1919293227,13),(1671,1932598827,12),(1671,1950742827,13),(1671,1964048427,12),(1671,1982797227,13),(1671,1995498027,12),(1671,2014246827,13),(1671,2026947627,12),(1671,2045696427,13),(1671,2058397227,12),(1671,2077146027,13),(1671,2090451627,12),(1671,2108595627,13),(1671,2121901227,12),(1671,2140045227,13),(1672,-2147483648,4),(1672,-1631926800,1),(1672,-1616889600,2),(1672,-1601168400,1),(1672,-1585353600,2),(1672,-1442451600,1),(1672,-1427673600,2),(1672,-1379293200,1),(1672,-1364774400,2),(1672,-1348448400,1),(1672,-1333324800,2),(1672,-1316390400,1),(1672,-1301270400,2),(1672,-1284339600,1),(1672,-1269820800,2),(1672,-1026954000,1),(1672,-1017619200,2),(1672,-1001898000,1),(1672,-999482400,3),(1672,-986090400,1),(1672,-954115200,2),(1672,-940208400,6),(1672,-873079200,5),(1672,-862621200,6),(1672,-842839200,5),(1672,-828320400,6),(1672,-811389600,5),(1672,-796870800,6),(1672,-779940000,5),(1672,-765421200,6),(1672,-748490400,5),(1672,-733971600,6),(1672,-652327200,5),(1672,-639018000,6),(1672,135122403,5),(1672,150246003,6),(1672,166572004,5),(1672,181695604,6),(1672,196812005,5),(1672,212540405,6),(1672,228866406,5),(1672,243990006,6),(1672,260326807,7),(1672,276051607,8),(1672,283993207,6),(1672,291776408,9),(1672,307501208,10),(1672,323830809,9),(1672,338950809,10),(1672,354675609,9),(1672,370400410,10),(1672,386125210,9),(1672,401850011,10),(1672,417574811,9),(1672,433299612,10),(1672,449024412,9),(1672,465354012,10),(1672,481078812,9),(1672,496803613,10),(1672,512528413,9),(1672,528253213,10),(1672,543978013,9),(1672,559702813,10),(1672,575427614,9),(1672,591152414,10),(1672,606877214,9),(1672,622602014,10),(1672,638326815,9),(1672,654656415,10),(1672,670381216,9),(1672,686106016,10),(1672,701830816,9),(1672,717555617,10),(1672,733280417,9),(1672,749005218,10),(1672,764730018,9),(1672,780454819,10),(1672,796179619,9),(1672,811904419,10),(1672,828234020,9),(1672,846378020,10),(1672,859683620,9),(1672,877827621,10),(1672,891133221,9),(1672,909277221,10),(1672,922582822,9),(1672,941331622,10),(1672,954032422,9),(1672,972781222,10),(1672,985482022,9),(1672,1004230822,10),(1672,1017536422,9),(1672,1035680422,10),(1672,1048986022,9),(1672,1067130022,10),(1672,1080435622,9),(1672,1099184422,10),(1672,1111885222,9),(1672,1130634022,10),(1672,1143334823,9),(1672,1162083623,10),(1672,1174784423,9),(1672,1193533223,10),(1672,1206838823,9),(1672,1224982823,10),(1672,1238288424,9),(1672,1256432424,10),(1672,1269738024,9),(1672,1288486824,10),(1672,1301187624,9),(1672,1319936424,10),(1672,1332637224,9),(1672,1351386025,10),(1672,1364691625,9),(1672,1382835625,10),(1672,1396141225,9),(1672,1414285225,10),(1672,1427590825,9),(1672,1445734826,10),(1672,1459040426,9),(1672,1477789226,10),(1672,1490490027,9),(1672,1509238827,10),(1672,1521939627,9),(1672,1540688427,10),(1672,1553994027,9),(1672,1572138027,10),(1672,1585443627,9),(1672,1603587627,10),(1672,1616893227,9),(1672,1635642027,10),(1672,1648342827,9),(1672,1667091627,10),(1672,1679792427,9),(1672,1698541227,10),(1672,1711846827,9),(1672,1729990827,10),(1672,1743296427,9),(1672,1761440427,10),(1672,1774746027,9),(1672,1792890027,10),(1672,1806195627,9),(1672,1824944427,10),(1672,1837645227,9),(1672,1856394027,10),(1672,1869094827,9),(1672,1887843627,10),(1672,1901149227,9),(1672,1919293227,10),(1672,1932598827,9),(1672,1950742827,10),(1672,1964048427,9),(1672,1982797227,10),(1672,1995498027,9),(1672,2014246827,10),(1672,2026947627,9),(1672,2045696427,10),(1672,2058397227,9),(1672,2077146027,10),(1672,2090451627,9),(1672,2108595627,10),(1672,2121901227,9),(1672,2140045227,10),(1673,-2147483648,3),(1673,-1690765200,1),(1673,-1680487200,2),(1673,-1664758800,1),(1673,-1648951200,2),(1673,-1635123600,1),(1673,-1616896800,2),(1673,-1604278800,1),(1673,-1585533600,2),(1673,-1571014800,1),(1673,-1555293600,2),(1673,-932432400,1),(1673,-857257200,3),(1673,-844556400,4),(1673,-828226800,3),(1673,-812588400,4),(1673,-798073200,3),(1673,-781052400,1),(1673,-766717200,2),(1673,-750898800,4),(1673,-733359600,3),(1673,-719456400,4),(1673,-701917200,3),(1673,-689209200,4),(1673,-670460400,3),(1673,-114051600,4),(1673,-103168800,2),(1673,-81997200,4),(1673,-71715600,3),(1673,-50547600,4),(1673,-40266000,3),(1673,-18493200,4),(1673,-8211600,3),(1673,12956400,4),(1673,23238000,3),(1673,43801200,4),(1673,54687600,3),(1673,75855600,4),(1673,86742001,3),(1673,102380402,4),(1673,118105202,3),(1673,135730803,4),(1673,148518003,3),(1673,167187604,1),(1673,180489604,2),(1673,198637205,1),(1673,211939205,2),(1673,230086806,1),(1673,243388806,2),(1673,261536407,1),(1673,274838407,2),(1673,292986008,1),(1673,306288008,2),(1673,323312409,1),(1673,338342409,2),(1673,354675609,5),(1673,370400410,6),(1673,386125210,5),(1673,401850011,6),(1673,417574811,5),(1673,433299612,6),(1673,449024412,5),(1673,465354012,6),(1673,481078812,5),(1673,496803613,6),(1673,512528413,5),(1673,528253213,6),(1673,543978013,5),(1673,559702813,6),(1673,575427614,5),(1673,591152414,6),(1673,606877214,5),(1673,622602014,6),(1673,638326815,5),(1673,654656415,6),(1673,670381216,5),(1673,686106016,6),(1673,701830816,5),(1673,717555617,6),(1673,733280417,5),(1673,749005218,6),(1673,764730018,5),(1673,780454819,6),(1673,796179619,5),(1673,811904419,6),(1673,828234020,5),(1673,846378020,6),(1673,859683620,5),(1673,877827621,6),(1673,891133221,5),(1673,909277221,6),(1673,922582822,5),(1673,941331622,6),(1673,954032422,5),(1673,972781222,6),(1673,985482022,5),(1673,1004230822,6),(1673,1017536422,5),(1673,1035680422,6),(1673,1048986022,5),(1673,1067130022,6),(1673,1080435622,5),(1673,1099184422,6),(1673,1111885222,5),(1673,1130634022,6),(1673,1143334823,5),(1673,1162083623,6),(1673,1174784423,5),(1673,1193533223,6),(1673,1206838823,5),(1673,1224982823,6),(1673,1238288424,5),(1673,1256432424,6),(1673,1269738024,5),(1673,1288486824,6),(1673,1301187624,5),(1673,1319936424,6),(1673,1332637224,5),(1673,1351386025,6),(1673,1364691625,5),(1673,1382835625,6),(1673,1396141225,5),(1673,1414285225,6),(1673,1427590825,5),(1673,1445734826,6),(1673,1459040426,5),(1673,1477789226,6),(1673,1490490027,5),(1673,1509238827,6),(1673,1521939627,5),(1673,1540688427,6),(1673,1553994027,5),(1673,1572138027,6),(1673,1585443627,5),(1673,1603587627,6),(1673,1616893227,5),(1673,1635642027,6),(1673,1648342827,5),(1673,1667091627,6),(1673,1679792427,5),(1673,1698541227,6),(1673,1711846827,5),(1673,1729990827,6),(1673,1743296427,5),(1673,1761440427,6),(1673,1774746027,5),(1673,1792890027,6),(1673,1806195627,5),(1673,1824944427,6),(1673,1837645227,5),(1673,1856394027,6),(1673,1869094827,5),(1673,1887843627,6),(1673,1901149227,5),(1673,1919293227,6),(1673,1932598827,5),(1673,1950742827,6),(1673,1964048427,5),(1673,1982797227,6),(1673,1995498027,5),(1673,2014246827,6),(1673,2026947627,5),(1673,2045696427,6),(1673,2058397227,5),(1673,2077146027,6),(1673,2090451627,5),(1673,2108595627,6),(1673,2121901227,5),(1673,2140045227,6),(1674,-2147483648,1),(1674,-1535938789,3),(1674,-875671200,2),(1674,-859773600,3),(1674,354672009,2),(1674,370396810,3),(1674,386121610,2),(1674,401846411,3),(1674,417574811,4),(1674,433299612,5),(1674,449024412,4),(1674,465354012,5),(1674,481078812,4),(1674,496803613,5),(1674,512528413,4),(1674,528253213,5),(1674,543978013,4),(1674,559702813,5),(1674,575427614,4),(1674,591152414,5),(1674,606877214,4),(1674,622602014,5),(1674,638326815,4),(1674,654656415,5),(1674,670381216,4),(1674,686106016,5),(1674,701830816,4),(1674,717555617,5),(1674,733280417,4),(1674,749005218,5),(1674,764730018,4),(1674,780454819,5),(1674,796179619,4),(1674,811904419,5),(1674,828234020,4),(1674,846378020,5),(1674,859683620,4),(1674,877827621,5),(1674,891133221,4),(1674,909277221,5),(1674,922582822,4),(1674,941331622,5),(1674,954032422,4),(1674,972781222,5),(1674,985482022,4),(1674,1004230822,5),(1674,1017536422,4),(1674,1035680422,5),(1674,1048986022,4),(1674,1067130022,5),(1674,1080435622,4),(1674,1099184422,5),(1674,1111885222,4),(1674,1130634022,5),(1674,1143334823,4),(1674,1162083623,5),(1674,1174784423,4),(1674,1193533223,5),(1674,1206838823,4),(1674,1224982823,5),(1674,1238288424,4),(1674,1256432424,5),(1674,1269738024,4),(1674,1288486824,5),(1674,1301187624,4),(1674,1319936424,5),(1674,1332637224,4),(1674,1351386025,5),(1674,1364691625,4),(1674,1382835625,5),(1674,1396141225,4),(1674,1414285225,5),(1674,1427590825,4),(1674,1445734826,5),(1674,1459040426,4),(1674,1477789226,5),(1674,1490490027,4),(1674,1509238827,5),(1674,1521939627,4),(1674,1540688427,5),(1674,1553994027,4),(1674,1572138027,5),(1674,1585443627,4),(1674,1603587627,5),(1674,1616893227,4),(1674,1635642027,5),(1674,1648342827,4),(1674,1667091627,5),(1674,1679792427,4),(1674,1698541227,5),(1674,1711846827,4),(1674,1729990827,5),(1674,1743296427,4),(1674,1761440427,5),(1674,1774746027,4),(1674,1792890027,5),(1674,1806195627,4),(1674,1824944427,5),(1674,1837645227,4),(1674,1856394027,5),(1674,1869094827,4),(1674,1887843627,5),(1674,1901149227,4),(1674,1919293227,5),(1674,1932598827,4),(1674,1950742827,5),(1674,1964048427,4),(1674,1982797227,5),(1674,1995498027,4),(1674,2014246827,5),(1674,2026947627,4),(1674,2045696427,5),(1674,2058397227,4),(1674,2077146027,5),(1674,2090451627,4),(1674,2108595627,5),(1674,2121901227,4),(1674,2140045227,5),(1675,-2147483648,1),(1675,-1441158600,2),(1675,-1247536800,3),(1675,-899780400,6),(1675,-857257200,4),(1675,-844556400,5),(1675,-828226800,4),(1675,-812502000,5),(1675,-804650400,3),(1675,354920409,7),(1675,370728010,3),(1675,386456410,7),(1675,402264011,3),(1675,417992411,7),(1675,433800012,3),(1675,449614812,7),(1675,465346812,8),(1675,481071612,9),(1675,496796413,8),(1675,512521213,9),(1675,528246013,8),(1675,543970813,9),(1675,559695613,8),(1675,575420414,9),(1675,591145214,8),(1675,606870014,9),(1675,622594814,8),(1675,631141214,3),(1675,670374016,10),(1675,686102416,11),(1675,701827216,10),(1675,717552017,11),(1675,733276817,10),(1675,749001618,11),(1675,764726418,10),(1675,780451219,11),(1675,796176019,10),(1675,811900819,11),(1675,828230420,10),(1675,846374420,11),(1675,859680020,10),(1675,877824021,11),(1675,891129621,10),(1675,909273621,11),(1675,922579222,10),(1675,941328022,11),(1675,954028822,10),(1675,972777622,11),(1675,985478422,10),(1675,1004227222,11),(1675,1017532822,10),(1675,1035676822,11),(1675,1048982422,10),(1675,1067126422,11),(1675,1080432022,10),(1675,1099180822,11),(1675,1111881622,10),(1675,1130630422,11),(1675,1143331223,10),(1675,1162080023,11),(1675,1174780823,10),(1675,1193529623,11),(1675,1206835223,10),(1675,1224979223,11),(1675,1238284824,10),(1675,1256428824,11),(1675,1269734424,10),(1675,1288483224,11),(1675,1301184024,12),(1676,-2147483648,1),(1676,-1854403761,6),(1676,-1689814800,2),(1676,-1680397200,3),(1676,-1665363600,2),(1676,-1648342800,3),(1676,-1635123600,2),(1676,-1616893200,3),(1676,-1604278800,2),(1676,-1585443600,3),(1676,-1574038800,2),(1676,-1552266000,3),(1676,-1539997200,2),(1676,-1520557200,3),(1676,-1507510800,2),(1676,-1490576400,3),(1676,-1470618000,2),(1676,-1459126800,3),(1676,-1444006800,2),(1676,-1427677200,3),(1676,-1411952400,2),(1676,-1396227600,3),(1676,-1379293200,2),(1676,-1364778000,3),(1676,-1348448400,2),(1676,-1333328400,3),(1676,-1316394000,2),(1676,-1301274000,3),(1676,-1284339600,2),(1676,-1269824400,3),(1676,-1253494800,2),(1676,-1238374800,3),(1676,-1221440400,2),(1676,-1206925200,3),(1676,-1191200400,2),(1676,-1175475600,3),(1676,-1160355600,2),(1676,-1143421200,3),(1676,-1127696400,2),(1676,-1111971600,3),(1676,-1096851600,2),(1676,-1080522000,3),(1676,-1063587600,2),(1676,-1049072400,3),(1676,-1033347600,2),(1676,-1017622800,3),(1676,-1002502800,2),(1676,-986173200,3),(1676,-969238800,2),(1676,-950490000,3),(1676,-942012000,4),(1676,-904438800,5),(1676,-891136800,4),(1676,-877827600,5),(1676,-857257200,4),(1676,-844556400,5),(1676,-828226800,4),(1676,-812502000,5),(1676,-796266000,4),(1676,-781052400,5),(1676,-766623600,8),(1676,196819205,7),(1676,212540405,8),(1676,228877206,9),(1676,243997206,10),(1676,260326807,9),(1676,276051607,10),(1676,291776408,9),(1676,307501208,10),(1676,323830809,9),(1676,338950809,10),(1676,354675609,9),(1676,370400410,10),(1676,386125210,9),(1676,401850011,10),(1676,417574811,9),(1676,433299612,10),(1676,449024412,9),(1676,465354012,10),(1676,481078812,9),(1676,496803613,10),(1676,512528413,9),(1676,528253213,10),(1676,543978013,9),(1676,559702813,10),(1676,575427614,9),(1676,591152414,10),(1676,606877214,9),(1676,622602014,10),(1676,638326815,9),(1676,654656415,10),(1676,670381216,9),(1676,686106016,10),(1676,701830816,9),(1676,717555617,10),(1676,733280417,9),(1676,749005218,10),(1676,764730018,9),(1676,780454819,10),(1676,796179619,9),(1676,811904419,10),(1676,828234020,9),(1676,846378020,10),(1676,859683620,9),(1676,877827621,10),(1676,891133221,9),(1676,909277221,10),(1676,922582822,9),(1676,941331622,10),(1676,954032422,9),(1676,972781222,10),(1676,985482022,9),(1676,1004230822,10),(1676,1017536422,9),(1676,1035680422,10),(1676,1048986022,9),(1676,1067130022,10),(1676,1080435622,9),(1676,1099184422,10),(1676,1111885222,9),(1676,1130634022,10),(1676,1143334823,9),(1676,1162083623,10),(1676,1174784423,9),(1676,1193533223,10),(1676,1206838823,9),(1676,1224982823,10),(1676,1238288424,9),(1676,1256432424,10),(1676,1269738024,9),(1676,1288486824,10),(1676,1301187624,9),(1676,1319936424,10),(1676,1332637224,9),(1676,1351386025,10),(1676,1364691625,9),(1676,1382835625,10),(1676,1396141225,9),(1676,1414285225,10),(1676,1427590825,9),(1676,1445734826,10),(1676,1459040426,9),(1676,1477789226,10),(1676,1490490027,9),(1676,1509238827,10),(1676,1521939627,9),(1676,1540688427,10),(1676,1553994027,9),(1676,1572138027,10),(1676,1585443627,9),(1676,1603587627,10),(1676,1616893227,9),(1676,1635642027,10),(1676,1648342827,9),(1676,1667091627,10),(1676,1679792427,9),(1676,1698541227,10),(1676,1711846827,9),(1676,1729990827,10),(1676,1743296427,9),(1676,1761440427,10),(1676,1774746027,9),(1676,1792890027,10),(1676,1806195627,9),(1676,1824944427,10),(1676,1837645227,9),(1676,1856394027,10),(1676,1869094827,9),(1676,1887843627,10),(1676,1901149227,9),(1676,1919293227,10),(1676,1932598827,9),(1676,1950742827,10),(1676,1964048427,9),(1676,1982797227,10),(1676,1995498027,9),(1676,2014246827,10),(1676,2026947627,9),(1676,2045696427,10),(1676,2058397227,9),(1676,2077146027,10),(1676,2090451627,9),(1676,2108595627,10),(1676,2121901227,9),(1676,2140045227,10),(1677,-2147483648,1),(1677,-1688265017,3),(1677,-1656819079,2),(1677,-1641353479,3),(1677,-1627965079,4),(1677,-1618716679,2),(1677,-1596429079,4),(1677,-1593820800,5),(1677,-1589860800,6),(1677,-1542427200,7),(1677,-1539493200,8),(1677,-1525323600,7),(1677,-1522728000,6),(1677,-1491188400,9),(1677,-1247536800,6),(1677,354920409,7),(1677,370728010,6),(1677,386456410,7),(1677,402264011,6),(1677,417992411,7),(1677,433800012,6),(1677,449614812,7),(1677,465346812,10),(1677,481071612,11),(1677,496796413,10),(1677,512521213,11),(1677,528246013,10),(1677,543970813,11),(1677,559695613,10),(1677,575420414,11),(1677,591145214,10),(1677,606870014,11),(1677,622594814,10),(1677,638319615,11),(1677,654649215,10),(1677,670374016,12),(1677,686102416,13),(1677,695779216,10),(1677,701823616,11),(1677,717548417,10),(1677,733273217,11),(1677,748998018,10),(1677,764722818,11),(1677,780447619,10),(1677,796172419,11),(1677,811897219,10),(1677,828226820,11),(1677,846370820,10),(1677,859676420,11),(1677,877820421,10),(1677,891126021,11),(1677,909270021,10),(1677,922575622,11),(1677,941324422,10),(1677,954025222,11),(1677,972774022,10),(1677,985474822,11),(1677,1004223622,10),(1677,1017529222,11),(1677,1035673222,10),(1677,1048978822,11),(1677,1067122822,10),(1677,1080428422,11),(1677,1099177222,10),(1677,1111878022,11),(1677,1130626822,10),(1677,1143327623,11),(1677,1162076423,10),(1677,1174777223,11),(1677,1193526023,10),(1677,1206831623,11),(1677,1224975623,10),(1677,1238281224,11),(1677,1256425224,10),(1677,1269730824,11),(1677,1288479624,10),(1677,1301180424,14),(1677,1414274425,10),(1678,-2147483648,0),(1678,-1518920008,2),(1678,166572004,1),(1678,182293204,2),(1678,200959205,1),(1678,213829205,2),(1678,228866406,1),(1678,243982806,2),(1678,260316007,1),(1678,276123607,2),(1678,291765608,1),(1678,307486808,2),(1678,323820009,1),(1678,338936409,2),(1678,354664809,1),(1678,370386010,2),(1678,386114410,1),(1678,401835611,2),(1678,417564011,1),(1678,433285212,2),(1678,449013612,1),(1678,465339612,2),(1678,481068012,1),(1678,496789213,2),(1678,512517613,1),(1678,528238813,2),(1678,543967213,1),(1678,559688413,2),(1678,575416814,1),(1678,591138014,2),(1678,606866414,1),(1678,622587614,2),(1678,638316015,1),(1678,654642015,2),(1678,670370416,1),(1678,686091616,2),(1678,701820016,1),(1678,717541217,2),(1678,733269617,1),(1678,748990818,2),(1678,764719218,1),(1678,780440419,2),(1678,796168819,1),(1678,811890019,2),(1678,828223220,1),(1678,843944420,2),(1678,859672820,1),(1678,875394021,2),(1678,891122421,1),(1678,909277221,3),(1678,922582822,4),(1678,941331622,3),(1678,954032422,4),(1678,972781222,3),(1678,985482022,4),(1678,1004230822,3),(1678,1017536422,4),(1678,1035680422,3),(1678,1048986022,4),(1678,1067130022,3),(1678,1080435622,4),(1678,1099184422,3),(1678,1111885222,4),(1678,1130634022,3),(1678,1143334823,4),(1678,1162083623,3),(1678,1174784423,4),(1678,1193533223,3),(1678,1206838823,4),(1678,1224982823,3),(1678,1238288424,4),(1678,1256432424,3),(1678,1269738024,4),(1678,1288486824,3),(1678,1301187624,4),(1678,1319936424,3),(1678,1332637224,4),(1678,1351386025,3),(1678,1364691625,4),(1678,1382835625,3),(1678,1396141225,4),(1678,1414285225,3),(1678,1427590825,4),(1678,1445734826,3),(1678,1459040426,4),(1678,1477789226,3),(1678,1490490027,4),(1678,1509238827,3),(1678,1521939627,4),(1678,1540688427,3),(1678,1553994027,4),(1678,1572138027,3),(1678,1585443627,4),(1678,1603587627,3),(1678,1616893227,4),(1678,1635642027,3),(1678,1648342827,4),(1678,1667091627,3),(1678,1679792427,4),(1678,1698541227,3),(1678,1711846827,4),(1678,1729990827,3),(1678,1743296427,4),(1678,1761440427,3),(1678,1774746027,4),(1678,1792890027,3),(1678,1806195627,4),(1678,1824944427,3),(1678,1837645227,4),(1678,1856394027,3),(1678,1869094827,4),(1678,1887843627,3),(1678,1901149227,4),(1678,1919293227,3),(1678,1932598827,4),(1678,1950742827,3),(1678,1964048427,4),(1678,1982797227,3),(1678,1995498027,4),(1678,2014246827,3),(1678,2026947627,4),(1678,2045696427,3),(1678,2058397227,4),(1678,2077146027,3),(1678,2090451627,4),(1678,2108595627,3),(1678,2121901227,4),(1678,2140045227,3),(1679,-2147483648,2),(1679,-1691884800,1),(1679,-1680573600,2),(1679,-927511200,1),(1679,-857257200,3),(1679,-844556400,4),(1679,-828226800,3),(1679,-812502000,4),(1679,-796777200,3),(1679,-781052400,4),(1679,-765327600,3),(1679,-340844400,4),(1679,-324514800,3),(1679,-308790000,4),(1679,-293065200,3),(1679,-277340400,4),(1679,-261615600,3),(1679,-245890800,4),(1679,-230166000,3),(1679,-214441200,4),(1679,-198716400,3),(1679,-182991600,4),(1679,-166662000,3),(1679,-147913200,4),(1679,-135212400,3),(1679,315529208,2),(1679,323830809,5),(1679,338950809,6),(1679,354675609,5),(1679,370400410,6),(1679,386125210,5),(1679,401850011,6),(1679,417574811,5),(1679,433299612,6),(1679,449024412,5),(1679,465354012,6),(1679,481078812,5),(1679,496803613,6),(1679,512528413,5),(1679,528253213,6),(1679,543978013,5),(1679,559702813,6),(1679,575427614,5),(1679,591152414,6),(1679,606877214,5),(1679,622602014,6),(1679,638326815,5),(1679,654656415,6),(1679,670381216,5),(1679,686106016,6),(1679,701830816,5),(1679,717555617,6),(1679,733280417,5),(1679,749005218,6),(1679,764730018,5),(1679,780454819,6),(1679,796179619,5),(1679,811904419,6),(1679,828234020,5),(1679,846378020,6),(1679,859683620,5),(1679,877827621,6),(1679,891133221,5),(1679,909277221,6),(1679,922582822,5),(1679,941331622,6),(1679,954032422,5),(1679,972781222,6),(1679,985482022,5),(1679,1004230822,6),(1679,1017536422,5),(1679,1035680422,6),(1679,1048986022,5),(1679,1067130022,6),(1679,1080435622,5),(1679,1099184422,6),(1679,1111885222,5),(1679,1130634022,6),(1679,1143334823,5),(1679,1162083623,6),(1679,1174784423,5),(1679,1193533223,6),(1679,1206838823,5),(1679,1224982823,6),(1679,1238288424,5),(1679,1256432424,6),(1679,1269738024,5),(1679,1288486824,6),(1679,1301187624,5),(1679,1319936424,6),(1679,1332637224,5),(1679,1351386025,6),(1679,1364691625,5),(1679,1382835625,6),(1679,1396141225,5),(1679,1414285225,6),(1679,1427590825,5),(1679,1445734826,6),(1679,1459040426,5),(1679,1477789226,6),(1679,1490490027,5),(1679,1509238827,6),(1679,1521939627,5),(1679,1540688427,6),(1679,1553994027,5),(1679,1572138027,6),(1679,1585443627,5),(1679,1603587627,6),(1679,1616893227,5),(1679,1635642027,6),(1679,1648342827,5),(1679,1667091627,6),(1679,1679792427,5),(1679,1698541227,6),(1679,1711846827,5),(1679,1729990827,6),(1679,1743296427,5),(1679,1761440427,6),(1679,1774746027,5),(1679,1792890027,6),(1679,1806195627,5),(1679,1824944427,6),(1679,1837645227,5),(1679,1856394027,6),(1679,1869094827,5),(1679,1887843627,6),(1679,1901149227,5),(1679,1919293227,6),(1679,1932598827,5),(1679,1950742827,6),(1679,1964048427,5),(1679,1982797227,6),(1679,1995498027,5),(1679,2014246827,6),(1679,2026947627,5),(1679,2045696427,6),(1679,2058397227,5),(1679,2077146027,6),(1679,2090451627,5),(1679,2108595627,6),(1679,2121901227,5),(1679,2140045227,6),(1680,-2147483648,1),(1680,-1855958961,5),(1680,-1689814800,2),(1680,-1680397200,3),(1680,-1665363600,2),(1680,-1648342800,3),(1680,-1635123600,2),(1680,-1616893200,3),(1680,-1604278800,2),(1680,-1585443600,3),(1680,-1574038800,2),(1680,-1552266000,3),(1680,-1539997200,2),(1680,-1520557200,3),(1680,-1507510800,2),(1680,-1490576400,3),(1680,-1470618000,2),(1680,-1459126800,3),(1680,-1444006800,2),(1680,-1427677200,3),(1680,-1411952400,2),(1680,-1396227600,3),(1680,-1379293200,2),(1680,-1364778000,3),(1680,-1348448400,2),(1680,-1333328400,3),(1680,-1316394000,2),(1680,-1301274000,3),(1680,-1284339600,2),(1680,-1269824400,3),(1680,-1253494800,2),(1680,-1238374800,3),(1680,-1221440400,2),(1680,-1206925200,3),(1680,-1191200400,2),(1680,-1175475600,3),(1680,-1160355600,2),(1680,-1143421200,3),(1680,-1127696400,2),(1680,-1111971600,3),(1680,-1096851600,2),(1680,-1080522000,3),(1680,-1063587600,2),(1680,-1049072400,3),(1680,-1033347600,2),(1680,-1017622800,3),(1680,-1002502800,2),(1680,-986173200,3),(1680,-969238800,2),(1680,-950490000,3),(1680,-942012000,4),(1680,-932436000,8),(1680,-857257200,6),(1680,-844556400,7),(1680,-828226800,6),(1680,-812502000,7),(1680,-800071200,9),(1680,-796266000,4),(1680,-781052400,9),(1680,-766623600,10),(1680,196819205,8),(1680,212540405,10),(1680,228877206,11),(1680,243997206,12),(1680,260326807,11),(1680,276051607,12),(1680,291776408,11),(1680,307501208,12),(1680,323830809,11),(1680,338950809,12),(1680,354675609,11),(1680,370400410,12),(1680,386125210,11),(1680,401850011,12),(1680,417574811,11),(1680,433299612,12),(1680,449024412,11),(1680,465354012,12),(1680,481078812,11),(1680,496803613,12),(1680,512528413,11),(1680,528253213,12),(1680,543978013,11),(1680,559702813,12),(1680,575427614,11),(1680,591152414,12),(1680,606877214,11),(1680,622602014,12),(1680,638326815,11),(1680,654656415,12),(1680,670381216,11),(1680,686106016,12),(1680,701830816,11),(1680,717555617,12),(1680,733280417,11),(1680,749005218,12),(1680,764730018,11),(1680,780454819,12),(1680,796179619,11),(1680,811904419,12),(1680,828234020,11),(1680,846378020,12),(1680,859683620,11),(1680,877827621,12),(1680,891133221,11),(1680,909277221,12),(1680,922582822,11),(1680,941331622,12),(1680,954032422,11),(1680,972781222,12),(1680,985482022,11),(1680,1004230822,12),(1680,1017536422,11),(1680,1035680422,12),(1680,1048986022,11),(1680,1067130022,12),(1680,1080435622,11),(1680,1099184422,12),(1680,1111885222,11),(1680,1130634022,12),(1680,1143334823,11),(1680,1162083623,12),(1680,1174784423,11),(1680,1193533223,12),(1680,1206838823,11),(1680,1224982823,12),(1680,1238288424,11),(1680,1256432424,12),(1680,1269738024,11),(1680,1288486824,12),(1680,1301187624,11),(1680,1319936424,12),(1680,1332637224,11),(1680,1351386025,12),(1680,1364691625,11),(1680,1382835625,12),(1680,1396141225,11),(1680,1414285225,12),(1680,1427590825,11),(1680,1445734826,12),(1680,1459040426,11),(1680,1477789226,12),(1680,1490490027,11),(1680,1509238827,12),(1680,1521939627,11),(1680,1540688427,12),(1680,1553994027,11),(1680,1572138027,12),(1680,1585443627,11),(1680,1603587627,12),(1680,1616893227,11),(1680,1635642027,12),(1680,1648342827,11),(1680,1667091627,12),(1680,1679792427,11),(1680,1698541227,12),(1680,1711846827,11),(1680,1729990827,12),(1680,1743296427,11),(1680,1761440427,12),(1680,1774746027,11),(1680,1792890027,12),(1680,1806195627,11),(1680,1824944427,12),(1680,1837645227,11),(1680,1856394027,12),(1680,1869094827,11),(1680,1887843627,12),(1680,1901149227,11),(1680,1919293227,12),(1680,1932598827,11),(1680,1950742827,12),(1680,1964048427,11),(1680,1982797227,12),(1680,1995498027,11),(1680,2014246827,12),(1680,2026947627,11),(1680,2045696427,12),(1680,2058397227,11),(1680,2077146027,12),(1680,2090451627,11),(1680,2108595627,12),(1680,2121901227,11),(1680,2140045227,12),(1681,-2147483648,1),(1681,-905824800,4),(1681,-857257200,2),(1681,-844556400,3),(1681,-828226800,2),(1681,-812502000,3),(1681,-796777200,2),(1681,-788922000,1),(1681,-777942000,3),(1681,-766623600,2),(1681,407199611,1),(1681,417574811,5),(1681,433299612,6),(1681,449024412,5),(1681,465354012,6),(1681,481078812,5),(1681,496803613,6),(1681,512528413,5),(1681,528253213,6),(1681,543978013,5),(1681,559702813,6),(1681,575427614,5),(1681,591152414,6),(1681,606877214,5),(1681,622602014,6),(1681,638326815,5),(1681,654656415,6),(1681,670381216,5),(1681,686106016,6),(1681,701830816,5),(1681,717555617,6),(1681,733280417,5),(1681,749005218,6),(1681,764730018,5),(1681,780454819,6),(1681,796179619,5),(1681,811904419,6),(1681,828234020,5),(1681,846378020,6),(1681,859683620,5),(1681,877827621,6),(1681,891133221,5),(1681,909277221,6),(1681,922582822,5),(1681,941331622,6),(1681,954032422,5),(1681,972781222,6),(1681,985482022,5),(1681,1004230822,6),(1681,1017536422,5),(1681,1035680422,6),(1681,1048986022,5),(1681,1067130022,6),(1681,1080435622,5),(1681,1099184422,6),(1681,1111885222,5),(1681,1130634022,6),(1681,1143334823,5),(1681,1162083623,6),(1681,1174784423,5),(1681,1193533223,6),(1681,1206838823,5),(1681,1224982823,6),(1681,1238288424,5),(1681,1256432424,6),(1681,1269738024,5),(1681,1288486824,6),(1681,1301187624,5),(1681,1319936424,6),(1681,1332637224,5),(1681,1351386025,6),(1681,1364691625,5),(1681,1382835625,6),(1681,1396141225,5),(1681,1414285225,6),(1681,1427590825,5),(1681,1445734826,6),(1681,1459040426,5),(1681,1477789226,6),(1681,1490490027,5),(1681,1509238827,6),(1681,1521939627,5),(1681,1540688427,6),(1681,1553994027,5),(1681,1572138027,6),(1681,1585443627,5),(1681,1603587627,6),(1681,1616893227,5),(1681,1635642027,6),(1681,1648342827,5),(1681,1667091627,6),(1681,1679792427,5),(1681,1698541227,6),(1681,1711846827,5),(1681,1729990827,6),(1681,1743296427,5),(1681,1761440427,6),(1681,1774746027,5),(1681,1792890027,6),(1681,1806195627,5),(1681,1824944427,6),(1681,1837645227,5),(1681,1856394027,6),(1681,1869094827,5),(1681,1887843627,6),(1681,1901149227,5),(1681,1919293227,6),(1681,1932598827,5),(1681,1950742827,6),(1681,1964048427,5),(1681,1982797227,6),(1681,1995498027,5),(1681,2014246827,6),(1681,2026947627,5),(1681,2045696427,6),(1681,2058397227,5),(1681,2077146027,6),(1681,2090451627,5),(1681,2108595627,6),(1681,2121901227,5),(1681,2140045227,6),(1682,-2147483648,2),(1682,-1693706400,1),(1682,-1680483600,2),(1682,-1663455600,3),(1682,-1650150000,4),(1682,-1632006000,3),(1682,-1618700400,4),(1682,-938905200,3),(1682,-857257200,4),(1682,-844556400,3),(1682,-828226800,4),(1682,-812502000,3),(1682,-796777200,4),(1682,-781052400,3),(1682,-777866400,1),(1682,-765327600,4),(1682,-746578800,3),(1682,-733359600,4),(1682,-728517600,5),(1682,-721260000,2),(1682,-716425200,3),(1682,-701910000,4),(1682,-684975600,3),(1682,-670460400,4),(1682,-654217200,3),(1682,-639010800,4),(1682,283993207,2),(1682,291776408,6),(1682,307501208,7),(1682,323830809,6),(1682,338950809,7),(1682,354675609,6),(1682,370400410,7),(1682,386125210,6),(1682,401850011,7),(1682,417574811,6),(1682,433299612,7),(1682,449024412,6),(1682,465354012,7),(1682,481078812,6),(1682,496803613,7),(1682,512528413,6),(1682,528253213,7),(1682,543978013,6),(1682,559702813,7),(1682,575427614,6),(1682,591152414,7),(1682,606877214,6),(1682,622602014,7),(1682,638326815,6),(1682,654656415,7),(1682,670381216,6),(1682,686106016,7),(1682,701830816,6),(1682,717555617,7),(1682,733280417,6),(1682,749005218,7),(1682,764730018,6),(1682,780454819,7),(1682,796179619,6),(1682,811904419,7),(1682,828234020,6),(1682,846378020,7),(1682,859683620,6),(1682,877827621,7),(1682,891133221,6),(1682,909277221,7),(1682,922582822,6),(1682,941331622,7),(1682,954032422,6),(1682,972781222,7),(1682,985482022,6),(1682,1004230822,7),(1682,1017536422,6),(1682,1035680422,7),(1682,1048986022,6),(1682,1067130022,7),(1682,1080435622,6),(1682,1099184422,7),(1682,1111885222,6),(1682,1130634022,7),(1682,1143334823,6),(1682,1162083623,7),(1682,1174784423,6),(1682,1193533223,7),(1682,1206838823,6),(1682,1224982823,7),(1682,1238288424,6),(1682,1256432424,7),(1682,1269738024,6),(1682,1288486824,7),(1682,1301187624,6),(1682,1319936424,7),(1682,1332637224,6),(1682,1351386025,7),(1682,1364691625,6),(1682,1382835625,7),(1682,1396141225,6),(1682,1414285225,7),(1682,1427590825,6),(1682,1445734826,7),(1682,1459040426,6),(1682,1477789226,7),(1682,1490490027,6),(1682,1509238827,7),(1682,1521939627,6),(1682,1540688427,7),(1682,1553994027,6),(1682,1572138027,7),(1682,1585443627,6),(1682,1603587627,7),(1682,1616893227,6),(1682,1635642027,7),(1682,1648342827,6),(1682,1667091627,7),(1682,1679792427,6),(1682,1698541227,7),(1682,1711846827,6),(1682,1729990827,7),(1682,1743296427,6),(1682,1761440427,7),(1682,1774746027,6),(1682,1792890027,7),(1682,1806195627,6),(1682,1824944427,7),(1682,1837645227,6),(1682,1856394027,7),(1682,1869094827,6),(1682,1887843627,7),(1682,1901149227,6),(1682,1919293227,7),(1682,1932598827,6),(1682,1950742827,7),(1682,1964048427,6),(1682,1982797227,7),(1682,1995498027,6),(1682,2014246827,7),(1682,2026947627,6),(1682,2045696427,7),(1682,2058397227,6),(1682,2077146027,7),(1682,2090451627,6),(1682,2108595627,7),(1682,2121901227,6),(1682,2140045227,7),(1683,-2147483648,1),(1683,-1632008194,2),(1683,-1618702594,1),(1683,-1601681794,2),(1683,-1597275394,1),(1683,-1377308194,3),(1683,-928029600,4),(1683,-899521200,7),(1683,-857257200,5),(1683,-844556400,6),(1683,-828226800,5),(1683,-812502000,6),(1683,-796777200,5),(1683,-795834000,4),(1683,354920409,8),(1683,370728010,4),(1683,386456410,8),(1683,402264011,4),(1683,417992411,8),(1683,433800012,4),(1683,449614812,8),(1683,465346812,9),(1683,481071612,10),(1683,496796413,9),(1683,512521213,10),(1683,528246013,9),(1683,543970813,10),(1683,559695613,9),(1683,575420414,10),(1683,591145214,9),(1683,606870014,11),(1683,622598414,12),(1683,638323215,11),(1683,654652815,12),(1683,670377616,11),(1683,686102416,12),(1683,701827216,11),(1683,717552017,12),(1683,733276817,11),(1683,749001618,12),(1683,764726418,11),(1683,780451219,12),(1683,796176019,11),(1683,811900819,12),(1683,828230420,11),(1683,843955220,12),(1683,853797620,3),(1683,859683620,13),(1683,877827621,14),(1683,891133221,13),(1683,909277221,14),(1683,922582822,13),(1683,941331622,14),(1683,951775222,3),(1683,985482022,13),(1683,1004230822,14),(1683,1017536422,13),(1683,1035680422,14),(1683,1048986022,13),(1683,1067130022,14),(1683,1080435622,13),(1683,1099184422,14),(1683,1111885222,13),(1683,1130634022,14),(1683,1143334823,13),(1683,1162083623,14),(1683,1174784423,13),(1683,1193533223,14),(1683,1206838823,13),(1683,1224982823,14),(1683,1238288424,13),(1683,1256432424,14),(1683,1269738024,13),(1683,1288486824,14),(1683,1301187624,13),(1683,1319936424,14),(1683,1332637224,13),(1683,1351386025,14),(1683,1364691625,13),(1683,1382835625,14),(1683,1396141225,13),(1683,1414285225,14),(1683,1427590825,13),(1683,1445734826,14),(1683,1459040426,13),(1683,1477789226,14),(1683,1490490027,13),(1683,1509238827,14),(1683,1521939627,13),(1683,1540688427,14),(1683,1553994027,13),(1683,1572138027,14),(1683,1585443627,13),(1683,1603587627,14),(1683,1616893227,13),(1683,1635642027,14),(1683,1648342827,13),(1683,1667091627,14),(1683,1679792427,13),(1683,1698541227,14),(1683,1711846827,13),(1683,1729990827,14),(1683,1743296427,13),(1683,1761440427,14),(1683,1774746027,13),(1683,1792890027,14),(1683,1806195627,13),(1683,1824944427,14),(1683,1837645227,13),(1683,1856394027,14),(1683,1869094827,13),(1683,1887843627,14),(1683,1901149227,13),(1683,1919293227,14),(1683,1932598827,13),(1683,1950742827,14),(1683,1964048427,13),(1683,1982797227,14),(1683,1995498027,13),(1683,2014246827,14),(1683,2026947627,13),(1683,2045696427,14),(1683,2058397227,13),(1683,2077146027,14),(1683,2090451627,13),(1683,2108595627,14),(1683,2121901227,13),(1683,2140045227,14),(1684,-2147483648,2),(1684,-1690765200,1),(1684,-1680487200,2),(1684,-1664758800,1),(1684,-1648951200,2),(1684,-1635123600,1),(1684,-1616896800,2),(1684,-1604278800,1),(1684,-1585533600,2),(1684,-1571014800,1),(1684,-1555293600,2),(1684,-932432400,1),(1684,-857257200,3),(1684,-844556400,4),(1684,-830311200,1),(1684,-828226800,3),(1684,-812502000,4),(1684,-807156000,1),(1684,-798073200,3),(1684,-781052400,1),(1684,-766717200,2),(1684,-750898800,4),(1684,-733359600,3),(1684,-719456400,4),(1684,-701917200,3),(1684,-689209200,4),(1684,-670460400,3),(1684,-114051600,4),(1684,-103168800,2),(1684,-81997200,4),(1684,-71715600,3),(1684,-50547600,4),(1684,-40266000,3),(1684,-18493200,4),(1684,-8211600,3),(1684,12956400,4),(1684,23238000,3),(1684,43801200,4),(1684,54687600,3),(1684,75855600,4),(1684,86742001,3),(1684,107910002,4),(1684,118191602,3),(1684,138754803,4),(1684,149641203,3),(1684,170809204,4),(1684,181090804,3),(1684,202258805,4),(1684,212540405,3),(1684,233103606,4),(1684,243990006,3),(1684,265158007,4),(1684,276044407,3),(1684,296607608,4),(1684,307494008,3),(1684,315529208,2),(1684,323830809,5),(1684,338950809,6),(1684,354675609,5),(1684,370400410,6),(1684,386125210,5),(1684,401850011,6),(1684,417574811,5),(1684,433299612,6),(1684,449024412,5),(1684,465354012,6),(1684,481078812,5),(1684,496803613,6),(1684,512528413,5),(1684,528253213,6),(1684,543978013,5),(1684,559702813,6),(1684,575427614,5),(1684,591152414,6),(1684,606877214,5),(1684,622602014,6),(1684,638326815,5),(1684,654656415,6),(1684,670381216,5),(1684,686106016,6),(1684,701830816,5),(1684,717555617,6),(1684,733280417,5),(1684,749005218,6),(1684,764730018,5),(1684,780454819,6),(1684,796179619,5),(1684,811904419,6),(1684,828234020,5),(1684,846378020,6),(1684,859683620,5),(1684,877827621,6),(1684,891133221,5),(1684,909277221,6),(1684,922582822,5),(1684,941331622,6),(1684,954032422,5),(1684,972781222,6),(1684,985482022,5),(1684,1004230822,6),(1684,1017536422,5),(1684,1035680422,6),(1684,1048986022,5),(1684,1067130022,6),(1684,1080435622,5),(1684,1099184422,6),(1684,1111885222,5),(1684,1130634022,6),(1684,1143334823,5),(1684,1162083623,6),(1684,1174784423,5),(1684,1193533223,6),(1684,1206838823,5),(1684,1224982823,6),(1684,1238288424,5),(1684,1256432424,6),(1684,1269738024,5),(1684,1288486824,6),(1684,1301187624,5),(1684,1319936424,6),(1684,1332637224,5),(1684,1351386025,6),(1684,1364691625,5),(1684,1382835625,6),(1684,1396141225,5),(1684,1414285225,6),(1684,1427590825,5),(1684,1445734826,6),(1684,1459040426,5),(1684,1477789226,6),(1684,1490490027,5),(1684,1509238827,6),(1684,1521939627,5),(1684,1540688427,6),(1684,1553994027,5),(1684,1572138027,6),(1684,1585443627,5),(1684,1603587627,6),(1684,1616893227,5),(1684,1635642027,6),(1684,1648342827,5),(1684,1667091627,6),(1684,1679792427,5),(1684,1698541227,6),(1684,1711846827,5),(1684,1729990827,6),(1684,1743296427,5),(1684,1761440427,6),(1684,1774746027,5),(1684,1792890027,6),(1684,1806195627,5),(1684,1824944427,6),(1684,1837645227,5),(1684,1856394027,6),(1684,1869094827,5),(1684,1887843627,6),(1684,1901149227,5),(1684,1919293227,6),(1684,1932598827,5),(1684,1950742827,6),(1684,1964048427,5),(1684,1982797227,6),(1684,1995498027,5),(1684,2014246827,6),(1684,2026947627,5),(1684,2045696427,6),(1684,2058397227,5),(1684,2077146027,6),(1684,2090451627,5),(1684,2108595627,6),(1684,2121901227,5),(1684,2140045227,6),(1685,-2147483648,0),(1685,-1593820800,1),(1685,-1247540400,2),(1685,354916809,3),(1685,370724410,2),(1685,386452810,3),(1685,402260411,2),(1685,417988811,3),(1685,433796412,2),(1685,449611212,3),(1685,465343212,4),(1685,481068012,5),(1685,496792813,4),(1685,512517613,5),(1685,528242413,4),(1685,543967213,5),(1685,559692013,4),(1685,575416814,5),(1685,591141614,4),(1685,606866414,6),(1685,622594814,7),(1685,638319615,6),(1685,654649215,7),(1685,670374016,8),(1685,686102416,7),(1685,687916816,2),(1685,701820016,5),(1685,717544817,4),(1685,733269617,5),(1685,748994418,4),(1685,764719218,5),(1685,780444019,4),(1685,796168819,5),(1685,811893619,4),(1685,828223220,5),(1685,846367220,4),(1685,859672820,5),(1685,877816821,4),(1685,891122421,5),(1685,909266421,4),(1685,922572022,5),(1685,941320822,4),(1685,954021622,5),(1685,972770422,4),(1685,985471222,5),(1685,1004220022,4),(1685,1017525622,5),(1685,1035669622,4),(1685,1048975222,5),(1685,1067119222,4),(1685,1080424822,5),(1685,1099173622,4),(1685,1111874422,5),(1685,1130623222,4),(1685,1143324023,5),(1685,1162072823,4),(1685,1174773623,5),(1685,1193522423,4),(1685,1206828023,5),(1685,1224972023,4),(1685,1238277624,5),(1685,1256421624,4),(1685,1269727224,6),(1685,1288479624,7),(1685,1301180424,4),(1686,-2147483648,2),(1686,-1690765200,1),(1686,-1680487200,2),(1686,-1664758800,1),(1686,-1648951200,2),(1686,-1635123600,1),(1686,-1616896800,2),(1686,-1604278800,1),(1686,-1585533600,2),(1686,-1571014800,1),(1686,-1555293600,2),(1686,-932432400,1),(1686,-857257200,3),(1686,-844556400,4),(1686,-830311200,1),(1686,-828226800,3),(1686,-812502000,4),(1686,-807156000,1),(1686,-798073200,3),(1686,-781052400,1),(1686,-766717200,2),(1686,-750898800,4),(1686,-733359600,3),(1686,-719456400,4),(1686,-701917200,3),(1686,-689209200,4),(1686,-670460400,3),(1686,-114051600,4),(1686,-103168800,2),(1686,-81997200,4),(1686,-71715600,3),(1686,-50547600,4),(1686,-40266000,3),(1686,-18493200,4),(1686,-8211600,3),(1686,12956400,4),(1686,23238000,3),(1686,43801200,4),(1686,54687600,3),(1686,75855600,4),(1686,86742001,3),(1686,107910002,4),(1686,118191602,3),(1686,138754803,4),(1686,149641203,3),(1686,170809204,4),(1686,181090804,3),(1686,202258805,4),(1686,212540405,3),(1686,233103606,4),(1686,243990006,3),(1686,265158007,4),(1686,276044407,3),(1686,296607608,4),(1686,307494008,3),(1686,315529208,2),(1686,323830809,5),(1686,338950809,6),(1686,354675609,5),(1686,370400410,6),(1686,386125210,5),(1686,401850011,6),(1686,417574811,5),(1686,433299612,6),(1686,449024412,5),(1686,465354012,6),(1686,481078812,5),(1686,496803613,6),(1686,512528413,5),(1686,528253213,6),(1686,543978013,5),(1686,559702813,6),(1686,575427614,5),(1686,591152414,6),(1686,606877214,5),(1686,622602014,6),(1686,638326815,5),(1686,654656415,6),(1686,670381216,5),(1686,686106016,6),(1686,701830816,5),(1686,717555617,6),(1686,733280417,5),(1686,749005218,6),(1686,764730018,5),(1686,780454819,6),(1686,796179619,5),(1686,811904419,6),(1686,828234020,5),(1686,846378020,6),(1686,859683620,5),(1686,877827621,6),(1686,891133221,5),(1686,909277221,6),(1686,922582822,5),(1686,941331622,6),(1686,954032422,5),(1686,972781222,6),(1686,985482022,5),(1686,1004230822,6),(1686,1017536422,5),(1686,1035680422,6),(1686,1048986022,5),(1686,1067130022,6),(1686,1080435622,5),(1686,1099184422,6),(1686,1111885222,5),(1686,1130634022,6),(1686,1143334823,5),(1686,1162083623,6),(1686,1174784423,5),(1686,1193533223,6),(1686,1206838823,5),(1686,1224982823,6),(1686,1238288424,5),(1686,1256432424,6),(1686,1269738024,5),(1686,1288486824,6),(1686,1301187624,5),(1686,1319936424,6),(1686,1332637224,5),(1686,1351386025,6),(1686,1364691625,5),(1686,1382835625,6),(1686,1396141225,5),(1686,1414285225,6),(1686,1427590825,5),(1686,1445734826,6),(1686,1459040426,5),(1686,1477789226,6),(1686,1490490027,5),(1686,1509238827,6),(1686,1521939627,5),(1686,1540688427,6),(1686,1553994027,5),(1686,1572138027,6),(1686,1585443627,5),(1686,1603587627,6),(1686,1616893227,5),(1686,1635642027,6),(1686,1648342827,5),(1686,1667091627,6),(1686,1679792427,5),(1686,1698541227,6),(1686,1711846827,5),(1686,1729990827,6),(1686,1743296427,5),(1686,1761440427,6),(1686,1774746027,5),(1686,1792890027,6),(1686,1806195627,5),(1686,1824944427,6),(1686,1837645227,5),(1686,1856394027,6),(1686,1869094827,5),(1686,1887843627,6),(1686,1901149227,5),(1686,1919293227,6),(1686,1932598827,5),(1686,1950742827,6),(1686,1964048427,5),(1686,1982797227,6),(1686,1995498027,5),(1686,2014246827,6),(1686,2026947627,5),(1686,2045696427,6),(1686,2058397227,5),(1686,2077146027,6),(1686,2090451627,5),(1686,2108595627,6),(1686,2121901227,5),(1686,2140045227,6),(1687,-2147483648,1),(1687,-905824800,4),(1687,-857257200,2),(1687,-844556400,3),(1687,-828226800,2),(1687,-812502000,3),(1687,-796777200,2),(1687,-788922000,1),(1687,-777942000,3),(1687,-766623600,2),(1687,407199611,1),(1687,417574811,5),(1687,433299612,6),(1687,449024412,5),(1687,465354012,6),(1687,481078812,5),(1687,496803613,6),(1687,512528413,5),(1687,528253213,6),(1687,543978013,5),(1687,559702813,6),(1687,575427614,5),(1687,591152414,6),(1687,606877214,5),(1687,622602014,6),(1687,638326815,5),(1687,654656415,6),(1687,670381216,5),(1687,686106016,6),(1687,701830816,5),(1687,717555617,6),(1687,733280417,5),(1687,749005218,6),(1687,764730018,5),(1687,780454819,6),(1687,796179619,5),(1687,811904419,6),(1687,828234020,5),(1687,846378020,6),(1687,859683620,5),(1687,877827621,6),(1687,891133221,5),(1687,909277221,6),(1687,922582822,5),(1687,941331622,6),(1687,954032422,5),(1687,972781222,6),(1687,985482022,5),(1687,1004230822,6),(1687,1017536422,5),(1687,1035680422,6),(1687,1048986022,5),(1687,1067130022,6),(1687,1080435622,5),(1687,1099184422,6),(1687,1111885222,5),(1687,1130634022,6),(1687,1143334823,5),(1687,1162083623,6),(1687,1174784423,5),(1687,1193533223,6),(1687,1206838823,5),(1687,1224982823,6),(1687,1238288424,5),(1687,1256432424,6),(1687,1269738024,5),(1687,1288486824,6),(1687,1301187624,5),(1687,1319936424,6),(1687,1332637224,5),(1687,1351386025,6),(1687,1364691625,5),(1687,1382835625,6),(1687,1396141225,5),(1687,1414285225,6),(1687,1427590825,5),(1687,1445734826,6),(1687,1459040426,5),(1687,1477789226,6),(1687,1490490027,5),(1687,1509238827,6),(1687,1521939627,5),(1687,1540688427,6),(1687,1553994027,5),(1687,1572138027,6),(1687,1585443627,5),(1687,1603587627,6),(1687,1616893227,5),(1687,1635642027,6),(1687,1648342827,5),(1687,1667091627,6),(1687,1679792427,5),(1687,1698541227,6),(1687,1711846827,5),(1687,1729990827,6),(1687,1743296427,5),(1687,1761440427,6),(1687,1774746027,5),(1687,1792890027,6),(1687,1806195627,5),(1687,1824944427,6),(1687,1837645227,5),(1687,1856394027,6),(1687,1869094827,5),(1687,1887843627,6),(1687,1901149227,5),(1687,1919293227,6),(1687,1932598827,5),(1687,1950742827,6),(1687,1964048427,5),(1687,1982797227,6),(1687,1995498027,5),(1687,2014246827,6),(1687,2026947627,5),(1687,2045696427,6),(1687,2058397227,5),(1687,2077146027,6),(1687,2090451627,5),(1687,2108595627,6),(1687,2121901227,5),(1687,2140045227,6),(1688,-2147483648,0),(1688,-1593820800,1),(1688,-1247540400,3),(1688,354916809,2),(1688,370724410,3),(1688,386452810,2),(1688,402260411,3),(1688,417988811,2),(1688,433796412,3),(1688,449611212,2),(1688,465343212,4),(1688,481068012,5),(1688,496792813,4),(1688,512517613,5),(1688,528242413,4),(1688,543967213,5),(1688,559692013,4),(1688,575416814,6),(1688,591145214,7),(1688,606870014,6),(1688,622594814,7),(1688,638319615,6),(1688,654649215,7),(1688,670374016,4),(1688,701820016,6),(1688,717548417,7),(1688,733273217,6),(1688,748998018,7),(1688,764722818,6),(1688,780447619,7),(1688,796172419,6),(1688,811897219,7),(1688,828226820,6),(1688,846370820,7),(1688,859676420,6),(1688,877820421,7),(1688,891126021,6),(1688,909270021,7),(1688,922575622,6),(1688,941324422,7),(1688,954025222,6),(1688,972774022,7),(1688,985474822,6),(1688,1004223622,7),(1688,1017529222,6),(1688,1035673222,7),(1688,1048978822,6),(1688,1067122822,7),(1688,1080428422,6),(1688,1099177222,7),(1688,1111878022,6),(1688,1130626822,7),(1688,1143327623,6),(1688,1162076423,7),(1688,1174777223,6),(1688,1193526023,7),(1688,1206831623,6),(1688,1224975623,7),(1688,1238281224,6),(1688,1256425224,7),(1688,1269730824,6),(1688,1288479624,7),(1688,1301180424,4),(1688,1414274425,7),(1688,1480806026,4),(1689,-2147483648,1),(1689,-1441160160,2),(1689,-1247536800,3),(1689,-888894000,6),(1689,-857257200,4),(1689,-844556400,5),(1689,-828226800,4),(1689,-812502000,5),(1689,-811648800,3),(1689,354920409,7),(1689,370728010,3),(1689,386456410,7),(1689,402264011,3),(1689,417992411,7),(1689,433800012,3),(1689,449614812,7),(1689,465346812,8),(1689,481071612,9),(1689,496796413,8),(1689,512521213,9),(1689,528246013,8),(1689,543970813,9),(1689,559695613,8),(1689,575420414,9),(1689,591145214,8),(1689,606870014,9),(1689,622594814,8),(1689,631141214,3),(1689,646786815,2),(1689,701820016,10),(1689,717541217,2),(1689,733269617,10),(1689,748990818,2),(1689,764719218,10),(1689,767739618,7),(1689,780436819,3),(1689,796165219,7),(1689,811886419,3),(1689,828219620,9),(1689,846374420,8),(1689,852066020,3),(1689,859683620,11),(1689,877827621,12),(1689,891133221,11),(1689,909277221,12),(1689,922582822,11),(1689,941331622,12),(1689,954032422,11),(1689,972781222,12),(1689,985482022,11),(1689,1004230822,12),(1689,1017536422,11),(1689,1035680422,12),(1689,1048986022,11),(1689,1067130022,12),(1689,1080435622,11),(1689,1099184422,12),(1689,1111885222,11),(1689,1130634022,12),(1689,1143334823,11),(1689,1162083623,12),(1689,1174784423,11),(1689,1193533223,12),(1689,1206838823,11),(1689,1224982823,12),(1689,1238288424,11),(1689,1256432424,12),(1689,1269738024,11),(1689,1288486824,12),(1689,1301187624,11),(1689,1319936424,12),(1689,1332637224,11),(1689,1351386025,12),(1689,1364691625,11),(1689,1382835625,12),(1689,1396137625,13),(1689,1414274425,8),(1690,-2147483648,1),(1690,-905824800,4),(1690,-857257200,2),(1690,-844556400,3),(1690,-828226800,2),(1690,-812502000,3),(1690,-796777200,2),(1690,-788922000,1),(1690,-777942000,3),(1690,-766623600,2),(1690,407199611,1),(1690,417574811,5),(1690,433299612,6),(1690,449024412,5),(1690,465354012,6),(1690,481078812,5),(1690,496803613,6),(1690,512528413,5),(1690,528253213,6),(1690,543978013,5),(1690,559702813,6),(1690,575427614,5),(1690,591152414,6),(1690,606877214,5),(1690,622602014,6),(1690,638326815,5),(1690,654656415,6),(1690,670381216,5),(1690,686106016,6),(1690,701830816,5),(1690,717555617,6),(1690,733280417,5),(1690,749005218,6),(1690,764730018,5),(1690,780454819,6),(1690,796179619,5),(1690,811904419,6),(1690,828234020,5),(1690,846378020,6),(1690,859683620,5),(1690,877827621,6),(1690,891133221,5),(1690,909277221,6),(1690,922582822,5),(1690,941331622,6),(1690,954032422,5),(1690,972781222,6),(1690,985482022,5),(1690,1004230822,6),(1690,1017536422,5),(1690,1035680422,6),(1690,1048986022,5),(1690,1067130022,6),(1690,1080435622,5),(1690,1099184422,6),(1690,1111885222,5),(1690,1130634022,6),(1690,1143334823,5),(1690,1162083623,6),(1690,1174784423,5),(1690,1193533223,6),(1690,1206838823,5),(1690,1224982823,6),(1690,1238288424,5),(1690,1256432424,6),(1690,1269738024,5),(1690,1288486824,6),(1690,1301187624,5),(1690,1319936424,6),(1690,1332637224,5),(1690,1351386025,6),(1690,1364691625,5),(1690,1382835625,6),(1690,1396141225,5),(1690,1414285225,6),(1690,1427590825,5),(1690,1445734826,6),(1690,1459040426,5),(1690,1477789226,6),(1690,1490490027,5),(1690,1509238827,6),(1690,1521939627,5),(1690,1540688427,6),(1690,1553994027,5),(1690,1572138027,6),(1690,1585443627,5),(1690,1603587627,6),(1690,1616893227,5),(1690,1635642027,6),(1690,1648342827,5),(1690,1667091627,6),(1690,1679792427,5),(1690,1698541227,6),(1690,1711846827,5),(1690,1729990827,6),(1690,1743296427,5),(1690,1761440427,6),(1690,1774746027,5),(1690,1792890027,6),(1690,1806195627,5),(1690,1824944427,6),(1690,1837645227,5),(1690,1856394027,6),(1690,1869094827,5),(1690,1887843627,6),(1690,1901149227,5),(1690,1919293227,6),(1690,1932598827,5),(1690,1950742827,6),(1690,1964048427,5),(1690,1982797227,6),(1690,1995498027,5),(1690,2014246827,6),(1690,2026947627,5),(1690,2045696427,6),(1690,2058397227,5),(1690,2077146027,6),(1690,2090451627,5),(1690,2108595627,6),(1690,2121901227,5),(1690,2140045227,6),(1691,-2147483648,1),(1691,-857257200,2),(1691,-844556400,3),(1691,-828226800,2),(1691,-812502000,3),(1691,-796777200,2),(1691,-788922000,4),(1691,-781048800,1),(1691,291762008,5),(1691,307576808,1),(1691,323816409,5),(1691,339026409,1),(1691,355266009,5),(1691,370393210,1),(1691,386715610,5),(1691,401846411,6),(1691,417571211,7),(1691,433296012,6),(1691,449020812,7),(1691,465350412,6),(1691,481075212,7),(1691,496800013,6),(1691,512524813,7),(1691,528249613,6),(1691,543974413,7),(1691,559699213,6),(1691,575424014,7),(1691,591148814,6),(1691,606873614,7),(1691,622598414,6),(1691,638323215,7),(1691,654652815,6),(1691,662680815,1),(1691,670370416,5),(1691,686091616,1),(1691,701820016,5),(1691,717541217,1),(1691,733269617,5),(1691,748990818,1),(1691,764719218,5),(1691,780440419,1),(1691,796168819,5),(1691,811890019,1),(1691,828223220,5),(1691,846363620,1),(1691,859683620,8),(1691,877827621,9),(1691,891133221,8),(1691,909277221,9),(1691,922582822,8),(1691,941331622,9),(1691,954032422,8),(1691,972781222,9),(1691,985482022,8),(1691,1004230822,9),(1691,1017536422,8),(1691,1035680422,9),(1691,1048986022,8),(1691,1067130022,9),(1691,1080435622,8),(1691,1099184422,9),(1691,1111885222,8),(1691,1130634022,9),(1691,1143334823,8),(1691,1162083623,9),(1691,1174784423,8),(1691,1193533223,9),(1691,1206838823,8),(1691,1224982823,9),(1691,1238288424,8),(1691,1256432424,9),(1691,1269738024,8),(1691,1288486824,9),(1691,1301187624,8),(1691,1319936424,9),(1691,1332637224,8),(1691,1351386025,9),(1691,1364691625,8),(1691,1382835625,9),(1691,1396141225,8),(1691,1414285225,9),(1691,1427590825,8),(1691,1445734826,9),(1691,1459040426,8),(1691,1477789226,9),(1691,1490490027,8),(1691,1509238827,9),(1691,1521939627,8),(1691,1540688427,9),(1691,1553994027,8),(1691,1572138027,9),(1691,1585443627,8),(1691,1603587627,9),(1691,1616893227,8),(1691,1635642027,9),(1691,1648342827,8),(1691,1667091627,9),(1691,1679792427,8),(1691,1698541227,9),(1691,1711846827,8),(1691,1729990827,9),(1691,1743296427,8),(1691,1761440427,9),(1691,1774746027,8),(1691,1792890027,9),(1691,1806195627,8),(1691,1824944427,9),(1691,1837645227,8),(1691,1856394027,9),(1691,1869094827,8),(1691,1887843627,9),(1691,1901149227,8),(1691,1919293227,9),(1691,1932598827,8),(1691,1950742827,9),(1691,1964048427,8),(1691,1982797227,9),(1691,1995498027,8),(1691,2014246827,9),(1691,2026947627,8),(1691,2045696427,9),(1691,2058397227,8),(1691,2077146027,9),(1691,2090451627,8),(1691,2108595627,9),(1691,2121901227,8),(1691,2140045227,9),(1692,-2147483648,1),(1692,-1692496800,2),(1692,-1680483600,1),(1692,323830809,3),(1692,338950809,4),(1692,354675609,3),(1692,370400410,4),(1692,386125210,3),(1692,401850011,4),(1692,417574811,3),(1692,433299612,4),(1692,449024412,3),(1692,465354012,4),(1692,481078812,3),(1692,496803613,4),(1692,512528413,3),(1692,528253213,4),(1692,543978013,3),(1692,559702813,4),(1692,575427614,3),(1692,591152414,4),(1692,606877214,3),(1692,622602014,4),(1692,638326815,3),(1692,654656415,4),(1692,670381216,3),(1692,686106016,4),(1692,701830816,3),(1692,717555617,4),(1692,733280417,3),(1692,749005218,4),(1692,764730018,3),(1692,780454819,4),(1692,796179619,3),(1692,811904419,4),(1692,828234020,3),(1692,846378020,4),(1692,859683620,3),(1692,877827621,4),(1692,891133221,3),(1692,909277221,4),(1692,922582822,3),(1692,941331622,4),(1692,954032422,3),(1692,972781222,4),(1692,985482022,3),(1692,1004230822,4),(1692,1017536422,3),(1692,1035680422,4),(1692,1048986022,3),(1692,1067130022,4),(1692,1080435622,3),(1692,1099184422,4),(1692,1111885222,3),(1692,1130634022,4),(1692,1143334823,3),(1692,1162083623,4),(1692,1174784423,3),(1692,1193533223,4),(1692,1206838823,3),(1692,1224982823,4),(1692,1238288424,3),(1692,1256432424,4),(1692,1269738024,3),(1692,1288486824,4),(1692,1301187624,3),(1692,1319936424,4),(1692,1332637224,3),(1692,1351386025,4),(1692,1364691625,3),(1692,1382835625,4),(1692,1396141225,3),(1692,1414285225,4),(1692,1427590825,3),(1692,1445734826,4),(1692,1459040426,3),(1692,1477789226,4),(1692,1490490027,3),(1692,1509238827,4),(1692,1521939627,3),(1692,1540688427,4),(1692,1553994027,3),(1692,1572138027,4),(1692,1585443627,3),(1692,1603587627,4),(1692,1616893227,3),(1692,1635642027,4),(1692,1648342827,3),(1692,1667091627,4),(1692,1679792427,3),(1692,1698541227,4),(1692,1711846827,3),(1692,1729990827,4),(1692,1743296427,3),(1692,1761440427,4),(1692,1774746027,3),(1692,1792890027,4),(1692,1806195627,3),(1692,1824944427,4),(1692,1837645227,3),(1692,1856394027,4),(1692,1869094827,3),(1692,1887843627,4),(1692,1901149227,3),(1692,1919293227,4),(1692,1932598827,3),(1692,1950742827,4),(1692,1964048427,3),(1692,1982797227,4),(1692,1995498027,3),(1692,2014246827,4),(1692,2026947627,3),(1692,2045696427,4),(1692,2058397227,3),(1692,2077146027,4),(1692,2090451627,3),(1692,2108595627,4),(1692,2121901227,3),(1692,2140045227,4),(1693,-2147483648,1),(1693,-1638322740,4),(1693,-1632006000,2),(1693,-1618700400,3),(1693,-1593824400,1),(1693,-1535938740,5),(1693,-927943200,6),(1693,-892954800,7),(1693,-857257200,3),(1693,-844556400,2),(1693,-828226800,3),(1693,-812502000,2),(1693,-797652000,6),(1693,354920409,8),(1693,370728010,6),(1693,386456410,8),(1693,402264011,6),(1693,417992411,8),(1693,433800012,6),(1693,449614812,8),(1693,465346812,9),(1693,481071612,10),(1693,496796413,9),(1693,512521213,10),(1693,528246013,9),(1693,543970813,10),(1693,559695613,9),(1693,575420414,10),(1693,591145214,9),(1693,606870014,11),(1693,622598414,12),(1693,638323215,11),(1693,654652815,12),(1693,670377616,11),(1693,686102416,12),(1693,701827216,11),(1693,717552017,12),(1693,733276817,11),(1693,749001618,12),(1693,764726418,11),(1693,780451219,12),(1693,796176019,11),(1693,811900819,12),(1693,828230420,11),(1693,846374420,12),(1693,859680020,11),(1693,877824021,12),(1693,891129621,11),(1693,906411621,15),(1693,909277221,13),(1693,922582822,14),(1693,941331622,5),(1693,1017536422,14),(1693,1035680422,13),(1693,1048986022,14),(1693,1067130022,13),(1693,1080435622,14),(1693,1099184422,13),(1693,1111885222,14),(1693,1130634022,13),(1693,1143334823,14),(1693,1162083623,13),(1693,1174784423,14),(1693,1193533223,13),(1693,1206838823,14),(1693,1224982823,13),(1693,1238288424,14),(1693,1256432424,13),(1693,1269738024,14),(1693,1288486824,13),(1693,1301187624,14),(1693,1319936424,13),(1693,1332637224,14),(1693,1351386025,13),(1693,1364691625,14),(1693,1382835625,13),(1693,1396141225,14),(1693,1414285225,13),(1693,1427590825,14),(1693,1445734826,13),(1693,1459040426,14),(1693,1477789226,13),(1693,1490490027,14),(1693,1509238827,13),(1693,1521939627,14),(1693,1540688427,13),(1693,1553994027,14),(1693,1572138027,13),(1693,1585443627,14),(1693,1603587627,13),(1693,1616893227,14),(1693,1635642027,13),(1693,1648342827,14),(1693,1667091627,13),(1693,1679792427,14),(1693,1698541227,13),(1693,1711846827,14),(1693,1729990827,13),(1693,1743296427,14),(1693,1761440427,13),(1693,1774746027,14),(1693,1792890027,13),(1693,1806195627,14),(1693,1824944427,13),(1693,1837645227,14),(1693,1856394027,13),(1693,1869094827,14),(1693,1887843627,13),(1693,1901149227,14),(1693,1919293227,13),(1693,1932598827,14),(1693,1950742827,13),(1693,1964048427,14),(1693,1982797227,13),(1693,1995498027,14),(1693,2014246827,13),(1693,2026947627,14),(1693,2045696427,13),(1693,2058397227,14),(1693,2077146027,13),(1693,2090451627,14),(1693,2108595627,13),(1693,2121901227,14),(1693,2140045227,13),(1694,-2147483648,0),(1694,-1767230360,1),(1694,-932346000,2),(1694,-857257200,1),(1694,-844556400,2),(1694,-843519600,1),(1694,136854003,2),(1694,149896803,1),(1694,168130804,2),(1694,181432804,1),(1694,199839605,2),(1694,213141605,1),(1694,231894006,2),(1694,244591206,1),(1694,263257207,2),(1694,276040807,1),(1694,294706808,2),(1694,307490408,1),(1694,326156409,2),(1694,339458409,1),(1694,357087609,2),(1694,370389610,1),(1694,389142010,2),(1694,402444011,1),(1694,419468411,2),(1694,433807212,1),(1694,449622012,2),(1694,465354012,3),(1694,481078812,4),(1694,496803613,3),(1694,512528413,4),(1694,528253213,3),(1694,543978013,4),(1694,559702813,3),(1694,575427614,4),(1694,591152414,3),(1694,606877214,4),(1694,622602014,3),(1694,638326815,4),(1694,654656415,3),(1694,670381216,4),(1694,686106016,3),(1694,701830816,4),(1694,717555617,3),(1694,733280417,4),(1694,749005218,3),(1694,764730018,4),(1694,780454819,3),(1694,796179619,4),(1694,811904419,3),(1694,828234020,4),(1694,846378020,3),(1694,859683620,4),(1694,877827621,3),(1694,891133221,4),(1694,909277221,3),(1694,922582822,4),(1694,941331622,3),(1694,954032422,4),(1694,972781222,3),(1694,985482022,4),(1694,1004230822,3),(1694,1017536422,4),(1694,1035680422,3),(1694,1048986022,4),(1694,1067130022,3),(1694,1080435622,4),(1694,1099184422,3),(1694,1111885222,4),(1694,1130634022,3),(1694,1143334823,4),(1694,1162083623,3),(1694,1174784423,4),(1694,1193533223,3),(1694,1206838823,4),(1694,1224982823,3),(1694,1238288424,4),(1694,1256432424,3),(1694,1269738024,4),(1694,1288486824,3),(1694,1301187624,4),(1694,1319936424,3),(1694,1332637224,4),(1694,1351386025,3),(1694,1364691625,4),(1694,1382835625,3),(1694,1396141225,4),(1694,1414285225,3),(1694,1427590825,4),(1694,1445734826,3),(1694,1459040426,4),(1694,1477789226,3),(1694,1490490027,4),(1694,1509238827,3),(1694,1521939627,4),(1694,1540688427,3),(1694,1553994027,4),(1694,1572138027,3),(1694,1585443627,4),(1694,1603587627,3),(1694,1616893227,4),(1694,1635642027,3),(1694,1648342827,4),(1694,1667091627,3),(1694,1679792427,4),(1694,1698541227,3),(1694,1711846827,4),(1694,1729990827,3),(1694,1743296427,4),(1694,1761440427,3),(1694,1774746027,4),(1694,1792890027,3),(1694,1806195627,4),(1694,1824944427,3),(1694,1837645227,4),(1694,1856394027,3),(1694,1869094827,4),(1694,1887843627,3),(1694,1901149227,4),(1694,1919293227,3),(1694,1932598827,4),(1694,1950742827,3),(1694,1964048427,4),(1694,1982797227,3),(1694,1995498027,4),(1694,2014246827,3),(1694,2026947627,4),(1694,2045696427,3),(1694,2058397227,4),(1694,2077146027,3),(1694,2090451627,4),(1694,2108595627,3),(1694,2121901227,4),(1694,2140045227,3),(1695,-2147483648,1),(1695,-1637114100,2),(1695,-1213148664,5),(1695,-1187056800,3),(1695,-1175479200,4),(1695,-1159754400,3),(1695,-1144029600,4),(1695,-1127700000,3),(1695,-1111975200,4),(1695,-1096250400,3),(1695,-1080525600,4),(1695,-1064800800,3),(1695,-1049076000,4),(1695,-1033351200,3),(1695,-1017626400,4),(1695,-1001901600,3),(1695,-986176800,4),(1695,-970452000,3),(1695,-954727200,4),(1695,-927165600,6),(1695,-898138800,9),(1695,-857257200,7),(1695,-844556400,8),(1695,-828226800,7),(1695,-812502000,8),(1695,-800157600,11),(1695,354920409,10),(1695,370728010,11),(1695,386456410,10),(1695,402264011,11),(1695,417992411,10),(1695,433800012,11),(1695,449614812,10),(1695,465346812,12),(1695,481071612,13),(1695,496796413,12),(1695,512521213,13),(1695,528246013,12),(1695,543970813,13),(1695,559695613,12),(1695,575420414,13),(1695,591145214,12),(1695,606870014,13),(1695,622594814,12),(1695,638319615,13),(1695,641944815,6),(1695,654652815,4),(1695,670377616,3),(1695,686102416,4),(1695,694216816,5),(1695,701820016,6),(1695,717541217,5),(1695,733269617,6),(1695,748990818,5),(1695,764719218,6),(1695,780440419,5),(1695,796168819,6),(1695,811890019,5),(1695,828223220,6),(1695,846363620,5),(1695,859680020,6),(1695,877824021,5),(1695,891129621,6),(1695,909273621,5),(1695,922579222,6),(1695,941328022,5),(1695,954028822,6),(1695,972777622,5),(1695,985478422,6),(1695,1004227222,5),(1695,1017532822,6),(1695,1035676822,5),(1695,1048982422,6),(1695,1067126422,5),(1695,1080432022,6),(1695,1099180822,5),(1695,1111881622,6),(1695,1130630422,5),(1695,1143331223,6),(1695,1162080023,5),(1695,1174780823,6),(1695,1193529623,5),(1695,1206835223,6),(1695,1224979223,5),(1695,1238284824,6),(1695,1256428824,5),(1695,1269734424,6),(1695,1288483224,5),(1695,1301184024,6),(1695,1319932824,5),(1695,1332633624,6),(1695,1351382425,5),(1695,1364688025,6),(1695,1382832025,5),(1695,1396137625,6),(1695,1414281625,5),(1695,1427587225,6),(1695,1445731226,5),(1695,1459036826,6),(1695,1477785626,5),(1695,1490486427,6),(1695,1509235227,5),(1695,1521936027,6),(1695,1540684827,5),(1695,1553990427,6),(1695,1572134427,5),(1695,1585440027,6),(1695,1603584027,5),(1695,1616889627,6),(1695,1635638427,5),(1695,1648339227,6),(1695,1667088027,5),(1695,1679788827,6),(1695,1698537627,5),(1695,1711843227,6),(1695,1729987227,5),(1695,1743292827,6),(1695,1761436827,5),(1695,1774742427,6),(1695,1792886427,5),(1695,1806192027,6),(1695,1824940827,5),(1695,1837641627,6),(1695,1856390427,5),(1695,1869091227,6),(1695,1887840027,5),(1695,1901145627,6),(1695,1919289627,5),(1695,1932595227,6),(1695,1950739227,5),(1695,1964044827,6),(1695,1982793627,5),(1695,1995494427,6),(1695,2014243227,5),(1695,2026944027,6),(1695,2045692827,5),(1695,2058393627,6),(1695,2077142427,5),(1695,2090448027,6),(1695,2108592027,5),(1695,2121897627,6),(1695,2140041627,5),(1696,-2147483648,0),(1696,-1593820800,1),(1696,-1247540400,3),(1696,354916809,2),(1696,370724410,3),(1696,386452810,2),(1696,402260411,3),(1696,417988811,2),(1696,433796412,3),(1696,449611212,2),(1696,465343212,4),(1696,481068012,5),(1696,496792813,4),(1696,512517613,5),(1696,528242413,4),(1696,543967213,5),(1696,559692013,4),(1696,575416814,5),(1696,591141614,4),(1696,606866414,6),(1696,622594814,7),(1696,638319615,6),(1696,654649215,7),(1696,670374016,8),(1696,686102416,9),(1696,695779216,7),(1696,701823616,6),(1696,717548417,7),(1696,733273217,6),(1696,748998018,7),(1696,764722818,6),(1696,780447619,7),(1696,796172419,6),(1696,811897219,7),(1696,828226820,6),(1696,846370820,7),(1696,859676420,6),(1696,877820421,7),(1696,891126021,6),(1696,909270021,7),(1696,922575622,6),(1696,941324422,7),(1696,954025222,6),(1696,972774022,7),(1696,985474822,6),(1696,1004223622,7),(1696,1017529222,6),(1696,1035673222,7),(1696,1048978822,6),(1696,1067122822,7),(1696,1080428422,6),(1696,1099177222,7),(1696,1111878022,6),(1696,1130626822,7),(1696,1143327623,6),(1696,1162076423,7),(1696,1174777223,6),(1696,1193526023,7),(1696,1206831623,6),(1696,1224975623,7),(1696,1238281224,6),(1696,1256425224,7),(1696,1269730824,6),(1696,1288479624,7),(1696,1301180424,4),(1696,1414274425,7),(1696,1459033226,4),(1697,-2147483648,1),(1697,-938905200,2),(1697,-857257200,3),(1697,-844556400,2),(1697,-828226800,3),(1697,-812502000,2),(1697,-796874400,4),(1697,-794714400,1),(1697,-773456400,6),(1697,354920409,5),(1697,370728010,6),(1697,386456410,5),(1697,402264011,6),(1697,417992411,5),(1697,433800012,6),(1697,449614812,5),(1697,465346812,7),(1697,481071612,8),(1697,496796413,7),(1697,512521213,8),(1697,528246013,7),(1697,543970813,8),(1697,559695613,7),(1697,575420414,8),(1697,591145214,7),(1697,606870014,8),(1697,622594814,7),(1697,631141214,6),(1697,646786815,1),(1697,670384816,9),(1697,701820016,10),(1697,717541217,9),(1697,733269617,10),(1697,748990818,9),(1697,764719218,10),(1697,780440419,9),(1697,796179619,11),(1697,811904419,12),(1697,828234020,11),(1697,846378020,12),(1697,859683620,11),(1697,877827621,12),(1697,891133221,11),(1697,909277221,12),(1697,922582822,11),(1697,941331622,12),(1697,954032422,11),(1697,972781222,12),(1697,985482022,11),(1697,1004230822,12),(1697,1017536422,11),(1697,1035680422,12),(1697,1048986022,11),(1697,1067130022,12),(1697,1080435622,11),(1697,1099184422,12),(1697,1111885222,11),(1697,1130634022,12),(1697,1143334823,11),(1697,1162083623,12),(1697,1174784423,11),(1697,1193533223,12),(1697,1206838823,11),(1697,1224982823,12),(1697,1238288424,11),(1697,1256432424,12),(1697,1269738024,11),(1697,1288486824,12),(1697,1301187624,11),(1697,1319936424,12),(1697,1332637224,11),(1697,1351386025,12),(1697,1364691625,11),(1697,1382835625,12),(1697,1396141225,11),(1697,1414285225,12),(1697,1427590825,11),(1697,1445734826,12),(1697,1459040426,11),(1697,1477789226,12),(1697,1490490027,11),(1697,1509238827,12),(1697,1521939627,11),(1697,1540688427,12),(1697,1553994027,11),(1697,1572138027,12),(1697,1585443627,11),(1697,1603587627,12),(1697,1616893227,11),(1697,1635642027,12),(1697,1648342827,11),(1697,1667091627,12),(1697,1679792427,11),(1697,1698541227,12),(1697,1711846827,11),(1697,1729990827,12),(1697,1743296427,11),(1697,1761440427,12),(1697,1774746027,11),(1697,1792890027,12),(1697,1806195627,11),(1697,1824944427,12),(1697,1837645227,11),(1697,1856394027,12),(1697,1869094827,11),(1697,1887843627,12),(1697,1901149227,11),(1697,1919293227,12),(1697,1932598827,11),(1697,1950742827,12),(1697,1964048427,11),(1697,1982797227,12),(1697,1995498027,11),(1697,2014246827,12),(1697,2026947627,11),(1697,2045696427,12),(1697,2058397227,11),(1697,2077146027,12),(1697,2090451627,11),(1697,2108595627,12),(1697,2121901227,11),(1697,2140045227,12),(1698,-2147483648,2),(1698,-904435200,1),(1698,-891129600,2),(1698,-872985600,1),(1698,-859680000,2),(1698,354675609,3),(1698,370400410,4),(1698,386125210,3),(1698,401850011,4),(1698,417574811,3),(1698,433299612,4),(1698,449024412,3),(1698,465354012,4),(1698,481078812,3),(1698,496803613,4),(1698,512528413,3),(1698,528253213,4),(1698,543978013,3),(1698,559702813,4),(1698,575427614,3),(1698,591152414,4),(1698,606877214,3),(1698,622602014,4),(1698,638326815,3),(1698,654656415,4),(1698,670381216,3),(1698,686106016,4),(1698,701830816,3),(1698,717555617,4),(1698,733280417,3),(1698,749005218,4),(1698,764730018,3),(1698,780454819,4),(1698,796179619,3),(1698,811904419,4),(1698,828234020,3),(1698,846378020,4),(1698,859683620,3),(1698,877827621,4),(1698,891133221,3),(1698,909277221,4),(1698,922582822,3),(1698,941331622,4),(1698,954032422,3),(1698,972781222,4),(1698,985482022,3),(1698,1004230822,4),(1698,1017536422,3),(1698,1035680422,4),(1698,1048986022,3),(1698,1067130022,4),(1698,1080435622,3),(1698,1099184422,4),(1698,1111885222,3),(1698,1130634022,4),(1698,1143334823,3),(1698,1162083623,4),(1698,1174784423,3),(1698,1193533223,4),(1698,1206838823,3),(1698,1224982823,4),(1698,1238288424,3),(1698,1256432424,4),(1698,1269738024,3),(1698,1288486824,4),(1698,1301187624,3),(1698,1319936424,4),(1698,1332637224,3),(1698,1351386025,4),(1698,1364691625,3),(1698,1382835625,4),(1698,1396141225,3),(1698,1414285225,4),(1698,1427590825,3),(1698,1445734826,4),(1698,1459040426,3),(1698,1477789226,4),(1698,1490490027,3),(1698,1509238827,4),(1698,1521939627,3),(1698,1540688427,4),(1698,1553994027,3),(1698,1572138027,4),(1698,1585443627,3),(1698,1603587627,4),(1698,1616893227,3),(1698,1635642027,4),(1698,1648342827,3),(1698,1667091627,4),(1698,1679792427,3),(1698,1698541227,4),(1698,1711846827,3),(1698,1729990827,4),(1698,1743296427,3),(1698,1761440427,4),(1698,1774746027,3),(1698,1792890027,4),(1698,1806195627,3),(1698,1824944427,4),(1698,1837645227,3),(1698,1856394027,4),(1698,1869094827,3),(1698,1887843627,4),(1698,1901149227,3),(1698,1919293227,4),(1698,1932598827,3),(1698,1950742827,4),(1698,1964048427,3),(1698,1982797227,4),(1698,1995498027,3),(1698,2014246827,4),(1698,2026947627,3),(1698,2045696427,4),(1698,2058397227,3),(1698,2077146027,4),(1698,2090451627,3),(1698,2108595627,4),(1698,2121901227,3),(1698,2140045227,4),(1699,-2147483648,2),(1699,-1690765200,1),(1699,-1680487200,2),(1699,-1664758800,1),(1699,-1648951200,2),(1699,-1635123600,1),(1699,-1616896800,2),(1699,-1604278800,1),(1699,-1585533600,2),(1699,-1571014800,1),(1699,-1555293600,2),(1699,-932432400,1),(1699,-857257200,3),(1699,-844556400,4),(1699,-830311200,1),(1699,-828226800,3),(1699,-812502000,4),(1699,-807156000,1),(1699,-798073200,3),(1699,-781052400,1),(1699,-766717200,2),(1699,-750898800,4),(1699,-733359600,3),(1699,-719456400,4),(1699,-701917200,3),(1699,-689209200,4),(1699,-670460400,3),(1699,-114051600,4),(1699,-103168800,2),(1699,-81997200,4),(1699,-71715600,3),(1699,-50547600,4),(1699,-40266000,3),(1699,-18493200,4),(1699,-8211600,3),(1699,12956400,4),(1699,23238000,3),(1699,43801200,4),(1699,54687600,3),(1699,75855600,4),(1699,86742001,3),(1699,107910002,4),(1699,118191602,3),(1699,138754803,4),(1699,149641203,3),(1699,170809204,4),(1699,181090804,3),(1699,202258805,4),(1699,212540405,3),(1699,233103606,4),(1699,243990006,3),(1699,265158007,4),(1699,276044407,3),(1699,296607608,4),(1699,307494008,3),(1699,315529208,2),(1699,323830809,5),(1699,338950809,6),(1699,354675609,5),(1699,370400410,6),(1699,386125210,5),(1699,401850011,6),(1699,417574811,5),(1699,433299612,6),(1699,449024412,5),(1699,465354012,6),(1699,481078812,5),(1699,496803613,6),(1699,512528413,5),(1699,528253213,6),(1699,543978013,5),(1699,559702813,6),(1699,575427614,5),(1699,591152414,6),(1699,606877214,5),(1699,622602014,6),(1699,638326815,5),(1699,654656415,6),(1699,670381216,5),(1699,686106016,6),(1699,701830816,5),(1699,717555617,6),(1699,733280417,5),(1699,749005218,6),(1699,764730018,5),(1699,780454819,6),(1699,796179619,5),(1699,811904419,6),(1699,828234020,5),(1699,846378020,6),(1699,859683620,5),(1699,877827621,6),(1699,891133221,5),(1699,909277221,6),(1699,922582822,5),(1699,941331622,6),(1699,954032422,5),(1699,972781222,6),(1699,985482022,5),(1699,1004230822,6),(1699,1017536422,5),(1699,1035680422,6),(1699,1048986022,5),(1699,1067130022,6),(1699,1080435622,5),(1699,1099184422,6),(1699,1111885222,5),(1699,1130634022,6),(1699,1143334823,5),(1699,1162083623,6),(1699,1174784423,5),(1699,1193533223,6),(1699,1206838823,5),(1699,1224982823,6),(1699,1238288424,5),(1699,1256432424,6),(1699,1269738024,5),(1699,1288486824,6),(1699,1301187624,5),(1699,1319936424,6),(1699,1332637224,5),(1699,1351386025,6),(1699,1364691625,5),(1699,1382835625,6),(1699,1396141225,5),(1699,1414285225,6),(1699,1427590825,5),(1699,1445734826,6),(1699,1459040426,5),(1699,1477789226,6),(1699,1490490027,5),(1699,1509238827,6),(1699,1521939627,5),(1699,1540688427,6),(1699,1553994027,5),(1699,1572138027,6),(1699,1585443627,5),(1699,1603587627,6),(1699,1616893227,5),(1699,1635642027,6),(1699,1648342827,5),(1699,1667091627,6),(1699,1679792427,5),(1699,1698541227,6),(1699,1711846827,5),(1699,1729990827,6),(1699,1743296427,5),(1699,1761440427,6),(1699,1774746027,5),(1699,1792890027,6),(1699,1806195627,5),(1699,1824944427,6),(1699,1837645227,5),(1699,1856394027,6),(1699,1869094827,5),(1699,1887843627,6),(1699,1901149227,5),(1699,1919293227,6),(1699,1932598827,5),(1699,1950742827,6),(1699,1964048427,5),(1699,1982797227,6),(1699,1995498027,5),(1699,2014246827,6),(1699,2026947627,5),(1699,2045696427,6),(1699,2058397227,5),(1699,2077146027,6),(1699,2090451627,5),(1699,2108595627,6),(1699,2121901227,5),(1699,2140045227,6),(1700,-2147483648,2),(1700,-1693706400,1),(1700,-1680483600,2),(1700,-1663455600,3),(1700,-1650150000,4),(1700,-1632006000,3),(1700,-1618700400,4),(1700,-1577926800,2),(1700,-1569711600,3),(1700,-1555801200,4),(1700,-938905200,3),(1700,-857257200,4),(1700,-844556400,3),(1700,-828226800,4),(1700,-812502000,3),(1700,-796777200,4),(1700,-781052400,3),(1700,-780188400,4),(1700,-757386000,2),(1700,-748479600,3),(1700,-733273200,4),(1700,-717634800,3),(1700,-701910000,4),(1700,-684975600,3),(1700,-670460400,4),(1700,323823609,1),(1700,338940009,2),(1700,354675609,5),(1700,370400410,6),(1700,386125210,5),(1700,401850011,6),(1700,417574811,5),(1700,433299612,6),(1700,449024412,5),(1700,465354012,6),(1700,481078812,5),(1700,496803613,6),(1700,512528413,5),(1700,528253213,6),(1700,543978013,5),(1700,559702813,6),(1700,575427614,5),(1700,591152414,6),(1700,606877214,5),(1700,622602014,6),(1700,638326815,5),(1700,654656415,6),(1700,670381216,5),(1700,686106016,6),(1700,701830816,5),(1700,717555617,6),(1700,733280417,5),(1700,749005218,6),(1700,764730018,5),(1700,780454819,6),(1700,796179619,5),(1700,811904419,6),(1700,828234020,5),(1700,846378020,6),(1700,859683620,5),(1700,877827621,6),(1700,891133221,5),(1700,909277221,6),(1700,922582822,5),(1700,941331622,6),(1700,954032422,5),(1700,972781222,6),(1700,985482022,5),(1700,1004230822,6),(1700,1017536422,5),(1700,1035680422,6),(1700,1048986022,5),(1700,1067130022,6),(1700,1080435622,5),(1700,1099184422,6),(1700,1111885222,5),(1700,1130634022,6),(1700,1143334823,5),(1700,1162083623,6),(1700,1174784423,5),(1700,1193533223,6),(1700,1206838823,5),(1700,1224982823,6),(1700,1238288424,5),(1700,1256432424,6),(1700,1269738024,5),(1700,1288486824,6),(1700,1301187624,5),(1700,1319936424,6),(1700,1332637224,5),(1700,1351386025,6),(1700,1364691625,5),(1700,1382835625,6),(1700,1396141225,5),(1700,1414285225,6),(1700,1427590825,5),(1700,1445734826,6),(1700,1459040426,5),(1700,1477789226,6),(1700,1490490027,5),(1700,1509238827,6),(1700,1521939627,5),(1700,1540688427,6),(1700,1553994027,5),(1700,1572138027,6),(1700,1585443627,5),(1700,1603587627,6),(1700,1616893227,5),(1700,1635642027,6),(1700,1648342827,5),(1700,1667091627,6),(1700,1679792427,5),(1700,1698541227,6),(1700,1711846827,5),(1700,1729990827,6),(1700,1743296427,5),(1700,1761440427,6),(1700,1774746027,5),(1700,1792890027,6),(1700,1806195627,5),(1700,1824944427,6),(1700,1837645227,5),(1700,1856394027,6),(1700,1869094827,5),(1700,1887843627,6),(1700,1901149227,5),(1700,1919293227,6),(1700,1932598827,5),(1700,1950742827,6),(1700,1964048427,5),(1700,1982797227,6),(1700,1995498027,5),(1700,2014246827,6),(1700,2026947627,5),(1700,2045696427,6),(1700,2058397227,5),(1700,2077146027,6),(1700,2090451627,5),(1700,2108595627,6),(1700,2121901227,5),(1700,2140045227,6),(1701,-2147483648,1),(1701,-1672536240,2),(1701,-1585100136,3),(1701,-1561251600,4),(1701,-1553565600,3),(1701,-928198800,5),(1701,-900126000,8),(1701,-857257200,6),(1701,-844556400,7),(1701,-828226800,6),(1701,-812502000,7),(1701,-802144800,5),(1701,354920409,9),(1701,370728010,5),(1701,386456410,9),(1701,402264011,5),(1701,417992411,9),(1701,433800012,5),(1701,449614812,9),(1701,465346812,10),(1701,481071612,11),(1701,496796413,10),(1701,512521213,11),(1701,528246013,10),(1701,543970813,11),(1701,559695613,10),(1701,575420414,11),(1701,591145214,10),(1701,606870014,12),(1701,622598414,13),(1701,638323215,12),(1701,654652815,13),(1701,670377616,12),(1701,686102416,13),(1701,701827216,12),(1701,717552017,13),(1701,733276817,12),(1701,749001618,13),(1701,764726418,12),(1701,780451219,13),(1701,796176019,12),(1701,811900819,13),(1701,828230420,12),(1701,846374420,13),(1701,859680020,12),(1701,877824021,13),(1701,883605621,4),(1701,891133221,14),(1701,909277221,15),(1701,922582822,14),(1701,941331622,16),(1701,1041372022,4),(1701,1048986022,17),(1701,1067130022,16),(1701,1080435622,17),(1701,1099184422,16),(1701,1111885222,17),(1701,1130634022,16),(1701,1143334823,17),(1701,1162083623,16),(1701,1174784423,17),(1701,1193533223,16),(1701,1206838823,17),(1701,1224982823,16),(1701,1238288424,17),(1701,1256432424,16),(1701,1269738024,17),(1701,1288486824,16),(1701,1301187624,17),(1701,1319936424,16),(1701,1332637224,17),(1701,1351386025,16),(1701,1364691625,17),(1701,1382835625,16),(1701,1396141225,17),(1701,1414285225,16),(1701,1427590825,17),(1701,1445734826,16),(1701,1459040426,17),(1701,1477789226,16),(1701,1490490027,17),(1701,1509238827,16),(1701,1521939627,17),(1701,1540688427,16),(1701,1553994027,17),(1701,1572138027,16),(1701,1585443627,17),(1701,1603587627,16),(1701,1616893227,17),(1701,1635642027,16),(1701,1648342827,17),(1701,1667091627,16),(1701,1679792427,17),(1701,1698541227,16),(1701,1711846827,17),(1701,1729990827,16),(1701,1743296427,17),(1701,1761440427,16),(1701,1774746027,17),(1701,1792890027,16),(1701,1806195627,17),(1701,1824944427,16),(1701,1837645227,17),(1701,1856394027,16),(1701,1869094827,17),(1701,1887843627,16),(1701,1901149227,17),(1701,1919293227,16),(1701,1932598827,17),(1701,1950742827,16),(1701,1964048427,17),(1701,1982797227,16),(1701,1995498027,17),(1701,2014246827,16),(1701,2026947627,17),(1701,2045696427,16),(1701,2058397227,17),(1701,2077146027,16),(1701,2090451627,17),(1701,2108595627,16),(1701,2121901227,17),(1701,2140045227,16),(1702,-2147483648,0),(1702,-1577761060,1),(1702,-1247540400,2),(1702,354916809,3),(1702,370724410,2),(1702,386452810,3),(1702,402260411,2),(1702,417988811,3),(1702,433796412,2),(1702,449611212,3),(1702,465343212,4),(1702,481068012,5),(1702,496792813,4),(1702,512517613,5),(1702,528242413,4),(1702,543967213,5),(1702,559692013,4),(1702,575416814,6),(1702,591145214,7),(1702,606870014,6),(1702,622594814,7),(1702,638319615,6),(1702,654649215,7),(1702,670374016,4),(1702,701820016,6),(1702,717548417,7),(1702,733273217,6),(1702,748998018,7),(1702,764722818,6),(1702,780447619,7),(1702,796172419,6),(1702,811897219,7),(1702,828226820,6),(1702,846370820,7),(1702,859676420,6),(1702,877820421,7),(1702,891126021,6),(1702,909270021,7),(1702,922575622,6),(1702,941324422,7),(1702,954025222,6),(1702,972774022,7),(1702,985474822,6),(1702,1004223622,7),(1702,1017529222,6),(1702,1035673222,7),(1702,1048978822,6),(1702,1067122822,7),(1702,1080428422,6),(1702,1099177222,7),(1702,1111878022,6),(1702,1130626822,7),(1702,1143327623,6),(1702,1162076423,7),(1702,1174777223,6),(1702,1193526023,7),(1702,1206831623,6),(1702,1224975623,7),(1702,1238281224,6),(1702,1256425224,7),(1702,1269730824,6),(1702,1288479624,7),(1702,1301180424,4),(1702,1414274425,7),(1702,1540681227,4),(1702,1609020027,7),(1703,-2147483648,1),(1703,-1717032240,3),(1703,-1693706400,2),(1703,-1680483600,3),(1703,-1663455600,4),(1703,-1650150000,5),(1703,-1632006000,4),(1703,-1618700400,8),(1703,-1600473600,6),(1703,-1587168000,7),(1703,-1501725600,3),(1703,-931734000,2),(1703,-857257200,5),(1703,-844556400,4),(1703,-828226800,5),(1703,-812502000,4),(1703,-796874400,2),(1703,-796608000,3),(1703,-778726800,2),(1703,-762660000,3),(1703,-748486800,4),(1703,-733273200,5),(1703,-715215600,4),(1703,-701910000,5),(1703,-684975600,4),(1703,-670460400,5),(1703,-654130800,4),(1703,-639010800,5),(1703,-397094400,4),(1703,-386812800,5),(1703,-371088000,4),(1703,-355363200,5),(1703,-334195200,4),(1703,-323308800,5),(1703,-307584000,4),(1703,-291859200,5),(1703,-271296000,4),(1703,-260409600,5),(1703,-239846400,4),(1703,-228960000,5),(1703,-208396800,4),(1703,-197510400,5),(1703,-176342400,4),(1703,-166060800,5),(1703,220921205,3),(1703,228873606,4),(1703,243993606,5),(1703,260323207,4),(1703,276048007,5),(1703,291772808,4),(1703,307497608,5),(1703,323827209,4),(1703,338947209,5),(1703,354672009,4),(1703,370396810,5),(1703,386121610,4),(1703,401846411,5),(1703,417571211,4),(1703,433296012,5),(1703,449020812,4),(1703,465350412,5),(1703,481075212,4),(1703,496800013,5),(1703,512524813,4),(1703,528249613,5),(1703,543974413,4),(1703,559699213,5),(1703,567990013,3),(1703,575427614,9),(1703,591152414,10),(1703,606877214,9),(1703,622602014,10),(1703,638326815,9),(1703,654656415,10),(1703,670381216,9),(1703,686106016,10),(1703,701830816,9),(1703,717555617,10),(1703,733280417,9),(1703,749005218,10),(1703,764730018,9),(1703,780454819,10),(1703,796179619,9),(1703,811904419,10),(1703,828234020,9),(1703,846378020,10),(1703,859683620,9),(1703,877827621,10),(1703,891133221,9),(1703,909277221,10),(1703,922582822,9),(1703,941331622,10),(1703,954032422,9),(1703,972781222,10),(1703,985482022,9),(1703,1004230822,10),(1703,1017536422,9),(1703,1035680422,10),(1703,1048986022,9),(1703,1067130022,10),(1703,1080435622,9),(1703,1099184422,10),(1703,1111885222,9),(1703,1130634022,10),(1703,1143334823,9),(1703,1162083623,10),(1703,1174784423,9),(1703,1193533223,10),(1703,1206838823,9),(1703,1224982823,10),(1703,1238288424,9),(1703,1256432424,10),(1703,1269738024,9),(1703,1288486824,10),(1703,1301187624,9),(1703,1319936424,10),(1703,1332637224,9),(1703,1351386025,10),(1703,1364691625,9),(1703,1382835625,10),(1703,1396141225,9),(1703,1414285225,10),(1703,1427590825,9),(1703,1445734826,10),(1703,1459040426,9),(1703,1477789226,10),(1703,1490490027,9),(1703,1509238827,10),(1703,1521939627,9),(1703,1540688427,10),(1703,1553994027,9),(1703,1572138027,10),(1703,1585443627,9),(1703,1603587627,10),(1703,1616893227,9),(1703,1635642027,10),(1703,1648342827,9),(1703,1667091627,10),(1703,1679792427,9),(1703,1698541227,10),(1703,1711846827,9),(1703,1729990827,10),(1703,1743296427,9),(1703,1761440427,10),(1703,1774746027,9),(1703,1792890027,10),(1703,1806195627,9),(1703,1824944427,10),(1703,1837645227,9),(1703,1856394027,10),(1703,1869094827,9),(1703,1887843627,10),(1703,1901149227,9),(1703,1919293227,10),(1703,1932598827,9),(1703,1950742827,10),(1703,1964048427,9),(1703,1982797227,10),(1703,1995498027,9),(1703,2014246827,10),(1703,2026947627,9),(1703,2045696427,10),(1703,2058397227,9),(1703,2077146027,10),(1703,2090451627,9),(1703,2108595627,10),(1703,2121901227,9),(1703,2140045227,10),(1704,-2147483648,1),(1704,-905824800,4),(1704,-857257200,2),(1704,-844556400,3),(1704,-828226800,2),(1704,-812502000,3),(1704,-796777200,2),(1704,-788922000,1),(1704,-777942000,3),(1704,-766623600,2),(1704,407199611,1),(1704,417574811,5),(1704,433299612,6),(1704,449024412,5),(1704,465354012,6),(1704,481078812,5),(1704,496803613,6),(1704,512528413,5),(1704,528253213,6),(1704,543978013,5),(1704,559702813,6),(1704,575427614,5),(1704,591152414,6),(1704,606877214,5),(1704,622602014,6),(1704,638326815,5),(1704,654656415,6),(1704,670381216,5),(1704,686106016,6),(1704,701830816,5),(1704,717555617,6),(1704,733280417,5),(1704,749005218,6),(1704,764730018,5),(1704,780454819,6),(1704,796179619,5),(1704,811904419,6),(1704,828234020,5),(1704,846378020,6),(1704,859683620,5),(1704,877827621,6),(1704,891133221,5),(1704,909277221,6),(1704,922582822,5),(1704,941331622,6),(1704,954032422,5),(1704,972781222,6),(1704,985482022,5),(1704,1004230822,6),(1704,1017536422,5),(1704,1035680422,6),(1704,1048986022,5),(1704,1067130022,6),(1704,1080435622,5),(1704,1099184422,6),(1704,1111885222,5),(1704,1130634022,6),(1704,1143334823,5),(1704,1162083623,6),(1704,1174784423,5),(1704,1193533223,6),(1704,1206838823,5),(1704,1224982823,6),(1704,1238288424,5),(1704,1256432424,6),(1704,1269738024,5),(1704,1288486824,6),(1704,1301187624,5),(1704,1319936424,6),(1704,1332637224,5),(1704,1351386025,6),(1704,1364691625,5),(1704,1382835625,6),(1704,1396141225,5),(1704,1414285225,6),(1704,1427590825,5),(1704,1445734826,6),(1704,1459040426,5),(1704,1477789226,6),(1704,1490490027,5),(1704,1509238827,6),(1704,1521939627,5),(1704,1540688427,6),(1704,1553994027,5),(1704,1572138027,6),(1704,1585443627,5),(1704,1603587627,6),(1704,1616893227,5),(1704,1635642027,6),(1704,1648342827,5),(1704,1667091627,6),(1704,1679792427,5),(1704,1698541227,6),(1704,1711846827,5),(1704,1729990827,6),(1704,1743296427,5),(1704,1761440427,6),(1704,1774746027,5),(1704,1792890027,6),(1704,1806195627,5),(1704,1824944427,6),(1704,1837645227,5),(1704,1856394027,6),(1704,1869094827,5),(1704,1887843627,6),(1704,1901149227,5),(1704,1919293227,6),(1704,1932598827,5),(1704,1950742827,6),(1704,1964048427,5),(1704,1982797227,6),(1704,1995498027,5),(1704,2014246827,6),(1704,2026947627,5),(1704,2045696427,6),(1704,2058397227,5),(1704,2077146027,6),(1704,2090451627,5),(1704,2108595627,6),(1704,2121901227,5),(1704,2140045227,6),(1705,-2147483648,1),(1705,-1441160400,2),(1705,-1247536800,3),(1705,-894769200,6),(1705,-857257200,4),(1705,-844556400,5),(1705,-828226800,4),(1705,-826419600,3),(1705,354920409,7),(1705,370728010,3),(1705,386456410,7),(1705,402264011,3),(1705,417992411,7),(1705,433800012,3),(1705,449614812,7),(1705,465346812,8),(1705,481071612,9),(1705,496796413,8),(1705,512521213,9),(1705,528246013,8),(1705,543970813,9),(1705,559695613,8),(1705,575420414,9),(1705,591145214,8),(1705,606870014,9),(1705,622594814,8),(1705,638319615,9),(1705,654649215,8),(1705,670374016,10),(1705,686091616,2),(1705,701820016,10),(1705,717541217,2),(1705,733269617,10),(1705,748990818,2),(1705,764719218,10),(1705,780440419,2),(1705,796179619,11),(1705,811904419,12),(1705,828234020,11),(1705,846378020,12),(1705,859683620,11),(1705,877827621,12),(1705,891133221,11),(1705,909277221,12),(1705,922582822,11),(1705,941331622,12),(1705,954032422,11),(1705,972781222,12),(1705,985482022,11),(1705,1004230822,12),(1705,1017536422,11),(1705,1035680422,12),(1705,1048986022,11),(1705,1067130022,12),(1705,1080435622,11),(1705,1099184422,12),(1705,1111885222,11),(1705,1130634022,12),(1705,1143334823,11),(1705,1162083623,12),(1705,1174784423,11),(1705,1193533223,12),(1705,1206838823,11),(1705,1224982823,12),(1705,1238288424,11),(1705,1256432424,12),(1705,1269738024,11),(1705,1288486824,12),(1705,1301187624,11),(1705,1319936424,12),(1705,1332637224,11),(1705,1351386025,12),(1705,1364691625,11),(1705,1382835625,12),(1705,1396141225,11),(1705,1414285225,12),(1705,1427590825,11),(1705,1445734826,12),(1705,1459040426,11),(1705,1477789226,12),(1705,1490490027,11),(1705,1509238827,12),(1705,1521939627,11),(1705,1540688427,12),(1705,1553994027,11),(1705,1572138027,12),(1705,1585443627,11),(1705,1603587627,12),(1705,1616893227,11),(1705,1635642027,12),(1705,1648342827,11),(1705,1667091627,12),(1705,1679792427,11),(1705,1698541227,12),(1705,1711846827,11),(1705,1729990827,12),(1705,1743296427,11),(1705,1761440427,12),(1705,1774746027,11),(1705,1792890027,12),(1705,1806195627,11),(1705,1824944427,12),(1705,1837645227,11),(1705,1856394027,12),(1705,1869094827,11),(1705,1887843627,12),(1705,1901149227,11),(1705,1919293227,12),(1705,1932598827,11),(1705,1950742827,12),(1705,1964048427,11),(1705,1982797227,12),(1705,1995498027,11),(1705,2014246827,12),(1705,2026947627,11),(1705,2045696427,12),(1705,2058397227,11),(1705,2077146027,12),(1705,2090451627,11),(1705,2108595627,12),(1705,2121901227,11),(1705,2140045227,12),(1706,-2147483648,2),(1706,-904435200,1),(1706,-891129600,2),(1706,-872985600,1),(1706,-859680000,2),(1706,354675609,3),(1706,370400410,4),(1706,386125210,3),(1706,401850011,4),(1706,417574811,3),(1706,433299612,4),(1706,449024412,3),(1706,465354012,4),(1706,481078812,3),(1706,496803613,4),(1706,512528413,3),(1706,528253213,4),(1706,543978013,3),(1706,559702813,4),(1706,575427614,3),(1706,591152414,4),(1706,606877214,3),(1706,622602014,4),(1706,638326815,3),(1706,654656415,4),(1706,670381216,3),(1706,686106016,4),(1706,701830816,3),(1706,717555617,4),(1706,733280417,3),(1706,749005218,4),(1706,764730018,3),(1706,780454819,4),(1706,796179619,3),(1706,811904419,4),(1706,828234020,3),(1706,846378020,4),(1706,859683620,3),(1706,877827621,4),(1706,891133221,3),(1706,909277221,4),(1706,922582822,3),(1706,941331622,4),(1706,954032422,3),(1706,972781222,4),(1706,985482022,3),(1706,1004230822,4),(1706,1017536422,3),(1706,1035680422,4),(1706,1048986022,3),(1706,1067130022,4),(1706,1080435622,3),(1706,1099184422,4),(1706,1111885222,3),(1706,1130634022,4),(1706,1143334823,3),(1706,1162083623,4),(1706,1174784423,3),(1706,1193533223,4),(1706,1206838823,3),(1706,1224982823,4),(1706,1238288424,3),(1706,1256432424,4),(1706,1269738024,3),(1706,1288486824,4),(1706,1301187624,3),(1706,1319936424,4),(1706,1332637224,3),(1706,1351386025,4),(1706,1364691625,3),(1706,1382835625,4),(1706,1396141225,3),(1706,1414285225,4),(1706,1427590825,3),(1706,1445734826,4),(1706,1459040426,3),(1706,1477789226,4),(1706,1490490027,3),(1706,1509238827,4),(1706,1521939627,3),(1706,1540688427,4),(1706,1553994027,3),(1706,1572138027,4),(1706,1585443627,3),(1706,1603587627,4),(1706,1616893227,3),(1706,1635642027,4),(1706,1648342827,3),(1706,1667091627,4),(1706,1679792427,3),(1706,1698541227,4),(1706,1711846827,3),(1706,1729990827,4),(1706,1743296427,3),(1706,1761440427,4),(1706,1774746027,3),(1706,1792890027,4),(1706,1806195627,3),(1706,1824944427,4),(1706,1837645227,3),(1706,1856394027,4),(1706,1869094827,3),(1706,1887843627,4),(1706,1901149227,3),(1706,1919293227,4),(1706,1932598827,3),(1706,1950742827,4),(1706,1964048427,3),(1706,1982797227,4),(1706,1995498027,3),(1706,2014246827,4),(1706,2026947627,3),(1706,2045696427,4),(1706,2058397227,3),(1706,2077146027,4),(1706,2090451627,3),(1706,2108595627,4),(1706,2121901227,3),(1706,2140045227,4),(1708,-2147483648,2),(1708,-1691964000,1),(1708,-1680472800,2),(1708,-1664143200,1),(1708,-1650146400,2),(1708,-1633903200,1),(1708,-1617487200,2),(1708,-1601848800,1),(1708,-1586037600,2),(1708,-1570399200,1),(1708,-1552168800,2),(1708,-1538344800,1),(1708,-1522533600,2),(1708,-1507500000,1),(1708,-1490565600,2),(1708,-1473631200,1),(1708,-1460930400,2),(1708,-1442786400,1),(1708,-1428876000,2),(1708,-1410732000,1),(1708,-1396216800,2),(1708,-1379282400,1),(1708,-1364767200,2),(1708,-1348437600,1),(1708,-1333317600,2),(1708,-1315778400,1),(1708,-1301263200,2),(1708,-1284328800,1),(1708,-1269813600,2),(1708,-1253484000,1),(1708,-1238364000,2),(1708,-1221429600,1),(1708,-1206914400,2),(1708,-1189980000,1),(1708,-1175464800,2),(1708,-1159135200,1),(1708,-1143410400,2),(1708,-1126476000,1),(1708,-1111960800,2),(1708,-1095631200,1),(1708,-1080511200,2),(1708,-1063576800,1),(1708,-1049061600,2),(1708,-1032127200,1),(1708,-1017612000,2),(1708,-1001282400,1),(1708,-986162400,2),(1708,-969228000,1),(1708,-950479200,2),(1708,-942012000,1),(1708,-904518000,3),(1708,-896050800,1),(1708,-875487600,3),(1708,-864601200,1),(1708,-844038000,3),(1708,-832546800,1),(1708,-812588400,3),(1708,-798073200,1),(1708,-781052400,3),(1708,-772066800,1),(1708,-764805600,2),(1708,-748476000,1),(1708,-733356000,2),(1708,-719445600,1),(1708,-717030000,3),(1708,-706748400,1),(1708,-699487200,2),(1708,-687996000,1),(1708,-668037600,2),(1708,-654732000,1),(1708,-636588000,2),(1708,-622072800,1),(1708,-605743200,2),(1708,-590623200,1),(1708,-574293600,2),(1708,-558568800,1),(1708,-542239200,2),(1708,-527119200,1),(1708,-512604000,2),(1708,-496274400,1),(1708,-481154400,2),(1708,-464220000,1),(1708,-449704800,2),(1708,-432165600,1),(1708,-417650400,2),(1708,-401320800,1),(1708,-386200800,2),(1708,-369266400,1),(1708,-354751200,2),(1708,-337816800,1),(1708,-323301600,2),(1708,-306972000,1),(1708,-291852000,2),(1708,-276732000,1),(1708,-257983200,2),(1708,-245282400,1),(1708,-226533600,2),(1708,-213228000,1),(1708,-195084000,2),(1708,-182383200,1),(1708,-163634400,2),(1708,-150933600,1),(1708,-132184800,2),(1708,-119484000,1),(1708,-100735200,2),(1708,-88034400,1),(1708,-68680800,2),(1708,-59004000,1),(1708,-37242000,4),(1708,57722400,6),(1708,69818400,1),(1708,89172001,2),(1708,101268002,1),(1708,120621602,2),(1708,132717603,1),(1708,152071203,2),(1708,164167204,1),(1708,183520804,2),(1708,196221605,1),(1708,214970405,2),(1708,227671206,1),(1708,246420006,2),(1708,259120807,1),(1708,278474407,2),(1708,290570408,1),(1708,309924008,2),(1708,322020009,1),(1708,341373609,2),(1708,354675609,5),(1708,372819610,6),(1708,386125210,5),(1708,404269211,6),(1708,417574811,5),(1708,435718812,6),(1708,449024412,5),(1708,467773212,6),(1708,481078812,5),(1708,499222813,6),(1708,512528413,5),(1708,530672413,6),(1708,543978013,5),(1708,562122013,6),(1708,575427614,5),(1708,593571614,6),(1708,606877214,5),(1708,625626014,6),(1708,638326815,5),(1708,657075615,6),(1708,670381216,5),(1708,688525216,6),(1708,701830816,5),(1708,719974817,6),(1708,733280417,5),(1708,751424418,6),(1708,764730018,5),(1708,782874019,6),(1708,796179619,5),(1708,814323619,6),(1708,820454420,7),(1708,828234020,5),(1708,846378020,6),(1708,859683620,5),(1708,877827621,6),(1708,891133221,5),(1708,909277221,6),(1708,922582822,5),(1708,941331622,6),(1708,954032422,5),(1708,972781222,6),(1708,985482022,5),(1708,1004230822,6),(1708,1017536422,5),(1708,1035680422,6),(1708,1048986022,5),(1708,1067130022,6),(1708,1080435622,5),(1708,1099184422,6),(1708,1111885222,5),(1708,1130634022,6),(1708,1143334823,5),(1708,1162083623,6),(1708,1174784423,5),(1708,1193533223,6),(1708,1206838823,5),(1708,1224982823,6),(1708,1238288424,5),(1708,1256432424,6),(1708,1269738024,5),(1708,1288486824,6),(1708,1301187624,5),(1708,1319936424,6),(1708,1332637224,5),(1708,1351386025,6),(1708,1364691625,5),(1708,1382835625,6),(1708,1396141225,5),(1708,1414285225,6),(1708,1427590825,5),(1708,1445734826,6),(1708,1459040426,5),(1708,1477789226,6),(1708,1490490027,5),(1708,1509238827,6),(1708,1521939627,5),(1708,1540688427,6),(1708,1553994027,5),(1708,1572138027,6),(1708,1585443627,5),(1708,1603587627,6),(1708,1616893227,5),(1708,1635642027,6),(1708,1648342827,5),(1708,1667091627,6),(1708,1679792427,5),(1708,1698541227,6),(1708,1711846827,5),(1708,1729990827,6),(1708,1743296427,5),(1708,1761440427,6),(1708,1774746027,5),(1708,1792890027,6),(1708,1806195627,5),(1708,1824944427,6),(1708,1837645227,5),(1708,1856394027,6),(1708,1869094827,5),(1708,1887843627,6),(1708,1901149227,5),(1708,1919293227,6),(1708,1932598827,5),(1708,1950742827,6),(1708,1964048427,5),(1708,1982797227,6),(1708,1995498027,5),(1708,2014246827,6),(1708,2026947627,5),(1708,2045696427,6),(1708,2058397227,5),(1708,2077146027,6),(1708,2090451627,5),(1708,2108595627,6),(1708,2121901227,5),(1708,2140045227,6),(1709,-2147483648,2),(1709,-1691964000,1),(1709,-1680472800,2),(1709,-1664143200,1),(1709,-1650146400,2),(1709,-1633903200,1),(1709,-1617487200,2),(1709,-1601848800,1),(1709,-1586037600,2),(1709,-1570399200,1),(1709,-1552168800,2),(1709,-1538344800,1),(1709,-1522533600,2),(1709,-1507500000,1),(1709,-1490565600,2),(1709,-1473631200,1),(1709,-1460930400,2),(1709,-1442786400,1),(1709,-1428876000,2),(1709,-1410732000,1),(1709,-1396216800,2),(1709,-1379282400,1),(1709,-1364767200,2),(1709,-1348437600,1),(1709,-1333317600,2),(1709,-1315778400,1),(1709,-1301263200,2),(1709,-1284328800,1),(1709,-1269813600,2),(1709,-1253484000,1),(1709,-1238364000,2),(1709,-1221429600,1),(1709,-1206914400,2),(1709,-1189980000,1),(1709,-1175464800,2),(1709,-1159135200,1),(1709,-1143410400,2),(1709,-1126476000,1),(1709,-1111960800,2),(1709,-1095631200,1),(1709,-1080511200,2),(1709,-1063576800,1),(1709,-1049061600,2),(1709,-1032127200,1),(1709,-1017612000,2),(1709,-1001282400,1),(1709,-986162400,2),(1709,-969228000,1),(1709,-950479200,2),(1709,-942012000,1),(1709,-904518000,3),(1709,-896050800,1),(1709,-875487600,3),(1709,-864601200,1),(1709,-844038000,3),(1709,-832546800,1),(1709,-812588400,3),(1709,-798073200,1),(1709,-781052400,3),(1709,-772066800,1),(1709,-764805600,2),(1709,-748476000,1),(1709,-733356000,2),(1709,-719445600,1),(1709,-717030000,3),(1709,-706748400,1),(1709,-699487200,2),(1709,-687996000,1),(1709,-668037600,2),(1709,-654732000,1),(1709,-636588000,2),(1709,-622072800,1),(1709,-605743200,2),(1709,-590623200,1),(1709,-574293600,2),(1709,-558568800,1),(1709,-542239200,2),(1709,-527119200,1),(1709,-512604000,2),(1709,-496274400,1),(1709,-481154400,2),(1709,-464220000,1),(1709,-449704800,2),(1709,-432165600,1),(1709,-417650400,2),(1709,-401320800,1),(1709,-386200800,2),(1709,-369266400,1),(1709,-354751200,2),(1709,-337816800,1),(1709,-323301600,2),(1709,-306972000,1),(1709,-291852000,2),(1709,-276732000,1),(1709,-257983200,2),(1709,-245282400,1),(1709,-226533600,2),(1709,-213228000,1),(1709,-195084000,2),(1709,-182383200,1),(1709,-163634400,2),(1709,-150933600,1),(1709,-132184800,2),(1709,-119484000,1),(1709,-100735200,2),(1709,-88034400,1),(1709,-68680800,2),(1709,-59004000,1),(1709,-37242000,4),(1709,57722400,6),(1709,69818400,1),(1709,89172001,2),(1709,101268002,1),(1709,120621602,2),(1709,132717603,1),(1709,152071203,2),(1709,164167204,1),(1709,183520804,2),(1709,196221605,1),(1709,214970405,2),(1709,227671206,1),(1709,246420006,2),(1709,259120807,1),(1709,278474407,2),(1709,290570408,1),(1709,309924008,2),(1709,322020009,1),(1709,341373609,2),(1709,354675609,5),(1709,372819610,6),(1709,386125210,5),(1709,404269211,6),(1709,417574811,5),(1709,435718812,6),(1709,449024412,5),(1709,467773212,6),(1709,481078812,5),(1709,499222813,6),(1709,512528413,5),(1709,530672413,6),(1709,543978013,5),(1709,562122013,6),(1709,575427614,5),(1709,593571614,6),(1709,606877214,5),(1709,625626014,6),(1709,638326815,5),(1709,657075615,6),(1709,670381216,5),(1709,688525216,6),(1709,701830816,5),(1709,719974817,6),(1709,733280417,5),(1709,751424418,6),(1709,764730018,5),(1709,782874019,6),(1709,796179619,5),(1709,814323619,6),(1709,820454420,7),(1709,828234020,5),(1709,846378020,6),(1709,859683620,5),(1709,877827621,6),(1709,891133221,5),(1709,909277221,6),(1709,922582822,5),(1709,941331622,6),(1709,954032422,5),(1709,972781222,6),(1709,985482022,5),(1709,1004230822,6),(1709,1017536422,5),(1709,1035680422,6),(1709,1048986022,5),(1709,1067130022,6),(1709,1080435622,5),(1709,1099184422,6),(1709,1111885222,5),(1709,1130634022,6),(1709,1143334823,5),(1709,1162083623,6),(1709,1174784423,5),(1709,1193533223,6),(1709,1206838823,5),(1709,1224982823,6),(1709,1238288424,5),(1709,1256432424,6),(1709,1269738024,5),(1709,1288486824,6),(1709,1301187624,5),(1709,1319936424,6),(1709,1332637224,5),(1709,1351386025,6),(1709,1364691625,5),(1709,1382835625,6),(1709,1396141225,5),(1709,1414285225,6),(1709,1427590825,5),(1709,1445734826,6),(1709,1459040426,5),(1709,1477789226,6),(1709,1490490027,5),(1709,1509238827,6),(1709,1521939627,5),(1709,1540688427,6),(1709,1553994027,5),(1709,1572138027,6),(1709,1585443627,5),(1709,1603587627,6),(1709,1616893227,5),(1709,1635642027,6),(1709,1648342827,5),(1709,1667091627,6),(1709,1679792427,5),(1709,1698541227,6),(1709,1711846827,5),(1709,1729990827,6),(1709,1743296427,5),(1709,1761440427,6),(1709,1774746027,5),(1709,1792890027,6),(1709,1806195627,5),(1709,1824944427,6),(1709,1837645227,5),(1709,1856394027,6),(1709,1869094827,5),(1709,1887843627,6),(1709,1901149227,5),(1709,1919293227,6),(1709,1932598827,5),(1709,1950742827,6),(1709,1964048427,5),(1709,1982797227,6),(1709,1995498027,5),(1709,2014246827,6),(1709,2026947627,5),(1709,2045696427,6),(1709,2058397227,5),(1709,2077146027,6),(1709,2090451627,5),(1709,2108595627,6),(1709,2121901227,5),(1709,2140045227,6),(1716,-2147483648,0),(1716,-2056690800,1),(1716,-900910800,2),(1716,-891579600,3),(1716,-884248200,4),(1716,-761209200,1),(1716,-747907200,2),(1716,-728541000,5),(1716,-717049800,6),(1716,-697091400,5),(1716,-683785800,6),(1716,-668061000,5),(1716,-654755400,2),(1716,-636611400,5),(1716,-623305800,2),(1716,-605161800,5),(1716,-591856200,2),(1716,-573712200,5),(1716,-559801800,2),(1716,-541657800,5),(1716,-528352200,2),(1716,-510211800,1),(1716,-498112200,2),(1716,-478762200,1),(1716,-466662600,2),(1716,-446707800,1),(1716,-435213000,2),(1716,-415258200,1),(1716,-403158600,2),(1716,-383808600,1),(1716,-371709000,2),(1716,-352359000,1),(1716,-340259400,2),(1716,-320909400,1),(1716,-308809800,2),(1716,-288855000,1),(1716,-277360200,2),(1716,-257405400,1),(1716,-245910600,2),(1716,-225955800,1),(1716,-213856200,2),(1716,-194506200,1),(1716,-182406600,2),(1716,-163056600,1),(1716,-148537800,2),(1716,-132816600,1),(1716,-117088200,2),(1716,-101367000,1),(1716,-85638600,2),(1716,-69312600,1),(1716,-53584200,2),(1716,-37863000,1),(1716,-22134600,2),(1716,-6413400,1),(1716,9315000,2),(1716,25036200,1),(1716,40764600,2),(1716,56485800,1),(1716,72214200,2),(1716,88540201,1),(1716,104268602,2),(1716,119989802,1),(1716,126041402,2),(1716,151439403,1),(1716,167167804,2),(1716,182889004,1),(1716,198617405,2),(1716,214338605,1),(1716,295385408,2),(1716,309292208,1),(1717,-2147483648,0),(1717,-1956609120,2),(1717,-1668211200,1),(1717,-1647212400,2),(1717,-1636675200,1),(1717,-1613430000,2),(1717,-1605139200,1),(1717,-1581894000,2),(1717,-1539561600,1),(1717,-1531350000,2),(1717,-968025600,1),(1717,-952293600,2),(1717,-942008400,1),(1717,-920239200,3),(1717,-909957600,4),(1717,-888789600,3),(1717,-877903200,4),(1717,-857944800,3),(1717,-846453600,4),(1717,-826495200,3),(1717,-815004000,4),(1717,-795045600,3),(1717,-783554400,4),(1717,-762991200,3),(1717,-752104800,4),(1717,-731541600,3),(1717,-717631200,4),(1717,-700092000,3),(1717,-686181600,4),(1717,-668642400,3),(1717,-654732000,4),(1717,-636588000,3),(1717,-623282400,4),(1717,-605743200,3),(1717,-591832800,4),(1717,-573688800,3),(1717,-559778400,4),(1717,-542239200,3),(1717,-528328800,4),(1717,-510789600,3),(1717,-496879200,4),(1717,-479340000,3),(1717,-465429600,4),(1717,-447890400,3),(1717,-433980000,4),(1717,-415836000,3),(1717,-401925600,4),(1717,-384386400,3),(1717,-370476000,4),(1717,-352936800,3),(1717,-339026400,4),(1717,-321487200,3),(1717,-307576800,4),(1717,-290037600,3),(1717,-276127200,4),(1717,-258588000,3),(1717,-244677600,4),(1717,-226533600,3),(1717,-212623200,4),(1717,-195084000,3),(1717,-181173600,4),(1717,-163634400,3),(1717,-149724000,4),(1717,-132184800,3),(1717,-118274400,4),(1717,-100735200,3),(1717,-86824800,4),(1717,-68680800,3),(1717,-54770400,5),(1718,-2147483648,0),(1718,-1946168836,1),(1718,-1309746600,2),(1718,-1261969200,1),(1718,-1041388200,3),(1718,-865305900,2),(1719,-2147483648,0),(1719,-1988167780,1),(1719,820436419,2),(1722,-2147483648,0),(1722,-1946168836,1),(1722,-1309746600,2),(1722,-1261969200,1),(1722,-1041388200,3),(1722,-865305900,2),(1723,-2147483648,0),(1723,-631152000,1),(1724,-2147483648,0),(1724,-1988163708,1),(1725,-2147483648,1),(1725,-315636840,2),(1726,-2147483648,0),(1726,-1988164200,2),(1726,403041611,1),(1726,417034811,2),(1726,1224972023,1),(1726,1238274024,2),(1727,-2147483648,0),(1727,-1946168836,1),(1727,-1309746600,2),(1727,-1261969200,1),(1727,-1041388200,3),(1727,-865305900,2),(1728,-2147483648,0),(1728,-1848886912,1),(1729,-2147483648,0),(1729,-1704165944,1),(1729,-757394744,2),(1729,247177806,4),(1729,259272007,3),(1729,277758007,4),(1729,283982407,2),(1729,290809808,5),(1729,306531008,2),(1729,322432209,5),(1729,338499009,2),(1729,673216216,5),(1729,685481416,2),(1729,701209816,5),(1729,717103817,2),(1729,732745817,5),(1729,748639818,2),(1729,764281818,5),(1729,780175819,2),(1729,795817819,5),(1729,811711819,2),(1729,827353820,5),(1729,843247820,2),(1729,858976220,5),(1729,874870221,2),(1729,890512221,5),(1729,906406221,2),(1729,922048222,5),(1729,937942222,2),(1729,953584222,5),(1729,969478222,2),(1729,985206622,5),(1729,1001100622,2),(1729,1016742622,5),(1729,1032636622,2),(1729,1048278622,5),(1729,1064172622,2),(1729,1079814622,5),(1729,1095708622,2),(1729,1111437022,5),(1729,1127331022,2),(1729,1206045023,5),(1729,1221939023,2),(1729,1237667424,5),(1729,1253561424,2),(1729,1269203424,5),(1729,1285097424,2),(1729,1300739424,5),(1729,1316633424,2),(1729,1332275424,5),(1729,1348169425,2),(1729,1363897825,5),(1729,1379791825,2),(1729,1395433825,5),(1729,1411327825,2),(1729,1426969825,5),(1729,1442863826,2),(1729,1458505826,5),(1729,1474399826,2),(1729,1490128227,5),(1729,1506022227,2),(1729,1521664227,5),(1729,1537558227,2),(1729,1553200227,5),(1729,1569094227,2),(1729,1584736227,5),(1729,1600630227,2),(1729,1616358627,5),(1729,1632252627,2),(1729,1647894627,5),(1729,1663788627,2),(1729,1679430627,5),(1729,1695324627,2),(1729,1710966627,5),(1729,1726860627,2),(1729,1742589027,5),(1729,1758483027,2),(1729,1774125027,5),(1729,1790019027,2),(1729,1805661027,5),(1729,1821555027,2),(1729,1837197027,5),(1729,1853091027,2),(1729,1868733027,5),(1729,1884627027,2),(1729,1900355427,5),(1729,1916249427,2),(1729,1931891427,5),(1729,1947785427,2),(1729,1963427427,5),(1729,1979321427,2),(1729,1994963427,5),(1729,2010857427,2),(1729,2026585827,5),(1729,2042479827,2),(1729,2058121827,5),(1729,2074015827,2),(1729,2089657827,5),(1729,2105551827,2),(1729,2121193827,5),(1729,2137087827,2),(1730,-2147483648,1),(1730,-1641003640,6),(1730,-933638400,2),(1730,-923097600,3),(1730,-919036800,2),(1730,-857347200,3),(1730,-844300800,2),(1730,-825811200,3),(1730,-812678400,2),(1730,-794188800,3),(1730,-779846400,2),(1730,-762652800,3),(1730,-748310400,2),(1730,-731116800,3),(1730,-681955200,4),(1730,-673228800,2),(1730,-667958400,3),(1730,-652320000,2),(1730,-636422400,3),(1730,-622080000,2),(1730,-608947200,3),(1730,-591840000,2),(1730,-572486400,3),(1730,-558576000,2),(1730,-542851200,3),(1730,-527731200,2),(1730,-514425600,3),(1730,-490838400,2),(1730,-482976000,3),(1730,-459388800,2),(1730,-451526400,3),(1730,-428544000,2),(1730,-418262400,3),(1730,-400118400,2),(1730,-387417600,3),(1730,142380003,5),(1730,150843603,6),(1730,167176804,5),(1730,178664404,6),(1730,334101609,7),(1730,337730409,8),(1730,452642412,7),(1730,462319212,8),(1730,482277612,5),(1730,494370013,6),(1730,516751213,5),(1730,526424413,6),(1730,545436013,5),(1730,558478813,6),(1730,576626414,5),(1730,589323614,6),(1730,609890414,5),(1730,620773214,6),(1730,638316015,5),(1730,651618015,6),(1730,669765616,5),(1730,683672416,6),(1730,701820016,5),(1730,715726817,6),(1730,733701617,5),(1730,747176418,6),(1730,765151218,5),(1730,778021219,6),(1730,796600819,5),(1730,810075619,6),(1730,826840820,5),(1730,842821220,6),(1730,858895220,5),(1730,874184421,6),(1730,890344821,5),(1730,905029221,6),(1730,923011222,5),(1730,936313222,6),(1730,955670422,5),(1730,970783222,6),(1730,986770822,5),(1730,1001282422,6),(1730,1017356422,5),(1730,1033941622,6),(1730,1048806022,5),(1730,1065132022,6),(1730,1081292422,5),(1730,1095804022,6),(1730,1112313622,5),(1730,1128812422,6),(1730,1143763223,5),(1730,1159657223,6),(1730,1175212823,5),(1730,1189897223,6),(1730,1206662423,5),(1730,1223161223,6),(1730,1238112024,5),(1730,1254006024,6),(1730,1269561624,5),(1730,1284246024,6),(1730,1301616024,5),(1730,1317510024,6),(1730,1333065624,5),(1730,1348354825,6),(1730,1364515225,5),(1730,1382828425,6),(1730,1395964825,5),(1730,1414278025,6),(1730,1427414425,5),(1730,1445727626,6),(1730,1458864026,5),(1730,1477782026,6),(1730,1490313627,5),(1730,1509231627,6),(1730,1521763227,5),(1730,1540681227,6),(1730,1553817627,5),(1730,1572130827,6),(1730,1585267227,5),(1730,1603580427,6),(1730,1616716827,5),(1730,1635634827,6),(1730,1648166427,5),(1730,1667084427,6),(1730,1679616027,5),(1730,1698534027,6),(1730,1711670427,5),(1730,1729983627,6),(1730,1743120027,5),(1730,1761433227,6),(1730,1774569627,5),(1730,1792882827,6),(1730,1806019227,5),(1730,1824937227,6),(1730,1837468827,5),(1730,1856386827,6),(1730,1868918427,5),(1730,1887836427,6),(1730,1900972827,5),(1730,1919286027,6),(1730,1932422427,5),(1730,1950735627,6),(1730,1963872027,5),(1730,1982790027,6),(1730,1995321627,5),(1730,2014239627,6),(1730,2026771227,5),(1730,2045689227,6),(1730,2058220827,5),(1730,2077138827,6),(1730,2090275227,5),(1730,2108588427,6),(1730,2121724827,5),(1730,2140038027,6),(1731,-2147483648,1),(1731,-1827687170,2),(1731,126687603,3),(1731,152085603,2),(1731,162370804,3),(1731,183535204,2),(1731,199263605,3),(1731,215589605,2),(1731,230713206,3),(1731,247039206,2),(1731,262767607,3),(1731,278488807,2),(1731,294217208,3),(1731,309938408,2),(1731,325666809,3),(1731,341388009,2),(1731,357116409,3),(1731,372837610,2),(1731,388566010,3),(1731,404892011,2),(1731,420015611,3),(1731,436341612,2),(1732,-2147483648,3),(1732,-683802000,1),(1732,-672310800,2),(1732,-654771600,1),(1732,-640861200,2),(1732,-620298000,1),(1732,-609411600,2),(1732,-588848400,1),(1732,-577962000,2),(1733,-2147483648,1),(1733,-1041418800,2),(1733,-907408800,3),(1733,-817462800,1),(1733,-7988400,4),(1733,745934418,5),(1734,-2147483648,0),(1734,-1577926364,2),(1734,-574902000,1),(1734,-568087200,2),(1734,-512175600,1),(1734,-504928800,2),(1734,-449888400,1),(1734,-441856800,2),(1734,-347158800,3),(1734,378684010,2),(1734,386463610,1),(1734,402271211,2),(1734,417999611,1),(1734,433807212,2),(1734,449622012,1),(1734,465429612,2),(1734,481590012,1),(1734,496965613,2),(1734,512953213,1),(1734,528674413,2),(1734,544230013,1),(1734,560037613,2),(1734,575852414,1),(1734,591660014,2),(1734,607388414,1),(1734,623196014,2),(1734,641775615,3),(1734,844034420,2),(1734,860108420,1),(1734,875916021,3),(1734,1352505625,2),(1734,1364515225,1),(1734,1382659225,3),(1735,-1693706400,0),(1735,-1680483600,1),(1735,-1663455600,2),(1735,-1650150000,3),(1735,-1632006000,2),(1735,-1618700400,3),(1735,-938905200,2),(1735,-857257200,3),(1735,-844556400,2),(1735,-828226800,3),(1735,-812502000,2),(1735,-796777200,3),(1735,-781052400,2),(1735,-766623600,3),(1735,228877206,2),(1735,243997206,3),(1735,260326807,2),(1735,276051607,3),(1735,291776408,2),(1735,307501208,3),(1735,323830809,2),(1735,338950809,3),(1735,354675609,2),(1735,370400410,3),(1735,386125210,2),(1735,401850011,3),(1735,417574811,2),(1735,433299612,3),(1735,449024412,2),(1735,465354012,3),(1735,481078812,2),(1735,496803613,3),(1735,512528413,2),(1735,528253213,3),(1735,543978013,2),(1735,559702813,3),(1735,575427614,2),(1735,591152414,3),(1735,606877214,2),(1735,622602014,3),(1735,638326815,2),(1735,654656415,3),(1735,670381216,2),(1735,686106016,3),(1735,701830816,2),(1735,717555617,3),(1735,733280417,2),(1735,749005218,3),(1735,764730018,2),(1735,780454819,3),(1735,796179619,2),(1735,811904419,3),(1735,828234020,2),(1735,846378020,3),(1735,859683620,2),(1735,877827621,3),(1735,891133221,2),(1735,909277221,3),(1735,922582822,2),(1735,941331622,3),(1735,954032422,2),(1735,972781222,3),(1735,985482022,2),(1735,1004230822,3),(1735,1017536422,2),(1735,1035680422,3),(1735,1048986022,2),(1735,1067130022,3),(1735,1080435622,2),(1735,1099184422,3),(1735,1111885222,2),(1735,1130634022,3),(1735,1143334823,2),(1735,1162083623,3),(1735,1174784423,2),(1735,1193533223,3),(1735,1206838823,2),(1735,1224982823,3),(1735,1238288424,2),(1735,1256432424,3),(1735,1269738024,2),(1735,1288486824,3),(1735,1301187624,2),(1735,1319936424,3),(1735,1332637224,2),(1735,1351386025,3),(1735,1364691625,2),(1735,1382835625,3),(1735,1396141225,2),(1735,1414285225,3),(1735,1427590825,2),(1735,1445734826,3),(1735,1459040426,2),(1735,1477789226,3),(1735,1490490027,2),(1735,1509238827,3),(1735,1521939627,2),(1735,1540688427,3),(1735,1553994027,2),(1735,1572138027,3),(1735,1585443627,2),(1735,1603587627,3),(1735,1616893227,2),(1735,1635642027,3),(1735,1648342827,2),(1735,1667091627,3),(1735,1679792427,2),(1735,1698541227,3),(1735,1711846827,2),(1735,1729990827,3),(1735,1743296427,2),(1735,1761440427,3),(1735,1774746027,2),(1735,1792890027,3),(1735,1806195627,2),(1735,1824944427,3),(1735,1837645227,2),(1735,1856394027,3),(1735,1869094827,2),(1735,1887843627,3),(1735,1901149227,2),(1735,1919293227,3),(1735,1932598827,2),(1735,1950742827,3),(1735,1964048427,2),(1735,1982797227,3),(1735,1995498027,2),(1735,2014246827,3),(1735,2026947627,2),(1735,2045696427,3),(1735,2058397227,2),(1735,2077146027,3),(1735,2090451627,2),(1735,2108595627,3),(1735,2121901227,2),(1735,2140045227,3),(1737,-1633273200,0),(1737,-1615132800,1),(1737,-1601823600,0),(1737,-1583683200,1),(1737,-880210800,2),(1737,-769395600,3),(1737,-765388800,1),(1737,-84380400,0),(1737,-68659200,1),(1737,-52930800,0),(1737,-37209600,1),(1737,-21481200,0),(1737,-5760000,1),(1737,9968400,0),(1737,25689600,1),(1737,41418000,0),(1737,57744000,1),(1737,73472400,0),(1737,89193601,1),(1737,104922002,0),(1737,120643202,1),(1737,126694803,0),(1737,152092803,1),(1737,162378004,0),(1737,183542404,1),(1737,199270805,0),(1737,215596805,1),(1737,230720406,0),(1737,247046406,1),(1737,262774807,0),(1737,278496007,1),(1737,294224408,0),(1737,309945608,1),(1737,325674009,0),(1737,341395209,1),(1737,357123609,0),(1737,372844810,1),(1737,388573210,0),(1737,404899211,1),(1737,420022811,0),(1737,436348812,1),(1737,452077212,0),(1737,467798412,1),(1737,483526812,0),(1737,499248013,1),(1737,514976413,0),(1737,530697613,1),(1737,544611613,0),(1737,562147213,1),(1737,576061214,0),(1737,594201614,1),(1737,607510814,0),(1737,625651214,1),(1737,638960415,0),(1737,657100815,1),(1737,671014816,0),(1737,688550416,1),(1737,702464416,0),(1737,720000017,1),(1737,733914017,0),(1737,752054418,1),(1737,765363618,0),(1737,783504019,1),(1737,796813219,0),(1737,814953619,1),(1737,828867620,0),(1737,846403220,1),(1737,860317220,0),(1737,877852821,1),(1737,891766821,0),(1737,909302421,1),(1737,923216422,0),(1737,941356822,1),(1737,954666022,0),(1737,972806422,1),(1737,986115622,0),(1737,1004256022,1),(1737,1018170022,0),(1737,1035705622,1),(1737,1049619622,0),(1737,1067155222,1),(1737,1081069222,0),(1737,1099209622,1),(1737,1112518822,0),(1737,1130659222,1),(1737,1143968423,0),(1737,1162108823,1),(1737,1173603623,0),(1737,1194163223,1),(1737,1205053223,0),(1737,1225612823,1),(1737,1236502824,0),(1737,1257062424,1),(1737,1268557224,0),(1737,1289116824,1),(1737,1300006824,0),(1737,1320566424,1),(1737,1331456424,0),(1737,1352016025,1),(1737,1362906025,0),(1737,1383465625,1),(1737,1394355625,0),(1737,1414915225,1),(1737,1425805225,0),(1737,1446364826,1),(1737,1457859626,0),(1737,1478419226,1),(1737,1489309227,0),(1737,1509868827,1),(1737,1520758827,0),(1737,1541318427,1),(1737,1552208427,0),(1737,1572768027,1),(1737,1583658027,0),(1737,1604217627,1),(1737,1615712427,0),(1737,1636272027,1),(1737,1647162027,0),(1737,1667721627,1),(1737,1678611627,0),(1737,1699171227,1),(1737,1710061227,0),(1737,1730620827,1),(1737,1741510827,0),(1737,1762070427,1),(1737,1772960427,0),(1737,1793520027,1),(1737,1805014827,0),(1737,1825574427,1),(1737,1836464427,0),(1737,1857024027,1),(1737,1867914027,0),(1737,1888473627,1),(1737,1899363627,0),(1737,1919923227,1),(1737,1930813227,0),(1737,1951372827,1),(1737,1962867627,0),(1737,1983427227,1),(1737,1994317227,0),(1737,2014876827,1),(1737,2025766827,0),(1737,2046326427,1),(1737,2057216427,0),(1737,2077776027,1),(1737,2088666027,0),(1737,2109225627,1),(1737,2120115627,0),(1737,2140675227,1),(1738,-2147483648,0),(1738,-1514736000,1),(1738,-1451667600,2),(1738,-1343062800,1),(1738,-1234803600,2),(1738,-1222963200,3),(1738,-1207242000,2),(1738,-873820800,4),(1738,-769395600,5),(1738,-761677200,2),(1738,-686073600,3),(1738,-661539600,2),(1738,-495039600,3),(1738,-481734000,2),(1738,-463590000,3),(1738,-450284400,2),(1738,-431535600,3),(1738,-418230000,2),(1738,-400086000,3),(1738,-386780400,2),(1738,-368636400,3),(1738,-355330800,2),(1738,-337186800,3),(1738,-323881200,2),(1738,-305737200,3),(1738,-292431600,2),(1738,199274405,3),(1738,215600405,2),(1738,230724006,3),(1738,247050006,2),(1738,262778407,3),(1738,278499607,2),(1738,294228008,3),(1738,309949208,2),(1738,325677609,3),(1738,341398809,2),(1738,357127209,3),(1738,372848410,2),(1738,388576810,3),(1738,404902811,2),(1738,420026411,3),(1738,436352412,2),(1738,452080812,3),(1738,467802012,2),(1738,483530412,3),(1738,499251613,2),(1738,514980013,3),(1738,530701213,2),(1738,544615213,3),(1738,562150813,2),(1738,576064814,3),(1738,594205214,2),(1738,607514414,3),(1738,625654814,2),(1738,638964015,3),(1738,657104415,2),(1738,671018416,3),(1738,688554016,2),(1738,702468016,3),(1738,720003617,2),(1738,733917617,3),(1738,752058018,2),(1738,765367218,3),(1738,783507619,2),(1738,796816819,3),(1738,814957219,2),(1738,828871220,3),(1738,846406820,2),(1738,860320820,3),(1738,877856421,2),(1738,891770421,3),(1738,909306021,2),(1738,923220022,3),(1738,941360422,2),(1738,954669622,3),(1738,972810022,2),(1738,986119222,3),(1738,1004259622,2),(1738,1018173622,3),(1738,1035709222,2),(1738,1049623222,3),(1738,1067158822,2),(1738,1081072822,3),(1738,1099213222,2),(1738,1112522422,3),(1738,1130662822,2),(1738,1143972023,3),(1738,1162112423,2),(1738,1175421623,3),(1738,1193562023,2),(1738,1207476023,3),(1738,1225011623,2),(1738,1238925624,3),(1738,1256461224,2),(1738,1268560824,3),(1738,1289120424,2),(1738,1300010424,3),(1738,1320570024,2),(1738,1331460024,3),(1738,1352019625,2),(1738,1362909625,3),(1738,1383469225,2),(1738,1394359225,3),(1738,1414918825,2),(1738,1425808825,3),(1738,1446368426,2),(1738,1457863226,3),(1738,1478422826,2),(1738,1489312827,3),(1738,1509872427,2),(1738,1520762427,3),(1738,1541322027,2),(1738,1552212027,3),(1738,1572771627,2),(1738,1583661627,3),(1738,1604221227,2),(1738,1615716027,3),(1738,1636275627,2),(1738,1647165627,3),(1738,1667725227,2),(1738,1678615227,3),(1738,1699174827,2),(1738,1710064827,3),(1738,1730624427,2),(1738,1741514427,3),(1738,1762074027,2),(1738,1772964027,3),(1738,1793523627,2),(1738,1805018427,3),(1738,1825578027,2),(1738,1836468027,3),(1738,1857027627,2),(1738,1867917627,3),(1738,1888477227,2),(1738,1899367227,3),(1738,1919926827,2),(1738,1930816827,3),(1738,1951376427,2),(1738,1962871227,3),(1738,1983430827,2),(1738,1994320827,3),(1738,2014880427,2),(1738,2025770427,3),(1738,2046330027,2),(1738,2057220027,3),(1738,2077779627,2),(1738,2088669627,3),(1738,2109229227,2),(1738,2120119227,3),(1738,2140678827,2),(1739,-2147483648,0),(1739,-1514739600,1),(1739,-1343066400,2),(1739,-1234807200,1),(1739,-1220292000,2),(1739,-1207159200,1),(1739,-1191344400,2),(1739,-873828000,1),(1739,-661539600,3),(1739,28800,1),(1739,828867620,4),(1739,846403220,1),(1739,860317220,4),(1739,877852821,1),(1739,891766821,4),(1739,909302421,1),(1739,923216422,4),(1739,941356822,1),(1739,954666022,4),(1739,972806422,1),(1739,989139622,4),(1739,1001836822,1),(1739,1018170022,4),(1739,1035705622,1),(1739,1049619622,4),(1739,1067155222,1),(1739,1081069222,4),(1739,1099209622,1),(1739,1112518822,4),(1739,1130659222,1),(1739,1143968423,4),(1739,1162108823,1),(1739,1175418023,4),(1739,1193558423,1),(1739,1207472423,4),(1739,1225008023,1),(1739,1238922024,4),(1739,1256457624,1),(1739,1270371624,4),(1739,1288512024,1),(1739,1301821224,4),(1739,1319961624,1),(1739,1333270824,4),(1739,1351411225,1),(1739,1365325225,4),(1739,1382860825,1),(1739,1396774825,4),(1739,1414310425,1),(1739,1428224425,4),(1739,1445760026,1),(1739,1459674026,4),(1739,1477814426,1),(1739,1491123627,4),(1739,1509264027,1),(1739,1522573227,4),(1739,1540713627,1),(1739,1554627627,4),(1739,1572163227,1),(1739,1586077227,4),(1739,1603612827,1),(1739,1617526827,4),(1739,1635667227,1),(1739,1648976427,4),(1739,1667116827,1),(1739,1680426027,4),(1739,1698566427,1),(1739,1712480427,4),(1739,1730016027,1),(1739,1743930027,4),(1739,1761465627,1),(1739,1775379627,4),(1739,1792915227,1),(1739,1806829227,4),(1739,1824969627,1),(1739,1838278827,4),(1739,1856419227,1),(1739,1869728427,4),(1739,1887868827,1),(1739,1901782827,4),(1739,1919318427,1),(1739,1933232427,4),(1739,1950768027,1),(1739,1964682027,4),(1739,1982822427,1),(1739,1996131627,4),(1739,2014272027,1),(1739,2027581227,4),(1739,2045721627,1),(1739,2059030827,4),(1739,2077171227,1),(1739,2091085227,4),(1739,2108620827,1),(1739,2122534827,4),(1739,2140070427,1),(1740,-2147483648,0),(1740,-1514739600,1),(1740,-1343066400,2),(1740,-1234807200,1),(1740,-1220292000,2),(1740,-1207159200,1),(1740,-1191344400,2),(1740,-975261600,3),(1740,-963169200,2),(1740,-917114400,3),(1740,-907354800,2),(1740,-821901600,4),(1740,-810068400,2),(1740,-627501600,3),(1740,-612990000,2),(1740,828864020,3),(1740,846399620,2),(1740,860313620,3),(1740,877849221,2),(1740,891763221,3),(1740,909298821,2),(1740,923212822,3),(1740,941353222,2),(1740,954662422,3),(1740,972802822,2),(1740,989136022,3),(1740,1001833222,2),(1740,1018166422,3),(1740,1035702022,2),(1740,1049616022,3),(1740,1067151622,2),(1740,1081065622,3),(1740,1099206022,2),(1740,1112515222,3),(1740,1130655622,2),(1740,1143964823,3),(1740,1162105223,2),(1740,1175414423,3),(1740,1193554823,2),(1740,1207468823,3),(1740,1225004423,2),(1740,1238918424,3),(1740,1256454024,2),(1740,1270368024,3),(1740,1288508424,2),(1740,1301817624,3),(1740,1319958024,2),(1740,1333267224,3),(1740,1351407625,2),(1740,1365321625,3),(1740,1382857225,2),(1740,1396771225,3),(1740,1414306825,2),(1740,1428220825,3),(1740,1445756426,2),(1740,1459670426,3),(1740,1477810826,2),(1740,1491120027,3),(1740,1509260427,2),(1740,1522569627,3),(1740,1540710027,2),(1740,1554624027,3),(1740,1572159627,2),(1740,1586073627,3),(1740,1603609227,2),(1740,1617523227,3),(1740,1635663627,2),(1740,1648972827,3),(1740,1667113227,2),(1740,1680422427,3),(1740,1698562827,2),(1740,1712476827,3),(1740,1730012427,2),(1740,1743926427,3),(1740,1761462027,2),(1740,1775376027,3),(1740,1792911627,2),(1740,1806825627,3),(1740,1824966027,2),(1740,1838275227,3),(1740,1856415627,2),(1740,1869724827,3),(1740,1887865227,2),(1740,1901779227,3),(1740,1919314827,2),(1740,1933228827,3),(1740,1950764427,2),(1740,1964678427,3),(1740,1982818827,2),(1740,1996128027,3),(1740,2014268427,2),(1740,2027577627,3),(1740,2045718027,2),(1740,2059027227,3),(1740,2077167627,2),(1740,2091081627,3),(1740,2108617227,2),(1740,2122531227,3),(1740,2140066827,2),(1741,-2147483648,2),(1741,-1330335000,1),(1741,-1320057000,2),(1741,-1300699800,3),(1741,-1287396000,2),(1741,-1269250200,3),(1741,-1255946400,2),(1741,-1237800600,3),(1741,-1224496800,2),(1741,-1206351000,3),(1741,-1192442400,2),(1741,-1174901400,3),(1741,-1160992800,2),(1741,-1143451800,3),(1741,-1125914400,2),(1741,-1112607000,3),(1741,-1094464800,2),(1741,-1081157400,3),(1741,-1063015200,2),(1741,-1049707800,3),(1741,-1031565600,2),(1741,-1018258200,3),(1741,-1000116000,2),(1741,-986808600,3),(1741,-968061600,2),(1741,-955359000,3),(1741,-936612000,2),(1741,-923304600,3),(1741,-757425600,6),(1741,152632803,4),(1741,162309604,5),(1741,183477604,4),(1741,194968805,5),(1741,215532005,4),(1741,226418406,5),(1741,246981606,4),(1741,257868007,5),(1741,278431207,4),(1741,289317608,5),(1741,309880808,4),(1741,320767209,5),(1741,341330409,4),(1741,352216809,5),(1741,372780010,4),(1741,384271210,5),(1741,404834411,4),(1741,415720811,5),(1741,436284012,4),(1741,447170412,5),(1741,467733612,4),(1741,478620012,5),(1741,499183213,4),(1741,510069613,5),(1741,530632813,4),(1741,541519213,5),(1741,562082413,4),(1741,573573614,5),(1741,594136814,4),(1741,605023214,5),(1741,623772014,4),(1741,637682415,5),(1741,655221615,4),(1741,669132016,5),(1741,686671216,4),(1741,700581616,5),(1741,718120817,4),(1741,732636017,5),(1741,749570418,4),(1741,764085618,5),(1741,781020019,4),(1741,795535219,5),(1741,812469619,4),(1741,826984820,5),(1741,844524020,4),(1741,858434420,5),(1741,875973621,4),(1741,889884021,5),(1741,907423221,4),(1741,921938422,5),(1741,938872822,4),(1741,953388022,5),(1741,970322422,4),(1741,984837622,5),(1741,1002376822,4),(1741,1016287222,5),(1741,1033826422,4),(1741,1047736822,5),(1741,1065276022,4),(1741,1079791222,5),(1741,1096725622,4),(1741,1111240822,5),(1741,1128175222,4),(1741,1142690423,5),(1741,1159624823,4),(1741,1174140023,5),(1741,1191074423,4),(1741,1207404023,5),(1741,1222524023,4),(1741,1238853624,5),(1741,1253973624,4),(1741,1270303224,5),(1741,1285423224,4),(1741,1301752824,5),(1741,1316872824,4),(1741,1333202424,5),(1741,1348927225,4),(1741,1365256825,5),(1741,1380376825,4),(1741,1396706425,5),(1741,1411826425,4),(1741,1428156025,5),(1741,1443276026,4),(1741,1459605626,5),(1741,1474725626,4),(1741,1491055227,5),(1741,1506175227,4),(1741,1522504827,5),(1741,1538229627,4),(1741,1554559227,5),(1741,1569679227,4),(1741,1586008827,5),(1741,1601128827,4),(1741,1617458427,5),(1741,1632578427,4),(1741,1648908027,5),(1741,1664028027,4),(1741,1680357627,5),(1741,1695477627,4),(1741,1712412027,5),(1741,1727532027,4),(1741,1743861627,5),(1741,1758981627,4),(1741,1775311227,5),(1741,1790431227,4),(1741,1806760827,5),(1741,1821880827,4),(1741,1838210427,5),(1741,1853330427,4),(1741,1869660027,5),(1741,1885384827,4),(1741,1901714427,5),(1741,1916834427,4),(1741,1933164027,5),(1741,1948284027,4),(1741,1964613627,5),(1741,1979733627,4),(1741,1996063227,5),(1741,2011183227,4),(1741,2027512827,5),(1741,2042632827,4),(1741,2058962427,5),(1741,2074687227,4),(1741,2091016827,5),(1741,2106136827,4),(1741,2122466427,5),(1741,2137586427,4),(1742,-2147483648,1),(1742,-757426500,4),(1742,152632803,2),(1742,162309604,3),(1742,183477604,2),(1742,194968805,3),(1742,215532005,2),(1742,226418406,3),(1742,246981606,2),(1742,257868007,3),(1742,278431207,2),(1742,289317608,3),(1742,309880808,2),(1742,320767209,3),(1742,341330409,2),(1742,352216809,3),(1742,372780010,2),(1742,384271210,3),(1742,404834411,2),(1742,415720811,3),(1742,436284012,2),(1742,447170412,3),(1742,467733612,2),(1742,478620012,3),(1742,499183213,2),(1742,510069613,3),(1742,530632813,2),(1742,541519213,3),(1742,562082413,2),(1742,573573614,3),(1742,594136814,2),(1742,605023214,3),(1742,623772014,2),(1742,637682415,3),(1742,655221615,2),(1742,669132016,3),(1742,686671216,2),(1742,700581616,3),(1742,718120817,2),(1742,732636017,3),(1742,749570418,2),(1742,764085618,3),(1742,781020019,2),(1742,795535219,3),(1742,812469619,2),(1742,826984820,3),(1742,844524020,2),(1742,858434420,3),(1742,875973621,2),(1742,889884021,3),(1742,907423221,2),(1742,921938422,3),(1742,938872822,2),(1742,953388022,3),(1742,970322422,2),(1742,984837622,3),(1742,1002376822,2),(1742,1016287222,3),(1742,1033826422,2),(1742,1047736822,3),(1742,1065276022,2),(1742,1079791222,3),(1742,1096725622,2),(1742,1111240822,3),(1742,1128175222,2),(1742,1142690423,3),(1742,1159624823,2),(1742,1174140023,3),(1742,1191074423,2),(1742,1207404023,3),(1742,1222524023,2),(1742,1238853624,3),(1742,1253973624,2),(1742,1270303224,3),(1742,1285423224,2),(1742,1301752824,3),(1742,1316872824,2),(1742,1333202424,3),(1742,1348927225,2),(1742,1365256825,3),(1742,1380376825,2),(1742,1396706425,3),(1742,1411826425,2),(1742,1428156025,3),(1742,1443276026,2),(1742,1459605626,3),(1742,1474725626,2),(1742,1491055227,3),(1742,1506175227,2),(1742,1522504827,3),(1742,1538229627,2),(1742,1554559227,3),(1742,1569679227,2),(1742,1586008827,3),(1742,1601128827,2),(1742,1617458427,3),(1742,1632578427,2),(1742,1648908027,3),(1742,1664028027,2),(1742,1680357627,3),(1742,1695477627,2),(1742,1712412027,3),(1742,1727532027,2),(1742,1743861627,3),(1742,1758981627,2),(1742,1775311227,3),(1742,1790431227,2),(1742,1806760827,3),(1742,1821880827,2),(1742,1838210427,3),(1742,1853330427,2),(1742,1869660027,3),(1742,1885384827,2),(1742,1901714427,3),(1742,1916834427,2),(1742,1933164027,3),(1742,1948284027,2),(1742,1964613627,3),(1742,1979733627,2),(1742,1996063227,3),(1742,2011183227,2),(1742,2027512827,3),(1742,2042632827,2),(1742,2058962427,3),(1742,2074687227,2),(1742,2091016827,3),(1742,2106136827,2),(1742,2122466427,3),(1742,2137586427,2),(1743,-2147483648,2),(1743,-1633273200,1),(1743,-1615132800,2),(1743,-1601823600,1),(1743,-1583683200,2),(1743,-1570374000,1),(1743,-1551628800,2),(1743,-1538924400,1),(1743,-1534089600,2),(1743,-880210800,3),(1743,-769395600,4),(1743,-765388800,2),(1743,-147884400,1),(1743,-131558400,2),(1743,-116434800,1),(1743,-100108800,2),(1743,-84380400,1),(1743,-68659200,2),(1743,-52930800,1),(1743,-37209600,2),(1743,-21481200,1),(1743,-5760000,2),(1743,9968400,1),(1743,25689600,2),(1743,41418000,1),(1743,57744000,2),(1743,73472400,1),(1743,89193601,2),(1743,104922002,1),(1743,120643202,2),(1743,126694803,1),(1743,152092803,2),(1743,162378004,1),(1743,183542404,2),(1743,199270805,1),(1743,215596805,2),(1743,230720406,1),(1743,247046406,2),(1743,262774807,1),(1743,278496007,2),(1743,294224408,1),(1743,309945608,2),(1743,325674009,1),(1743,341395209,2),(1743,357123609,1),(1743,372844810,2),(1743,388573210,1),(1743,404899211,2),(1743,420022811,1),(1743,436348812,2),(1743,452077212,1),(1743,467798412,2),(1743,483526812,1),(1743,499248013,2),(1743,514976413,1),(1743,530697613,2),(1743,544611613,1),(1743,562147213,2),(1743,576061214,1),(1743,594201614,2),(1743,607510814,1),(1743,625651214,2),(1743,638960415,1),(1743,657100815,2),(1743,671014816,1),(1743,688550416,2),(1743,702464416,1),(1743,720000017,2),(1743,733914017,1),(1743,752054418,2),(1743,765363618,1),(1743,783504019,2),(1743,796813219,1),(1743,814953619,2),(1743,828867620,1),(1743,846403220,2),(1743,860317220,1),(1743,877852821,2),(1743,891766821,1),(1743,909302421,2),(1743,923216422,1),(1743,941356822,2),(1743,954666022,1),(1743,972806422,2),(1743,986115622,1),(1743,1004256022,2),(1743,1018170022,1),(1743,1035705622,2),(1743,1049619622,1),(1743,1067155222,2),(1743,1081069222,1),(1743,1099209622,2),(1743,1112518822,1),(1743,1130659222,2),(1743,1143968423,1),(1743,1162108823,2),(1743,1173603623,1),(1743,1194163223,2),(1743,1205053223,1),(1743,1225612823,2),(1743,1236502824,1),(1743,1257062424,2),(1743,1268557224,1),(1743,1289116824,2),(1743,1300006824,1),(1743,1320566424,2),(1743,1331456424,1),(1743,1352016025,2),(1743,1362906025,1),(1743,1383465625,2),(1743,1394355625,1),(1743,1414915225,2),(1743,1425805225,1),(1743,1446364826,2),(1743,1457859626,1),(1743,1478419226,2),(1743,1489309227,1),(1743,1509868827,2),(1743,1520758827,1),(1743,1541318427,2),(1743,1552208427,1),(1743,1572768027,2),(1743,1583658027,1),(1743,1604217627,2),(1743,1615712427,1),(1743,1636272027,2),(1743,1647162027,1),(1743,1667721627,2),(1743,1678611627,1),(1743,1699171227,2),(1743,1710061227,1),(1743,1730620827,2),(1743,1741510827,1),(1743,1762070427,2),(1743,1772960427,1),(1743,1793520027,2),(1743,1805014827,1),(1743,1825574427,2),(1743,1836464427,1),(1743,1857024027,2),(1743,1867914027,1),(1743,1888473627,2),(1743,1899363627,1),(1743,1919923227,2),(1743,1930813227,1),(1743,1951372827,2),(1743,1962867627,1),(1743,1983427227,2),(1743,1994317227,1),(1743,2014876827,2),(1743,2025766827,1),(1743,2046326427,2),(1743,2057216427,1),(1743,2077776027,2),(1743,2088666027,1),(1743,2109225627,2),(1743,2120115627,1),(1743,2140675227,2),(1744,-2147483648,2),(1744,-1600675200,1),(1744,-1585904400,2),(1744,-933667200,1),(1744,-922093200,2),(1744,-908870400,1),(1744,-888829200,2),(1744,-881049600,1),(1744,-767869200,2),(1744,-745833600,1),(1744,-733827600,2),(1744,-716889600,1),(1744,-699613200,2),(1744,-683884800,1),(1744,-670669200,2),(1744,-652348800,1),(1744,-650019600,2),(1744,515527213,1),(1744,527014813,2),(1744,545162413,1),(1744,558464413,2),(1744,577216814,1),(1744,589914014,2),(1744,608666414,1),(1744,621968414,2),(1744,640116015,1),(1744,653418015,2),(1744,671565616,1),(1744,684867616,2),(1745,-1633269600,0),(1745,-1615129200,1),(1745,-1601820000,0),(1745,-1583679600,1),(1745,-880207200,2),(1745,-769395600,3),(1745,-765385200,1),(1745,-84376800,0),(1745,-68655600,1),(1745,-52927200,0),(1745,-37206000,1),(1745,-21477600,0),(1745,-5756400,1),(1745,9972000,0),(1745,25693200,1),(1745,41421600,0),(1745,57747600,1),(1745,73476000,0),(1745,89197201,1),(1745,104925602,0),(1745,120646802,1),(1745,126698403,0),(1745,152096403,1),(1745,162381604,0),(1745,183546004,1),(1745,199274405,0),(1745,215600405,1),(1745,230724006,0),(1745,247050006,1),(1745,262778407,0),(1745,278499607,1),(1745,294228008,0),(1745,309949208,1),(1745,325677609,0),(1745,341398809,1),(1745,357127209,0),(1745,372848410,1),(1745,388576810,0),(1745,404902811,1),(1745,420026411,0),(1745,436352412,1),(1745,452080812,0),(1745,467802012,1),(1745,483530412,0),(1745,499251613,1),(1745,514980013,0),(1745,530701213,1),(1745,544615213,0),(1745,562150813,1),(1745,576064814,0),(1745,594205214,1),(1745,607514414,0),(1745,625654814,1),(1745,638964015,0),(1745,657104415,1),(1745,671018416,0),(1745,688554016,1),(1745,702468016,0),(1745,720003617,1),(1745,733917617,0),(1745,752058018,1),(1745,765367218,0),(1745,783507619,1),(1745,796816819,0),(1745,814957219,1),(1745,828871220,0),(1745,846406820,1),(1745,860320820,0),(1745,877856421,1),(1745,891770421,0),(1745,909306021,1),(1745,923220022,0),(1745,941360422,1),(1745,954669622,0),(1745,972810022,1),(1745,986119222,0),(1745,1004259622,1),(1745,1018173622,0),(1745,1035709222,1),(1745,1049623222,0),(1745,1067158822,1),(1745,1081072822,0),(1745,1099213222,1),(1745,1112522422,0),(1745,1130662822,1),(1745,1143972023,0),(1745,1162112423,1),(1745,1173607223,0),(1745,1194166823,1),(1745,1205056823,0),(1745,1225616423,1),(1745,1236506424,0),(1745,1257066024,1),(1745,1268560824,0),(1745,1289120424,1),(1745,1300010424,0),(1745,1320570024,1),(1745,1331460024,0),(1745,1352019625,1),(1745,1362909625,0),(1745,1383469225,1),(1745,1394359225,0),(1745,1414918825,1),(1745,1425808825,0),(1745,1446368426,1),(1745,1457863226,0),(1745,1478422826,1),(1745,1489312827,0),(1745,1509872427,1),(1745,1520762427,0),(1745,1541322027,1),(1745,1552212027,0),(1745,1572771627,1),(1745,1583661627,0),(1745,1604221227,1),(1745,1615716027,0),(1745,1636275627,1),(1745,1647165627,0),(1745,1667725227,1),(1745,1678615227,0),(1745,1699174827,1),(1745,1710064827,0),(1745,1730624427,1),(1745,1741514427,0),(1745,1762074027,1),(1745,1772964027,0),(1745,1793523627,1),(1745,1805018427,0),(1745,1825578027,1),(1745,1836468027,0),(1745,1857027627,1),(1745,1867917627,0),(1745,1888477227,1),(1745,1899367227,0),(1745,1919926827,1),(1745,1930816827,0),(1745,1951376427,1),(1745,1962871227,0),(1745,1983430827,1),(1745,1994320827,0),(1745,2014880427,1),(1745,2025770427,0),(1745,2046330027,1),(1745,2057220027,0),(1745,2077779627,1),(1745,2088669627,0),(1745,2109229227,1),(1745,2120119227,0),(1745,2140678827,1),(1746,-2147483648,1),(1746,-1861878784,2),(1746,-631110600,4),(1746,1285498824,3),(1746,1301752824,4),(1746,1316872824,3),(1746,1325239224,6),(1746,1333202424,5),(1746,1348927225,6),(1746,1365256825,5),(1746,1380376825,6),(1746,1396706425,5),(1746,1411826425,6),(1746,1428156025,5),(1746,1443276026,6),(1746,1459605626,5),(1746,1474725626,6),(1746,1491055227,5),(1746,1506175227,6),(1746,1522504827,5),(1746,1538229627,6),(1746,1554559227,5),(1746,1569679227,6),(1746,1586008827,5),(1746,1601128827,6),(1746,1617458427,5),(1746,1632578427,6),(1746,1648908027,5),(1746,1664028027,6),(1746,1680357627,5),(1746,1695477627,6),(1746,1712412027,5),(1746,1727532027,6),(1746,1743861627,5),(1746,1758981627,6),(1746,1775311227,5),(1746,1790431227,6),(1746,1806760827,5),(1746,1821880827,6),(1746,1838210427,5),(1746,1853330427,6),(1746,1869660027,5),(1746,1885384827,6),(1746,1901714427,5),(1746,1916834427,6),(1746,1933164027,5),(1746,1948284027,6),(1746,1964613627,5),(1746,1979733627,6),(1746,1996063227,5),(1746,2011183227,6),(1746,2027512827,5),(1746,2042632827,6),(1746,2058962427,5),(1746,2074687227,6),(1746,2091016827,5),(1746,2106136827,6),(1746,2122466427,5),(1746,2137586427,6),(1747,-2147483648,2),(1747,-1330335000,1),(1747,-1320057000,2),(1747,-1300699800,3),(1747,-1287396000,2),(1747,-1269250200,3),(1747,-1255946400,2),(1747,-1237800600,3),(1747,-1224496800,2),(1747,-1206351000,3),(1747,-1192442400,2),(1747,-1174901400,3),(1747,-1160992800,2),(1747,-1143451800,3),(1747,-1125914400,2),(1747,-1112607000,3),(1747,-1094464800,2),(1747,-1081157400,3),(1747,-1063015200,2),(1747,-1049707800,3),(1747,-1031565600,2),(1747,-1018258200,3),(1747,-1000116000,2),(1747,-986808600,3),(1747,-968061600,2),(1747,-955359000,3),(1747,-936612000,2),(1747,-923304600,3),(1747,-757425600,6),(1747,152632803,4),(1747,162309604,5),(1747,183477604,4),(1747,194968805,5),(1747,215532005,4),(1747,226418406,5),(1747,246981606,4),(1747,257868007,5),(1747,278431207,4),(1747,289317608,5),(1747,309880808,4),(1747,320767209,5),(1747,341330409,4),(1747,352216809,5),(1747,372780010,4),(1747,384271210,5),(1747,404834411,4),(1747,415720811,5),(1747,436284012,4),(1747,447170412,5),(1747,467733612,4),(1747,478620012,5),(1747,499183213,4),(1747,510069613,5),(1747,530632813,4),(1747,541519213,5),(1747,562082413,4),(1747,573573614,5),(1747,594136814,4),(1747,605023214,5),(1747,623772014,4),(1747,637682415,5),(1747,655221615,4),(1747,669132016,5),(1747,686671216,4),(1747,700581616,5),(1747,718120817,4),(1747,732636017,5),(1747,749570418,4),(1747,764085618,5),(1747,781020019,4),(1747,795535219,5),(1747,812469619,4),(1747,826984820,5),(1747,844524020,4),(1747,858434420,5),(1747,875973621,4),(1747,889884021,5),(1747,907423221,4),(1747,921938422,5),(1747,938872822,4),(1747,953388022,5),(1747,970322422,4),(1747,984837622,5),(1747,1002376822,4),(1747,1016287222,5),(1747,1033826422,4),(1747,1047736822,5),(1747,1065276022,4),(1747,1079791222,5),(1747,1096725622,4),(1747,1111240822,5),(1747,1128175222,4),(1747,1142690423,5),(1747,1159624823,4),(1747,1174140023,5),(1747,1191074423,4),(1747,1207404023,5),(1747,1222524023,4),(1747,1238853624,5),(1747,1253973624,4),(1747,1270303224,5),(1747,1285423224,4),(1747,1301752824,5),(1747,1316872824,4),(1747,1333202424,5),(1747,1348927225,4),(1747,1365256825,5),(1747,1380376825,4),(1747,1396706425,5),(1747,1411826425,4),(1747,1428156025,5),(1747,1443276026,4),(1747,1459605626,5),(1747,1474725626,4),(1747,1491055227,5),(1747,1506175227,4),(1747,1522504827,5),(1747,1538229627,4),(1747,1554559227,5),(1747,1569679227,4),(1747,1586008827,5),(1747,1601128827,4),(1747,1617458427,5),(1747,1632578427,4),(1747,1648908027,5),(1747,1664028027,4),(1747,1680357627,5),(1747,1695477627,4),(1747,1712412027,5),(1747,1727532027,4),(1747,1743861627,5),(1747,1758981627,4),(1747,1775311227,5),(1747,1790431227,4),(1747,1806760827,5),(1747,1821880827,4),(1747,1838210427,5),(1747,1853330427,4),(1747,1869660027,5),(1747,1885384827,4),(1747,1901714427,5),(1747,1916834427,4),(1747,1933164027,5),(1747,1948284027,4),(1747,1964613627,5),(1747,1979733627,4),(1747,1996063227,5),(1747,2011183227,4),(1747,2027512827,5),(1747,2042632827,4),(1747,2058962427,5),(1747,2074687227,4),(1747,2091016827,5),(1747,2106136827,4),(1747,2122466427,5),(1747,2137586427,4),(1748,-2147483648,1),(1748,-868010400,2),(1748,-768906000,1),(1748,1419696025,3),(1749,-2147483648,1),(1749,-757426500,4),(1749,152632803,2),(1749,162309604,3),(1749,183477604,2),(1749,194968805,3),(1749,215532005,2),(1749,226418406,3),(1749,246981606,2),(1749,257868007,3),(1749,278431207,2),(1749,289317608,3),(1749,309880808,2),(1749,320767209,3),(1749,341330409,2),(1749,352216809,3),(1749,372780010,2),(1749,384271210,3),(1749,404834411,2),(1749,415720811,3),(1749,436284012,2),(1749,447170412,3),(1749,467733612,2),(1749,478620012,3),(1749,499183213,2),(1749,510069613,3),(1749,530632813,2),(1749,541519213,3),(1749,562082413,2),(1749,573573614,3),(1749,594136814,2),(1749,605023214,3),(1749,623772014,2),(1749,637682415,3),(1749,655221615,2),(1749,669132016,3),(1749,686671216,2),(1749,700581616,3),(1749,718120817,2),(1749,732636017,3),(1749,749570418,2),(1749,764085618,3),(1749,781020019,2),(1749,795535219,3),(1749,812469619,2),(1749,826984820,3),(1749,844524020,2),(1749,858434420,3),(1749,875973621,2),(1749,889884021,3),(1749,907423221,2),(1749,921938422,3),(1749,938872822,2),(1749,953388022,3),(1749,970322422,2),(1749,984837622,3),(1749,1002376822,2),(1749,1016287222,3),(1749,1033826422,2),(1749,1047736822,3),(1749,1065276022,2),(1749,1079791222,3),(1749,1096725622,2),(1749,1111240822,3),(1749,1128175222,2),(1749,1142690423,3),(1749,1159624823,2),(1749,1174140023,3),(1749,1191074423,2),(1749,1207404023,3),(1749,1222524023,2),(1749,1238853624,3),(1749,1253973624,2),(1749,1270303224,3),(1749,1285423224,2),(1749,1301752824,3),(1749,1316872824,2),(1749,1333202424,3),(1749,1348927225,2),(1749,1365256825,3),(1749,1380376825,2),(1749,1396706425,3),(1749,1411826425,2),(1749,1428156025,3),(1749,1443276026,2),(1749,1459605626,3),(1749,1474725626,2),(1749,1491055227,3),(1749,1506175227,2),(1749,1522504827,3),(1749,1538229627,2),(1749,1554559227,3),(1749,1569679227,2),(1749,1586008827,3),(1749,1601128827,2),(1749,1617458427,3),(1749,1632578427,2),(1749,1648908027,3),(1749,1664028027,2),(1749,1680357627,3),(1749,1695477627,2),(1749,1712412027,3),(1749,1727532027,2),(1749,1743861627,3),(1749,1758981627,2),(1749,1775311227,3),(1749,1790431227,2),(1749,1806760827,3),(1749,1821880827,2),(1749,1838210427,3),(1749,1853330427,2),(1749,1869660027,3),(1749,1885384827,2),(1749,1901714427,3),(1749,1916834427,2),(1749,1933164027,3),(1749,1948284027,2),(1749,1964613627,3),(1749,1979733627,2),(1749,1996063227,3),(1749,2011183227,2),(1749,2027512827,3),(1749,2042632827,2),(1749,2058962427,3),(1749,2074687227,2),(1749,2091016827,3),(1749,2106136827,2),(1749,2122466427,3),(1749,2137586427,2),(1750,-2147483648,1),(1750,-1743674400,2),(1750,-1606813200,1),(1750,-907408800,2),(1750,-770634000,1),(1751,-2147483648,1),(1751,-1178124152,4),(1751,-36619200,2),(1751,-23922000,3),(1751,-3355200,2),(1751,7527600,3),(1751,24465600,2),(1751,37767600,3),(1751,55915200,2),(1751,69217200,3),(1751,87969601,2),(1751,100666802,3),(1751,118209602,2),(1751,132116403,3),(1751,150868803,2),(1751,163566004,3),(1751,182318404,2),(1751,195620405,3),(1751,213768005,2),(1751,227070006,3),(1751,245217606,2),(1751,258519607,3),(1751,277272007,2),(1751,289969208,3),(1751,308721608,2),(1751,321418809,3),(1751,340171209,2),(1751,353473209,3),(1751,371620810,2),(1751,384922810,5),(1751,403070411,6),(1751,416372411,5),(1751,434520012,6),(1751,447822012,5),(1751,466574412,6),(1751,479271612,5),(1751,498024013,6),(1751,510721213,5),(1751,529473613,6),(1751,545194813,5),(1751,560923213,6),(1751,574225214,5),(1751,592372814,6),(1751,605674814,5),(1751,624427214,6),(1751,637124415,5),(1751,653457615,6),(1751,668574016,5),(1751,687326416,6),(1751,700628416,5),(1751,718776017,6),(1751,732078017,5),(1751,750225618,6),(1751,763527618,5),(1751,781675219,6),(1751,794977219,5),(1751,813729619,6),(1751,826426820,5),(1751,845179220,6),(1751,859690820,5),(1751,876628821,6),(1751,889930821,5),(1751,906868821,6),(1751,923194822,5),(1751,939528022,6),(1751,952830022,5),(1751,971582422,6),(1751,984279622,5),(1751,1003032022,6),(1751,1015729222,5),(1751,1034481622,6),(1751,1047178822,5),(1751,1065931222,6),(1751,1079233222,5),(1751,1097380822,6),(1751,1110682822,5),(1751,1128830422,6),(1751,1142132423,5),(1751,1160884823,6),(1751,1173582023,5),(1751,1192334423,6),(1751,1206846023,5),(1751,1223784023,6),(1751,1237086024,5),(1751,1255233624,6),(1751,1270350024,5),(1751,1286683224,6),(1751,1304823624,5),(1751,1313899224,6),(1751,1335668424,5),(1751,1346558425,6),(1751,1367118025,5),(1751,1378612825,6),(1751,1398567625,5),(1751,1410062425,6),(1751,1463281226,5),(1751,1471147226,6),(1751,1494730827,5),(1751,1502596827,6),(1751,1526180427,5),(1751,1534046427,6),(1751,1554606027,5),(1751,1567915227,6),(1751,1586055627,5),(1751,1599364827,6),(1751,1617505227,5),(1751,1630814427,6),(1751,1648954827,5),(1751,1662264027,6),(1751,1680404427,5),(1751,1693713627,6),(1751,1712458827,5),(1751,1725768027,6),(1751,1743908427,5),(1751,1757217627,6),(1751,1775358027,5),(1751,1788667227,6),(1751,1806807627,5),(1751,1820116827,6),(1751,1838257227,5),(1751,1851566427,6),(1751,1870311627,5),(1751,1883016027,6),(1751,1901761227,5),(1751,1915070427,6),(1751,1933210827,5),(1751,1946520027,6),(1751,1964660427,5),(1751,1977969627,6),(1751,1996110027,5),(1751,2009419227,6),(1751,2027559627,5),(1751,2040868827,6),(1751,2059614027,5),(1751,2072318427,6),(1751,2091063627,5),(1751,2104372827,6),(1751,2122513227,5),(1751,2135822427,6),(1752,-2147483648,0),(1752,-1829387596,4),(1752,125409602,1),(1752,133876803,2),(1752,433256412,3),(1752,448977612,4),(1752,464706012,3),(1752,480427212,4),(1752,496760413,3),(1752,511876813,4),(1752,528210013,3),(1752,543931213,4),(1752,559659613,3),(1752,575380814,4),(1752,591109214,3),(1752,606830414,4),(1752,622558814,3),(1752,638280015,4),(1752,654008415,3),(1752,669729616,4),(1752,686062816,3),(1752,696340816,4),(1752,719931617,3),(1752,727790417,4),(1753,-2147483648,1),(1753,307627208,2),(1753,788871619,3),(1754,-2147483648,1),(1754,1325242824,2),(1755,-2147483648,0),(1755,-1709985344,2),(1755,909842421,1),(1755,920124022,2),(1755,941896822,1),(1755,951573622,2),(1755,1259416824,1),(1755,1269698424,2),(1755,1287842424,1),(1755,1299333624,2),(1755,1319292024,1),(1755,1327154424,2),(1755,1350741625,1),(1755,1358604025,2),(1755,1382796025,1),(1755,1390050025,2),(1755,1414850425,1),(1755,1421503225,2),(1755,1446300026,1),(1755,1452952826,2),(1755,1478354426,1),(1755,1484402427,2),(1755,1509804027,1),(1755,1515852027,2),(1755,1541253627,1),(1755,1547301627,2),(1755,1573308027,1),(1755,1578751227,2),(1755,1608386427,1),(1755,1610805627,2),(1755,1636812027,1),(1755,1642255227,2),(1755,1668261627,1),(1755,1673704827,2),(1755,1699711227,1),(1755,1705154427,2),(1755,1731160827,1),(1755,1736604027,2),(1755,1762610427,1),(1755,1768658427,2),(1755,1794060027,1),(1755,1800108027,2),(1755,1826114427,1),(1755,1831557627,2),(1755,1857564027,1),(1755,1863007227,2),(1755,1889013627,1),(1755,1894456827,2),(1755,1920463227,1),(1755,1925906427,2),(1755,1951912827,1),(1755,1957960827,2),(1755,1983967227,1),(1755,1989410427,2),(1755,2015416827,1),(1755,2020860027,2),(1755,2046866427,1),(1755,2052309627,2),(1755,2078316027,1),(1755,2083759227,2),(1755,2109765627,1),(1755,2115813627,2),(1755,2141215227,1),(1755,2147263227,2),(1757,-2147483648,0),(1757,-1230746496,1),(1757,504939613,3),(1757,722930417,2),(1757,728888417,3),(1758,-2147483648,0),(1758,-1806678012,1),(1759,-2147483648,0),(1759,-1806748788,1),(1760,-2147483648,1),(1760,-885549600,2),(1760,-802256400,1),(1760,-331891200,3),(1760,-281610000,1),(1760,-73728000,3),(1760,-29415540,1),(1760,-16704000,3),(1760,-10659600,1),(1760,9907200,3),(1760,21394800,1),(1760,41356800,3),(1760,52844400,1),(1760,124819202,3),(1760,130863603,1),(1760,201888005,3),(1760,209487665,1),(1760,230659206,3),(1760,241542006,1),(1760,977493622,4),(1761,-2147483648,1),(1761,-1157283000,2),(1761,-1155436200,1),(1761,-880198200,3),(1761,-769395600,4),(1761,-765376200,1),(1761,-712150200,5),(1762,-2147483648,1),(1762,-1157283000,2),(1762,-1155436200,1),(1762,-880198200,3),(1762,-769395600,4),(1762,-765376200,1),(1762,-712150200,5),(1763,-2147483648,1),(1763,307622408,2),(1763,788868019,3),(1764,-2147483648,1),(1764,-1743678000,2),(1764,-1606813200,1),(1764,-1041418800,3),(1764,-907408800,2),(1764,-770634000,1),(1764,-7988400,4),(1764,915105621,1),(1765,-2147483648,1),(1765,-1041418800,2),(1765,-907408800,3),(1765,-817462800,1),(1765,-7988400,4),(1765,745934418,5),(1766,-2147483648,1),(1766,-1743678000,2),(1766,-1606813200,1),(1766,-1041418800,3),(1766,-907408800,2),(1766,-818067600,1),(1766,-7988400,4),(1767,-2147483648,0),(1767,-1806676920,1),(1768,-2147483648,1),(1768,-1861879032,2),(1769,-2147483648,0),(1769,-1545131260,1),(1769,-862918200,2),(1769,-767350800,1),(1769,287418608,3),(1770,-2147483648,1),(1770,-599575200,2),(1770,276089407,3),(1771,-2147483648,1),(1771,-599656320,2),(1771,152029803,3),(1771,162916204,4),(1771,1443882626,5),(1771,1561899627,7),(1771,1570287627,6),(1771,1586012427,5),(1771,1601737227,6),(1771,1617462027,5),(1771,1633186827,6),(1771,1648911627,5),(1771,1664636427,6),(1771,1680361227,5),(1771,1696086027,6),(1771,1712415627,5),(1771,1728140427,6),(1771,1743865227,5),(1771,1759590027,6),(1771,1775314827,5),(1771,1791039627,6),(1771,1806764427,5),(1771,1822489227,6),(1771,1838214027,5),(1771,1853938827,6),(1771,1869663627,5),(1771,1885993227,6),(1771,1901718027,5),(1771,1917442827,6),(1771,1933167627,5),(1771,1948892427,6),(1771,1964617227,5),(1771,1980342027,6),(1771,1996066827,5),(1771,2011791627,6),(1771,2027516427,5),(1771,2043241227,6),(1771,2058966027,5),(1771,2075295627,6),(1771,2091020427,5),(1771,2106745227,6),(1771,2122470027,5),(1771,2138194827,6),(1772,-2147483648,0),(1772,-1829387148,2),(1772,250002006,1),(1772,257342407,2),(1772,281451607,1),(1772,288878408,2),(1772,849366020,3),(1772,857228420,4),(1773,-2147483648,1),(1773,-1861879032,2),(1775,-2147483648,1),(1775,893665821,2),(1776,-2147483648,1),(1776,-1743678000,2),(1776,-1606813200,1),(1776,-1041418800,3),(1776,-907408800,2),(1776,-770634000,1),(1777,-2147483648,1),(1777,-1743678000,2),(1777,-1606813200,1),(1777,-1041418800,3),(1777,-907408800,2),(1777,-770634000,1),(1779,-2147483648,1),(1779,279714607,3),(1779,289387808,2),(1779,309952808,3),(1779,320837409,2),(1779,341402409,3),(1779,352287009,2),(1779,372852010,3),(1779,384341410,2),(1779,404906411,3),(1779,415791011,2),(1779,436356012,3),(1779,447240612,2),(1779,467805612,3),(1779,478690212,2),(1779,499255213,3),(1779,510139813,2),(1779,530704813,3),(1779,541589413,2),(1779,562154413,3),(1779,573643814,2),(1779,594208814,3),(1779,605093414,2),(1779,625658414,3),(1779,636543015,2),(1779,657108015,3),(1779,667992616,2),(1780,-2147483648,1),(1780,-885549600,2),(1780,-802256400,1),(1780,-331891200,3),(1780,-281610000,1),(1780,-73728000,3),(1780,-29415540,1),(1780,-16704000,3),(1780,-10659600,1),(1780,9907200,3),(1780,21394800,1),(1780,41356800,3),(1780,52844400,1),(1780,124819202,3),(1780,130863603,1),(1780,201888005,3),(1780,209487665,1),(1780,230659206,3),(1780,241542006,1),(1780,977493622,4),(1781,-2147483648,1),(1781,-1861879032,2),(1782,-2147483648,0),(1782,-1806674504,1),(1784,-2147483648,1),(1784,-915193200,2),(1784,939214822,3),(1784,953384422,4),(1784,973342822,5),(1784,980596822,2),(1784,1004792422,5),(1784,1012046422,2),(1784,1478350826,5),(1784,1484398827,2),(1785,-2147483648,1),(1785,-1743674400,2),(1785,-1606813200,1),(1785,-907408800,2),(1785,-770634000,1),(1788,-2147483648,1),(1788,-1743674400,2),(1788,-1606813200,1),(1788,-907408800,2),(1788,-770634000,1),(1789,-2147483648,1),(1789,-1717032240,3),(1789,-1693706400,2),(1789,-1680483600,3),(1789,-1663455600,4),(1789,-1650150000,5),(1789,-1632006000,4),(1789,-1618700400,8),(1789,-1600473600,6),(1789,-1587168000,7),(1789,-1501725600,3),(1789,-931734000,2),(1789,-857257200,5),(1789,-844556400,4),(1789,-828226800,5),(1789,-812502000,4),(1789,-796874400,2),(1789,-796608000,3),(1789,-778726800,2),(1789,-762660000,3),(1789,-748486800,4),(1789,-733273200,5),(1789,-715215600,4),(1789,-701910000,5),(1789,-684975600,4),(1789,-670460400,5),(1789,-654130800,4),(1789,-639010800,5),(1789,-397094400,4),(1789,-386812800,5),(1789,-371088000,4),(1789,-355363200,5),(1789,-334195200,4),(1789,-323308800,5),(1789,-307584000,4),(1789,-291859200,5),(1789,-271296000,4),(1789,-260409600,5),(1789,-239846400,4),(1789,-228960000,5),(1789,-208396800,4),(1789,-197510400,5),(1789,-176342400,4),(1789,-166060800,5),(1789,220921205,3),(1789,228873606,4),(1789,243993606,5),(1789,260323207,4),(1789,276048007,5),(1789,291772808,4),(1789,307497608,5),(1789,323827209,4),(1789,338947209,5),(1789,354672009,4),(1789,370396810,5),(1789,386121610,4),(1789,401846411,5),(1789,417571211,4),(1789,433296012,5),(1789,449020812,4),(1789,465350412,5),(1789,481075212,4),(1789,496800013,5),(1789,512524813,4),(1789,528249613,5),(1789,543974413,4),(1789,559699213,5),(1789,567990013,3),(1789,575427614,9),(1789,591152414,10),(1789,606877214,9),(1789,622602014,10),(1789,638326815,9),(1789,654656415,10),(1789,670381216,9),(1789,686106016,10),(1789,701830816,9),(1789,717555617,10),(1789,733280417,9),(1789,749005218,10),(1789,764730018,9),(1789,780454819,10),(1789,796179619,9),(1789,811904419,10),(1789,828234020,9),(1789,846378020,10),(1789,859683620,9),(1789,877827621,10),(1789,891133221,9),(1789,909277221,10),(1789,922582822,9),(1789,941331622,10),(1789,954032422,9),(1789,972781222,10),(1789,985482022,9),(1789,1004230822,10),(1789,1017536422,9),(1789,1035680422,10),(1789,1048986022,9),(1789,1067130022,10),(1789,1080435622,9),(1789,1099184422,10),(1789,1111885222,9),(1789,1130634022,10),(1789,1143334823,9),(1789,1162083623,10),(1789,1174784423,9),(1789,1193533223,10),(1789,1206838823,9),(1789,1224982823,10),(1789,1238288424,9),(1789,1256432424,10),(1789,1269738024,9),(1789,1288486824,10),(1789,1301187624,9),(1789,1319936424,10),(1789,1332637224,9),(1789,1351386025,10),(1789,1364691625,9),(1789,1382835625,10),(1789,1396141225,9),(1789,1414285225,10),(1789,1427590825,9),(1789,1445734826,10),(1789,1459040426,9),(1789,1477789226,10),(1789,1490490027,9),(1789,1509238827,10),(1789,1521939627,9),(1789,1540688427,10),(1789,1553994027,9),(1789,1572138027,10),(1789,1585443627,9),(1789,1603587627,10),(1789,1616893227,9),(1789,1635642027,10),(1789,1648342827,9),(1789,1667091627,10),(1789,1679792427,9),(1789,1698541227,10),(1789,1711846827,9),(1789,1729990827,10),(1789,1743296427,9),(1789,1761440427,10),(1789,1774746027,9),(1789,1792890027,10),(1789,1806195627,9),(1789,1824944427,10),(1789,1837645227,9),(1789,1856394027,10),(1789,1869094827,9),(1789,1887843627,10),(1789,1901149227,9),(1789,1919293227,10),(1789,1932598827,9),(1789,1950742827,10),(1789,1964048427,9),(1789,1982797227,10),(1789,1995498027,9),(1789,2014246827,10),(1789,2026947627,9),(1789,2045696427,10),(1789,2058397227,9),(1789,2077146027,10),(1789,2090451627,9),(1789,2108595627,10),(1789,2121901227,9),(1789,2140045227,10),(1790,-2147483648,0),(1790,-1830384000,6),(1790,-1689555600,1),(1790,-1677801600,2),(1790,-1667437200,3),(1790,-1647738000,4),(1790,-1635814800,3),(1790,-1616202000,4),(1790,-1604365200,3),(1790,-1584666000,4),(1790,-1572742800,3),(1790,-1553043600,4),(1790,-1541206800,3),(1790,-1521507600,4),(1790,-1442451600,3),(1790,-1426813200,4),(1790,-1379293200,3),(1790,-1364778000,4),(1790,-1348448400,3),(1790,-1333328400,4),(1790,-1316394000,3),(1790,-1301274000,4),(1790,-1284339600,3),(1790,-1269824400,4),(1790,-1221440400,3),(1790,-1206925200,4),(1790,-1191200400,3),(1790,-1175475600,4),(1790,-1127696400,3),(1790,-1111971600,4),(1790,-1096851600,3),(1790,-1080522000,4),(1790,-1063587600,3),(1790,-1049072400,4),(1790,-1033347600,3),(1790,-1017622800,4),(1790,-1002502800,3),(1790,-986173200,4),(1790,-969238800,3),(1790,-950490000,4),(1790,-942022800,3),(1790,-922669200,4),(1790,-906944400,3),(1790,-891133200,4),(1790,-877309200,3),(1790,-873684000,5),(1790,-864007200,3),(1790,-857955600,4),(1790,-845859600,3),(1790,-842839200,5),(1790,-831348000,3),(1790,-825901200,4),(1790,-814410000,3),(1790,-810784800,5),(1790,-799898400,3),(1790,-794451600,4),(1790,-782960400,3),(1790,-779335200,5),(1790,-768448800,3),(1790,-763002000,4),(1790,-749091600,3),(1790,-733366800,4),(1790,-717631200,3),(1790,-701906400,4),(1790,-686181600,3),(1790,-670456800,4),(1790,-654732000,3),(1790,-639007200,4),(1790,-591832800,3),(1790,-575503200,4),(1790,-559778400,3),(1790,-544053600,4),(1790,-528328800,3),(1790,-512604000,4),(1790,-496879200,3),(1790,-481154400,4),(1790,-465429600,3),(1790,-449704800,4),(1790,-433980000,3),(1790,-417650400,4),(1790,-401925600,3),(1790,-386200800,4),(1790,-370476000,3),(1790,-354751200,4),(1790,-339026400,3),(1790,-323301600,4),(1790,-307576800,3),(1790,-291852000,4),(1790,-276127200,3),(1790,-260402400,4),(1790,-244677600,3),(1790,-228348000,4),(1790,-212623200,3),(1790,-196898400,4),(1790,-181173600,3),(1790,-165448800,4),(1790,-149724000,3),(1790,-133999200,4),(1790,-118274400,7),(1790,212544005,2),(1790,228268806,3),(1790,243993606,4),(1790,260323207,3),(1790,276048007,4),(1790,291772808,3),(1790,307501208,4),(1790,323222409,3),(1790,338950809,4),(1790,354675609,3),(1790,370400410,4),(1790,386125210,3),(1790,401850011,4),(1790,417578411,3),(1790,433299612,4),(1790,449024412,3),(1790,465354012,4),(1790,481078812,3),(1790,496803613,4),(1790,512528413,3),(1790,528253213,4),(1790,543978013,3),(1790,559702813,4),(1790,575427614,3),(1790,591152414,4),(1790,606877214,3),(1790,622602014,4),(1790,638326815,3),(1790,654656415,4),(1790,670381216,3),(1790,686106016,4),(1790,701830816,3),(1790,717555617,8),(1790,733280417,9),(1790,749005218,8),(1790,764730018,9),(1790,780454819,8),(1790,796179619,9),(1790,811904419,8),(1790,828234020,10),(1790,846378020,6),(1790,859683620,10),(1790,877827621,6),(1790,891133221,10),(1790,909277221,6),(1790,922582822,10),(1790,941331622,6),(1790,954032422,10),(1790,972781222,6),(1790,985482022,10),(1790,1004230822,6),(1790,1017536422,10),(1790,1035680422,6),(1790,1048986022,10),(1790,1067130022,6),(1790,1080435622,10),(1790,1099184422,6),(1790,1111885222,10),(1790,1130634022,6),(1790,1143334823,10),(1790,1162083623,6),(1790,1174784423,10),(1790,1193533223,6),(1790,1206838823,10),(1790,1224982823,6),(1790,1238288424,10),(1790,1256432424,6),(1790,1269738024,10),(1790,1288486824,6),(1790,1301187624,10),(1790,1319936424,6),(1790,1332637224,10),(1790,1351386025,6),(1790,1364691625,10),(1790,1382835625,6),(1790,1396141225,10),(1790,1414285225,6),(1790,1427590825,10),(1790,1445734826,6),(1790,1459040426,10),(1790,1477789226,6),(1790,1490490027,10),(1790,1509238827,6),(1790,1521939627,10),(1790,1540688427,6),(1790,1553994027,10),(1790,1572138027,6),(1790,1585443627,10),(1790,1603587627,6),(1790,1616893227,10),(1790,1635642027,6),(1790,1648342827,10),(1790,1667091627,6),(1790,1679792427,10),(1790,1698541227,6),(1790,1711846827,10),(1790,1729990827,6),(1790,1743296427,10),(1790,1761440427,6),(1790,1774746027,10),(1790,1792890027,6),(1790,1806195627,10),(1790,1824944427,6),(1790,1837645227,10),(1790,1856394027,6),(1790,1869094827,10),(1790,1887843627,6),(1790,1901149227,10),(1790,1919293227,6),(1790,1932598827,10),(1790,1950742827,6),(1790,1964048427,10),(1790,1982797227,6),(1790,1995498027,10),(1790,2014246827,6),(1790,2026947627,10),(1790,2045696427,6),(1790,2058397227,10),(1790,2077146027,6),(1790,2090451627,10),(1790,2108595627,6),(1790,2121901227,10),(1790,2140045227,6),(1791,-2147483648,1),(1791,-1017820800,2),(1791,-766224000,1),(1791,-745833600,3),(1791,-733827600,1),(1791,-716889600,3),(1791,-699613200,1),(1791,-683884800,3),(1791,-670669200,1),(1791,-652348800,3),(1791,-639133200,1),(1791,-620812800,3),(1791,-607597200,1),(1791,-589276800,3),(1791,-576061200,1),(1791,-562924800,3),(1791,-541760400,1),(1791,-528710400,3),(1791,-510224400,1),(1791,-497174400,3),(1791,-478688400,1),(1791,-465638400,3),(1791,-449830800,1),(1791,-434016000,3),(1791,-418208400,1),(1791,-402480000,3),(1791,-386672400,1),(1791,-370944000,3),(1791,-355136400,1),(1791,-339408000,3),(1791,-323600400,1),(1791,-302515200,3),(1791,-291978000,1),(1791,-270979200,3),(1791,-260442000,1),(1791,133977603,3),(1791,149785203,1),(1791,165513604,3),(1791,181321204,1),(1791,299606408,3),(1791,307551608,1),(1792,-2147483648,0),(1792,-1948782472,1),(1792,-1830414600,2),(1792,-767350800,4),(1792,-681210000,3),(1792,-672228000,4),(1792,-654771600,3),(1792,-640864800,4),(1792,-623408400,3),(1792,-609415200,4),(1792,-588848400,3),(1792,-577965600,4),(1792,-498128400,1),(1792,-462702600,5),(1792,-451733400,1),(1792,-429784200,5),(1792,-418296600,1),(1792,-399544200,5),(1792,-387451800,1),(1792,-368094600,5),(1792,-356002200,1),(1792,-336645000,5),(1792,-324552600,1),(1792,-305195400,5),(1792,-293103000,1),(1792,-264933000,4),(1792,547578013,3),(1792,560883613,4),(1792,579027614,3),(1792,592333214,4),(1793,-2147483648,1),(1793,-2038200925,2),(1793,-1167634800,3),(1793,-1073028000,4),(1793,-894180000,5),(1793,-879665400,6),(1793,-767005200,5),(1793,378664210,7),(1794,-2147483648,1),(1794,-873057600,3),(1794,-769395600,2),(1794,-765399600,1),(1795,-2147483648,0),(1795,-2131645536,2),(1795,-1696276800,1),(1795,-1680469200,2),(1795,-1632074400,1),(1795,-1615143600,2),(1795,-1566763200,1),(1795,-1557090000,2),(1795,-1535486400,1),(1795,-1524949200,2),(1795,-1504468800,1),(1795,-1493413200,2),(1795,-1472414400,1),(1795,-1461963600,2),(1795,-1440964800,1),(1795,-1429390800,2),(1795,-1409515200,1),(1795,-1396731600,2),(1795,-1376856000,1),(1795,-1366491600,2),(1795,-1346616000,1),(1795,-1333832400,2),(1795,-1313956800,1),(1795,-1303678800,2),(1795,-1282507200,1),(1795,-1272661200,2),(1795,-1251057600,1),(1795,-1240088400,2),(1795,-1219608000,1),(1795,-1207429200,2),(1795,-1188763200,1),(1795,-1175979600,2),(1795,-1157313600,1),(1795,-1143925200,2),(1795,-1124049600,1),(1795,-1113771600,2),(1795,-1091390400,1),(1795,-1081026000,2),(1795,-1059854400,1),(1795,-1050786000,2),(1795,-1030910400,1),(1795,-1018126800,2),(1795,-999460800,1),(1795,-986677200,2),(1795,-965592000,1),(1795,-955227600,2),(1795,-935956800,1),(1795,-923173200,2),(1795,-904507200,1),(1795,-891723600,2),(1795,-880221600,3),(1795,-769395600,4),(1795,-765399600,2),(1795,-747252000,1),(1795,-733950000,2),(1795,-715802400,1),(1795,-702500400,2),(1795,-684352800,1),(1795,-671050800,2),(1795,-652903200,1),(1795,-639601200,2),(1795,-589399200,1),(1795,-576097200,2),(1795,-557949600,1),(1795,-544647600,2),(1795,-526500000,1),(1795,-513198000,2),(1795,-495050400,1),(1795,-481748400,2),(1795,-431546400,1),(1795,-418244400,2),(1795,-400096800,1),(1795,-386794800,2),(1795,-368647200,1),(1795,-355345200,2),(1795,-337197600,1),(1795,-323895600,2),(1795,-242244000,1),(1795,-226522800,2),(1795,-210794400,1),(1795,-195073200,2),(1795,-179344800,1),(1795,-163623600,2),(1795,-147895200,1),(1795,-131569200,2),(1795,-116445600,1),(1795,-100119600,2),(1795,-84391200,1),(1795,-68670000,2),(1795,-52941600,1),(1795,-37220400,2),(1795,-21492000,1),(1795,-5770800,2),(1795,9957600,1),(1795,25678800,2),(1795,41407200,1),(1795,57733200,2),(1795,73461600,1),(1795,89182801,2),(1795,104911202,1),(1795,120632402,2),(1795,136360803,1),(1795,152082003,2),(1795,167810404,1),(1795,183531604,2),(1795,199260005,1),(1795,215586005,2),(1795,230709606,1),(1795,247035606,2),(1795,262764007,1),(1795,278485207,2),(1795,294213608,1),(1795,309934808,2),(1795,325663209,1),(1795,341384409,2),(1795,357112809,1),(1795,372834010,2),(1795,388562410,1),(1795,404888411,2),(1795,420012011,1),(1795,436338012,2),(1795,452066412,1),(1795,467787612,2),(1795,483516012,1),(1795,499237213,2),(1795,514965613,1),(1795,530686813,2),(1795,544600813,1),(1795,562136413,2),(1795,576050414,1),(1795,594190814,2),(1795,607500014,1),(1795,625640414,2),(1795,638949615,1),(1795,657090015,2),(1795,671004016,1),(1795,688539616,2),(1795,702453616,1),(1795,719989217,2),(1795,733903217,1),(1795,752043618,2),(1795,765352818,1),(1795,783493219,2),(1795,796802419,1),(1795,814942819,2),(1795,828856820,1),(1795,846392420,2),(1795,860306420,1),(1795,877842021,2),(1795,891756021,1),(1795,909291621,2),(1795,923205622,1),(1795,941346022,2),(1795,954655222,1),(1795,972795622,2),(1795,986104822,1),(1795,1004245222,2),(1795,1018159222,1),(1795,1035694822,2),(1795,1049608822,1),(1795,1067144422,2),(1795,1081058422,1),(1795,1099198822,2),(1795,1112508022,1),(1795,1130648422,2),(1795,1143957623,1),(1795,1162098023,2),(1795,1173592823,1),(1795,1194152423,2),(1795,1205042423,1),(1795,1225602023,2),(1795,1236492024,1),(1795,1257051624,2),(1795,1268546424,1),(1795,1289106024,2),(1795,1299996024,1),(1795,1320555624,2),(1795,1331445624,1),(1795,1352005225,2),(1795,1362895225,1),(1795,1383454825,2),(1795,1394344825,1),(1795,1414904425,2),(1795,1425794425,1),(1795,1446354026,2),(1795,1457848826,1),(1795,1478408426,2),(1795,1489298427,1),(1795,1509858027,2),(1795,1520748027,1),(1795,1541307627,2),(1795,1552197627,1),(1795,1572757227,2),(1795,1583647227,1),(1795,1604206827,2),(1795,1615701627,1),(1795,1636261227,2),(1795,1647151227,1),(1795,1667710827,2),(1795,1678600827,1),(1795,1699160427,2),(1795,1710050427,1),(1795,1730610027,2),(1795,1741500027,1),(1795,1762059627,2),(1795,1772949627,1),(1795,1793509227,2),(1795,1805004027,1),(1795,1825563627,2),(1795,1836453627,1),(1795,1857013227,2),(1795,1867903227,1),(1795,1888462827,2),(1795,1899352827,1),(1795,1919912427,2),(1795,1930802427,1),(1795,1951362027,2),(1795,1962856827,1),(1795,1983416427,2),(1795,1994306427,1),(1795,2014866027,2),(1795,2025756027,1),(1795,2046315627,2),(1795,2057205627,1),(1795,2077765227,2),(1795,2088655227,1),(1795,2109214827,2),(1795,2120104827,1),(1795,2140664427,2),(1796,-2147483648,0),(1796,-2030202084,2),(1796,-1632063600,1),(1796,-1615132800,2),(1796,-1251651600,1),(1796,-1238349600,2),(1796,-1220202000,1),(1796,-1206900000,2),(1796,-1188752400,1),(1796,-1175450400,2),(1796,-1156698000,1),(1796,-1144000800,2),(1796,-1125248400,1),(1796,-1111946400,2),(1796,-1032714000,1),(1796,-1016992800,2),(1796,-1001264400,1),(1796,-986148000,2),(1796,-969814800,1),(1796,-954093600,2),(1796,-937760400,1),(1796,-922039200,2),(1796,-906310800,1),(1796,-890589600,2),(1796,-880210800,3),(1796,-769395600,4),(1796,-765388800,2),(1796,-748450800,1),(1796,-732729600,2),(1796,-715791600,1),(1796,-702489600,2),(1796,-684342000,1),(1796,-671040000,2),(1796,-652892400,1),(1796,-639590400,2),(1796,-620838000,1),(1796,-608140800,2),(1796,-589388400,1),(1796,-576086400,2),(1796,-557938800,1),(1796,-544636800,2),(1796,-526489200,1),(1796,-513187200,2),(1796,-495039600,1),(1796,-481737600,2),(1796,-463590000,1),(1796,-450288000,2),(1796,-431535600,1),(1796,-418233600,2),(1796,-400086000,1),(1796,-386784000,2),(1796,-337186800,1),(1796,-321465600,2),(1796,-305737200,5),(1797,-2147483648,2),(1797,-1633276800,1),(1797,-1615136400,2),(1797,-1601827200,1),(1797,-1583686800,2),(1797,-1563724800,1),(1797,-1551632400,2),(1797,-1538928000,1),(1797,-1520182800,2),(1797,-1504454400,1),(1797,-1491757200,2),(1797,-1473004800,1),(1797,-1459702800,2),(1797,-1441555200,1),(1797,-1428253200,2),(1797,-1410105600,1),(1797,-1396803600,2),(1797,-1378656000,1),(1797,-1365354000,2),(1797,-1347206400,1),(1797,-1333904400,2),(1797,-1315152000,1),(1797,-1301850000,2),(1797,-1283702400,1),(1797,-1270400400,2),(1797,-1252252800,1),(1797,-1238950800,2),(1797,-1220803200,1),(1797,-1207501200,2),(1797,-1189353600,1),(1797,-1176051600,2),(1797,-1157299200,1),(1797,-1144602000,2),(1797,-1125849600,1),(1797,-1112547600,2),(1797,-1094400000,1),(1797,-1081098000,2),(1797,-1067788800,3),(1797,-1045414800,2),(1797,-1031500800,1),(1797,-1018198800,2),(1797,-1000051200,1),(1797,-986749200,2),(1797,-967996800,1),(1797,-955299600,2),(1797,-936547200,1),(1797,-923245200,2),(1797,-905097600,1),(1797,-891795600,2),(1797,-880214400,4),(1797,-769395600,5),(1797,-765392400,2),(1797,-747244800,1),(1797,-733942800,2),(1797,-715795200,1),(1797,-702493200,2),(1797,-684345600,1),(1797,-671043600,2),(1797,-652896000,1),(1797,-639594000,2),(1797,-620841600,1),(1797,-608144400,2),(1797,-589392000,1),(1797,-576090000,2),(1797,-557942400,1),(1797,-544640400,2),(1797,-526492800,1),(1797,-513190800,2),(1797,-495043200,1),(1797,-481741200,2),(1797,-463593600,1),(1797,-447267600,2),(1797,-431539200,1),(1797,-415818000,2),(1797,-400089600,1),(1797,-384368400,2),(1797,-368640000,1),(1797,-352918800,2),(1797,-337190400,1),(1797,-321469200,2),(1797,-305740800,1),(1797,-289414800,2),(1797,-273686400,1),(1797,-257965200,2),(1797,-242236800,1),(1797,-226515600,2),(1797,-210787200,1),(1797,-195066000,2),(1797,-179337600,1),(1797,-163616400,2),(1797,-147888000,1),(1797,-131562000,2),(1797,-116438400,1),(1797,-100112400,2),(1797,-84384000,1),(1797,-68662800,2),(1797,-52934400,1),(1797,-37213200,2),(1797,-21484800,1),(1797,-5763600,2),(1797,9964800,1),(1797,25686000,2),(1797,41414400,1),(1797,57740400,2),(1797,73468800,1),(1797,89190001,2),(1797,104918402,1),(1797,120639602,2),(1797,126691203,1),(1797,152089203,2),(1797,162374404,1),(1797,183538804,2),(1797,199267205,1),(1797,215593205,2),(1797,230716806,1),(1797,247042806,2),(1797,262771207,1),(1797,278492407,2),(1797,294220808,1),(1797,309942008,2),(1797,325670409,1),(1797,341391609,2),(1797,357120009,1),(1797,372841210,2),(1797,388569610,1),(1797,404895611,2),(1797,420019211,1),(1797,436345212,2),(1797,452073612,1),(1797,467794812,2),(1797,483523212,1),(1797,499244413,2),(1797,514972813,1),(1797,530694013,2),(1797,544608013,1),(1797,562143613,2),(1797,576057614,1),(1797,594198014,2),(1797,607507214,1),(1797,625647614,2),(1797,638956815,1),(1797,657097215,2),(1797,671011216,1),(1797,688546816,2),(1797,702460816,1),(1797,719996417,2),(1797,733910417,1),(1797,752050818,2),(1797,765360018,1),(1797,783500419,2),(1797,796809619,1),(1797,814950019,2),(1797,828864020,1),(1797,846399620,2),(1797,860313620,1),(1797,877849221,2),(1797,891763221,1),(1797,909298821,2),(1797,923212822,1),(1797,941353222,2),(1797,954662422,1),(1797,972802822,2),(1797,986112022,1),(1797,1004252422,2),(1797,1018166422,1),(1797,1035702022,2),(1797,1049616022,1),(1797,1067151622,2),(1797,1081065622,1),(1797,1099206022,2),(1797,1112515222,1),(1797,1130655622,2),(1797,1143964823,1),(1797,1162105223,2),(1797,1173600023,1),(1797,1194159623,2),(1797,1205049623,1),(1797,1225609223,2),(1797,1236499224,1),(1797,1257058824,2),(1797,1268553624,1),(1797,1289113224,2),(1797,1300003224,1),(1797,1320562824,2),(1797,1331452824,1),(1797,1352012425,2),(1797,1362902425,1),(1797,1383462025,2),(1797,1394352025,1),(1797,1414911625,2),(1797,1425801625,1),(1797,1446361226,2),(1797,1457856026,1),(1797,1478415626,2),(1797,1489305627,1),(1797,1509865227,2),(1797,1520755227,1),(1797,1541314827,2),(1797,1552204827,1),(1797,1572764427,2),(1797,1583654427,1),(1797,1604214027,2),(1797,1615708827,1),(1797,1636268427,2),(1797,1647158427,1),(1797,1667718027,2),(1797,1678608027,1),(1797,1699167627,2),(1797,1710057627,1),(1797,1730617227,2),(1797,1741507227,1),(1797,1762066827,2),(1797,1772956827,1),(1797,1793516427,2),(1797,1805011227,1),(1797,1825570827,2),(1797,1836460827,1),(1797,1857020427,2),(1797,1867910427,1),(1797,1888470027,2),(1797,1899360027,1),(1797,1919919627,2),(1797,1930809627,1),(1797,1951369227,2),(1797,1962864027,1),(1797,1983423627,2),(1797,1994313627,1),(1797,2014873227,2),(1797,2025763227,1),(1797,2046322827,2),(1797,2057212827,1),(1797,2077772427,2),(1797,2088662427,1),(1797,2109222027,2),(1797,2120112027,1),(1797,2140671627,2),(1798,-2147483648,1),(1798,-1946918424,2),(1799,-2147483648,2),(1799,-1633280400,1),(1799,-1615140000,2),(1799,-1601830800,1),(1799,-1583690400,2),(1799,-1570381200,1),(1799,-1551636000,2),(1799,-1536512400,1),(1799,-1523210400,2),(1799,-1504458000,1),(1799,-1491760800,2),(1799,-1473008400,1),(1799,-1459706400,2),(1799,-1441558800,1),(1799,-1428256800,2),(1799,-1410109200,1),(1799,-1396807200,2),(1799,-1378659600,1),(1799,-1365357600,2),(1799,-1347210000,1),(1799,-1333908000,2),(1799,-1315155600,1),(1799,-1301853600,2),(1799,-1283706000,1),(1799,-1270404000,2),(1799,-1252256400,1),(1799,-1238954400,2),(1799,-1220806800,1),(1799,-1207504800,2),(1799,-1189357200,1),(1799,-1176055200,2),(1799,-1157302800,1),(1799,-1144605600,2),(1799,-1125853200,1),(1799,-1112551200,2),(1799,-1094403600,1),(1799,-1081101600,2),(1799,-1062954000,1),(1799,-1049652000,2),(1799,-1031504400,1),(1799,-1018202400,2),(1799,-1000054800,1),(1799,-986752800,2),(1799,-968000400,1),(1799,-955303200,2),(1799,-936550800,1),(1799,-923248800,2),(1799,-905101200,1),(1799,-891799200,2),(1799,-880218000,3),(1799,-769395600,4),(1799,-765396000,2),(1799,-747248400,1),(1799,-733946400,2),(1799,-715798800,1),(1799,-702496800,2),(1799,-684349200,1),(1799,-671047200,2),(1799,-652899600,1),(1799,-639597600,2),(1799,-620845200,1),(1799,-608148000,2),(1799,-589395600,1),(1799,-576093600,2),(1799,-557946000,1),(1799,-544644000,2),(1799,-526496400,1),(1799,-513194400,2),(1799,-495046800,1),(1799,-481744800,2),(1799,-463597200,1),(1799,-447271200,2),(1799,-431542800,1),(1799,-415821600,2),(1799,-400093200,1),(1799,-384372000,2),(1799,-368643600,1),(1799,-352922400,2),(1799,-337194000,1),(1799,-321472800,2),(1799,-305744400,1),(1799,-289418400,2),(1799,-273690000,1),(1799,-257968800,2),(1799,-242240400,1),(1799,-226519200,2),(1799,-210790800,1),(1799,-195069600,2),(1799,-179341200,1),(1799,-163620000,2),(1799,-147891600,1),(1799,-131565600,2),(1799,-116442000,1),(1799,-100116000,2),(1799,-84387600,1),(1799,-68666400,2),(1799,-52938000,1),(1799,-37216800,2),(1799,-21488400,1),(1799,-5767200,2),(1799,9961200,1),(1799,25682400,2),(1799,41410800,1),(1799,57736800,2),(1799,73465200,1),(1799,89186401,2),(1799,104914802,1),(1799,120636002,2),(1799,126687603,1),(1799,152085603,2),(1799,162370804,1),(1799,183535204,2),(1799,199263605,1),(1799,215589605,2),(1799,230713206,1),(1799,247039206,2),(1799,262767607,1),(1799,278488807,2),(1799,294217208,1),(1799,309938408,2),(1799,325666809,1),(1799,341388009,2),(1799,357116409,1),(1799,372837610,2),(1799,388566010,1),(1799,404892011,2),(1799,420015611,1),(1799,436341612,2),(1799,452070012,1),(1799,467791212,2),(1799,483519612,1),(1799,499240813,2),(1799,514969213,1),(1799,530690413,2),(1799,544604413,1),(1799,562140013,2),(1799,576054014,1),(1799,594194414,2),(1799,607503614,1),(1799,625644014,2),(1799,638953215,1),(1799,657093615,2),(1799,671007616,1),(1799,688543216,2),(1799,702457216,1),(1799,719992817,2),(1799,733906817,1),(1799,752047218,2),(1799,765356418,1),(1799,783496819,2),(1799,796806019,1),(1799,814946419,2),(1799,828860420,1),(1799,846396020,2),(1799,860310020,1),(1799,877845621,2),(1799,891759621,1),(1799,909295221,2),(1799,923209222,1),(1799,941349622,2),(1799,954658822,1),(1799,972799222,2),(1799,986108422,1),(1799,1004248822,2),(1799,1018162822,1),(1799,1035698422,2),(1799,1049612422,1),(1799,1067148022,2),(1799,1081062022,1),(1799,1099202422,2),(1799,1112511622,1),(1799,1130652022,2),(1799,1143961223,1),(1799,1162101623,2),(1799,1173596423,1),(1799,1194156023,2),(1799,1205046023,1),(1799,1225605623,2),(1799,1236495624,1),(1799,1257055224,2),(1799,1268550024,1),(1799,1289109624,2),(1799,1299999624,1),(1799,1320559224,2),(1799,1331449224,1),(1799,1352008825,2),(1799,1362898825,1),(1799,1383458425,2),(1799,1394348425,1),(1799,1414908025,2),(1799,1425798025,1),(1799,1446357626,2),(1799,1457852426,1),(1799,1478412026,2),(1799,1489302027,1),(1799,1509861627,2),(1799,1520751627,1),(1799,1541311227,2),(1799,1552201227,1),(1799,1572760827,2),(1799,1583650827,1),(1799,1604210427,2),(1799,1615705227,1),(1799,1636264827,2),(1799,1647154827,1),(1799,1667714427,2),(1799,1678604427,1),(1799,1699164027,2),(1799,1710054027,1),(1799,1730613627,2),(1799,1741503627,1),(1799,1762063227,2),(1799,1772953227,1),(1799,1793512827,2),(1799,1805007627,1),(1799,1825567227,2),(1799,1836457227,1),(1799,1857016827,2),(1799,1867906827,1),(1799,1888466427,2),(1799,1899356427,1),(1799,1919916027,2),(1799,1930806027,1),(1799,1951365627,2),(1799,1962860427,1),(1799,1983420027,2),(1799,1994310027,1),(1799,2014869627,2),(1799,2025759627,1),(1799,2046319227,2),(1799,2057209227,1),(1799,2077768827,2),(1799,2088658827,1),(1799,2109218427,2),(1799,2120108427,1),(1799,2140668027,2),(1800,-2147483648,1),(1800,-1157283000,2),(1800,-1155436200,1),(1800,-880198200,3),(1800,-769395600,4),(1800,-765376200,1),(1800,-712150200,5),(1801,-2147483648,2),(1801,-1633273200,1),(1801,-1615132800,2),(1801,-1601823600,1),(1801,-1583683200,2),(1801,-880210800,3),(1801,-820519140,2),(1801,-812653140,3),(1801,-796845540,2),(1801,-84380400,1),(1801,-68659200,2),(1802,-2147483648,2),(1802,-1633273200,1),(1802,-1615132800,2),(1802,-1601823600,1),(1802,-1583683200,2),(1802,-1570374000,1),(1802,-1551628800,2),(1802,-1538924400,1),(1802,-1534089600,2),(1802,-880210800,3),(1802,-769395600,4),(1802,-765388800,2),(1802,-147884400,1),(1802,-131558400,2),(1802,-116434800,1),(1802,-100108800,2),(1802,-84380400,1),(1802,-68659200,2),(1802,-52930800,1),(1802,-37209600,2),(1802,-21481200,1),(1802,-5760000,2),(1802,9968400,1),(1802,25689600,2),(1802,41418000,1),(1802,57744000,2),(1802,73472400,1),(1802,89193601,2),(1802,104922002,1),(1802,120643202,2),(1802,126694803,1),(1802,152092803,2),(1802,162378004,1),(1802,183542404,2),(1802,199270805,1),(1802,215596805,2),(1802,230720406,1),(1802,247046406,2),(1802,262774807,1),(1802,278496007,2),(1802,294224408,1),(1802,309945608,2),(1802,325674009,1),(1802,341395209,2),(1802,357123609,1),(1802,372844810,2),(1802,388573210,1),(1802,404899211,2),(1802,420022811,1),(1802,436348812,2),(1802,452077212,1),(1802,467798412,2),(1802,483526812,1),(1802,499248013,2),(1802,514976413,1),(1802,530697613,2),(1802,544611613,1),(1802,562147213,2),(1802,576061214,1),(1802,594201614,2),(1802,607510814,1),(1802,625651214,2),(1802,638960415,1),(1802,657100815,2),(1802,671014816,1),(1802,688550416,2),(1802,702464416,1),(1802,720000017,2),(1802,733914017,1),(1802,752054418,2),(1802,765363618,1),(1802,783504019,2),(1802,796813219,1),(1802,814953619,2),(1802,828867620,1),(1802,846403220,2),(1802,860317220,1),(1802,877852821,2),(1802,891766821,1),(1802,909302421,2),(1802,923216422,1),(1802,941356822,2),(1802,954666022,1),(1802,972806422,2),(1802,986115622,1),(1802,1004256022,2),(1802,1018170022,1),(1802,1035705622,2),(1802,1049619622,1),(1802,1067155222,2),(1802,1081069222,1),(1802,1099209622,2),(1802,1112518822,1),(1802,1130659222,2),(1802,1143968423,1),(1802,1162108823,2),(1802,1173603623,1),(1802,1194163223,2),(1802,1205053223,1),(1802,1225612823,2),(1802,1236502824,1),(1802,1257062424,2),(1802,1268557224,1),(1802,1289116824,2),(1802,1300006824,1),(1802,1320566424,2),(1802,1331456424,1),(1802,1352016025,2),(1802,1362906025,1),(1802,1383465625,2),(1802,1394355625,1),(1802,1414915225,2),(1802,1425805225,1),(1802,1446364826,2),(1802,1457859626,1),(1802,1478419226,2),(1802,1489309227,1),(1802,1509868827,2),(1802,1520758827,1),(1802,1541318427,2),(1802,1552208427,1),(1802,1572768027,2),(1802,1583658027,1),(1802,1604217627,2),(1802,1615712427,1),(1802,1636272027,2),(1802,1647162027,1),(1802,1667721627,2),(1802,1678611627,1),(1802,1699171227,2),(1802,1710061227,1),(1802,1730620827,2),(1802,1741510827,1),(1802,1762070427,2),(1802,1772960427,1),(1802,1793520027,2),(1802,1805014827,1),(1802,1825574427,2),(1802,1836464427,1),(1802,1857024027,2),(1802,1867914027,1),(1802,1888473627,2),(1802,1899363627,1),(1802,1919923227,2),(1802,1930813227,1),(1802,1951372827,2),(1802,1962867627,1),(1802,1983427227,2),(1802,1994317227,1),(1802,2014876827,2),(1802,2025766827,1),(1802,2046326427,2),(1802,2057216427,1),(1802,2077776027,2),(1802,2088666027,1),(1802,2109225627,2),(1802,2120115627,1),(1802,2140675227,2),(1803,-2147483648,1),(1803,893665821,2),(1804,-2147483648,2),(1804,-1633269600,1),(1804,-1615129200,2),(1804,-1601820000,1),(1804,-1583679600,2),(1804,-880207200,3),(1804,-769395600,4),(1804,-765385200,2),(1804,-687967140,1),(1804,-662655600,2),(1804,-620838000,1),(1804,-608137200,2),(1804,-589388400,1),(1804,-576082800,2),(1804,-557938800,1),(1804,-544633200,2),(1804,-526489200,1),(1804,-513183600,2),(1804,-495039600,1),(1804,-481734000,2),(1804,-463590000,1),(1804,-450284400,2),(1804,-431535600,1),(1804,-418230000,2),(1804,-400086000,1),(1804,-386780400,2),(1804,-368636400,1),(1804,-355330800,2),(1804,-337186800,1),(1804,-323881200,2),(1804,-305737200,1),(1804,-292431600,2),(1804,-273682800,1),(1804,-260982000,2),(1804,-242233200,1),(1804,-226508400,2),(1804,-210783600,1),(1804,-195058800,2),(1804,-179334000,1),(1804,-163609200,2),(1804,-147884400,1),(1804,-131554800,2),(1804,-116434800,1),(1804,-100105200,2),(1804,-84376800,1),(1804,-68655600,2),(1804,-52927200,1),(1804,-37206000,2),(1804,-21477600,1),(1804,-5756400,2),(1804,9972000,1),(1804,25693200,2),(1804,41421600,1),(1804,57747600,2),(1804,73476000,1),(1804,89197201,2),(1804,104925602,1),(1804,120646802,2),(1804,126698403,1),(1804,152096403,2),(1804,162381604,1),(1804,183546004,2),(1804,199274405,1),(1804,215600405,2),(1804,230724006,1),(1804,247050006,2),(1804,262778407,1),(1804,278499607,2),(1804,294228008,1),(1804,309949208,2),(1804,325677609,1),(1804,341398809,2),(1804,357127209,1),(1804,372848410,2),(1804,388576810,1),(1804,404902811,2),(1804,420026411,1),(1804,436352412,2),(1804,452080812,1),(1804,467802012,2),(1804,483530412,1),(1804,499251613,2),(1804,514980013,1),(1804,530701213,2),(1804,544615213,1),(1804,562150813,2),(1804,576064814,1),(1804,594205214,2),(1804,607514414,1),(1804,625654814,2),(1804,638964015,1),(1804,657104415,2),(1804,671018416,1),(1804,688554016,2),(1804,702468016,1),(1804,720003617,2),(1804,733917617,1),(1804,752058018,2),(1804,765367218,1),(1804,783507619,2),(1804,796816819,1),(1804,814957219,2),(1804,828871220,1),(1804,846406820,2),(1804,860320820,1),(1804,877856421,2),(1804,891770421,1),(1804,909306021,2),(1804,923220022,1),(1804,941360422,2),(1804,954669622,1),(1804,972810022,2),(1804,986119222,1),(1804,1004259622,2),(1804,1018173622,1),(1804,1035709222,2),(1804,1049623222,1),(1804,1067158822,2),(1804,1081072822,1),(1804,1099213222,2),(1804,1112522422,1),(1804,1130662822,2),(1804,1143972023,1),(1804,1162112423,2),(1804,1173607223,1),(1804,1194166823,2),(1804,1205056823,1),(1804,1225616423,2),(1804,1236506424,1),(1804,1257066024,2),(1804,1268560824,1),(1804,1289120424,2),(1804,1300010424,1),(1804,1320570024,2),(1804,1331460024,1),(1804,1352019625,2),(1804,1362909625,1),(1804,1383469225,2),(1804,1394359225,1),(1804,1414918825,2),(1804,1425808825,1),(1804,1446368426,2),(1804,1457863226,1),(1804,1478422826,2),(1804,1489312827,1),(1804,1509872427,2),(1804,1520762427,1),(1804,1541322027,2),(1804,1552212027,1),(1804,1572771627,2),(1804,1583661627,1),(1804,1604221227,2),(1804,1615716027,1),(1804,1636275627,2),(1804,1647165627,1),(1804,1667725227,2),(1804,1678615227,1),(1804,1699174827,2),(1804,1710064827,1),(1804,1730624427,2),(1804,1741514427,1),(1804,1762074027,2),(1804,1772964027,1),(1804,1793523627,2),(1804,1805018427,1),(1804,1825578027,2),(1804,1836468027,1),(1804,1857027627,2),(1804,1867917627,1),(1804,1888477227,2),(1804,1899367227,1),(1804,1919926827,2),(1804,1930816827,1),(1804,1951376427,2),(1804,1962871227,1),(1804,1983430827,2),(1804,1994320827,1),(1804,2014880427,2),(1804,2025770427,1),(1804,2046330027,2),(1804,2057220027,1),(1804,2077779627,2),(1804,2088669627,1),(1804,2109229227,2),(1804,2120119227,1),(1804,2140678827,2),(1805,-2147483648,0),(1805,-1806678012,1),(1806,-2147483648,1),(1806,-880200000,2),(1806,-769395600,3),(1806,-765378000,1),(1806,-86882400,4),(1806,-21470400,5),(1806,-5749200,4),(1806,9979200,5),(1806,25700400,4),(1806,41428800,5),(1806,57754800,4),(1806,73483200,5),(1806,89204401,4),(1806,104932802,5),(1806,120654002,4),(1806,126705603,5),(1806,152103603,4),(1806,162388804,5),(1806,183553204,4),(1806,199281605,5),(1806,215607605,4),(1806,230731206,5),(1806,247057206,4),(1806,262785607,5),(1806,278506807,4),(1806,294235208,5),(1806,309956408,4),(1806,325684809,5),(1806,341406009,4),(1806,357134409,5),(1806,372855610,4),(1806,388584010,5),(1806,404910011,4),(1806,420033611,5),(1806,436359612,6),(1806,439030812,8),(1806,452084412,7),(1806,467805612,8),(1806,483534012,7),(1806,499255213,8),(1806,514983613,7),(1806,530704813,8),(1806,544618813,7),(1806,562154413,8),(1806,576068414,7),(1806,594208814,8),(1806,607518014,7),(1806,625658414,8),(1806,638967615,7),(1806,657108015,8),(1806,671022016,7),(1806,688557616,8),(1806,702471616,7),(1806,720007217,8),(1806,733921217,7),(1806,752061618,8),(1806,765370818,7),(1806,783511219,8),(1806,796820419,7),(1806,814960819,8),(1806,828874820,7),(1806,846410420,8),(1806,860324420,7),(1806,877860021,8),(1806,891774021,7),(1806,909309621,8),(1806,923223622,7),(1806,941364022,8),(1806,954673222,7),(1806,972813622,8),(1806,986122822,7),(1806,1004263222,8),(1806,1018177222,7),(1806,1035712822,8),(1806,1049626822,7),(1806,1067162422,8),(1806,1081076422,7),(1806,1099216822,8),(1806,1112526022,7),(1806,1130666422,8),(1806,1143975623,7),(1806,1162116023,8),(1806,1173610823,7),(1806,1194170423,8),(1806,1205060423,7),(1806,1225620023,8),(1806,1236510024,7),(1806,1257069624,8),(1806,1268564424,7),(1806,1289124024,8),(1806,1300014024,7),(1806,1320573624,8),(1806,1331463624,7),(1806,1352023225,8),(1806,1362913225,7),(1806,1383472825,8),(1806,1394362825,7),(1806,1414922425,8),(1806,1425812425,7),(1806,1446372026,8),(1806,1457866826,7),(1806,1478426426,8),(1806,1489316427,7),(1806,1509876027,8),(1806,1520766027,7),(1806,1541325627,8),(1806,1552215627,7),(1806,1572775227,8),(1806,1583665227,7),(1806,1604224827,8),(1806,1615719627,7),(1806,1636279227,8),(1806,1647169227,7),(1806,1667728827,8),(1806,1678618827,7),(1806,1699178427,8),(1806,1710068427,7),(1806,1730628027,8),(1806,1741518027,7),(1806,1762077627,8),(1806,1772967627,7),(1806,1793527227,8),(1806,1805022027,7),(1806,1825581627,8),(1806,1836471627,7),(1806,1857031227,8),(1806,1867921227,7),(1806,1888480827,8),(1806,1899370827,7),(1806,1919930427,8),(1806,1930820427,7),(1806,1951380027,8),(1806,1962874827,7),(1806,1983434427,8),(1806,1994324427,7),(1806,2014884027,8),(1806,2025774027,7),(1806,2046333627,8),(1806,2057223627,7),(1806,2077783227,8),(1806,2088673227,7),(1806,2109232827,8),(1806,2120122827,7),(1806,2140682427,8),(1807,-2147483648,1),(1807,-1869875816,3),(1807,-1693706400,2),(1807,-1680490800,3),(1807,-1570413600,2),(1807,-1552186800,3),(1807,-1538359200,2),(1807,-1522551600,3),(1807,-1507514400,2),(1807,-1490583600,3),(1807,-1440208800,2),(1807,-1428030000,3),(1807,-1409709600,2),(1807,-1396494000,3),(1807,-931053600,2),(1807,-922676400,3),(1807,-917834400,2),(1807,-892436400,3),(1807,-875844000,2),(1807,-764737200,3),(1807,-744343200,2),(1807,-733806000,3),(1807,-716436000,2),(1807,-701924400,3),(1807,-684986400,2),(1807,-670474800,3),(1807,-654141600,2),(1807,-639025200,3),(1807,-622087200,2),(1807,-606970800,3),(1807,-590032800,2),(1807,-575521200,3),(1807,-235620000,2),(1807,-194842800,3),(1807,-177732000,2),(1807,-165726000,3),(1807,107910002,2),(1807,121215602,3),(1807,133920003,2),(1807,152665203,3),(1807,164678404,2),(1807,184114804,3),(1807,196214405,2),(1807,215564405,3),(1807,228873606,2),(1807,245804406,3),(1807,260323207,2),(1807,267915607,4),(1807,428454012,5),(1807,433893612,4),(1807,468111612,3),(1807,482799612,6),(1807,496710013,7),(1807,512521213,6),(1807,528246013,7),(1807,543970813,6),(1807,559695613,7),(1807,575420414,6),(1807,591145214,7),(1807,606870014,6),(1807,622594814,7),(1807,638319615,6),(1807,654649215,7),(1807,670374016,6),(1807,686098816,7),(1807,701823616,6),(1807,717548417,7),(1807,733273217,6),(1807,748998018,7),(1807,764118018,6),(1807,780447619,7),(1807,796172419,6),(1807,811897219,7),(1807,828226820,6),(1807,846370820,7),(1807,859676420,6),(1807,877820421,7),(1807,891126021,6),(1807,909270021,7),(1807,922575622,6),(1807,941324422,7),(1807,954025222,6),(1807,972774022,7),(1807,985474822,6),(1807,1004223622,7),(1807,1017529222,6),(1807,1035673222,7),(1807,1048978822,6),(1807,1067122822,7),(1807,1080428422,6),(1807,1099177222,7),(1807,1111878022,6),(1807,1130626822,7),(1807,1143327623,6),(1807,1162076423,7),(1807,1167602423,3),(1807,1174784423,8),(1807,1193533223,9),(1807,1206838823,8),(1807,1224982823,9),(1807,1238288424,8),(1807,1256432424,9),(1807,1269738024,8),(1807,1288486824,9),(1807,1301274024,8),(1807,1319936424,9),(1807,1332637224,8),(1807,1351386025,9),(1807,1364691625,8),(1807,1382835625,9),(1807,1396227625,8),(1807,1414285225,9),(1807,1427590825,8),(1807,1446944426,9),(1807,1459040426,8),(1807,1473195626,4),(1809,-2147483648,1),(1809,-880200000,2),(1809,-769395600,3),(1809,-765378000,1),(1809,-86882400,4),(1809,-21470400,5),(1809,-5749200,4),(1809,9979200,5),(1809,25700400,4),(1809,41428800,5),(1809,57754800,4),(1809,73483200,5),(1809,89204401,4),(1809,104932802,5),(1809,120654002,4),(1809,126705603,5),(1809,152103603,4),(1809,162388804,5),(1809,183553204,4),(1809,199281605,5),(1809,215607605,4),(1809,230731206,5),(1809,247057206,4),(1809,262785607,5),(1809,278506807,4),(1809,294235208,5),(1809,309956408,4),(1809,325684809,5),(1809,341406009,4),(1809,357134409,5),(1809,372855610,4),(1809,388584010,5),(1809,404910011,4),(1809,420033611,5),(1809,436359612,6),(1809,439030812,8),(1809,452084412,7),(1809,467805612,8),(1809,483534012,7),(1809,499255213,8),(1809,514983613,7),(1809,530704813,8),(1809,544618813,7),(1809,562154413,8),(1809,576068414,7),(1809,594208814,8),(1809,607518014,7),(1809,625658414,8),(1809,638967615,7),(1809,657108015,8),(1809,671022016,7),(1809,688557616,8),(1809,702471616,7),(1809,720007217,8),(1809,733921217,7),(1809,752061618,8),(1809,765370818,7),(1809,783511219,8),(1809,796820419,7),(1809,814960819,8),(1809,828874820,7),(1809,846410420,8),(1809,860324420,7),(1809,877860021,8),(1809,891774021,7),(1809,909309621,8),(1809,923223622,7),(1809,941364022,8),(1809,954673222,7),(1809,972813622,8),(1809,986122822,7),(1809,1004263222,8),(1809,1018177222,7),(1809,1035712822,8),(1809,1049626822,7),(1809,1067162422,8),(1809,1081076422,7),(1809,1099216822,8),(1809,1112526022,7),(1809,1130666422,8),(1809,1143975623,7),(1809,1162116023,8),(1809,1173610823,7),(1809,1194170423,8),(1809,1205060423,7),(1809,1225620023,8),(1809,1236510024,7),(1809,1257069624,8),(1809,1268564424,7),(1809,1289124024,8),(1809,1300014024,7),(1809,1320573624,8),(1809,1331463624,7),(1809,1352023225,8),(1809,1362913225,7),(1809,1383472825,8),(1809,1394362825,7),(1809,1414922425,8),(1809,1425812425,7),(1809,1446372026,8),(1809,1457866826,7),(1809,1478426426,8),(1809,1489316427,7),(1809,1509876027,8),(1809,1520766027,7),(1809,1541325627,8),(1809,1552215627,7),(1809,1572775227,8),(1809,1583665227,7),(1809,1604224827,8),(1809,1615719627,7),(1809,1636279227,8),(1809,1647169227,7),(1809,1667728827,8),(1809,1678618827,7),(1809,1699178427,8),(1809,1710068427,7),(1809,1730628027,8),(1809,1741518027,7),(1809,1762077627,8),(1809,1772967627,7),(1809,1793527227,8),(1809,1805022027,7),(1809,1825581627,8),(1809,1836471627,7),(1809,1857031227,8),(1809,1867921227,7),(1809,1888480827,8),(1809,1899370827,7),(1809,1919930427,8),(1809,1930820427,7),(1809,1951380027,8),(1809,1962874827,7),(1809,1983434427,8),(1809,1994324427,7),(1809,2014884027,8),(1809,2025774027,7),(1809,2046333627,8),(1809,2057223627,7),(1809,2077783227,8),(1809,2088673227,7),(1809,2109232827,8),(1809,2120122827,7),(1809,2140682427,8),(1810,-2147483648,1),(1810,-880196400,2),(1810,-769395600,3),(1810,-765374400,1),(1810,-86878800,4),(1810,-21466800,5),(1810,-5745600,4),(1810,9982800,5),(1810,25704000,4),(1810,41432400,5),(1810,57758400,4),(1810,73486800,5),(1810,89208001,4),(1810,104936402,5),(1810,120657602,4),(1810,126709203,5),(1810,152107203,4),(1810,162392404,5),(1810,183556804,4),(1810,199285205,5),(1810,215611205,4),(1810,230734806,5),(1810,247060806,4),(1810,262789207,5),(1810,278510407,4),(1810,294238808,5),(1810,309960008,4),(1810,325688409,5),(1810,341409609,4),(1810,357138009,5),(1810,372859210,4),(1810,388587610,5),(1810,404913611,4),(1810,420037211,5),(1810,436363212,6),(1810,439034412,8),(1810,452088012,7),(1810,467809212,8),(1810,483537612,7),(1810,499258813,8),(1810,514987213,7),(1810,530708413,8),(1810,544622413,7),(1810,562158013,8),(1810,576072014,7),(1810,594212414,8),(1810,607521614,7),(1810,625662014,8),(1810,638971215,7),(1810,657111615,8),(1810,671025616,7),(1810,688561216,8),(1810,702475216,7),(1810,720010817,8),(1810,733924817,7),(1810,752065218,8),(1810,765374418,7),(1810,783514819,8),(1810,796824019,7),(1810,814964419,8),(1810,828878420,7),(1810,846414020,8),(1810,860328020,7),(1810,877863621,8),(1810,891777621,7),(1810,909313221,8),(1810,923227222,7),(1810,941367622,8),(1810,954676822,7),(1810,972817222,8),(1810,986126422,7),(1810,1004266822,8),(1810,1018180822,7),(1810,1035716422,8),(1810,1049630422,7),(1810,1067166022,8),(1810,1081080022,7),(1810,1099220422,8),(1810,1112529622,7),(1810,1130670022,8),(1810,1143979223,7),(1810,1162119623,8),(1810,1173614423,7),(1810,1194174023,8),(1810,1205064023,7),(1810,1225623623,8),(1810,1236513624,7),(1810,1257073224,8),(1810,1268568024,7),(1810,1289127624,8),(1810,1300017624,7),(1810,1320577224,8),(1810,1331467224,7),(1810,1352026825,8),(1810,1362916825,7),(1810,1383476425,8),(1810,1394366425,7),(1810,1414926025,8),(1810,1425816025,7),(1810,1446375626,8),(1810,1457870426,7),(1810,1478430026,8),(1810,1489320027,7),(1810,1509879627,8),(1810,1520769627,7),(1810,1541329227,8),(1810,1552219227,7),(1810,1572778827,8),(1810,1583668827,7),(1810,1604228427,8),(1810,1615723227,7),(1810,1636282827,8),(1810,1647172827,7),(1810,1667732427,8),(1810,1678622427,7),(1810,1699182027,8),(1810,1710072027,7),(1810,1730631627,8),(1810,1741521627,7),(1810,1762081227,8),(1810,1772971227,7),(1810,1793530827,8),(1810,1805025627,7),(1810,1825585227,8),(1810,1836475227,7),(1810,1857034827,8),(1810,1867924827,7),(1810,1888484427,8),(1810,1899374427,7),(1810,1919934027,8),(1810,1930824027,7),(1810,1951383627,8),(1810,1962878427,7),(1810,1983438027,8),(1810,1994328027,7),(1810,2014887627,8),(1810,2025777627,7),(1810,2046337227,8),(1810,2057227227,7),(1810,2077786827,8),(1810,2088676827,7),(1810,2109236427,8),(1810,2120126427,7),(1810,2140686027,8),(1811,-2147483648,2),(1811,-1633273200,1),(1811,-1615132800,2),(1811,-1601823600,1),(1811,-1583683200,2),(1811,-880210800,3),(1811,-820519140,2),(1811,-812653140,3),(1811,-796845540,2),(1811,-84380400,1),(1811,-68659200,2),(1812,-2147483648,2),(1812,-1633276800,1),(1812,-1615136400,2),(1812,-1601827200,1),(1812,-1583686800,2),(1812,-1563724800,1),(1812,-1551632400,2),(1812,-1538928000,1),(1812,-1520182800,2),(1812,-1504454400,1),(1812,-1491757200,2),(1812,-1473004800,1),(1812,-1459702800,2),(1812,-1441555200,1),(1812,-1428253200,2),(1812,-1410105600,1),(1812,-1396803600,2),(1812,-1378656000,1),(1812,-1365354000,2),(1812,-1347206400,1),(1812,-1333904400,2),(1812,-1315152000,1),(1812,-1301850000,2),(1812,-1283702400,1),(1812,-1270400400,2),(1812,-1252252800,1),(1812,-1238950800,2),(1812,-1220803200,1),(1812,-1207501200,2),(1812,-1189353600,1),(1812,-1176051600,2),(1812,-1157299200,1),(1812,-1144602000,2),(1812,-1125849600,1),(1812,-1112547600,2),(1812,-1094400000,1),(1812,-1081098000,2),(1812,-1067788800,3),(1812,-1045414800,2),(1812,-1031500800,1),(1812,-1018198800,2),(1812,-1000051200,1),(1812,-986749200,2),(1812,-967996800,1),(1812,-955299600,2),(1812,-936547200,1),(1812,-923245200,2),(1812,-905097600,1),(1812,-891795600,2),(1812,-880214400,4),(1812,-769395600,5),(1812,-765392400,2),(1812,-747244800,1),(1812,-733942800,2),(1812,-715795200,1),(1812,-702493200,2),(1812,-684345600,1),(1812,-671043600,2),(1812,-652896000,1),(1812,-639594000,2),(1812,-620841600,1),(1812,-608144400,2),(1812,-589392000,1),(1812,-576090000,2),(1812,-557942400,1),(1812,-544640400,2),(1812,-526492800,1),(1812,-513190800,2),(1812,-495043200,1),(1812,-481741200,2),(1812,-463593600,1),(1812,-447267600,2),(1812,-431539200,1),(1812,-415818000,2),(1812,-400089600,1),(1812,-384368400,2),(1812,-368640000,1),(1812,-352918800,2),(1812,-337190400,1),(1812,-321469200,2),(1812,-305740800,1),(1812,-289414800,2),(1812,-273686400,1),(1812,-257965200,2),(1812,-242236800,1),(1812,-226515600,2),(1812,-210787200,1),(1812,-195066000,2),(1812,-179337600,1),(1812,-163616400,2),(1812,-147888000,1),(1812,-131562000,2),(1812,-116438400,1),(1812,-100112400,2),(1812,-84384000,1),(1812,-68662800,2),(1812,-52934400,1),(1812,-37213200,2),(1812,-21484800,1),(1812,-5763600,2),(1812,9964800,1),(1812,25686000,2),(1812,41414400,1),(1812,57740400,2),(1812,73468800,1),(1812,89190001,2),(1812,104918402,1),(1812,120639602,2),(1812,126691203,1),(1812,152089203,2),(1812,162374404,1),(1812,183538804,2),(1812,199267205,1),(1812,215593205,2),(1812,230716806,1),(1812,247042806,2),(1812,262771207,1),(1812,278492407,2),(1812,294220808,1),(1812,309942008,2),(1812,325670409,1),(1812,341391609,2),(1812,357120009,1),(1812,372841210,2),(1812,388569610,1),(1812,404895611,2),(1812,420019211,1),(1812,436345212,2),(1812,452073612,1),(1812,467794812,2),(1812,483523212,1),(1812,499244413,2),(1812,514972813,1),(1812,530694013,2),(1812,544608013,1),(1812,562143613,2),(1812,576057614,1),(1812,594198014,2),(1812,607507214,1),(1812,625647614,2),(1812,638956815,1),(1812,657097215,2),(1812,671011216,1),(1812,688546816,2),(1812,702460816,1),(1812,719996417,2),(1812,733910417,1),(1812,752050818,2),(1812,765360018,1),(1812,783500419,2),(1812,796809619,1),(1812,814950019,2),(1812,828864020,1),(1812,846399620,2),(1812,860313620,1),(1812,877849221,2),(1812,891763221,1),(1812,909298821,2),(1812,923212822,1),(1812,941353222,2),(1812,954662422,1),(1812,972802822,2),(1812,986112022,1),(1812,1004252422,2),(1812,1018166422,1),(1812,1035702022,2),(1812,1049616022,1),(1812,1067151622,2),(1812,1081065622,1),(1812,1099206022,2),(1812,1112515222,1),(1812,1130655622,2),(1812,1143964823,1),(1812,1162105223,2),(1812,1173600023,1),(1812,1194159623,2),(1812,1205049623,1),(1812,1225609223,2),(1812,1236499224,1),(1812,1257058824,2),(1812,1268553624,1),(1812,1289113224,2),(1812,1300003224,1),(1812,1320562824,2),(1812,1331452824,1),(1812,1352012425,2),(1812,1362902425,1),(1812,1383462025,2),(1812,1394352025,1),(1812,1414911625,2),(1812,1425801625,1),(1812,1446361226,2),(1812,1457856026,1),(1812,1478415626,2),(1812,1489305627,1),(1812,1509865227,2),(1812,1520755227,1),(1812,1541314827,2),(1812,1552204827,1),(1812,1572764427,2),(1812,1583654427,1),(1812,1604214027,2),(1812,1615708827,1),(1812,1636268427,2),(1812,1647158427,1),(1812,1667718027,2),(1812,1678608027,1),(1812,1699167627,2),(1812,1710057627,1),(1812,1730617227,2),(1812,1741507227,1),(1812,1762066827,2),(1812,1772956827,1),(1812,1793516427,2),(1812,1805011227,1),(1812,1825570827,2),(1812,1836460827,1),(1812,1857020427,2),(1812,1867910427,1),(1812,1888470027,2),(1812,1899360027,1),(1812,1919919627,2),(1812,1930809627,1),(1812,1951369227,2),(1812,1962864027,1),(1812,1983423627,2),(1812,1994313627,1),(1812,2014873227,2),(1812,2025763227,1),(1812,2046322827,2),(1812,2057212827,1),(1812,2077772427,2),(1812,2088662427,1),(1812,2109222027,2),(1812,2120112027,1),(1812,2140671627,2),(1813,-2147483648,2),(1813,-1633276800,1),(1813,-1615136400,2),(1813,-1601827200,1),(1813,-1583686800,2),(1813,-900259200,1),(1813,-891795600,2),(1813,-880214400,3),(1813,-769395600,4),(1813,-765392400,2),(1813,-747244800,1),(1813,-733942800,2),(1813,-715795200,1),(1813,-702493200,2),(1813,-684345600,1),(1813,-671043600,2),(1813,-652896000,1),(1813,-639594000,2),(1813,-620841600,1),(1813,-608144400,2),(1813,-589392000,1),(1813,-576090000,2),(1813,-557942400,1),(1813,-544640400,2),(1813,-526492800,1),(1813,-513190800,2),(1813,-495043200,1),(1813,-481741200,2),(1813,-463593600,5),(1813,-386787600,2),(1813,-368640000,5),(1813,-21488400,6),(1813,-5767200,5),(1813,9961200,6),(1813,25682400,5),(1813,1143961223,6),(1813,1162101623,5),(1813,1173596423,6),(1813,1194156023,5),(1813,1205046023,6),(1813,1225605623,5),(1813,1236495624,6),(1813,1257055224,5),(1813,1268550024,6),(1813,1289109624,5),(1813,1299999624,6),(1813,1320559224,5),(1813,1331449224,6),(1813,1352008825,5),(1813,1362898825,6),(1813,1383458425,5),(1813,1394348425,6),(1813,1414908025,5),(1813,1425798025,6),(1813,1446357626,5),(1813,1457852426,6),(1813,1478412026,5),(1813,1489302027,6),(1813,1509861627,5),(1813,1520751627,6),(1813,1541311227,5),(1813,1552201227,6),(1813,1572760827,5),(1813,1583650827,6),(1813,1604210427,5),(1813,1615705227,6),(1813,1636264827,5),(1813,1647154827,6),(1813,1667714427,5),(1813,1678604427,6),(1813,1699164027,5),(1813,1710054027,6),(1813,1730613627,5),(1813,1741503627,6),(1813,1762063227,5),(1813,1772953227,6),(1813,1793512827,5),(1813,1805007627,6),(1813,1825567227,5),(1813,1836457227,6),(1813,1857016827,5),(1813,1867906827,6),(1813,1888466427,5),(1813,1899356427,6),(1813,1919916027,5),(1813,1930806027,6),(1813,1951365627,5),(1813,1962860427,6),(1813,1983420027,5),(1813,1994310027,6),(1813,2014869627,5),(1813,2025759627,6),(1813,2046319227,5),(1813,2057209227,6),(1813,2077768827,5),(1813,2088658827,6),(1813,2109218427,5),(1813,2120108427,6),(1813,2140668027,5),(1814,-2147483648,2),(1814,-1633280400,1),(1814,-1615140000,2),(1814,-1601830800,1),(1814,-1583690400,2),(1814,-1570381200,1),(1814,-1551636000,2),(1814,-1536512400,1),(1814,-1523210400,2),(1814,-1504458000,1),(1814,-1491760800,2),(1814,-1473008400,1),(1814,-1459706400,2),(1814,-1441558800,1),(1814,-1428256800,2),(1814,-1410109200,1),(1814,-1396807200,2),(1814,-1378659600,1),(1814,-1365357600,2),(1814,-1347210000,1),(1814,-1333908000,2),(1814,-1315155600,1),(1814,-1301853600,2),(1814,-1283706000,1),(1814,-1270404000,2),(1814,-1252256400,1),(1814,-1238954400,2),(1814,-1220806800,1),(1814,-1207504800,2),(1814,-1189357200,1),(1814,-1176055200,2),(1814,-1157302800,1),(1814,-1144605600,2),(1814,-1125853200,1),(1814,-1112551200,2),(1814,-1094403600,1),(1814,-1081101600,2),(1814,-1062954000,1),(1814,-1049652000,2),(1814,-1031504400,1),(1814,-1018202400,2),(1814,-1000054800,1),(1814,-986752800,2),(1814,-968000400,1),(1814,-955303200,2),(1814,-936550800,1),(1814,-923248800,2),(1814,-905101200,1),(1814,-891799200,2),(1814,-880218000,3),(1814,-769395600,4),(1814,-765396000,2),(1814,-747248400,1),(1814,-733946400,2),(1814,-715798800,1),(1814,-702496800,2),(1814,-684349200,1),(1814,-671047200,2),(1814,-652899600,1),(1814,-639597600,2),(1814,-620845200,1),(1814,-608148000,2),(1814,-589395600,1),(1814,-576093600,2),(1814,-557946000,1),(1814,-544644000,2),(1814,-526496400,1),(1814,-513194400,2),(1814,-495046800,1),(1814,-481744800,2),(1814,-463597200,1),(1814,-447271200,2),(1814,-431542800,1),(1814,-415821600,2),(1814,-400093200,1),(1814,-384372000,2),(1814,-368643600,1),(1814,-352922400,2),(1814,-337194000,1),(1814,-321472800,2),(1814,-305744400,1),(1814,-289418400,2),(1814,-273690000,1),(1814,-257968800,2),(1814,-242240400,1),(1814,-226519200,2),(1814,-210790800,1),(1814,-195069600,2),(1814,-179341200,1),(1814,-163620000,2),(1814,-147891600,1),(1814,-131565600,2),(1814,-116442000,1),(1814,-100116000,2),(1814,-84387600,1),(1814,-68666400,2),(1814,-52938000,1),(1814,-37216800,2),(1814,-21488400,1),(1814,-5767200,2),(1814,9961200,1),(1814,25682400,2),(1814,41410800,1),(1814,57736800,2),(1814,73465200,1),(1814,89186401,2),(1814,104914802,1),(1814,120636002,2),(1814,126687603,1),(1814,152085603,2),(1814,162370804,1),(1814,183535204,2),(1814,199263605,1),(1814,215589605,2),(1814,230713206,1),(1814,247039206,2),(1814,262767607,1),(1814,278488807,2),(1814,294217208,1),(1814,309938408,2),(1814,325666809,1),(1814,341388009,2),(1814,357116409,1),(1814,372837610,2),(1814,388566010,1),(1814,404892011,2),(1814,420015611,1),(1814,436341612,2),(1814,452070012,1),(1814,467791212,2),(1814,483519612,1),(1814,499240813,2),(1814,514969213,1),(1814,530690413,2),(1814,544604413,1),(1814,562140013,2),(1814,576054014,1),(1814,594194414,2),(1814,607503614,1),(1814,625644014,2),(1814,638953215,1),(1814,657093615,2),(1814,671007616,1),(1814,688543216,2),(1814,702457216,1),(1814,719992817,2),(1814,733906817,1),(1814,752047218,2),(1814,765356418,1),(1814,783496819,2),(1814,796806019,1),(1814,814946419,2),(1814,828860420,1),(1814,846396020,2),(1814,860310020,1),(1814,877845621,2),(1814,891759621,1),(1814,909295221,2),(1814,923209222,1),(1814,941349622,2),(1814,954658822,1),(1814,972799222,2),(1814,986108422,1),(1814,1004248822,2),(1814,1018162822,1),(1814,1035698422,2),(1814,1049612422,1),(1814,1067148022,2),(1814,1081062022,1),(1814,1099202422,2),(1814,1112511622,1),(1814,1130652022,2),(1814,1143961223,1),(1814,1162101623,2),(1814,1173596423,1),(1814,1194156023,2),(1814,1205046023,1),(1814,1225605623,2),(1814,1236495624,1),(1814,1257055224,2),(1814,1268550024,1),(1814,1289109624,2),(1814,1299999624,1),(1814,1320559224,2),(1814,1331449224,1),(1814,1352008825,2),(1814,1362898825,1),(1814,1383458425,2),(1814,1394348425,1),(1814,1414908025,2),(1814,1425798025,1),(1814,1446357626,2),(1814,1457852426,1),(1814,1478412026,2),(1814,1489302027,1),(1814,1509861627,2),(1814,1520751627,1),(1814,1541311227,2),(1814,1552201227,1),(1814,1572760827,2),(1814,1583650827,1),(1814,1604210427,2),(1814,1615705227,1),(1814,1636264827,2),(1814,1647154827,1),(1814,1667714427,2),(1814,1678604427,1),(1814,1699164027,2),(1814,1710054027,1),(1814,1730613627,2),(1814,1741503627,1),(1814,1762063227,2),(1814,1772953227,1),(1814,1793512827,2),(1814,1805007627,1),(1814,1825567227,2),(1814,1836457227,1),(1814,1857016827,2),(1814,1867906827,1),(1814,1888466427,2),(1814,1899356427,1),(1814,1919916027,2),(1814,1930806027,1),(1814,1951365627,2),(1814,1962860427,1),(1814,1983420027,2),(1814,1994310027,1),(1814,2014869627,2),(1814,2025759627,1),(1814,2046319227,2),(1814,2057209227,1),(1814,2077768827,2),(1814,2088658827,1),(1814,2109218427,2),(1814,2120108427,1),(1814,2140668027,2),(1815,-2147483648,1),(1815,-1157283000,2),(1815,-1155436200,1),(1815,-880198200,3),(1815,-769395600,4),(1815,-765376200,1),(1815,-712150200,5),(1816,-2147483648,2),(1816,-1633276800,1),(1816,-1615136400,2),(1816,-1601827200,1),(1816,-1583686800,2),(1816,-880214400,3),(1816,-769395600,4),(1816,-765392400,2),(1816,-715795200,1),(1816,-702493200,2),(1816,-684345600,1),(1816,-671043600,2),(1816,-652896000,1),(1816,-639594000,2),(1816,-620841600,1),(1816,-608144400,2),(1816,-589392000,1),(1816,-576090000,2),(1816,-557942400,1),(1816,-544640400,2),(1816,-526492800,1),(1816,-513190800,2),(1816,-495043200,1),(1816,-481741200,2),(1816,-463593600,1),(1816,-447267600,2),(1816,-431539200,1),(1816,-415818000,2),(1816,-400089600,1),(1816,-386787600,2),(1816,-368640000,1),(1816,-355338000,2),(1816,-337190400,1),(1816,-321469200,2),(1816,-305740800,1),(1816,-289414800,2),(1816,-273686400,1),(1816,-257965200,2),(1816,-242236800,5),(1816,-195066000,2),(1816,-84384000,1),(1816,-68662800,2),(1816,-52934400,1),(1816,-37213200,2),(1816,-21484800,1),(1816,-5763600,2),(1816,9964800,1),(1816,25686000,2),(1816,41414400,1),(1816,57740400,2),(1816,73468800,1),(1816,89190001,2),(1816,104918402,1),(1816,120639602,2),(1816,126691203,1),(1816,152089203,2),(1816,162374404,1),(1816,183538804,2),(1816,199267205,1),(1816,215593205,2),(1816,230716806,1),(1816,247042806,2),(1816,262771207,1),(1816,278492407,2),(1816,294220808,1),(1816,309942008,2),(1816,325670409,1),(1816,341391609,2),(1816,357120009,1),(1816,372841210,2),(1816,388569610,1),(1816,404895611,2),(1816,420019211,1),(1816,436345212,2),(1816,452073612,1),(1816,467794812,2),(1816,483523212,1),(1816,499244413,2),(1816,514972813,1),(1816,530694013,2),(1816,544608013,1),(1816,562143613,2),(1816,576057614,1),(1816,594198014,2),(1816,607507214,1),(1816,625647614,2),(1816,638956815,1),(1816,657097215,2),(1816,671011216,1),(1816,688546816,5),(1816,1143961223,1),(1816,1162105223,2),(1816,1173600023,1),(1816,1194159623,2),(1816,1205049623,1),(1816,1225609223,2),(1816,1236499224,1),(1816,1257058824,2),(1816,1268553624,1),(1816,1289113224,2),(1816,1300003224,1),(1816,1320562824,2),(1816,1331452824,1),(1816,1352012425,2),(1816,1362902425,1),(1816,1383462025,2),(1816,1394352025,1),(1816,1414911625,2),(1816,1425801625,1),(1816,1446361226,2),(1816,1457856026,1),(1816,1478415626,2),(1816,1489305627,1),(1816,1509865227,2),(1816,1520755227,1),(1816,1541314827,2),(1816,1552204827,1),(1816,1572764427,2),(1816,1583654427,1),(1816,1604214027,2),(1816,1615708827,1),(1816,1636268427,2),(1816,1647158427,1),(1816,1667718027,2),(1816,1678608027,1),(1816,1699167627,2),(1816,1710057627,1),(1816,1730617227,2),(1816,1741507227,1),(1816,1762066827,2),(1816,1772956827,1),(1816,1793516427,2),(1816,1805011227,1),(1816,1825570827,2),(1816,1836460827,1),(1816,1857020427,2),(1816,1867910427,1),(1816,1888470027,2),(1816,1899360027,1),(1816,1919919627,2),(1816,1930809627,1),(1816,1951369227,2),(1816,1962864027,1),(1816,1983423627,2),(1816,1994313627,1),(1816,2014873227,2),(1816,2025763227,1),(1816,2046322827,2),(1816,2057212827,1),(1816,2077772427,2),(1816,2088662427,1),(1816,2109222027,2),(1816,2120112027,1),(1816,2140671627,2),(1817,-2147483648,0),(1817,-2051202469,1),(1817,-1724083200,2),(1817,-880218000,3),(1817,-769395600,4),(1817,-765396000,2),(1817,-684349200,5),(1817,-671047200,2),(1817,-80506740,5),(1817,-68666400,2),(1817,-52938000,5),(1817,-37216800,2),(1817,104914802,5),(1817,120636002,2),(1817,126687603,5),(1817,152085603,2),(1817,167814004,5),(1817,183535204,2),(1817,199263605,5),(1817,215589605,2),(1817,230713206,5),(1817,247039206,2),(1817,262767607,5),(1817,278488807,2),(1817,294217208,5),(1817,309938408,2),(1817,325666809,5),(1817,341388009,2),(1817,357116409,5),(1817,372837610,2),(1817,388566010,5),(1817,404892011,2),(1817,420015611,5),(1817,436341612,2),(1817,452070012,5),(1817,467791212,2),(1817,483519612,5),(1817,499240813,2),(1817,514969213,5),(1817,530690413,2),(1817,544604413,5),(1817,562140013,2),(1817,576054014,5),(1817,594194414,2),(1817,607503614,5),(1817,625644014,2),(1817,638953215,5),(1817,657093615,2),(1817,671007616,5),(1817,688543216,2),(1817,702457216,5),(1817,719992817,2),(1817,733906817,5),(1817,752047218,2),(1817,765356418,5),(1817,783496819,2),(1817,796806019,5),(1817,814946419,2),(1817,828860420,5),(1817,846396020,2),(1817,860310020,5),(1817,877845621,2),(1817,891759621,5),(1817,909295221,2),(1817,923209222,5),(1817,941349622,2),(1817,954658822,5),(1817,972799222,2),(1817,986108422,5),(1817,1004248822,2),(1817,1018162822,5),(1817,1035698422,2),(1817,1049612422,5),(1817,1067148022,2),(1817,1081062022,5),(1817,1099202422,2),(1817,1112511622,5),(1817,1130652022,2),(1817,1143961223,5),(1817,1162101623,2),(1817,1173596423,5),(1817,1194156023,2),(1817,1205046023,5),(1817,1225605623,2),(1817,1236495624,5),(1817,1257055224,2),(1817,1268550024,5),(1817,1289109624,2),(1817,1299999624,5),(1817,1320559224,2),(1817,1331449224,5),(1817,1352008825,2),(1817,1362898825,5),(1817,1383458425,2),(1817,1394348425,5),(1817,1414908025,2),(1817,1425798025,5),(1817,1446357626,2),(1817,1457852426,5),(1817,1478412026,2),(1817,1489302027,5),(1817,1509861627,2),(1817,1520751627,5),(1817,1541311227,2),(1817,1552201227,5),(1817,1572760827,2),(1817,1583650827,5),(1817,1604210427,2),(1817,1615705227,5),(1817,1636264827,2),(1817,1647154827,5),(1817,1667714427,2),(1817,1678604427,5),(1817,1699164027,2),(1817,1710054027,5),(1817,1730613627,2),(1817,1741503627,5),(1817,1762063227,2),(1817,1772953227,5),(1817,1793512827,2),(1817,1805007627,5),(1817,1825567227,2),(1817,1836457227,5),(1817,1857016827,2),(1817,1867906827,5),(1817,1888466427,2),(1817,1899356427,5),(1817,1919916027,2),(1817,1930806027,5),(1817,1951365627,2),(1817,1962860427,5),(1817,1983420027,2),(1817,1994310027,5),(1817,2014869627,2),(1817,2025759627,5),(1817,2046319227,2),(1817,2057209227,5),(1817,2077768827,2),(1817,2088658827,5),(1817,2109218427,2),(1817,2120108427,5),(1817,2140668027,2),(1818,-2147483648,2),(1818,-1633273200,1),(1818,-1615132800,2),(1818,-1601823600,1),(1818,-1583683200,2),(1818,-1570374000,1),(1818,-1551628800,2),(1818,-1538924400,1),(1818,-1534089600,2),(1818,-880210800,3),(1818,-769395600,4),(1818,-765388800,2),(1818,-147884400,1),(1818,-131558400,2),(1818,-116434800,1),(1818,-100108800,2),(1818,-84380400,1),(1818,-68659200,2),(1818,-52930800,1),(1818,-37209600,2),(1818,-21481200,1),(1818,-5760000,2),(1818,9968400,1),(1818,25689600,2),(1818,41418000,1),(1818,57744000,2),(1818,73472400,1),(1818,89193601,2),(1818,104922002,1),(1818,120643202,2),(1818,126694803,1),(1818,152092803,2),(1818,162378004,1),(1818,183542404,2),(1818,199270805,1),(1818,215596805,2),(1818,230720406,1),(1818,247046406,2),(1818,262774807,1),(1818,278496007,2),(1818,294224408,1),(1818,309945608,2),(1818,325674009,1),(1818,341395209,2),(1818,357123609,1),(1818,372844810,2),(1818,388573210,1),(1818,404899211,2),(1818,420022811,1),(1818,436348812,2),(1818,452077212,1),(1818,467798412,2),(1818,483526812,1),(1818,499248013,2),(1818,514976413,1),(1818,530697613,2),(1818,544611613,1),(1818,562147213,2),(1818,576061214,1),(1818,594201614,2),(1818,607510814,1),(1818,625651214,2),(1818,638960415,1),(1818,657100815,2),(1818,671014816,1),(1818,688550416,2),(1818,702464416,1),(1818,720000017,2),(1818,733914017,1),(1818,752054418,2),(1818,765363618,1),(1818,783504019,2),(1818,796813219,1),(1818,814953619,2),(1818,828867620,1),(1818,846403220,2),(1818,860317220,1),(1818,877852821,2),(1818,891766821,1),(1818,909302421,2),(1818,923216422,1),(1818,941356822,2),(1818,954666022,1),(1818,972806422,2),(1818,986115622,1),(1818,1004256022,2),(1818,1018170022,1),(1818,1035705622,2),(1818,1049619622,1),(1818,1067155222,2),(1818,1081069222,1),(1818,1099209622,2),(1818,1112518822,1),(1818,1130659222,2),(1818,1143968423,1),(1818,1162108823,2),(1818,1173603623,1),(1818,1194163223,2),(1818,1205053223,1),(1818,1225612823,2),(1818,1236502824,1),(1818,1257062424,2),(1818,1268557224,1),(1818,1289116824,2),(1818,1300006824,1),(1818,1320566424,2),(1818,1331456424,1),(1818,1352016025,2),(1818,1362906025,1),(1818,1383465625,2),(1818,1394355625,1),(1818,1414915225,2),(1818,1425805225,1),(1818,1446364826,2),(1818,1457859626,1),(1818,1478419226,2),(1818,1489309227,1),(1818,1509868827,2),(1818,1520758827,1),(1818,1541318427,2),(1818,1552208427,1),(1818,1572768027,2),(1818,1583658027,1),(1818,1604217627,2),(1818,1615712427,1),(1818,1636272027,2),(1818,1647162027,1),(1818,1667721627,2),(1818,1678611627,1),(1818,1699171227,2),(1818,1710061227,1),(1818,1730620827,2),(1818,1741510827,1),(1818,1762070427,2),(1818,1772960427,1),(1818,1793520027,2),(1818,1805014827,1),(1818,1825574427,2),(1818,1836464427,1),(1818,1857024027,2),(1818,1867914027,1),(1818,1888473627,2),(1818,1899363627,1),(1818,1919923227,2),(1818,1930813227,1),(1818,1951372827,2),(1818,1962867627,1),(1818,1983427227,2),(1818,1994317227,1),(1818,2014876827,2),(1818,2025766827,1),(1818,2046326427,2),(1818,2057216427,1),(1818,2077776027,2),(1818,2088666027,1),(1818,2109225627,2),(1818,2120115627,1),(1818,2140675227,2),(1819,-2147483648,2),(1819,-1633269600,1),(1819,-1615129200,2),(1819,-1601820000,1),(1819,-1583679600,2),(1819,-880207200,3),(1819,-769395600,4),(1819,-765385200,2),(1819,-687967140,1),(1819,-662655600,2),(1819,-620838000,1),(1819,-608137200,2),(1819,-589388400,1),(1819,-576082800,2),(1819,-557938800,1),(1819,-544633200,2),(1819,-526489200,1),(1819,-513183600,2),(1819,-495039600,1),(1819,-481734000,2),(1819,-463590000,1),(1819,-450284400,2),(1819,-431535600,1),(1819,-418230000,2),(1819,-400086000,1),(1819,-386780400,2),(1819,-368636400,1),(1819,-355330800,2),(1819,-337186800,1),(1819,-323881200,2),(1819,-305737200,1),(1819,-292431600,2),(1819,-273682800,1),(1819,-260982000,2),(1819,-242233200,1),(1819,-226508400,2),(1819,-210783600,1),(1819,-195058800,2),(1819,-179334000,1),(1819,-163609200,2),(1819,-147884400,1),(1819,-131554800,2),(1819,-116434800,1),(1819,-100105200,2),(1819,-84376800,1),(1819,-68655600,2),(1819,-52927200,1),(1819,-37206000,2),(1819,-21477600,1),(1819,-5756400,2),(1819,9972000,1),(1819,25693200,2),(1819,41421600,1),(1819,57747600,2),(1819,73476000,1),(1819,89197201,2),(1819,104925602,1),(1819,120646802,2),(1819,126698403,1),(1819,152096403,2),(1819,162381604,1),(1819,183546004,2),(1819,199274405,1),(1819,215600405,2),(1819,230724006,1),(1819,247050006,2),(1819,262778407,1),(1819,278499607,2),(1819,294228008,1),(1819,309949208,2),(1819,325677609,1),(1819,341398809,2),(1819,357127209,1),(1819,372848410,2),(1819,388576810,1),(1819,404902811,2),(1819,420026411,1),(1819,436352412,2),(1819,452080812,1),(1819,467802012,2),(1819,483530412,1),(1819,499251613,2),(1819,514980013,1),(1819,530701213,2),(1819,544615213,1),(1819,562150813,2),(1819,576064814,1),(1819,594205214,2),(1819,607514414,1),(1819,625654814,2),(1819,638964015,1),(1819,657104415,2),(1819,671018416,1),(1819,688554016,2),(1819,702468016,1),(1819,720003617,2),(1819,733917617,1),(1819,752058018,2),(1819,765367218,1),(1819,783507619,2),(1819,796816819,1),(1819,814957219,2),(1819,828871220,1),(1819,846406820,2),(1819,860320820,1),(1819,877856421,2),(1819,891770421,1),(1819,909306021,2),(1819,923220022,1),(1819,941360422,2),(1819,954669622,1),(1819,972810022,2),(1819,986119222,1),(1819,1004259622,2),(1819,1018173622,1),(1819,1035709222,2),(1819,1049623222,1),(1819,1067158822,2),(1819,1081072822,1),(1819,1099213222,2),(1819,1112522422,1),(1819,1130662822,2),(1819,1143972023,1),(1819,1162112423,2),(1819,1173607223,1),(1819,1194166823,2),(1819,1205056823,1),(1819,1225616423,2),(1819,1236506424,1),(1819,1257066024,2),(1819,1268560824,1),(1819,1289120424,2),(1819,1300010424,1),(1819,1320570024,2),(1819,1331460024,1),(1819,1352019625,2),(1819,1362909625,1),(1819,1383469225,2),(1819,1394359225,1),(1819,1414918825,2),(1819,1425808825,1),(1819,1446368426,2),(1819,1457863226,1),(1819,1478422826,2),(1819,1489312827,1),(1819,1509872427,2),(1819,1520762427,1),(1819,1541322027,2),(1819,1552212027,1),(1819,1572771627,2),(1819,1583661627,1),(1819,1604221227,2),(1819,1615716027,1),(1819,1636275627,2),(1819,1647165627,1),(1819,1667725227,2),(1819,1678615227,1),(1819,1699174827,2),(1819,1710064827,1),(1819,1730624427,2),(1819,1741514427,1),(1819,1762074027,2),(1819,1772964027,1),(1819,1793523627,2),(1819,1805018427,1),(1819,1825578027,2),(1819,1836468027,1),(1819,1857027627,2),(1819,1867917627,1),(1819,1888477227,2),(1819,1899367227,1),(1819,1919926827,2),(1819,1930816827,1),(1819,1951376427,2),(1819,1962871227,1),(1819,1983430827,2),(1819,1994320827,1),(1819,2014880427,2),(1819,2025770427,1),(1819,2046330027,2),(1819,2057220027,1),(1819,2077779627,2),(1819,2088669627,1),(1819,2109229227,2),(1819,2120119227,1),(1819,2140678827,2),(1820,-2147483648,2),(1820,-1633269600,1),(1820,-1615129200,2),(1820,-1601820000,1),(1820,-1583679600,2),(1820,-880207200,3),(1820,-769395600,4),(1820,-765385200,2),(1820,-687967140,1),(1820,-662655600,2),(1820,-620838000,1),(1820,-608137200,2),(1820,-589388400,1),(1820,-576082800,2),(1820,-557938800,1),(1820,-544633200,2),(1820,-526489200,1),(1820,-513183600,2),(1820,-495039600,1),(1820,-481734000,2),(1820,-463590000,1),(1820,-450284400,2),(1820,-431535600,1),(1820,-418230000,2),(1820,-400086000,1),(1820,-386780400,2),(1820,-368636400,1),(1820,-355330800,2),(1820,-337186800,1),(1820,-323881200,2),(1820,-305737200,1),(1820,-292431600,2),(1820,-273682800,1),(1820,-260982000,2),(1820,-242233200,1),(1820,-226508400,2),(1820,-210783600,1),(1820,-195058800,2),(1820,-179334000,1),(1820,-163609200,2),(1820,-147884400,1),(1820,-131554800,2),(1820,-116434800,1),(1820,-100105200,2),(1820,-84376800,1),(1820,-68655600,2),(1820,-52927200,1),(1820,-37206000,2),(1820,-21477600,1),(1820,-5756400,2),(1820,9972000,1),(1820,25693200,2),(1820,41421600,1),(1820,57747600,2),(1820,73476000,1),(1820,89197201,2),(1820,104925602,1),(1820,120646802,2),(1820,126698403,1),(1820,152096403,2),(1820,162381604,1),(1820,183546004,2),(1820,199274405,1),(1820,215600405,2),(1820,230724006,1),(1820,247050006,2),(1820,262778407,1),(1820,278499607,2),(1820,294228008,1),(1820,309949208,2),(1820,325677609,1),(1820,341398809,2),(1820,357127209,1),(1820,372848410,2),(1820,388576810,1),(1820,404902811,2),(1820,420026411,1),(1820,436352412,2),(1820,452080812,1),(1820,467802012,2),(1820,483530412,1),(1820,499251613,2),(1820,514980013,1),(1820,530701213,2),(1820,544615213,1),(1820,562150813,2),(1820,576064814,1),(1820,594205214,2),(1820,607514414,1),(1820,625654814,2),(1820,638964015,1),(1820,657104415,2),(1820,671018416,1),(1820,688554016,2),(1820,702468016,1),(1820,720003617,2),(1820,733917617,1),(1820,752058018,2),(1820,765367218,1),(1820,783507619,2),(1820,796816819,1),(1820,814957219,2),(1820,828871220,1),(1820,846406820,2),(1820,860320820,1),(1820,877856421,2),(1820,891770421,1),(1820,909306021,2),(1820,923220022,1),(1820,941360422,2),(1820,954669622,1),(1820,972810022,2),(1820,986119222,1),(1820,1004259622,2),(1820,1018173622,1),(1820,1035709222,2),(1820,1049623222,1),(1820,1067158822,2),(1820,1081072822,1),(1820,1099213222,2),(1820,1112522422,1),(1820,1130662822,2),(1820,1143972023,1),(1820,1162112423,2),(1820,1173607223,1),(1820,1194166823,2),(1820,1205056823,1),(1820,1225616423,2),(1820,1236506424,1),(1820,1257066024,2),(1820,1268560824,1),(1820,1289120424,2),(1820,1300010424,1),(1820,1320570024,2),(1820,1331460024,1),(1820,1352019625,2),(1820,1362909625,1),(1820,1383469225,2),(1820,1394359225,1),(1820,1414918825,2),(1820,1425808825,1),(1820,1446368426,2),(1820,1457863226,1),(1820,1478422826,2),(1820,1489312827,1),(1820,1509872427,2),(1820,1520762427,1),(1820,1541322027,2),(1820,1552212027,1),(1820,1572771627,2),(1820,1583661627,1),(1820,1604221227,2),(1820,1615716027,1),(1820,1636275627,2),(1820,1647165627,1),(1820,1667725227,2),(1820,1678615227,1),(1820,1699174827,2),(1820,1710064827,1),(1820,1730624427,2),(1820,1741514427,1),(1820,1762074027,2),(1820,1772964027,1),(1820,1793523627,2),(1820,1805018427,1),(1820,1825578027,2),(1820,1836468027,1),(1820,1857027627,2),(1820,1867917627,1),(1820,1888477227,2),(1820,1899367227,1),(1820,1919926827,2),(1820,1930816827,1),(1820,1951376427,2),(1820,1962871227,1),(1820,1983430827,2),(1820,1994320827,1),(1820,2014880427,2),(1820,2025770427,1),(1820,2046330027,2),(1820,2057220027,1),(1820,2077779627,2),(1820,2088669627,1),(1820,2109229227,2),(1820,2120119227,1),(1820,2140678827,2),(1821,-2147483648,1),(1821,-1861879032,2),(1824,-2147483648,1),(1824,-1688265017,3),(1824,-1656819079,2),(1824,-1641353479,3),(1824,-1627965079,4),(1824,-1618716679,2),(1824,-1596429079,4),(1824,-1593820800,5),(1824,-1589860800,6),(1824,-1542427200,7),(1824,-1539493200,8),(1824,-1525323600,7),(1824,-1522728000,6),(1824,-1491188400,9),(1824,-1247536800,6),(1824,354920409,7),(1824,370728010,6),(1824,386456410,7),(1824,402264011,6),(1824,417992411,7),(1824,433800012,6),(1824,449614812,7),(1824,465346812,10),(1824,481071612,11),(1824,496796413,10),(1824,512521213,11),(1824,528246013,10),(1824,543970813,11),(1824,559695613,10),(1824,575420414,11),(1824,591145214,10),(1824,606870014,11),(1824,622594814,10),(1824,638319615,11),(1824,654649215,10),(1824,670374016,12),(1824,686102416,13),(1824,695779216,10),(1824,701823616,11),(1824,717548417,10),(1824,733273217,11),(1824,748998018,10),(1824,764722818,11),(1824,780447619,10),(1824,796172419,11),(1824,811897219,10),(1824,828226820,11),(1824,846370820,10),(1824,859676420,11),(1824,877820421,10),(1824,891126021,11),(1824,909270021,10),(1824,922575622,11),(1824,941324422,10),(1824,954025222,11),(1824,972774022,10),(1824,985474822,11),(1824,1004223622,10),(1824,1017529222,11),(1824,1035673222,10),(1824,1048978822,11),(1824,1067122822,10),(1824,1080428422,11),(1824,1099177222,10),(1824,1111878022,11),(1824,1130626822,10),(1824,1143327623,11),(1824,1162076423,10),(1824,1174777223,11),(1824,1193526023,10),(1824,1206831623,11),(1824,1224975623,10),(1824,1238281224,11),(1824,1256425224,10),(1824,1269730824,11),(1824,1288479624,10),(1824,1301180424,14),(1824,1414274425,10),(1825,228877206,0),(1825,243997206,1),(1825,260326807,0),(1825,276051607,1),(1825,291776408,0),(1825,307501208,1),(1825,323830809,0),(1825,338950809,1),(1825,354675609,0),(1825,370400410,1),(1825,386125210,0),(1825,401850011,1),(1825,417574811,0),(1825,433299612,1),(1825,449024412,0),(1825,465354012,1),(1825,481078812,0),(1825,496803613,1),(1825,512528413,0),(1825,528253213,1),(1825,543978013,0),(1825,559702813,1),(1825,575427614,0),(1825,591152414,1),(1825,606877214,0),(1825,622602014,1),(1825,638326815,0),(1825,654656415,1),(1825,670381216,0),(1825,686106016,1),(1825,701830816,0),(1825,717555617,1),(1825,733280417,0),(1825,749005218,1),(1825,764730018,0),(1825,780454819,1),(1825,796179619,0),(1825,811904419,1),(1825,828234020,0),(1825,846378020,1),(1825,859683620,0),(1825,877827621,1),(1825,891133221,0),(1825,909277221,1),(1825,922582822,0),(1825,941331622,1),(1825,954032422,0),(1825,972781222,1),(1825,985482022,0),(1825,1004230822,1),(1825,1017536422,0),(1825,1035680422,1),(1825,1048986022,0),(1825,1067130022,1),(1825,1080435622,0),(1825,1099184422,1),(1825,1111885222,0),(1825,1130634022,1),(1825,1143334823,0),(1825,1162083623,1),(1825,1174784423,0),(1825,1193533223,1),(1825,1206838823,0),(1825,1224982823,1),(1825,1238288424,0),(1825,1256432424,1),(1825,1269738024,0),(1825,1288486824,1),(1825,1301187624,0),(1825,1319936424,1),(1825,1332637224,0),(1825,1351386025,1),(1825,1364691625,0),(1825,1382835625,1),(1825,1396141225,0),(1825,1414285225,1),(1825,1427590825,0),(1825,1445734826,1),(1825,1459040426,0),(1825,1477789226,1),(1825,1490490027,0),(1825,1509238827,1),(1825,1521939627,0),(1825,1540688427,1),(1825,1553994027,0),(1825,1572138027,1),(1825,1585443627,0),(1825,1603587627,1),(1825,1616893227,0),(1825,1635642027,1),(1825,1648342827,0),(1825,1667091627,1),(1825,1679792427,0),(1825,1698541227,1),(1825,1711846827,0),(1825,1729990827,1),(1825,1743296427,0),(1825,1761440427,1),(1825,1774746027,0),(1825,1792890027,1),(1825,1806195627,0),(1825,1824944427,1),(1825,1837645227,0),(1825,1856394027,1),(1825,1869094827,0),(1825,1887843627,1),(1825,1901149227,0),(1825,1919293227,1),(1825,1932598827,0),(1825,1950742827,1),(1825,1964048427,0),(1825,1982797227,1),(1825,1995498027,0),(1825,2014246827,1),(1825,2026947627,0),(1825,2045696427,1),(1825,2058397227,0),(1825,2077146027,1),(1825,2090451627,0),(1825,2108595627,1),(1825,2121901227,0),(1825,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=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 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'),(2,3,1800,0,'+0030'),(2,4,1800,1,'+0030'),(2,5,0,0,'GMT'),(3,0,8836,0,'LMT'),(3,1,9000,0,'+0230'),(3,2,10800,0,'EAT'),(3,3,9900,0,'+0245'),(3,4,10800,0,'EAT'),(4,0,732,0,'LMT'),(4,1,561,0,'PMT'),(4,2,3600,1,'WEST'),(4,3,0,0,'WET'),(4,4,0,0,'WET'),(4,5,7200,1,'CEST'),(4,6,3600,0,'CET'),(4,7,3600,1,'WEST'),(5,0,8836,0,'LMT'),(5,1,9000,0,'+0230'),(5,2,10800,0,'EAT'),(5,3,9900,0,'+0245'),(5,4,10800,0,'EAT'),(6,0,8836,0,'LMT'),(6,1,9000,0,'+0230'),(6,2,10800,0,'EAT'),(6,3,9900,0,'+0245'),(6,4,10800,0,'EAT'),(7,0,-968,0,'LMT'),(7,1,0,0,'GMT'),(8,0,815,0,'LMT'),(8,1,0,0,'GMT'),(8,2,1800,0,'+0030'),(8,3,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,815,0,'LMT'),(12,1,0,0,'GMT'),(12,2,1800,0,'+0030'),(12,3,3600,0,'WAT'),(13,0,7820,0,'LMT'),(13,1,7200,0,'CAT'),(14,0,7509,0,'LMT'),(14,1,10800,1,'EEST'),(14,2,7200,0,'EET'),(14,3,10800,1,'EEST'),(15,0,-1820,0,'LMT'),(15,1,3600,1,'+01'),(15,2,0,0,'+00'),(15,3,3600,0,'+01'),(15,4,0,1,'+00'),(16,0,-1276,0,'LMT'),(16,1,0,0,'WET'),(16,2,3600,1,'WEST'),(16,3,0,0,'WET'),(16,4,3600,0,'CET'),(16,5,7200,1,'CEST'),(16,6,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,9000,0,'+0230'),(19,2,10800,0,'EAT'),(19,3,9900,0,'+0245'),(19,4,10800,0,'EAT'),(20,0,8836,0,'LMT'),(20,1,9000,0,'+0230'),(20,2,10800,0,'EAT'),(20,3,9900,0,'+0245'),(20,4,10800,0,'EAT'),(21,0,815,0,'LMT'),(21,1,0,0,'GMT'),(21,2,1800,0,'+0030'),(21,3,3600,0,'WAT'),(22,0,-3168,0,'LMT'),(22,1,-3600,0,'-01'),(22,2,3600,1,'+01'),(22,3,0,0,'+00'),(22,4,0,1,'+00'),(22,5,3600,0,'+01'),(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,6720,0,'LMT'),(26,1,5400,0,'SAST'),(26,2,10800,1,'SAST'),(26,3,7200,0,'SAST'),(27,0,7588,0,'LMT'),(27,1,10800,1,'CAST'),(27,2,7200,0,'CAT'),(27,3,10800,0,'EAT'),(27,4,7200,0,'CAT'),(28,0,8836,0,'LMT'),(28,1,9000,0,'+0230'),(28,2,10800,0,'EAT'),(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,815,0,'LMT'),(31,1,0,0,'GMT'),(31,2,1800,0,'+0030'),(31,3,3600,0,'WAT'),(32,0,815,0,'LMT'),(32,1,0,0,'GMT'),(32,2,1800,0,'+0030'),(32,3,3600,0,'WAT'),(33,0,815,0,'LMT'),(33,1,0,0,'GMT'),(33,2,1800,0,'+0030'),(33,3,3600,0,'WAT'),(34,0,-968,0,'LMT'),(34,1,0,0,'GMT'),(35,0,815,0,'LMT'),(35,1,0,0,'GMT'),(35,2,1800,0,'+0030'),(35,3,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,815,0,'LMT'),(38,1,0,0,'GMT'),(38,2,1800,0,'+0030'),(38,3,3600,0,'WAT'),(39,0,7820,0,'LMT'),(39,1,7200,0,'CAT'),(40,0,6720,0,'LMT'),(40,1,5400,0,'SAST'),(40,2,10800,1,'SAST'),(40,3,7200,0,'SAST'),(41,0,6720,0,'LMT'),(41,1,5400,0,'SAST'),(41,2,10800,1,'SAST'),(41,3,7200,0,'SAST'),(42,0,8836,0,'LMT'),(42,1,9000,0,'+0230'),(42,2,10800,0,'EAT'),(42,3,9900,0,'+0245'),(42,4,10800,0,'EAT'),(43,0,-2588,0,'LMT'),(43,1,-2588,0,'MMT'),(43,2,-2670,0,'MMT'),(43,3,0,0,'GMT'),(44,0,8836,0,'LMT'),(44,1,9000,0,'+0230'),(44,2,10800,0,'EAT'),(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,815,0,'LMT'),(46,1,0,0,'GMT'),(46,2,1800,0,'+0030'),(46,3,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,815,0,'LMT'),(49,1,0,0,'GMT'),(49,2,1800,0,'+0030'),(49,3,3600,0,'WAT'),(50,0,1616,0,'LMT'),(50,1,-2205,0,'LMT'),(50,2,0,0,'GMT'),(50,3,3600,0,'WAT'),(50,4,0,0,'GMT'),(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,2444,0,'LMT'),(53,1,561,0,'PMT'),(53,2,7200,1,'CEST'),(53,3,3600,0,'CET'),(53,4,3600,0,'CET'),(53,5,7200,1,'CEST'),(54,0,4104,0,'LMT'),(54,1,5400,0,'+0130'),(54,2,7200,0,'SAST'),(54,3,10800,1,'SAST'),(54,4,3600,1,'WAT'),(54,5,7200,0,'CAT'),(55,0,-42398,0,'LMT'),(55,1,-39600,0,'NST'),(55,2,-36000,1,'NWT'),(55,3,-36000,1,'NPT'),(55,4,-39600,0,'BST'),(55,5,-36000,1,'BDT'),(55,6,-36000,0,'AHST'),(55,7,-32400,1,'HDT'),(55,8,-36000,0,'HST'),(56,0,-35976,0,'LMT'),(56,1,-36000,0,'AST'),(56,2,-32400,1,'AWT'),(56,3,-32400,1,'APT'),(56,4,-36000,0,'AHST'),(56,5,-32400,1,'AHDT'),(56,6,-32400,0,'YST'),(56,7,-28800,1,'AKDT'),(56,8,-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,-14028,0,'LMT'),(60,1,-15408,0,'CMT'),(60,2,-14400,0,'-04'),(60,3,-10800,1,'-03'),(60,4,-7200,1,'-02'),(60,5,-10800,0,'-03'),(61,0,-15788,0,'LMT'),(61,1,-15408,0,'CMT'),(61,2,-14400,0,'-04'),(61,3,-10800,1,'-03'),(61,4,-7200,1,'-02'),(61,5,-10800,0,'-03'),(62,0,-15788,0,'LMT'),(62,1,-15408,0,'CMT'),(62,2,-14400,0,'-04'),(62,3,-10800,1,'-03'),(62,4,-7200,1,'-02'),(62,5,-10800,0,'-03'),(63,0,-15408,0,'LMT'),(63,1,-15408,0,'CMT'),(63,2,-14400,0,'-04'),(63,3,-10800,1,'-03'),(63,4,-7200,1,'-02'),(63,5,-10800,0,'-03'),(64,0,-15672,0,'LMT'),(64,1,-15408,0,'CMT'),(64,2,-14400,0,'-04'),(64,3,-10800,1,'-03'),(64,4,-7200,1,'-02'),(64,5,-10800,0,'-03'),(65,0,-16044,0,'LMT'),(65,1,-15408,0,'CMT'),(65,2,-14400,0,'-04'),(65,3,-10800,1,'-03'),(65,4,-7200,1,'-02'),(65,5,-10800,0,'-03'),(66,0,-16516,0,'LMT'),(66,1,-15408,0,'CMT'),(66,2,-14400,0,'-04'),(66,3,-10800,1,'-03'),(66,4,-7200,1,'-02'),(66,5,-10800,0,'-03'),(67,0,-16612,0,'LMT'),(67,1,-15408,0,'CMT'),(67,2,-14400,0,'-04'),(67,3,-10800,1,'-03'),(67,4,-7200,1,'-02'),(67,5,-10800,0,'-03'),(68,0,-15700,0,'LMT'),(68,1,-15408,0,'CMT'),(68,2,-14400,0,'-04'),(68,3,-10800,1,'-03'),(68,4,-7200,1,'-02'),(68,5,-10800,0,'-03'),(69,0,-16444,0,'LMT'),(69,1,-15408,0,'CMT'),(69,2,-14400,0,'-04'),(69,3,-10800,1,'-03'),(69,4,-7200,1,'-02'),(69,5,-10800,0,'-03'),(70,0,-15924,0,'LMT'),(70,1,-15408,0,'CMT'),(70,2,-14400,0,'-04'),(70,3,-10800,1,'-03'),(70,4,-7200,1,'-02'),(70,5,-10800,0,'-03'),(70,6,-10800,1,'-03'),(71,0,-15652,0,'LMT'),(71,1,-15408,0,'CMT'),(71,2,-14400,0,'-04'),(71,3,-10800,1,'-03'),(71,4,-7200,1,'-02'),(71,5,-10800,0,'-03'),(72,0,-16392,0,'LMT'),(72,1,-15408,0,'CMT'),(72,2,-14400,0,'-04'),(72,3,-10800,1,'-03'),(72,4,-7200,1,'-02'),(72,5,-10800,0,'-03'),(73,0,-16547,0,'LMT'),(73,1,-16200,0,'-0430'),(73,2,-14400,0,'AST'),(74,0,-13840,0,'LMT'),(74,1,-13840,0,'AMT'),(74,2,-14400,0,'-04'),(74,3,-10800,0,'-03'),(74,4,-10800,1,'-03'),(74,5,-14400,0,'-04'),(75,0,-21988,0,'LMT'),(75,1,-18000,1,'CDT'),(75,2,-21600,0,'CST'),(75,3,-18000,1,'CWT'),(75,4,-18000,1,'CPT'),(75,5,-18000,0,'EST'),(76,0,-42398,0,'LMT'),(76,1,-39600,0,'NST'),(76,2,-36000,1,'NWT'),(76,3,-36000,1,'NPT'),(76,4,-39600,0,'BST'),(76,5,-36000,1,'BDT'),(76,6,-36000,0,'AHST'),(76,7,-32400,1,'HDT'),(76,8,-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,'CWT'),(81,4,-18000,1,'CPT'),(81,5,-18000,1,'CDT'),(82,0,-13708,0,'LMT'),(82,1,-10800,1,'ADT'),(82,2,-14400,0,'AST'),(82,3,-10800,1,'AWT'),(82,4,-10800,1,'APT'),(83,0,-14560,0,'LMT'),(83,1,-10800,1,'-03'),(83,2,-14400,0,'-04'),(84,0,-17776,0,'LMT'),(84,1,-17776,0,'BMT'),(84,2,-14400,1,'-04'),(84,3,-18000,0,'-05'),(85,0,-27889,0,'LMT'),(85,1,-25200,1,'PDT'),(85,2,-28800,0,'PST'),(85,3,-21600,1,'MWT'),(85,4,-21600,1,'MPT'),(85,5,-25200,0,'MST'),(85,6,-21600,1,'MDT'),(86,0,-14028,0,'LMT'),(86,1,-15408,0,'CMT'),(86,2,-14400,0,'-04'),(86,3,-10800,1,'-03'),(86,4,-7200,1,'-02'),(86,5,-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,-16064,0,'LMT'),(90,1,-16060,0,'CMT'),(90,2,-16200,0,'-0430'),(90,3,-14400,0,'-04'),(91,0,-15788,0,'LMT'),(91,1,-15408,0,'CMT'),(91,2,-14400,0,'-04'),(91,3,-10800,1,'-03'),(91,4,-7200,1,'-02'),(91,5,-10800,0,'-03'),(92,0,-12560,0,'LMT'),(92,1,-14400,0,'-04'),(92,2,-10800,0,'-03'),(93,0,-19088,0,'LMT'),(93,1,-19176,0,'CMT'),(93,2,-18000,0,'EST'),(94,0,-21036,0,'LMT'),(94,1,-18000,1,'CDT'),(94,2,-21600,0,'CST'),(94,3,-18000,0,'EST'),(94,4,-18000,1,'CWT'),(94,5,-18000,1,'CPT'),(94,6,-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,-21988,0,'LMT'),(96,1,-18000,1,'CDT'),(96,2,-21600,0,'CST'),(96,3,-18000,1,'CWT'),(96,4,-18000,1,'CPT'),(96,5,-18000,0,'EST'),(97,0,-15408,0,'LMT'),(97,1,-15408,0,'CMT'),(97,2,-14400,0,'-04'),(97,3,-10800,1,'-03'),(97,4,-7200,1,'-02'),(97,5,-10800,0,'-03'),(98,0,-20173,0,'LMT'),(98,1,-20173,0,'SJMT'),(98,2,-18000,1,'CDT'),(98,3,-21600,0,'CST'),(99,0,-27964,0,'LMT'),(99,1,-25200,0,'MST'),(99,2,-28800,0,'PST'),(99,3,-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,-33460,0,'LMT'),(103,1,-28800,1,'YDT'),(103,2,-32400,0,'YST'),(103,3,-28800,1,'YWT'),(103,4,-28800,1,'YPT'),(103,5,-25200,1,'YDDT'),(103,6,-28800,0,'PST'),(103,7,-25200,1,'PDT'),(103,8,-25200,0,'MST'),(104,0,-28856,0,'LMT'),(104,1,-25200,1,'PDT'),(104,2,-28800,0,'PST'),(104,3,-25200,1,'PWT'),(104,4,-25200,1,'PPT'),(104,5,-25200,0,'MST'),(105,0,-25196,0,'LMT'),(105,1,-21600,1,'MDT'),(105,2,-25200,0,'MST'),(105,3,-21600,1,'MWT'),(105,4,-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,-29447,0,'LMT'),(112,1,-25200,1,'PDT'),(112,2,-28800,0,'PST'),(112,3,-25200,1,'PWT'),(112,4,-25200,1,'PPT'),(112,5,-25200,0,'MST'),(113,0,-20678,0,'LMT'),(113,1,-18000,1,'CDT'),(113,2,-21600,0,'CST'),(113,3,-18000,1,'CWT'),(113,4,-18000,1,'CPT'),(113,5,-18000,0,'EST'),(113,6,-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,-14500,0,'LMT'),(117,1,-12652,0,'NST'),(117,2,-9052,1,'NDT'),(117,3,-12600,0,'NST'),(117,4,-9000,1,'NDT'),(117,5,-9000,1,'NPT'),(117,6,-9000,1,'NWT'),(117,7,-10800,1,'ADT'),(117,8,-14400,0,'AST'),(117,9,-7200,1,'ADDT'),(117,10,-10800,1,'ADT'),(118,0,-17072,0,'LMT'),(118,1,-18430,0,'KMT'),(118,2,-18000,0,'EST'),(118,3,-14400,1,'EDT'),(118,4,-14400,0,'AST'),(118,5,-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,-19160,0,'LMT'),(122,1,-18840,0,'QMT'),(122,2,-14400,1,'-04'),(122,3,-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,-19768,0,'LMT'),(125,1,-19776,0,'HMT'),(125,2,-14400,1,'CDT'),(125,3,-18000,0,'CST'),(125,4,-18000,0,'CST'),(125,5,-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,-20678,0,'LMT'),(127,1,-18000,1,'CDT'),(127,2,-21600,0,'CST'),(127,3,-18000,1,'CWT'),(127,4,-18000,1,'CPT'),(127,5,-18000,0,'EST'),(127,6,-14400,1,'EDT'),(128,0,-20790,0,'LMT'),(128,1,-18000,1,'CDT'),(128,2,-21600,0,'CST'),(128,3,-18000,1,'CWT'),(128,4,-18000,1,'CPT'),(128,5,-18000,0,'EST'),(128,6,-21600,0,'CST'),(129,0,-20723,0,'LMT'),(129,1,-18000,1,'CDT'),(129,2,-21600,0,'CST'),(129,3,-18000,1,'CWT'),(129,4,-18000,1,'CPT'),(129,5,-18000,0,'EST'),(129,6,-14400,1,'EDT'),(130,0,-20947,0,'LMT'),(130,1,-18000,1,'CDT'),(130,2,-21600,0,'CST'),(130,3,-18000,1,'CWT'),(130,4,-18000,1,'CPT'),(130,5,-18000,0,'EST'),(130,6,-14400,1,'EDT'),(131,0,-20823,0,'LMT'),(131,1,-18000,1,'CDT'),(131,2,-21600,0,'CST'),(131,3,-18000,1,'CWT'),(131,4,-18000,1,'CPT'),(131,5,-18000,0,'EST'),(131,6,-14400,1,'EDT'),(131,7,-18000,1,'CDT'),(131,8,-21600,0,'CST'),(132,0,-20416,0,'LMT'),(132,1,-18000,1,'CDT'),(132,2,-21600,0,'CST'),(132,3,-18000,1,'CWT'),(132,4,-18000,1,'CPT'),(132,5,-18000,0,'EST'),(132,6,-14400,1,'EDT'),(133,0,-21007,0,'LMT'),(133,1,-18000,1,'CDT'),(133,2,-21600,0,'CST'),(133,3,-18000,1,'CWT'),(133,4,-18000,1,'CPT'),(133,5,-18000,0,'EST'),(133,6,-14400,1,'EDT'),(134,0,-20785,0,'LMT'),(134,1,-18000,1,'CDT'),(134,2,-21600,0,'CST'),(134,3,-18000,1,'CWT'),(134,4,-18000,1,'CPT'),(134,5,-18000,0,'EST'),(134,6,-14400,1,'EDT'),(135,0,-20678,0,'LMT'),(135,1,-18000,1,'CDT'),(135,2,-21600,0,'CST'),(135,3,-18000,1,'CWT'),(135,4,-18000,1,'CPT'),(135,5,-18000,0,'EST'),(135,6,-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,'LMT'),(138,1,-18430,0,'KMT'),(138,2,-18000,0,'EST'),(138,3,-14400,1,'EDT'),(139,0,-15672,0,'LMT'),(139,1,-15408,0,'CMT'),(139,2,-14400,0,'-04'),(139,3,-10800,1,'-03'),(139,4,-7200,1,'-02'),(139,5,-10800,0,'-03'),(140,0,-32261,0,'LMT'),(140,1,-28800,0,'PST'),(140,2,-25200,1,'PWT'),(140,3,-25200,1,'PPT'),(140,4,-25200,1,'PDT'),(140,5,-28800,1,'YDT'),(140,6,-32400,0,'YST'),(140,7,-28800,1,'AKDT'),(140,8,-32400,0,'AKST'),(141,0,-20582,0,'LMT'),(141,1,-18000,1,'CDT'),(141,2,-21600,0,'CST'),(141,3,-18000,1,'CWT'),(141,4,-18000,1,'CPT'),(141,5,-18000,0,'EST'),(141,6,-14400,1,'EDT'),(142,0,-20364,0,'LMT'),(142,1,-18000,1,'CDT'),(142,2,-21600,0,'CST'),(142,3,-18000,1,'CWT'),(142,4,-18000,1,'CPT'),(142,5,-14400,1,'EDT'),(142,6,-18000,0,'EST'),(143,0,-20790,0,'LMT'),(143,1,-18000,1,'CDT'),(143,2,-21600,0,'CST'),(143,3,-18000,1,'CWT'),(143,4,-18000,1,'CPT'),(143,5,-18000,0,'EST'),(143,6,-21600,0,'CST'),(144,0,-16547,0,'LMT'),(144,1,-16200,0,'-0430'),(144,2,-14400,0,'AST'),(145,0,-16356,0,'LMT'),(145,1,-16356,0,'CMT'),(145,2,-12756,1,'BST'),(145,3,-14400,0,'-04'),(146,0,-18492,0,'LMT'),(146,1,-18516,0,'LMT'),(146,2,-14400,1,'-04'),(146,3,-18000,0,'-05'),(147,0,-28378,0,'LMT'),(147,1,-25200,1,'PDT'),(147,2,-28800,0,'PST'),(147,3,-25200,1,'PWT'),(147,4,-25200,1,'PPT'),(148,0,-20582,0,'LMT'),(148,1,-18000,1,'CDT'),(148,2,-21600,0,'CST'),(148,3,-18000,1,'CWT'),(148,4,-18000,1,'CPT'),(148,5,-18000,0,'EST'),(148,6,-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,-20708,0,'LMT'),(151,1,-20712,0,'MMT'),(151,2,-21600,0,'CST'),(151,3,-18000,0,'EST'),(151,4,-18000,1,'CDT'),(151,5,-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,'LMT'),(154,1,-14660,0,'FFMT'),(154,2,-14400,0,'AST'),(154,3,-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,-16516,0,'LMT'),(157,1,-15408,0,'CMT'),(157,2,-14400,0,'-04'),(157,3,-10800,1,'-03'),(157,4,-7200,1,'-02'),(157,5,-10800,0,'-03'),(158,0,-21027,0,'LMT'),(158,1,-18000,1,'CDT'),(158,2,-21600,0,'CST'),(158,3,-18000,1,'CWT'),(158,4,-18000,1,'CPT'),(158,5,-18000,0,'EST'),(158,6,-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,-31578,0,'LMT'),(160,1,-28800,0,'PST'),(160,2,-25200,1,'PWT'),(160,3,-25200,1,'PPT'),(160,4,-25200,1,'PDT'),(160,5,-32400,0,'AKST'),(160,6,-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,-15548,0,'LMT'),(163,1,-18000,0,'EST'),(163,2,-10800,1,'ADT'),(163,3,-14400,0,'AST'),(163,4,-10800,1,'AWT'),(163,5,-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,-19052,0,'LMT'),(166,1,-14400,1,'EDT'),(166,2,-18000,0,'EST'),(166,3,-14400,1,'EWT'),(166,4,-14400,1,'EPT'),(167,0,-14764,0,'LMT'),(167,1,-14400,0,'AST'),(168,0,-18570,0,'LMT'),(168,1,-14400,1,'EWT'),(168,2,-18000,0,'EST'),(168,3,-14400,1,'EPT'),(168,4,-14400,1,'EDT'),(169,0,-17762,0,'LMT'),(169,1,-14400,1,'EDT'),(169,2,-18000,0,'EST'),(169,3,-14400,1,'EWT'),(169,4,-14400,1,'EPT'),(170,0,-21184,0,'LMT'),(170,1,-14400,1,'EDT'),(170,2,-18000,0,'EST'),(170,3,-14400,1,'EWT'),(170,4,-14400,1,'EPT'),(171,0,-39698,0,'LMT'),(171,1,-39600,0,'NST'),(171,2,-36000,1,'NWT'),(171,3,-36000,1,'NPT'),(171,4,-39600,0,'BST'),(171,5,-36000,1,'BDT'),(171,6,-32400,0,'YST'),(171,7,-28800,1,'AKDT'),(171,8,-32400,0,'AKST'),(172,0,-7780,0,'LMT'),(172,1,-3600,1,'-01'),(172,2,-7200,0,'-02'),(173,0,-24427,0,'LMT'),(173,1,-21600,1,'MDT'),(173,2,-25200,0,'MST'),(173,3,-21600,1,'MWT'),(173,4,-21600,1,'MPT'),(173,5,-18000,1,'CDT'),(173,6,-21600,0,'CST'),(174,0,-24312,0,'LMT'),(174,1,-21600,1,'MDT'),(174,2,-25200,0,'MST'),(174,3,-21600,1,'MWT'),(174,4,-21600,1,'MPT'),(174,5,-18000,1,'CDT'),(174,6,-21600,0,'CST'),(175,0,-24339,0,'LMT'),(175,1,-21600,1,'MDT'),(175,2,-25200,0,'MST'),(175,3,-21600,1,'MWT'),(175,4,-21600,1,'MPT'),(175,5,-18000,1,'CDT'),(175,6,-21600,0,'CST'),(176,0,-12416,0,'LMT'),(176,1,-10800,0,'-03'),(176,2,-10800,0,'-03'),(176,3,-7200,1,'-02'),(176,4,-7200,1,'-02'),(177,0,-25060,0,'LMT'),(177,1,-25200,0,'MST'),(177,2,-21600,0,'CST'),(177,3,-18000,1,'CDT'),(177,4,-21600,1,'MDT'),(177,5,-25200,0,'MST'),(178,0,-19088,0,'LMT'),(178,1,-19176,0,'CMT'),(178,2,-18000,0,'EST'),(179,0,0,0,'-00'),(179,1,-10800,1,'AWT'),(179,2,-10800,1,'APT'),(179,3,-14400,0,'AST'),(179,4,-7200,1,'ADDT'),(179,5,-10800,1,'ADT'),(179,6,-14400,1,'EDT'),(179,7,-18000,0,'EST'),(179,8,-21600,0,'CST'),(179,9,-18000,1,'CDT'),(179,10,-14400,1,'EDT'),(179,11,-18000,0,'EST'),(180,0,-13240,0,'LMT'),(180,1,-13252,0,'PMT'),(180,2,-13236,0,'PMT'),(180,3,-12600,0,'-0330'),(180,4,-10800,0,'-03'),(181,0,-26898,0,'LMT'),(181,1,-21600,1,'MDT'),(181,2,-25200,0,'MST'),(181,3,-21600,1,'MWT'),(182,0,-17360,0,'LMT'),(182,1,-17340,0,'PPMT'),(182,2,-14400,1,'EDT'),(182,3,-18000,0,'EST'),(182,4,-14400,1,'EDT'),(182,5,-18000,0,'EST'),(183,0,-14764,0,'LMT'),(183,1,-14400,0,'AST'),(184,0,-16272,0,'LMT'),(184,1,-14400,1,'-04'),(184,2,-18000,0,'-05'),(184,3,-14400,0,'-04'),(184,4,-18000,0,'-05'),(185,0,-15336,0,'LMT'),(185,1,-10800,1,'-03'),(185,2,-14400,0,'-04'),(186,0,-15865,0,'LMT'),(186,1,-14400,0,'AST'),(186,2,-10800,1,'APT'),(186,3,-10800,1,'AWT'),(187,0,-17020,0,'LMT'),(187,1,-16966,0,'SMT'),(187,2,-18000,0,'-05'),(187,3,-14400,0,'-04'),(187,4,-14400,1,'-04'),(187,5,-10800,1,'-03'),(187,6,-14400,0,'-04'),(187,7,-10800,0,'-03'),(188,0,-22696,0,'LMT'),(188,1,-18000,1,'CDT'),(188,2,-21600,0,'CST'),(188,3,-18000,1,'CWT'),(188,4,-18000,1,'CPT'),(189,0,0,0,'-00'),(189,1,-14400,1,'CDDT'),(189,2,-21600,0,'CST'),(189,3,-18000,1,'CDT'),(189,4,-18000,0,'EST'),(189,5,-21600,0,'CST'),(190,0,-8376,0,'LMT'),(190,1,-7200,1,'-02'),(190,2,-10800,0,'-03'),(191,0,-25116,0,'LMT'),(191,1,-21600,1,'MDT'),(191,2,-25200,0,'MST'),(191,3,-21600,1,'MWT'),(191,4,-21600,1,'MPT'),(191,5,-21600,0,'CST'),(192,0,0,0,'-00'),(192,1,-14400,1,'CDDT'),(192,2,-21600,0,'CST'),(192,3,-18000,1,'CDT'),(192,4,-18000,0,'EST'),(192,5,-21600,0,'CST'),(193,0,-16272,0,'LMT'),(193,1,-14400,1,'-04'),(193,2,-18000,0,'-05'),(193,3,-14400,0,'-04'),(193,4,-18000,0,'-05'),(194,0,-15408,0,'LMT'),(194,1,-15408,0,'CMT'),(194,2,-14400,0,'-04'),(194,3,-10800,1,'-03'),(194,4,-7200,1,'-02'),(194,5,-10800,0,'-03'),(195,0,-28084,0,'LMT'),(195,1,-25200,0,'MST'),(195,2,-28800,0,'PST'),(195,3,-25200,1,'PDT'),(195,4,-25200,1,'PWT'),(195,5,-25200,1,'PPT'),(196,0,-13128,0,'LMT'),(196,1,-10800,1,'-03'),(196,2,-14400,0,'-04'),(196,3,-10800,0,'-03'),(197,0,-16966,0,'LMT'),(197,1,-16966,0,'SMT'),(197,2,-18000,0,'-05'),(197,3,-14400,0,'-04'),(197,4,-14400,1,'-04'),(197,5,-10800,1,'-03'),(197,6,-10800,1,'-03'),(197,7,-14400,0,'-04'),(198,0,-16776,0,'LMT'),(198,1,-16800,0,'SDMT'),(198,2,-14400,1,'EDT'),(198,3,-18000,0,'EST'),(198,4,-16200,1,'-0430'),(198,5,-14400,0,'AST'),(199,0,-11188,0,'LMT'),(199,1,-7200,1,'-02'),(199,2,-10800,0,'-03'),(200,0,-5272,0,'LMT'),(200,1,-7200,0,'-02'),(200,2,-3600,1,'-01'),(200,3,-7200,0,'-02'),(200,4,-3600,0,'-01'),(200,5,0,1,'+00'),(200,6,0,1,'+00'),(201,0,-25196,0,'LMT'),(201,1,-21600,1,'MDT'),(201,2,-25200,0,'MST'),(201,3,-21600,1,'MWT'),(201,4,-21600,1,'MPT'),(202,0,-32473,0,'LMT'),(202,1,-28800,0,'PST'),(202,2,-25200,1,'PWT'),(202,3,-25200,1,'PPT'),(202,4,-25200,1,'PDT'),(202,5,-32400,0,'YST'),(202,6,-28800,1,'AKDT'),(202,7,-32400,0,'AKST'),(203,0,-14764,0,'LMT'),(203,1,-14400,0,'AST'),(204,0,-12652,0,'LMT'),(204,1,-9052,1,'NDT'),(204,2,-12652,0,'NST'),(204,3,-9000,1,'NDT'),(204,4,-12600,0,'NST'),(204,5,-9000,1,'NPT'),(204,6,-9000,1,'NWT'),(204,7,-5400,1,'NDDT'),(204,8,-9000,1,'NDT'),(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,-14764,0,'LMT'),(208,1,-14400,0,'AST'),(209,0,-25880,0,'LMT'),(209,1,-21600,1,'MDT'),(209,2,-25200,0,'MST'),(209,3,-21600,1,'MWT'),(209,4,-21600,1,'MPT'),(209,5,-21600,0,'CST'),(210,0,-20932,0,'LMT'),(210,1,-18000,1,'CDT'),(210,2,-21600,0,'CST'),(211,0,-16508,0,'LMT'),(211,1,-10800,1,'ADT'),(211,2,-14400,0,'AST'),(212,0,-21420,0,'LMT'),(212,1,-21600,0,'CST'),(212,2,-18000,0,'EST'),(212,3,-14400,1,'EWT'),(212,4,-14400,1,'EPT'),(212,5,-14400,1,'EDT'),(213,0,-28084,0,'LMT'),(213,1,-25200,0,'MST'),(213,2,-28800,0,'PST'),(213,3,-25200,1,'PDT'),(213,4,-25200,1,'PWT'),(213,5,-25200,1,'PPT'),(214,0,-19052,0,'LMT'),(214,1,-14400,1,'EDT'),(214,2,-18000,0,'EST'),(214,3,-14400,1,'EWT'),(214,4,-14400,1,'EPT'),(215,0,-14764,0,'LMT'),(215,1,-14400,0,'AST'),(216,0,-29548,0,'LMT'),(216,1,-25200,1,'PDT'),(216,2,-28800,0,'PST'),(216,3,-25200,1,'PWT'),(216,4,-25200,1,'PPT'),(217,0,-14764,0,'LMT'),(217,1,-14400,0,'AST'),(218,0,-32412,0,'LMT'),(218,1,-28800,1,'YDT'),(218,2,-32400,0,'YST'),(218,3,-28800,1,'YWT'),(218,4,-28800,1,'YPT'),(218,5,-25200,1,'YDDT'),(218,6,-28800,0,'PST'),(218,7,-25200,1,'PDT'),(218,8,-25200,0,'MST'),(219,0,-23316,0,'LMT'),(219,1,-18000,1,'CDT'),(219,2,-21600,0,'CST'),(219,3,-18000,1,'CWT'),(219,4,-18000,1,'CPT'),(219,5,-18000,1,'CDT'),(219,6,-21600,0,'CST'),(220,0,-33535,0,'LMT'),(220,1,-32400,0,'YST'),(220,2,-28800,1,'YWT'),(220,3,-28800,1,'YPT'),(220,4,-28800,1,'YDT'),(220,5,-28800,1,'AKDT'),(220,6,-32400,0,'AKST'),(221,0,0,0,'-00'),(221,1,-21600,1,'MWT'),(221,2,-21600,1,'MPT'),(221,3,-25200,0,'MST'),(221,4,-18000,1,'MDDT'),(221,5,-21600,1,'MDT'),(222,0,0,0,'-00'),(222,1,28800,0,'+08'),(222,2,39600,0,'+11'),(222,3,28800,0,'+08'),(222,4,39600,0,'+11'),(223,0,0,0,'-00'),(223,1,25200,0,'+07'),(223,2,18000,0,'+05'),(223,3,25200,0,'+07'),(224,0,0,0,'-00'),(224,1,36000,0,'+10'),(225,0,0,0,'-00'),(225,1,36000,0,'AEST'),(225,2,39600,1,'AEDT'),(225,3,36000,0,'AEST'),(225,4,0,0,'-00'),(225,5,39600,1,'AEDT'),(225,6,36000,0,'AEST'),(226,0,0,0,'-00'),(226,1,21600,0,'+06'),(226,2,18000,0,'+05'),(227,0,41944,0,'LMT'),(227,1,45000,1,'NZST'),(227,2,41400,0,'NZMT'),(227,3,43200,1,'NZST'),(227,4,46800,1,'NZDT'),(227,5,43200,0,'NZST'),(227,6,43200,0,'NZST'),(228,0,0,0,'-00'),(228,1,-14400,0,'-04'),(228,2,-10800,1,'-03'),(228,3,-7200,1,'-02'),(228,4,-10800,0,'-03'),(228,5,-10800,1,'-03'),(228,6,-14400,0,'-04'),(228,7,-10800,0,'-03'),(229,0,0,0,'-00'),(229,1,-10800,0,'-03'),(230,0,41944,0,'LMT'),(230,1,45000,1,'NZST'),(230,2,41400,0,'NZMT'),(230,3,43200,1,'NZST'),(230,4,46800,1,'NZDT'),(230,5,43200,0,'NZST'),(230,6,43200,0,'NZST'),(231,0,0,0,'-00'),(231,1,10800,0,'+03'),(232,0,0,0,'-00'),(232,1,7200,1,'+02'),(232,2,0,0,'+00'),(232,3,0,0,'+00'),(233,0,0,0,'-00'),(233,1,21600,0,'+06'),(234,0,2580,0,'LMT'),(234,1,7200,1,'CEST'),(234,2,3600,0,'CET'),(234,3,3600,0,'CET'),(234,4,7200,1,'CEST'),(234,5,7200,1,'CEST'),(234,6,3600,0,'CET'),(235,0,11212,0,'LMT'),(235,1,10800,0,'+03'),(236,0,18468,0,'LMT'),(236,1,18000,0,'+05'),(236,2,25200,1,'+07'),(236,3,21600,0,'+06'),(236,4,21600,0,'+06'),(236,5,25200,1,'+07'),(236,6,21600,1,'+06'),(236,7,18000,0,'+05'),(236,8,25200,1,'+07'),(236,9,21600,0,'+06'),(237,0,8624,0,'LMT'),(237,1,10800,1,'EEST'),(237,2,7200,0,'EET'),(237,3,7200,0,'EET'),(237,4,10800,1,'EEST'),(238,0,42596,0,'LMT'),(238,1,43200,0,'+12'),(238,2,50400,1,'+14'),(238,3,46800,0,'+13'),(238,4,46800,1,'+13'),(238,5,43200,0,'+12'),(238,6,46800,1,'+13'),(238,7,43200,1,'+12'),(238,8,39600,0,'+11'),(238,9,43200,0,'+12'),(239,0,12064,0,'LMT'),(239,1,14400,0,'+04'),(239,2,18000,0,'+05'),(239,3,21600,0,'+06'),(239,4,21600,1,'+06'),(239,5,18000,0,'+05'),(239,6,21600,1,'+06'),(239,7,18000,1,'+05'),(239,8,14400,0,'+04'),(239,9,18000,0,'+05'),(240,0,13720,0,'LMT'),(240,1,14400,0,'+04'),(240,2,18000,0,'+05'),(240,3,21600,1,'+06'),(240,4,21600,0,'+06'),(240,5,18000,0,'+05'),(240,6,21600,1,'+06'),(240,7,18000,1,'+05'),(240,8,14400,0,'+04'),(240,9,21600,1,'+06'),(240,10,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,14012,0,'LMT'),(242,1,14400,0,'+04'),(242,2,21600,1,'+06'),(242,3,18000,0,'+05'),(242,4,18000,0,'+05'),(242,5,21600,1,'+06'),(242,6,18000,1,'+05'),(242,7,14400,0,'+04'),(242,8,18000,0,'+05'),(243,0,12464,0,'LMT'),(243,1,10800,0,'+03'),(243,2,18000,0,'+05'),(243,3,21600,0,'+06'),(243,4,21600,1,'+06'),(243,5,18000,0,'+05'),(243,6,21600,1,'+06'),(243,7,18000,1,'+05'),(243,8,14400,0,'+04'),(243,9,18000,0,'+05'),(244,0,10660,0,'LMT'),(244,1,10656,0,'BMT'),(244,2,10800,0,'+03'),(244,3,14400,1,'+04'),(244,4,10800,0,'+03'),(244,5,14400,1,'+04'),(245,0,12368,0,'LMT'),(245,1,14400,0,'+04'),(245,2,10800,0,'+03'),(246,0,11964,0,'LMT'),(246,1,10800,0,'+03'),(246,2,18000,1,'+05'),(246,3,14400,0,'+04'),(246,4,14400,0,'+04'),(246,5,18000,1,'+05'),(246,6,14400,1,'+04'),(246,7,10800,0,'+03'),(246,8,18000,1,'+05'),(246,9,14400,0,'+04'),(247,0,24124,0,'LMT'),(247,1,24124,0,'BMT'),(247,2,25200,0,'+07'),(248,0,20100,0,'LMT'),(248,1,21600,0,'+06'),(248,2,28800,1,'+08'),(248,3,25200,0,'+07'),(248,4,25200,0,'+07'),(248,5,28800,1,'+08'),(248,6,25200,1,'+07'),(248,7,21600,0,'+06'),(248,8,25200,1,'+07'),(248,9,25200,0,'+07'),(249,0,8520,0,'LMT'),(249,1,10800,1,'EEST'),(249,2,7200,0,'EET'),(250,0,17904,0,'LMT'),(250,1,18000,0,'+05'),(250,2,25200,1,'+07'),(250,3,21600,0,'+06'),(250,4,21600,0,'+06'),(250,5,25200,1,'+07'),(250,6,21600,1,'+06'),(250,7,18000,0,'+05'),(250,8,21600,1,'+06'),(250,9,21600,0,'+06'),(251,0,27580,0,'LMT'),(251,1,27000,0,'+0730'),(251,2,28800,0,'+08'),(252,0,21200,0,'HMT'),(252,1,19270,0,'MMT'),(252,2,19800,0,'IST'),(252,3,23400,1,'+0630'),(253,0,27232,0,'LMT'),(253,1,28800,0,'+08'),(253,2,36000,1,'+10'),(253,3,32400,0,'+09'),(253,4,32400,0,'+09'),(253,5,36000,1,'+10'),(253,6,32400,1,'+09'),(253,7,28800,0,'+08'),(253,8,36000,0,'+10'),(253,9,36000,1,'+10'),(253,10,32400,0,'+09'),(254,0,27480,0,'LMT'),(254,1,25200,0,'+07'),(254,2,28800,0,'+08'),(254,3,32400,0,'+09'),(254,4,36000,1,'+10'),(254,5,32400,1,'+09'),(254,6,28800,0,'+08'),(255,0,29143,0,'LMT'),(255,1,32400,1,'CDT'),(255,2,28800,0,'CST'),(256,0,29143,0,'LMT'),(256,1,32400,1,'CDT'),(256,2,28800,0,'CST'),(257,0,19164,0,'LMT'),(257,1,19172,0,'MMT'),(257,2,19800,0,'+0530'),(257,3,21600,1,'+06'),(257,4,23400,1,'+0630'),(257,5,23400,0,'+0630'),(257,6,21600,0,'+06'),(257,7,19800,0,'+0530'),(258,0,21700,0,'LMT'),(258,1,21200,0,'HMT'),(258,2,23400,0,'+0630'),(258,3,19800,0,'+0530'),(258,4,21600,0,'+06'),(258,5,25200,1,'+07'),(259,0,8712,0,'LMT'),(259,1,10800,1,'EEST'),(259,2,7200,0,'EET'),(260,0,21700,0,'LMT'),(260,1,21200,0,'HMT'),(260,2,23400,0,'+0630'),(260,3,19800,0,'+0530'),(260,4,21600,0,'+06'),(260,5,25200,1,'+07'),(261,0,30140,0,'LMT'),(261,1,28800,0,'+08'),(261,2,32400,0,'+09'),(262,0,13272,0,'LMT'),(262,1,14400,0,'+04'),(263,0,16512,0,'LMT'),(263,1,18000,0,'+05'),(263,2,25200,1,'+07'),(263,3,21600,0,'+06'),(263,4,21600,0,'+06'),(263,5,25200,1,'+07'),(263,6,21600,1,'+06'),(263,7,18000,0,'+05'),(264,0,8148,0,'LMT'),(264,1,10800,1,'EEST'),(264,2,7200,0,'EET'),(264,3,7200,0,'EET'),(264,4,10800,1,'EEST'),(264,5,10800,0,'+03'),(264,6,7200,0,'EET'),(265,0,8272,0,'LMT'),(265,1,10800,1,'EEST'),(265,2,7200,0,'EET'),(265,3,7200,0,'EET'),(265,4,10800,1,'EEST'),(265,5,10800,1,'IDT'),(265,6,7200,0,'IST'),(265,7,10800,1,'IDT'),(265,8,7200,0,'IST'),(265,9,7200,0,'EET'),(266,0,29143,0,'LMT'),(266,1,32400,1,'CDT'),(266,2,28800,0,'CST'),(267,0,8423,0,'LMT'),(267,1,10800,1,'EEST'),(267,2,7200,0,'EET'),(267,3,7200,0,'EET'),(267,4,10800,1,'EEST'),(267,5,10800,1,'IDT'),(267,6,7200,0,'IST'),(267,7,10800,1,'IDT'),(267,8,7200,0,'IST'),(267,9,7200,0,'EET'),(268,0,25600,0,'LMT'),(268,1,25590,0,'PLMT'),(268,2,25200,0,'+07'),(268,3,28800,0,'+08'),(268,4,32400,0,'+09'),(268,5,25200,0,'+07'),(269,0,27402,0,'LMT'),(269,1,28800,0,'HKT'),(269,2,32400,1,'HKST'),(269,3,30600,1,'HKWT'),(269,4,32400,0,'JST'),(269,5,28800,0,'HKT'),(269,6,32400,1,'HKST'),(270,0,21996,0,'LMT'),(270,1,21600,0,'+06'),(270,2,28800,1,'+08'),(270,3,25200,0,'+07'),(271,0,25025,0,'LMT'),(271,1,25025,0,'IMT'),(271,2,25200,0,'+07'),(271,3,32400,1,'+09'),(271,4,28800,0,'+08'),(271,5,28800,0,'+08'),(271,6,32400,1,'+09'),(271,7,28800,1,'+08'),(271,8,25200,0,'+07'),(271,9,32400,0,'+09'),(271,10,32400,1,'+09'),(271,11,28800,0,'+08'),(272,0,6952,0,'LMT'),(272,1,7016,0,'IMT'),(272,2,10800,1,'EEST'),(272,3,7200,0,'EET'),(272,4,10800,0,'+03'),(272,5,14400,1,'+04'),(272,6,10800,1,'EEST'),(272,7,7200,0,'EET'),(272,8,10800,1,'EEST'),(272,9,7200,0,'EET'),(272,10,10800,0,'+03'),(273,0,25632,0,'LMT'),(273,1,25632,0,'BMT'),(273,2,26400,0,'+0720'),(273,3,27000,0,'+0730'),(273,4,32400,0,'+09'),(273,5,28800,0,'+08'),(273,6,25200,0,'WIB'),(274,0,33768,0,'LMT'),(274,1,32400,0,'+09'),(274,2,34200,0,'+0930'),(274,3,32400,0,'WIT'),(275,0,8454,0,'LMT'),(275,1,8440,0,'JMT'),(275,2,10800,1,'IDT'),(275,3,7200,0,'IST'),(275,4,14400,1,'IDDT'),(275,5,10800,1,'IDT'),(275,6,7200,0,'IST'),(275,7,10800,1,'IDT'),(275,8,7200,0,'IST'),(276,0,16608,0,'LMT'),(276,1,14400,0,'+04'),(276,2,16200,0,'+0430'),(277,0,38076,0,'LMT'),(277,1,39600,0,'+11'),(277,2,46800,1,'+13'),(277,3,43200,0,'+12'),(277,4,43200,0,'+12'),(277,5,46800,1,'+13'),(277,6,43200,1,'+12'),(277,7,39600,0,'+11'),(277,8,43200,0,'+12'),(278,0,16092,0,'LMT'),(278,1,19800,0,'+0530'),(278,2,23400,1,'+0630'),(278,3,18000,0,'+05'),(278,4,21600,1,'PKST'),(278,5,18000,0,'PKT'),(279,0,21020,0,'LMT'),(279,1,21600,0,'+06'),(280,0,20476,0,'LMT'),(280,1,19800,0,'+0530'),(280,2,20700,0,'+0545'),(281,0,20476,0,'LMT'),(281,1,19800,0,'+0530'),(281,2,20700,0,'+0545'),(282,0,32533,0,'LMT'),(282,1,28800,0,'+08'),(282,2,36000,1,'+10'),(282,3,32400,0,'+09'),(282,4,32400,0,'+09'),(282,5,36000,1,'+10'),(282,6,32400,1,'+09'),(282,7,28800,0,'+08'),(282,8,39600,1,'+11'),(282,9,36000,0,'+10'),(282,10,36000,0,'+10'),(282,11,39600,0,'+11'),(282,12,32400,0,'+09'),(283,0,21200,0,'HMT'),(283,1,19270,0,'MMT'),(283,2,19800,0,'IST'),(283,3,23400,1,'+0630'),(284,0,22286,0,'LMT'),(284,1,21600,0,'+06'),(284,2,28800,1,'+08'),(284,3,25200,0,'+07'),(284,4,25200,0,'+07'),(284,5,28800,1,'+08'),(284,6,25200,1,'+07'),(284,7,21600,0,'+06'),(284,8,28800,0,'+08'),(284,9,28800,1,'+08'),(284,10,25200,0,'+07'),(285,0,24406,0,'LMT'),(285,1,24925,0,'SMT'),(285,2,25200,0,'+07'),(285,3,26400,1,'+0720'),(285,4,26400,0,'+0720'),(285,5,27000,0,'+0730'),(285,6,32400,0,'+09'),(285,7,28800,0,'+08'),(286,0,26480,0,'LMT'),(286,1,27000,0,'+0730'),(286,2,30000,1,'+0820'),(286,3,28800,0,'+08'),(286,4,32400,0,'+09'),(286,5,28800,0,'+08'),(287,0,11212,0,'LMT'),(287,1,10800,0,'+03'),(288,0,27250,0,'LMT'),(288,1,28800,0,'CST'),(288,2,36000,1,'+10'),(288,3,32400,0,'+09'),(288,4,32400,1,'CDT'),(288,5,28800,0,'CST'),(288,6,32400,1,'CDT'),(289,0,27250,0,'LMT'),(289,1,28800,0,'CST'),(289,2,36000,1,'+10'),(289,3,32400,0,'+09'),(289,4,32400,1,'CDT'),(289,5,28800,0,'CST'),(289,6,32400,1,'CDT'),(290,0,36192,0,'LMT'),(290,1,36000,0,'+10'),(290,2,43200,1,'+12'),(290,3,39600,0,'+11'),(290,4,39600,0,'+11'),(290,5,43200,1,'+12'),(290,6,39600,1,'+11'),(290,7,36000,0,'+10'),(290,8,43200,0,'+12'),(290,9,43200,1,'+12'),(290,10,39600,0,'+11'),(291,0,28656,0,'LMT'),(291,1,28656,0,'MMT'),(291,2,28800,0,'+08'),(291,3,32400,0,'+09'),(291,4,28800,0,'WITA'),(292,0,29040,0,'LMT'),(292,1,32400,1,'PDT'),(292,2,28800,0,'PST'),(292,3,32400,0,'JST'),(292,4,28800,0,'PST'),(293,0,13272,0,'LMT'),(293,1,14400,0,'+04'),(294,0,8008,0,'LMT'),(294,1,10800,1,'EEST'),(294,2,7200,0,'EET'),(294,3,7200,0,'EET'),(294,4,10800,1,'EEST'),(295,0,20928,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,0,'+07'),(296,0,19900,0,'LMT'),(296,1,21600,0,'+06'),(296,2,28800,1,'+08'),(296,3,25200,0,'+07'),(296,4,25200,0,'+07'),(296,5,28800,1,'+08'),(296,6,25200,1,'+07'),(296,7,21600,0,'+06'),(296,8,25200,1,'+07'),(296,9,25200,0,'+07'),(297,0,17610,0,'LMT'),(297,1,18000,0,'+05'),(297,2,25200,1,'+07'),(297,3,21600,0,'+06'),(297,4,21600,0,'+06'),(297,5,25200,1,'+07'),(297,6,21600,1,'+06'),(297,7,18000,0,'+05'),(297,8,25200,0,'+07'),(297,9,25200,1,'+07'),(297,10,21600,0,'+06'),(298,0,12324,0,'LMT'),(298,1,10800,0,'+03'),(298,2,18000,0,'+05'),(298,3,21600,1,'+06'),(298,4,21600,0,'+06'),(298,5,18000,0,'+05'),(298,6,21600,1,'+06'),(298,7,18000,1,'+05'),(298,8,14400,0,'+04'),(298,9,18000,0,'+05'),(299,0,24124,0,'LMT'),(299,1,24124,0,'BMT'),(299,2,25200,0,'+07'),(300,0,26240,0,'LMT'),(300,1,26240,0,'PMT'),(300,2,27000,0,'+0730'),(300,3,32400,0,'+09'),(300,4,28800,0,'+08'),(300,5,28800,0,'WITA'),(300,6,25200,0,'WIB'),(301,0,30180,0,'LMT'),(301,1,30600,0,'KST'),(301,2,32400,0,'JST'),(301,3,32400,0,'KST'),(302,0,12368,0,'LMT'),(302,1,14400,0,'+04'),(302,2,10800,0,'+03'),(303,0,15268,0,'LMT'),(303,1,14400,0,'+04'),(303,2,18000,0,'+05'),(303,3,21600,1,'+06'),(303,4,21600,0,'+06'),(303,5,18000,0,'+05'),(303,6,21600,1,'+06'),(303,7,18000,1,'+05'),(303,8,14400,0,'+04'),(303,9,21600,0,'+06'),(303,10,21600,1,'+06'),(304,0,15712,0,'LMT'),(304,1,14400,0,'+04'),(304,2,18000,0,'+05'),(304,3,21600,1,'+06'),(304,4,21600,0,'+06'),(304,5,18000,0,'+05'),(304,6,21600,1,'+06'),(304,7,18000,1,'+05'),(304,8,14400,0,'+04'),(304,9,21600,0,'+06'),(304,10,21600,1,'+06'),(304,11,18000,0,'+05'),(305,0,23087,0,'LMT'),(305,1,23087,0,'RMT'),(305,2,23400,0,'+0630'),(305,3,32400,0,'+09'),(305,4,23400,0,'+0630'),(306,0,11212,0,'LMT'),(306,1,10800,0,'+03'),(307,0,25600,0,'LMT'),(307,1,25590,0,'PLMT'),(307,2,25200,0,'+07'),(307,3,28800,0,'+08'),(307,4,32400,0,'+09'),(307,5,25200,0,'+07'),(308,0,34248,0,'LMT'),(308,1,32400,0,'+09'),(308,2,43200,1,'+12'),(308,3,39600,0,'+11'),(308,4,39600,0,'+11'),(308,5,43200,1,'+12'),(308,6,39600,1,'+11'),(308,7,36000,0,'+10'),(308,8,39600,0,'+11'),(309,0,16073,0,'LMT'),(309,1,14400,0,'+04'),(309,2,18000,0,'+05'),(309,3,21600,1,'+06'),(309,4,21600,0,'+06'),(309,5,18000,0,'+05'),(309,6,21600,1,'+06'),(310,0,30472,0,'LMT'),(310,1,30600,0,'KST'),(310,2,32400,0,'JST'),(310,3,36000,1,'KDT'),(310,4,32400,0,'KST'),(310,5,34200,1,'KDT'),(310,6,36000,1,'KDT'),(311,0,29143,0,'LMT'),(311,1,32400,1,'CDT'),(311,2,28800,0,'CST'),(312,0,24925,0,'LMT'),(312,1,24925,0,'SMT'),(312,2,25200,0,'+07'),(312,3,26400,1,'+0720'),(312,4,26400,0,'+0720'),(312,5,27000,0,'+0730'),(312,6,32400,0,'+09'),(312,7,28800,0,'+08'),(313,0,36892,0,'LMT'),(313,1,36000,0,'+10'),(313,2,43200,1,'+12'),(313,3,39600,0,'+11'),(313,4,39600,0,'+11'),(313,5,43200,1,'+12'),(313,6,39600,1,'+11'),(313,7,36000,0,'+10'),(313,8,43200,0,'+12'),(313,9,43200,1,'+12'),(313,10,39600,0,'+11'),(314,0,29160,0,'LMT'),(314,1,28800,0,'CST'),(314,2,32400,0,'JST'),(314,3,32400,1,'CDT'),(314,4,28800,0,'CST'),(315,0,16631,0,'LMT'),(315,1,18000,0,'+05'),(315,2,25200,1,'+07'),(315,3,21600,0,'+06'),(315,4,21600,0,'+06'),(315,5,25200,1,'+07'),(315,6,21600,1,'+06'),(315,7,18000,0,'+05'),(316,0,10751,0,'LMT'),(316,1,10751,0,'TBMT'),(316,2,10800,0,'+03'),(316,3,18000,1,'+05'),(316,4,14400,0,'+04'),(316,5,14400,0,'+04'),(316,6,18000,1,'+05'),(316,7,14400,1,'+04'),(316,8,10800,0,'+03'),(316,9,14400,1,'+04'),(316,10,14400,0,'+04'),(317,0,12344,0,'LMT'),(317,1,12344,0,'TMT'),(317,2,12600,0,'+0330'),(317,3,18000,1,'+05'),(317,4,14400,0,'+04'),(317,5,16200,1,'+0430'),(317,6,12600,0,'+0330'),(318,0,8454,0,'LMT'),(318,1,8440,0,'JMT'),(318,2,10800,1,'IDT'),(318,3,7200,0,'IST'),(318,4,14400,1,'IDDT'),(318,5,10800,1,'IDT'),(318,6,7200,0,'IST'),(318,7,10800,1,'IDT'),(318,8,7200,0,'IST'),(319,0,21516,0,'LMT'),(319,1,19800,0,'+0530'),(319,2,21600,0,'+06'),(320,0,21516,0,'LMT'),(320,1,19800,0,'+0530'),(320,2,21600,0,'+06'),(321,0,33539,0,'LMT'),(321,1,36000,1,'JDT'),(321,2,32400,0,'JST'),(321,3,32400,0,'JST'),(322,0,20391,0,'LMT'),(322,1,21600,0,'+06'),(322,2,28800,1,'+08'),(322,3,25200,0,'+07'),(322,4,25200,0,'+07'),(322,5,28800,1,'+08'),(322,6,25200,1,'+07'),(322,7,21600,0,'+06'),(322,8,25200,1,'+07'),(322,9,25200,0,'+07'),(323,0,28656,0,'LMT'),(323,1,28656,0,'MMT'),(323,2,28800,0,'+08'),(323,3,32400,0,'+09'),(323,4,28800,0,'WITA'),(324,0,25652,0,'LMT'),(324,1,25200,0,'+07'),(324,2,32400,1,'+09'),(324,3,28800,0,'+08'),(325,0,25652,0,'LMT'),(325,1,25200,0,'+07'),(325,2,32400,1,'+09'),(325,3,28800,0,'+08'),(326,0,21020,0,'LMT'),(326,1,21600,0,'+06'),(327,0,34374,0,'LMT'),(327,1,28800,0,'+08'),(327,2,32400,0,'+09'),(327,3,39600,0,'+11'),(327,4,43200,1,'+12'),(327,5,39600,0,'+11'),(327,6,43200,1,'+12'),(327,7,39600,1,'+11'),(327,8,36000,0,'+10'),(327,9,43200,0,'+12'),(327,10,43200,1,'+12'),(327,11,36000,0,'+10'),(328,0,24124,0,'LMT'),(328,1,24124,0,'BMT'),(328,2,25200,0,'+07'),(329,0,31651,0,'LMT'),(329,1,32400,0,'+09'),(329,2,39600,1,'+11'),(329,3,36000,0,'+10'),(329,4,36000,0,'+10'),(329,5,39600,1,'+11'),(329,6,36000,1,'+10'),(329,7,32400,0,'+09'),(329,8,39600,0,'+11'),(329,9,39600,1,'+11'),(329,10,36000,0,'+10'),(330,0,31138,0,'LMT'),(330,1,28800,0,'+08'),(330,2,36000,1,'+10'),(330,3,32400,0,'+09'),(330,4,32400,0,'+09'),(330,5,36000,1,'+10'),(330,6,32400,1,'+09'),(330,7,28800,0,'+08'),(330,8,36000,0,'+10'),(330,9,36000,1,'+10'),(330,10,32400,0,'+09'),(331,0,23087,0,'LMT'),(331,1,23087,0,'RMT'),(331,2,23400,0,'+0630'),(331,3,32400,0,'+09'),(331,4,23400,0,'+0630'),(332,0,14553,0,'LMT'),(332,1,13505,0,'PMT'),(332,2,14400,0,'+04'),(332,3,21600,1,'+06'),(332,4,18000,0,'+05'),(332,5,18000,0,'+05'),(332,6,21600,1,'+06'),(332,7,18000,1,'+05'),(332,8,14400,0,'+04'),(332,9,21600,0,'+06'),(332,10,21600,1,'+06'),(332,11,18000,0,'+05'),(333,0,10680,0,'LMT'),(333,1,10800,0,'+03'),(333,2,18000,1,'+05'),(333,3,14400,0,'+04'),(333,4,14400,0,'+04'),(333,5,18000,1,'+05'),(333,6,14400,1,'+04'),(333,7,10800,0,'+03'),(333,8,18000,1,'+05'),(333,9,14400,0,'+04'),(334,0,-6160,0,'LMT'),(334,1,-6872,0,'HMT'),(334,2,-3600,1,'-01'),(334,3,-7200,0,'-02'),(334,4,-3600,1,'-01'),(334,5,-7200,0,'-02'),(334,6,-7200,0,'-02'),(334,7,0,1,'+00'),(334,8,-3600,0,'-01'),(334,9,-3600,0,'-01'),(334,10,0,0,'WET'),(334,11,0,1,'+00'),(334,12,-3600,0,'-01'),(335,0,-15558,0,'LMT'),(335,1,-11958,1,'BST'),(335,2,-15558,0,'BMT'),(335,3,-10800,1,'ADT'),(335,4,-14400,0,'AST'),(336,0,-3696,0,'LMT'),(336,1,-3600,0,'-01'),(336,2,0,0,'WET'),(336,3,3600,1,'WEST'),(336,4,0,0,'WET'),(336,5,3600,1,'WEST'),(337,0,-5644,0,'LMT'),(337,1,-7200,0,'-02'),(337,2,-3600,1,'-01'),(337,3,-7200,0,'-02'),(337,4,-3600,0,'-01'),(338,0,-1624,0,'LMT'),(338,1,0,0,'WET'),(338,2,3600,1,'WEST'),(338,3,0,0,'WET'),(339,0,-1624,0,'LMT'),(339,1,0,0,'WET'),(339,2,3600,1,'WEST'),(339,3,0,0,'WET'),(340,0,2580,0,'LMT'),(340,1,7200,1,'CEST'),(340,2,3600,0,'CET'),(340,3,3600,0,'CET'),(340,4,7200,1,'CEST'),(340,5,7200,1,'CEST'),(340,6,3600,0,'CET'),(341,0,-4056,0,'LMT'),(341,1,-4056,0,'FMT'),(341,2,0,1,'+00'),(341,3,-3600,0,'-01'),(341,4,0,1,'+00'),(341,5,-3600,0,'-01'),(341,6,-3600,0,'-01'),(341,7,3600,1,'+01'),(341,8,3600,1,'WEST'),(341,9,0,0,'WET'),(341,10,0,0,'WET'),(341,11,0,0,'WET'),(341,12,3600,1,'WEST'),(342,0,-5280,0,'LMT'),(342,1,0,1,'+00'),(342,2,-3600,0,'-01'),(342,3,-3600,0,'-01'),(342,4,0,1,'+00'),(342,5,0,0,'GMT'),(343,0,-8768,0,'LMT'),(343,1,-7200,0,'-02'),(344,0,-968,0,'LMT'),(344,1,0,0,'GMT'),(345,0,-13884,0,'LMT'),(345,1,-13884,0,'SMT'),(345,2,-10800,1,'-03'),(345,3,-14400,0,'-04'),(345,4,-7200,1,'-02'),(345,5,-10800,0,'-03'),(345,6,-10800,1,'-03'),(346,0,36292,0,'LMT'),(346,1,39600,1,'AEDT'),(346,2,36000,0,'AEST'),(346,3,36000,0,'AEST'),(347,0,32400,0,'ACST'),(347,1,37800,1,'ACDT'),(347,2,34200,0,'ACST'),(347,3,34200,0,'ACST'),(348,0,36728,0,'LMT'),(348,1,39600,1,'AEDT'),(348,2,36000,0,'AEST'),(348,3,36000,0,'AEST'),(349,0,32400,0,'ACST'),(349,1,37800,1,'ACDT'),(349,2,34200,0,'ACST'),(349,3,34200,0,'ACST'),(349,4,37800,1,'ACDT'),(350,0,36292,0,'LMT'),(350,1,39600,1,'AEDT'),(350,2,36000,0,'AEST'),(350,3,36000,0,'AEST'),(351,0,35356,0,'LMT'),(351,1,39600,1,'AEDT'),(351,2,36000,0,'AEST'),(351,3,36000,0,'AEST'),(352,0,32400,0,'ACST'),(352,1,37800,1,'ACDT'),(352,2,34200,0,'ACST'),(352,3,34200,0,'ACST'),(353,0,30928,0,'LMT'),(353,1,35100,1,'+0945'),(353,2,31500,0,'+0845'),(353,3,31500,0,'+0845'),(354,0,35356,0,'LMT'),(354,1,39600,1,'AEDT'),(354,2,36000,0,'AEST'),(354,3,36000,0,'AEST'),(355,0,38180,0,'LMT'),(355,1,36000,0,'AEST'),(355,2,41400,1,'+1130'),(355,3,37800,0,'+1030'),(355,4,39600,1,'+11'),(356,0,35756,0,'LMT'),(356,1,39600,1,'AEDT'),(356,2,36000,0,'AEST'),(356,3,36000,0,'AEST'),(357,0,38180,0,'LMT'),(357,1,36000,0,'AEST'),(357,2,41400,1,'+1130'),(357,3,37800,0,'+1030'),(357,4,39600,1,'+11'),(358,0,34792,0,'LMT'),(358,1,39600,1,'AEDT'),(358,2,36000,0,'AEST'),(358,3,36000,0,'AEST'),(359,0,36292,0,'LMT'),(359,1,39600,1,'AEDT'),(359,2,36000,0,'AEST'),(359,3,36000,0,'AEST'),(360,0,32400,0,'ACST'),(360,1,37800,1,'ACDT'),(360,2,34200,0,'ACST'),(360,3,34200,0,'ACST'),(361,0,27804,0,'LMT'),(361,1,32400,1,'AWDT'),(361,2,28800,0,'AWST'),(361,3,28800,0,'AWST'),(362,0,36728,0,'LMT'),(362,1,39600,1,'AEDT'),(362,2,36000,0,'AEST'),(362,3,36000,0,'AEST'),(363,0,32400,0,'ACST'),(363,1,37800,1,'ACDT'),(363,2,34200,0,'ACST'),(363,3,34200,0,'ACST'),(364,0,36292,0,'LMT'),(364,1,39600,1,'AEDT'),(364,2,36000,0,'AEST'),(364,3,36000,0,'AEST'),(365,0,35356,0,'LMT'),(365,1,39600,1,'AEDT'),(365,2,36000,0,'AEST'),(365,3,36000,0,'AEST'),(366,0,34792,0,'LMT'),(366,1,39600,1,'AEDT'),(366,2,36000,0,'AEST'),(366,3,36000,0,'AEST'),(367,0,27804,0,'LMT'),(367,1,32400,1,'AWDT'),(367,2,28800,0,'AWST'),(367,3,28800,0,'AWST'),(368,0,32400,0,'ACST'),(368,1,37800,1,'ACDT'),(368,2,34200,0,'ACST'),(368,3,34200,0,'ACST'),(368,4,37800,1,'ACDT'),(369,0,-16272,0,'LMT'),(369,1,-14400,1,'-04'),(369,2,-18000,0,'-05'),(369,3,-14400,0,'-04'),(369,4,-18000,0,'-05'),(370,0,-7780,0,'LMT'),(370,1,-3600,1,'-01'),(370,2,-7200,0,'-02'),(371,0,-11188,0,'LMT'),(371,1,-7200,1,'-02'),(371,2,-10800,0,'-03'),(372,0,-14404,0,'LMT'),(372,1,-10800,1,'-03'),(372,2,-14400,0,'-04'),(373,0,7200,1,'CEST'),(373,1,3600,0,'CET'),(373,2,7200,1,'CEST'),(373,3,3600,0,'CET'),(374,0,-18000,1,'CDT'),(374,1,-21600,0,'CST'),(374,2,-18000,1,'CWT'),(374,3,-18000,1,'CPT'),(375,0,-15264,0,'LMT'),(375,1,-10800,1,'ADT'),(375,2,-14400,0,'AST'),(375,3,-10800,1,'AWT'),(375,4,-10800,1,'APT'),(376,0,-23316,0,'LMT'),(376,1,-18000,1,'CDT'),(376,2,-21600,0,'CST'),(376,3,-18000,1,'CWT'),(376,4,-18000,1,'CPT'),(376,5,-18000,1,'CDT'),(376,6,-21600,0,'CST'),(377,0,-19052,0,'LMT'),(377,1,-14400,1,'EDT'),(377,2,-18000,0,'EST'),(377,3,-14400,1,'EWT'),(377,4,-14400,1,'EPT'),(378,0,-27232,0,'LMT'),(378,1,-21600,1,'MDT'),(378,2,-25200,0,'MST'),(378,3,-21600,1,'MWT'),(378,4,-21600,1,'MPT'),(379,0,-12652,0,'LMT'),(379,1,-9052,1,'NDT'),(379,2,-12652,0,'NST'),(379,3,-9000,1,'NDT'),(379,4,-12600,0,'NST'),(379,5,-9000,1,'NPT'),(379,6,-9000,1,'NWT'),(379,7,-5400,1,'NDDT'),(379,8,-9000,1,'NDT'),(380,0,-29548,0,'LMT'),(380,1,-25200,1,'PDT'),(380,2,-28800,0,'PST'),(380,3,-25200,1,'PWT'),(380,4,-25200,1,'PPT'),(381,0,-25116,0,'LMT'),(381,1,-21600,1,'MDT'),(381,2,-25200,0,'MST'),(381,3,-21600,1,'MWT'),(381,4,-21600,1,'MPT'),(381,5,-21600,0,'CST'),(382,0,-32412,0,'LMT'),(382,1,-28800,1,'YDT'),(382,2,-32400,0,'YST'),(382,3,-28800,1,'YWT'),(382,4,-28800,1,'YPT'),(382,5,-25200,1,'YDDT'),(382,6,-28800,0,'PST'),(382,7,-25200,1,'PDT'),(382,8,-25200,0,'MST'),(383,0,-16966,0,'LMT'),(383,1,-16966,0,'SMT'),(383,2,-18000,0,'-05'),(383,3,-14400,0,'-04'),(383,4,-14400,1,'-04'),(383,5,-10800,1,'-03'),(383,6,-10800,1,'-03'),(383,7,-14400,0,'-04'),(384,0,-26248,0,'LMT'),(384,1,-26248,0,'EMT'),(384,2,-21600,1,'-06'),(384,3,-25200,0,'-07'),(384,4,-25200,0,'-07'),(384,5,-21600,0,'-06'),(384,6,-18000,1,'-05'),(385,0,-19768,0,'LMT'),(385,1,-19776,0,'HMT'),(385,2,-14400,1,'CDT'),(385,3,-18000,0,'CST'),(385,4,-18000,0,'CST'),(385,5,-14400,1,'CDT'),(386,0,10800,1,'EEST'),(386,1,7200,0,'EET'),(387,0,-18000,0,'EST'),(388,0,-14400,1,'EDT'),(388,1,-18000,0,'EST'),(388,2,-14400,1,'EWT'),(388,3,-14400,1,'EPT'),(389,0,7509,0,'LMT'),(389,1,10800,1,'EEST'),(389,2,7200,0,'EET'),(389,3,10800,1,'EEST'),(390,0,-1500,0,'LMT'),(390,1,-1521,0,'DMT'),(390,2,2079,1,'IST'),(390,3,3600,1,'BST'),(390,4,0,0,'GMT'),(390,5,3600,1,'IST'),(390,6,0,0,'GMT'),(390,7,0,1,'GMT'),(390,8,3600,0,'IST'),(390,9,3600,0,'IST'),(391,0,0,0,'GMT'),(392,0,0,0,'GMT'),(393,0,-3600,0,'-01'),(394,0,-36000,0,'-10'),(395,0,-39600,0,'-11'),(396,0,-43200,0,'-12'),(397,0,-7200,0,'-02'),(398,0,-10800,0,'-03'),(399,0,-14400,0,'-04'),(400,0,-18000,0,'-05'),(401,0,-21600,0,'-06'),(402,0,-25200,0,'-07'),(403,0,-28800,0,'-08'),(404,0,-32400,0,'-09'),(405,0,0,0,'GMT'),(406,0,3600,0,'+01'),(407,0,36000,0,'+10'),(408,0,39600,0,'+11'),(409,0,43200,0,'+12'),(410,0,46800,0,'+13'),(411,0,50400,0,'+14'),(412,0,7200,0,'+02'),(413,0,10800,0,'+03'),(414,0,14400,0,'+04'),(415,0,18000,0,'+05'),(416,0,21600,0,'+06'),(417,0,25200,0,'+07'),(418,0,28800,0,'+08'),(419,0,32400,0,'+09'),(420,0,0,0,'GMT'),(421,0,0,0,'GMT'),(422,0,0,0,'UTC'),(423,0,0,0,'UTC'),(424,0,0,0,'UTC'),(425,0,0,0,'UTC'),(426,0,1172,0,'LMT'),(426,1,4772,1,'NST'),(426,2,1172,0,'AMT'),(426,3,4772,1,'NST'),(426,4,1172,0,'AMT'),(426,5,1200,0,'+0020'),(426,6,4800,1,'+0120'),(426,7,4800,1,'+0120'),(426,8,3600,0,'CET'),(426,9,7200,1,'CEST'),(426,10,7200,1,'CEST'),(426,11,7200,1,'CEST'),(426,12,3600,0,'CET'),(426,13,3600,0,'CET'),(427,0,364,0,'LMT'),(427,1,0,0,'WET'),(427,2,3600,0,'CET'),(427,3,7200,1,'CEST'),(427,4,3600,0,'CET'),(428,0,11532,0,'LMT'),(428,1,10800,0,'+03'),(428,2,18000,1,'+05'),(428,3,14400,0,'+04'),(428,4,14400,0,'+04'),(428,5,18000,1,'+05'),(428,6,14400,1,'+04'),(428,7,10800,0,'+03'),(428,8,14400,0,'+04'),(429,0,5692,0,'LMT'),(429,1,5692,0,'AMT'),(429,2,10800,1,'EEST'),(429,3,7200,0,'EET'),(429,4,3600,0,'CET'),(429,5,7200,1,'CEST'),(429,6,10800,1,'EEST'),(429,7,7200,0,'EET'),(429,8,10800,1,'EEST'),(429,9,7200,0,'EET'),(430,0,-75,0,'LMT'),(430,1,3600,1,'BST'),(430,2,0,0,'GMT'),(430,3,7200,1,'BDST'),(430,4,3600,0,'BST'),(430,5,3600,1,'BST'),(430,6,0,0,'GMT'),(430,7,0,0,'GMT'),(431,0,4920,0,'LMT'),(431,1,3600,0,'CET'),(431,2,3600,0,'CET'),(431,3,7200,1,'CEST'),(431,4,7200,1,'CEST'),(431,5,7200,1,'CEST'),(431,6,3600,0,'CET'),(432,0,3208,0,'LMT'),(432,1,7200,1,'CEST'),(432,2,3600,0,'CET'),(432,3,7200,1,'CEST'),(432,4,3600,0,'CET'),(432,5,10800,1,'CEMT'),(432,6,10800,1,'CEMT'),(432,7,7200,1,'CEST'),(432,8,3600,0,'CET'),(433,0,3464,0,'PMT'),(433,1,7200,1,'CEST'),(433,2,3600,0,'CET'),(433,3,7200,1,'CEST'),(433,4,3600,0,'CET'),(433,5,0,1,'GMT'),(433,6,7200,1,'CEST'),(433,7,3600,0,'CET'),(434,0,1050,0,'BMT'),(434,1,0,0,'WET'),(434,2,3600,0,'CET'),(434,3,7200,1,'CEST'),(434,4,3600,0,'CET'),(434,5,7200,1,'CEST'),(434,6,3600,1,'WEST'),(434,7,0,0,'WET'),(434,8,0,0,'WET'),(434,9,7200,1,'CEST'),(434,10,3600,0,'CET'),(435,0,6264,0,'LMT'),(435,1,6264,0,'BMT'),(435,2,10800,1,'EEST'),(435,3,7200,0,'EET'),(435,4,10800,1,'EEST'),(435,5,7200,0,'EET'),(435,6,10800,1,'EEST'),(435,7,7200,0,'EET'),(436,0,4580,0,'LMT'),(436,1,7200,1,'CEST'),(436,2,3600,0,'CET'),(436,3,7200,1,'CEST'),(436,4,3600,0,'CET'),(436,5,7200,1,'CEST'),(436,6,3600,0,'CET'),(437,0,1786,0,'BMT'),(437,1,7200,1,'CEST'),(437,2,3600,0,'CET'),(437,3,7200,1,'CEST'),(437,4,3600,0,'CET'),(438,0,6920,0,'LMT'),(438,1,6900,0,'CMT'),(438,2,6264,0,'BMT'),(438,3,10800,1,'EEST'),(438,4,7200,0,'EET'),(438,5,7200,0,'EET'),(438,6,10800,1,'EEST'),(438,7,3600,0,'CET'),(438,8,7200,1,'CEST'),(438,9,7200,1,'CEST'),(438,10,14400,1,'MSD'),(438,11,10800,0,'MSK'),(438,12,10800,0,'MSK'),(438,13,14400,1,'MSD'),(438,14,10800,1,'EEST'),(438,15,7200,0,'EET'),(439,0,3020,0,'CMT'),(439,1,7200,1,'CEST'),(439,2,3600,0,'CET'),(439,3,3600,0,'CET'),(439,4,7200,1,'CEST'),(439,5,7200,1,'CEST'),(439,6,3600,0,'CET'),(440,0,-1500,0,'LMT'),(440,1,-1521,0,'DMT'),(440,2,2079,1,'IST'),(440,3,3600,1,'BST'),(440,4,0,0,'GMT'),(440,5,3600,1,'IST'),(440,6,0,0,'GMT'),(440,7,0,1,'GMT'),(440,8,3600,0,'IST'),(440,9,3600,0,'IST'),(441,0,-1284,0,'LMT'),(441,1,3600,1,'BST'),(441,2,0,0,'GMT'),(441,3,7200,1,'BDST'),(441,4,3600,0,'CET'),(441,5,7200,1,'CEST'),(441,6,3600,0,'CET'),(442,0,-75,0,'LMT'),(442,1,3600,1,'BST'),(442,2,0,0,'GMT'),(442,3,7200,1,'BDST'),(442,4,3600,0,'BST'),(442,5,3600,1,'BST'),(442,6,0,0,'GMT'),(442,7,0,0,'GMT'),(443,0,5989,0,'LMT'),(443,1,5989,0,'HMT'),(443,2,10800,1,'EEST'),(443,3,7200,0,'EET'),(443,4,10800,1,'EEST'),(443,5,7200,0,'EET'),(444,0,-75,0,'LMT'),(444,1,3600,1,'BST'),(444,2,0,0,'GMT'),(444,3,7200,1,'BDST'),(444,4,3600,0,'BST'),(444,5,3600,1,'BST'),(444,6,0,0,'GMT'),(444,7,0,0,'GMT'),(445,0,6952,0,'LMT'),(445,1,7016,0,'IMT'),(445,2,10800,1,'EEST'),(445,3,7200,0,'EET'),(445,4,10800,0,'+03'),(445,5,14400,1,'+04'),(445,6,10800,1,'EEST'),(445,7,7200,0,'EET'),(445,8,10800,1,'EEST'),(445,9,7200,0,'EET'),(445,10,10800,0,'+03'),(446,0,-75,0,'LMT'),(446,1,3600,1,'BST'),(446,2,0,0,'GMT'),(446,3,7200,1,'BDST'),(446,4,3600,0,'BST'),(446,5,3600,1,'BST'),(446,6,0,0,'GMT'),(446,7,0,0,'GMT'),(447,0,4920,0,'LMT'),(447,1,7200,1,'CEST'),(447,2,3600,0,'CET'),(447,3,7200,1,'CEST'),(447,4,3600,0,'CET'),(447,5,10800,1,'EEST'),(447,6,7200,0,'EET'),(447,7,14400,1,'MSD'),(447,8,10800,0,'MSK'),(447,9,10800,0,'MSK'),(447,10,14400,1,'MSD'),(447,11,10800,1,'EEST'),(447,12,7200,0,'EET'),(447,13,10800,0,'+03'),(447,14,7200,0,'EET'),(448,0,7324,0,'LMT'),(448,1,7324,0,'KMT'),(448,2,7200,0,'EET'),(448,3,10800,0,'MSK'),(448,4,3600,0,'CET'),(448,5,7200,1,'CEST'),(448,6,7200,1,'CEST'),(448,7,14400,1,'MSD'),(448,8,10800,0,'MSK'),(448,9,14400,1,'MSD'),(448,10,10800,1,'EEST'),(448,11,10800,1,'EEST'),(448,12,7200,0,'EET'),(449,0,11928,0,'LMT'),(449,1,10800,0,'+03'),(449,2,18000,1,'+05'),(449,3,14400,0,'+04'),(449,4,14400,0,'+04'),(449,5,18000,1,'+05'),(449,6,14400,1,'+04'),(449,7,10800,0,'+03'),(450,0,-2205,0,'LMT'),(450,1,3600,1,'WEST'),(450,2,0,0,'WET'),(450,3,3600,1,'WEST'),(450,4,0,0,'WET'),(450,5,7200,1,'WEMT'),(450,6,0,0,'WET'),(450,7,3600,0,'CET'),(450,8,3600,0,'CET'),(450,9,7200,1,'CEST'),(450,10,3600,1,'WEST'),(450,11,0,0,'WET'),(451,0,4920,0,'LMT'),(451,1,3600,0,'CET'),(451,2,3600,0,'CET'),(451,3,7200,1,'CEST'),(451,4,7200,1,'CEST'),(451,5,7200,1,'CEST'),(451,6,3600,0,'CET'),(452,0,-75,0,'LMT'),(452,1,3600,1,'BST'),(452,2,0,0,'GMT'),(452,3,7200,1,'BDST'),(452,4,3600,0,'BST'),(452,5,3600,1,'BST'),(452,6,0,0,'GMT'),(452,7,0,0,'GMT'),(453,0,1476,0,'LMT'),(453,1,7200,1,'CEST'),(453,2,3600,0,'CET'),(453,3,7200,1,'CEST'),(453,4,3600,0,'CET'),(453,5,3600,1,'WEST'),(453,6,0,0,'WET'),(453,7,0,0,'WET'),(453,8,3600,1,'WEST'),(453,9,3600,0,'WET'),(453,10,7200,1,'WEST'),(453,11,7200,1,'WEST'),(453,12,7200,1,'CEST'),(453,13,3600,0,'CET'),(454,0,-884,0,'LMT'),(454,1,3600,1,'WEST'),(454,2,0,0,'WET'),(454,3,7200,1,'WEMT'),(454,4,0,0,'WET'),(454,5,7200,1,'CEST'),(454,6,3600,0,'CET'),(454,7,7200,1,'CEST'),(454,8,3600,0,'CET'),(454,9,7200,1,'CEST'),(454,10,3600,0,'CET'),(455,0,3484,0,'LMT'),(455,1,7200,1,'CEST'),(455,2,3600,0,'CET'),(455,3,3600,0,'CET'),(455,4,7200,1,'CEST'),(455,5,7200,1,'CEST'),(455,6,3600,0,'CET'),(456,0,5989,0,'LMT'),(456,1,5989,0,'HMT'),(456,2,10800,1,'EEST'),(456,3,7200,0,'EET'),(456,4,10800,1,'EEST'),(456,5,7200,0,'EET'),(457,0,6616,0,'LMT'),(457,1,6600,0,'MMT'),(457,2,7200,0,'EET'),(457,3,10800,0,'MSK'),(457,4,3600,0,'CET'),(457,5,7200,1,'CEST'),(457,6,7200,1,'CEST'),(457,7,14400,1,'MSD'),(457,8,10800,0,'MSK'),(457,9,14400,1,'MSD'),(457,10,10800,1,'EEST'),(457,11,7200,0,'EET'),(457,12,10800,0,'+03'),(458,0,1772,0,'LMT'),(458,1,561,0,'PMT'),(458,2,3600,1,'WEST'),(458,3,0,0,'WET'),(458,4,3600,1,'WEST'),(458,5,7200,1,'WEMT'),(458,6,0,0,'WET'),(458,7,7200,1,'CEST'),(458,8,3600,0,'CET'),(458,9,7200,1,'CEST'),(458,10,3600,0,'CET'),(459,0,9017,0,'LMT'),(459,1,9017,0,'MMT'),(459,2,12679,1,'MST'),(459,3,9079,0,'MMT'),(459,4,16279,1,'MDST'),(459,5,14400,1,'MSD'),(459,6,10800,0,'MSK'),(459,7,14400,1,'MSD'),(459,8,18000,1,'+05'),(459,9,7200,0,'EET'),(459,10,10800,0,'MSK'),(459,11,14400,1,'MSD'),(459,12,10800,1,'EEST'),(459,13,7200,0,'EET'),(459,14,14400,0,'MSK'),(459,15,14400,1,'MSD'),(459,16,10800,0,'MSK'),(460,0,8008,0,'LMT'),(460,1,10800,1,'EEST'),(460,2,7200,0,'EET'),(460,3,7200,0,'EET'),(460,4,10800,1,'EEST'),(461,0,2580,0,'LMT'),(461,1,7200,1,'CEST'),(461,2,3600,0,'CET'),(461,3,3600,0,'CET'),(461,4,7200,1,'CEST'),(461,5,7200,1,'CEST'),(461,6,3600,0,'CET'),(462,0,561,0,'LMT'),(462,1,561,0,'PMT'),(462,2,3600,1,'WEST'),(462,3,0,0,'WET'),(462,4,3600,1,'WEST'),(462,5,0,0,'WET'),(462,6,3600,0,'CET'),(462,7,7200,1,'CEST'),(462,8,7200,1,'CEST'),(462,9,7200,1,'WEMT'),(462,10,3600,0,'CET'),(462,11,7200,1,'CEST'),(462,12,3600,0,'CET'),(463,0,4920,0,'LMT'),(463,1,3600,0,'CET'),(463,2,3600,0,'CET'),(463,3,7200,1,'CEST'),(463,4,7200,1,'CEST'),(463,5,7200,1,'CEST'),(463,6,3600,0,'CET'),(464,0,3464,0,'PMT'),(464,1,7200,1,'CEST'),(464,2,3600,0,'CET'),(464,3,7200,1,'CEST'),(464,4,3600,0,'CET'),(464,5,0,1,'GMT'),(464,6,7200,1,'CEST'),(464,7,3600,0,'CET'),(465,0,5794,0,'LMT'),(465,1,5794,0,'RMT'),(465,2,9394,1,'LST'),(465,3,7200,0,'EET'),(465,4,10800,0,'MSK'),(465,5,3600,0,'CET'),(465,6,7200,1,'CEST'),(465,7,7200,1,'CEST'),(465,8,14400,1,'MSD'),(465,9,10800,0,'MSK'),(465,10,14400,1,'MSD'),(465,11,10800,1,'EEST'),(465,12,7200,0,'EET'),(465,13,10800,1,'EEST'),(465,14,7200,0,'EET'),(466,0,2996,0,'RMT'),(466,1,7200,1,'CEST'),(466,2,3600,0,'CET'),(466,3,3600,0,'CET'),(466,4,7200,1,'CEST'),(466,5,7200,1,'CEST'),(466,6,3600,0,'CET'),(467,0,12020,0,'LMT'),(467,1,10800,0,'+03'),(467,2,14400,0,'+04'),(467,3,18000,1,'+05'),(467,4,14400,0,'+04'),(467,5,18000,1,'+05'),(467,6,14400,1,'+04'),(467,7,10800,0,'+03'),(467,8,10800,1,'+03'),(467,9,7200,0,'+02'),(467,10,14400,1,'+04'),(467,11,14400,0,'+04'),(468,0,2996,0,'RMT'),(468,1,7200,1,'CEST'),(468,2,3600,0,'CET'),(468,3,3600,0,'CET'),(468,4,7200,1,'CEST'),(468,5,7200,1,'CEST'),(468,6,3600,0,'CET'),(469,0,4920,0,'LMT'),(469,1,3600,0,'CET'),(469,2,3600,0,'CET'),(469,3,7200,1,'CEST'),(469,4,7200,1,'CEST'),(469,5,7200,1,'CEST'),(469,6,3600,0,'CET'),(470,0,11058,0,'LMT'),(470,1,10800,0,'+03'),(470,2,18000,1,'+05'),(470,3,14400,0,'+04'),(470,4,14400,0,'+04'),(470,5,18000,1,'+05'),(470,6,14400,1,'+04'),(470,7,10800,0,'+03'),(470,8,14400,0,'+04'),(471,0,8184,0,'LMT'),(471,1,8160,0,'SMT'),(471,2,7200,0,'EET'),(471,3,10800,0,'MSK'),(471,4,3600,0,'CET'),(471,5,7200,1,'CEST'),(471,6,7200,1,'CEST'),(471,7,14400,1,'MSD'),(471,8,10800,0,'MSK'),(471,9,14400,1,'MSD'),(471,10,10800,1,'EEST'),(471,11,10800,1,'EEST'),(471,12,7200,0,'EET'),(471,13,14400,0,'MSK'),(471,14,10800,0,'MSK'),(472,0,4920,0,'LMT'),(472,1,3600,0,'CET'),(472,2,3600,0,'CET'),(472,3,7200,1,'CEST'),(472,4,7200,1,'CEST'),(472,5,7200,1,'CEST'),(472,6,3600,0,'CET'),(473,0,7016,0,'IMT'),(473,1,7200,0,'EET'),(473,2,3600,0,'CET'),(473,3,7200,1,'CEST'),(473,4,3600,0,'CET'),(473,5,10800,1,'EEST'),(473,6,7200,0,'EET'),(473,7,10800,1,'EEST'),(473,8,10800,1,'EEST'),(473,9,7200,0,'EET'),(474,0,3614,0,'SET'),(474,1,3600,0,'CET'),(474,2,7200,1,'CEST'),(474,3,7200,1,'CEST'),(474,4,3600,0,'CET'),(475,0,5940,0,'LMT'),(475,1,5940,0,'TMT'),(475,2,7200,1,'CEST'),(475,3,3600,0,'CET'),(475,4,3600,0,'CET'),(475,5,7200,0,'EET'),(475,6,10800,0,'MSK'),(475,7,7200,1,'CEST'),(475,8,14400,1,'MSD'),(475,9,10800,0,'MSK'),(475,10,14400,1,'MSD'),(475,11,10800,1,'EEST'),(475,12,7200,0,'EET'),(475,13,7200,0,'EET'),(475,14,10800,1,'EEST'),(475,15,10800,1,'EEST'),(476,0,4760,0,'LMT'),(476,1,3600,0,'CET'),(476,2,7200,1,'CEST'),(476,3,3600,0,'CET'),(476,4,7200,1,'CEST'),(477,0,6920,0,'LMT'),(477,1,6900,0,'CMT'),(477,2,6264,0,'BMT'),(477,3,10800,1,'EEST'),(477,4,7200,0,'EET'),(477,5,7200,0,'EET'),(477,6,10800,1,'EEST'),(477,7,3600,0,'CET'),(477,8,7200,1,'CEST'),(477,9,7200,1,'CEST'),(477,10,14400,1,'MSD'),(477,11,10800,0,'MSK'),(477,12,10800,0,'MSK'),(477,13,14400,1,'MSD'),(477,14,10800,1,'EEST'),(477,15,7200,0,'EET'),(478,0,11616,0,'LMT'),(478,1,10800,0,'+03'),(478,2,18000,1,'+05'),(478,3,14400,0,'+04'),(478,4,14400,0,'+04'),(478,5,18000,1,'+05'),(478,6,14400,1,'+04'),(478,7,10800,0,'+03'),(478,8,10800,1,'+03'),(478,9,7200,0,'+02'),(478,10,14400,1,'+04'),(478,11,14400,0,'+04'),(479,0,5352,0,'LMT'),(479,1,3600,0,'CET'),(479,2,7200,1,'CEST'),(479,3,3600,0,'CET'),(479,4,7200,1,'CEST'),(479,5,14400,1,'MSD'),(479,6,10800,0,'MSK'),(479,7,10800,0,'MSK'),(479,8,14400,1,'MSD'),(479,9,7200,0,'EET'),(479,10,10800,1,'EEST'),(479,11,10800,1,'EEST'),(479,12,7200,0,'EET'),(480,0,1786,0,'BMT'),(480,1,7200,1,'CEST'),(480,2,3600,0,'CET'),(480,3,7200,1,'CEST'),(480,4,3600,0,'CET'),(481,0,2996,0,'RMT'),(481,1,7200,1,'CEST'),(481,2,3600,0,'CET'),(481,3,3600,0,'CET'),(481,4,7200,1,'CEST'),(481,5,7200,1,'CEST'),(481,6,3600,0,'CET'),(482,0,3921,0,'LMT'),(482,1,7200,1,'CEST'),(482,2,3600,0,'CET'),(482,3,7200,1,'CEST'),(482,4,3600,0,'CET'),(482,5,7200,1,'CEST'),(482,6,3600,0,'CET'),(483,0,6076,0,'LMT'),(483,1,5040,0,'WMT'),(483,2,5736,0,'KMT'),(483,3,3600,0,'CET'),(483,4,7200,0,'EET'),(483,5,10800,0,'MSK'),(483,6,3600,0,'CET'),(483,7,7200,1,'CEST'),(483,8,7200,1,'CEST'),(483,9,14400,1,'MSD'),(483,10,10800,0,'MSK'),(483,11,14400,1,'MSD'),(483,12,10800,1,'EEST'),(483,13,7200,0,'EET'),(483,14,7200,1,'CEST'),(483,15,3600,0,'CET'),(483,16,7200,0,'EET'),(483,17,10800,1,'EEST'),(484,0,10660,0,'LMT'),(484,1,10800,0,'+03'),(484,2,14400,0,'+04'),(484,3,18000,1,'+05'),(484,4,14400,0,'+04'),(484,5,18000,1,'+05'),(484,6,14400,1,'+04'),(484,7,10800,0,'+03'),(485,0,5040,0,'LMT'),(485,1,5040,0,'WMT'),(485,2,7200,1,'CEST'),(485,3,3600,0,'CET'),(485,4,7200,1,'CEST'),(485,5,3600,0,'CET'),(485,6,10800,1,'EEST'),(485,7,7200,0,'EET'),(485,8,7200,0,'EET'),(485,9,7200,1,'CEST'),(485,10,3600,0,'CET'),(486,0,4920,0,'LMT'),(486,1,3600,0,'CET'),(486,2,3600,0,'CET'),(486,3,7200,1,'CEST'),(486,4,7200,1,'CEST'),(486,5,7200,1,'CEST'),(486,6,3600,0,'CET'),(487,0,8440,0,'LMT'),(487,1,8400,0,'+0220'),(487,2,7200,0,'EET'),(487,3,10800,0,'MSK'),(487,4,3600,0,'CET'),(487,5,7200,1,'CEST'),(487,6,7200,1,'CEST'),(487,7,14400,1,'MSD'),(487,8,10800,0,'MSK'),(487,9,14400,1,'MSD'),(487,10,10800,1,'EEST'),(487,11,10800,1,'EEST'),(487,12,7200,0,'EET'),(488,0,1786,0,'BMT'),(488,1,7200,1,'CEST'),(488,2,3600,0,'CET'),(488,3,7200,1,'CEST'),(488,4,3600,0,'CET'),(489,0,0,0,'-00'),(490,0,-75,0,'LMT'),(490,1,3600,1,'BST'),(490,2,0,0,'GMT'),(490,3,7200,1,'BDST'),(490,4,3600,0,'BST'),(490,5,3600,1,'BST'),(490,6,0,0,'GMT'),(490,7,0,0,'GMT'),(491,0,-75,0,'LMT'),(491,1,3600,1,'BST'),(491,2,0,0,'GMT'),(491,3,7200,1,'BDST'),(491,4,3600,0,'BST'),(491,5,3600,1,'BST'),(491,6,0,0,'GMT'),(491,7,0,0,'GMT'),(492,0,0,0,'GMT'),(493,0,0,0,'GMT'),(494,0,0,0,'GMT'),(495,0,0,0,'GMT'),(496,0,0,0,'GMT'),(497,0,-36000,0,'HST'),(498,0,27402,0,'LMT'),(498,1,28800,0,'HKT'),(498,2,32400,1,'HKST'),(498,3,30600,1,'HKWT'),(498,4,32400,0,'JST'),(498,5,28800,0,'HKT'),(498,6,32400,1,'HKST'),(499,0,-5280,0,'LMT'),(499,1,0,1,'+00'),(499,2,-3600,0,'-01'),(499,3,-3600,0,'-01'),(499,4,0,1,'+00'),(499,5,0,0,'GMT'),(500,0,8836,0,'LMT'),(500,1,9000,0,'+0230'),(500,2,10800,0,'EAT'),(500,3,9900,0,'+0245'),(500,4,10800,0,'EAT'),(501,0,17380,0,'LMT'),(501,1,18000,0,'+05'),(501,2,21600,0,'+06'),(502,0,25372,0,'LMT'),(502,1,25200,0,'+07'),(503,0,23260,0,'LMT'),(503,1,23400,0,'+0630'),(504,0,8836,0,'LMT'),(504,1,9000,0,'+0230'),(504,2,10800,0,'EAT'),(504,3,9900,0,'+0245'),(504,4,10800,0,'EAT'),(505,0,0,0,'-00'),(505,1,18000,0,'+05'),(506,0,13308,0,'LMT'),(506,1,14400,0,'+04'),(507,0,17640,0,'LMT'),(507,1,17640,0,'MMT'),(507,2,18000,0,'+05'),(508,0,13800,0,'LMT'),(508,1,18000,1,'+05'),(508,2,14400,0,'+04'),(509,0,8836,0,'LMT'),(509,1,9000,0,'+0230'),(509,2,10800,0,'EAT'),(509,3,9900,0,'+0245'),(509,4,10800,0,'EAT'),(510,0,13312,0,'LMT'),(510,1,14400,0,'+04'),(511,0,12344,0,'LMT'),(511,1,12344,0,'TMT'),(511,2,12600,0,'+0330'),(511,3,18000,1,'+05'),(511,4,14400,0,'+04'),(511,5,16200,1,'+0430'),(511,6,12600,0,'+0330'),(512,0,8454,0,'LMT'),(512,1,8440,0,'JMT'),(512,2,10800,1,'IDT'),(512,3,7200,0,'IST'),(512,4,14400,1,'IDDT'),(512,5,10800,1,'IDT'),(512,6,7200,0,'IST'),(512,7,10800,1,'IDT'),(512,8,7200,0,'IST'),(513,0,-18430,0,'LMT'),(513,1,-18430,0,'KMT'),(513,2,-18000,0,'EST'),(513,3,-14400,1,'EDT'),(514,0,33539,0,'LMT'),(514,1,36000,1,'JDT'),(514,2,32400,0,'JST'),(514,3,32400,0,'JST'),(515,0,40160,0,'LMT'),(515,1,39600,0,'+11'),(515,2,36000,0,'+10'),(515,3,32400,0,'+09'),(515,4,-43200,0,'-12'),(515,5,43200,0,'+12'),(516,0,3164,0,'LMT'),(516,1,7200,1,'CEST'),(516,2,3600,0,'CET'),(516,3,7200,0,'EET'),(517,0,7200,1,'MEST'),(517,1,3600,0,'MET'),(517,2,7200,1,'MEST'),(517,3,3600,0,'MET'),(518,0,-25200,0,'MST'),(519,0,-21600,1,'MDT'),(519,1,-25200,0,'MST'),(519,2,-21600,1,'MWT'),(519,3,-21600,1,'MPT'),(520,0,-28084,0,'LMT'),(520,1,-25200,0,'MST'),(520,2,-28800,0,'PST'),(520,3,-25200,1,'PDT'),(520,4,-25200,1,'PWT'),(520,5,-25200,1,'PPT'),(521,0,-25540,0,'LMT'),(521,1,-25200,0,'MST'),(521,2,-21600,0,'CST'),(521,3,-28800,0,'PST'),(521,4,-21600,1,'MDT'),(521,5,-25200,0,'MST'),(522,0,-23796,0,'LMT'),(522,1,-25200,0,'MST'),(522,2,-21600,0,'CST'),(522,3,-18000,1,'CDT'),(522,4,-18000,1,'CWT'),(523,0,41944,0,'LMT'),(523,1,45000,1,'NZST'),(523,2,41400,0,'NZMT'),(523,3,43200,1,'NZST'),(523,4,46800,1,'NZDT'),(523,5,43200,0,'NZST'),(523,6,43200,0,'NZST'),(524,0,44028,0,'LMT'),(524,1,44100,0,'+1215'),(524,2,49500,1,'+1345'),(524,3,45900,0,'+1245'),(524,4,45900,0,'+1245'),(525,0,-25196,0,'LMT'),(525,1,-21600,1,'MDT'),(525,2,-25200,0,'MST'),(525,3,-21600,1,'MWT'),(525,4,-21600,1,'MPT'),(526,0,29143,0,'LMT'),(526,1,32400,1,'CDT'),(526,2,28800,0,'CST'),(527,0,-25200,1,'PDT'),(527,1,-28800,0,'PST'),(527,2,-25200,1,'PWT'),(527,3,-25200,1,'PPT'),(528,0,45184,0,'LMT'),(528,1,-41216,0,'LMT'),(528,2,-41400,0,'-1130'),(528,3,-36000,1,'-10'),(528,4,-39600,0,'-11'),(528,5,46800,0,'+13'),(528,6,50400,1,'+14'),(529,0,41944,0,'LMT'),(529,1,45000,1,'NZST'),(529,2,41400,0,'NZMT'),(529,3,43200,1,'NZST'),(529,4,46800,1,'NZDT'),(529,5,43200,0,'NZST'),(529,6,43200,0,'NZST'),(530,0,35312,0,'PMMT'),(530,1,36000,0,'+10'),(530,2,32400,0,'+09'),(530,3,39600,0,'+11'),(531,0,44028,0,'LMT'),(531,1,44100,0,'+1215'),(531,2,49500,1,'+1345'),(531,3,45900,0,'+1245'),(531,4,45900,0,'+1245'),(532,0,36428,0,'LMT'),(532,1,36000,0,'+10'),(532,2,32400,0,'+09'),(532,3,36000,0,'+10'),(533,0,-26248,0,'LMT'),(533,1,-26248,0,'EMT'),(533,2,-21600,1,'-06'),(533,3,-25200,0,'-07'),(533,4,-25200,0,'-07'),(533,5,-21600,0,'-06'),(533,6,-18000,1,'-05'),(534,0,40396,0,'LMT'),(534,1,43200,1,'+12'),(534,2,39600,0,'+11'),(534,3,43200,1,'+12'),(534,4,39600,0,'+11'),(535,0,-41060,0,'LMT'),(535,1,-43200,0,'-12'),(535,2,-39600,0,'-11'),(535,3,46800,0,'+13'),(536,0,-41096,0,'LMT'),(536,1,-39600,0,'-11'),(536,2,46800,0,'+13'),(537,0,42944,0,'LMT'),(537,1,46800,1,'+13'),(537,2,43200,0,'+12'),(538,0,43012,0,'LMT'),(538,1,43200,0,'+12'),(539,0,-21504,0,'LMT'),(539,1,-18000,0,'-05'),(539,2,-18000,1,'-05'),(539,3,-21600,0,'-06'),(540,0,-32388,0,'LMT'),(540,1,-32400,0,'-09'),(541,0,38388,0,'LMT'),(541,1,39600,0,'+11'),(542,0,34740,0,'LMT'),(542,1,36000,0,'GST'),(542,2,32400,0,'+09'),(542,3,39600,1,'GDT'),(542,4,36000,0,'ChST'),(543,0,-37886,0,'LMT'),(543,1,-37800,0,'HST'),(543,2,-34200,1,'HDT'),(543,3,-34200,1,'HWT'),(543,4,-34200,1,'HPT'),(543,5,-36000,0,'HST'),(544,0,-37886,0,'LMT'),(544,1,-37800,0,'HST'),(544,2,-34200,1,'HDT'),(544,3,-34200,1,'HWT'),(544,4,-34200,1,'HPT'),(544,5,-36000,0,'HST'),(545,0,-37760,0,'LMT'),(545,1,-38400,0,'-1040'),(545,2,-36000,0,'-10'),(545,3,50400,0,'+14'),(546,0,39116,0,'LMT'),(546,1,39600,0,'+11'),(546,2,32400,0,'+09'),(546,3,36000,0,'+10'),(546,4,43200,0,'+12'),(546,5,39600,0,'+11'),(547,0,40160,0,'LMT'),(547,1,39600,0,'+11'),(547,2,36000,0,'+10'),(547,3,32400,0,'+09'),(547,4,-43200,0,'-12'),(547,5,43200,0,'+12'),(548,0,41088,0,'LMT'),(548,1,39600,0,'+11'),(548,2,32400,0,'+09'),(548,3,36000,0,'+10'),(548,4,43200,0,'+12'),(549,0,-33480,0,'LMT'),(549,1,-34200,0,'-0930'),(550,0,45432,0,'LMT'),(550,1,-40968,0,'LMT'),(550,2,-39600,0,'SST'),(551,0,40060,0,'LMT'),(551,1,41400,0,'+1130'),(551,2,32400,0,'+09'),(551,3,43200,0,'+12'),(552,0,-40780,0,'LMT'),(552,1,-40800,0,'-1120'),(552,2,-41400,0,'-1130'),(552,3,-39600,0,'-11'),(553,0,40312,0,'LMT'),(553,1,40320,0,'+1112'),(553,2,41400,0,'+1130'),(553,3,45000,1,'+1230'),(553,4,41400,0,'+1130'),(553,5,39600,0,'+11'),(553,6,43200,1,'+12'),(553,7,39600,0,'+11'),(554,0,39948,0,'LMT'),(554,1,43200,1,'+12'),(554,2,39600,0,'+11'),(554,3,43200,1,'+12'),(554,4,39600,0,'+11'),(555,0,45432,0,'LMT'),(555,1,-40968,0,'LMT'),(555,2,-39600,0,'SST'),(556,0,32276,0,'LMT'),(556,1,32400,0,'+09'),(557,0,-31220,0,'LMT'),(557,1,-30600,0,'-0830'),(557,2,-28800,0,'-08'),(558,0,37972,0,'LMT'),(558,1,39600,0,'+11'),(558,2,32400,0,'+09'),(558,3,36000,0,'+10'),(558,4,39600,0,'+11'),(559,0,37972,0,'LMT'),(559,1,39600,0,'+11'),(559,2,32400,0,'+09'),(559,3,36000,0,'+10'),(559,4,39600,0,'+11'),(560,0,35312,0,'PMMT'),(560,1,36000,0,'+10'),(561,0,-38344,0,'LMT'),(561,1,-37800,0,'-1030'),(561,2,-36000,0,'-10'),(561,3,-34200,1,'-0930'),(562,0,34740,0,'LMT'),(562,1,36000,0,'GST'),(562,2,32400,0,'+09'),(562,3,39600,1,'GDT'),(562,4,36000,0,'ChST'),(563,0,45432,0,'LMT'),(563,1,-40968,0,'LMT'),(563,2,-39600,0,'SST'),(564,0,-35896,0,'LMT'),(564,1,-36000,0,'-10'),(565,0,41524,0,'LMT'),(565,1,43200,0,'+12'),(566,0,44360,0,'LMT'),(566,1,44400,0,'+1220'),(566,2,46800,0,'+13'),(566,3,50400,1,'+14'),(566,4,46800,0,'+13'),(566,5,50400,1,'+14'),(567,0,36428,0,'LMT'),(567,1,36000,0,'+10'),(567,2,32400,0,'+09'),(567,3,36000,0,'+10'),(568,0,39988,0,'LMT'),(568,1,43200,0,'+12'),(569,0,44120,0,'LMT'),(569,1,43200,0,'+12'),(570,0,36428,0,'LMT'),(570,1,36000,0,'+10'),(570,2,32400,0,'+09'),(570,3,36000,0,'+10'),(571,0,5040,0,'LMT'),(571,1,5040,0,'WMT'),(571,2,7200,1,'CEST'),(571,3,3600,0,'CET'),(571,4,7200,1,'CEST'),(571,5,3600,0,'CET'),(571,6,10800,1,'EEST'),(571,7,7200,0,'EET'),(571,8,7200,0,'EET'),(571,9,7200,1,'CEST'),(571,10,3600,0,'CET'),(572,0,-2205,0,'LMT'),(572,1,3600,1,'WEST'),(572,2,0,0,'WET'),(572,3,3600,1,'WEST'),(572,4,0,0,'WET'),(572,5,7200,1,'WEMT'),(572,6,0,0,'WET'),(572,7,3600,0,'CET'),(572,8,3600,0,'CET'),(572,9,7200,1,'CEST'),(572,10,3600,1,'WEST'),(572,11,0,0,'WET'),(573,0,29160,0,'LMT'),(573,1,28800,0,'CST'),(573,2,32400,0,'JST'),(573,3,32400,1,'CDT'),(573,4,28800,0,'CST'),(574,0,30472,0,'LMT'),(574,1,30600,0,'KST'),(574,2,32400,0,'JST'),(574,3,36000,1,'KDT'),(574,4,32400,0,'KST'),(574,5,34200,1,'KDT'),(574,6,36000,1,'KDT'),(575,0,24925,0,'LMT'),(575,1,24925,0,'SMT'),(575,2,25200,0,'+07'),(575,3,26400,1,'+0720'),(575,4,26400,0,'+0720'),(575,5,27000,0,'+0730'),(575,6,32400,0,'+09'),(575,7,28800,0,'+08'),(576,0,-15865,0,'LMT'),(576,1,-14400,0,'AST'),(576,2,-10800,1,'APT'),(576,3,-10800,1,'AWT'),(577,0,-15264,0,'LMT'),(577,1,-10800,1,'ADT'),(577,2,-14400,0,'AST'),(577,3,-10800,1,'AWT'),(577,4,-10800,1,'APT'),(578,0,-25116,0,'LMT'),(578,1,-21600,1,'MDT'),(578,2,-25200,0,'MST'),(578,3,-21600,1,'MWT'),(578,4,-21600,1,'MPT'),(578,5,-21600,0,'CST'),(579,0,-21036,0,'LMT'),(579,1,-18000,1,'CDT'),(579,2,-21600,0,'CST'),(579,3,-18000,0,'EST'),(579,4,-18000,1,'CWT'),(579,5,-18000,1,'CPT'),(579,6,-21600,0,'CST'),(580,0,-19088,0,'LMT'),(580,1,-19176,0,'CMT'),(580,2,-18000,0,'EST'),(581,0,-17762,0,'LMT'),(581,1,-14400,1,'EDT'),(581,2,-18000,0,'EST'),(581,3,-14400,1,'EWT'),(581,4,-14400,1,'EPT'),(582,0,-37886,0,'LMT'),(582,1,-37800,0,'HST'),(582,2,-34200,1,'HDT'),(582,3,-34200,1,'HWT'),(582,4,-34200,1,'HPT'),(582,5,-36000,0,'HST'),(583,0,-26898,0,'LMT'),(583,1,-21600,1,'MDT'),(583,2,-25200,0,'MST'),(583,3,-21600,1,'MWT'),(584,0,-25196,0,'LMT'),(584,1,-21600,1,'MDT'),(584,2,-25200,0,'MST'),(584,3,-21600,1,'MWT'),(584,4,-21600,1,'MPT'),(585,0,-31220,0,'LMT'),(585,1,-30600,0,'-0830'),(585,2,-28800,0,'-08'),(586,0,-28378,0,'LMT'),(586,1,-25200,1,'PDT'),(586,2,-28800,0,'PST'),(586,3,-25200,1,'PWT'),(586,4,-25200,1,'PPT'),(587,0,-32388,0,'LMT'),(587,1,-32400,0,'-09'),(588,0,-35976,0,'LMT'),(588,1,-36000,0,'AST'),(588,2,-32400,1,'AWT'),(588,3,-32400,1,'APT'),(588,4,-36000,0,'AHST'),(588,5,-32400,1,'AHDT'),(588,6,-32400,0,'YST'),(588,7,-28800,1,'AKDT'),(588,8,-32400,0,'AKST'),(589,0,6952,0,'LMT'),(589,1,7016,0,'IMT'),(589,2,10800,1,'EEST'),(589,3,7200,0,'EET'),(589,4,10800,0,'+03'),(589,5,14400,1,'+04'),(589,6,10800,1,'EEST'),(589,7,7200,0,'EET'),(589,8,10800,1,'EEST'),(589,9,7200,0,'EET'),(589,10,10800,0,'+03'),(590,0,0,0,'UTC'),(591,0,-35976,0,'LMT'),(591,1,-36000,0,'AST'),(591,2,-32400,1,'AWT'),(591,3,-32400,1,'APT'),(591,4,-36000,0,'AHST'),(591,5,-32400,1,'AHDT'),(591,6,-32400,0,'YST'),(591,7,-28800,1,'AKDT'),(591,8,-32400,0,'AKST'),(592,0,-42398,0,'LMT'),(592,1,-39600,0,'NST'),(592,2,-36000,1,'NWT'),(592,3,-36000,1,'NPT'),(592,4,-39600,0,'BST'),(592,5,-36000,1,'BDT'),(592,6,-36000,0,'AHST'),(592,7,-32400,1,'HDT'),(592,8,-36000,0,'HST'),(593,0,-26898,0,'LMT'),(593,1,-21600,1,'MDT'),(593,2,-25200,0,'MST'),(593,3,-21600,1,'MWT'),(594,0,-21036,0,'LMT'),(594,1,-18000,1,'CDT'),(594,2,-21600,0,'CST'),(594,3,-18000,0,'EST'),(594,4,-18000,1,'CWT'),(594,5,-18000,1,'CPT'),(594,6,-21600,0,'CST'),(595,0,-20678,0,'LMT'),(595,1,-18000,1,'CDT'),(595,2,-21600,0,'CST'),(595,3,-18000,1,'CWT'),(595,4,-18000,1,'CPT'),(595,5,-18000,0,'EST'),(595,6,-14400,1,'EDT'),(596,0,-17762,0,'LMT'),(596,1,-14400,1,'EDT'),(596,2,-18000,0,'EST'),(596,3,-14400,1,'EWT'),(596,4,-14400,1,'EPT'),(597,0,-37886,0,'LMT'),(597,1,-37800,0,'HST'),(597,2,-34200,1,'HDT'),(597,3,-34200,1,'HWT'),(597,4,-34200,1,'HPT'),(597,5,-36000,0,'HST'),(598,0,-20790,0,'LMT'),(598,1,-18000,1,'CDT'),(598,2,-21600,0,'CST'),(598,3,-18000,1,'CWT'),(598,4,-18000,1,'CPT'),(598,5,-18000,0,'EST'),(598,6,-21600,0,'CST'),(599,0,-19931,0,'LMT'),(599,1,-21600,0,'CST'),(599,2,-18000,0,'EST'),(599,3,-14400,1,'EWT'),(599,4,-14400,1,'EPT'),(599,5,-14400,1,'EDT'),(600,0,-25196,0,'LMT'),(600,1,-21600,1,'MDT'),(600,2,-25200,0,'MST'),(600,3,-21600,1,'MWT'),(600,4,-21600,1,'MPT'),(601,0,-28378,0,'LMT'),(601,1,-25200,1,'PDT'),(601,2,-28800,0,'PST'),(601,3,-25200,1,'PWT'),(601,4,-25200,1,'PPT'),(602,0,-28378,0,'LMT'),(602,1,-25200,1,'PDT'),(602,2,-28800,0,'PST'),(602,3,-25200,1,'PWT'),(602,4,-25200,1,'PPT'),(603,0,45432,0,'LMT'),(603,1,-40968,0,'LMT'),(603,2,-39600,0,'SST'),(604,0,0,0,'UTC'),(605,0,0,0,'UTC'),(606,0,9017,0,'LMT'),(606,1,9017,0,'MMT'),(606,2,12679,1,'MST'),(606,3,9079,0,'MMT'),(606,4,16279,1,'MDST'),(606,5,14400,1,'MSD'),(606,6,10800,0,'MSK'),(606,7,14400,1,'MSD'),(606,8,18000,1,'+05'),(606,9,7200,0,'EET'),(606,10,10800,0,'MSK'),(606,11,14400,1,'MSD'),(606,12,10800,1,'EEST'),(606,13,7200,0,'EET'),(606,14,14400,0,'MSK'),(606,15,14400,1,'MSD'),(606,16,10800,0,'MSK'),(607,0,3600,1,'WEST'),(607,1,0,0,'WET'),(608,0,0,0,'UTC'),(609,0,0,0,'UTC'),(610,0,-968,0,'LMT'),(610,1,0,0,'GMT'),(611,0,-52,0,'LMT'),(611,1,1200,1,'+0020'),(611,2,0,0,'GMT'),(611,3,1800,0,'+0030'),(611,4,1800,1,'+0030'),(611,5,0,0,'GMT'),(612,0,8836,0,'LMT'),(612,1,9000,0,'+0230'),(612,2,10800,0,'EAT'),(612,3,9900,0,'+0245'),(612,4,10800,0,'EAT'),(613,0,732,0,'LMT'),(613,1,561,0,'PMT'),(613,2,3600,1,'WEST'),(613,3,0,0,'WET'),(613,4,0,0,'WET'),(613,5,7200,1,'CEST'),(613,6,3600,0,'CET'),(613,7,3600,1,'WEST'),(614,0,8836,0,'LMT'),(614,1,9000,0,'+0230'),(614,2,10800,0,'EAT'),(614,3,9900,0,'+0245'),(614,4,10800,0,'EAT'),(615,0,8836,0,'LMT'),(615,1,9000,0,'+0230'),(615,2,10800,0,'EAT'),(615,3,9900,0,'+0245'),(615,4,10800,0,'EAT'),(616,0,-968,0,'LMT'),(616,1,0,0,'GMT'),(617,0,815,0,'LMT'),(617,1,0,0,'GMT'),(617,2,1800,0,'+0030'),(617,3,3600,0,'WAT'),(618,0,-968,0,'LMT'),(618,1,0,0,'GMT'),(619,0,-3740,0,'LMT'),(619,1,-3600,0,'-01'),(619,2,0,0,'GMT'),(620,0,7820,0,'LMT'),(620,1,7200,0,'CAT'),(621,0,815,0,'LMT'),(621,1,0,0,'GMT'),(621,2,1800,0,'+0030'),(621,3,3600,0,'WAT'),(622,0,7820,0,'LMT'),(622,1,7200,0,'CAT'),(623,0,7509,0,'LMT'),(623,1,10800,1,'EEST'),(623,2,7200,0,'EET'),(623,3,10800,1,'EEST'),(624,0,-1820,0,'LMT'),(624,1,3600,1,'+01'),(624,2,0,0,'+00'),(624,3,3600,0,'+01'),(624,4,0,1,'+00'),(625,0,-1276,0,'LMT'),(625,1,0,0,'WET'),(625,2,3600,1,'WEST'),(625,3,0,0,'WET'),(625,4,3600,0,'CET'),(625,5,7200,1,'CEST'),(625,6,3600,0,'CET'),(626,0,-968,0,'LMT'),(626,1,0,0,'GMT'),(627,0,-968,0,'LMT'),(627,1,0,0,'GMT'),(628,0,8836,0,'LMT'),(628,1,9000,0,'+0230'),(628,2,10800,0,'EAT'),(628,3,9900,0,'+0245'),(628,4,10800,0,'EAT'),(629,0,8836,0,'LMT'),(629,1,9000,0,'+0230'),(629,2,10800,0,'EAT'),(629,3,9900,0,'+0245'),(629,4,10800,0,'EAT'),(630,0,815,0,'LMT'),(630,1,0,0,'GMT'),(630,2,1800,0,'+0030'),(630,3,3600,0,'WAT'),(631,0,-3168,0,'LMT'),(631,1,-3600,0,'-01'),(631,2,3600,1,'+01'),(631,3,0,0,'+00'),(631,4,0,1,'+00'),(631,5,3600,0,'+01'),(632,0,-968,0,'LMT'),(632,1,0,0,'GMT'),(633,0,7820,0,'LMT'),(633,1,7200,0,'CAT'),(634,0,7820,0,'LMT'),(634,1,7200,0,'CAT'),(635,0,6720,0,'LMT'),(635,1,5400,0,'SAST'),(635,2,10800,1,'SAST'),(635,3,7200,0,'SAST'),(636,0,7588,0,'LMT'),(636,1,10800,1,'CAST'),(636,2,7200,0,'CAT'),(636,3,10800,0,'EAT'),(636,4,7200,0,'CAT'),(637,0,8836,0,'LMT'),(637,1,9000,0,'+0230'),(637,2,10800,0,'EAT'),(637,3,9900,0,'+0245'),(637,4,10800,0,'EAT'),(638,0,7808,0,'LMT'),(638,1,10800,1,'CAST'),(638,2,7200,0,'CAT'),(638,3,10800,0,'EAT'),(638,4,7200,0,'CAT'),(639,0,7820,0,'LMT'),(639,1,7200,0,'CAT'),(640,0,815,0,'LMT'),(640,1,0,0,'GMT'),(640,2,1800,0,'+0030'),(640,3,3600,0,'WAT'),(641,0,815,0,'LMT'),(641,1,0,0,'GMT'),(641,2,1800,0,'+0030'),(641,3,3600,0,'WAT'),(642,0,815,0,'LMT'),(642,1,0,0,'GMT'),(642,2,1800,0,'+0030'),(642,3,3600,0,'WAT'),(643,0,-968,0,'LMT'),(643,1,0,0,'GMT'),(644,0,815,0,'LMT'),(644,1,0,0,'GMT'),(644,2,1800,0,'+0030'),(644,3,3600,0,'WAT'),(645,0,7820,0,'LMT'),(645,1,7200,0,'CAT'),(646,0,7820,0,'LMT'),(646,1,7200,0,'CAT'),(647,0,815,0,'LMT'),(647,1,0,0,'GMT'),(647,2,1800,0,'+0030'),(647,3,3600,0,'WAT'),(648,0,7820,0,'LMT'),(648,1,7200,0,'CAT'),(649,0,6720,0,'LMT'),(649,1,5400,0,'SAST'),(649,2,10800,1,'SAST'),(649,3,7200,0,'SAST'),(650,0,6720,0,'LMT'),(650,1,5400,0,'SAST'),(650,2,10800,1,'SAST'),(650,3,7200,0,'SAST'),(651,0,8836,0,'LMT'),(651,1,9000,0,'+0230'),(651,2,10800,0,'EAT'),(651,3,9900,0,'+0245'),(651,4,10800,0,'EAT'),(652,0,-2588,0,'LMT'),(652,1,-2588,0,'MMT'),(652,2,-2670,0,'MMT'),(652,3,0,0,'GMT'),(653,0,8836,0,'LMT'),(653,1,9000,0,'+0230'),(653,2,10800,0,'EAT'),(653,3,9900,0,'+0245'),(653,4,10800,0,'EAT'),(654,0,3612,0,'LMT'),(654,1,3600,0,'WAT'),(654,2,7200,1,'WAST'),(655,0,815,0,'LMT'),(655,1,0,0,'GMT'),(655,2,1800,0,'+0030'),(655,3,3600,0,'WAT'),(656,0,-968,0,'LMT'),(656,1,0,0,'GMT'),(657,0,-968,0,'LMT'),(657,1,0,0,'GMT'),(658,0,815,0,'LMT'),(658,1,0,0,'GMT'),(658,2,1800,0,'+0030'),(658,3,3600,0,'WAT'),(659,0,1616,0,'LMT'),(659,1,-2205,0,'LMT'),(659,2,0,0,'GMT'),(659,3,3600,0,'WAT'),(659,4,0,0,'GMT'),(660,0,-968,0,'LMT'),(660,1,0,0,'GMT'),(661,0,3164,0,'LMT'),(661,1,7200,1,'CEST'),(661,2,3600,0,'CET'),(661,3,7200,0,'EET'),(662,0,2444,0,'LMT'),(662,1,561,0,'PMT'),(662,2,7200,1,'CEST'),(662,3,3600,0,'CET'),(662,4,3600,0,'CET'),(662,5,7200,1,'CEST'),(663,0,4104,0,'LMT'),(663,1,5400,0,'+0130'),(663,2,7200,0,'SAST'),(663,3,10800,1,'SAST'),(663,4,3600,1,'WAT'),(663,5,7200,0,'CAT'),(664,0,-42398,0,'LMT'),(664,1,-39600,0,'NST'),(664,2,-36000,1,'NWT'),(664,3,-36000,1,'NPT'),(664,4,-39600,0,'BST'),(664,5,-36000,1,'BDT'),(664,6,-36000,0,'AHST'),(664,7,-32400,1,'HDT'),(664,8,-36000,0,'HST'),(665,0,-35976,0,'LMT'),(665,1,-36000,0,'AST'),(665,2,-32400,1,'AWT'),(665,3,-32400,1,'APT'),(665,4,-36000,0,'AHST'),(665,5,-32400,1,'AHDT'),(665,6,-32400,0,'YST'),(665,7,-28800,1,'AKDT'),(665,8,-32400,0,'AKST'),(666,0,-14764,0,'LMT'),(666,1,-14400,0,'AST'),(667,0,-14764,0,'LMT'),(667,1,-14400,0,'AST'),(668,0,-11568,0,'LMT'),(668,1,-7200,1,'-02'),(668,2,-10800,0,'-03'),(669,0,-14028,0,'LMT'),(669,1,-15408,0,'CMT'),(669,2,-14400,0,'-04'),(669,3,-10800,1,'-03'),(669,4,-7200,1,'-02'),(669,5,-10800,0,'-03'),(670,0,-15788,0,'LMT'),(670,1,-15408,0,'CMT'),(670,2,-14400,0,'-04'),(670,3,-10800,1,'-03'),(670,4,-7200,1,'-02'),(670,5,-10800,0,'-03'),(671,0,-15788,0,'LMT'),(671,1,-15408,0,'CMT'),(671,2,-14400,0,'-04'),(671,3,-10800,1,'-03'),(671,4,-7200,1,'-02'),(671,5,-10800,0,'-03'),(672,0,-15408,0,'LMT'),(672,1,-15408,0,'CMT'),(672,2,-14400,0,'-04'),(672,3,-10800,1,'-03'),(672,4,-7200,1,'-02'),(672,5,-10800,0,'-03'),(673,0,-15672,0,'LMT'),(673,1,-15408,0,'CMT'),(673,2,-14400,0,'-04'),(673,3,-10800,1,'-03'),(673,4,-7200,1,'-02'),(673,5,-10800,0,'-03'),(674,0,-16044,0,'LMT'),(674,1,-15408,0,'CMT'),(674,2,-14400,0,'-04'),(674,3,-10800,1,'-03'),(674,4,-7200,1,'-02'),(674,5,-10800,0,'-03'),(675,0,-16516,0,'LMT'),(675,1,-15408,0,'CMT'),(675,2,-14400,0,'-04'),(675,3,-10800,1,'-03'),(675,4,-7200,1,'-02'),(675,5,-10800,0,'-03'),(676,0,-16612,0,'LMT'),(676,1,-15408,0,'CMT'),(676,2,-14400,0,'-04'),(676,3,-10800,1,'-03'),(676,4,-7200,1,'-02'),(676,5,-10800,0,'-03'),(677,0,-15700,0,'LMT'),(677,1,-15408,0,'CMT'),(677,2,-14400,0,'-04'),(677,3,-10800,1,'-03'),(677,4,-7200,1,'-02'),(677,5,-10800,0,'-03'),(678,0,-16444,0,'LMT'),(678,1,-15408,0,'CMT'),(678,2,-14400,0,'-04'),(678,3,-10800,1,'-03'),(678,4,-7200,1,'-02'),(678,5,-10800,0,'-03'),(679,0,-15924,0,'LMT'),(679,1,-15408,0,'CMT'),(679,2,-14400,0,'-04'),(679,3,-10800,1,'-03'),(679,4,-7200,1,'-02'),(679,5,-10800,0,'-03'),(679,6,-10800,1,'-03'),(680,0,-15652,0,'LMT'),(680,1,-15408,0,'CMT'),(680,2,-14400,0,'-04'),(680,3,-10800,1,'-03'),(680,4,-7200,1,'-02'),(680,5,-10800,0,'-03'),(681,0,-16392,0,'LMT'),(681,1,-15408,0,'CMT'),(681,2,-14400,0,'-04'),(681,3,-10800,1,'-03'),(681,4,-7200,1,'-02'),(681,5,-10800,0,'-03'),(682,0,-16547,0,'LMT'),(682,1,-16200,0,'-0430'),(682,2,-14400,0,'AST'),(683,0,-13840,0,'LMT'),(683,1,-13840,0,'AMT'),(683,2,-14400,0,'-04'),(683,3,-10800,0,'-03'),(683,4,-10800,1,'-03'),(683,5,-14400,0,'-04'),(684,0,-21988,0,'LMT'),(684,1,-18000,1,'CDT'),(684,2,-21600,0,'CST'),(684,3,-18000,1,'CWT'),(684,4,-18000,1,'CPT'),(684,5,-18000,0,'EST'),(685,0,-42398,0,'LMT'),(685,1,-39600,0,'NST'),(685,2,-36000,1,'NWT'),(685,3,-36000,1,'NPT'),(685,4,-39600,0,'BST'),(685,5,-36000,1,'BDT'),(685,6,-36000,0,'AHST'),(685,7,-32400,1,'HDT'),(685,8,-36000,0,'HST'),(686,0,-9244,0,'LMT'),(686,1,-7200,1,'-02'),(686,2,-10800,0,'-03'),(687,0,-25260,0,'LMT'),(687,1,-25200,0,'MST'),(687,2,-21600,0,'CST'),(687,3,-28800,0,'PST'),(687,4,-21600,1,'MDT'),(687,5,-18000,1,'CDT'),(687,6,-21600,0,'CST'),(688,0,-14309,0,'LMT'),(688,1,-14309,0,'BMT'),(688,2,-10800,1,'ADT'),(688,3,-14400,0,'AST'),(689,0,-11636,0,'LMT'),(689,1,-7200,1,'-02'),(689,2,-10800,0,'-03'),(690,0,-21168,0,'LMT'),(690,1,-19800,1,'-0530'),(690,2,-21600,0,'CST'),(690,3,-18000,1,'CWT'),(690,4,-18000,1,'CPT'),(690,5,-18000,1,'CDT'),(691,0,-13708,0,'LMT'),(691,1,-10800,1,'ADT'),(691,2,-14400,0,'AST'),(691,3,-10800,1,'AWT'),(691,4,-10800,1,'APT'),(692,0,-14560,0,'LMT'),(692,1,-10800,1,'-03'),(692,2,-14400,0,'-04'),(693,0,-17776,0,'LMT'),(693,1,-17776,0,'BMT'),(693,2,-14400,1,'-04'),(693,3,-18000,0,'-05'),(694,0,-27889,0,'LMT'),(694,1,-25200,1,'PDT'),(694,2,-28800,0,'PST'),(694,3,-21600,1,'MWT'),(694,4,-21600,1,'MPT'),(694,5,-25200,0,'MST'),(694,6,-21600,1,'MDT'),(695,0,-14028,0,'LMT'),(695,1,-15408,0,'CMT'),(695,2,-14400,0,'-04'),(695,3,-10800,1,'-03'),(695,4,-7200,1,'-02'),(695,5,-10800,0,'-03'),(696,0,0,0,'-00'),(696,1,-21600,1,'MWT'),(696,2,-21600,1,'MPT'),(696,3,-25200,0,'MST'),(696,4,-18000,1,'MDDT'),(696,5,-21600,1,'MDT'),(696,6,-18000,1,'CDT'),(696,7,-21600,0,'CST'),(696,8,-18000,0,'EST'),(696,9,-21600,1,'MDT'),(696,10,-25200,0,'MST'),(697,0,-13108,0,'LMT'),(697,1,-10800,1,'-03'),(697,2,-14400,0,'-04'),(698,0,-20824,0,'LMT'),(698,1,-21600,0,'CST'),(698,2,-14400,1,'EDT'),(698,3,-18000,0,'EST'),(698,4,-18000,1,'CDT'),(699,0,-16064,0,'LMT'),(699,1,-16060,0,'CMT'),(699,2,-16200,0,'-0430'),(699,3,-14400,0,'-04'),(700,0,-15788,0,'LMT'),(700,1,-15408,0,'CMT'),(700,2,-14400,0,'-04'),(700,3,-10800,1,'-03'),(700,4,-7200,1,'-02'),(700,5,-10800,0,'-03'),(701,0,-12560,0,'LMT'),(701,1,-14400,0,'-04'),(701,2,-10800,0,'-03'),(702,0,-19088,0,'LMT'),(702,1,-19176,0,'CMT'),(702,2,-18000,0,'EST'),(703,0,-21036,0,'LMT'),(703,1,-18000,1,'CDT'),(703,2,-21600,0,'CST'),(703,3,-18000,0,'EST'),(703,4,-18000,1,'CWT'),(703,5,-18000,1,'CPT'),(703,6,-21600,0,'CST'),(704,0,-25460,0,'LMT'),(704,1,-25200,0,'MST'),(704,2,-21600,0,'CST'),(704,3,-18000,1,'CDT'),(704,4,-21600,1,'MDT'),(704,5,-25200,0,'MST'),(705,0,-21988,0,'LMT'),(705,1,-18000,1,'CDT'),(705,2,-21600,0,'CST'),(705,3,-18000,1,'CWT'),(705,4,-18000,1,'CPT'),(705,5,-18000,0,'EST'),(706,0,-15408,0,'LMT'),(706,1,-15408,0,'CMT'),(706,2,-14400,0,'-04'),(706,3,-10800,1,'-03'),(706,4,-7200,1,'-02'),(706,5,-10800,0,'-03'),(707,0,-20173,0,'LMT'),(707,1,-20173,0,'SJMT'),(707,2,-18000,1,'CDT'),(707,3,-21600,0,'CST'),(708,0,-27964,0,'LMT'),(708,1,-25200,0,'MST'),(708,2,-28800,0,'PST'),(708,3,-25200,0,'MST'),(709,0,-13460,0,'LMT'),(709,1,-10800,1,'-03'),(709,2,-14400,0,'-04'),(710,0,-16547,0,'LMT'),(710,1,-16200,0,'-0430'),(710,2,-14400,0,'AST'),(711,0,-4480,0,'LMT'),(711,1,-10800,0,'-03'),(711,2,-10800,0,'-03'),(711,3,-7200,1,'-02'),(711,4,-7200,1,'-02'),(711,5,0,0,'GMT'),(712,0,-33460,0,'LMT'),(712,1,-28800,1,'YDT'),(712,2,-32400,0,'YST'),(712,3,-28800,1,'YWT'),(712,4,-28800,1,'YPT'),(712,5,-25200,1,'YDDT'),(712,6,-28800,0,'PST'),(712,7,-25200,1,'PDT'),(712,8,-25200,0,'MST'),(713,0,-28856,0,'LMT'),(713,1,-25200,1,'PDT'),(713,2,-28800,0,'PST'),(713,3,-25200,1,'PWT'),(713,4,-25200,1,'PPT'),(713,5,-25200,0,'MST'),(714,0,-25196,0,'LMT'),(714,1,-21600,1,'MDT'),(714,2,-25200,0,'MST'),(714,3,-21600,1,'MWT'),(714,4,-21600,1,'MPT'),(715,0,-19931,0,'LMT'),(715,1,-21600,0,'CST'),(715,2,-18000,0,'EST'),(715,3,-14400,1,'EWT'),(715,4,-14400,1,'EPT'),(715,5,-14400,1,'EDT'),(716,0,-14764,0,'LMT'),(716,1,-14400,0,'AST'),(717,0,-27232,0,'LMT'),(717,1,-21600,1,'MDT'),(717,2,-25200,0,'MST'),(717,3,-21600,1,'MWT'),(717,4,-21600,1,'MPT'),(718,0,-16768,0,'LMT'),(718,1,-14400,1,'-04'),(718,2,-18000,0,'-05'),(718,3,-14400,0,'-04'),(718,4,-18000,0,'-05'),(719,0,-21408,0,'LMT'),(719,1,-18000,1,'CDT'),(719,2,-21600,0,'CST'),(720,0,-28084,0,'LMT'),(720,1,-25200,0,'MST'),(720,2,-28800,0,'PST'),(720,3,-25200,1,'PDT'),(720,4,-25200,1,'PWT'),(720,5,-25200,1,'PPT'),(721,0,-29447,0,'LMT'),(721,1,-25200,1,'PDT'),(721,2,-28800,0,'PST'),(721,3,-25200,1,'PWT'),(721,4,-25200,1,'PPT'),(721,5,-25200,0,'MST'),(722,0,-20678,0,'LMT'),(722,1,-18000,1,'CDT'),(722,2,-21600,0,'CST'),(722,3,-18000,1,'CWT'),(722,4,-18000,1,'CPT'),(722,5,-18000,0,'EST'),(722,6,-14400,1,'EDT'),(723,0,-9240,0,'LMT'),(723,1,-7200,1,'-02'),(723,2,-10800,0,'-03'),(724,0,-14388,0,'LMT'),(724,1,-10800,1,'ADT'),(724,2,-14400,0,'AST'),(724,3,-10800,1,'AWT'),(724,4,-10800,1,'APT'),(725,0,-12416,0,'LMT'),(725,1,-10800,0,'-03'),(725,2,-10800,0,'-03'),(725,3,-7200,1,'-02'),(725,4,-7200,1,'-02'),(726,0,-14500,0,'LMT'),(726,1,-12652,0,'NST'),(726,2,-9052,1,'NDT'),(726,3,-12600,0,'NST'),(726,4,-9000,1,'NDT'),(726,5,-9000,1,'NPT'),(726,6,-9000,1,'NWT'),(726,7,-10800,1,'ADT'),(726,8,-14400,0,'AST'),(726,9,-7200,1,'ADDT'),(726,10,-10800,1,'ADT'),(727,0,-17072,0,'LMT'),(727,1,-18430,0,'KMT'),(727,2,-18000,0,'EST'),(727,3,-14400,1,'EDT'),(727,4,-14400,0,'AST'),(727,5,-18000,0,'EST'),(728,0,-14764,0,'LMT'),(728,1,-14400,0,'AST'),(729,0,-14764,0,'LMT'),(729,1,-14400,0,'AST'),(730,0,-21724,0,'LMT'),(730,1,-18000,1,'CDT'),(730,2,-21600,0,'CST'),(731,0,-19160,0,'LMT'),(731,1,-18840,0,'QMT'),(731,2,-14400,1,'-04'),(731,3,-18000,0,'-05'),(732,0,-13960,0,'LMT'),(732,1,-13500,0,'-0345'),(732,2,-10800,0,'-03'),(732,3,-14400,0,'-04'),(733,0,-15264,0,'LMT'),(733,1,-10800,1,'ADT'),(733,2,-14400,0,'AST'),(733,3,-10800,1,'AWT'),(733,4,-10800,1,'APT'),(734,0,-19768,0,'LMT'),(734,1,-19776,0,'HMT'),(734,2,-14400,1,'CDT'),(734,3,-18000,0,'CST'),(734,4,-18000,0,'CST'),(734,5,-14400,1,'CDT'),(735,0,-26632,0,'LMT'),(735,1,-25200,0,'MST'),(735,2,-21600,0,'CST'),(735,3,-28800,0,'PST'),(735,4,-21600,1,'MDT'),(735,5,-25200,0,'MST'),(736,0,-20678,0,'LMT'),(736,1,-18000,1,'CDT'),(736,2,-21600,0,'CST'),(736,3,-18000,1,'CWT'),(736,4,-18000,1,'CPT'),(736,5,-18000,0,'EST'),(736,6,-14400,1,'EDT'),(737,0,-20790,0,'LMT'),(737,1,-18000,1,'CDT'),(737,2,-21600,0,'CST'),(737,3,-18000,1,'CWT'),(737,4,-18000,1,'CPT'),(737,5,-18000,0,'EST'),(737,6,-21600,0,'CST'),(738,0,-20723,0,'LMT'),(738,1,-18000,1,'CDT'),(738,2,-21600,0,'CST'),(738,3,-18000,1,'CWT'),(738,4,-18000,1,'CPT'),(738,5,-18000,0,'EST'),(738,6,-14400,1,'EDT'),(739,0,-20947,0,'LMT'),(739,1,-18000,1,'CDT'),(739,2,-21600,0,'CST'),(739,3,-18000,1,'CWT'),(739,4,-18000,1,'CPT'),(739,5,-18000,0,'EST'),(739,6,-14400,1,'EDT'),(740,0,-20823,0,'LMT'),(740,1,-18000,1,'CDT'),(740,2,-21600,0,'CST'),(740,3,-18000,1,'CWT'),(740,4,-18000,1,'CPT'),(740,5,-18000,0,'EST'),(740,6,-14400,1,'EDT'),(740,7,-18000,1,'CDT'),(740,8,-21600,0,'CST'),(741,0,-20416,0,'LMT'),(741,1,-18000,1,'CDT'),(741,2,-21600,0,'CST'),(741,3,-18000,1,'CWT'),(741,4,-18000,1,'CPT'),(741,5,-18000,0,'EST'),(741,6,-14400,1,'EDT'),(742,0,-21007,0,'LMT'),(742,1,-18000,1,'CDT'),(742,2,-21600,0,'CST'),(742,3,-18000,1,'CWT'),(742,4,-18000,1,'CPT'),(742,5,-18000,0,'EST'),(742,6,-14400,1,'EDT'),(743,0,-20785,0,'LMT'),(743,1,-18000,1,'CDT'),(743,2,-21600,0,'CST'),(743,3,-18000,1,'CWT'),(743,4,-18000,1,'CPT'),(743,5,-18000,0,'EST'),(743,6,-14400,1,'EDT'),(744,0,-20678,0,'LMT'),(744,1,-18000,1,'CDT'),(744,2,-21600,0,'CST'),(744,3,-18000,1,'CWT'),(744,4,-18000,1,'CPT'),(744,5,-18000,0,'EST'),(744,6,-14400,1,'EDT'),(745,0,0,0,'-00'),(745,1,-21600,1,'PDDT'),(745,2,-28800,0,'PST'),(745,3,-25200,0,'MST'),(745,4,-21600,1,'MDT'),(746,0,0,0,'-00'),(746,1,-14400,1,'EPT'),(746,2,-18000,0,'EST'),(746,3,-10800,1,'EDDT'),(746,4,-14400,1,'EDT'),(746,5,-14400,1,'EWT'),(746,6,-21600,0,'CST'),(746,7,-18000,1,'CDT'),(746,8,-14400,1,'EDT'),(746,9,-18000,0,'EST'),(747,0,-18430,0,'LMT'),(747,1,-18430,0,'KMT'),(747,2,-18000,0,'EST'),(747,3,-14400,1,'EDT'),(748,0,-15672,0,'LMT'),(748,1,-15408,0,'CMT'),(748,2,-14400,0,'-04'),(748,3,-10800,1,'-03'),(748,4,-7200,1,'-02'),(748,5,-10800,0,'-03'),(749,0,-32261,0,'LMT'),(749,1,-28800,0,'PST'),(749,2,-25200,1,'PWT'),(749,3,-25200,1,'PPT'),(749,4,-25200,1,'PDT'),(749,5,-28800,1,'YDT'),(749,6,-32400,0,'YST'),(749,7,-28800,1,'AKDT'),(749,8,-32400,0,'AKST'),(750,0,-20582,0,'LMT'),(750,1,-18000,1,'CDT'),(750,2,-21600,0,'CST'),(750,3,-18000,1,'CWT'),(750,4,-18000,1,'CPT'),(750,5,-18000,0,'EST'),(750,6,-14400,1,'EDT'),(751,0,-20364,0,'LMT'),(751,1,-18000,1,'CDT'),(751,2,-21600,0,'CST'),(751,3,-18000,1,'CWT'),(751,4,-18000,1,'CPT'),(751,5,-14400,1,'EDT'),(751,6,-18000,0,'EST'),(752,0,-20790,0,'LMT'),(752,1,-18000,1,'CDT'),(752,2,-21600,0,'CST'),(752,3,-18000,1,'CWT'),(752,4,-18000,1,'CPT'),(752,5,-18000,0,'EST'),(752,6,-21600,0,'CST'),(753,0,-16547,0,'LMT'),(753,1,-16200,0,'-0430'),(753,2,-14400,0,'AST'),(754,0,-16356,0,'LMT'),(754,1,-16356,0,'CMT'),(754,2,-12756,1,'BST'),(754,3,-14400,0,'-04'),(755,0,-18492,0,'LMT'),(755,1,-18516,0,'LMT'),(755,2,-14400,1,'-04'),(755,3,-18000,0,'-05'),(756,0,-28378,0,'LMT'),(756,1,-25200,1,'PDT'),(756,2,-28800,0,'PST'),(756,3,-25200,1,'PWT'),(756,4,-25200,1,'PPT'),(757,0,-20582,0,'LMT'),(757,1,-18000,1,'CDT'),(757,2,-21600,0,'CST'),(757,3,-18000,1,'CWT'),(757,4,-18000,1,'CPT'),(757,5,-18000,0,'EST'),(757,6,-14400,1,'EDT'),(758,0,-16547,0,'LMT'),(758,1,-16200,0,'-0430'),(758,2,-14400,0,'AST'),(759,0,-8572,0,'LMT'),(759,1,-7200,1,'-02'),(759,2,-10800,0,'-03'),(760,0,-20708,0,'LMT'),(760,1,-20712,0,'MMT'),(760,2,-21600,0,'CST'),(760,3,-18000,0,'EST'),(760,4,-18000,1,'CDT'),(760,5,-21600,0,'CST'),(761,0,-14404,0,'LMT'),(761,1,-10800,1,'-03'),(761,2,-14400,0,'-04'),(762,0,-14764,0,'LMT'),(762,1,-14400,0,'AST'),(763,0,-14660,0,'LMT'),(763,1,-14660,0,'FFMT'),(763,2,-14400,0,'AST'),(763,3,-10800,1,'ADT'),(764,0,-24000,0,'LMT'),(764,1,-21600,0,'CST'),(764,2,-18000,1,'CDT'),(765,0,-25540,0,'LMT'),(765,1,-25200,0,'MST'),(765,2,-21600,0,'CST'),(765,3,-28800,0,'PST'),(765,4,-21600,1,'MDT'),(765,5,-25200,0,'MST'),(766,0,-16516,0,'LMT'),(766,1,-15408,0,'CMT'),(766,2,-14400,0,'-04'),(766,3,-10800,1,'-03'),(766,4,-7200,1,'-02'),(766,5,-10800,0,'-03'),(767,0,-21027,0,'LMT'),(767,1,-18000,1,'CDT'),(767,2,-21600,0,'CST'),(767,3,-18000,1,'CWT'),(767,4,-18000,1,'CPT'),(767,5,-18000,0,'EST'),(767,6,-21600,0,'CST'),(768,0,-21508,0,'LMT'),(768,1,-21600,0,'CST'),(768,2,-18000,0,'EST'),(768,3,-18000,1,'CDT'),(768,4,-21600,0,'CST'),(769,0,-31578,0,'LMT'),(769,1,-28800,0,'PST'),(769,2,-25200,1,'PWT'),(769,3,-25200,1,'PPT'),(769,4,-25200,1,'PDT'),(769,5,-32400,0,'AKST'),(769,6,-28800,1,'AKDT'),(770,0,-23796,0,'LMT'),(770,1,-25200,0,'MST'),(770,2,-21600,0,'CST'),(770,3,-18000,1,'CDT'),(770,4,-18000,1,'CWT'),(771,0,-13480,0,'LMT'),(771,1,-14400,0,'AST'),(771,2,-10800,0,'-03'),(771,3,-7200,1,'-02'),(772,0,-15548,0,'LMT'),(772,1,-18000,0,'EST'),(772,2,-10800,1,'ADT'),(772,3,-14400,0,'AST'),(772,4,-10800,1,'AWT'),(772,5,-10800,1,'APT'),(773,0,-24076,0,'LMT'),(773,1,-21600,0,'CST'),(773,2,-18000,1,'CDT'),(774,0,-13491,0,'LMT'),(774,1,-13491,0,'MMT'),(774,2,-14400,0,'-04'),(774,3,-12600,0,'-0330'),(774,4,-10800,1,'-03'),(774,5,-10800,0,'-03'),(774,6,-9000,1,'-0230'),(774,7,-7200,1,'-02'),(774,8,-5400,1,'-0130'),(774,9,-7200,1,'-02'),(775,0,-19052,0,'LMT'),(775,1,-14400,1,'EDT'),(775,2,-18000,0,'EST'),(775,3,-14400,1,'EWT'),(775,4,-14400,1,'EPT'),(776,0,-14764,0,'LMT'),(776,1,-14400,0,'AST'),(777,0,-18570,0,'LMT'),(777,1,-14400,1,'EWT'),(777,2,-18000,0,'EST'),(777,3,-14400,1,'EPT'),(777,4,-14400,1,'EDT'),(778,0,-17762,0,'LMT'),(778,1,-14400,1,'EDT'),(778,2,-18000,0,'EST'),(778,3,-14400,1,'EWT'),(778,4,-14400,1,'EPT'),(779,0,-21184,0,'LMT'),(779,1,-14400,1,'EDT'),(779,2,-18000,0,'EST'),(779,3,-14400,1,'EWT'),(779,4,-14400,1,'EPT'),(780,0,-39698,0,'LMT'),(780,1,-39600,0,'NST'),(780,2,-36000,1,'NWT'),(780,3,-36000,1,'NPT'),(780,4,-39600,0,'BST'),(780,5,-36000,1,'BDT'),(780,6,-32400,0,'YST'),(780,7,-28800,1,'AKDT'),(780,8,-32400,0,'AKST'),(781,0,-7780,0,'LMT'),(781,1,-3600,1,'-01'),(781,2,-7200,0,'-02'),(782,0,-24427,0,'LMT'),(782,1,-21600,1,'MDT'),(782,2,-25200,0,'MST'),(782,3,-21600,1,'MWT'),(782,4,-21600,1,'MPT'),(782,5,-18000,1,'CDT'),(782,6,-21600,0,'CST'),(783,0,-24312,0,'LMT'),(783,1,-21600,1,'MDT'),(783,2,-25200,0,'MST'),(783,3,-21600,1,'MWT'),(783,4,-21600,1,'MPT'),(783,5,-18000,1,'CDT'),(783,6,-21600,0,'CST'),(784,0,-24339,0,'LMT'),(784,1,-21600,1,'MDT'),(784,2,-25200,0,'MST'),(784,3,-21600,1,'MWT'),(784,4,-21600,1,'MPT'),(784,5,-18000,1,'CDT'),(784,6,-21600,0,'CST'),(785,0,-12416,0,'LMT'),(785,1,-10800,0,'-03'),(785,2,-10800,0,'-03'),(785,3,-7200,1,'-02'),(785,4,-7200,1,'-02'),(786,0,-25060,0,'LMT'),(786,1,-25200,0,'MST'),(786,2,-21600,0,'CST'),(786,3,-18000,1,'CDT'),(786,4,-21600,1,'MDT'),(786,5,-25200,0,'MST'),(787,0,-19088,0,'LMT'),(787,1,-19176,0,'CMT'),(787,2,-18000,0,'EST'),(788,0,0,0,'-00'),(788,1,-10800,1,'AWT'),(788,2,-10800,1,'APT'),(788,3,-14400,0,'AST'),(788,4,-7200,1,'ADDT'),(788,5,-10800,1,'ADT'),(788,6,-14400,1,'EDT'),(788,7,-18000,0,'EST'),(788,8,-21600,0,'CST'),(788,9,-18000,1,'CDT'),(788,10,-14400,1,'EDT'),(788,11,-18000,0,'EST'),(789,0,-13240,0,'LMT'),(789,1,-13252,0,'PMT'),(789,2,-13236,0,'PMT'),(789,3,-12600,0,'-0330'),(789,4,-10800,0,'-03'),(790,0,-26898,0,'LMT'),(790,1,-21600,1,'MDT'),(790,2,-25200,0,'MST'),(790,3,-21600,1,'MWT'),(791,0,-17360,0,'LMT'),(791,1,-17340,0,'PPMT'),(791,2,-14400,1,'EDT'),(791,3,-18000,0,'EST'),(791,4,-14400,1,'EDT'),(791,5,-18000,0,'EST'),(792,0,-14764,0,'LMT'),(792,1,-14400,0,'AST'),(793,0,-16272,0,'LMT'),(793,1,-14400,1,'-04'),(793,2,-18000,0,'-05'),(793,3,-14400,0,'-04'),(793,4,-18000,0,'-05'),(794,0,-15336,0,'LMT'),(794,1,-10800,1,'-03'),(794,2,-14400,0,'-04'),(795,0,-15865,0,'LMT'),(795,1,-14400,0,'AST'),(795,2,-10800,1,'APT'),(795,3,-10800,1,'AWT'),(796,0,-17020,0,'LMT'),(796,1,-16966,0,'SMT'),(796,2,-18000,0,'-05'),(796,3,-14400,0,'-04'),(796,4,-14400,1,'-04'),(796,5,-10800,1,'-03'),(796,6,-14400,0,'-04'),(796,7,-10800,0,'-03'),(797,0,-22696,0,'LMT'),(797,1,-18000,1,'CDT'),(797,2,-21600,0,'CST'),(797,3,-18000,1,'CWT'),(797,4,-18000,1,'CPT'),(798,0,0,0,'-00'),(798,1,-14400,1,'CDDT'),(798,2,-21600,0,'CST'),(798,3,-18000,1,'CDT'),(798,4,-18000,0,'EST'),(798,5,-21600,0,'CST'),(799,0,-8376,0,'LMT'),(799,1,-7200,1,'-02'),(799,2,-10800,0,'-03'),(800,0,-25116,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,0,0,'-00'),(801,1,-14400,1,'CDDT'),(801,2,-21600,0,'CST'),(801,3,-18000,1,'CDT'),(801,4,-18000,0,'EST'),(801,5,-21600,0,'CST'),(802,0,-16272,0,'LMT'),(802,1,-14400,1,'-04'),(802,2,-18000,0,'-05'),(802,3,-14400,0,'-04'),(802,4,-18000,0,'-05'),(803,0,-15408,0,'LMT'),(803,1,-15408,0,'CMT'),(803,2,-14400,0,'-04'),(803,3,-10800,1,'-03'),(803,4,-7200,1,'-02'),(803,5,-10800,0,'-03'),(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,-13128,0,'LMT'),(805,1,-10800,1,'-03'),(805,2,-14400,0,'-04'),(805,3,-10800,0,'-03'),(806,0,-16966,0,'LMT'),(806,1,-16966,0,'SMT'),(806,2,-18000,0,'-05'),(806,3,-14400,0,'-04'),(806,4,-14400,1,'-04'),(806,5,-10800,1,'-03'),(806,6,-10800,1,'-03'),(806,7,-14400,0,'-04'),(807,0,-16776,0,'LMT'),(807,1,-16800,0,'SDMT'),(807,2,-14400,1,'EDT'),(807,3,-18000,0,'EST'),(807,4,-16200,1,'-0430'),(807,5,-14400,0,'AST'),(808,0,-11188,0,'LMT'),(808,1,-7200,1,'-02'),(808,2,-10800,0,'-03'),(809,0,-5272,0,'LMT'),(809,1,-7200,0,'-02'),(809,2,-3600,1,'-01'),(809,3,-7200,0,'-02'),(809,4,-3600,0,'-01'),(809,5,0,1,'+00'),(809,6,0,1,'+00'),(810,0,-25196,0,'LMT'),(810,1,-21600,1,'MDT'),(810,2,-25200,0,'MST'),(810,3,-21600,1,'MWT'),(810,4,-21600,1,'MPT'),(811,0,-32473,0,'LMT'),(811,1,-28800,0,'PST'),(811,2,-25200,1,'PWT'),(811,3,-25200,1,'PPT'),(811,4,-25200,1,'PDT'),(811,5,-32400,0,'YST'),(811,6,-28800,1,'AKDT'),(811,7,-32400,0,'AKST'),(812,0,-14764,0,'LMT'),(812,1,-14400,0,'AST'),(813,0,-12652,0,'LMT'),(813,1,-9052,1,'NDT'),(813,2,-12652,0,'NST'),(813,3,-9000,1,'NDT'),(813,4,-12600,0,'NST'),(813,5,-9000,1,'NPT'),(813,6,-9000,1,'NWT'),(813,7,-5400,1,'NDDT'),(813,8,-9000,1,'NDT'),(814,0,-14764,0,'LMT'),(814,1,-14400,0,'AST'),(815,0,-14764,0,'LMT'),(815,1,-14400,0,'AST'),(816,0,-14764,0,'LMT'),(816,1,-14400,0,'AST'),(817,0,-14764,0,'LMT'),(817,1,-14400,0,'AST'),(818,0,-25880,0,'LMT'),(818,1,-21600,1,'MDT'),(818,2,-25200,0,'MST'),(818,3,-21600,1,'MWT'),(818,4,-21600,1,'MPT'),(818,5,-21600,0,'CST'),(819,0,-20932,0,'LMT'),(819,1,-18000,1,'CDT'),(819,2,-21600,0,'CST'),(820,0,-16508,0,'LMT'),(820,1,-10800,1,'ADT'),(820,2,-14400,0,'AST'),(821,0,-21420,0,'LMT'),(821,1,-21600,0,'CST'),(821,2,-18000,0,'EST'),(821,3,-14400,1,'EWT'),(821,4,-14400,1,'EPT'),(821,5,-14400,1,'EDT'),(822,0,-28084,0,'LMT'),(822,1,-25200,0,'MST'),(822,2,-28800,0,'PST'),(822,3,-25200,1,'PDT'),(822,4,-25200,1,'PWT'),(822,5,-25200,1,'PPT'),(823,0,-19052,0,'LMT'),(823,1,-14400,1,'EDT'),(823,2,-18000,0,'EST'),(823,3,-14400,1,'EWT'),(823,4,-14400,1,'EPT'),(824,0,-14764,0,'LMT'),(824,1,-14400,0,'AST'),(825,0,-29548,0,'LMT'),(825,1,-25200,1,'PDT'),(825,2,-28800,0,'PST'),(825,3,-25200,1,'PWT'),(825,4,-25200,1,'PPT'),(826,0,-14764,0,'LMT'),(826,1,-14400,0,'AST'),(827,0,-32412,0,'LMT'),(827,1,-28800,1,'YDT'),(827,2,-32400,0,'YST'),(827,3,-28800,1,'YWT'),(827,4,-28800,1,'YPT'),(827,5,-25200,1,'YDDT'),(827,6,-28800,0,'PST'),(827,7,-25200,1,'PDT'),(827,8,-25200,0,'MST'),(828,0,-23316,0,'LMT'),(828,1,-18000,1,'CDT'),(828,2,-21600,0,'CST'),(828,3,-18000,1,'CWT'),(828,4,-18000,1,'CPT'),(828,5,-18000,1,'CDT'),(828,6,-21600,0,'CST'),(829,0,-33535,0,'LMT'),(829,1,-32400,0,'YST'),(829,2,-28800,1,'YWT'),(829,3,-28800,1,'YPT'),(829,4,-28800,1,'YDT'),(829,5,-28800,1,'AKDT'),(829,6,-32400,0,'AKST'),(830,0,0,0,'-00'),(830,1,-21600,1,'MWT'),(830,2,-21600,1,'MPT'),(830,3,-25200,0,'MST'),(830,4,-18000,1,'MDDT'),(830,5,-21600,1,'MDT'),(831,0,0,0,'-00'),(831,1,28800,0,'+08'),(831,2,39600,0,'+11'),(831,3,28800,0,'+08'),(831,4,39600,0,'+11'),(832,0,0,0,'-00'),(832,1,25200,0,'+07'),(832,2,18000,0,'+05'),(832,3,25200,0,'+07'),(833,0,0,0,'-00'),(833,1,36000,0,'+10'),(834,0,0,0,'-00'),(834,1,36000,0,'AEST'),(834,2,39600,1,'AEDT'),(834,3,36000,0,'AEST'),(834,4,0,0,'-00'),(834,5,39600,1,'AEDT'),(834,6,36000,0,'AEST'),(835,0,0,0,'-00'),(835,1,21600,0,'+06'),(835,2,18000,0,'+05'),(836,0,41944,0,'LMT'),(836,1,45000,1,'NZST'),(836,2,41400,0,'NZMT'),(836,3,43200,1,'NZST'),(836,4,46800,1,'NZDT'),(836,5,43200,0,'NZST'),(836,6,43200,0,'NZST'),(837,0,0,0,'-00'),(837,1,-14400,0,'-04'),(837,2,-10800,1,'-03'),(837,3,-7200,1,'-02'),(837,4,-10800,0,'-03'),(837,5,-10800,1,'-03'),(837,6,-14400,0,'-04'),(837,7,-10800,0,'-03'),(838,0,0,0,'-00'),(838,1,-10800,0,'-03'),(839,0,41944,0,'LMT'),(839,1,45000,1,'NZST'),(839,2,41400,0,'NZMT'),(839,3,43200,1,'NZST'),(839,4,46800,1,'NZDT'),(839,5,43200,0,'NZST'),(839,6,43200,0,'NZST'),(840,0,0,0,'-00'),(840,1,10800,0,'+03'),(841,0,0,0,'-00'),(841,1,7200,1,'+02'),(841,2,0,0,'+00'),(841,3,0,0,'+00'),(842,0,0,0,'-00'),(842,1,21600,0,'+06'),(843,0,2580,0,'LMT'),(843,1,7200,1,'CEST'),(843,2,3600,0,'CET'),(843,3,3600,0,'CET'),(843,4,7200,1,'CEST'),(843,5,7200,1,'CEST'),(843,6,3600,0,'CET'),(844,0,11212,0,'LMT'),(844,1,10800,0,'+03'),(845,0,18468,0,'LMT'),(845,1,18000,0,'+05'),(845,2,25200,1,'+07'),(845,3,21600,0,'+06'),(845,4,21600,0,'+06'),(845,5,25200,1,'+07'),(845,6,21600,1,'+06'),(845,7,18000,0,'+05'),(845,8,25200,1,'+07'),(845,9,21600,0,'+06'),(846,0,8624,0,'LMT'),(846,1,10800,1,'EEST'),(846,2,7200,0,'EET'),(846,3,7200,0,'EET'),(846,4,10800,1,'EEST'),(847,0,42596,0,'LMT'),(847,1,43200,0,'+12'),(847,2,50400,1,'+14'),(847,3,46800,0,'+13'),(847,4,46800,1,'+13'),(847,5,43200,0,'+12'),(847,6,46800,1,'+13'),(847,7,43200,1,'+12'),(847,8,39600,0,'+11'),(847,9,43200,0,'+12'),(848,0,12064,0,'LMT'),(848,1,14400,0,'+04'),(848,2,18000,0,'+05'),(848,3,21600,0,'+06'),(848,4,21600,1,'+06'),(848,5,18000,0,'+05'),(848,6,21600,1,'+06'),(848,7,18000,1,'+05'),(848,8,14400,0,'+04'),(848,9,18000,0,'+05'),(849,0,13720,0,'LMT'),(849,1,14400,0,'+04'),(849,2,18000,0,'+05'),(849,3,21600,1,'+06'),(849,4,21600,0,'+06'),(849,5,18000,0,'+05'),(849,6,21600,1,'+06'),(849,7,18000,1,'+05'),(849,8,14400,0,'+04'),(849,9,21600,1,'+06'),(849,10,18000,0,'+05'),(850,0,14012,0,'LMT'),(850,1,14400,0,'+04'),(850,2,21600,1,'+06'),(850,3,18000,0,'+05'),(850,4,18000,0,'+05'),(850,5,21600,1,'+06'),(850,6,18000,1,'+05'),(850,7,14400,0,'+04'),(850,8,18000,0,'+05'),(851,0,14012,0,'LMT'),(851,1,14400,0,'+04'),(851,2,21600,1,'+06'),(851,3,18000,0,'+05'),(851,4,18000,0,'+05'),(851,5,21600,1,'+06'),(851,6,18000,1,'+05'),(851,7,14400,0,'+04'),(851,8,18000,0,'+05'),(852,0,12464,0,'LMT'),(852,1,10800,0,'+03'),(852,2,18000,0,'+05'),(852,3,21600,0,'+06'),(852,4,21600,1,'+06'),(852,5,18000,0,'+05'),(852,6,21600,1,'+06'),(852,7,18000,1,'+05'),(852,8,14400,0,'+04'),(852,9,18000,0,'+05'),(853,0,10660,0,'LMT'),(853,1,10656,0,'BMT'),(853,2,10800,0,'+03'),(853,3,14400,1,'+04'),(853,4,10800,0,'+03'),(853,5,14400,1,'+04'),(854,0,12368,0,'LMT'),(854,1,14400,0,'+04'),(854,2,10800,0,'+03'),(855,0,11964,0,'LMT'),(855,1,10800,0,'+03'),(855,2,18000,1,'+05'),(855,3,14400,0,'+04'),(855,4,14400,0,'+04'),(855,5,18000,1,'+05'),(855,6,14400,1,'+04'),(855,7,10800,0,'+03'),(855,8,18000,1,'+05'),(855,9,14400,0,'+04'),(856,0,24124,0,'LMT'),(856,1,24124,0,'BMT'),(856,2,25200,0,'+07'),(857,0,20100,0,'LMT'),(857,1,21600,0,'+06'),(857,2,28800,1,'+08'),(857,3,25200,0,'+07'),(857,4,25200,0,'+07'),(857,5,28800,1,'+08'),(857,6,25200,1,'+07'),(857,7,21600,0,'+06'),(857,8,25200,1,'+07'),(857,9,25200,0,'+07'),(858,0,8520,0,'LMT'),(858,1,10800,1,'EEST'),(858,2,7200,0,'EET'),(859,0,17904,0,'LMT'),(859,1,18000,0,'+05'),(859,2,25200,1,'+07'),(859,3,21600,0,'+06'),(859,4,21600,0,'+06'),(859,5,25200,1,'+07'),(859,6,21600,1,'+06'),(859,7,18000,0,'+05'),(859,8,21600,1,'+06'),(859,9,21600,0,'+06'),(860,0,27580,0,'LMT'),(860,1,27000,0,'+0730'),(860,2,28800,0,'+08'),(861,0,21200,0,'HMT'),(861,1,19270,0,'MMT'),(861,2,19800,0,'IST'),(861,3,23400,1,'+0630'),(862,0,27232,0,'LMT'),(862,1,28800,0,'+08'),(862,2,36000,1,'+10'),(862,3,32400,0,'+09'),(862,4,32400,0,'+09'),(862,5,36000,1,'+10'),(862,6,32400,1,'+09'),(862,7,28800,0,'+08'),(862,8,36000,0,'+10'),(862,9,36000,1,'+10'),(862,10,32400,0,'+09'),(863,0,27480,0,'LMT'),(863,1,25200,0,'+07'),(863,2,28800,0,'+08'),(863,3,32400,0,'+09'),(863,4,36000,1,'+10'),(863,5,32400,1,'+09'),(863,6,28800,0,'+08'),(864,0,29143,0,'LMT'),(864,1,32400,1,'CDT'),(864,2,28800,0,'CST'),(865,0,29143,0,'LMT'),(865,1,32400,1,'CDT'),(865,2,28800,0,'CST'),(866,0,19164,0,'LMT'),(866,1,19172,0,'MMT'),(866,2,19800,0,'+0530'),(866,3,21600,1,'+06'),(866,4,23400,1,'+0630'),(866,5,23400,0,'+0630'),(866,6,21600,0,'+06'),(866,7,19800,0,'+0530'),(867,0,21700,0,'LMT'),(867,1,21200,0,'HMT'),(867,2,23400,0,'+0630'),(867,3,19800,0,'+0530'),(867,4,21600,0,'+06'),(867,5,25200,1,'+07'),(868,0,8712,0,'LMT'),(868,1,10800,1,'EEST'),(868,2,7200,0,'EET'),(869,0,21700,0,'LMT'),(869,1,21200,0,'HMT'),(869,2,23400,0,'+0630'),(869,3,19800,0,'+0530'),(869,4,21600,0,'+06'),(869,5,25200,1,'+07'),(870,0,30140,0,'LMT'),(870,1,28800,0,'+08'),(870,2,32400,0,'+09'),(871,0,13272,0,'LMT'),(871,1,14400,0,'+04'),(872,0,16512,0,'LMT'),(872,1,18000,0,'+05'),(872,2,25200,1,'+07'),(872,3,21600,0,'+06'),(872,4,21600,0,'+06'),(872,5,25200,1,'+07'),(872,6,21600,1,'+06'),(872,7,18000,0,'+05'),(873,0,8148,0,'LMT'),(873,1,10800,1,'EEST'),(873,2,7200,0,'EET'),(873,3,7200,0,'EET'),(873,4,10800,1,'EEST'),(873,5,10800,0,'+03'),(873,6,7200,0,'EET'),(874,0,8272,0,'LMT'),(874,1,10800,1,'EEST'),(874,2,7200,0,'EET'),(874,3,7200,0,'EET'),(874,4,10800,1,'EEST'),(874,5,10800,1,'IDT'),(874,6,7200,0,'IST'),(874,7,10800,1,'IDT'),(874,8,7200,0,'IST'),(874,9,7200,0,'EET'),(875,0,29143,0,'LMT'),(875,1,32400,1,'CDT'),(875,2,28800,0,'CST'),(876,0,8423,0,'LMT'),(876,1,10800,1,'EEST'),(876,2,7200,0,'EET'),(876,3,7200,0,'EET'),(876,4,10800,1,'EEST'),(876,5,10800,1,'IDT'),(876,6,7200,0,'IST'),(876,7,10800,1,'IDT'),(876,8,7200,0,'IST'),(876,9,7200,0,'EET'),(877,0,25600,0,'LMT'),(877,1,25590,0,'PLMT'),(877,2,25200,0,'+07'),(877,3,28800,0,'+08'),(877,4,32400,0,'+09'),(877,5,25200,0,'+07'),(878,0,27402,0,'LMT'),(878,1,28800,0,'HKT'),(878,2,32400,1,'HKST'),(878,3,30600,1,'HKWT'),(878,4,32400,0,'JST'),(878,5,28800,0,'HKT'),(878,6,32400,1,'HKST'),(879,0,21996,0,'LMT'),(879,1,21600,0,'+06'),(879,2,28800,1,'+08'),(879,3,25200,0,'+07'),(880,0,25025,0,'LMT'),(880,1,25025,0,'IMT'),(880,2,25200,0,'+07'),(880,3,32400,1,'+09'),(880,4,28800,0,'+08'),(880,5,28800,0,'+08'),(880,6,32400,1,'+09'),(880,7,28800,1,'+08'),(880,8,25200,0,'+07'),(880,9,32400,0,'+09'),(880,10,32400,1,'+09'),(880,11,28800,0,'+08'),(881,0,6952,0,'LMT'),(881,1,7016,0,'IMT'),(881,2,10800,1,'EEST'),(881,3,7200,0,'EET'),(881,4,10800,0,'+03'),(881,5,14400,1,'+04'),(881,6,10800,1,'EEST'),(881,7,7200,0,'EET'),(881,8,10800,1,'EEST'),(881,9,7200,0,'EET'),(881,10,10800,0,'+03'),(882,0,25632,0,'LMT'),(882,1,25632,0,'BMT'),(882,2,26400,0,'+0720'),(882,3,27000,0,'+0730'),(882,4,32400,0,'+09'),(882,5,28800,0,'+08'),(882,6,25200,0,'WIB'),(883,0,33768,0,'LMT'),(883,1,32400,0,'+09'),(883,2,34200,0,'+0930'),(883,3,32400,0,'WIT'),(884,0,8454,0,'LMT'),(884,1,8440,0,'JMT'),(884,2,10800,1,'IDT'),(884,3,7200,0,'IST'),(884,4,14400,1,'IDDT'),(884,5,10800,1,'IDT'),(884,6,7200,0,'IST'),(884,7,10800,1,'IDT'),(884,8,7200,0,'IST'),(885,0,16608,0,'LMT'),(885,1,14400,0,'+04'),(885,2,16200,0,'+0430'),(886,0,38076,0,'LMT'),(886,1,39600,0,'+11'),(886,2,46800,1,'+13'),(886,3,43200,0,'+12'),(886,4,43200,0,'+12'),(886,5,46800,1,'+13'),(886,6,43200,1,'+12'),(886,7,39600,0,'+11'),(886,8,43200,0,'+12'),(887,0,16092,0,'LMT'),(887,1,19800,0,'+0530'),(887,2,23400,1,'+0630'),(887,3,18000,0,'+05'),(887,4,21600,1,'PKST'),(887,5,18000,0,'PKT'),(888,0,21020,0,'LMT'),(888,1,21600,0,'+06'),(889,0,20476,0,'LMT'),(889,1,19800,0,'+0530'),(889,2,20700,0,'+0545'),(890,0,20476,0,'LMT'),(890,1,19800,0,'+0530'),(890,2,20700,0,'+0545'),(891,0,32533,0,'LMT'),(891,1,28800,0,'+08'),(891,2,36000,1,'+10'),(891,3,32400,0,'+09'),(891,4,32400,0,'+09'),(891,5,36000,1,'+10'),(891,6,32400,1,'+09'),(891,7,28800,0,'+08'),(891,8,39600,1,'+11'),(891,9,36000,0,'+10'),(891,10,36000,0,'+10'),(891,11,39600,0,'+11'),(891,12,32400,0,'+09'),(892,0,21200,0,'HMT'),(892,1,19270,0,'MMT'),(892,2,19800,0,'IST'),(892,3,23400,1,'+0630'),(893,0,22286,0,'LMT'),(893,1,21600,0,'+06'),(893,2,28800,1,'+08'),(893,3,25200,0,'+07'),(893,4,25200,0,'+07'),(893,5,28800,1,'+08'),(893,6,25200,1,'+07'),(893,7,21600,0,'+06'),(893,8,28800,0,'+08'),(893,9,28800,1,'+08'),(893,10,25200,0,'+07'),(894,0,24406,0,'LMT'),(894,1,24925,0,'SMT'),(894,2,25200,0,'+07'),(894,3,26400,1,'+0720'),(894,4,26400,0,'+0720'),(894,5,27000,0,'+0730'),(894,6,32400,0,'+09'),(894,7,28800,0,'+08'),(895,0,26480,0,'LMT'),(895,1,27000,0,'+0730'),(895,2,30000,1,'+0820'),(895,3,28800,0,'+08'),(895,4,32400,0,'+09'),(895,5,28800,0,'+08'),(896,0,11212,0,'LMT'),(896,1,10800,0,'+03'),(897,0,27250,0,'LMT'),(897,1,28800,0,'CST'),(897,2,36000,1,'+10'),(897,3,32400,0,'+09'),(897,4,32400,1,'CDT'),(897,5,28800,0,'CST'),(897,6,32400,1,'CDT'),(898,0,27250,0,'LMT'),(898,1,28800,0,'CST'),(898,2,36000,1,'+10'),(898,3,32400,0,'+09'),(898,4,32400,1,'CDT'),(898,5,28800,0,'CST'),(898,6,32400,1,'CDT'),(899,0,36192,0,'LMT'),(899,1,36000,0,'+10'),(899,2,43200,1,'+12'),(899,3,39600,0,'+11'),(899,4,39600,0,'+11'),(899,5,43200,1,'+12'),(899,6,39600,1,'+11'),(899,7,36000,0,'+10'),(899,8,43200,0,'+12'),(899,9,43200,1,'+12'),(899,10,39600,0,'+11'),(900,0,28656,0,'LMT'),(900,1,28656,0,'MMT'),(900,2,28800,0,'+08'),(900,3,32400,0,'+09'),(900,4,28800,0,'WITA'),(901,0,29040,0,'LMT'),(901,1,32400,1,'PDT'),(901,2,28800,0,'PST'),(901,3,32400,0,'JST'),(901,4,28800,0,'PST'),(902,0,13272,0,'LMT'),(902,1,14400,0,'+04'),(903,0,8008,0,'LMT'),(903,1,10800,1,'EEST'),(903,2,7200,0,'EET'),(903,3,7200,0,'EET'),(903,4,10800,1,'EEST'),(904,0,20928,0,'LMT'),(904,1,21600,0,'+06'),(904,2,28800,1,'+08'),(904,3,25200,0,'+07'),(904,4,25200,0,'+07'),(904,5,28800,1,'+08'),(904,6,25200,1,'+07'),(904,7,21600,0,'+06'),(904,8,25200,0,'+07'),(905,0,19900,0,'LMT'),(905,1,21600,0,'+06'),(905,2,28800,1,'+08'),(905,3,25200,0,'+07'),(905,4,25200,0,'+07'),(905,5,28800,1,'+08'),(905,6,25200,1,'+07'),(905,7,21600,0,'+06'),(905,8,25200,1,'+07'),(905,9,25200,0,'+07'),(906,0,17610,0,'LMT'),(906,1,18000,0,'+05'),(906,2,25200,1,'+07'),(906,3,21600,0,'+06'),(906,4,21600,0,'+06'),(906,5,25200,1,'+07'),(906,6,21600,1,'+06'),(906,7,18000,0,'+05'),(906,8,25200,0,'+07'),(906,9,25200,1,'+07'),(906,10,21600,0,'+06'),(907,0,12324,0,'LMT'),(907,1,10800,0,'+03'),(907,2,18000,0,'+05'),(907,3,21600,1,'+06'),(907,4,21600,0,'+06'),(907,5,18000,0,'+05'),(907,6,21600,1,'+06'),(907,7,18000,1,'+05'),(907,8,14400,0,'+04'),(907,9,18000,0,'+05'),(908,0,24124,0,'LMT'),(908,1,24124,0,'BMT'),(908,2,25200,0,'+07'),(909,0,26240,0,'LMT'),(909,1,26240,0,'PMT'),(909,2,27000,0,'+0730'),(909,3,32400,0,'+09'),(909,4,28800,0,'+08'),(909,5,28800,0,'WITA'),(909,6,25200,0,'WIB'),(910,0,30180,0,'LMT'),(910,1,30600,0,'KST'),(910,2,32400,0,'JST'),(910,3,32400,0,'KST'),(911,0,12368,0,'LMT'),(911,1,14400,0,'+04'),(911,2,10800,0,'+03'),(912,0,15268,0,'LMT'),(912,1,14400,0,'+04'),(912,2,18000,0,'+05'),(912,3,21600,1,'+06'),(912,4,21600,0,'+06'),(912,5,18000,0,'+05'),(912,6,21600,1,'+06'),(912,7,18000,1,'+05'),(912,8,14400,0,'+04'),(912,9,21600,0,'+06'),(912,10,21600,1,'+06'),(913,0,15712,0,'LMT'),(913,1,14400,0,'+04'),(913,2,18000,0,'+05'),(913,3,21600,1,'+06'),(913,4,21600,0,'+06'),(913,5,18000,0,'+05'),(913,6,21600,1,'+06'),(913,7,18000,1,'+05'),(913,8,14400,0,'+04'),(913,9,21600,0,'+06'),(913,10,21600,1,'+06'),(913,11,18000,0,'+05'),(914,0,23087,0,'LMT'),(914,1,23087,0,'RMT'),(914,2,23400,0,'+0630'),(914,3,32400,0,'+09'),(914,4,23400,0,'+0630'),(915,0,11212,0,'LMT'),(915,1,10800,0,'+03'),(916,0,25600,0,'LMT'),(916,1,25590,0,'PLMT'),(916,2,25200,0,'+07'),(916,3,28800,0,'+08'),(916,4,32400,0,'+09'),(916,5,25200,0,'+07'),(917,0,34248,0,'LMT'),(917,1,32400,0,'+09'),(917,2,43200,1,'+12'),(917,3,39600,0,'+11'),(917,4,39600,0,'+11'),(917,5,43200,1,'+12'),(917,6,39600,1,'+11'),(917,7,36000,0,'+10'),(917,8,39600,0,'+11'),(918,0,16073,0,'LMT'),(918,1,14400,0,'+04'),(918,2,18000,0,'+05'),(918,3,21600,1,'+06'),(918,4,21600,0,'+06'),(918,5,18000,0,'+05'),(918,6,21600,1,'+06'),(919,0,30472,0,'LMT'),(919,1,30600,0,'KST'),(919,2,32400,0,'JST'),(919,3,36000,1,'KDT'),(919,4,32400,0,'KST'),(919,5,34200,1,'KDT'),(919,6,36000,1,'KDT'),(920,0,29143,0,'LMT'),(920,1,32400,1,'CDT'),(920,2,28800,0,'CST'),(921,0,24925,0,'LMT'),(921,1,24925,0,'SMT'),(921,2,25200,0,'+07'),(921,3,26400,1,'+0720'),(921,4,26400,0,'+0720'),(921,5,27000,0,'+0730'),(921,6,32400,0,'+09'),(921,7,28800,0,'+08'),(922,0,36892,0,'LMT'),(922,1,36000,0,'+10'),(922,2,43200,1,'+12'),(922,3,39600,0,'+11'),(922,4,39600,0,'+11'),(922,5,43200,1,'+12'),(922,6,39600,1,'+11'),(922,7,36000,0,'+10'),(922,8,43200,0,'+12'),(922,9,43200,1,'+12'),(922,10,39600,0,'+11'),(923,0,29160,0,'LMT'),(923,1,28800,0,'CST'),(923,2,32400,0,'JST'),(923,3,32400,1,'CDT'),(923,4,28800,0,'CST'),(924,0,16631,0,'LMT'),(924,1,18000,0,'+05'),(924,2,25200,1,'+07'),(924,3,21600,0,'+06'),(924,4,21600,0,'+06'),(924,5,25200,1,'+07'),(924,6,21600,1,'+06'),(924,7,18000,0,'+05'),(925,0,10751,0,'LMT'),(925,1,10751,0,'TBMT'),(925,2,10800,0,'+03'),(925,3,18000,1,'+05'),(925,4,14400,0,'+04'),(925,5,14400,0,'+04'),(925,6,18000,1,'+05'),(925,7,14400,1,'+04'),(925,8,10800,0,'+03'),(925,9,14400,1,'+04'),(925,10,14400,0,'+04'),(926,0,12344,0,'LMT'),(926,1,12344,0,'TMT'),(926,2,12600,0,'+0330'),(926,3,18000,1,'+05'),(926,4,14400,0,'+04'),(926,5,16200,1,'+0430'),(926,6,12600,0,'+0330'),(927,0,8454,0,'LMT'),(927,1,8440,0,'JMT'),(927,2,10800,1,'IDT'),(927,3,7200,0,'IST'),(927,4,14400,1,'IDDT'),(927,5,10800,1,'IDT'),(927,6,7200,0,'IST'),(927,7,10800,1,'IDT'),(927,8,7200,0,'IST'),(928,0,21516,0,'LMT'),(928,1,19800,0,'+0530'),(928,2,21600,0,'+06'),(929,0,21516,0,'LMT'),(929,1,19800,0,'+0530'),(929,2,21600,0,'+06'),(930,0,33539,0,'LMT'),(930,1,36000,1,'JDT'),(930,2,32400,0,'JST'),(930,3,32400,0,'JST'),(931,0,20391,0,'LMT'),(931,1,21600,0,'+06'),(931,2,28800,1,'+08'),(931,3,25200,0,'+07'),(931,4,25200,0,'+07'),(931,5,28800,1,'+08'),(931,6,25200,1,'+07'),(931,7,21600,0,'+06'),(931,8,25200,1,'+07'),(931,9,25200,0,'+07'),(932,0,28656,0,'LMT'),(932,1,28656,0,'MMT'),(932,2,28800,0,'+08'),(932,3,32400,0,'+09'),(932,4,28800,0,'WITA'),(933,0,25652,0,'LMT'),(933,1,25200,0,'+07'),(933,2,32400,1,'+09'),(933,3,28800,0,'+08'),(934,0,25652,0,'LMT'),(934,1,25200,0,'+07'),(934,2,32400,1,'+09'),(934,3,28800,0,'+08'),(935,0,21020,0,'LMT'),(935,1,21600,0,'+06'),(936,0,34374,0,'LMT'),(936,1,28800,0,'+08'),(936,2,32400,0,'+09'),(936,3,39600,0,'+11'),(936,4,43200,1,'+12'),(936,5,39600,0,'+11'),(936,6,43200,1,'+12'),(936,7,39600,1,'+11'),(936,8,36000,0,'+10'),(936,9,43200,0,'+12'),(936,10,43200,1,'+12'),(936,11,36000,0,'+10'),(937,0,24124,0,'LMT'),(937,1,24124,0,'BMT'),(937,2,25200,0,'+07'),(938,0,31651,0,'LMT'),(938,1,32400,0,'+09'),(938,2,39600,1,'+11'),(938,3,36000,0,'+10'),(938,4,36000,0,'+10'),(938,5,39600,1,'+11'),(938,6,36000,1,'+10'),(938,7,32400,0,'+09'),(938,8,39600,0,'+11'),(938,9,39600,1,'+11'),(938,10,36000,0,'+10'),(939,0,31138,0,'LMT'),(939,1,28800,0,'+08'),(939,2,36000,1,'+10'),(939,3,32400,0,'+09'),(939,4,32400,0,'+09'),(939,5,36000,1,'+10'),(939,6,32400,1,'+09'),(939,7,28800,0,'+08'),(939,8,36000,0,'+10'),(939,9,36000,1,'+10'),(939,10,32400,0,'+09'),(940,0,23087,0,'LMT'),(940,1,23087,0,'RMT'),(940,2,23400,0,'+0630'),(940,3,32400,0,'+09'),(940,4,23400,0,'+0630'),(941,0,14553,0,'LMT'),(941,1,13505,0,'PMT'),(941,2,14400,0,'+04'),(941,3,21600,1,'+06'),(941,4,18000,0,'+05'),(941,5,18000,0,'+05'),(941,6,21600,1,'+06'),(941,7,18000,1,'+05'),(941,8,14400,0,'+04'),(941,9,21600,0,'+06'),(941,10,21600,1,'+06'),(941,11,18000,0,'+05'),(942,0,10680,0,'LMT'),(942,1,10800,0,'+03'),(942,2,18000,1,'+05'),(942,3,14400,0,'+04'),(942,4,14400,0,'+04'),(942,5,18000,1,'+05'),(942,6,14400,1,'+04'),(942,7,10800,0,'+03'),(942,8,18000,1,'+05'),(942,9,14400,0,'+04'),(943,0,-6160,0,'LMT'),(943,1,-6872,0,'HMT'),(943,2,-3600,1,'-01'),(943,3,-7200,0,'-02'),(943,4,-3600,1,'-01'),(943,5,-7200,0,'-02'),(943,6,-7200,0,'-02'),(943,7,0,1,'+00'),(943,8,-3600,0,'-01'),(943,9,-3600,0,'-01'),(943,10,0,0,'WET'),(943,11,0,1,'+00'),(943,12,-3600,0,'-01'),(944,0,-15558,0,'LMT'),(944,1,-11958,1,'BST'),(944,2,-15558,0,'BMT'),(944,3,-10800,1,'ADT'),(944,4,-14400,0,'AST'),(945,0,-3696,0,'LMT'),(945,1,-3600,0,'-01'),(945,2,0,0,'WET'),(945,3,3600,1,'WEST'),(945,4,0,0,'WET'),(945,5,3600,1,'WEST'),(946,0,-5644,0,'LMT'),(946,1,-7200,0,'-02'),(946,2,-3600,1,'-01'),(946,3,-7200,0,'-02'),(946,4,-3600,0,'-01'),(947,0,-1624,0,'LMT'),(947,1,0,0,'WET'),(947,2,3600,1,'WEST'),(947,3,0,0,'WET'),(948,0,-1624,0,'LMT'),(948,1,0,0,'WET'),(948,2,3600,1,'WEST'),(948,3,0,0,'WET'),(949,0,2580,0,'LMT'),(949,1,7200,1,'CEST'),(949,2,3600,0,'CET'),(949,3,3600,0,'CET'),(949,4,7200,1,'CEST'),(949,5,7200,1,'CEST'),(949,6,3600,0,'CET'),(950,0,-4056,0,'LMT'),(950,1,-4056,0,'FMT'),(950,2,0,1,'+00'),(950,3,-3600,0,'-01'),(950,4,0,1,'+00'),(950,5,-3600,0,'-01'),(950,6,-3600,0,'-01'),(950,7,3600,1,'+01'),(950,8,3600,1,'WEST'),(950,9,0,0,'WET'),(950,10,0,0,'WET'),(950,11,0,0,'WET'),(950,12,3600,1,'WEST'),(951,0,-5280,0,'LMT'),(951,1,0,1,'+00'),(951,2,-3600,0,'-01'),(951,3,-3600,0,'-01'),(951,4,0,1,'+00'),(951,5,0,0,'GMT'),(952,0,-8768,0,'LMT'),(952,1,-7200,0,'-02'),(953,0,-968,0,'LMT'),(953,1,0,0,'GMT'),(954,0,-13884,0,'LMT'),(954,1,-13884,0,'SMT'),(954,2,-10800,1,'-03'),(954,3,-14400,0,'-04'),(954,4,-7200,1,'-02'),(954,5,-10800,0,'-03'),(954,6,-10800,1,'-03'),(955,0,36292,0,'LMT'),(955,1,39600,1,'AEDT'),(955,2,36000,0,'AEST'),(955,3,36000,0,'AEST'),(956,0,32400,0,'ACST'),(956,1,37800,1,'ACDT'),(956,2,34200,0,'ACST'),(956,3,34200,0,'ACST'),(957,0,36728,0,'LMT'),(957,1,39600,1,'AEDT'),(957,2,36000,0,'AEST'),(957,3,36000,0,'AEST'),(958,0,32400,0,'ACST'),(958,1,37800,1,'ACDT'),(958,2,34200,0,'ACST'),(958,3,34200,0,'ACST'),(958,4,37800,1,'ACDT'),(959,0,36292,0,'LMT'),(959,1,39600,1,'AEDT'),(959,2,36000,0,'AEST'),(959,3,36000,0,'AEST'),(960,0,35356,0,'LMT'),(960,1,39600,1,'AEDT'),(960,2,36000,0,'AEST'),(960,3,36000,0,'AEST'),(961,0,32400,0,'ACST'),(961,1,37800,1,'ACDT'),(961,2,34200,0,'ACST'),(961,3,34200,0,'ACST'),(962,0,30928,0,'LMT'),(962,1,35100,1,'+0945'),(962,2,31500,0,'+0845'),(962,3,31500,0,'+0845'),(963,0,35356,0,'LMT'),(963,1,39600,1,'AEDT'),(963,2,36000,0,'AEST'),(963,3,36000,0,'AEST'),(964,0,38180,0,'LMT'),(964,1,36000,0,'AEST'),(964,2,41400,1,'+1130'),(964,3,37800,0,'+1030'),(964,4,39600,1,'+11'),(965,0,35756,0,'LMT'),(965,1,39600,1,'AEDT'),(965,2,36000,0,'AEST'),(965,3,36000,0,'AEST'),(966,0,38180,0,'LMT'),(966,1,36000,0,'AEST'),(966,2,41400,1,'+1130'),(966,3,37800,0,'+1030'),(966,4,39600,1,'+11'),(967,0,34792,0,'LMT'),(967,1,39600,1,'AEDT'),(967,2,36000,0,'AEST'),(967,3,36000,0,'AEST'),(968,0,36292,0,'LMT'),(968,1,39600,1,'AEDT'),(968,2,36000,0,'AEST'),(968,3,36000,0,'AEST'),(969,0,32400,0,'ACST'),(969,1,37800,1,'ACDT'),(969,2,34200,0,'ACST'),(969,3,34200,0,'ACST'),(970,0,27804,0,'LMT'),(970,1,32400,1,'AWDT'),(970,2,28800,0,'AWST'),(970,3,28800,0,'AWST'),(971,0,36728,0,'LMT'),(971,1,39600,1,'AEDT'),(971,2,36000,0,'AEST'),(971,3,36000,0,'AEST'),(972,0,32400,0,'ACST'),(972,1,37800,1,'ACDT'),(972,2,34200,0,'ACST'),(972,3,34200,0,'ACST'),(973,0,36292,0,'LMT'),(973,1,39600,1,'AEDT'),(973,2,36000,0,'AEST'),(973,3,36000,0,'AEST'),(974,0,35356,0,'LMT'),(974,1,39600,1,'AEDT'),(974,2,36000,0,'AEST'),(974,3,36000,0,'AEST'),(975,0,34792,0,'LMT'),(975,1,39600,1,'AEDT'),(975,2,36000,0,'AEST'),(975,3,36000,0,'AEST'),(976,0,27804,0,'LMT'),(976,1,32400,1,'AWDT'),(976,2,28800,0,'AWST'),(976,3,28800,0,'AWST'),(977,0,32400,0,'ACST'),(977,1,37800,1,'ACDT'),(977,2,34200,0,'ACST'),(977,3,34200,0,'ACST'),(977,4,37800,1,'ACDT'),(978,0,-16272,0,'LMT'),(978,1,-14400,1,'-04'),(978,2,-18000,0,'-05'),(978,3,-14400,0,'-04'),(978,4,-18000,0,'-05'),(979,0,-7780,0,'LMT'),(979,1,-3600,1,'-01'),(979,2,-7200,0,'-02'),(980,0,-11188,0,'LMT'),(980,1,-7200,1,'-02'),(980,2,-10800,0,'-03'),(981,0,-14404,0,'LMT'),(981,1,-10800,1,'-03'),(981,2,-14400,0,'-04'),(982,0,7200,1,'CEST'),(982,1,3600,0,'CET'),(982,2,7200,1,'CEST'),(982,3,3600,0,'CET'),(983,0,-18000,1,'CDT'),(983,1,-21600,0,'CST'),(983,2,-18000,1,'CWT'),(983,3,-18000,1,'CPT'),(984,0,-15264,0,'LMT'),(984,1,-10800,1,'ADT'),(984,2,-14400,0,'AST'),(984,3,-10800,1,'AWT'),(984,4,-10800,1,'APT'),(985,0,-23316,0,'LMT'),(985,1,-18000,1,'CDT'),(985,2,-21600,0,'CST'),(985,3,-18000,1,'CWT'),(985,4,-18000,1,'CPT'),(985,5,-18000,1,'CDT'),(985,6,-21600,0,'CST'),(986,0,-19052,0,'LMT'),(986,1,-14400,1,'EDT'),(986,2,-18000,0,'EST'),(986,3,-14400,1,'EWT'),(986,4,-14400,1,'EPT'),(987,0,-27232,0,'LMT'),(987,1,-21600,1,'MDT'),(987,2,-25200,0,'MST'),(987,3,-21600,1,'MWT'),(987,4,-21600,1,'MPT'),(988,0,-12652,0,'LMT'),(988,1,-9052,1,'NDT'),(988,2,-12652,0,'NST'),(988,3,-9000,1,'NDT'),(988,4,-12600,0,'NST'),(988,5,-9000,1,'NPT'),(988,6,-9000,1,'NWT'),(988,7,-5400,1,'NDDT'),(988,8,-9000,1,'NDT'),(989,0,-29548,0,'LMT'),(989,1,-25200,1,'PDT'),(989,2,-28800,0,'PST'),(989,3,-25200,1,'PWT'),(989,4,-25200,1,'PPT'),(990,0,-25116,0,'LMT'),(990,1,-21600,1,'MDT'),(990,2,-25200,0,'MST'),(990,3,-21600,1,'MWT'),(990,4,-21600,1,'MPT'),(990,5,-21600,0,'CST'),(991,0,-32412,0,'LMT'),(991,1,-28800,1,'YDT'),(991,2,-32400,0,'YST'),(991,3,-28800,1,'YWT'),(991,4,-28800,1,'YPT'),(991,5,-25200,1,'YDDT'),(991,6,-28800,0,'PST'),(991,7,-25200,1,'PDT'),(991,8,-25200,0,'MST'),(992,0,-16966,0,'LMT'),(992,1,-16966,0,'SMT'),(992,2,-18000,0,'-05'),(992,3,-14400,0,'-04'),(992,4,-14400,1,'-04'),(992,5,-10800,1,'-03'),(992,6,-10800,1,'-03'),(992,7,-14400,0,'-04'),(993,0,-26248,0,'LMT'),(993,1,-26248,0,'EMT'),(993,2,-21600,1,'-06'),(993,3,-25200,0,'-07'),(993,4,-25200,0,'-07'),(993,5,-21600,0,'-06'),(993,6,-18000,1,'-05'),(994,0,-19768,0,'LMT'),(994,1,-19776,0,'HMT'),(994,2,-14400,1,'CDT'),(994,3,-18000,0,'CST'),(994,4,-18000,0,'CST'),(994,5,-14400,1,'CDT'),(995,0,10800,1,'EEST'),(995,1,7200,0,'EET'),(996,0,-18000,0,'EST'),(997,0,-14400,1,'EDT'),(997,1,-18000,0,'EST'),(997,2,-14400,1,'EWT'),(997,3,-14400,1,'EPT'),(998,0,7509,0,'LMT'),(998,1,10800,1,'EEST'),(998,2,7200,0,'EET'),(998,3,10800,1,'EEST'),(999,0,-1500,0,'LMT'),(999,1,-1521,0,'DMT'),(999,2,2079,1,'IST'),(999,3,3600,1,'BST'),(999,4,0,0,'GMT'),(999,5,3600,1,'IST'),(999,6,0,0,'GMT'),(999,7,0,1,'GMT'),(999,8,3600,0,'IST'),(999,9,3600,0,'IST'),(1000,0,0,0,'GMT'),(1001,0,0,0,'GMT'),(1002,0,-3600,0,'-01'),(1003,0,-36000,0,'-10'),(1004,0,-39600,0,'-11'),(1005,0,-43200,0,'-12'),(1006,0,-7200,0,'-02'),(1007,0,-10800,0,'-03'),(1008,0,-14400,0,'-04'),(1009,0,-18000,0,'-05'),(1010,0,-21600,0,'-06'),(1011,0,-25200,0,'-07'),(1012,0,-28800,0,'-08'),(1013,0,-32400,0,'-09'),(1014,0,0,0,'GMT'),(1015,0,3600,0,'+01'),(1016,0,36000,0,'+10'),(1017,0,39600,0,'+11'),(1018,0,43200,0,'+12'),(1019,0,46800,0,'+13'),(1020,0,50400,0,'+14'),(1021,0,7200,0,'+02'),(1022,0,10800,0,'+03'),(1023,0,14400,0,'+04'),(1024,0,18000,0,'+05'),(1025,0,21600,0,'+06'),(1026,0,25200,0,'+07'),(1027,0,28800,0,'+08'),(1028,0,32400,0,'+09'),(1029,0,0,0,'GMT'),(1030,0,0,0,'GMT'),(1031,0,0,0,'UTC'),(1032,0,0,0,'UTC'),(1033,0,0,0,'UTC'),(1034,0,0,0,'UTC'),(1035,0,1172,0,'LMT'),(1035,1,4772,1,'NST'),(1035,2,1172,0,'AMT'),(1035,3,4772,1,'NST'),(1035,4,1172,0,'AMT'),(1035,5,1200,0,'+0020'),(1035,6,4800,1,'+0120'),(1035,7,4800,1,'+0120'),(1035,8,3600,0,'CET'),(1035,9,7200,1,'CEST'),(1035,10,7200,1,'CEST'),(1035,11,7200,1,'CEST'),(1035,12,3600,0,'CET'),(1035,13,3600,0,'CET'),(1036,0,364,0,'LMT'),(1036,1,0,0,'WET'),(1036,2,3600,0,'CET'),(1036,3,7200,1,'CEST'),(1036,4,3600,0,'CET'),(1037,0,11532,0,'LMT'),(1037,1,10800,0,'+03'),(1037,2,18000,1,'+05'),(1037,3,14400,0,'+04'),(1037,4,14400,0,'+04'),(1037,5,18000,1,'+05'),(1037,6,14400,1,'+04'),(1037,7,10800,0,'+03'),(1037,8,14400,0,'+04'),(1038,0,5692,0,'LMT'),(1038,1,5692,0,'AMT'),(1038,2,10800,1,'EEST'),(1038,3,7200,0,'EET'),(1038,4,3600,0,'CET'),(1038,5,7200,1,'CEST'),(1038,6,10800,1,'EEST'),(1038,7,7200,0,'EET'),(1038,8,10800,1,'EEST'),(1038,9,7200,0,'EET'),(1039,0,-75,0,'LMT'),(1039,1,3600,1,'BST'),(1039,2,0,0,'GMT'),(1039,3,7200,1,'BDST'),(1039,4,3600,0,'BST'),(1039,5,3600,1,'BST'),(1039,6,0,0,'GMT'),(1039,7,0,0,'GMT'),(1040,0,4920,0,'LMT'),(1040,1,3600,0,'CET'),(1040,2,3600,0,'CET'),(1040,3,7200,1,'CEST'),(1040,4,7200,1,'CEST'),(1040,5,7200,1,'CEST'),(1040,6,3600,0,'CET'),(1041,0,3208,0,'LMT'),(1041,1,7200,1,'CEST'),(1041,2,3600,0,'CET'),(1041,3,7200,1,'CEST'),(1041,4,3600,0,'CET'),(1041,5,10800,1,'CEMT'),(1041,6,10800,1,'CEMT'),(1041,7,7200,1,'CEST'),(1041,8,3600,0,'CET'),(1042,0,3464,0,'PMT'),(1042,1,7200,1,'CEST'),(1042,2,3600,0,'CET'),(1042,3,7200,1,'CEST'),(1042,4,3600,0,'CET'),(1042,5,0,1,'GMT'),(1042,6,7200,1,'CEST'),(1042,7,3600,0,'CET'),(1043,0,1050,0,'BMT'),(1043,1,0,0,'WET'),(1043,2,3600,0,'CET'),(1043,3,7200,1,'CEST'),(1043,4,3600,0,'CET'),(1043,5,7200,1,'CEST'),(1043,6,3600,1,'WEST'),(1043,7,0,0,'WET'),(1043,8,0,0,'WET'),(1043,9,7200,1,'CEST'),(1043,10,3600,0,'CET'),(1044,0,6264,0,'LMT'),(1044,1,6264,0,'BMT'),(1044,2,10800,1,'EEST'),(1044,3,7200,0,'EET'),(1044,4,10800,1,'EEST'),(1044,5,7200,0,'EET'),(1044,6,10800,1,'EEST'),(1044,7,7200,0,'EET'),(1045,0,4580,0,'LMT'),(1045,1,7200,1,'CEST'),(1045,2,3600,0,'CET'),(1045,3,7200,1,'CEST'),(1045,4,3600,0,'CET'),(1045,5,7200,1,'CEST'),(1045,6,3600,0,'CET'),(1046,0,1786,0,'BMT'),(1046,1,7200,1,'CEST'),(1046,2,3600,0,'CET'),(1046,3,7200,1,'CEST'),(1046,4,3600,0,'CET'),(1047,0,6920,0,'LMT'),(1047,1,6900,0,'CMT'),(1047,2,6264,0,'BMT'),(1047,3,10800,1,'EEST'),(1047,4,7200,0,'EET'),(1047,5,7200,0,'EET'),(1047,6,10800,1,'EEST'),(1047,7,3600,0,'CET'),(1047,8,7200,1,'CEST'),(1047,9,7200,1,'CEST'),(1047,10,14400,1,'MSD'),(1047,11,10800,0,'MSK'),(1047,12,10800,0,'MSK'),(1047,13,14400,1,'MSD'),(1047,14,10800,1,'EEST'),(1047,15,7200,0,'EET'),(1048,0,3020,0,'CMT'),(1048,1,7200,1,'CEST'),(1048,2,3600,0,'CET'),(1048,3,3600,0,'CET'),(1048,4,7200,1,'CEST'),(1048,5,7200,1,'CEST'),(1048,6,3600,0,'CET'),(1049,0,-1500,0,'LMT'),(1049,1,-1521,0,'DMT'),(1049,2,2079,1,'IST'),(1049,3,3600,1,'BST'),(1049,4,0,0,'GMT'),(1049,5,3600,1,'IST'),(1049,6,0,0,'GMT'),(1049,7,0,1,'GMT'),(1049,8,3600,0,'IST'),(1049,9,3600,0,'IST'),(1050,0,-1284,0,'LMT'),(1050,1,3600,1,'BST'),(1050,2,0,0,'GMT'),(1050,3,7200,1,'BDST'),(1050,4,3600,0,'CET'),(1050,5,7200,1,'CEST'),(1050,6,3600,0,'CET'),(1051,0,-75,0,'LMT'),(1051,1,3600,1,'BST'),(1051,2,0,0,'GMT'),(1051,3,7200,1,'BDST'),(1051,4,3600,0,'BST'),(1051,5,3600,1,'BST'),(1051,6,0,0,'GMT'),(1051,7,0,0,'GMT'),(1052,0,5989,0,'LMT'),(1052,1,5989,0,'HMT'),(1052,2,10800,1,'EEST'),(1052,3,7200,0,'EET'),(1052,4,10800,1,'EEST'),(1052,5,7200,0,'EET'),(1053,0,-75,0,'LMT'),(1053,1,3600,1,'BST'),(1053,2,0,0,'GMT'),(1053,3,7200,1,'BDST'),(1053,4,3600,0,'BST'),(1053,5,3600,1,'BST'),(1053,6,0,0,'GMT'),(1053,7,0,0,'GMT'),(1054,0,6952,0,'LMT'),(1054,1,7016,0,'IMT'),(1054,2,10800,1,'EEST'),(1054,3,7200,0,'EET'),(1054,4,10800,0,'+03'),(1054,5,14400,1,'+04'),(1054,6,10800,1,'EEST'),(1054,7,7200,0,'EET'),(1054,8,10800,1,'EEST'),(1054,9,7200,0,'EET'),(1054,10,10800,0,'+03'),(1055,0,-75,0,'LMT'),(1055,1,3600,1,'BST'),(1055,2,0,0,'GMT'),(1055,3,7200,1,'BDST'),(1055,4,3600,0,'BST'),(1055,5,3600,1,'BST'),(1055,6,0,0,'GMT'),(1055,7,0,0,'GMT'),(1056,0,4920,0,'LMT'),(1056,1,7200,1,'CEST'),(1056,2,3600,0,'CET'),(1056,3,7200,1,'CEST'),(1056,4,3600,0,'CET'),(1056,5,10800,1,'EEST'),(1056,6,7200,0,'EET'),(1056,7,14400,1,'MSD'),(1056,8,10800,0,'MSK'),(1056,9,10800,0,'MSK'),(1056,10,14400,1,'MSD'),(1056,11,10800,1,'EEST'),(1056,12,7200,0,'EET'),(1056,13,10800,0,'+03'),(1056,14,7200,0,'EET'),(1057,0,7324,0,'LMT'),(1057,1,7324,0,'KMT'),(1057,2,7200,0,'EET'),(1057,3,10800,0,'MSK'),(1057,4,3600,0,'CET'),(1057,5,7200,1,'CEST'),(1057,6,7200,1,'CEST'),(1057,7,14400,1,'MSD'),(1057,8,10800,0,'MSK'),(1057,9,14400,1,'MSD'),(1057,10,10800,1,'EEST'),(1057,11,10800,1,'EEST'),(1057,12,7200,0,'EET'),(1058,0,11928,0,'LMT'),(1058,1,10800,0,'+03'),(1058,2,18000,1,'+05'),(1058,3,14400,0,'+04'),(1058,4,14400,0,'+04'),(1058,5,18000,1,'+05'),(1058,6,14400,1,'+04'),(1058,7,10800,0,'+03'),(1059,0,-2205,0,'LMT'),(1059,1,3600,1,'WEST'),(1059,2,0,0,'WET'),(1059,3,3600,1,'WEST'),(1059,4,0,0,'WET'),(1059,5,7200,1,'WEMT'),(1059,6,0,0,'WET'),(1059,7,3600,0,'CET'),(1059,8,3600,0,'CET'),(1059,9,7200,1,'CEST'),(1059,10,3600,1,'WEST'),(1059,11,0,0,'WET'),(1060,0,4920,0,'LMT'),(1060,1,3600,0,'CET'),(1060,2,3600,0,'CET'),(1060,3,7200,1,'CEST'),(1060,4,7200,1,'CEST'),(1060,5,7200,1,'CEST'),(1060,6,3600,0,'CET'),(1061,0,-75,0,'LMT'),(1061,1,3600,1,'BST'),(1061,2,0,0,'GMT'),(1061,3,7200,1,'BDST'),(1061,4,3600,0,'BST'),(1061,5,3600,1,'BST'),(1061,6,0,0,'GMT'),(1061,7,0,0,'GMT'),(1062,0,1476,0,'LMT'),(1062,1,7200,1,'CEST'),(1062,2,3600,0,'CET'),(1062,3,7200,1,'CEST'),(1062,4,3600,0,'CET'),(1062,5,3600,1,'WEST'),(1062,6,0,0,'WET'),(1062,7,0,0,'WET'),(1062,8,3600,1,'WEST'),(1062,9,3600,0,'WET'),(1062,10,7200,1,'WEST'),(1062,11,7200,1,'WEST'),(1062,12,7200,1,'CEST'),(1062,13,3600,0,'CET'),(1063,0,-884,0,'LMT'),(1063,1,3600,1,'WEST'),(1063,2,0,0,'WET'),(1063,3,7200,1,'WEMT'),(1063,4,0,0,'WET'),(1063,5,7200,1,'CEST'),(1063,6,3600,0,'CET'),(1063,7,7200,1,'CEST'),(1063,8,3600,0,'CET'),(1063,9,7200,1,'CEST'),(1063,10,3600,0,'CET'),(1064,0,3484,0,'LMT'),(1064,1,7200,1,'CEST'),(1064,2,3600,0,'CET'),(1064,3,3600,0,'CET'),(1064,4,7200,1,'CEST'),(1064,5,7200,1,'CEST'),(1064,6,3600,0,'CET'),(1065,0,5989,0,'LMT'),(1065,1,5989,0,'HMT'),(1065,2,10800,1,'EEST'),(1065,3,7200,0,'EET'),(1065,4,10800,1,'EEST'),(1065,5,7200,0,'EET'),(1066,0,6616,0,'LMT'),(1066,1,6600,0,'MMT'),(1066,2,7200,0,'EET'),(1066,3,10800,0,'MSK'),(1066,4,3600,0,'CET'),(1066,5,7200,1,'CEST'),(1066,6,7200,1,'CEST'),(1066,7,14400,1,'MSD'),(1066,8,10800,0,'MSK'),(1066,9,14400,1,'MSD'),(1066,10,10800,1,'EEST'),(1066,11,7200,0,'EET'),(1066,12,10800,0,'+03'),(1067,0,1772,0,'LMT'),(1067,1,561,0,'PMT'),(1067,2,3600,1,'WEST'),(1067,3,0,0,'WET'),(1067,4,3600,1,'WEST'),(1067,5,7200,1,'WEMT'),(1067,6,0,0,'WET'),(1067,7,7200,1,'CEST'),(1067,8,3600,0,'CET'),(1067,9,7200,1,'CEST'),(1067,10,3600,0,'CET'),(1068,0,9017,0,'LMT'),(1068,1,9017,0,'MMT'),(1068,2,12679,1,'MST'),(1068,3,9079,0,'MMT'),(1068,4,16279,1,'MDST'),(1068,5,14400,1,'MSD'),(1068,6,10800,0,'MSK'),(1068,7,14400,1,'MSD'),(1068,8,18000,1,'+05'),(1068,9,7200,0,'EET'),(1068,10,10800,0,'MSK'),(1068,11,14400,1,'MSD'),(1068,12,10800,1,'EEST'),(1068,13,7200,0,'EET'),(1068,14,14400,0,'MSK'),(1068,15,14400,1,'MSD'),(1068,16,10800,0,'MSK'),(1069,0,8008,0,'LMT'),(1069,1,10800,1,'EEST'),(1069,2,7200,0,'EET'),(1069,3,7200,0,'EET'),(1069,4,10800,1,'EEST'),(1070,0,2580,0,'LMT'),(1070,1,7200,1,'CEST'),(1070,2,3600,0,'CET'),(1070,3,3600,0,'CET'),(1070,4,7200,1,'CEST'),(1070,5,7200,1,'CEST'),(1070,6,3600,0,'CET'),(1071,0,561,0,'LMT'),(1071,1,561,0,'PMT'),(1071,2,3600,1,'WEST'),(1071,3,0,0,'WET'),(1071,4,3600,1,'WEST'),(1071,5,0,0,'WET'),(1071,6,3600,0,'CET'),(1071,7,7200,1,'CEST'),(1071,8,7200,1,'CEST'),(1071,9,7200,1,'WEMT'),(1071,10,3600,0,'CET'),(1071,11,7200,1,'CEST'),(1071,12,3600,0,'CET'),(1072,0,4920,0,'LMT'),(1072,1,3600,0,'CET'),(1072,2,3600,0,'CET'),(1072,3,7200,1,'CEST'),(1072,4,7200,1,'CEST'),(1072,5,7200,1,'CEST'),(1072,6,3600,0,'CET'),(1073,0,3464,0,'PMT'),(1073,1,7200,1,'CEST'),(1073,2,3600,0,'CET'),(1073,3,7200,1,'CEST'),(1073,4,3600,0,'CET'),(1073,5,0,1,'GMT'),(1073,6,7200,1,'CEST'),(1073,7,3600,0,'CET'),(1074,0,5794,0,'LMT'),(1074,1,5794,0,'RMT'),(1074,2,9394,1,'LST'),(1074,3,7200,0,'EET'),(1074,4,10800,0,'MSK'),(1074,5,3600,0,'CET'),(1074,6,7200,1,'CEST'),(1074,7,7200,1,'CEST'),(1074,8,14400,1,'MSD'),(1074,9,10800,0,'MSK'),(1074,10,14400,1,'MSD'),(1074,11,10800,1,'EEST'),(1074,12,7200,0,'EET'),(1074,13,10800,1,'EEST'),(1074,14,7200,0,'EET'),(1075,0,2996,0,'RMT'),(1075,1,7200,1,'CEST'),(1075,2,3600,0,'CET'),(1075,3,3600,0,'CET'),(1075,4,7200,1,'CEST'),(1075,5,7200,1,'CEST'),(1075,6,3600,0,'CET'),(1076,0,12020,0,'LMT'),(1076,1,10800,0,'+03'),(1076,2,14400,0,'+04'),(1076,3,18000,1,'+05'),(1076,4,14400,0,'+04'),(1076,5,18000,1,'+05'),(1076,6,14400,1,'+04'),(1076,7,10800,0,'+03'),(1076,8,10800,1,'+03'),(1076,9,7200,0,'+02'),(1076,10,14400,1,'+04'),(1076,11,14400,0,'+04'),(1077,0,2996,0,'RMT'),(1077,1,7200,1,'CEST'),(1077,2,3600,0,'CET'),(1077,3,3600,0,'CET'),(1077,4,7200,1,'CEST'),(1077,5,7200,1,'CEST'),(1077,6,3600,0,'CET'),(1078,0,4920,0,'LMT'),(1078,1,3600,0,'CET'),(1078,2,3600,0,'CET'),(1078,3,7200,1,'CEST'),(1078,4,7200,1,'CEST'),(1078,5,7200,1,'CEST'),(1078,6,3600,0,'CET'),(1079,0,11058,0,'LMT'),(1079,1,10800,0,'+03'),(1079,2,18000,1,'+05'),(1079,3,14400,0,'+04'),(1079,4,14400,0,'+04'),(1079,5,18000,1,'+05'),(1079,6,14400,1,'+04'),(1079,7,10800,0,'+03'),(1079,8,14400,0,'+04'),(1080,0,8184,0,'LMT'),(1080,1,8160,0,'SMT'),(1080,2,7200,0,'EET'),(1080,3,10800,0,'MSK'),(1080,4,3600,0,'CET'),(1080,5,7200,1,'CEST'),(1080,6,7200,1,'CEST'),(1080,7,14400,1,'MSD'),(1080,8,10800,0,'MSK'),(1080,9,14400,1,'MSD'),(1080,10,10800,1,'EEST'),(1080,11,10800,1,'EEST'),(1080,12,7200,0,'EET'),(1080,13,14400,0,'MSK'),(1080,14,10800,0,'MSK'),(1081,0,4920,0,'LMT'),(1081,1,3600,0,'CET'),(1081,2,3600,0,'CET'),(1081,3,7200,1,'CEST'),(1081,4,7200,1,'CEST'),(1081,5,7200,1,'CEST'),(1081,6,3600,0,'CET'),(1082,0,7016,0,'IMT'),(1082,1,7200,0,'EET'),(1082,2,3600,0,'CET'),(1082,3,7200,1,'CEST'),(1082,4,3600,0,'CET'),(1082,5,10800,1,'EEST'),(1082,6,7200,0,'EET'),(1082,7,10800,1,'EEST'),(1082,8,10800,1,'EEST'),(1082,9,7200,0,'EET'),(1083,0,3614,0,'SET'),(1083,1,3600,0,'CET'),(1083,2,7200,1,'CEST'),(1083,3,7200,1,'CEST'),(1083,4,3600,0,'CET'),(1084,0,5940,0,'LMT'),(1084,1,5940,0,'TMT'),(1084,2,7200,1,'CEST'),(1084,3,3600,0,'CET'),(1084,4,3600,0,'CET'),(1084,5,7200,0,'EET'),(1084,6,10800,0,'MSK'),(1084,7,7200,1,'CEST'),(1084,8,14400,1,'MSD'),(1084,9,10800,0,'MSK'),(1084,10,14400,1,'MSD'),(1084,11,10800,1,'EEST'),(1084,12,7200,0,'EET'),(1084,13,7200,0,'EET'),(1084,14,10800,1,'EEST'),(1084,15,10800,1,'EEST'),(1085,0,4760,0,'LMT'),(1085,1,3600,0,'CET'),(1085,2,7200,1,'CEST'),(1085,3,3600,0,'CET'),(1085,4,7200,1,'CEST'),(1086,0,6920,0,'LMT'),(1086,1,6900,0,'CMT'),(1086,2,6264,0,'BMT'),(1086,3,10800,1,'EEST'),(1086,4,7200,0,'EET'),(1086,5,7200,0,'EET'),(1086,6,10800,1,'EEST'),(1086,7,3600,0,'CET'),(1086,8,7200,1,'CEST'),(1086,9,7200,1,'CEST'),(1086,10,14400,1,'MSD'),(1086,11,10800,0,'MSK'),(1086,12,10800,0,'MSK'),(1086,13,14400,1,'MSD'),(1086,14,10800,1,'EEST'),(1086,15,7200,0,'EET'),(1087,0,11616,0,'LMT'),(1087,1,10800,0,'+03'),(1087,2,18000,1,'+05'),(1087,3,14400,0,'+04'),(1087,4,14400,0,'+04'),(1087,5,18000,1,'+05'),(1087,6,14400,1,'+04'),(1087,7,10800,0,'+03'),(1087,8,10800,1,'+03'),(1087,9,7200,0,'+02'),(1087,10,14400,1,'+04'),(1087,11,14400,0,'+04'),(1088,0,5352,0,'LMT'),(1088,1,3600,0,'CET'),(1088,2,7200,1,'CEST'),(1088,3,3600,0,'CET'),(1088,4,7200,1,'CEST'),(1088,5,14400,1,'MSD'),(1088,6,10800,0,'MSK'),(1088,7,10800,0,'MSK'),(1088,8,14400,1,'MSD'),(1088,9,7200,0,'EET'),(1088,10,10800,1,'EEST'),(1088,11,10800,1,'EEST'),(1088,12,7200,0,'EET'),(1089,0,1786,0,'BMT'),(1089,1,7200,1,'CEST'),(1089,2,3600,0,'CET'),(1089,3,7200,1,'CEST'),(1089,4,3600,0,'CET'),(1090,0,2996,0,'RMT'),(1090,1,7200,1,'CEST'),(1090,2,3600,0,'CET'),(1090,3,3600,0,'CET'),(1090,4,7200,1,'CEST'),(1090,5,7200,1,'CEST'),(1090,6,3600,0,'CET'),(1091,0,3921,0,'LMT'),(1091,1,7200,1,'CEST'),(1091,2,3600,0,'CET'),(1091,3,7200,1,'CEST'),(1091,4,3600,0,'CET'),(1091,5,7200,1,'CEST'),(1091,6,3600,0,'CET'),(1092,0,6076,0,'LMT'),(1092,1,5040,0,'WMT'),(1092,2,5736,0,'KMT'),(1092,3,3600,0,'CET'),(1092,4,7200,0,'EET'),(1092,5,10800,0,'MSK'),(1092,6,3600,0,'CET'),(1092,7,7200,1,'CEST'),(1092,8,7200,1,'CEST'),(1092,9,14400,1,'MSD'),(1092,10,10800,0,'MSK'),(1092,11,14400,1,'MSD'),(1092,12,10800,1,'EEST'),(1092,13,7200,0,'EET'),(1092,14,7200,1,'CEST'),(1092,15,3600,0,'CET'),(1092,16,7200,0,'EET'),(1092,17,10800,1,'EEST'),(1093,0,10660,0,'LMT'),(1093,1,10800,0,'+03'),(1093,2,14400,0,'+04'),(1093,3,18000,1,'+05'),(1093,4,14400,0,'+04'),(1093,5,18000,1,'+05'),(1093,6,14400,1,'+04'),(1093,7,10800,0,'+03'),(1094,0,5040,0,'LMT'),(1094,1,5040,0,'WMT'),(1094,2,7200,1,'CEST'),(1094,3,3600,0,'CET'),(1094,4,7200,1,'CEST'),(1094,5,3600,0,'CET'),(1094,6,10800,1,'EEST'),(1094,7,7200,0,'EET'),(1094,8,7200,0,'EET'),(1094,9,7200,1,'CEST'),(1094,10,3600,0,'CET'),(1095,0,4920,0,'LMT'),(1095,1,3600,0,'CET'),(1095,2,3600,0,'CET'),(1095,3,7200,1,'CEST'),(1095,4,7200,1,'CEST'),(1095,5,7200,1,'CEST'),(1095,6,3600,0,'CET'),(1096,0,8440,0,'LMT'),(1096,1,8400,0,'+0220'),(1096,2,7200,0,'EET'),(1096,3,10800,0,'MSK'),(1096,4,3600,0,'CET'),(1096,5,7200,1,'CEST'),(1096,6,7200,1,'CEST'),(1096,7,14400,1,'MSD'),(1096,8,10800,0,'MSK'),(1096,9,14400,1,'MSD'),(1096,10,10800,1,'EEST'),(1096,11,10800,1,'EEST'),(1096,12,7200,0,'EET'),(1097,0,1786,0,'BMT'),(1097,1,7200,1,'CEST'),(1097,2,3600,0,'CET'),(1097,3,7200,1,'CEST'),(1097,4,3600,0,'CET'),(1098,0,0,0,'-00'),(1099,0,-75,0,'LMT'),(1099,1,3600,1,'BST'),(1099,2,0,0,'GMT'),(1099,3,7200,1,'BDST'),(1099,4,3600,0,'BST'),(1099,5,3600,1,'BST'),(1099,6,0,0,'GMT'),(1099,7,0,0,'GMT'),(1100,0,-75,0,'LMT'),(1100,1,3600,1,'BST'),(1100,2,0,0,'GMT'),(1100,3,7200,1,'BDST'),(1100,4,3600,0,'BST'),(1100,5,3600,1,'BST'),(1100,6,0,0,'GMT'),(1100,7,0,0,'GMT'),(1101,0,0,0,'GMT'),(1102,0,0,0,'GMT'),(1103,0,0,0,'GMT'),(1104,0,0,0,'GMT'),(1105,0,0,0,'GMT'),(1106,0,-36000,0,'HST'),(1107,0,27402,0,'LMT'),(1107,1,28800,0,'HKT'),(1107,2,32400,1,'HKST'),(1107,3,30600,1,'HKWT'),(1107,4,32400,0,'JST'),(1107,5,28800,0,'HKT'),(1107,6,32400,1,'HKST'),(1108,0,-5280,0,'LMT'),(1108,1,0,1,'+00'),(1108,2,-3600,0,'-01'),(1108,3,-3600,0,'-01'),(1108,4,0,1,'+00'),(1108,5,0,0,'GMT'),(1109,0,8836,0,'LMT'),(1109,1,9000,0,'+0230'),(1109,2,10800,0,'EAT'),(1109,3,9900,0,'+0245'),(1109,4,10800,0,'EAT'),(1110,0,17380,0,'LMT'),(1110,1,18000,0,'+05'),(1110,2,21600,0,'+06'),(1111,0,25372,0,'LMT'),(1111,1,25200,0,'+07'),(1112,0,23260,0,'LMT'),(1112,1,23400,0,'+0630'),(1113,0,8836,0,'LMT'),(1113,1,9000,0,'+0230'),(1113,2,10800,0,'EAT'),(1113,3,9900,0,'+0245'),(1113,4,10800,0,'EAT'),(1114,0,0,0,'-00'),(1114,1,18000,0,'+05'),(1115,0,13308,0,'LMT'),(1115,1,14400,0,'+04'),(1116,0,17640,0,'LMT'),(1116,1,17640,0,'MMT'),(1116,2,18000,0,'+05'),(1117,0,13800,0,'LMT'),(1117,1,18000,1,'+05'),(1117,2,14400,0,'+04'),(1118,0,8836,0,'LMT'),(1118,1,9000,0,'+0230'),(1118,2,10800,0,'EAT'),(1118,3,9900,0,'+0245'),(1118,4,10800,0,'EAT'),(1119,0,13312,0,'LMT'),(1119,1,14400,0,'+04'),(1120,0,12344,0,'LMT'),(1120,1,12344,0,'TMT'),(1120,2,12600,0,'+0330'),(1120,3,18000,1,'+05'),(1120,4,14400,0,'+04'),(1120,5,16200,1,'+0430'),(1120,6,12600,0,'+0330'),(1121,0,8454,0,'LMT'),(1121,1,8440,0,'JMT'),(1121,2,10800,1,'IDT'),(1121,3,7200,0,'IST'),(1121,4,14400,1,'IDDT'),(1121,5,10800,1,'IDT'),(1121,6,7200,0,'IST'),(1121,7,10800,1,'IDT'),(1121,8,7200,0,'IST'),(1122,0,-18430,0,'LMT'),(1122,1,-18430,0,'KMT'),(1122,2,-18000,0,'EST'),(1122,3,-14400,1,'EDT'),(1123,0,33539,0,'LMT'),(1123,1,36000,1,'JDT'),(1123,2,32400,0,'JST'),(1123,3,32400,0,'JST'),(1124,0,40160,0,'LMT'),(1124,1,39600,0,'+11'),(1124,2,36000,0,'+10'),(1124,3,32400,0,'+09'),(1124,4,-43200,0,'-12'),(1124,5,43200,0,'+12'),(1125,0,3164,0,'LMT'),(1125,1,7200,1,'CEST'),(1125,2,3600,0,'CET'),(1125,3,7200,0,'EET'),(1126,0,7200,1,'MEST'),(1126,1,3600,0,'MET'),(1126,2,7200,1,'MEST'),(1126,3,3600,0,'MET'),(1127,0,-25200,0,'MST'),(1128,0,-21600,1,'MDT'),(1128,1,-25200,0,'MST'),(1128,2,-21600,1,'MWT'),(1128,3,-21600,1,'MPT'),(1129,0,-28084,0,'LMT'),(1129,1,-25200,0,'MST'),(1129,2,-28800,0,'PST'),(1129,3,-25200,1,'PDT'),(1129,4,-25200,1,'PWT'),(1129,5,-25200,1,'PPT'),(1130,0,-25540,0,'LMT'),(1130,1,-25200,0,'MST'),(1130,2,-21600,0,'CST'),(1130,3,-28800,0,'PST'),(1130,4,-21600,1,'MDT'),(1130,5,-25200,0,'MST'),(1131,0,-23796,0,'LMT'),(1131,1,-25200,0,'MST'),(1131,2,-21600,0,'CST'),(1131,3,-18000,1,'CDT'),(1131,4,-18000,1,'CWT'),(1132,0,41944,0,'LMT'),(1132,1,45000,1,'NZST'),(1132,2,41400,0,'NZMT'),(1132,3,43200,1,'NZST'),(1132,4,46800,1,'NZDT'),(1132,5,43200,0,'NZST'),(1132,6,43200,0,'NZST'),(1133,0,44028,0,'LMT'),(1133,1,44100,0,'+1215'),(1133,2,49500,1,'+1345'),(1133,3,45900,0,'+1245'),(1133,4,45900,0,'+1245'),(1134,0,-25196,0,'LMT'),(1134,1,-21600,1,'MDT'),(1134,2,-25200,0,'MST'),(1134,3,-21600,1,'MWT'),(1134,4,-21600,1,'MPT'),(1135,0,29143,0,'LMT'),(1135,1,32400,1,'CDT'),(1135,2,28800,0,'CST'),(1136,0,-25200,1,'PDT'),(1136,1,-28800,0,'PST'),(1136,2,-25200,1,'PWT'),(1136,3,-25200,1,'PPT'),(1137,0,45184,0,'LMT'),(1137,1,-41216,0,'LMT'),(1137,2,-41400,0,'-1130'),(1137,3,-36000,1,'-10'),(1137,4,-39600,0,'-11'),(1137,5,46800,0,'+13'),(1137,6,50400,1,'+14'),(1138,0,41944,0,'LMT'),(1138,1,45000,1,'NZST'),(1138,2,41400,0,'NZMT'),(1138,3,43200,1,'NZST'),(1138,4,46800,1,'NZDT'),(1138,5,43200,0,'NZST'),(1138,6,43200,0,'NZST'),(1139,0,35312,0,'PMMT'),(1139,1,36000,0,'+10'),(1139,2,32400,0,'+09'),(1139,3,39600,0,'+11'),(1140,0,44028,0,'LMT'),(1140,1,44100,0,'+1215'),(1140,2,49500,1,'+1345'),(1140,3,45900,0,'+1245'),(1140,4,45900,0,'+1245'),(1141,0,36428,0,'LMT'),(1141,1,36000,0,'+10'),(1141,2,32400,0,'+09'),(1141,3,36000,0,'+10'),(1142,0,-26248,0,'LMT'),(1142,1,-26248,0,'EMT'),(1142,2,-21600,1,'-06'),(1142,3,-25200,0,'-07'),(1142,4,-25200,0,'-07'),(1142,5,-21600,0,'-06'),(1142,6,-18000,1,'-05'),(1143,0,40396,0,'LMT'),(1143,1,43200,1,'+12'),(1143,2,39600,0,'+11'),(1143,3,43200,1,'+12'),(1143,4,39600,0,'+11'),(1144,0,-41060,0,'LMT'),(1144,1,-43200,0,'-12'),(1144,2,-39600,0,'-11'),(1144,3,46800,0,'+13'),(1145,0,-41096,0,'LMT'),(1145,1,-39600,0,'-11'),(1145,2,46800,0,'+13'),(1146,0,42944,0,'LMT'),(1146,1,46800,1,'+13'),(1146,2,43200,0,'+12'),(1147,0,43012,0,'LMT'),(1147,1,43200,0,'+12'),(1148,0,-21504,0,'LMT'),(1148,1,-18000,0,'-05'),(1148,2,-18000,1,'-05'),(1148,3,-21600,0,'-06'),(1149,0,-32388,0,'LMT'),(1149,1,-32400,0,'-09'),(1150,0,38388,0,'LMT'),(1150,1,39600,0,'+11'),(1151,0,34740,0,'LMT'),(1151,1,36000,0,'GST'),(1151,2,32400,0,'+09'),(1151,3,39600,1,'GDT'),(1151,4,36000,0,'ChST'),(1152,0,-37886,0,'LMT'),(1152,1,-37800,0,'HST'),(1152,2,-34200,1,'HDT'),(1152,3,-34200,1,'HWT'),(1152,4,-34200,1,'HPT'),(1152,5,-36000,0,'HST'),(1153,0,-37886,0,'LMT'),(1153,1,-37800,0,'HST'),(1153,2,-34200,1,'HDT'),(1153,3,-34200,1,'HWT'),(1153,4,-34200,1,'HPT'),(1153,5,-36000,0,'HST'),(1154,0,-37760,0,'LMT'),(1154,1,-38400,0,'-1040'),(1154,2,-36000,0,'-10'),(1154,3,50400,0,'+14'),(1155,0,39116,0,'LMT'),(1155,1,39600,0,'+11'),(1155,2,32400,0,'+09'),(1155,3,36000,0,'+10'),(1155,4,43200,0,'+12'),(1155,5,39600,0,'+11'),(1156,0,40160,0,'LMT'),(1156,1,39600,0,'+11'),(1156,2,36000,0,'+10'),(1156,3,32400,0,'+09'),(1156,4,-43200,0,'-12'),(1156,5,43200,0,'+12'),(1157,0,41088,0,'LMT'),(1157,1,39600,0,'+11'),(1157,2,32400,0,'+09'),(1157,3,36000,0,'+10'),(1157,4,43200,0,'+12'),(1158,0,-33480,0,'LMT'),(1158,1,-34200,0,'-0930'),(1159,0,45432,0,'LMT'),(1159,1,-40968,0,'LMT'),(1159,2,-39600,0,'SST'),(1160,0,40060,0,'LMT'),(1160,1,41400,0,'+1130'),(1160,2,32400,0,'+09'),(1160,3,43200,0,'+12'),(1161,0,-40780,0,'LMT'),(1161,1,-40800,0,'-1120'),(1161,2,-41400,0,'-1130'),(1161,3,-39600,0,'-11'),(1162,0,40312,0,'LMT'),(1162,1,40320,0,'+1112'),(1162,2,41400,0,'+1130'),(1162,3,45000,1,'+1230'),(1162,4,41400,0,'+1130'),(1162,5,39600,0,'+11'),(1162,6,43200,1,'+12'),(1162,7,39600,0,'+11'),(1163,0,39948,0,'LMT'),(1163,1,43200,1,'+12'),(1163,2,39600,0,'+11'),(1163,3,43200,1,'+12'),(1163,4,39600,0,'+11'),(1164,0,45432,0,'LMT'),(1164,1,-40968,0,'LMT'),(1164,2,-39600,0,'SST'),(1165,0,32276,0,'LMT'),(1165,1,32400,0,'+09'),(1166,0,-31220,0,'LMT'),(1166,1,-30600,0,'-0830'),(1166,2,-28800,0,'-08'),(1167,0,37972,0,'LMT'),(1167,1,39600,0,'+11'),(1167,2,32400,0,'+09'),(1167,3,36000,0,'+10'),(1167,4,39600,0,'+11'),(1168,0,37972,0,'LMT'),(1168,1,39600,0,'+11'),(1168,2,32400,0,'+09'),(1168,3,36000,0,'+10'),(1168,4,39600,0,'+11'),(1169,0,35312,0,'PMMT'),(1169,1,36000,0,'+10'),(1170,0,-38344,0,'LMT'),(1170,1,-37800,0,'-1030'),(1170,2,-36000,0,'-10'),(1170,3,-34200,1,'-0930'),(1171,0,34740,0,'LMT'),(1171,1,36000,0,'GST'),(1171,2,32400,0,'+09'),(1171,3,39600,1,'GDT'),(1171,4,36000,0,'ChST'),(1172,0,45432,0,'LMT'),(1172,1,-40968,0,'LMT'),(1172,2,-39600,0,'SST'),(1173,0,-35896,0,'LMT'),(1173,1,-36000,0,'-10'),(1174,0,41524,0,'LMT'),(1174,1,43200,0,'+12'),(1175,0,44360,0,'LMT'),(1175,1,44400,0,'+1220'),(1175,2,46800,0,'+13'),(1175,3,50400,1,'+14'),(1175,4,46800,0,'+13'),(1175,5,50400,1,'+14'),(1176,0,36428,0,'LMT'),(1176,1,36000,0,'+10'),(1176,2,32400,0,'+09'),(1176,3,36000,0,'+10'),(1177,0,39988,0,'LMT'),(1177,1,43200,0,'+12'),(1178,0,44120,0,'LMT'),(1178,1,43200,0,'+12'),(1179,0,36428,0,'LMT'),(1179,1,36000,0,'+10'),(1179,2,32400,0,'+09'),(1179,3,36000,0,'+10'),(1180,0,5040,0,'LMT'),(1180,1,5040,0,'WMT'),(1180,2,7200,1,'CEST'),(1180,3,3600,0,'CET'),(1180,4,7200,1,'CEST'),(1180,5,3600,0,'CET'),(1180,6,10800,1,'EEST'),(1180,7,7200,0,'EET'),(1180,8,7200,0,'EET'),(1180,9,7200,1,'CEST'),(1180,10,3600,0,'CET'),(1181,0,-2205,0,'LMT'),(1181,1,3600,1,'WEST'),(1181,2,0,0,'WET'),(1181,3,3600,1,'WEST'),(1181,4,0,0,'WET'),(1181,5,7200,1,'WEMT'),(1181,6,0,0,'WET'),(1181,7,3600,0,'CET'),(1181,8,3600,0,'CET'),(1181,9,7200,1,'CEST'),(1181,10,3600,1,'WEST'),(1181,11,0,0,'WET'),(1182,0,29160,0,'LMT'),(1182,1,28800,0,'CST'),(1182,2,32400,0,'JST'),(1182,3,32400,1,'CDT'),(1182,4,28800,0,'CST'),(1183,0,30472,0,'LMT'),(1183,1,30600,0,'KST'),(1183,2,32400,0,'JST'),(1183,3,36000,1,'KDT'),(1183,4,32400,0,'KST'),(1183,5,34200,1,'KDT'),(1183,6,36000,1,'KDT'),(1184,0,24925,0,'LMT'),(1184,1,24925,0,'SMT'),(1184,2,25200,0,'+07'),(1184,3,26400,1,'+0720'),(1184,4,26400,0,'+0720'),(1184,5,27000,0,'+0730'),(1184,6,32400,0,'+09'),(1184,7,28800,0,'+08'),(1185,0,-15865,0,'LMT'),(1185,1,-14400,0,'AST'),(1185,2,-10800,1,'APT'),(1185,3,-10800,1,'AWT'),(1186,0,-15264,0,'LMT'),(1186,1,-10800,1,'ADT'),(1186,2,-14400,0,'AST'),(1186,3,-10800,1,'AWT'),(1186,4,-10800,1,'APT'),(1187,0,-25116,0,'LMT'),(1187,1,-21600,1,'MDT'),(1187,2,-25200,0,'MST'),(1187,3,-21600,1,'MWT'),(1187,4,-21600,1,'MPT'),(1187,5,-21600,0,'CST'),(1188,0,-21036,0,'LMT'),(1188,1,-18000,1,'CDT'),(1188,2,-21600,0,'CST'),(1188,3,-18000,0,'EST'),(1188,4,-18000,1,'CWT'),(1188,5,-18000,1,'CPT'),(1188,6,-21600,0,'CST'),(1189,0,-19088,0,'LMT'),(1189,1,-19176,0,'CMT'),(1189,2,-18000,0,'EST'),(1190,0,-17762,0,'LMT'),(1190,1,-14400,1,'EDT'),(1190,2,-18000,0,'EST'),(1190,3,-14400,1,'EWT'),(1190,4,-14400,1,'EPT'),(1191,0,-37886,0,'LMT'),(1191,1,-37800,0,'HST'),(1191,2,-34200,1,'HDT'),(1191,3,-34200,1,'HWT'),(1191,4,-34200,1,'HPT'),(1191,5,-36000,0,'HST'),(1192,0,-26898,0,'LMT'),(1192,1,-21600,1,'MDT'),(1192,2,-25200,0,'MST'),(1192,3,-21600,1,'MWT'),(1193,0,-25196,0,'LMT'),(1193,1,-21600,1,'MDT'),(1193,2,-25200,0,'MST'),(1193,3,-21600,1,'MWT'),(1193,4,-21600,1,'MPT'),(1194,0,-31220,0,'LMT'),(1194,1,-30600,0,'-0830'),(1194,2,-28800,0,'-08'),(1195,0,-28378,0,'LMT'),(1195,1,-25200,1,'PDT'),(1195,2,-28800,0,'PST'),(1195,3,-25200,1,'PWT'),(1195,4,-25200,1,'PPT'),(1196,0,-32388,0,'LMT'),(1196,1,-32400,0,'-09'),(1197,0,-35976,0,'LMT'),(1197,1,-36000,0,'AST'),(1197,2,-32400,1,'AWT'),(1197,3,-32400,1,'APT'),(1197,4,-36000,0,'AHST'),(1197,5,-32400,1,'AHDT'),(1197,6,-32400,0,'YST'),(1197,7,-28800,1,'AKDT'),(1197,8,-32400,0,'AKST'),(1198,0,6952,0,'LMT'),(1198,1,7016,0,'IMT'),(1198,2,10800,1,'EEST'),(1198,3,7200,0,'EET'),(1198,4,10800,0,'+03'),(1198,5,14400,1,'+04'),(1198,6,10800,1,'EEST'),(1198,7,7200,0,'EET'),(1198,8,10800,1,'EEST'),(1198,9,7200,0,'EET'),(1198,10,10800,0,'+03'),(1199,0,0,0,'UTC'),(1200,0,-35976,0,'LMT'),(1200,1,-36000,0,'AST'),(1200,2,-32400,1,'AWT'),(1200,3,-32400,1,'APT'),(1200,4,-36000,0,'AHST'),(1200,5,-32400,1,'AHDT'),(1200,6,-32400,0,'YST'),(1200,7,-28800,1,'AKDT'),(1200,8,-32400,0,'AKST'),(1201,0,-42398,0,'LMT'),(1201,1,-39600,0,'NST'),(1201,2,-36000,1,'NWT'),(1201,3,-36000,1,'NPT'),(1201,4,-39600,0,'BST'),(1201,5,-36000,1,'BDT'),(1201,6,-36000,0,'AHST'),(1201,7,-32400,1,'HDT'),(1201,8,-36000,0,'HST'),(1202,0,-26898,0,'LMT'),(1202,1,-21600,1,'MDT'),(1202,2,-25200,0,'MST'),(1202,3,-21600,1,'MWT'),(1203,0,-21036,0,'LMT'),(1203,1,-18000,1,'CDT'),(1203,2,-21600,0,'CST'),(1203,3,-18000,0,'EST'),(1203,4,-18000,1,'CWT'),(1203,5,-18000,1,'CPT'),(1203,6,-21600,0,'CST'),(1204,0,-20678,0,'LMT'),(1204,1,-18000,1,'CDT'),(1204,2,-21600,0,'CST'),(1204,3,-18000,1,'CWT'),(1204,4,-18000,1,'CPT'),(1204,5,-18000,0,'EST'),(1204,6,-14400,1,'EDT'),(1205,0,-17762,0,'LMT'),(1205,1,-14400,1,'EDT'),(1205,2,-18000,0,'EST'),(1205,3,-14400,1,'EWT'),(1205,4,-14400,1,'EPT'),(1206,0,-37886,0,'LMT'),(1206,1,-37800,0,'HST'),(1206,2,-34200,1,'HDT'),(1206,3,-34200,1,'HWT'),(1206,4,-34200,1,'HPT'),(1206,5,-36000,0,'HST'),(1207,0,-20790,0,'LMT'),(1207,1,-18000,1,'CDT'),(1207,2,-21600,0,'CST'),(1207,3,-18000,1,'CWT'),(1207,4,-18000,1,'CPT'),(1207,5,-18000,0,'EST'),(1207,6,-21600,0,'CST'),(1208,0,-19931,0,'LMT'),(1208,1,-21600,0,'CST'),(1208,2,-18000,0,'EST'),(1208,3,-14400,1,'EWT'),(1208,4,-14400,1,'EPT'),(1208,5,-14400,1,'EDT'),(1209,0,-25196,0,'LMT'),(1209,1,-21600,1,'MDT'),(1209,2,-25200,0,'MST'),(1209,3,-21600,1,'MWT'),(1209,4,-21600,1,'MPT'),(1210,0,-28378,0,'LMT'),(1210,1,-25200,1,'PDT'),(1210,2,-28800,0,'PST'),(1210,3,-25200,1,'PWT'),(1210,4,-25200,1,'PPT'),(1211,0,-28378,0,'LMT'),(1211,1,-25200,1,'PDT'),(1211,2,-28800,0,'PST'),(1211,3,-25200,1,'PWT'),(1211,4,-25200,1,'PPT'),(1212,0,45432,0,'LMT'),(1212,1,-40968,0,'LMT'),(1212,2,-39600,0,'SST'),(1213,0,0,0,'UTC'),(1214,0,0,0,'UTC'),(1215,0,9017,0,'LMT'),(1215,1,9017,0,'MMT'),(1215,2,12679,1,'MST'),(1215,3,9079,0,'MMT'),(1215,4,16279,1,'MDST'),(1215,5,14400,1,'MSD'),(1215,6,10800,0,'MSK'),(1215,7,14400,1,'MSD'),(1215,8,18000,1,'+05'),(1215,9,7200,0,'EET'),(1215,10,10800,0,'MSK'),(1215,11,14400,1,'MSD'),(1215,12,10800,1,'EEST'),(1215,13,7200,0,'EET'),(1215,14,14400,0,'MSK'),(1215,15,14400,1,'MSD'),(1215,16,10800,0,'MSK'),(1216,0,3600,1,'WEST'),(1216,1,0,0,'WET'),(1217,0,0,0,'UTC'),(1218,0,-17762,0,'LMT'),(1218,1,-14400,1,'EDT'),(1218,2,-18000,0,'EST'),(1218,3,-14400,1,'EWT'),(1218,4,-14400,1,'EPT'),(1219,0,-968,0,'LMT'),(1219,1,0,0,'GMT'),(1220,0,-52,0,'LMT'),(1220,1,1200,1,'+0020'),(1220,2,0,0,'GMT'),(1220,3,1800,0,'+0030'),(1220,4,1800,1,'+0030'),(1220,5,0,0,'GMT'),(1221,0,8836,0,'LMT'),(1221,1,9000,0,'+0230'),(1221,2,10800,0,'EAT'),(1221,3,9900,0,'+0245'),(1221,4,10800,0,'EAT'),(1222,0,732,0,'LMT'),(1222,1,561,0,'PMT'),(1222,2,3600,1,'WEST'),(1222,3,0,0,'WET'),(1222,4,0,0,'WET'),(1222,5,7200,1,'CEST'),(1222,6,3600,0,'CET'),(1222,7,3600,1,'WEST'),(1223,0,8836,0,'LMT'),(1223,1,9000,0,'+0230'),(1223,2,10800,0,'EAT'),(1223,3,9900,0,'+0245'),(1223,4,10800,0,'EAT'),(1224,0,8836,0,'LMT'),(1224,1,9000,0,'+0230'),(1224,2,10800,0,'EAT'),(1224,3,9900,0,'+0245'),(1224,4,10800,0,'EAT'),(1225,0,-968,0,'LMT'),(1225,1,0,0,'GMT'),(1226,0,815,0,'LMT'),(1226,1,0,0,'GMT'),(1226,2,1800,0,'+0030'),(1226,3,3600,0,'WAT'),(1227,0,-968,0,'LMT'),(1227,1,0,0,'GMT'),(1228,0,-3740,0,'LMT'),(1228,1,-3600,0,'-01'),(1228,2,0,0,'GMT'),(1229,0,7820,0,'LMT'),(1229,1,7200,0,'CAT'),(1230,0,815,0,'LMT'),(1230,1,0,0,'GMT'),(1230,2,1800,0,'+0030'),(1230,3,3600,0,'WAT'),(1231,0,7820,0,'LMT'),(1231,1,7200,0,'CAT'),(1232,0,7509,0,'LMT'),(1232,1,10800,1,'EEST'),(1232,2,7200,0,'EET'),(1232,3,10800,1,'EEST'),(1233,0,-1820,0,'LMT'),(1233,1,3600,1,'+01'),(1233,2,0,0,'+00'),(1233,3,3600,0,'+01'),(1233,4,0,1,'+00'),(1234,0,-1276,0,'LMT'),(1234,1,0,0,'WET'),(1234,2,3600,1,'WEST'),(1234,3,0,0,'WET'),(1234,4,3600,0,'CET'),(1234,5,7200,1,'CEST'),(1234,6,3600,0,'CET'),(1235,0,-968,0,'LMT'),(1235,1,0,0,'GMT'),(1236,0,-968,0,'LMT'),(1236,1,0,0,'GMT'),(1237,0,8836,0,'LMT'),(1237,1,9000,0,'+0230'),(1237,2,10800,0,'EAT'),(1237,3,9900,0,'+0245'),(1237,4,10800,0,'EAT'),(1238,0,8836,0,'LMT'),(1238,1,9000,0,'+0230'),(1238,2,10800,0,'EAT'),(1238,3,9900,0,'+0245'),(1238,4,10800,0,'EAT'),(1239,0,815,0,'LMT'),(1239,1,0,0,'GMT'),(1239,2,1800,0,'+0030'),(1239,3,3600,0,'WAT'),(1240,0,-3168,0,'LMT'),(1240,1,-3600,0,'-01'),(1240,2,3600,1,'+01'),(1240,3,0,0,'+00'),(1240,4,0,1,'+00'),(1240,5,3600,0,'+01'),(1241,0,-968,0,'LMT'),(1241,1,0,0,'GMT'),(1242,0,7820,0,'LMT'),(1242,1,7200,0,'CAT'),(1243,0,7820,0,'LMT'),(1243,1,7200,0,'CAT'),(1244,0,6720,0,'LMT'),(1244,1,5400,0,'SAST'),(1244,2,10800,1,'SAST'),(1244,3,7200,0,'SAST'),(1245,0,7588,0,'LMT'),(1245,1,10800,1,'CAST'),(1245,2,7200,0,'CAT'),(1245,3,10800,0,'EAT'),(1245,4,7200,0,'CAT'),(1246,0,8836,0,'LMT'),(1246,1,9000,0,'+0230'),(1246,2,10800,0,'EAT'),(1246,3,9900,0,'+0245'),(1246,4,10800,0,'EAT'),(1247,0,7808,0,'LMT'),(1247,1,10800,1,'CAST'),(1247,2,7200,0,'CAT'),(1247,3,10800,0,'EAT'),(1247,4,7200,0,'CAT'),(1248,0,7820,0,'LMT'),(1248,1,7200,0,'CAT'),(1249,0,815,0,'LMT'),(1249,1,0,0,'GMT'),(1249,2,1800,0,'+0030'),(1249,3,3600,0,'WAT'),(1250,0,815,0,'LMT'),(1250,1,0,0,'GMT'),(1250,2,1800,0,'+0030'),(1250,3,3600,0,'WAT'),(1251,0,815,0,'LMT'),(1251,1,0,0,'GMT'),(1251,2,1800,0,'+0030'),(1251,3,3600,0,'WAT'),(1252,0,-968,0,'LMT'),(1252,1,0,0,'GMT'),(1253,0,815,0,'LMT'),(1253,1,0,0,'GMT'),(1253,2,1800,0,'+0030'),(1253,3,3600,0,'WAT'),(1254,0,7820,0,'LMT'),(1254,1,7200,0,'CAT'),(1255,0,7820,0,'LMT'),(1255,1,7200,0,'CAT'),(1256,0,815,0,'LMT'),(1256,1,0,0,'GMT'),(1256,2,1800,0,'+0030'),(1256,3,3600,0,'WAT'),(1257,0,7820,0,'LMT'),(1257,1,7200,0,'CAT'),(1258,0,6720,0,'LMT'),(1258,1,5400,0,'SAST'),(1258,2,10800,1,'SAST'),(1258,3,7200,0,'SAST'),(1259,0,6720,0,'LMT'),(1259,1,5400,0,'SAST'),(1259,2,10800,1,'SAST'),(1259,3,7200,0,'SAST'),(1260,0,8836,0,'LMT'),(1260,1,9000,0,'+0230'),(1260,2,10800,0,'EAT'),(1260,3,9900,0,'+0245'),(1260,4,10800,0,'EAT'),(1261,0,-2588,0,'LMT'),(1261,1,-2588,0,'MMT'),(1261,2,-2670,0,'MMT'),(1261,3,0,0,'GMT'),(1262,0,8836,0,'LMT'),(1262,1,9000,0,'+0230'),(1262,2,10800,0,'EAT'),(1262,3,9900,0,'+0245'),(1262,4,10800,0,'EAT'),(1263,0,3612,0,'LMT'),(1263,1,3600,0,'WAT'),(1263,2,7200,1,'WAST'),(1264,0,815,0,'LMT'),(1264,1,0,0,'GMT'),(1264,2,1800,0,'+0030'),(1264,3,3600,0,'WAT'),(1265,0,-968,0,'LMT'),(1265,1,0,0,'GMT'),(1266,0,-968,0,'LMT'),(1266,1,0,0,'GMT'),(1267,0,815,0,'LMT'),(1267,1,0,0,'GMT'),(1267,2,1800,0,'+0030'),(1267,3,3600,0,'WAT'),(1268,0,1616,0,'LMT'),(1268,1,-2205,0,'LMT'),(1268,2,0,0,'GMT'),(1268,3,3600,0,'WAT'),(1268,4,0,0,'GMT'),(1269,0,-968,0,'LMT'),(1269,1,0,0,'GMT'),(1270,0,3164,0,'LMT'),(1270,1,7200,1,'CEST'),(1270,2,3600,0,'CET'),(1270,3,7200,0,'EET'),(1271,0,2444,0,'LMT'),(1271,1,561,0,'PMT'),(1271,2,7200,1,'CEST'),(1271,3,3600,0,'CET'),(1271,4,3600,0,'CET'),(1271,5,7200,1,'CEST'),(1272,0,4104,0,'LMT'),(1272,1,5400,0,'+0130'),(1272,2,7200,0,'SAST'),(1272,3,10800,1,'SAST'),(1272,4,3600,1,'WAT'),(1272,5,7200,0,'CAT'),(1273,0,-42398,0,'LMT'),(1273,1,-39600,0,'NST'),(1273,2,-36000,1,'NWT'),(1273,3,-36000,1,'NPT'),(1273,4,-39600,0,'BST'),(1273,5,-36000,1,'BDT'),(1273,6,-36000,0,'AHST'),(1273,7,-32400,1,'HDT'),(1273,8,-36000,0,'HST'),(1274,0,-35976,0,'LMT'),(1274,1,-36000,0,'AST'),(1274,2,-32400,1,'AWT'),(1274,3,-32400,1,'APT'),(1274,4,-36000,0,'AHST'),(1274,5,-32400,1,'AHDT'),(1274,6,-32400,0,'YST'),(1274,7,-28800,1,'AKDT'),(1274,8,-32400,0,'AKST'),(1275,0,-14764,0,'LMT'),(1275,1,-14400,0,'AST'),(1276,0,-14764,0,'LMT'),(1276,1,-14400,0,'AST'),(1277,0,-11568,0,'LMT'),(1277,1,-7200,1,'-02'),(1277,2,-10800,0,'-03'),(1278,0,-14028,0,'LMT'),(1278,1,-15408,0,'CMT'),(1278,2,-14400,0,'-04'),(1278,3,-10800,1,'-03'),(1278,4,-7200,1,'-02'),(1278,5,-10800,0,'-03'),(1279,0,-15788,0,'LMT'),(1279,1,-15408,0,'CMT'),(1279,2,-14400,0,'-04'),(1279,3,-10800,1,'-03'),(1279,4,-7200,1,'-02'),(1279,5,-10800,0,'-03'),(1280,0,-15788,0,'LMT'),(1280,1,-15408,0,'CMT'),(1280,2,-14400,0,'-04'),(1280,3,-10800,1,'-03'),(1280,4,-7200,1,'-02'),(1280,5,-10800,0,'-03'),(1281,0,-15408,0,'LMT'),(1281,1,-15408,0,'CMT'),(1281,2,-14400,0,'-04'),(1281,3,-10800,1,'-03'),(1281,4,-7200,1,'-02'),(1281,5,-10800,0,'-03'),(1282,0,-15672,0,'LMT'),(1282,1,-15408,0,'CMT'),(1282,2,-14400,0,'-04'),(1282,3,-10800,1,'-03'),(1282,4,-7200,1,'-02'),(1282,5,-10800,0,'-03'),(1283,0,-16044,0,'LMT'),(1283,1,-15408,0,'CMT'),(1283,2,-14400,0,'-04'),(1283,3,-10800,1,'-03'),(1283,4,-7200,1,'-02'),(1283,5,-10800,0,'-03'),(1284,0,-16516,0,'LMT'),(1284,1,-15408,0,'CMT'),(1284,2,-14400,0,'-04'),(1284,3,-10800,1,'-03'),(1284,4,-7200,1,'-02'),(1284,5,-10800,0,'-03'),(1285,0,-16612,0,'LMT'),(1285,1,-15408,0,'CMT'),(1285,2,-14400,0,'-04'),(1285,3,-10800,1,'-03'),(1285,4,-7200,1,'-02'),(1285,5,-10800,0,'-03'),(1286,0,-15700,0,'LMT'),(1286,1,-15408,0,'CMT'),(1286,2,-14400,0,'-04'),(1286,3,-10800,1,'-03'),(1286,4,-7200,1,'-02'),(1286,5,-10800,0,'-03'),(1287,0,-16444,0,'LMT'),(1287,1,-15408,0,'CMT'),(1287,2,-14400,0,'-04'),(1287,3,-10800,1,'-03'),(1287,4,-7200,1,'-02'),(1287,5,-10800,0,'-03'),(1288,0,-15924,0,'LMT'),(1288,1,-15408,0,'CMT'),(1288,2,-14400,0,'-04'),(1288,3,-10800,1,'-03'),(1288,4,-7200,1,'-02'),(1288,5,-10800,0,'-03'),(1288,6,-10800,1,'-03'),(1289,0,-15652,0,'LMT'),(1289,1,-15408,0,'CMT'),(1289,2,-14400,0,'-04'),(1289,3,-10800,1,'-03'),(1289,4,-7200,1,'-02'),(1289,5,-10800,0,'-03'),(1290,0,-16392,0,'LMT'),(1290,1,-15408,0,'CMT'),(1290,2,-14400,0,'-04'),(1290,3,-10800,1,'-03'),(1290,4,-7200,1,'-02'),(1290,5,-10800,0,'-03'),(1291,0,-16547,0,'LMT'),(1291,1,-16200,0,'-0430'),(1291,2,-14400,0,'AST'),(1292,0,-13840,0,'LMT'),(1292,1,-13840,0,'AMT'),(1292,2,-14400,0,'-04'),(1292,3,-10800,0,'-03'),(1292,4,-10800,1,'-03'),(1292,5,-14400,0,'-04'),(1293,0,-21988,0,'LMT'),(1293,1,-18000,1,'CDT'),(1293,2,-21600,0,'CST'),(1293,3,-18000,1,'CWT'),(1293,4,-18000,1,'CPT'),(1293,5,-18000,0,'EST'),(1294,0,-42398,0,'LMT'),(1294,1,-39600,0,'NST'),(1294,2,-36000,1,'NWT'),(1294,3,-36000,1,'NPT'),(1294,4,-39600,0,'BST'),(1294,5,-36000,1,'BDT'),(1294,6,-36000,0,'AHST'),(1294,7,-32400,1,'HDT'),(1294,8,-36000,0,'HST'),(1295,0,-9244,0,'LMT'),(1295,1,-7200,1,'-02'),(1295,2,-10800,0,'-03'),(1296,0,-25260,0,'LMT'),(1296,1,-25200,0,'MST'),(1296,2,-21600,0,'CST'),(1296,3,-28800,0,'PST'),(1296,4,-21600,1,'MDT'),(1296,5,-18000,1,'CDT'),(1296,6,-21600,0,'CST'),(1297,0,-14309,0,'LMT'),(1297,1,-14309,0,'BMT'),(1297,2,-10800,1,'ADT'),(1297,3,-14400,0,'AST'),(1298,0,-11636,0,'LMT'),(1298,1,-7200,1,'-02'),(1298,2,-10800,0,'-03'),(1299,0,-21168,0,'LMT'),(1299,1,-19800,1,'-0530'),(1299,2,-21600,0,'CST'),(1299,3,-18000,1,'CWT'),(1299,4,-18000,1,'CPT'),(1299,5,-18000,1,'CDT'),(1300,0,-13708,0,'LMT'),(1300,1,-10800,1,'ADT'),(1300,2,-14400,0,'AST'),(1300,3,-10800,1,'AWT'),(1300,4,-10800,1,'APT'),(1301,0,-14560,0,'LMT'),(1301,1,-10800,1,'-03'),(1301,2,-14400,0,'-04'),(1302,0,-17776,0,'LMT'),(1302,1,-17776,0,'BMT'),(1302,2,-14400,1,'-04'),(1302,3,-18000,0,'-05'),(1303,0,-27889,0,'LMT'),(1303,1,-25200,1,'PDT'),(1303,2,-28800,0,'PST'),(1303,3,-21600,1,'MWT'),(1303,4,-21600,1,'MPT'),(1303,5,-25200,0,'MST'),(1303,6,-21600,1,'MDT'),(1304,0,-14028,0,'LMT'),(1304,1,-15408,0,'CMT'),(1304,2,-14400,0,'-04'),(1304,3,-10800,1,'-03'),(1304,4,-7200,1,'-02'),(1304,5,-10800,0,'-03'),(1305,0,0,0,'-00'),(1305,1,-21600,1,'MWT'),(1305,2,-21600,1,'MPT'),(1305,3,-25200,0,'MST'),(1305,4,-18000,1,'MDDT'),(1305,5,-21600,1,'MDT'),(1305,6,-18000,1,'CDT'),(1305,7,-21600,0,'CST'),(1305,8,-18000,0,'EST'),(1305,9,-21600,1,'MDT'),(1305,10,-25200,0,'MST'),(1306,0,-13108,0,'LMT'),(1306,1,-10800,1,'-03'),(1306,2,-14400,0,'-04'),(1307,0,-20824,0,'LMT'),(1307,1,-21600,0,'CST'),(1307,2,-14400,1,'EDT'),(1307,3,-18000,0,'EST'),(1307,4,-18000,1,'CDT'),(1308,0,-16064,0,'LMT'),(1308,1,-16060,0,'CMT'),(1308,2,-16200,0,'-0430'),(1308,3,-14400,0,'-04'),(1309,0,-15788,0,'LMT'),(1309,1,-15408,0,'CMT'),(1309,2,-14400,0,'-04'),(1309,3,-10800,1,'-03'),(1309,4,-7200,1,'-02'),(1309,5,-10800,0,'-03'),(1310,0,-12560,0,'LMT'),(1310,1,-14400,0,'-04'),(1310,2,-10800,0,'-03'),(1311,0,-19088,0,'LMT'),(1311,1,-19176,0,'CMT'),(1311,2,-18000,0,'EST'),(1312,0,-21036,0,'LMT'),(1312,1,-18000,1,'CDT'),(1312,2,-21600,0,'CST'),(1312,3,-18000,0,'EST'),(1312,4,-18000,1,'CWT'),(1312,5,-18000,1,'CPT'),(1312,6,-21600,0,'CST'),(1313,0,-25460,0,'LMT'),(1313,1,-25200,0,'MST'),(1313,2,-21600,0,'CST'),(1313,3,-18000,1,'CDT'),(1313,4,-21600,1,'MDT'),(1313,5,-25200,0,'MST'),(1314,0,-21988,0,'LMT'),(1314,1,-18000,1,'CDT'),(1314,2,-21600,0,'CST'),(1314,3,-18000,1,'CWT'),(1314,4,-18000,1,'CPT'),(1314,5,-18000,0,'EST'),(1315,0,-15408,0,'LMT'),(1315,1,-15408,0,'CMT'),(1315,2,-14400,0,'-04'),(1315,3,-10800,1,'-03'),(1315,4,-7200,1,'-02'),(1315,5,-10800,0,'-03'),(1316,0,-20173,0,'LMT'),(1316,1,-20173,0,'SJMT'),(1316,2,-18000,1,'CDT'),(1316,3,-21600,0,'CST'),(1317,0,-27964,0,'LMT'),(1317,1,-25200,0,'MST'),(1317,2,-28800,0,'PST'),(1317,3,-25200,0,'MST'),(1318,0,-13460,0,'LMT'),(1318,1,-10800,1,'-03'),(1318,2,-14400,0,'-04'),(1319,0,-16547,0,'LMT'),(1319,1,-16200,0,'-0430'),(1319,2,-14400,0,'AST'),(1320,0,-4480,0,'LMT'),(1320,1,-10800,0,'-03'),(1320,2,-10800,0,'-03'),(1320,3,-7200,1,'-02'),(1320,4,-7200,1,'-02'),(1320,5,0,0,'GMT'),(1321,0,-33460,0,'LMT'),(1321,1,-28800,1,'YDT'),(1321,2,-32400,0,'YST'),(1321,3,-28800,1,'YWT'),(1321,4,-28800,1,'YPT'),(1321,5,-25200,1,'YDDT'),(1321,6,-28800,0,'PST'),(1321,7,-25200,1,'PDT'),(1321,8,-25200,0,'MST'),(1322,0,-28856,0,'LMT'),(1322,1,-25200,1,'PDT'),(1322,2,-28800,0,'PST'),(1322,3,-25200,1,'PWT'),(1322,4,-25200,1,'PPT'),(1322,5,-25200,0,'MST'),(1323,0,-25196,0,'LMT'),(1323,1,-21600,1,'MDT'),(1323,2,-25200,0,'MST'),(1323,3,-21600,1,'MWT'),(1323,4,-21600,1,'MPT'),(1324,0,-19931,0,'LMT'),(1324,1,-21600,0,'CST'),(1324,2,-18000,0,'EST'),(1324,3,-14400,1,'EWT'),(1324,4,-14400,1,'EPT'),(1324,5,-14400,1,'EDT'),(1325,0,-14764,0,'LMT'),(1325,1,-14400,0,'AST'),(1326,0,-27232,0,'LMT'),(1326,1,-21600,1,'MDT'),(1326,2,-25200,0,'MST'),(1326,3,-21600,1,'MWT'),(1326,4,-21600,1,'MPT'),(1327,0,-16768,0,'LMT'),(1327,1,-14400,1,'-04'),(1327,2,-18000,0,'-05'),(1327,3,-14400,0,'-04'),(1327,4,-18000,0,'-05'),(1328,0,-21408,0,'LMT'),(1328,1,-18000,1,'CDT'),(1328,2,-21600,0,'CST'),(1329,0,-28084,0,'LMT'),(1329,1,-25200,0,'MST'),(1329,2,-28800,0,'PST'),(1329,3,-25200,1,'PDT'),(1329,4,-25200,1,'PWT'),(1329,5,-25200,1,'PPT'),(1330,0,-29447,0,'LMT'),(1330,1,-25200,1,'PDT'),(1330,2,-28800,0,'PST'),(1330,3,-25200,1,'PWT'),(1330,4,-25200,1,'PPT'),(1330,5,-25200,0,'MST'),(1331,0,-20678,0,'LMT'),(1331,1,-18000,1,'CDT'),(1331,2,-21600,0,'CST'),(1331,3,-18000,1,'CWT'),(1331,4,-18000,1,'CPT'),(1331,5,-18000,0,'EST'),(1331,6,-14400,1,'EDT'),(1332,0,-9240,0,'LMT'),(1332,1,-7200,1,'-02'),(1332,2,-10800,0,'-03'),(1333,0,-14388,0,'LMT'),(1333,1,-10800,1,'ADT'),(1333,2,-14400,0,'AST'),(1333,3,-10800,1,'AWT'),(1333,4,-10800,1,'APT'),(1334,0,-12416,0,'LMT'),(1334,1,-10800,0,'-03'),(1334,2,-10800,0,'-03'),(1334,3,-7200,1,'-02'),(1334,4,-7200,1,'-02'),(1335,0,-14500,0,'LMT'),(1335,1,-12652,0,'NST'),(1335,2,-9052,1,'NDT'),(1335,3,-12600,0,'NST'),(1335,4,-9000,1,'NDT'),(1335,5,-9000,1,'NPT'),(1335,6,-9000,1,'NWT'),(1335,7,-10800,1,'ADT'),(1335,8,-14400,0,'AST'),(1335,9,-7200,1,'ADDT'),(1335,10,-10800,1,'ADT'),(1336,0,-17072,0,'LMT'),(1336,1,-18430,0,'KMT'),(1336,2,-18000,0,'EST'),(1336,3,-14400,1,'EDT'),(1336,4,-14400,0,'AST'),(1336,5,-18000,0,'EST'),(1337,0,-14764,0,'LMT'),(1337,1,-14400,0,'AST'),(1338,0,-14764,0,'LMT'),(1338,1,-14400,0,'AST'),(1339,0,-21724,0,'LMT'),(1339,1,-18000,1,'CDT'),(1339,2,-21600,0,'CST'),(1340,0,-19160,0,'LMT'),(1340,1,-18840,0,'QMT'),(1340,2,-14400,1,'-04'),(1340,3,-18000,0,'-05'),(1341,0,-13960,0,'LMT'),(1341,1,-13500,0,'-0345'),(1341,2,-10800,0,'-03'),(1341,3,-14400,0,'-04'),(1342,0,-15264,0,'LMT'),(1342,1,-10800,1,'ADT'),(1342,2,-14400,0,'AST'),(1342,3,-10800,1,'AWT'),(1342,4,-10800,1,'APT'),(1343,0,-19768,0,'LMT'),(1343,1,-19776,0,'HMT'),(1343,2,-14400,1,'CDT'),(1343,3,-18000,0,'CST'),(1343,4,-18000,0,'CST'),(1343,5,-14400,1,'CDT'),(1344,0,-26632,0,'LMT'),(1344,1,-25200,0,'MST'),(1344,2,-21600,0,'CST'),(1344,3,-28800,0,'PST'),(1344,4,-21600,1,'MDT'),(1344,5,-25200,0,'MST'),(1345,0,-20678,0,'LMT'),(1345,1,-18000,1,'CDT'),(1345,2,-21600,0,'CST'),(1345,3,-18000,1,'CWT'),(1345,4,-18000,1,'CPT'),(1345,5,-18000,0,'EST'),(1345,6,-14400,1,'EDT'),(1346,0,-20790,0,'LMT'),(1346,1,-18000,1,'CDT'),(1346,2,-21600,0,'CST'),(1346,3,-18000,1,'CWT'),(1346,4,-18000,1,'CPT'),(1346,5,-18000,0,'EST'),(1346,6,-21600,0,'CST'),(1347,0,-20723,0,'LMT'),(1347,1,-18000,1,'CDT'),(1347,2,-21600,0,'CST'),(1347,3,-18000,1,'CWT'),(1347,4,-18000,1,'CPT'),(1347,5,-18000,0,'EST'),(1347,6,-14400,1,'EDT'),(1348,0,-20947,0,'LMT'),(1348,1,-18000,1,'CDT'),(1348,2,-21600,0,'CST'),(1348,3,-18000,1,'CWT'),(1348,4,-18000,1,'CPT'),(1348,5,-18000,0,'EST'),(1348,6,-14400,1,'EDT'),(1349,0,-20823,0,'LMT'),(1349,1,-18000,1,'CDT'),(1349,2,-21600,0,'CST'),(1349,3,-18000,1,'CWT'),(1349,4,-18000,1,'CPT'),(1349,5,-18000,0,'EST'),(1349,6,-14400,1,'EDT'),(1349,7,-18000,1,'CDT'),(1349,8,-21600,0,'CST'),(1350,0,-20416,0,'LMT'),(1350,1,-18000,1,'CDT'),(1350,2,-21600,0,'CST'),(1350,3,-18000,1,'CWT'),(1350,4,-18000,1,'CPT'),(1350,5,-18000,0,'EST'),(1350,6,-14400,1,'EDT'),(1351,0,-21007,0,'LMT'),(1351,1,-18000,1,'CDT'),(1351,2,-21600,0,'CST'),(1351,3,-18000,1,'CWT'),(1351,4,-18000,1,'CPT'),(1351,5,-18000,0,'EST'),(1351,6,-14400,1,'EDT'),(1352,0,-20785,0,'LMT'),(1352,1,-18000,1,'CDT'),(1352,2,-21600,0,'CST'),(1352,3,-18000,1,'CWT'),(1352,4,-18000,1,'CPT'),(1352,5,-18000,0,'EST'),(1352,6,-14400,1,'EDT'),(1353,0,-20678,0,'LMT'),(1353,1,-18000,1,'CDT'),(1353,2,-21600,0,'CST'),(1353,3,-18000,1,'CWT'),(1353,4,-18000,1,'CPT'),(1353,5,-18000,0,'EST'),(1353,6,-14400,1,'EDT'),(1354,0,0,0,'-00'),(1354,1,-21600,1,'PDDT'),(1354,2,-28800,0,'PST'),(1354,3,-25200,0,'MST'),(1354,4,-21600,1,'MDT'),(1355,0,0,0,'-00'),(1355,1,-14400,1,'EPT'),(1355,2,-18000,0,'EST'),(1355,3,-10800,1,'EDDT'),(1355,4,-14400,1,'EDT'),(1355,5,-14400,1,'EWT'),(1355,6,-21600,0,'CST'),(1355,7,-18000,1,'CDT'),(1355,8,-14400,1,'EDT'),(1355,9,-18000,0,'EST'),(1356,0,-18430,0,'LMT'),(1356,1,-18430,0,'KMT'),(1356,2,-18000,0,'EST'),(1356,3,-14400,1,'EDT'),(1357,0,-15672,0,'LMT'),(1357,1,-15408,0,'CMT'),(1357,2,-14400,0,'-04'),(1357,3,-10800,1,'-03'),(1357,4,-7200,1,'-02'),(1357,5,-10800,0,'-03'),(1358,0,-32261,0,'LMT'),(1358,1,-28800,0,'PST'),(1358,2,-25200,1,'PWT'),(1358,3,-25200,1,'PPT'),(1358,4,-25200,1,'PDT'),(1358,5,-28800,1,'YDT'),(1358,6,-32400,0,'YST'),(1358,7,-28800,1,'AKDT'),(1358,8,-32400,0,'AKST'),(1359,0,-20582,0,'LMT'),(1359,1,-18000,1,'CDT'),(1359,2,-21600,0,'CST'),(1359,3,-18000,1,'CWT'),(1359,4,-18000,1,'CPT'),(1359,5,-18000,0,'EST'),(1359,6,-14400,1,'EDT'),(1360,0,-20364,0,'LMT'),(1360,1,-18000,1,'CDT'),(1360,2,-21600,0,'CST'),(1360,3,-18000,1,'CWT'),(1360,4,-18000,1,'CPT'),(1360,5,-14400,1,'EDT'),(1360,6,-18000,0,'EST'),(1361,0,-20790,0,'LMT'),(1361,1,-18000,1,'CDT'),(1361,2,-21600,0,'CST'),(1361,3,-18000,1,'CWT'),(1361,4,-18000,1,'CPT'),(1361,5,-18000,0,'EST'),(1361,6,-21600,0,'CST'),(1362,0,-16547,0,'LMT'),(1362,1,-16200,0,'-0430'),(1362,2,-14400,0,'AST'),(1363,0,-16356,0,'LMT'),(1363,1,-16356,0,'CMT'),(1363,2,-12756,1,'BST'),(1363,3,-14400,0,'-04'),(1364,0,-18492,0,'LMT'),(1364,1,-18516,0,'LMT'),(1364,2,-14400,1,'-04'),(1364,3,-18000,0,'-05'),(1365,0,-28378,0,'LMT'),(1365,1,-25200,1,'PDT'),(1365,2,-28800,0,'PST'),(1365,3,-25200,1,'PWT'),(1365,4,-25200,1,'PPT'),(1366,0,-20582,0,'LMT'),(1366,1,-18000,1,'CDT'),(1366,2,-21600,0,'CST'),(1366,3,-18000,1,'CWT'),(1366,4,-18000,1,'CPT'),(1366,5,-18000,0,'EST'),(1366,6,-14400,1,'EDT'),(1367,0,-16547,0,'LMT'),(1367,1,-16200,0,'-0430'),(1367,2,-14400,0,'AST'),(1368,0,-8572,0,'LMT'),(1368,1,-7200,1,'-02'),(1368,2,-10800,0,'-03'),(1369,0,-20708,0,'LMT'),(1369,1,-20712,0,'MMT'),(1369,2,-21600,0,'CST'),(1369,3,-18000,0,'EST'),(1369,4,-18000,1,'CDT'),(1369,5,-21600,0,'CST'),(1370,0,-14404,0,'LMT'),(1370,1,-10800,1,'-03'),(1370,2,-14400,0,'-04'),(1371,0,-14764,0,'LMT'),(1371,1,-14400,0,'AST'),(1372,0,-14660,0,'LMT'),(1372,1,-14660,0,'FFMT'),(1372,2,-14400,0,'AST'),(1372,3,-10800,1,'ADT'),(1373,0,-24000,0,'LMT'),(1373,1,-21600,0,'CST'),(1373,2,-18000,1,'CDT'),(1374,0,-25540,0,'LMT'),(1374,1,-25200,0,'MST'),(1374,2,-21600,0,'CST'),(1374,3,-28800,0,'PST'),(1374,4,-21600,1,'MDT'),(1374,5,-25200,0,'MST'),(1375,0,-16516,0,'LMT'),(1375,1,-15408,0,'CMT'),(1375,2,-14400,0,'-04'),(1375,3,-10800,1,'-03'),(1375,4,-7200,1,'-02'),(1375,5,-10800,0,'-03'),(1376,0,-21027,0,'LMT'),(1376,1,-18000,1,'CDT'),(1376,2,-21600,0,'CST'),(1376,3,-18000,1,'CWT'),(1376,4,-18000,1,'CPT'),(1376,5,-18000,0,'EST'),(1376,6,-21600,0,'CST'),(1377,0,-21508,0,'LMT'),(1377,1,-21600,0,'CST'),(1377,2,-18000,0,'EST'),(1377,3,-18000,1,'CDT'),(1377,4,-21600,0,'CST'),(1378,0,-31578,0,'LMT'),(1378,1,-28800,0,'PST'),(1378,2,-25200,1,'PWT'),(1378,3,-25200,1,'PPT'),(1378,4,-25200,1,'PDT'),(1378,5,-32400,0,'AKST'),(1378,6,-28800,1,'AKDT'),(1379,0,-23796,0,'LMT'),(1379,1,-25200,0,'MST'),(1379,2,-21600,0,'CST'),(1379,3,-18000,1,'CDT'),(1379,4,-18000,1,'CWT'),(1380,0,-13480,0,'LMT'),(1380,1,-14400,0,'AST'),(1380,2,-10800,0,'-03'),(1380,3,-7200,1,'-02'),(1381,0,-15548,0,'LMT'),(1381,1,-18000,0,'EST'),(1381,2,-10800,1,'ADT'),(1381,3,-14400,0,'AST'),(1381,4,-10800,1,'AWT'),(1381,5,-10800,1,'APT'),(1382,0,-24076,0,'LMT'),(1382,1,-21600,0,'CST'),(1382,2,-18000,1,'CDT'),(1383,0,-13491,0,'LMT'),(1383,1,-13491,0,'MMT'),(1383,2,-14400,0,'-04'),(1383,3,-12600,0,'-0330'),(1383,4,-10800,1,'-03'),(1383,5,-10800,0,'-03'),(1383,6,-9000,1,'-0230'),(1383,7,-7200,1,'-02'),(1383,8,-5400,1,'-0130'),(1383,9,-7200,1,'-02'),(1384,0,-19052,0,'LMT'),(1384,1,-14400,1,'EDT'),(1384,2,-18000,0,'EST'),(1384,3,-14400,1,'EWT'),(1384,4,-14400,1,'EPT'),(1385,0,-14764,0,'LMT'),(1385,1,-14400,0,'AST'),(1386,0,-18570,0,'LMT'),(1386,1,-14400,1,'EWT'),(1386,2,-18000,0,'EST'),(1386,3,-14400,1,'EPT'),(1386,4,-14400,1,'EDT'),(1387,0,-17762,0,'LMT'),(1387,1,-14400,1,'EDT'),(1387,2,-18000,0,'EST'),(1387,3,-14400,1,'EWT'),(1387,4,-14400,1,'EPT'),(1388,0,-21184,0,'LMT'),(1388,1,-14400,1,'EDT'),(1388,2,-18000,0,'EST'),(1388,3,-14400,1,'EWT'),(1388,4,-14400,1,'EPT'),(1389,0,-39698,0,'LMT'),(1389,1,-39600,0,'NST'),(1389,2,-36000,1,'NWT'),(1389,3,-36000,1,'NPT'),(1389,4,-39600,0,'BST'),(1389,5,-36000,1,'BDT'),(1389,6,-32400,0,'YST'),(1389,7,-28800,1,'AKDT'),(1389,8,-32400,0,'AKST'),(1390,0,-7780,0,'LMT'),(1390,1,-3600,1,'-01'),(1390,2,-7200,0,'-02'),(1391,0,-24427,0,'LMT'),(1391,1,-21600,1,'MDT'),(1391,2,-25200,0,'MST'),(1391,3,-21600,1,'MWT'),(1391,4,-21600,1,'MPT'),(1391,5,-18000,1,'CDT'),(1391,6,-21600,0,'CST'),(1392,0,-24312,0,'LMT'),(1392,1,-21600,1,'MDT'),(1392,2,-25200,0,'MST'),(1392,3,-21600,1,'MWT'),(1392,4,-21600,1,'MPT'),(1392,5,-18000,1,'CDT'),(1392,6,-21600,0,'CST'),(1393,0,-24339,0,'LMT'),(1393,1,-21600,1,'MDT'),(1393,2,-25200,0,'MST'),(1393,3,-21600,1,'MWT'),(1393,4,-21600,1,'MPT'),(1393,5,-18000,1,'CDT'),(1393,6,-21600,0,'CST'),(1394,0,-12416,0,'LMT'),(1394,1,-10800,0,'-03'),(1394,2,-10800,0,'-03'),(1394,3,-7200,1,'-02'),(1394,4,-7200,1,'-02'),(1395,0,-25060,0,'LMT'),(1395,1,-25200,0,'MST'),(1395,2,-21600,0,'CST'),(1395,3,-18000,1,'CDT'),(1395,4,-21600,1,'MDT'),(1395,5,-25200,0,'MST'),(1396,0,-19088,0,'LMT'),(1396,1,-19176,0,'CMT'),(1396,2,-18000,0,'EST'),(1397,0,0,0,'-00'),(1397,1,-10800,1,'AWT'),(1397,2,-10800,1,'APT'),(1397,3,-14400,0,'AST'),(1397,4,-7200,1,'ADDT'),(1397,5,-10800,1,'ADT'),(1397,6,-14400,1,'EDT'),(1397,7,-18000,0,'EST'),(1397,8,-21600,0,'CST'),(1397,9,-18000,1,'CDT'),(1397,10,-14400,1,'EDT'),(1397,11,-18000,0,'EST'),(1398,0,-13240,0,'LMT'),(1398,1,-13252,0,'PMT'),(1398,2,-13236,0,'PMT'),(1398,3,-12600,0,'-0330'),(1398,4,-10800,0,'-03'),(1399,0,-26898,0,'LMT'),(1399,1,-21600,1,'MDT'),(1399,2,-25200,0,'MST'),(1399,3,-21600,1,'MWT'),(1400,0,-17360,0,'LMT'),(1400,1,-17340,0,'PPMT'),(1400,2,-14400,1,'EDT'),(1400,3,-18000,0,'EST'),(1400,4,-14400,1,'EDT'),(1400,5,-18000,0,'EST'),(1401,0,-14764,0,'LMT'),(1401,1,-14400,0,'AST'),(1402,0,-16272,0,'LMT'),(1402,1,-14400,1,'-04'),(1402,2,-18000,0,'-05'),(1402,3,-14400,0,'-04'),(1402,4,-18000,0,'-05'),(1403,0,-15336,0,'LMT'),(1403,1,-10800,1,'-03'),(1403,2,-14400,0,'-04'),(1404,0,-15865,0,'LMT'),(1404,1,-14400,0,'AST'),(1404,2,-10800,1,'APT'),(1404,3,-10800,1,'AWT'),(1405,0,-17020,0,'LMT'),(1405,1,-16966,0,'SMT'),(1405,2,-18000,0,'-05'),(1405,3,-14400,0,'-04'),(1405,4,-14400,1,'-04'),(1405,5,-10800,1,'-03'),(1405,6,-14400,0,'-04'),(1405,7,-10800,0,'-03'),(1406,0,-22696,0,'LMT'),(1406,1,-18000,1,'CDT'),(1406,2,-21600,0,'CST'),(1406,3,-18000,1,'CWT'),(1406,4,-18000,1,'CPT'),(1407,0,0,0,'-00'),(1407,1,-14400,1,'CDDT'),(1407,2,-21600,0,'CST'),(1407,3,-18000,1,'CDT'),(1407,4,-18000,0,'EST'),(1407,5,-21600,0,'CST'),(1408,0,-8376,0,'LMT'),(1408,1,-7200,1,'-02'),(1408,2,-10800,0,'-03'),(1409,0,-25116,0,'LMT'),(1409,1,-21600,1,'MDT'),(1409,2,-25200,0,'MST'),(1409,3,-21600,1,'MWT'),(1409,4,-21600,1,'MPT'),(1409,5,-21600,0,'CST'),(1410,0,0,0,'-00'),(1410,1,-14400,1,'CDDT'),(1410,2,-21600,0,'CST'),(1410,3,-18000,1,'CDT'),(1410,4,-18000,0,'EST'),(1410,5,-21600,0,'CST'),(1411,0,-16272,0,'LMT'),(1411,1,-14400,1,'-04'),(1411,2,-18000,0,'-05'),(1411,3,-14400,0,'-04'),(1411,4,-18000,0,'-05'),(1412,0,-15408,0,'LMT'),(1412,1,-15408,0,'CMT'),(1412,2,-14400,0,'-04'),(1412,3,-10800,1,'-03'),(1412,4,-7200,1,'-02'),(1412,5,-10800,0,'-03'),(1413,0,-28084,0,'LMT'),(1413,1,-25200,0,'MST'),(1413,2,-28800,0,'PST'),(1413,3,-25200,1,'PDT'),(1413,4,-25200,1,'PWT'),(1413,5,-25200,1,'PPT'),(1414,0,-13128,0,'LMT'),(1414,1,-10800,1,'-03'),(1414,2,-14400,0,'-04'),(1414,3,-10800,0,'-03'),(1415,0,-16966,0,'LMT'),(1415,1,-16966,0,'SMT'),(1415,2,-18000,0,'-05'),(1415,3,-14400,0,'-04'),(1415,4,-14400,1,'-04'),(1415,5,-10800,1,'-03'),(1415,6,-10800,1,'-03'),(1415,7,-14400,0,'-04'),(1416,0,-16776,0,'LMT'),(1416,1,-16800,0,'SDMT'),(1416,2,-14400,1,'EDT'),(1416,3,-18000,0,'EST'),(1416,4,-16200,1,'-0430'),(1416,5,-14400,0,'AST'),(1417,0,-11188,0,'LMT'),(1417,1,-7200,1,'-02'),(1417,2,-10800,0,'-03'),(1418,0,-5272,0,'LMT'),(1418,1,-7200,0,'-02'),(1418,2,-3600,1,'-01'),(1418,3,-7200,0,'-02'),(1418,4,-3600,0,'-01'),(1418,5,0,1,'+00'),(1418,6,0,1,'+00'),(1419,0,-25196,0,'LMT'),(1419,1,-21600,1,'MDT'),(1419,2,-25200,0,'MST'),(1419,3,-21600,1,'MWT'),(1419,4,-21600,1,'MPT'),(1420,0,-32473,0,'LMT'),(1420,1,-28800,0,'PST'),(1420,2,-25200,1,'PWT'),(1420,3,-25200,1,'PPT'),(1420,4,-25200,1,'PDT'),(1420,5,-32400,0,'YST'),(1420,6,-28800,1,'AKDT'),(1420,7,-32400,0,'AKST'),(1421,0,-14764,0,'LMT'),(1421,1,-14400,0,'AST'),(1422,0,-12652,0,'LMT'),(1422,1,-9052,1,'NDT'),(1422,2,-12652,0,'NST'),(1422,3,-9000,1,'NDT'),(1422,4,-12600,0,'NST'),(1422,5,-9000,1,'NPT'),(1422,6,-9000,1,'NWT'),(1422,7,-5400,1,'NDDT'),(1422,8,-9000,1,'NDT'),(1423,0,-14764,0,'LMT'),(1423,1,-14400,0,'AST'),(1424,0,-14764,0,'LMT'),(1424,1,-14400,0,'AST'),(1425,0,-14764,0,'LMT'),(1425,1,-14400,0,'AST'),(1426,0,-14764,0,'LMT'),(1426,1,-14400,0,'AST'),(1427,0,-25880,0,'LMT'),(1427,1,-21600,1,'MDT'),(1427,2,-25200,0,'MST'),(1427,3,-21600,1,'MWT'),(1427,4,-21600,1,'MPT'),(1427,5,-21600,0,'CST'),(1428,0,-20932,0,'LMT'),(1428,1,-18000,1,'CDT'),(1428,2,-21600,0,'CST'),(1429,0,-16508,0,'LMT'),(1429,1,-10800,1,'ADT'),(1429,2,-14400,0,'AST'),(1430,0,-21420,0,'LMT'),(1430,1,-21600,0,'CST'),(1430,2,-18000,0,'EST'),(1430,3,-14400,1,'EWT'),(1430,4,-14400,1,'EPT'),(1430,5,-14400,1,'EDT'),(1431,0,-28084,0,'LMT'),(1431,1,-25200,0,'MST'),(1431,2,-28800,0,'PST'),(1431,3,-25200,1,'PDT'),(1431,4,-25200,1,'PWT'),(1431,5,-25200,1,'PPT'),(1432,0,-19052,0,'LMT'),(1432,1,-14400,1,'EDT'),(1432,2,-18000,0,'EST'),(1432,3,-14400,1,'EWT'),(1432,4,-14400,1,'EPT'),(1433,0,-14764,0,'LMT'),(1433,1,-14400,0,'AST'),(1434,0,-29548,0,'LMT'),(1434,1,-25200,1,'PDT'),(1434,2,-28800,0,'PST'),(1434,3,-25200,1,'PWT'),(1434,4,-25200,1,'PPT'),(1435,0,-14764,0,'LMT'),(1435,1,-14400,0,'AST'),(1436,0,-32412,0,'LMT'),(1436,1,-28800,1,'YDT'),(1436,2,-32400,0,'YST'),(1436,3,-28800,1,'YWT'),(1436,4,-28800,1,'YPT'),(1436,5,-25200,1,'YDDT'),(1436,6,-28800,0,'PST'),(1436,7,-25200,1,'PDT'),(1436,8,-25200,0,'MST'),(1437,0,-23316,0,'LMT'),(1437,1,-18000,1,'CDT'),(1437,2,-21600,0,'CST'),(1437,3,-18000,1,'CWT'),(1437,4,-18000,1,'CPT'),(1437,5,-18000,1,'CDT'),(1437,6,-21600,0,'CST'),(1438,0,-33535,0,'LMT'),(1438,1,-32400,0,'YST'),(1438,2,-28800,1,'YWT'),(1438,3,-28800,1,'YPT'),(1438,4,-28800,1,'YDT'),(1438,5,-28800,1,'AKDT'),(1438,6,-32400,0,'AKST'),(1439,0,0,0,'-00'),(1439,1,-21600,1,'MWT'),(1439,2,-21600,1,'MPT'),(1439,3,-25200,0,'MST'),(1439,4,-18000,1,'MDDT'),(1439,5,-21600,1,'MDT'),(1440,0,0,0,'-00'),(1440,1,28800,0,'+08'),(1440,2,39600,0,'+11'),(1440,3,28800,0,'+08'),(1440,4,39600,0,'+11'),(1441,0,0,0,'-00'),(1441,1,25200,0,'+07'),(1441,2,18000,0,'+05'),(1441,3,25200,0,'+07'),(1442,0,0,0,'-00'),(1442,1,36000,0,'+10'),(1443,0,0,0,'-00'),(1443,1,36000,0,'AEST'),(1443,2,39600,1,'AEDT'),(1443,3,36000,0,'AEST'),(1443,4,0,0,'-00'),(1443,5,39600,1,'AEDT'),(1443,6,36000,0,'AEST'),(1444,0,0,0,'-00'),(1444,1,21600,0,'+06'),(1444,2,18000,0,'+05'),(1445,0,41944,0,'LMT'),(1445,1,45000,1,'NZST'),(1445,2,41400,0,'NZMT'),(1445,3,43200,1,'NZST'),(1445,4,46800,1,'NZDT'),(1445,5,43200,0,'NZST'),(1445,6,43200,0,'NZST'),(1446,0,0,0,'-00'),(1446,1,-14400,0,'-04'),(1446,2,-10800,1,'-03'),(1446,3,-7200,1,'-02'),(1446,4,-10800,0,'-03'),(1446,5,-10800,1,'-03'),(1446,6,-14400,0,'-04'),(1446,7,-10800,0,'-03'),(1447,0,0,0,'-00'),(1447,1,-10800,0,'-03'),(1448,0,41944,0,'LMT'),(1448,1,45000,1,'NZST'),(1448,2,41400,0,'NZMT'),(1448,3,43200,1,'NZST'),(1448,4,46800,1,'NZDT'),(1448,5,43200,0,'NZST'),(1448,6,43200,0,'NZST'),(1449,0,0,0,'-00'),(1449,1,10800,0,'+03'),(1450,0,0,0,'-00'),(1450,1,7200,1,'+02'),(1450,2,0,0,'+00'),(1450,3,0,0,'+00'),(1451,0,0,0,'-00'),(1451,1,21600,0,'+06'),(1452,0,2580,0,'LMT'),(1452,1,7200,1,'CEST'),(1452,2,3600,0,'CET'),(1452,3,3600,0,'CET'),(1452,4,7200,1,'CEST'),(1452,5,7200,1,'CEST'),(1452,6,3600,0,'CET'),(1453,0,11212,0,'LMT'),(1453,1,10800,0,'+03'),(1454,0,18468,0,'LMT'),(1454,1,18000,0,'+05'),(1454,2,25200,1,'+07'),(1454,3,21600,0,'+06'),(1454,4,21600,0,'+06'),(1454,5,25200,1,'+07'),(1454,6,21600,1,'+06'),(1454,7,18000,0,'+05'),(1454,8,25200,1,'+07'),(1454,9,21600,0,'+06'),(1455,0,8624,0,'LMT'),(1455,1,10800,1,'EEST'),(1455,2,7200,0,'EET'),(1455,3,7200,0,'EET'),(1455,4,10800,1,'EEST'),(1456,0,42596,0,'LMT'),(1456,1,43200,0,'+12'),(1456,2,50400,1,'+14'),(1456,3,46800,0,'+13'),(1456,4,46800,1,'+13'),(1456,5,43200,0,'+12'),(1456,6,46800,1,'+13'),(1456,7,43200,1,'+12'),(1456,8,39600,0,'+11'),(1456,9,43200,0,'+12'),(1457,0,12064,0,'LMT'),(1457,1,14400,0,'+04'),(1457,2,18000,0,'+05'),(1457,3,21600,0,'+06'),(1457,4,21600,1,'+06'),(1457,5,18000,0,'+05'),(1457,6,21600,1,'+06'),(1457,7,18000,1,'+05'),(1457,8,14400,0,'+04'),(1457,9,18000,0,'+05'),(1458,0,13720,0,'LMT'),(1458,1,14400,0,'+04'),(1458,2,18000,0,'+05'),(1458,3,21600,1,'+06'),(1458,4,21600,0,'+06'),(1458,5,18000,0,'+05'),(1458,6,21600,1,'+06'),(1458,7,18000,1,'+05'),(1458,8,14400,0,'+04'),(1458,9,21600,1,'+06'),(1458,10,18000,0,'+05'),(1459,0,14012,0,'LMT'),(1459,1,14400,0,'+04'),(1459,2,21600,1,'+06'),(1459,3,18000,0,'+05'),(1459,4,18000,0,'+05'),(1459,5,21600,1,'+06'),(1459,6,18000,1,'+05'),(1459,7,14400,0,'+04'),(1459,8,18000,0,'+05'),(1460,0,14012,0,'LMT'),(1460,1,14400,0,'+04'),(1460,2,21600,1,'+06'),(1460,3,18000,0,'+05'),(1460,4,18000,0,'+05'),(1460,5,21600,1,'+06'),(1460,6,18000,1,'+05'),(1460,7,14400,0,'+04'),(1460,8,18000,0,'+05'),(1461,0,12464,0,'LMT'),(1461,1,10800,0,'+03'),(1461,2,18000,0,'+05'),(1461,3,21600,0,'+06'),(1461,4,21600,1,'+06'),(1461,5,18000,0,'+05'),(1461,6,21600,1,'+06'),(1461,7,18000,1,'+05'),(1461,8,14400,0,'+04'),(1461,9,18000,0,'+05'),(1462,0,10660,0,'LMT'),(1462,1,10656,0,'BMT'),(1462,2,10800,0,'+03'),(1462,3,14400,1,'+04'),(1462,4,10800,0,'+03'),(1462,5,14400,1,'+04'),(1463,0,12368,0,'LMT'),(1463,1,14400,0,'+04'),(1463,2,10800,0,'+03'),(1464,0,11964,0,'LMT'),(1464,1,10800,0,'+03'),(1464,2,18000,1,'+05'),(1464,3,14400,0,'+04'),(1464,4,14400,0,'+04'),(1464,5,18000,1,'+05'),(1464,6,14400,1,'+04'),(1464,7,10800,0,'+03'),(1464,8,18000,1,'+05'),(1464,9,14400,0,'+04'),(1465,0,24124,0,'LMT'),(1465,1,24124,0,'BMT'),(1465,2,25200,0,'+07'),(1466,0,20100,0,'LMT'),(1466,1,21600,0,'+06'),(1466,2,28800,1,'+08'),(1466,3,25200,0,'+07'),(1466,4,25200,0,'+07'),(1466,5,28800,1,'+08'),(1466,6,25200,1,'+07'),(1466,7,21600,0,'+06'),(1466,8,25200,1,'+07'),(1466,9,25200,0,'+07'),(1467,0,8520,0,'LMT'),(1467,1,10800,1,'EEST'),(1467,2,7200,0,'EET'),(1468,0,17904,0,'LMT'),(1468,1,18000,0,'+05'),(1468,2,25200,1,'+07'),(1468,3,21600,0,'+06'),(1468,4,21600,0,'+06'),(1468,5,25200,1,'+07'),(1468,6,21600,1,'+06'),(1468,7,21600,1,'+06'),(1469,0,27580,0,'LMT'),(1469,1,27000,0,'+0730'),(1469,2,28800,0,'+08'),(1470,0,21200,0,'HMT'),(1470,1,19270,0,'MMT'),(1470,2,19800,0,'IST'),(1470,3,23400,1,'+0630'),(1471,0,27232,0,'LMT'),(1471,1,28800,0,'+08'),(1471,2,36000,1,'+10'),(1471,3,32400,0,'+09'),(1471,4,32400,0,'+09'),(1471,5,36000,1,'+10'),(1471,6,32400,1,'+09'),(1471,7,28800,0,'+08'),(1471,8,36000,0,'+10'),(1471,9,36000,1,'+10'),(1471,10,32400,0,'+09'),(1472,0,27480,0,'LMT'),(1472,1,25200,0,'+07'),(1472,2,28800,0,'+08'),(1472,3,32400,0,'+09'),(1472,4,36000,1,'+10'),(1472,5,32400,1,'+09'),(1472,6,28800,0,'+08'),(1473,0,29143,0,'LMT'),(1473,1,32400,1,'CDT'),(1473,2,28800,0,'CST'),(1474,0,29143,0,'LMT'),(1474,1,32400,1,'CDT'),(1474,2,28800,0,'CST'),(1475,0,19164,0,'LMT'),(1475,1,19172,0,'MMT'),(1475,2,19800,0,'+0530'),(1475,3,21600,1,'+06'),(1475,4,23400,1,'+0630'),(1475,5,23400,0,'+0630'),(1475,6,21600,0,'+06'),(1475,7,19800,0,'+0530'),(1476,0,21700,0,'LMT'),(1476,1,21200,0,'HMT'),(1476,2,23400,0,'+0630'),(1476,3,19800,0,'+0530'),(1476,4,21600,0,'+06'),(1476,5,25200,1,'+07'),(1477,0,8712,0,'LMT'),(1477,1,10800,1,'EEST'),(1477,2,7200,0,'EET'),(1478,0,21700,0,'LMT'),(1478,1,21200,0,'HMT'),(1478,2,23400,0,'+0630'),(1478,3,19800,0,'+0530'),(1478,4,21600,0,'+06'),(1478,5,25200,1,'+07'),(1479,0,30140,0,'LMT'),(1479,1,28800,0,'+08'),(1479,2,32400,0,'+09'),(1480,0,13272,0,'LMT'),(1480,1,14400,0,'+04'),(1481,0,16512,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'),(1482,0,8148,0,'LMT'),(1482,1,10800,1,'EEST'),(1482,2,7200,0,'EET'),(1482,3,7200,0,'EET'),(1482,4,10800,1,'EEST'),(1482,5,10800,0,'+03'),(1482,6,7200,0,'EET'),(1483,0,8272,0,'LMT'),(1483,1,10800,1,'EEST'),(1483,2,7200,0,'EET'),(1483,3,7200,0,'EET'),(1483,4,10800,1,'EEST'),(1483,5,10800,1,'IDT'),(1483,6,7200,0,'IST'),(1483,7,10800,1,'IDT'),(1483,8,7200,0,'IST'),(1483,9,7200,0,'EET'),(1484,0,29143,0,'LMT'),(1484,1,32400,1,'CDT'),(1484,2,28800,0,'CST'),(1485,0,8423,0,'LMT'),(1485,1,10800,1,'EEST'),(1485,2,7200,0,'EET'),(1485,3,7200,0,'EET'),(1485,4,10800,1,'EEST'),(1485,5,10800,1,'IDT'),(1485,6,7200,0,'IST'),(1485,7,10800,1,'IDT'),(1485,8,7200,0,'IST'),(1485,9,7200,0,'EET'),(1486,0,25600,0,'LMT'),(1486,1,25590,0,'PLMT'),(1486,2,25200,0,'+07'),(1486,3,28800,0,'+08'),(1486,4,32400,0,'+09'),(1486,5,25200,0,'+07'),(1487,0,27402,0,'LMT'),(1487,1,28800,0,'HKT'),(1487,2,32400,1,'HKST'),(1487,3,30600,1,'HKWT'),(1487,4,32400,0,'JST'),(1487,5,28800,0,'HKT'),(1487,6,32400,1,'HKST'),(1488,0,21996,0,'LMT'),(1488,1,21600,0,'+06'),(1488,2,28800,1,'+08'),(1488,3,25200,0,'+07'),(1489,0,25025,0,'LMT'),(1489,1,25025,0,'IMT'),(1489,2,25200,0,'+07'),(1489,3,32400,1,'+09'),(1489,4,28800,0,'+08'),(1489,5,28800,0,'+08'),(1489,6,32400,1,'+09'),(1489,7,28800,1,'+08'),(1489,8,25200,0,'+07'),(1489,9,32400,0,'+09'),(1489,10,32400,1,'+09'),(1489,11,28800,0,'+08'),(1490,0,6952,0,'LMT'),(1490,1,7016,0,'IMT'),(1490,2,10800,1,'EEST'),(1490,3,7200,0,'EET'),(1490,4,10800,0,'+03'),(1490,5,14400,1,'+04'),(1490,6,10800,1,'EEST'),(1490,7,7200,0,'EET'),(1490,8,10800,1,'EEST'),(1490,9,7200,0,'EET'),(1490,10,10800,0,'+03'),(1491,0,25632,0,'LMT'),(1491,1,25632,0,'BMT'),(1491,2,26400,0,'+0720'),(1491,3,27000,0,'+0730'),(1491,4,32400,0,'+09'),(1491,5,28800,0,'+08'),(1491,6,25200,0,'WIB'),(1492,0,33768,0,'LMT'),(1492,1,32400,0,'+09'),(1492,2,34200,0,'+0930'),(1492,3,32400,0,'WIT'),(1493,0,8454,0,'LMT'),(1493,1,8440,0,'JMT'),(1493,2,10800,1,'IDT'),(1493,3,7200,0,'IST'),(1493,4,14400,1,'IDDT'),(1493,5,10800,1,'IDT'),(1493,6,7200,0,'IST'),(1493,7,10800,1,'IDT'),(1493,8,7200,0,'IST'),(1494,0,16608,0,'LMT'),(1494,1,14400,0,'+04'),(1494,2,16200,0,'+0430'),(1495,0,38076,0,'LMT'),(1495,1,39600,0,'+11'),(1495,2,46800,1,'+13'),(1495,3,43200,0,'+12'),(1495,4,43200,0,'+12'),(1495,5,46800,1,'+13'),(1495,6,43200,1,'+12'),(1495,7,39600,0,'+11'),(1495,8,43200,0,'+12'),(1496,0,16092,0,'LMT'),(1496,1,19800,0,'+0530'),(1496,2,23400,1,'+0630'),(1496,3,18000,0,'+05'),(1496,4,21600,1,'PKST'),(1496,5,18000,0,'PKT'),(1497,0,21020,0,'LMT'),(1497,1,21600,0,'+06'),(1498,0,20476,0,'LMT'),(1498,1,19800,0,'+0530'),(1498,2,20700,0,'+0545'),(1499,0,20476,0,'LMT'),(1499,1,19800,0,'+0530'),(1499,2,20700,0,'+0545'),(1500,0,32533,0,'LMT'),(1500,1,28800,0,'+08'),(1500,2,36000,1,'+10'),(1500,3,32400,0,'+09'),(1500,4,32400,0,'+09'),(1500,5,36000,1,'+10'),(1500,6,32400,1,'+09'),(1500,7,28800,0,'+08'),(1500,8,39600,1,'+11'),(1500,9,36000,0,'+10'),(1500,10,36000,0,'+10'),(1500,11,39600,0,'+11'),(1500,12,32400,0,'+09'),(1501,0,21200,0,'HMT'),(1501,1,19270,0,'MMT'),(1501,2,19800,0,'IST'),(1501,3,23400,1,'+0630'),(1502,0,22286,0,'LMT'),(1502,1,21600,0,'+06'),(1502,2,28800,1,'+08'),(1502,3,25200,0,'+07'),(1502,4,25200,0,'+07'),(1502,5,28800,1,'+08'),(1502,6,25200,1,'+07'),(1502,7,21600,0,'+06'),(1502,8,28800,0,'+08'),(1502,9,28800,1,'+08'),(1502,10,25200,0,'+07'),(1503,0,24406,0,'LMT'),(1503,1,24925,0,'SMT'),(1503,2,25200,0,'+07'),(1503,3,26400,1,'+0720'),(1503,4,26400,0,'+0720'),(1503,5,27000,0,'+0730'),(1503,6,32400,0,'+09'),(1503,7,28800,0,'+08'),(1504,0,26480,0,'LMT'),(1504,1,27000,0,'+0730'),(1504,2,30000,1,'+0820'),(1504,3,28800,0,'+08'),(1504,4,32400,0,'+09'),(1504,5,28800,0,'+08'),(1505,0,11212,0,'LMT'),(1505,1,10800,0,'+03'),(1506,0,27250,0,'LMT'),(1506,1,28800,0,'CST'),(1506,2,36000,1,'+10'),(1506,3,32400,0,'+09'),(1506,4,32400,1,'CDT'),(1506,5,28800,0,'CST'),(1506,6,32400,1,'CDT'),(1507,0,27250,0,'LMT'),(1507,1,28800,0,'CST'),(1507,2,36000,1,'+10'),(1507,3,32400,0,'+09'),(1507,4,32400,1,'CDT'),(1507,5,28800,0,'CST'),(1507,6,32400,1,'CDT'),(1508,0,36192,0,'LMT'),(1508,1,36000,0,'+10'),(1508,2,43200,1,'+12'),(1508,3,39600,0,'+11'),(1508,4,39600,0,'+11'),(1508,5,43200,1,'+12'),(1508,6,39600,1,'+11'),(1508,7,36000,0,'+10'),(1508,8,43200,0,'+12'),(1508,9,43200,1,'+12'),(1508,10,39600,0,'+11'),(1509,0,28656,0,'LMT'),(1509,1,28656,0,'MMT'),(1509,2,28800,0,'+08'),(1509,3,32400,0,'+09'),(1509,4,28800,0,'WITA'),(1510,0,29040,0,'LMT'),(1510,1,32400,1,'PDT'),(1510,2,28800,0,'PST'),(1510,3,32400,0,'JST'),(1510,4,28800,0,'PST'),(1511,0,13272,0,'LMT'),(1511,1,14400,0,'+04'),(1512,0,8008,0,'LMT'),(1512,1,10800,1,'EEST'),(1512,2,7200,0,'EET'),(1512,3,7200,0,'EET'),(1512,4,10800,1,'EEST'),(1513,0,20928,0,'LMT'),(1513,1,21600,0,'+06'),(1513,2,28800,1,'+08'),(1513,3,25200,0,'+07'),(1513,4,25200,0,'+07'),(1513,5,28800,1,'+08'),(1513,6,25200,1,'+07'),(1513,7,21600,0,'+06'),(1513,8,25200,0,'+07'),(1514,0,19900,0,'LMT'),(1514,1,21600,0,'+06'),(1514,2,28800,1,'+08'),(1514,3,25200,0,'+07'),(1514,4,25200,0,'+07'),(1514,5,28800,1,'+08'),(1514,6,25200,1,'+07'),(1514,7,21600,0,'+06'),(1514,8,25200,1,'+07'),(1514,9,25200,0,'+07'),(1515,0,17610,0,'LMT'),(1515,1,18000,0,'+05'),(1515,2,25200,1,'+07'),(1515,3,21600,0,'+06'),(1515,4,21600,0,'+06'),(1515,5,25200,1,'+07'),(1515,6,21600,1,'+06'),(1515,7,18000,0,'+05'),(1515,8,25200,0,'+07'),(1515,9,25200,1,'+07'),(1515,10,21600,0,'+06'),(1516,0,12324,0,'LMT'),(1516,1,10800,0,'+03'),(1516,2,18000,0,'+05'),(1516,3,21600,1,'+06'),(1516,4,21600,0,'+06'),(1516,5,18000,0,'+05'),(1516,6,21600,1,'+06'),(1516,7,18000,1,'+05'),(1516,8,14400,0,'+04'),(1516,9,18000,0,'+05'),(1517,0,24124,0,'LMT'),(1517,1,24124,0,'BMT'),(1517,2,25200,0,'+07'),(1518,0,26240,0,'LMT'),(1518,1,26240,0,'PMT'),(1518,2,27000,0,'+0730'),(1518,3,32400,0,'+09'),(1518,4,28800,0,'+08'),(1518,5,28800,0,'WITA'),(1518,6,25200,0,'WIB'),(1519,0,30180,0,'LMT'),(1519,1,30600,0,'KST'),(1519,2,32400,0,'JST'),(1519,3,32400,0,'KST'),(1520,0,12368,0,'LMT'),(1520,1,14400,0,'+04'),(1520,2,10800,0,'+03'),(1521,0,15268,0,'LMT'),(1521,1,14400,0,'+04'),(1521,2,18000,0,'+05'),(1521,3,21600,1,'+06'),(1521,4,21600,0,'+06'),(1521,5,18000,0,'+05'),(1521,6,21600,1,'+06'),(1521,7,18000,1,'+05'),(1521,8,14400,0,'+04'),(1521,9,21600,0,'+06'),(1521,10,21600,1,'+06'),(1522,0,15712,0,'LMT'),(1522,1,14400,0,'+04'),(1522,2,18000,0,'+05'),(1522,3,21600,1,'+06'),(1522,4,21600,0,'+06'),(1522,5,18000,0,'+05'),(1522,6,21600,1,'+06'),(1522,7,18000,1,'+05'),(1522,8,21600,0,'+06'),(1522,9,21600,1,'+06'),(1522,10,18000,0,'+05'),(1523,0,23087,0,'LMT'),(1523,1,23087,0,'RMT'),(1523,2,23400,0,'+0630'),(1523,3,32400,0,'+09'),(1523,4,23400,0,'+0630'),(1524,0,11212,0,'LMT'),(1524,1,10800,0,'+03'),(1525,0,25600,0,'LMT'),(1525,1,25590,0,'PLMT'),(1525,2,25200,0,'+07'),(1525,3,28800,0,'+08'),(1525,4,32400,0,'+09'),(1525,5,25200,0,'+07'),(1526,0,34248,0,'LMT'),(1526,1,32400,0,'+09'),(1526,2,43200,1,'+12'),(1526,3,39600,0,'+11'),(1526,4,39600,0,'+11'),(1526,5,43200,1,'+12'),(1526,6,39600,1,'+11'),(1526,7,36000,0,'+10'),(1526,8,39600,0,'+11'),(1527,0,16073,0,'LMT'),(1527,1,14400,0,'+04'),(1527,2,18000,0,'+05'),(1527,3,21600,1,'+06'),(1527,4,21600,0,'+06'),(1527,5,18000,0,'+05'),(1527,6,21600,1,'+06'),(1528,0,30472,0,'LMT'),(1528,1,30600,0,'KST'),(1528,2,32400,0,'JST'),(1528,3,36000,1,'KDT'),(1528,4,32400,0,'KST'),(1528,5,34200,1,'KDT'),(1528,6,36000,1,'KDT'),(1529,0,29143,0,'LMT'),(1529,1,32400,1,'CDT'),(1529,2,28800,0,'CST'),(1530,0,24925,0,'LMT'),(1530,1,24925,0,'SMT'),(1530,2,25200,0,'+07'),(1530,3,26400,1,'+0720'),(1530,4,26400,0,'+0720'),(1530,5,27000,0,'+0730'),(1530,6,32400,0,'+09'),(1530,7,28800,0,'+08'),(1531,0,36892,0,'LMT'),(1531,1,36000,0,'+10'),(1531,2,43200,1,'+12'),(1531,3,39600,0,'+11'),(1531,4,39600,0,'+11'),(1531,5,43200,1,'+12'),(1531,6,39600,1,'+11'),(1531,7,36000,0,'+10'),(1531,8,43200,0,'+12'),(1531,9,43200,1,'+12'),(1531,10,39600,0,'+11'),(1532,0,29160,0,'LMT'),(1532,1,28800,0,'CST'),(1532,2,32400,0,'JST'),(1532,3,32400,1,'CDT'),(1532,4,28800,0,'CST'),(1533,0,16631,0,'LMT'),(1533,1,18000,0,'+05'),(1533,2,25200,1,'+07'),(1533,3,21600,0,'+06'),(1533,4,21600,0,'+06'),(1533,5,25200,1,'+07'),(1533,6,21600,1,'+06'),(1533,7,18000,0,'+05'),(1534,0,10751,0,'LMT'),(1534,1,10751,0,'TBMT'),(1534,2,10800,0,'+03'),(1534,3,18000,1,'+05'),(1534,4,14400,0,'+04'),(1534,5,14400,0,'+04'),(1534,6,18000,1,'+05'),(1534,7,14400,1,'+04'),(1534,8,10800,0,'+03'),(1534,9,14400,1,'+04'),(1534,10,14400,0,'+04'),(1535,0,12344,0,'LMT'),(1535,1,12344,0,'TMT'),(1535,2,12600,0,'+0330'),(1535,3,18000,1,'+05'),(1535,4,14400,0,'+04'),(1535,5,16200,1,'+0430'),(1535,6,12600,0,'+0330'),(1536,0,8454,0,'LMT'),(1536,1,8440,0,'JMT'),(1536,2,10800,1,'IDT'),(1536,3,7200,0,'IST'),(1536,4,14400,1,'IDDT'),(1536,5,10800,1,'IDT'),(1536,6,7200,0,'IST'),(1536,7,10800,1,'IDT'),(1536,8,7200,0,'IST'),(1537,0,21516,0,'LMT'),(1537,1,19800,0,'+0530'),(1537,2,21600,0,'+06'),(1538,0,21516,0,'LMT'),(1538,1,19800,0,'+0530'),(1538,2,21600,0,'+06'),(1539,0,33539,0,'LMT'),(1539,1,36000,1,'JDT'),(1539,2,32400,0,'JST'),(1539,3,32400,0,'JST'),(1540,0,20391,0,'LMT'),(1540,1,21600,0,'+06'),(1540,2,28800,1,'+08'),(1540,3,25200,0,'+07'),(1540,4,25200,0,'+07'),(1540,5,28800,1,'+08'),(1540,6,25200,1,'+07'),(1540,7,21600,0,'+06'),(1540,8,25200,1,'+07'),(1540,9,25200,0,'+07'),(1541,0,28656,0,'LMT'),(1541,1,28656,0,'MMT'),(1541,2,28800,0,'+08'),(1541,3,32400,0,'+09'),(1541,4,28800,0,'WITA'),(1542,0,25652,0,'LMT'),(1542,1,25200,0,'+07'),(1542,2,32400,1,'+09'),(1542,3,28800,0,'+08'),(1543,0,25652,0,'LMT'),(1543,1,25200,0,'+07'),(1543,2,32400,1,'+09'),(1543,3,28800,0,'+08'),(1544,0,21020,0,'LMT'),(1544,1,21600,0,'+06'),(1545,0,34374,0,'LMT'),(1545,1,28800,0,'+08'),(1545,2,32400,0,'+09'),(1545,3,39600,0,'+11'),(1545,4,43200,1,'+12'),(1545,5,39600,0,'+11'),(1545,6,43200,1,'+12'),(1545,7,39600,1,'+11'),(1545,8,36000,0,'+10'),(1545,9,43200,0,'+12'),(1545,10,43200,1,'+12'),(1545,11,36000,0,'+10'),(1546,0,24124,0,'LMT'),(1546,1,24124,0,'BMT'),(1546,2,25200,0,'+07'),(1547,0,31651,0,'LMT'),(1547,1,32400,0,'+09'),(1547,2,39600,1,'+11'),(1547,3,36000,0,'+10'),(1547,4,36000,0,'+10'),(1547,5,39600,1,'+11'),(1547,6,36000,1,'+10'),(1547,7,32400,0,'+09'),(1547,8,39600,0,'+11'),(1547,9,39600,1,'+11'),(1547,10,36000,0,'+10'),(1548,0,31138,0,'LMT'),(1548,1,28800,0,'+08'),(1548,2,36000,1,'+10'),(1548,3,32400,0,'+09'),(1548,4,32400,0,'+09'),(1548,5,36000,1,'+10'),(1548,6,32400,1,'+09'),(1548,7,28800,0,'+08'),(1548,8,36000,0,'+10'),(1548,9,36000,1,'+10'),(1548,10,32400,0,'+09'),(1549,0,23087,0,'LMT'),(1549,1,23087,0,'RMT'),(1549,2,23400,0,'+0630'),(1549,3,32400,0,'+09'),(1549,4,23400,0,'+0630'),(1550,0,14553,0,'LMT'),(1550,1,13505,0,'PMT'),(1550,2,14400,0,'+04'),(1550,3,21600,1,'+06'),(1550,4,18000,0,'+05'),(1550,5,18000,0,'+05'),(1550,6,21600,1,'+06'),(1550,7,18000,1,'+05'),(1550,8,14400,0,'+04'),(1550,9,21600,0,'+06'),(1550,10,21600,1,'+06'),(1550,11,18000,0,'+05'),(1551,0,10680,0,'LMT'),(1551,1,10800,0,'+03'),(1551,2,18000,1,'+05'),(1551,3,14400,0,'+04'),(1551,4,14400,0,'+04'),(1551,5,18000,1,'+05'),(1551,6,14400,1,'+04'),(1551,7,10800,0,'+03'),(1551,8,18000,1,'+05'),(1551,9,14400,0,'+04'),(1552,0,-6160,0,'LMT'),(1552,1,-6872,0,'HMT'),(1552,2,-3600,1,'-01'),(1552,3,-7200,0,'-02'),(1552,4,-3600,1,'-01'),(1552,5,-7200,0,'-02'),(1552,6,-7200,0,'-02'),(1552,7,0,1,'+00'),(1552,8,-3600,0,'-01'),(1552,9,-3600,0,'-01'),(1552,10,0,0,'WET'),(1552,11,0,1,'+00'),(1552,12,-3600,0,'-01'),(1553,0,-15558,0,'LMT'),(1553,1,-11958,1,'BST'),(1553,2,-15558,0,'BMT'),(1553,3,-10800,1,'ADT'),(1553,4,-14400,0,'AST'),(1554,0,-3696,0,'LMT'),(1554,1,-3600,0,'-01'),(1554,2,0,0,'WET'),(1554,3,3600,1,'WEST'),(1554,4,0,0,'WET'),(1554,5,3600,1,'WEST'),(1555,0,-5644,0,'LMT'),(1555,1,-7200,0,'-02'),(1555,2,-3600,1,'-01'),(1555,3,-7200,0,'-02'),(1555,4,-3600,0,'-01'),(1556,0,-1624,0,'LMT'),(1556,1,0,0,'WET'),(1556,2,3600,1,'WEST'),(1556,3,0,0,'WET'),(1557,0,-1624,0,'LMT'),(1557,1,0,0,'WET'),(1557,2,3600,1,'WEST'),(1557,3,0,0,'WET'),(1558,0,2580,0,'LMT'),(1558,1,7200,1,'CEST'),(1558,2,3600,0,'CET'),(1558,3,3600,0,'CET'),(1558,4,7200,1,'CEST'),(1558,5,7200,1,'CEST'),(1558,6,3600,0,'CET'),(1559,0,-4056,0,'LMT'),(1559,1,-4056,0,'FMT'),(1559,2,0,1,'+00'),(1559,3,-3600,0,'-01'),(1559,4,0,1,'+00'),(1559,5,-3600,0,'-01'),(1559,6,-3600,0,'-01'),(1559,7,3600,1,'+01'),(1559,8,3600,1,'WEST'),(1559,9,0,0,'WET'),(1559,10,0,0,'WET'),(1559,11,0,0,'WET'),(1559,12,3600,1,'WEST'),(1560,0,-5280,0,'LMT'),(1560,1,0,1,'+00'),(1560,2,-3600,0,'-01'),(1560,3,-3600,0,'-01'),(1560,4,0,1,'+00'),(1560,5,0,0,'GMT'),(1561,0,-7200,0,'-02'),(1562,0,-968,0,'LMT'),(1562,1,0,0,'GMT'),(1563,0,-13884,0,'LMT'),(1563,1,-13884,0,'SMT'),(1563,2,-10800,1,'-03'),(1563,3,-14400,0,'-04'),(1563,4,-7200,1,'-02'),(1563,5,-10800,0,'-03'),(1563,6,-10800,1,'-03'),(1564,0,36292,0,'LMT'),(1564,1,39600,1,'AEDT'),(1564,2,36000,0,'AEST'),(1564,3,36000,0,'AEST'),(1565,0,32400,0,'ACST'),(1565,1,37800,1,'ACDT'),(1565,2,34200,0,'ACST'),(1565,3,34200,0,'ACST'),(1566,0,36728,0,'LMT'),(1566,1,39600,1,'AEDT'),(1566,2,36000,0,'AEST'),(1566,3,36000,0,'AEST'),(1567,0,32400,0,'ACST'),(1567,1,37800,1,'ACDT'),(1567,2,34200,0,'ACST'),(1567,3,34200,0,'ACST'),(1567,4,37800,1,'ACDT'),(1568,0,36292,0,'LMT'),(1568,1,39600,1,'AEDT'),(1568,2,36000,0,'AEST'),(1568,3,36000,0,'AEST'),(1569,0,35356,0,'LMT'),(1569,1,39600,1,'AEDT'),(1569,2,36000,0,'AEST'),(1569,3,36000,0,'AEST'),(1570,0,32400,0,'ACST'),(1570,1,37800,1,'ACDT'),(1570,2,34200,0,'ACST'),(1570,3,34200,0,'ACST'),(1571,0,30928,0,'LMT'),(1571,1,35100,1,'+0945'),(1571,2,31500,0,'+0845'),(1571,3,31500,0,'+0845'),(1572,0,35356,0,'LMT'),(1572,1,39600,1,'AEDT'),(1572,2,36000,0,'AEST'),(1572,3,36000,0,'AEST'),(1573,0,38180,0,'LMT'),(1573,1,36000,0,'AEST'),(1573,2,41400,1,'+1130'),(1573,3,37800,0,'+1030'),(1573,4,39600,1,'+11'),(1574,0,35756,0,'LMT'),(1574,1,39600,1,'AEDT'),(1574,2,36000,0,'AEST'),(1574,3,36000,0,'AEST'),(1575,0,38180,0,'LMT'),(1575,1,36000,0,'AEST'),(1575,2,41400,1,'+1130'),(1575,3,37800,0,'+1030'),(1575,4,39600,1,'+11'),(1576,0,34792,0,'LMT'),(1576,1,39600,1,'AEDT'),(1576,2,36000,0,'AEST'),(1576,3,36000,0,'AEST'),(1577,0,36292,0,'LMT'),(1577,1,39600,1,'AEDT'),(1577,2,36000,0,'AEST'),(1577,3,36000,0,'AEST'),(1578,0,32400,0,'ACST'),(1578,1,37800,1,'ACDT'),(1578,2,34200,0,'ACST'),(1578,3,34200,0,'ACST'),(1579,0,27804,0,'LMT'),(1579,1,32400,1,'AWDT'),(1579,2,28800,0,'AWST'),(1579,3,28800,0,'AWST'),(1580,0,36728,0,'LMT'),(1580,1,39600,1,'AEDT'),(1580,2,36000,0,'AEST'),(1580,3,36000,0,'AEST'),(1581,0,32400,0,'ACST'),(1581,1,37800,1,'ACDT'),(1581,2,34200,0,'ACST'),(1581,3,34200,0,'ACST'),(1582,0,36292,0,'LMT'),(1582,1,39600,1,'AEDT'),(1582,2,36000,0,'AEST'),(1582,3,36000,0,'AEST'),(1583,0,35356,0,'LMT'),(1583,1,39600,1,'AEDT'),(1583,2,36000,0,'AEST'),(1583,3,36000,0,'AEST'),(1584,0,34792,0,'LMT'),(1584,1,39600,1,'AEDT'),(1584,2,36000,0,'AEST'),(1584,3,36000,0,'AEST'),(1585,0,27804,0,'LMT'),(1585,1,32400,1,'AWDT'),(1585,2,28800,0,'AWST'),(1585,3,28800,0,'AWST'),(1586,0,32400,0,'ACST'),(1586,1,37800,1,'ACDT'),(1586,2,34200,0,'ACST'),(1586,3,34200,0,'ACST'),(1586,4,37800,1,'ACDT'),(1587,0,-16272,0,'LMT'),(1587,1,-14400,1,'-04'),(1587,2,-18000,0,'-05'),(1587,3,-14400,0,'-04'),(1587,4,-18000,0,'-05'),(1588,0,-7780,0,'LMT'),(1588,1,-3600,1,'-01'),(1588,2,-7200,0,'-02'),(1589,0,-11188,0,'LMT'),(1589,1,-7200,1,'-02'),(1589,2,-10800,0,'-03'),(1590,0,-14404,0,'LMT'),(1590,1,-10800,1,'-03'),(1590,2,-14400,0,'-04'),(1591,0,7200,1,'CEST'),(1591,1,3600,0,'CET'),(1591,2,7200,1,'CEST'),(1591,3,3600,0,'CET'),(1592,0,-18000,1,'CDT'),(1592,1,-21600,0,'CST'),(1592,2,-18000,1,'CWT'),(1592,3,-18000,1,'CPT'),(1593,0,-15264,0,'LMT'),(1593,1,-10800,1,'ADT'),(1593,2,-14400,0,'AST'),(1593,3,-10800,1,'AWT'),(1593,4,-10800,1,'APT'),(1594,0,-23316,0,'LMT'),(1594,1,-18000,1,'CDT'),(1594,2,-21600,0,'CST'),(1594,3,-18000,1,'CWT'),(1594,4,-18000,1,'CPT'),(1594,5,-18000,1,'CDT'),(1594,6,-21600,0,'CST'),(1595,0,-19052,0,'LMT'),(1595,1,-14400,1,'EDT'),(1595,2,-18000,0,'EST'),(1595,3,-14400,1,'EWT'),(1595,4,-14400,1,'EPT'),(1596,0,-27232,0,'LMT'),(1596,1,-21600,1,'MDT'),(1596,2,-25200,0,'MST'),(1596,3,-21600,1,'MWT'),(1596,4,-21600,1,'MPT'),(1597,0,-12652,0,'LMT'),(1597,1,-9052,1,'NDT'),(1597,2,-12652,0,'NST'),(1597,3,-9000,1,'NDT'),(1597,4,-12600,0,'NST'),(1597,5,-9000,1,'NPT'),(1597,6,-9000,1,'NWT'),(1597,7,-5400,1,'NDDT'),(1597,8,-9000,1,'NDT'),(1598,0,-29548,0,'LMT'),(1598,1,-25200,1,'PDT'),(1598,2,-28800,0,'PST'),(1598,3,-25200,1,'PWT'),(1598,4,-25200,1,'PPT'),(1599,0,-25116,0,'LMT'),(1599,1,-21600,1,'MDT'),(1599,2,-25200,0,'MST'),(1599,3,-21600,1,'MWT'),(1599,4,-21600,1,'MPT'),(1599,5,-21600,0,'CST'),(1600,0,-32412,0,'LMT'),(1600,1,-28800,1,'YDT'),(1600,2,-32400,0,'YST'),(1600,3,-28800,1,'YWT'),(1600,4,-28800,1,'YPT'),(1600,5,-25200,1,'YDDT'),(1600,6,-28800,0,'PST'),(1600,7,-25200,1,'PDT'),(1600,8,-25200,0,'MST'),(1601,0,-16966,0,'LMT'),(1601,1,-16966,0,'SMT'),(1601,2,-18000,0,'-05'),(1601,3,-14400,0,'-04'),(1601,4,-14400,1,'-04'),(1601,5,-10800,1,'-03'),(1601,6,-10800,1,'-03'),(1601,7,-14400,0,'-04'),(1602,0,-26248,0,'LMT'),(1602,1,-26248,0,'EMT'),(1602,2,-21600,1,'-06'),(1602,3,-25200,0,'-07'),(1602,4,-25200,0,'-07'),(1602,5,-21600,0,'-06'),(1602,6,-18000,1,'-05'),(1603,0,-19768,0,'LMT'),(1603,1,-19776,0,'HMT'),(1603,2,-14400,1,'CDT'),(1603,3,-18000,0,'CST'),(1603,4,-18000,0,'CST'),(1603,5,-14400,1,'CDT'),(1604,0,10800,1,'EEST'),(1604,1,7200,0,'EET'),(1605,0,-18000,0,'EST'),(1606,0,-14400,1,'EDT'),(1606,1,-18000,0,'EST'),(1606,2,-14400,1,'EWT'),(1606,3,-14400,1,'EPT'),(1607,0,7509,0,'LMT'),(1607,1,10800,1,'EEST'),(1607,2,7200,0,'EET'),(1607,3,10800,1,'EEST'),(1608,0,-1500,0,'LMT'),(1608,1,-1521,0,'DMT'),(1608,2,2079,1,'IST'),(1608,3,3600,1,'BST'),(1608,4,0,0,'GMT'),(1608,5,3600,1,'IST'),(1608,6,0,0,'GMT'),(1608,7,0,1,'GMT'),(1608,8,3600,0,'IST'),(1608,9,3600,0,'IST'),(1609,0,0,0,'GMT'),(1610,0,0,0,'GMT'),(1611,0,-3600,0,'-01'),(1612,0,-36000,0,'-10'),(1613,0,-39600,0,'-11'),(1614,0,-43200,0,'-12'),(1615,0,-7200,0,'-02'),(1616,0,-10800,0,'-03'),(1617,0,-14400,0,'-04'),(1618,0,-18000,0,'-05'),(1619,0,-21600,0,'-06'),(1620,0,-25200,0,'-07'),(1621,0,-28800,0,'-08'),(1622,0,-32400,0,'-09'),(1623,0,0,0,'GMT'),(1624,0,3600,0,'+01'),(1625,0,36000,0,'+10'),(1626,0,39600,0,'+11'),(1627,0,43200,0,'+12'),(1628,0,46800,0,'+13'),(1629,0,50400,0,'+14'),(1630,0,7200,0,'+02'),(1631,0,10800,0,'+03'),(1632,0,14400,0,'+04'),(1633,0,18000,0,'+05'),(1634,0,21600,0,'+06'),(1635,0,25200,0,'+07'),(1636,0,28800,0,'+08'),(1637,0,32400,0,'+09'),(1638,0,0,0,'GMT'),(1639,0,0,0,'GMT'),(1640,0,0,0,'UTC'),(1641,0,0,0,'UTC'),(1642,0,0,0,'UTC'),(1643,0,0,0,'UTC'),(1644,0,1172,0,'LMT'),(1644,1,4772,1,'NST'),(1644,2,1172,0,'AMT'),(1644,3,4772,1,'NST'),(1644,4,1172,0,'AMT'),(1644,5,1200,0,'+0020'),(1644,6,4800,1,'+0120'),(1644,7,4800,1,'+0120'),(1644,8,3600,0,'CET'),(1644,9,7200,1,'CEST'),(1644,10,7200,1,'CEST'),(1644,11,7200,1,'CEST'),(1644,12,3600,0,'CET'),(1644,13,3600,0,'CET'),(1645,0,364,0,'LMT'),(1645,1,0,0,'WET'),(1645,2,3600,0,'CET'),(1645,3,7200,1,'CEST'),(1645,4,3600,0,'CET'),(1646,0,11532,0,'LMT'),(1646,1,10800,0,'+03'),(1646,2,18000,1,'+05'),(1646,3,14400,0,'+04'),(1646,4,14400,0,'+04'),(1646,5,18000,1,'+05'),(1646,6,14400,1,'+04'),(1646,7,10800,0,'+03'),(1646,8,14400,0,'+04'),(1647,0,5692,0,'LMT'),(1647,1,5692,0,'AMT'),(1647,2,10800,1,'EEST'),(1647,3,7200,0,'EET'),(1647,4,3600,0,'CET'),(1647,5,7200,1,'CEST'),(1647,6,10800,1,'EEST'),(1647,7,7200,0,'EET'),(1647,8,10800,1,'EEST'),(1647,9,7200,0,'EET'),(1648,0,-75,0,'LMT'),(1648,1,3600,1,'BST'),(1648,2,0,0,'GMT'),(1648,3,7200,1,'BDST'),(1648,4,3600,0,'BST'),(1648,5,3600,1,'BST'),(1648,6,0,0,'GMT'),(1648,7,0,0,'GMT'),(1649,0,4920,0,'LMT'),(1649,1,3600,0,'CET'),(1649,2,3600,0,'CET'),(1649,3,7200,1,'CEST'),(1649,4,7200,1,'CEST'),(1649,5,7200,1,'CEST'),(1649,6,3600,0,'CET'),(1650,0,3208,0,'LMT'),(1650,1,7200,1,'CEST'),(1650,2,3600,0,'CET'),(1650,3,7200,1,'CEST'),(1650,4,3600,0,'CET'),(1650,5,10800,1,'CEMT'),(1650,6,10800,1,'CEMT'),(1650,7,7200,1,'CEST'),(1650,8,3600,0,'CET'),(1651,0,3464,0,'PMT'),(1651,1,7200,1,'CEST'),(1651,2,3600,0,'CET'),(1651,3,7200,1,'CEST'),(1651,4,3600,0,'CET'),(1651,5,0,1,'GMT'),(1651,6,7200,1,'CEST'),(1651,7,3600,0,'CET'),(1652,0,1050,0,'BMT'),(1652,1,0,0,'WET'),(1652,2,3600,0,'CET'),(1652,3,7200,1,'CEST'),(1652,4,3600,0,'CET'),(1652,5,7200,1,'CEST'),(1652,6,3600,1,'WEST'),(1652,7,0,0,'WET'),(1652,8,0,0,'WET'),(1652,9,7200,1,'CEST'),(1652,10,3600,0,'CET'),(1653,0,6264,0,'LMT'),(1653,1,6264,0,'BMT'),(1653,2,10800,1,'EEST'),(1653,3,7200,0,'EET'),(1653,4,10800,1,'EEST'),(1653,5,7200,0,'EET'),(1653,6,10800,1,'EEST'),(1653,7,7200,0,'EET'),(1654,0,4580,0,'LMT'),(1654,1,7200,1,'CEST'),(1654,2,3600,0,'CET'),(1654,3,7200,1,'CEST'),(1654,4,3600,0,'CET'),(1654,5,7200,1,'CEST'),(1654,6,3600,0,'CET'),(1655,0,1786,0,'BMT'),(1655,1,7200,1,'CEST'),(1655,2,3600,0,'CET'),(1655,3,7200,1,'CEST'),(1655,4,3600,0,'CET'),(1656,0,6920,0,'LMT'),(1656,1,6900,0,'CMT'),(1656,2,6264,0,'BMT'),(1656,3,10800,1,'EEST'),(1656,4,7200,0,'EET'),(1656,5,7200,0,'EET'),(1656,6,10800,1,'EEST'),(1656,7,3600,0,'CET'),(1656,8,7200,1,'CEST'),(1656,9,7200,1,'CEST'),(1656,10,14400,1,'MSD'),(1656,11,10800,0,'MSK'),(1656,12,10800,0,'MSK'),(1656,13,14400,1,'MSD'),(1656,14,10800,1,'EEST'),(1656,15,7200,0,'EET'),(1657,0,3020,0,'CMT'),(1657,1,7200,1,'CEST'),(1657,2,3600,0,'CET'),(1657,3,3600,0,'CET'),(1657,4,7200,1,'CEST'),(1657,5,7200,1,'CEST'),(1657,6,3600,0,'CET'),(1658,0,-1500,0,'LMT'),(1658,1,-1521,0,'DMT'),(1658,2,2079,1,'IST'),(1658,3,3600,1,'BST'),(1658,4,0,0,'GMT'),(1658,5,3600,1,'IST'),(1658,6,0,0,'GMT'),(1658,7,0,1,'GMT'),(1658,8,3600,0,'IST'),(1658,9,3600,0,'IST'),(1659,0,-1284,0,'LMT'),(1659,1,3600,1,'BST'),(1659,2,0,0,'GMT'),(1659,3,7200,1,'BDST'),(1659,4,3600,0,'CET'),(1659,5,7200,1,'CEST'),(1659,6,3600,0,'CET'),(1660,0,-75,0,'LMT'),(1660,1,3600,1,'BST'),(1660,2,0,0,'GMT'),(1660,3,7200,1,'BDST'),(1660,4,3600,0,'BST'),(1660,5,3600,1,'BST'),(1660,6,0,0,'GMT'),(1660,7,0,0,'GMT'),(1661,0,5989,0,'LMT'),(1661,1,5989,0,'HMT'),(1661,2,10800,1,'EEST'),(1661,3,7200,0,'EET'),(1661,4,10800,1,'EEST'),(1661,5,7200,0,'EET'),(1662,0,-75,0,'LMT'),(1662,1,3600,1,'BST'),(1662,2,0,0,'GMT'),(1662,3,7200,1,'BDST'),(1662,4,3600,0,'BST'),(1662,5,3600,1,'BST'),(1662,6,0,0,'GMT'),(1662,7,0,0,'GMT'),(1663,0,6952,0,'LMT'),(1663,1,7016,0,'IMT'),(1663,2,10800,1,'EEST'),(1663,3,7200,0,'EET'),(1663,4,10800,0,'+03'),(1663,5,14400,1,'+04'),(1663,6,10800,1,'EEST'),(1663,7,7200,0,'EET'),(1663,8,10800,1,'EEST'),(1663,9,7200,0,'EET'),(1663,10,10800,0,'+03'),(1664,0,-75,0,'LMT'),(1664,1,3600,1,'BST'),(1664,2,0,0,'GMT'),(1664,3,7200,1,'BDST'),(1664,4,3600,0,'BST'),(1664,5,3600,1,'BST'),(1664,6,0,0,'GMT'),(1664,7,0,0,'GMT'),(1665,0,4920,0,'LMT'),(1665,1,7200,1,'CEST'),(1665,2,3600,0,'CET'),(1665,3,7200,1,'CEST'),(1665,4,3600,0,'CET'),(1665,5,10800,1,'EEST'),(1665,6,7200,0,'EET'),(1665,7,14400,1,'MSD'),(1665,8,10800,0,'MSK'),(1665,9,10800,0,'MSK'),(1665,10,14400,1,'MSD'),(1665,11,10800,1,'EEST'),(1665,12,7200,0,'EET'),(1665,13,10800,0,'+03'),(1665,14,7200,0,'EET'),(1666,0,7324,0,'LMT'),(1666,1,7324,0,'KMT'),(1666,2,7200,0,'EET'),(1666,3,10800,0,'MSK'),(1666,4,3600,0,'CET'),(1666,5,7200,1,'CEST'),(1666,6,7200,1,'CEST'),(1666,7,14400,1,'MSD'),(1666,8,10800,0,'MSK'),(1666,9,14400,1,'MSD'),(1666,10,10800,1,'EEST'),(1666,11,10800,1,'EEST'),(1666,12,7200,0,'EET'),(1667,0,11928,0,'LMT'),(1667,1,10800,0,'+03'),(1667,2,18000,1,'+05'),(1667,3,14400,0,'+04'),(1667,4,14400,0,'+04'),(1667,5,18000,1,'+05'),(1667,6,14400,1,'+04'),(1667,7,10800,0,'+03'),(1668,0,-2205,0,'LMT'),(1668,1,3600,1,'WEST'),(1668,2,0,0,'WET'),(1668,3,3600,1,'WEST'),(1668,4,0,0,'WET'),(1668,5,7200,1,'WEMT'),(1668,6,0,0,'WET'),(1668,7,3600,0,'CET'),(1668,8,3600,0,'CET'),(1668,9,7200,1,'CEST'),(1668,10,3600,1,'WEST'),(1668,11,0,0,'WET'),(1669,0,4920,0,'LMT'),(1669,1,3600,0,'CET'),(1669,2,3600,0,'CET'),(1669,3,7200,1,'CEST'),(1669,4,7200,1,'CEST'),(1669,5,7200,1,'CEST'),(1669,6,3600,0,'CET'),(1670,0,-75,0,'LMT'),(1670,1,3600,1,'BST'),(1670,2,0,0,'GMT'),(1670,3,7200,1,'BDST'),(1670,4,3600,0,'BST'),(1670,5,3600,1,'BST'),(1670,6,0,0,'GMT'),(1670,7,0,0,'GMT'),(1671,0,1476,0,'LMT'),(1671,1,7200,1,'CEST'),(1671,2,3600,0,'CET'),(1671,3,7200,1,'CEST'),(1671,4,3600,0,'CET'),(1671,5,3600,1,'WEST'),(1671,6,0,0,'WET'),(1671,7,0,0,'WET'),(1671,8,3600,1,'WEST'),(1671,9,3600,0,'WET'),(1671,10,7200,1,'WEST'),(1671,11,7200,1,'WEST'),(1671,12,7200,1,'CEST'),(1671,13,3600,0,'CET'),(1672,0,-884,0,'LMT'),(1672,1,3600,1,'WEST'),(1672,2,0,0,'WET'),(1672,3,7200,1,'WEMT'),(1672,4,0,0,'WET'),(1672,5,7200,1,'CEST'),(1672,6,3600,0,'CET'),(1672,7,7200,1,'CEST'),(1672,8,3600,0,'CET'),(1672,9,7200,1,'CEST'),(1672,10,3600,0,'CET'),(1673,0,3484,0,'LMT'),(1673,1,7200,1,'CEST'),(1673,2,3600,0,'CET'),(1673,3,3600,0,'CET'),(1673,4,7200,1,'CEST'),(1673,5,7200,1,'CEST'),(1673,6,3600,0,'CET'),(1674,0,5989,0,'LMT'),(1674,1,5989,0,'HMT'),(1674,2,10800,1,'EEST'),(1674,3,7200,0,'EET'),(1674,4,10800,1,'EEST'),(1674,5,7200,0,'EET'),(1675,0,6616,0,'LMT'),(1675,1,6600,0,'MMT'),(1675,2,7200,0,'EET'),(1675,3,10800,0,'MSK'),(1675,4,3600,0,'CET'),(1675,5,7200,1,'CEST'),(1675,6,7200,1,'CEST'),(1675,7,14400,1,'MSD'),(1675,8,10800,0,'MSK'),(1675,9,14400,1,'MSD'),(1675,10,10800,1,'EEST'),(1675,11,7200,0,'EET'),(1675,12,10800,0,'+03'),(1676,0,1772,0,'LMT'),(1676,1,561,0,'PMT'),(1676,2,3600,1,'WEST'),(1676,3,0,0,'WET'),(1676,4,3600,1,'WEST'),(1676,5,7200,1,'WEMT'),(1676,6,0,0,'WET'),(1676,7,7200,1,'CEST'),(1676,8,3600,0,'CET'),(1676,9,7200,1,'CEST'),(1676,10,3600,0,'CET'),(1677,0,9017,0,'LMT'),(1677,1,9017,0,'MMT'),(1677,2,12679,1,'MST'),(1677,3,9079,0,'MMT'),(1677,4,16279,1,'MDST'),(1677,5,14400,1,'MSD'),(1677,6,10800,0,'MSK'),(1677,7,14400,1,'MSD'),(1677,8,18000,1,'+05'),(1677,9,7200,0,'EET'),(1677,10,10800,0,'MSK'),(1677,11,14400,1,'MSD'),(1677,12,10800,1,'EEST'),(1677,13,7200,0,'EET'),(1677,14,14400,0,'MSK'),(1677,15,14400,1,'MSD'),(1677,16,10800,0,'MSK'),(1678,0,8008,0,'LMT'),(1678,1,10800,1,'EEST'),(1678,2,7200,0,'EET'),(1678,3,7200,0,'EET'),(1678,4,10800,1,'EEST'),(1679,0,2580,0,'LMT'),(1679,1,7200,1,'CEST'),(1679,2,3600,0,'CET'),(1679,3,3600,0,'CET'),(1679,4,7200,1,'CEST'),(1679,5,7200,1,'CEST'),(1679,6,3600,0,'CET'),(1680,0,561,0,'LMT'),(1680,1,561,0,'PMT'),(1680,2,3600,1,'WEST'),(1680,3,0,0,'WET'),(1680,4,3600,1,'WEST'),(1680,5,0,0,'WET'),(1680,6,3600,0,'CET'),(1680,7,7200,1,'CEST'),(1680,8,7200,1,'CEST'),(1680,9,7200,1,'WEMT'),(1680,10,3600,0,'CET'),(1680,11,7200,1,'CEST'),(1680,12,3600,0,'CET'),(1681,0,4920,0,'LMT'),(1681,1,3600,0,'CET'),(1681,2,3600,0,'CET'),(1681,3,7200,1,'CEST'),(1681,4,7200,1,'CEST'),(1681,5,7200,1,'CEST'),(1681,6,3600,0,'CET'),(1682,0,3464,0,'PMT'),(1682,1,7200,1,'CEST'),(1682,2,3600,0,'CET'),(1682,3,7200,1,'CEST'),(1682,4,3600,0,'CET'),(1682,5,0,1,'GMT'),(1682,6,7200,1,'CEST'),(1682,7,3600,0,'CET'),(1683,0,5794,0,'LMT'),(1683,1,5794,0,'RMT'),(1683,2,9394,1,'LST'),(1683,3,7200,0,'EET'),(1683,4,10800,0,'MSK'),(1683,5,3600,0,'CET'),(1683,6,7200,1,'CEST'),(1683,7,7200,1,'CEST'),(1683,8,14400,1,'MSD'),(1683,9,10800,0,'MSK'),(1683,10,14400,1,'MSD'),(1683,11,10800,1,'EEST'),(1683,12,7200,0,'EET'),(1683,13,10800,1,'EEST'),(1683,14,7200,0,'EET'),(1684,0,2996,0,'RMT'),(1684,1,7200,1,'CEST'),(1684,2,3600,0,'CET'),(1684,3,3600,0,'CET'),(1684,4,7200,1,'CEST'),(1684,5,7200,1,'CEST'),(1684,6,3600,0,'CET'),(1685,0,12020,0,'LMT'),(1685,1,10800,0,'+03'),(1685,2,14400,0,'+04'),(1685,3,18000,1,'+05'),(1685,4,14400,0,'+04'),(1685,5,18000,1,'+05'),(1685,6,14400,1,'+04'),(1685,7,10800,0,'+03'),(1685,8,10800,1,'+03'),(1685,9,14400,1,'+04'),(1685,10,14400,0,'+04'),(1686,0,2996,0,'RMT'),(1686,1,7200,1,'CEST'),(1686,2,3600,0,'CET'),(1686,3,3600,0,'CET'),(1686,4,7200,1,'CEST'),(1686,5,7200,1,'CEST'),(1686,6,3600,0,'CET'),(1687,0,4920,0,'LMT'),(1687,1,3600,0,'CET'),(1687,2,3600,0,'CET'),(1687,3,7200,1,'CEST'),(1687,4,7200,1,'CEST'),(1687,5,7200,1,'CEST'),(1687,6,3600,0,'CET'),(1688,0,11058,0,'LMT'),(1688,1,10800,0,'+03'),(1688,2,18000,1,'+05'),(1688,3,14400,0,'+04'),(1688,4,14400,0,'+04'),(1688,5,18000,1,'+05'),(1688,6,14400,1,'+04'),(1688,7,10800,0,'+03'),(1688,8,14400,0,'+04'),(1689,0,8184,0,'LMT'),(1689,1,8160,0,'SMT'),(1689,2,7200,0,'EET'),(1689,3,10800,0,'MSK'),(1689,4,3600,0,'CET'),(1689,5,7200,1,'CEST'),(1689,6,7200,1,'CEST'),(1689,7,14400,1,'MSD'),(1689,8,10800,0,'MSK'),(1689,9,14400,1,'MSD'),(1689,10,10800,1,'EEST'),(1689,11,10800,1,'EEST'),(1689,12,7200,0,'EET'),(1689,13,14400,0,'MSK'),(1689,14,10800,0,'MSK'),(1690,0,4920,0,'LMT'),(1690,1,3600,0,'CET'),(1690,2,3600,0,'CET'),(1690,3,7200,1,'CEST'),(1690,4,7200,1,'CEST'),(1690,5,7200,1,'CEST'),(1690,6,3600,0,'CET'),(1691,0,7016,0,'IMT'),(1691,1,7200,0,'EET'),(1691,2,3600,0,'CET'),(1691,3,7200,1,'CEST'),(1691,4,3600,0,'CET'),(1691,5,10800,1,'EEST'),(1691,6,7200,0,'EET'),(1691,7,10800,1,'EEST'),(1691,8,10800,1,'EEST'),(1691,9,7200,0,'EET'),(1692,0,3614,0,'SET'),(1692,1,3600,0,'CET'),(1692,2,7200,1,'CEST'),(1692,3,7200,1,'CEST'),(1692,4,3600,0,'CET'),(1693,0,5940,0,'LMT'),(1693,1,5940,0,'TMT'),(1693,2,7200,1,'CEST'),(1693,3,3600,0,'CET'),(1693,4,3600,0,'CET'),(1693,5,7200,0,'EET'),(1693,6,10800,0,'MSK'),(1693,7,7200,1,'CEST'),(1693,8,14400,1,'MSD'),(1693,9,10800,0,'MSK'),(1693,10,14400,1,'MSD'),(1693,11,10800,1,'EEST'),(1693,12,7200,0,'EET'),(1693,13,7200,0,'EET'),(1693,14,10800,1,'EEST'),(1693,15,10800,1,'EEST'),(1694,0,4760,0,'LMT'),(1694,1,3600,0,'CET'),(1694,2,7200,1,'CEST'),(1694,3,3600,0,'CET'),(1694,4,7200,1,'CEST'),(1695,0,6920,0,'LMT'),(1695,1,6900,0,'CMT'),(1695,2,6264,0,'BMT'),(1695,3,10800,1,'EEST'),(1695,4,7200,0,'EET'),(1695,5,7200,0,'EET'),(1695,6,10800,1,'EEST'),(1695,7,3600,0,'CET'),(1695,8,7200,1,'CEST'),(1695,9,7200,1,'CEST'),(1695,10,14400,1,'MSD'),(1695,11,10800,0,'MSK'),(1695,12,10800,0,'MSK'),(1695,13,14400,1,'MSD'),(1695,14,10800,1,'EEST'),(1695,15,7200,0,'EET'),(1696,0,11616,0,'LMT'),(1696,1,10800,0,'+03'),(1696,2,18000,1,'+05'),(1696,3,14400,0,'+04'),(1696,4,14400,0,'+04'),(1696,5,18000,1,'+05'),(1696,6,14400,1,'+04'),(1696,7,10800,0,'+03'),(1696,8,10800,1,'+03'),(1696,9,7200,0,'+02'),(1696,10,14400,1,'+04'),(1696,11,14400,0,'+04'),(1697,0,5352,0,'LMT'),(1697,1,3600,0,'CET'),(1697,2,7200,1,'CEST'),(1697,3,3600,0,'CET'),(1697,4,7200,1,'CEST'),(1697,5,14400,1,'MSD'),(1697,6,10800,0,'MSK'),(1697,7,10800,0,'MSK'),(1697,8,14400,1,'MSD'),(1697,9,7200,0,'EET'),(1697,10,10800,1,'EEST'),(1697,11,10800,1,'EEST'),(1697,12,7200,0,'EET'),(1698,0,1786,0,'BMT'),(1698,1,7200,1,'CEST'),(1698,2,3600,0,'CET'),(1698,3,7200,1,'CEST'),(1698,4,3600,0,'CET'),(1699,0,2996,0,'RMT'),(1699,1,7200,1,'CEST'),(1699,2,3600,0,'CET'),(1699,3,3600,0,'CET'),(1699,4,7200,1,'CEST'),(1699,5,7200,1,'CEST'),(1699,6,3600,0,'CET'),(1700,0,3921,0,'LMT'),(1700,1,7200,1,'CEST'),(1700,2,3600,0,'CET'),(1700,3,7200,1,'CEST'),(1700,4,3600,0,'CET'),(1700,5,7200,1,'CEST'),(1700,6,3600,0,'CET'),(1701,0,6076,0,'LMT'),(1701,1,5040,0,'WMT'),(1701,2,5736,0,'KMT'),(1701,3,3600,0,'CET'),(1701,4,7200,0,'EET'),(1701,5,10800,0,'MSK'),(1701,6,3600,0,'CET'),(1701,7,7200,1,'CEST'),(1701,8,7200,1,'CEST'),(1701,9,14400,1,'MSD'),(1701,10,10800,0,'MSK'),(1701,11,14400,1,'MSD'),(1701,12,10800,1,'EEST'),(1701,13,7200,0,'EET'),(1701,14,7200,1,'CEST'),(1701,15,3600,0,'CET'),(1701,16,7200,0,'EET'),(1701,17,10800,1,'EEST'),(1702,0,10660,0,'LMT'),(1702,1,10800,0,'+03'),(1702,2,14400,0,'+04'),(1702,3,18000,1,'+05'),(1702,4,14400,0,'+04'),(1702,5,18000,1,'+05'),(1702,6,14400,1,'+04'),(1702,7,10800,0,'+03'),(1703,0,5040,0,'LMT'),(1703,1,5040,0,'WMT'),(1703,2,7200,1,'CEST'),(1703,3,3600,0,'CET'),(1703,4,7200,1,'CEST'),(1703,5,3600,0,'CET'),(1703,6,10800,1,'EEST'),(1703,7,7200,0,'EET'),(1703,8,7200,0,'EET'),(1703,9,7200,1,'CEST'),(1703,10,3600,0,'CET'),(1704,0,4920,0,'LMT'),(1704,1,3600,0,'CET'),(1704,2,3600,0,'CET'),(1704,3,7200,1,'CEST'),(1704,4,7200,1,'CEST'),(1704,5,7200,1,'CEST'),(1704,6,3600,0,'CET'),(1705,0,8440,0,'LMT'),(1705,1,8400,0,'+0220'),(1705,2,7200,0,'EET'),(1705,3,10800,0,'MSK'),(1705,4,3600,0,'CET'),(1705,5,7200,1,'CEST'),(1705,6,7200,1,'CEST'),(1705,7,14400,1,'MSD'),(1705,8,10800,0,'MSK'),(1705,9,14400,1,'MSD'),(1705,10,10800,1,'EEST'),(1705,11,10800,1,'EEST'),(1705,12,7200,0,'EET'),(1706,0,1786,0,'BMT'),(1706,1,7200,1,'CEST'),(1706,2,3600,0,'CET'),(1706,3,7200,1,'CEST'),(1706,4,3600,0,'CET'),(1707,0,0,0,'-00'),(1708,0,-75,0,'LMT'),(1708,1,3600,1,'BST'),(1708,2,0,0,'GMT'),(1708,3,7200,1,'BDST'),(1708,4,3600,0,'BST'),(1708,5,3600,1,'BST'),(1708,6,0,0,'GMT'),(1708,7,0,0,'GMT'),(1709,0,-75,0,'LMT'),(1709,1,3600,1,'BST'),(1709,2,0,0,'GMT'),(1709,3,7200,1,'BDST'),(1709,4,3600,0,'BST'),(1709,5,3600,1,'BST'),(1709,6,0,0,'GMT'),(1709,7,0,0,'GMT'),(1710,0,0,0,'GMT'),(1711,0,0,0,'GMT'),(1712,0,0,0,'GMT'),(1713,0,0,0,'GMT'),(1714,0,0,0,'GMT'),(1715,0,-36000,0,'HST'),(1716,0,27402,0,'LMT'),(1716,1,28800,0,'HKT'),(1716,2,32400,1,'HKST'),(1716,3,30600,1,'HKWT'),(1716,4,32400,0,'JST'),(1716,5,28800,0,'HKT'),(1716,6,32400,1,'HKST'),(1717,0,-5280,0,'LMT'),(1717,1,0,1,'+00'),(1717,2,-3600,0,'-01'),(1717,3,-3600,0,'-01'),(1717,4,0,1,'+00'),(1717,5,0,0,'GMT'),(1718,0,8836,0,'LMT'),(1718,1,9000,0,'+0230'),(1718,2,10800,0,'EAT'),(1718,3,9900,0,'+0245'),(1718,4,10800,0,'EAT'),(1719,0,17380,0,'LMT'),(1719,1,18000,0,'+05'),(1719,2,21600,0,'+06'),(1720,0,25200,0,'+07'),(1721,0,23400,0,'+0630'),(1722,0,8836,0,'LMT'),(1722,1,9000,0,'+0230'),(1722,2,10800,0,'EAT'),(1722,3,9900,0,'+0245'),(1722,4,10800,0,'EAT'),(1723,0,0,0,'-00'),(1723,1,18000,0,'+05'),(1724,0,13308,0,'LMT'),(1724,1,14400,0,'+04'),(1725,0,17640,0,'LMT'),(1725,1,17640,0,'MMT'),(1725,2,18000,0,'+05'),(1726,0,13800,0,'LMT'),(1726,1,18000,1,'+05'),(1726,2,14400,0,'+04'),(1727,0,8836,0,'LMT'),(1727,1,9000,0,'+0230'),(1727,2,10800,0,'EAT'),(1727,3,9900,0,'+0245'),(1727,4,10800,0,'EAT'),(1728,0,13312,0,'LMT'),(1728,1,14400,0,'+04'),(1729,0,12344,0,'LMT'),(1729,1,12344,0,'TMT'),(1729,2,12600,0,'+0330'),(1729,3,18000,1,'+05'),(1729,4,14400,0,'+04'),(1729,5,16200,1,'+0430'),(1729,6,12600,0,'+0330'),(1730,0,8454,0,'LMT'),(1730,1,8440,0,'JMT'),(1730,2,10800,1,'IDT'),(1730,3,7200,0,'IST'),(1730,4,14400,1,'IDDT'),(1730,5,10800,1,'IDT'),(1730,6,7200,0,'IST'),(1730,7,10800,1,'IDT'),(1730,8,7200,0,'IST'),(1731,0,-18430,0,'LMT'),(1731,1,-18430,0,'KMT'),(1731,2,-18000,0,'EST'),(1731,3,-14400,1,'EDT'),(1732,0,33539,0,'LMT'),(1732,1,36000,1,'JDT'),(1732,2,32400,0,'JST'),(1732,3,32400,0,'JST'),(1733,0,40160,0,'LMT'),(1733,1,39600,0,'+11'),(1733,2,36000,0,'+10'),(1733,3,32400,0,'+09'),(1733,4,-43200,0,'-12'),(1733,5,43200,0,'+12'),(1734,0,3164,0,'LMT'),(1734,1,7200,1,'CEST'),(1734,2,3600,0,'CET'),(1734,3,7200,0,'EET'),(1735,0,7200,1,'MEST'),(1735,1,3600,0,'MET'),(1735,2,7200,1,'MEST'),(1735,3,3600,0,'MET'),(1736,0,-25200,0,'MST'),(1737,0,-21600,1,'MDT'),(1737,1,-25200,0,'MST'),(1737,2,-21600,1,'MWT'),(1737,3,-21600,1,'MPT'),(1738,0,-28084,0,'LMT'),(1738,1,-25200,0,'MST'),(1738,2,-28800,0,'PST'),(1738,3,-25200,1,'PDT'),(1738,4,-25200,1,'PWT'),(1738,5,-25200,1,'PPT'),(1739,0,-25540,0,'LMT'),(1739,1,-25200,0,'MST'),(1739,2,-21600,0,'CST'),(1739,3,-28800,0,'PST'),(1739,4,-21600,1,'MDT'),(1739,5,-25200,0,'MST'),(1740,0,-23796,0,'LMT'),(1740,1,-25200,0,'MST'),(1740,2,-21600,0,'CST'),(1740,3,-18000,1,'CDT'),(1740,4,-18000,1,'CWT'),(1741,0,41944,0,'LMT'),(1741,1,45000,1,'NZST'),(1741,2,41400,0,'NZMT'),(1741,3,43200,1,'NZST'),(1741,4,46800,1,'NZDT'),(1741,5,43200,0,'NZST'),(1741,6,43200,0,'NZST'),(1742,0,44028,0,'LMT'),(1742,1,44100,0,'+1215'),(1742,2,49500,1,'+1345'),(1742,3,45900,0,'+1245'),(1742,4,45900,0,'+1245'),(1743,0,-25196,0,'LMT'),(1743,1,-21600,1,'MDT'),(1743,2,-25200,0,'MST'),(1743,3,-21600,1,'MWT'),(1743,4,-21600,1,'MPT'),(1744,0,29143,0,'LMT'),(1744,1,32400,1,'CDT'),(1744,2,28800,0,'CST'),(1745,0,-25200,1,'PDT'),(1745,1,-28800,0,'PST'),(1745,2,-25200,1,'PWT'),(1745,3,-25200,1,'PPT'),(1746,0,45184,0,'LMT'),(1746,1,-41216,0,'LMT'),(1746,2,-41400,0,'-1130'),(1746,3,-36000,1,'-10'),(1746,4,-39600,0,'-11'),(1746,5,46800,0,'+13'),(1746,6,50400,1,'+14'),(1747,0,41944,0,'LMT'),(1747,1,45000,1,'NZST'),(1747,2,41400,0,'NZMT'),(1747,3,43200,1,'NZST'),(1747,4,46800,1,'NZDT'),(1747,5,43200,0,'NZST'),(1747,6,43200,0,'NZST'),(1748,0,35312,0,'PMMT'),(1748,1,36000,0,'+10'),(1748,2,32400,0,'+09'),(1748,3,39600,0,'+11'),(1749,0,44028,0,'LMT'),(1749,1,44100,0,'+1215'),(1749,2,49500,1,'+1345'),(1749,3,45900,0,'+1245'),(1749,4,45900,0,'+1245'),(1750,0,36428,0,'LMT'),(1750,1,36000,0,'+10'),(1750,2,32400,0,'+09'),(1750,3,36000,0,'+10'),(1751,0,-26248,0,'LMT'),(1751,1,-26248,0,'EMT'),(1751,2,-21600,1,'-06'),(1751,3,-25200,0,'-07'),(1751,4,-25200,0,'-07'),(1751,5,-21600,0,'-06'),(1751,6,-18000,1,'-05'),(1752,0,40396,0,'LMT'),(1752,1,43200,1,'+12'),(1752,2,39600,0,'+11'),(1752,3,43200,1,'+12'),(1752,4,39600,0,'+11'),(1753,0,-41060,0,'LMT'),(1753,1,-43200,0,'-12'),(1753,2,-39600,0,'-11'),(1753,3,46800,0,'+13'),(1754,0,-41096,0,'LMT'),(1754,1,-39600,0,'-11'),(1754,2,46800,0,'+13'),(1755,0,42944,0,'LMT'),(1755,1,46800,1,'+13'),(1755,2,43200,0,'+12'),(1756,0,43200,0,'+12'),(1757,0,-21504,0,'LMT'),(1757,1,-18000,0,'-05'),(1757,2,-18000,1,'-05'),(1757,3,-21600,0,'-06'),(1758,0,-32388,0,'LMT'),(1758,1,-32400,0,'-09'),(1759,0,38388,0,'LMT'),(1759,1,39600,0,'+11'),(1760,0,34740,0,'LMT'),(1760,1,36000,0,'GST'),(1760,2,32400,0,'+09'),(1760,3,39600,1,'GDT'),(1760,4,36000,0,'ChST'),(1761,0,-37886,0,'LMT'),(1761,1,-37800,0,'HST'),(1761,2,-34200,1,'HDT'),(1761,3,-34200,1,'HWT'),(1761,4,-34200,1,'HPT'),(1761,5,-36000,0,'HST'),(1762,0,-37886,0,'LMT'),(1762,1,-37800,0,'HST'),(1762,2,-34200,1,'HDT'),(1762,3,-34200,1,'HWT'),(1762,4,-34200,1,'HPT'),(1762,5,-36000,0,'HST'),(1763,0,-37760,0,'LMT'),(1763,1,-38400,0,'-1040'),(1763,2,-36000,0,'-10'),(1763,3,50400,0,'+14'),(1764,0,39116,0,'LMT'),(1764,1,39600,0,'+11'),(1764,2,32400,0,'+09'),(1764,3,36000,0,'+10'),(1764,4,43200,0,'+12'),(1764,5,39600,0,'+11'),(1765,0,40160,0,'LMT'),(1765,1,39600,0,'+11'),(1765,2,36000,0,'+10'),(1765,3,32400,0,'+09'),(1765,4,-43200,0,'-12'),(1765,5,43200,0,'+12'),(1766,0,41088,0,'LMT'),(1766,1,39600,0,'+11'),(1766,2,32400,0,'+09'),(1766,3,36000,0,'+10'),(1766,4,43200,0,'+12'),(1767,0,-33480,0,'LMT'),(1767,1,-34200,0,'-0930'),(1768,0,45432,0,'LMT'),(1768,1,-40968,0,'LMT'),(1768,2,-39600,0,'SST'),(1769,0,40060,0,'LMT'),(1769,1,41400,0,'+1130'),(1769,2,32400,0,'+09'),(1769,3,43200,0,'+12'),(1770,0,-40780,0,'LMT'),(1770,1,-40800,0,'-1120'),(1770,2,-41400,0,'-1130'),(1770,3,-39600,0,'-11'),(1771,0,40312,0,'LMT'),(1771,1,40320,0,'+1112'),(1771,2,41400,0,'+1130'),(1771,3,45000,1,'+1230'),(1771,4,41400,0,'+1130'),(1771,5,39600,0,'+11'),(1771,6,43200,1,'+12'),(1771,7,39600,0,'+11'),(1772,0,39948,0,'LMT'),(1772,1,43200,1,'+12'),(1772,2,39600,0,'+11'),(1772,3,43200,1,'+12'),(1772,4,39600,0,'+11'),(1773,0,45432,0,'LMT'),(1773,1,-40968,0,'LMT'),(1773,2,-39600,0,'SST'),(1774,0,32400,0,'+09'),(1775,0,-31220,0,'LMT'),(1775,1,-30600,0,'-0830'),(1775,2,-28800,0,'-08'),(1776,0,37972,0,'LMT'),(1776,1,39600,0,'+11'),(1776,2,32400,0,'+09'),(1776,3,36000,0,'+10'),(1776,4,39600,0,'+11'),(1777,0,37972,0,'LMT'),(1777,1,39600,0,'+11'),(1777,2,32400,0,'+09'),(1777,3,36000,0,'+10'),(1777,4,39600,0,'+11'),(1778,0,36000,0,'+10'),(1779,0,-38344,0,'LMT'),(1779,1,-37800,0,'-1030'),(1779,2,-36000,0,'-10'),(1779,3,-34200,1,'-0930'),(1780,0,34740,0,'LMT'),(1780,1,36000,0,'GST'),(1780,2,32400,0,'+09'),(1780,3,39600,1,'GDT'),(1780,4,36000,0,'ChST'),(1781,0,45432,0,'LMT'),(1781,1,-40968,0,'LMT'),(1781,2,-39600,0,'SST'),(1782,0,-35896,0,'LMT'),(1782,1,-36000,0,'-10'),(1783,0,43200,0,'+12'),(1784,0,44360,0,'LMT'),(1784,1,44400,0,'+1220'),(1784,2,46800,0,'+13'),(1784,3,50400,1,'+14'),(1784,4,46800,0,'+13'),(1784,5,50400,1,'+14'),(1785,0,36428,0,'LMT'),(1785,1,36000,0,'+10'),(1785,2,32400,0,'+09'),(1785,3,36000,0,'+10'),(1786,0,43200,0,'+12'),(1787,0,43200,0,'+12'),(1788,0,36428,0,'LMT'),(1788,1,36000,0,'+10'),(1788,2,32400,0,'+09'),(1788,3,36000,0,'+10'),(1789,0,5040,0,'LMT'),(1789,1,5040,0,'WMT'),(1789,2,7200,1,'CEST'),(1789,3,3600,0,'CET'),(1789,4,7200,1,'CEST'),(1789,5,3600,0,'CET'),(1789,6,10800,1,'EEST'),(1789,7,7200,0,'EET'),(1789,8,7200,0,'EET'),(1789,9,7200,1,'CEST'),(1789,10,3600,0,'CET'),(1790,0,-2205,0,'LMT'),(1790,1,3600,1,'WEST'),(1790,2,0,0,'WET'),(1790,3,3600,1,'WEST'),(1790,4,0,0,'WET'),(1790,5,7200,1,'WEMT'),(1790,6,0,0,'WET'),(1790,7,3600,0,'CET'),(1790,8,3600,0,'CET'),(1790,9,7200,1,'CEST'),(1790,10,3600,1,'WEST'),(1790,11,0,0,'WET'),(1791,0,29160,0,'LMT'),(1791,1,28800,0,'CST'),(1791,2,32400,0,'JST'),(1791,3,32400,1,'CDT'),(1791,4,28800,0,'CST'),(1792,0,30472,0,'LMT'),(1792,1,30600,0,'KST'),(1792,2,32400,0,'JST'),(1792,3,36000,1,'KDT'),(1792,4,32400,0,'KST'),(1792,5,34200,1,'KDT'),(1792,6,36000,1,'KDT'),(1793,0,24925,0,'LMT'),(1793,1,24925,0,'SMT'),(1793,2,25200,0,'+07'),(1793,3,26400,1,'+0720'),(1793,4,26400,0,'+0720'),(1793,5,27000,0,'+0730'),(1793,6,32400,0,'+09'),(1793,7,28800,0,'+08'),(1794,0,-15865,0,'LMT'),(1794,1,-14400,0,'AST'),(1794,2,-10800,1,'APT'),(1794,3,-10800,1,'AWT'),(1795,0,-15264,0,'LMT'),(1795,1,-10800,1,'ADT'),(1795,2,-14400,0,'AST'),(1795,3,-10800,1,'AWT'),(1795,4,-10800,1,'APT'),(1796,0,-25116,0,'LMT'),(1796,1,-21600,1,'MDT'),(1796,2,-25200,0,'MST'),(1796,3,-21600,1,'MWT'),(1796,4,-21600,1,'MPT'),(1796,5,-21600,0,'CST'),(1797,0,-21036,0,'LMT'),(1797,1,-18000,1,'CDT'),(1797,2,-21600,0,'CST'),(1797,3,-18000,0,'EST'),(1797,4,-18000,1,'CWT'),(1797,5,-18000,1,'CPT'),(1797,6,-21600,0,'CST'),(1798,0,-19088,0,'LMT'),(1798,1,-19176,0,'CMT'),(1798,2,-18000,0,'EST'),(1799,0,-17762,0,'LMT'),(1799,1,-14400,1,'EDT'),(1799,2,-18000,0,'EST'),(1799,3,-14400,1,'EWT'),(1799,4,-14400,1,'EPT'),(1800,0,-37886,0,'LMT'),(1800,1,-37800,0,'HST'),(1800,2,-34200,1,'HDT'),(1800,3,-34200,1,'HWT'),(1800,4,-34200,1,'HPT'),(1800,5,-36000,0,'HST'),(1801,0,-26898,0,'LMT'),(1801,1,-21600,1,'MDT'),(1801,2,-25200,0,'MST'),(1801,3,-21600,1,'MWT'),(1802,0,-25196,0,'LMT'),(1802,1,-21600,1,'MDT'),(1802,2,-25200,0,'MST'),(1802,3,-21600,1,'MWT'),(1802,4,-21600,1,'MPT'),(1803,0,-31220,0,'LMT'),(1803,1,-30600,0,'-0830'),(1803,2,-28800,0,'-08'),(1804,0,-28378,0,'LMT'),(1804,1,-25200,1,'PDT'),(1804,2,-28800,0,'PST'),(1804,3,-25200,1,'PWT'),(1804,4,-25200,1,'PPT'),(1805,0,-32388,0,'LMT'),(1805,1,-32400,0,'-09'),(1806,0,-35976,0,'LMT'),(1806,1,-36000,0,'AST'),(1806,2,-32400,1,'AWT'),(1806,3,-32400,1,'APT'),(1806,4,-36000,0,'AHST'),(1806,5,-32400,1,'AHDT'),(1806,6,-32400,0,'YST'),(1806,7,-28800,1,'AKDT'),(1806,8,-32400,0,'AKST'),(1807,0,6952,0,'LMT'),(1807,1,7016,0,'IMT'),(1807,2,10800,1,'EEST'),(1807,3,7200,0,'EET'),(1807,4,10800,0,'+03'),(1807,5,14400,1,'+04'),(1807,6,10800,1,'EEST'),(1807,7,7200,0,'EET'),(1807,8,10800,1,'EEST'),(1807,9,7200,0,'EET'),(1807,10,10800,0,'+03'),(1808,0,0,0,'UTC'),(1809,0,-35976,0,'LMT'),(1809,1,-36000,0,'AST'),(1809,2,-32400,1,'AWT'),(1809,3,-32400,1,'APT'),(1809,4,-36000,0,'AHST'),(1809,5,-32400,1,'AHDT'),(1809,6,-32400,0,'YST'),(1809,7,-28800,1,'AKDT'),(1809,8,-32400,0,'AKST'),(1810,0,-42398,0,'LMT'),(1810,1,-39600,0,'NST'),(1810,2,-36000,1,'NWT'),(1810,3,-36000,1,'NPT'),(1810,4,-39600,0,'BST'),(1810,5,-36000,1,'BDT'),(1810,6,-36000,0,'AHST'),(1810,7,-32400,1,'HDT'),(1810,8,-36000,0,'HST'),(1811,0,-26898,0,'LMT'),(1811,1,-21600,1,'MDT'),(1811,2,-25200,0,'MST'),(1811,3,-21600,1,'MWT'),(1812,0,-21036,0,'LMT'),(1812,1,-18000,1,'CDT'),(1812,2,-21600,0,'CST'),(1812,3,-18000,0,'EST'),(1812,4,-18000,1,'CWT'),(1812,5,-18000,1,'CPT'),(1812,6,-21600,0,'CST'),(1813,0,-20678,0,'LMT'),(1813,1,-18000,1,'CDT'),(1813,2,-21600,0,'CST'),(1813,3,-18000,1,'CWT'),(1813,4,-18000,1,'CPT'),(1813,5,-18000,0,'EST'),(1813,6,-14400,1,'EDT'),(1814,0,-17762,0,'LMT'),(1814,1,-14400,1,'EDT'),(1814,2,-18000,0,'EST'),(1814,3,-14400,1,'EWT'),(1814,4,-14400,1,'EPT'),(1815,0,-37886,0,'LMT'),(1815,1,-37800,0,'HST'),(1815,2,-34200,1,'HDT'),(1815,3,-34200,1,'HWT'),(1815,4,-34200,1,'HPT'),(1815,5,-36000,0,'HST'),(1816,0,-20790,0,'LMT'),(1816,1,-18000,1,'CDT'),(1816,2,-21600,0,'CST'),(1816,3,-18000,1,'CWT'),(1816,4,-18000,1,'CPT'),(1816,5,-18000,0,'EST'),(1816,6,-21600,0,'CST'),(1817,0,-19931,0,'LMT'),(1817,1,-21600,0,'CST'),(1817,2,-18000,0,'EST'),(1817,3,-14400,1,'EWT'),(1817,4,-14400,1,'EPT'),(1817,5,-14400,1,'EDT'),(1818,0,-25196,0,'LMT'),(1818,1,-21600,1,'MDT'),(1818,2,-25200,0,'MST'),(1818,3,-21600,1,'MWT'),(1818,4,-21600,1,'MPT'),(1819,0,-28378,0,'LMT'),(1819,1,-25200,1,'PDT'),(1819,2,-28800,0,'PST'),(1819,3,-25200,1,'PWT'),(1819,4,-25200,1,'PPT'),(1820,0,-28378,0,'LMT'),(1820,1,-25200,1,'PDT'),(1820,2,-28800,0,'PST'),(1820,3,-25200,1,'PWT'),(1820,4,-25200,1,'PPT'),(1821,0,45432,0,'LMT'),(1821,1,-40968,0,'LMT'),(1821,2,-39600,0,'SST'),(1822,0,0,0,'UTC'),(1823,0,0,0,'UTC'),(1824,0,9017,0,'LMT'),(1824,1,9017,0,'MMT'),(1824,2,12679,1,'MST'),(1824,3,9079,0,'MMT'),(1824,4,16279,1,'MDST'),(1824,5,14400,1,'MSD'),(1824,6,10800,0,'MSK'),(1824,7,14400,1,'MSD'),(1824,8,18000,1,'+05'),(1824,9,7200,0,'EET'),(1824,10,10800,0,'MSK'),(1824,11,14400,1,'MSD'),(1824,12,10800,1,'EEST'),(1824,13,7200,0,'EET'),(1824,14,14400,0,'MSK'),(1824,15,14400,1,'MSD'),(1824,16,10800,0,'MSK'),(1825,0,3600,1,'WEST'),(1825,1,0,0,'WET'),(1826,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(32) 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', + `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 NOT NULL DEFAULT 'mysql_native_password', + `authentication_string` text COLLATE utf8_bin, + `password_expired` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `password_last_changed` timestamp NULL DEFAULT NULL, + `password_lifetime` smallint(5) unsigned DEFAULT NULL, + `account_locked` 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','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','*81F5E21E35407D884A6CD4A731AEBFB6AF209E1B','N','2021-04-16 23:37:25',NULL,'N'),('localhost','mysql.session','N','N','N','N','N','N','N','N','N','N','N','N','N','N','N','Y','N','N','N','N','N','N','N','N','N','N','N','N','N','','','','',0,0,0,0,'mysql_native_password','*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE','N','2021-04-16 23:37:20',NULL,'Y'),('localhost','mysql.sys','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','*THISISNOTAVALIDPASSWORDTHATCANBEUSEDHERE','N','2021-04-16 23:37:20',NULL,'Y'),('%','root','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','*81F5E21E35407D884A6CD4A731AEBFB6AF209E1B','N','2021-04-16 23:37:25',NULL,'N'),('%','sei_user','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','*873B8A41CA23D5F6AD44C106E2A420865F7901A6','N','2021-04-16 23:37:25',NULL,'N'),('%','sip_user','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','*C585647FD182E2CA1EA3E1D35B582E454321670C','N','2021-04-16 23:37:25',NULL,'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(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + `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` mediumblob 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(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + `user_host` mediumtext NOT NULL, + `query_time` time(6) NOT NULL, + `lock_time` time(6) 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` mediumblob 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: `sei` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sei` /*!40100 DEFAULT CHARACTER SET latin1 */; + +USE `sei`; + +-- +-- Table structure for table `acao_federacao` +-- + +DROP TABLE IF EXISTS `acao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `acao_federacao` ( + `id_acao_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `id_orgao_federacao` varchar(26) NOT NULL, + `id_unidade_federacao` varchar(26) NOT NULL, + `id_usuario_federacao` varchar(26) NOT NULL, + `id_procedimento_federacao` varchar(26) DEFAULT NULL, + `id_documento_federacao` varchar(26) DEFAULT NULL, + `dth_geracao` datetime NOT NULL, + `dth_acesso` datetime DEFAULT NULL, + `sta_tipo` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_acao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `acao_federacao` +-- + +LOCK TABLES `acao_federacao` WRITE; +/*!40000 ALTER TABLE `acao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `acao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `acesso` +-- + +DROP TABLE IF EXISTS `acesso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `acesso` ( + `id_acesso` int(11) NOT NULL, + `id_usuario` int(11) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `sta_tipo` char(1) NOT NULL, + `id_controle_interno` int(11) DEFAULT NULL, + PRIMARY KEY (`id_acesso`), + KEY `fk_acesso_usuario` (`id_usuario`), + KEY `fk_acesso_protocolo` (`id_protocolo`), + KEY `i01_acesso` (`id_unidade`,`id_usuario`,`id_protocolo`,`sta_tipo`), + KEY `fk_acesso_controle_interno` (`id_controle_interno`), + KEY `fk_acesso_unidade` (`id_unidade`), + KEY `i02_acesso` (`id_protocolo`,`sta_tipo`), + KEY `i03_acesso` (`id_protocolo`,`id_unidade`,`id_usuario`), + CONSTRAINT `fk_acesso_controle_interno` FOREIGN KEY (`id_controle_interno`) REFERENCES `controle_interno` (`id_controle_interno`), + CONSTRAINT `fk_acesso_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_acesso_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_acesso_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `acesso` +-- + +LOCK TABLES `acesso` WRITE; +/*!40000 ALTER TABLE `acesso` DISABLE KEYS */; +/*!40000 ALTER TABLE `acesso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `acesso_externo` +-- + +DROP TABLE IF EXISTS `acesso_externo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `acesso_externo` ( + `id_acesso_externo` int(11) NOT NULL, + `id_atividade` int(11) NOT NULL, + `id_participante` int(11) NOT NULL, + `dta_validade` datetime DEFAULT NULL, + `email_unidade` varchar(250) DEFAULT NULL, + `hash_interno` varchar(32) NOT NULL, + `sta_tipo` char(1) NOT NULL, + `id_documento` bigint(20) DEFAULT NULL, + `sin_processo` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `email_destinatario` varchar(100) DEFAULT NULL, + `sin_inclusao` char(1) NOT NULL, + `dth_visualizacao` datetime DEFAULT NULL, + PRIMARY KEY (`id_acesso_externo`), + KEY `i04_acesso_externo` (`sta_tipo`,`id_documento`,`id_acesso_externo`,`id_atividade`,`id_participante`), + KEY `fk_acesso_externo_documento` (`id_documento`), + KEY `fk_acesso_externo_atividade` (`id_atividade`), + KEY `fk_acesso_externo_participante` (`id_participante`), + KEY `i05_acesso_externo` (`sta_tipo`,`sin_inclusao`), + CONSTRAINT `fk_acesso_externo_atividade` FOREIGN KEY (`id_atividade`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_acesso_externo_documento` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_acesso_externo_participante` FOREIGN KEY (`id_participante`) REFERENCES `participante` (`id_participante`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `acesso_externo` +-- + +LOCK TABLES `acesso_externo` WRITE; +/*!40000 ALTER TABLE `acesso_externo` DISABLE KEYS */; +/*!40000 ALTER TABLE `acesso_externo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `acesso_federacao` +-- + +DROP TABLE IF EXISTS `acesso_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `acesso_federacao` ( + `id_acesso_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao_rem` varchar(26) NOT NULL, + `id_orgao_federacao_rem` varchar(26) NOT NULL, + `id_unidade_federacao_rem` varchar(26) NOT NULL, + `id_usuario_federacao_rem` varchar(26) DEFAULT NULL, + `id_instalacao_federacao_dest` varchar(26) NOT NULL, + `id_orgao_federacao_dest` varchar(26) NOT NULL, + `id_unidade_federacao_dest` varchar(26) NOT NULL, + `id_usuario_federacao_dest` varchar(26) DEFAULT NULL, + `id_procedimento_federacao` varchar(26) NOT NULL, + `id_documento_federacao` varchar(26) DEFAULT NULL, + `dth_liberacao` datetime NOT NULL, + `motivo_liberacao` varchar(4000) DEFAULT NULL, + `dth_cancelamento` datetime DEFAULT NULL, + `motivo_cancelamento` varchar(4000) DEFAULT NULL, + `sta_tipo` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_acesso_federacao`), + KEY `fk_acesso_fed_documento_fed` (`id_documento_federacao`), + KEY `fk_acesso_fed_instal_fed_rem` (`id_instalacao_federacao_rem`), + KEY `fk_acesso_fed_orgao_fed_rem` (`id_orgao_federacao_rem`), + KEY `fk_acesso_fed_unidade_fed_rem` (`id_unidade_federacao_rem`), + KEY `fk_acesso_fed_usuario_fed_rem` (`id_usuario_federacao_rem`), + KEY `fk_acesso_fed_instal_fed_dest` (`id_instalacao_federacao_dest`), + KEY `fk_acesso_fed_orgao_fed_dest` (`id_orgao_federacao_dest`), + KEY `fk_acesso_fed_unidade_fed_dest` (`id_unidade_federacao_dest`), + KEY `fk_acesso_fed_usuario_fed_dest` (`id_usuario_federacao_dest`), + KEY `i02_acesso_federacao` (`id_procedimento_federacao`,`id_instalacao_federacao_rem`,`id_instalacao_federacao_dest`), + KEY `i03_acesso_federacao` (`id_procedimento_federacao`,`id_instalacao_federacao_dest`), + KEY `i04_acesso_federacao` (`id_documento_federacao`,`id_instalacao_federacao_rem`,`id_instalacao_federacao_dest`), + KEY `fk_acesso_fed_procedimento_fed` (`id_procedimento_federacao`), + CONSTRAINT `fk_acesso_fed_documento_fed` FOREIGN KEY (`id_documento_federacao`) REFERENCES `protocolo_federacao` (`id_protocolo_federacao`), + CONSTRAINT `fk_acesso_fed_instal_fed_dest` FOREIGN KEY (`id_instalacao_federacao_dest`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`), + CONSTRAINT `fk_acesso_fed_instal_fed_rem` FOREIGN KEY (`id_instalacao_federacao_rem`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`), + CONSTRAINT `fk_acesso_fed_orgao_fed_dest` FOREIGN KEY (`id_orgao_federacao_dest`) REFERENCES `orgao_federacao` (`id_orgao_federacao`), + CONSTRAINT `fk_acesso_fed_orgao_fed_rem` FOREIGN KEY (`id_orgao_federacao_rem`) REFERENCES `orgao_federacao` (`id_orgao_federacao`), + CONSTRAINT `fk_acesso_fed_procedimento_fed` FOREIGN KEY (`id_procedimento_federacao`) REFERENCES `protocolo_federacao` (`id_protocolo_federacao`), + CONSTRAINT `fk_acesso_fed_unidade_fed_dest` FOREIGN KEY (`id_unidade_federacao_dest`) REFERENCES `unidade_federacao` (`id_unidade_federacao`), + CONSTRAINT `fk_acesso_fed_unidade_fed_rem` FOREIGN KEY (`id_unidade_federacao_rem`) REFERENCES `unidade_federacao` (`id_unidade_federacao`), + CONSTRAINT `fk_acesso_fed_usuario_fed_dest` FOREIGN KEY (`id_usuario_federacao_dest`) REFERENCES `usuario_federacao` (`id_usuario_federacao`), + CONSTRAINT `fk_acesso_fed_usuario_fed_rem` FOREIGN KEY (`id_usuario_federacao_rem`) REFERENCES `usuario_federacao` (`id_usuario_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `acesso_federacao` +-- + +LOCK TABLES `acesso_federacao` WRITE; +/*!40000 ALTER TABLE `acesso_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `acesso_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `acompanhamento` +-- + +DROP TABLE IF EXISTS `acompanhamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `acompanhamento` ( + `id_acompanhamento` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_grupo_acompanhamento` int(11) DEFAULT NULL, + `id_protocolo` bigint(20) NOT NULL, + `observacao` varchar(500) DEFAULT NULL, + `tipo_visualizacao` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `dth_alteracao` datetime NOT NULL, + `idx_acompanhamento` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_acompanhamento`), + KEY `fk_acompanhamento_grupo_acompa` (`id_grupo_acompanhamento`), + KEY `fk_acompanhamento_protocolo` (`id_protocolo`), + KEY `fk_acompanhamento_unidade` (`id_unidade`), + KEY `fk_acompanhamento_usuario` (`id_usuario`), + CONSTRAINT `fk_acompanhamento_grupo_acompa` FOREIGN KEY (`id_grupo_acompanhamento`) REFERENCES `grupo_acompanhamento` (`id_grupo_acompanhamento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_acompanhamento_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_acompanhamento_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_acompanhamento_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `acompanhamento` +-- + +LOCK TABLES `acompanhamento` WRITE; +/*!40000 ALTER TABLE `acompanhamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `acompanhamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `andamento_instalacao` +-- + +DROP TABLE IF EXISTS `andamento_instalacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `andamento_instalacao` ( + `id_andamento_instalacao` int(11) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `id_tarefa_instalacao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `sta_estado` char(1) NOT NULL, + `dth_estado` datetime NOT NULL, + PRIMARY KEY (`id_andamento_instalacao`), + KEY `fk_andamento_inst_inst_fed` (`id_instalacao_federacao`), + KEY `fk_andamento_inst_unidade` (`id_unidade`), + KEY `fk_andamento_inst_usuario` (`id_usuario`), + KEY `fk_and_inst_tarefa_inst` (`id_tarefa_instalacao`), + CONSTRAINT `fk_and_inst_tarefa_inst` FOREIGN KEY (`id_tarefa_instalacao`) REFERENCES `tarefa_instalacao` (`id_tarefa_instalacao`), + CONSTRAINT `fk_andamento_inst_inst_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`), + CONSTRAINT `fk_andamento_inst_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_andamento_inst_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `andamento_instalacao` +-- + +LOCK TABLES `andamento_instalacao` WRITE; +/*!40000 ALTER TABLE `andamento_instalacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `andamento_instalacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `andamento_marcador` +-- + +DROP TABLE IF EXISTS `andamento_marcador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `andamento_marcador` ( + `id_andamento_marcador` int(11) NOT NULL, + `id_marcador` int(11) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `dth_execucao` datetime NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `sin_ultimo` char(1) NOT NULL, + `texto` varchar(250) DEFAULT NULL, + `sta_operacao` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_andamento_marcador`), + KEY `fk_andamento_marcador_unidade` (`id_unidade`), + KEY `fk_andamento_marcador_usuario` (`id_usuario`), + KEY `fk_andamento_marcador_proced` (`id_procedimento`), + KEY `i01_andamento_marcador` (`id_marcador`,`id_procedimento`,`id_unidade`,`sin_ultimo`), + KEY `fk_andamento_marcador_marcador` (`id_marcador`), + KEY `i02_andamento_marcador` (`id_unidade`,`id_procedimento`,`sin_ultimo`), + CONSTRAINT `fk_andamento_marcador_marcador` FOREIGN KEY (`id_marcador`) REFERENCES `marcador` (`id_marcador`), + CONSTRAINT `fk_andamento_marcador_proced` FOREIGN KEY (`id_procedimento`) REFERENCES `procedimento` (`id_procedimento`), + CONSTRAINT `fk_andamento_marcador_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_andamento_marcador_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `andamento_marcador` +-- + +LOCK TABLES `andamento_marcador` WRITE; +/*!40000 ALTER TABLE `andamento_marcador` DISABLE KEYS */; +/*!40000 ALTER TABLE `andamento_marcador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `andamento_situacao` +-- + +DROP TABLE IF EXISTS `andamento_situacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `andamento_situacao` ( + `id_andamento_situacao` int(11) NOT NULL, + `dth_execucao` datetime NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_situacao` int(11) DEFAULT NULL, + `sin_ultimo` char(1) NOT NULL, + PRIMARY KEY (`id_andamento_situacao`), + KEY `fk_andam_situacao_procedimento` (`id_procedimento`), + KEY `fk_andamento_situacao_unidade` (`id_unidade`), + KEY `fk_andamento_situacao_usuario` (`id_usuario`), + KEY `i01_andamento_situacao` (`id_situacao`,`id_procedimento`,`id_unidade`,`sin_ultimo`), + KEY `fk_andam_situacao_situacao` (`id_situacao`), + CONSTRAINT `fk_andam_situacao_procedimento` FOREIGN KEY (`id_procedimento`) REFERENCES `procedimento` (`id_procedimento`), + CONSTRAINT `fk_andam_situacao_situacao` FOREIGN KEY (`id_situacao`) REFERENCES `situacao` (`id_situacao`), + CONSTRAINT `fk_andamento_situacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_andamento_situacao_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `andamento_situacao` +-- + +LOCK TABLES `andamento_situacao` WRITE; +/*!40000 ALTER TABLE `andamento_situacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `andamento_situacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `anexo` +-- + +DROP TABLE IF EXISTS `anexo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `anexo` ( + `id_anexo` int(11) NOT NULL, + `nome` varchar(255) NOT NULL, + `id_protocolo` bigint(20) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `tamanho` int(11) NOT NULL, + `dth_inclusao` datetime NOT NULL, + `id_base_conhecimento` int(11) DEFAULT NULL, + `id_projeto` int(11) DEFAULT NULL, + `hash` char(32) NOT NULL, + PRIMARY KEY (`id_anexo`), + UNIQUE KEY `ak1_anexo` (`id_anexo`,`sin_ativo`), + KEY `i01_anexo` (`id_protocolo`,`sin_ativo`), + KEY `i02_anexo` (`dth_inclusao`,`id_anexo`), + KEY `fk_anexo_base_conhecimento` (`id_base_conhecimento`), + KEY `fk_anexo_protocolo` (`id_protocolo`), + KEY `fk_anexo_unidade` (`id_unidade`), + KEY `fk_anexo_usuario` (`id_usuario`), + CONSTRAINT `fk_anexo_base_conhecimento` FOREIGN KEY (`id_base_conhecimento`) REFERENCES `base_conhecimento` (`id_base_conhecimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_anexo_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_anexo_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_anexo_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `anexo` +-- + +LOCK TABLES `anexo` WRITE; +/*!40000 ALTER TABLE `anexo` DISABLE KEYS */; +/*!40000 ALTER TABLE `anexo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `anotacao` +-- + +DROP TABLE IF EXISTS `anotacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `anotacao` ( + `id_anotacao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_usuario` int(11) NOT NULL, + `descricao` longtext, + `dth_anotacao` datetime NOT NULL, + `sin_prioridade` char(1) NOT NULL, + `sta_anotacao` char(1) NOT NULL, + PRIMARY KEY (`id_anotacao`), + KEY `fk_anotacao_protocolo` (`id_protocolo`), + KEY `fk_anotacao_usuario` (`id_usuario`), + KEY `i01_anotacao` (`id_unidade`,`id_protocolo`,`id_usuario`,`sin_prioridade`,`sta_anotacao`), + KEY `fk_anotacao_unidade` (`id_unidade`), + CONSTRAINT `fk_anotacao_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_anotacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_anotacao_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `anotacao` +-- + +LOCK TABLES `anotacao` WRITE; +/*!40000 ALTER TABLE `anotacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `anotacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `arquivamento` +-- + +DROP TABLE IF EXISTS `arquivamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `arquivamento` ( + `id_protocolo` bigint(20) NOT NULL, + `id_localizador` int(11) DEFAULT NULL, + `id_atividade_arquivamento` int(11) DEFAULT NULL, + `id_atividade_desarquivamento` int(11) DEFAULT NULL, + `id_atividade_recebimento` int(11) DEFAULT NULL, + `id_atividade_solicitacao` int(11) DEFAULT NULL, + `sta_arquivamento` char(1) NOT NULL, + `id_atividade_cancelamento` int(11) DEFAULT NULL, + PRIMARY KEY (`id_protocolo`), + KEY `i07_arquivamento` (`id_localizador`,`sta_arquivamento`), + KEY `fk_arquiv_ativ_arquiv` (`id_atividade_arquivamento`), + KEY `fk_arquiv_ativ_desarquiv` (`id_atividade_desarquivamento`), + KEY `fk_arquiv_ativ_receb` (`id_atividade_recebimento`), + KEY `fk_arquiv_ativ_solic_desarq` (`id_atividade_solicitacao`), + KEY `fk_arquivamento_localizador` (`id_localizador`), + KEY `fk_arquiv_ativ_canc` (`id_atividade_cancelamento`), + CONSTRAINT `fk_arquiv_ativ_arquiv` FOREIGN KEY (`id_atividade_arquivamento`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_arquiv_ativ_canc` FOREIGN KEY (`id_atividade_cancelamento`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_arquiv_ativ_desarquiv` FOREIGN KEY (`id_atividade_desarquivamento`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_arquiv_ativ_receb` FOREIGN KEY (`id_atividade_recebimento`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_arquiv_ativ_solic_desarq` FOREIGN KEY (`id_atividade_solicitacao`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_arquivamento_localizador` FOREIGN KEY (`id_localizador`) REFERENCES `localizador` (`id_localizador`), + CONSTRAINT `fk_arquivamento_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `arquivamento` +-- + +LOCK TABLES `arquivamento` WRITE; +/*!40000 ALTER TABLE `arquivamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `arquivamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `arquivo_extensao` +-- + +DROP TABLE IF EXISTS `arquivo_extensao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `arquivo_extensao` ( + `id_arquivo_extensao` int(11) NOT NULL, + `extensao` varchar(10) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `tamanho_maximo` int(11) DEFAULT NULL, + `sin_interface` char(1) NOT NULL, + `sin_servico` char(1) NOT NULL, + PRIMARY KEY (`id_arquivo_extensao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `arquivo_extensao` +-- + +LOCK TABLES `arquivo_extensao` WRITE; +/*!40000 ALTER TABLE `arquivo_extensao` DISABLE KEYS */; +INSERT INTO `arquivo_extensao` VALUES (1,'pdf','Portable Document Format (Formato Portátil de Documento).','S',NULL,'S','S'),(2,'txt','Arquivo de texto sem formatação.','S',NULL,'S','S'),(3,'doc','Arquivo de documento de texto do Microsoft Word. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(4,'docx','Arquivo de documento de texto do Microsoft Word 2007 ou superior. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(5,'xls','Arquivo de planilha eletrônica do Microsoft Excel. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(6,'xlsx','Arquivo de planilha eletrônica do Microsoft Excel 2007 ou superior. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(7,'ppt','Arquivo de apresentação do Microsoft Power Point. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(8,'pptx','Arquivo de apresentação do Microsoft Power Point 2007 ou superior. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(9,'jpg','Arquivo de imagem digital tradicionalmente utilizado em câmaras digitais.','N',NULL,'S','S'),(10,'gif','Arquivo de imagem digital tradicionalmente utilizado em páginas web e que suporta transparência. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(11,'png','Arquivo de imagem digital tradicionalmente utilizado em páginas web e que suporta transparência.','N',NULL,'S','S'),(12,'zip','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(13,'rar','Arquivo compactado com outros arquivos ou pastas. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(14,'mp3','Arquivo de áudio com compactação sem grandes perdas de qualidade. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(15,'psd','Arquivo de imagem do Photoshop. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(16,'cdr','Arquivo de imagem do Corel Draw. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(17,'dwg','Arquivo de imagem do Autocad. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(18,'rtf','Arquivo do tipo Rich Text Format, para intercâmbio de documentos entre diversas plataformas. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(19,'odt','Arquivo de documento de texto do tipo OpenDocument.','N',NULL,'S','S'),(20,'ods','Arquivo de planilha eletrônica do tipo OpenDocument.','S',NULL,'S','S'),(21,'odp','Arquivo de apresentação do tipo OpenDocument.','S',NULL,'S','S'),(22,'avi','Arquivo de vídeo com compactação ou não, sem grandes perdas de qualidade. O formato é muito popular e pode ser reproduzido por quase qualquer player. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(23,'mp4','Arquivo de vídeo referente ao MPEG-4 Part 14. Um padrão que é parte da especificação MPEG-4 desenvolvido pela ISO/IEC 14496-14.','S',NULL,'S','S'),(24,'wmv','Arquivo de vídeo em formato proprietário da Microsoft. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(25,'mpeg','Arquivo de vídeo MPEG (Moving Picture Experts Group) é um formato de compressão mantido pela International Organization for Standardization. O formato é muito popular e pode ser reproduzido por quase qualquer player.','S',NULL,'S','S'),(26,'mpg','Arquivo de vídeo MPEG (Moving Picture Experts Group) é um formato de compressão mantido pela International Organization for Standardization. O formato é muito popular e pode ser reproduzido por quase qualquer player.','S',NULL,'S','S'),(27,'7z','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(28,'csv','Arquivo de texto com dados separados por vírgula. Significa \"Comma Separated Values\".','S',NULL,'S','S'),(29,'xml','Arquivo capaz de descrever diversos tipos de dados, facilitando o compartilhamento, integração e interoperabilidade de dados. Significa \"eXtensible Markup Language\".','S',NULL,'S','S'),(30,'wav','Arquivo de áudio sem compactação que utiliza método PCM. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(31,'amr','Arquivo de áudio em formato otimizado para gravação de voz. Significa \"Adaptive Multi-Rate audio codec\", sendo o formato de áudio padrão para gravação de voz pela 3GPP, muito utilizado em aparelhos de telefone celular. -NÃO ADERENTE AO ePING!','N',NULL,'S','S'),(32,'html','Arquivos padrão web, utilizados, inclusive, pelo SEI.','S',NULL,'S','S'),(33,'jpeg','Arquivo de imagem digital tradicionalmente utilizado em câmaras digitais.','N',NULL,'S','S'),(34,'ogg','Arquivo de áudio em formato livre muito utilizado na internet.','S',NULL,'S','S'),(35,'ogv','Arquivo de vídeo em formato livre muito utilizado na internet.','S',NULL,'S','S'),(36,'gz','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(37,'tar','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(38,'tgz','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(39,'bz2','Arquivo compactado com outros arquivos ou pastas.','S',NULL,'S','S'),(40,'svg','Arquivo de imagens vetoriais ou gráficos bidimensionais em formato aberto.','S',NULL,'S','S'),(41,'json','Arquivo de notação de objeto JavaScript. Significa \"JavaScript Object Notation\".','S',NULL,'S','S'); +/*!40000 ALTER TABLE `arquivo_extensao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assinante` +-- + +DROP TABLE IF EXISTS `assinante`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assinante` ( + `id_assinante` int(11) NOT NULL, + `cargo_funcao` varchar(200) NOT NULL, + `id_orgao` int(11) NOT NULL, + PRIMARY KEY (`id_assinante`), + KEY `fk_assinante_orgao` (`id_orgao`), + CONSTRAINT `fk_assinante_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assinante` +-- + +LOCK TABLES `assinante` WRITE; +/*!40000 ALTER TABLE `assinante` DISABLE KEYS */; +INSERT INTO `assinante` VALUES (233,'Presidente, Substituto',0),(234,'Assessor(a)',0),(235,'Presidente',0),(236,'Chefe de Gabinete da Presidência',0),(237,'Chefe de Gabinete da Presidência, Substituto(a)',0),(238,'Corregedor',0),(239,'Corregedor, Substituto(a)',0),(240,'Agente Fiscalizador de Contrato',0),(241,'Agente Fiscalizador de Contrato, Substituto(a)',0),(242,'Gestor de Contrato',0),(243,'Gestor de Contrato, Substituto(a)',0),(244,'Gestor Financeiro',0),(245,'Gestor Financeiro, Substituto(a)',0),(246,'Ordenador de Despesa',0),(247,'Ordenador de Despesa, Substituto(a)',0),(248,'Ouvidor',0),(249,'Pregoeiro(a)',0),(250,'Corregedor Auxiliar',0),(251,'Fiscal de Contrato - Requisitante',0),(252,'Fiscal de Contrato - Técnico',0),(253,'Fiscal de Contrato - Administrativo',0); +/*!40000 ALTER TABLE `assinante` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assinatura` +-- + +DROP TABLE IF EXISTS `assinatura`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assinatura` ( + `id_assinatura` int(11) NOT NULL, + `id_documento` bigint(20) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(500) NOT NULL, + `tratamento` varchar(200) NOT NULL, + `cpf` bigint(20) DEFAULT NULL, + `id_atividade` int(11) DEFAULT NULL, + `sta_forma_autenticacao` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `numero_serie_certificado` varchar(64) DEFAULT NULL, + `p7s_base64` longtext, + `id_tarja_assinatura` int(11) NOT NULL, + `agrupador` varchar(36) DEFAULT NULL, + `modulo_origem` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_assinatura`), + UNIQUE KEY `ak1_assinatura` (`id_documento`,`id_usuario`), + KEY `fk_assinatura_tarja_assinatura` (`id_tarja_assinatura`), + KEY `fk_assinatura_atividade` (`id_atividade`), + KEY `fk_assinatura_documento` (`id_documento`), + KEY `fk_assinatura_unidade` (`id_unidade`), + KEY `fk_assinatura_usuario_autentic` (`id_usuario`), + KEY `i01_assinatura` (`agrupador`), + KEY `i02_assinatura` (`id_documento`,`id_atividade`), + CONSTRAINT `fk_assinatura_atividade` FOREIGN KEY (`id_atividade`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_assinatura_documento` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_assinatura_tarja_assinatura` FOREIGN KEY (`id_tarja_assinatura`) REFERENCES `tarja_assinatura` (`id_tarja_assinatura`), + CONSTRAINT `fk_assinatura_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_assinatura_usuario_autentic` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assinatura` +-- + +LOCK TABLES `assinatura` WRITE; +/*!40000 ALTER TABLE `assinatura` DISABLE KEYS */; +/*!40000 ALTER TABLE `assinatura` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assunto` +-- + +DROP TABLE IF EXISTS `assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assunto` ( + `id_assunto` int(11) NOT NULL, + `codigo_estruturado` varchar(50) NOT NULL, + `descricao` varchar(250) NOT NULL, + `observacao` varchar(500) DEFAULT NULL, + `idx_assunto` varchar(1000) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `prazo_intermediario` int(11) DEFAULT NULL, + `prazo_corrente` int(11) DEFAULT NULL, + `sta_destinacao` char(1) DEFAULT NULL, + `sin_estrutural` char(1) DEFAULT NULL, + `id_tabela_assuntos` int(11) NOT NULL, + PRIMARY KEY (`id_assunto`), + KEY `i01_assunto` (`id_tabela_assuntos`,`codigo_estruturado`,`sin_estrutural`,`sin_ativo`), + KEY `fk_assunto_tabela_assuntos` (`id_tabela_assuntos`), + CONSTRAINT `fk_assunto_tabela_assuntos` FOREIGN KEY (`id_tabela_assuntos`) REFERENCES `tabela_assuntos` (`id_tabela_assuntos`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assunto` +-- + +LOCK TABLES `assunto` WRITE; +/*!40000 ALTER TABLE `assunto` DISABLE KEYS */; +INSERT INTO `assunto` VALUES (1,'000','ADMINISTRAÇÃO GERAL','Nesta classe são classificados os documentos referentes às atividades relacionadas à administração interna dos órgãos públicos, as quais viabilizam o seu funcionamento e o alcance dos objetivos para os quais foram criados.','000 000 administracao geral nesta classe sao classificados os documentos referentes as atividades relacionadas a administracao interna dos orgaos publicos, as quais viabilizam o seu funcionamento e o alcance dos objetivos para os quais foram criados.','S',100,7,'G','S',1),(2,'001','MODERNIZAÇÃO E REFORMA ADMINISTRATIVA (inclusive Projetos, Estudos e Normas)','Para o Código 001, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nIncluem-se documentos referentes aos projetos, estudos e normas relativos à organização e métodos, reforma administrativa e outros procedimentos que visem à modernização das atividades dos órgãos da administração pública federal.','001 001 modernizacao e reforma administrativa (inclusive projetos, estudos e normas) para o codigo 001, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo. incluem-se documentos referentes aos projetos, estudos e normas relativos a organizacao e metodos, reforma administrativa e outros procedimentos que visem a modernizacao das atividades dos orgaos da administracao publica federal.','S',5,1,'G','N',1),(3,'002','PLANOS, PROGRAMAS E PROJETOS DE TRABALHO','Incluem-se documentos referentes ao planejamento e aos planos, programas e projetos de trabalho gerais.\r\n\r\n- Quanto aos demais planos, programas e/ou projetos de trabalho, classificar no assunto específico.\r\n\r\n- Quanto à programação orçamentária, ver 051.1.','002 002 planos, programas e projetos de trabalho incluem-se documentos referentes ao planejamento e aos planos, programas e projetos de trabalho gerais. - quanto aos demais planos, programas e/ou projetos de trabalho, classificar no assunto especifico. - quanto a programacao orcamentaria, ver 051.1.','S',9,5,'G','N',1),(4,'003','RELATÓRIOS DE ATIVIDADES','São passíveis de eliminação os relatórios cujas informações encontram-se recapituladas em outros.','003 003 relatorios de atividades sao passiveis de eliminacao os relatorios cujas informacoes encontram-se recapituladas em outros.','S',9,5,'G','N',1),(5,'004','ACORDOS. AJUSTES. CONTRATOS. CONVÊNIOS (Inclusive formalização, execução, acompanhamento, fiscalização, prestação de contas, tomada de contas e tomada de contas especial de convênios, contratos de repasse, termos de parceria e termos de cooperação)','Para o Código 004, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nIncluem-se acordo, ajuste, contrato e/ou convênio, implementados ou não, que abranjam a execução de atividades e à formalização, execução, acompanhamento, fiscalização, prestação de contas ou tomada de contas e informações acerca de tomada de contas especial de convênios, contratos de repasse, termos de parceria, e termos de cooperação.','004 004 acordos. ajustes. contratos. convenios (inclusive formalizacao, execucao, acompanhamento, fiscalizacao, prestacao de contas, tomada de contas e tomada de contas especial de convenios, contratos de repasse, termos de parceria e termos de cooperacao) para o codigo 004, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo. incluem-se acordo, ajuste, contrato e/ou convenio, implementados ou nao, que abranjam a execucao de atividades e a formalizacao, execucao, acompanhamento, fiscalizacao, prestacao de contas ou tomada de contas e informacoes acerca de tomada de contas especial de convenios, contratos de repasse, termos de parceria, e termos de cooperacao.','S',20,1,'G','N',1),(6,'010','ORGANIZAÇÃO E FUNCIONAMENTO (inclusive Normas, Regulamentações, Diretrizes, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','Classificam-se os documentos relativos à criação, estruturação, funcionamento e organização interna do órgão.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','010 010 organizacao e funcionamento (inclusive normas, regulamentacoes, diretrizes, procedimentos, estudos e/ou decisoes de carater geral) classificam-se os documentos relativos a criacao, estruturacao, funcionamento e organizacao interna do orgao. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(7,'010.1','REGISTRO NOS ÓRGÃOS COMPETENTES','Para o Código 010.1, condicional \"Enquanto vigora\" convencionado para 2 anos no corrente. - O prazo começa a contar a partir da conclusão do processo. Ainda, é condicionado à renovação do registro.','010.1 010.1 registro nos orgaos competentes para o codigo 010.1, condicional \"enquanto vigora\" convencionado para 2 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. ainda, e condicionado a renovacao do registro.','S',NULL,2,'E','N',1),(8,'010.2','REGIMENTOS. REGULAMENTOS. ESTATUTOS. ORGANOGRAMAS. ESTRUTURAS','Os originais dos atos publicados integrarão os arquivos dos gabinetes do presidente da República, governadores e prefeitos, cuja temporalidade será definida quando da elaboração de tabela específica para suas atividades-fim.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','010.2 010.2 regimentos. regulamentos. estatutos. organogramas. estruturas os originais dos atos publicados integrarao os arquivos dos gabinetes do presidente da republica, governadores e prefeitos, cuja temporalidade sera definida quando da elaboracao de tabela especifica para suas atividades-fim. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(9,'010.3','AUDIÊNCIAS. DESPACHOS. REUNIÕES',NULL,'010.3 010.3 audiencias. despachos. reunioes','S',NULL,2,'E','N',1),(10,'011','COMISSÕES. CONSELHOS. GRUPOS DE TRABALHO. JUNTAS. COMITÊS (inclusive Atos de Criação, Atas e Relatórios)','Incluem-se documentos referentes à criação de comissões, conselhos, grupos de trabalho, juntas e/ou comitês, no próprio órgão ou em órgãos colegiados e de deliberação coletiva, bem como aqueles relativos ao exercício de suas funções, tais como: atas e relatórios técnicos.\r\n\r\n- Sugere-se abrir uma pasta para cada comissão, conselho, grupo de trabalho, junta e/ou comitê, sempre que tal procedimento se justificar.','011 011 comissoes. conselhos. grupos de trabalho. juntas. comites (inclusive atos de criacao, atas e relatorios) incluem-se documentos referentes a criacao de comissoes, conselhos, grupos de trabalho, juntas e/ou comites, no proprio orgao ou em orgaos colegiados e de deliberacao coletiva, bem como aqueles relativos ao exercicio de suas funcoes, tais como: atas e relatorios tecnicos. - sugere-se abrir uma pasta para cada comissao, conselho, grupo de trabalho, junta e/ou comite, sempre que tal procedimento se justificar.','S',5,4,'G','N',1),(11,'012','COMUNICAÇÃO SOCIAL',NULL,'012 012 comunicacao social','S',10,4,'G','S',1),(12,'012.1','RELAÇÕES COM A IMPRENSA',NULL,'012.1 012.1 relacoes com a imprensa','S',NULL,1,'E','N',1),(13,'012.11','CREDENCIAMENTO DE JORNALISTAS','Para o Código 012.11, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','012.11 012.11 credenciamento de jornalistas para o codigo 012.11, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',NULL,1,'E','N',1),(14,'012.12','ENTREVISTAS. NOTICIÁRIOS. REPORTAGENS. EDITORIAIS','Os documentos cujas informações reflitam a política do órgão são de guarda permanente.','012.12 012.12 entrevistas. noticiarios. reportagens. editoriais os documentos cujas informacoes reflitam a politica do orgao sao de guarda permanente.','S',NULL,2,'E','N',1),(15,'012.2','DIVULGAÇÃO INTERNA',NULL,'012.2 012.2 divulgacao interna','S',NULL,2,'E','N',1),(16,'012.3','CAMPANHAS INSTITUCIONAIS. PUBLICIDADE (inclusive Cartazes, Folhetos, Anúncios, Folders e outros documentos de caráter promocional)',NULL,'012.3 012.3 campanhas institucionais. publicidade (inclusive cartazes, folhetos, anuncios, folders e outros documentos de carater promocional)','S',10,4,'G','N',1),(17,'019','OUTROS ASSUNTOS REFERENTES À ORGANIZAÇÃO E FUNCIONAMENTO','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','019 019 outros assuntos referentes a organizacao e funcionamento este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',10,4,'G','S',1),(18,'019.01','INFORMAÇÕES SOBRE O ÓRGÃO (inclusive Pedidos de Informações sobre as Funções e Atividades do Órgão e os Serviços que presta)',NULL,'019.01 019.01 informacoes sobre o orgao (inclusive pedidos de informacoes sobre as funcoes e atividades do orgao e os servicos que presta)','S',NULL,2,'E','N',1),(19,'020','PESSOAL','Nesta subclasse incluem-se os documentos relativos aos direitos e obrigações dos servidores lotados no órgão, de acordo com a legislação vigente, bem como os direitos e obrigações da instituição empregadora no que tange à assistência, proteção ao trabalho e concessão de benefícios.','020 020 pessoal nesta subclasse incluem-se os documentos relativos aos direitos e obrigacoes dos servidores lotados no orgao, de acordo com a legislacao vigente, bem como os direitos e obrigacoes da instituicao empregadora no que tange a assistencia, protecao ao trabalho e concessao de beneficios.','S',100,10,'G','S',1),(20,'020.1a','LEGISLAÇÃO (Normas, Regulamentações, Diretrizes, Estatutos, Regulamentos, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','Incluem-se normas, regulamentações, diretrizes, estatutos, regulamentos, procedimentos, estudos e/ou decisões de caráter geral.\r\n\r\n- É opcional a reprodução dos documentos previamente ao recolhimento, para que o órgão permaneça com cópias para consulta.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','020.1a 020.1a legislacao (normas, regulamentacoes, diretrizes, estatutos, regulamentos, procedimentos, estudos e/ou decisoes de carater geral) incluem-se normas, regulamentacoes, diretrizes, estatutos, regulamentos, procedimentos, estudos e/ou decisoes de carater geral. - e opcional a reproducao dos documentos previamente ao recolhimento, para que o orgao permaneca com copias para consulta. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(21,'020.1b','LEGISLAÇÃO (Boletins Administrativo, de Pessoal e de Serviço)','Incluem-se boletins administrativo, de pessoal e de serviço.\r\n\r\n- É opcional a reprodução dos documentos previamente ao recolhimento, para que o órgão permaneça com cópias para consulta.','020.1b 020.1b legislacao (boletins administrativo, de pessoal e de servico) incluem-se boletins administrativo, de pessoal e de servico. - e opcional a reproducao dos documentos previamente ao recolhimento, para que o orgao permaneca com copias para consulta.','S',10,10,'G','N',1),(22,'020.2','IDENTIFICAÇÃO FUNCIONAL (inclusive Carteira, Cartão, Crachá, Credencial e Passaporte Diplomático)','Condicional \"Enquanto o servidor permanecer\" convencionado para 52 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\n- Este é o tempo médio de permanência do servidor.','020.2 020.2 identificacao funcional (inclusive carteira, cartao, cracha, credencial e passaporte diplomatico) condicional \"enquanto o servidor permanecer\" convencionado para 52 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. - este e o tempo medio de permanencia do servidor.','S',NULL,52,'E','N',1),(23,'020.3','OBRIGAÇÕES TRABALHISTAS E ESTATUTÁRIAS. RELAÇÕES COM ÓRGÃOS NORMATIZADORES DA ADMINISTRAÇÃO PÚBLICA. LEI DOS 2/3. RAIS',NULL,'020.3 020.3 obrigacoes trabalhistas e estatutarias. relacoes com orgaos normatizadores da administracao publica. lei dos 2/3. rais','S',5,5,'E','N',1),(24,'020.31','RELAÇÕES COM OS CONSELHOS PROFISSIONAIS','Os documentos cujas informações possam originar contenciosos administrativos ou judiciais serão classificados nos assuntos correspondentes ao seu conteúdo.','020.31 020.31 relacoes com os conselhos profissionais os documentos cujas informacoes possam originar contenciosos administrativos ou judiciais serao classificados nos assuntos correspondentes ao seu conteudo.','S',NULL,2,'E','N',1),(25,'020.4','SINDICATOS. ACORDOS. DISSÍDIOS','Quanto à contribuição sindical do servidor, classificar em 024.141.\r\n\r\n- Quanto à contribuição sindical do empregador, classificar em 024.153.','020.4 020.4 sindicatos. acordos. dissidios quanto a contribuicao sindical do servidor, classificar em 024.141. - quanto a contribuicao sindical do empregador, classificar em 024.153.','S',5,5,'G','N',1),(26,'020.5','ASSENTAMENTOS INDIVIDUAIS. CADASTRO (Vida Funcional do Servidor, bem como os registros e/ou anotações a ele referidos)','O prazo total de guarda dos documentos é de 100 anos, independente do suporte. Serão transferidos ao arquivo intermediário após a saída do servidor do órgão.\r\n\r\nCondicional \"Enquanto o servidor permanecer\" convencionado para 5 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n- Como o prazo total de guarda é de 100 anos, então podemos ter 5 anos no corrente e 95 anos no intermediário. Assim, o prazo intermediário foi ajustado de 100 para 95 anos.','020.5 020.5 assentamentos individuais. cadastro (vida funcional do servidor, bem como os registros e/ou anotacoes a ele referidos) o prazo total de guarda dos documentos e de 100 anos, independente do suporte. serao transferidos ao arquivo intermediario apos a saida do servidor do orgao. condicional \"enquanto o servidor permanecer\" convencionado para 5 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. - como o prazo total de guarda e de 100 anos, entao podemos ter 5 anos no corrente e 95 anos no intermediario. assim, o prazo intermediario foi ajustado de 100 para 95 anos.','S',95,5,'E','N',1),(27,'021','RECRUTAMENTO E SELEÇÃO',NULL,'021 021 recrutamento e selecao','S',5,6,'G','S',1),(28,'021.1','CANDIDATOS A CARGO E EMPREGO PÚBLICOS: INSCRIÇÃO E CURRICULUM VITAE',NULL,'021.1 021.1 candidatos a cargo e emprego publicos: inscricao e curriculum vitae','S',NULL,2,'E','N',1),(29,'021.2a','EXAMES DE SELEÇÃO (Concurso Público: Provas e Títulos, Testes Psicotécnicos e Exames Médicos)','Ordenar pelo tipo de exame e título do concurso, em ordem alfabética.','021.2a 021.2a exames de selecao (concurso publico: provas e titulos, testes psicotecnicos e exames medicos) ordenar pelo tipo de exame e titulo do concurso, em ordem alfabetica.','S',NULL,6,'E','N',1),(30,'021.2b','EXAMES DE SELEÇÃO (Concurso Público: Constituição de Bancas Examinadoras, Editais, Exemplares Únicos de Provas, Gabaritos, Resultados e Recursos)','Ordenar pelo tipo de exame e título do concurso, em ordem alfabética.\r\n\r\n- É opcional a seleção por amostragem das provas dos candidatos, segundo critérios estabelecidos pela Comissão Permanente de Avaliação.','021.2b 021.2b exames de selecao (concurso publico: constituicao de bancas examinadoras, editais, exemplares unicos de provas, gabaritos, resultados e recursos) ordenar pelo tipo de exame e titulo do concurso, em ordem alfabetica. - e opcional a selecao por amostragem das provas dos candidatos, segundo criterios estabelecidos pela comissao permanente de avaliacao.','S',5,6,'G','N',1),(31,'022','APERFEIÇOAMENTO E TREINAMENTO',NULL,'022 022 aperfeicoamento e treinamento','S',5,5,'G','S',1),(32,'022.1','CURSOS (inclusive Bolsas de Estudo)',NULL,'022.1 022.1 cursos (inclusive bolsas de estudo)','S',5,5,'G','S',1),(33,'022.11','PROMOVIDOS PELA INSTITUIÇÃO (inclusive Propostas, Estudos, Editais, Programas, Relatórios Finais, Exemplares Únicos de Exercícios, Relação de Participantes, Avaliação e Controle de Expedição de Certificados)','Como o foco é processo de trabalho, não tem como distinguir, o que nos obrigou escolher a destinação mais segura, no caso, Guarda Permanente.','022.11 022.11 promovidos pela instituicao (inclusive propostas, estudos, editais, programas, relatorios finais, exemplares unicos de exercicios, relacao de participantes, avaliacao e controle de expedicao de certificados) como o foco e processo de trabalho, nao tem como distinguir, o que nos obrigou escolher a destinacao mais segura, no caso, guarda permanente.','S',5,5,'G','N',1),(34,'022.12','PROMOVIDOS POR OUTRAS INSTITUIÇÕES','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.12 022.12 promovidos por outras instituicoes para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','S',1),(35,'022.121','NO BRASIL','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.121 022.121 no brasil para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','N',1),(36,'022.122','NO EXTERIOR','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.122 022.122 no exterior para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','N',1),(37,'022.2','ESTÁGIOS (inclusive Bolsas de Estágio)',NULL,'022.2 022.2 estagios (inclusive bolsas de estagio)','S',5,5,'G','S',1),(38,'022.21','PROMOVIDOS PELA INSTITUIÇÃO (inclusive Estudos, Propostas, Programas, Relatórios Finais, Relação de Participantes, Avaliação e Declaração de Comprovação de Estágio)','Como o foco é processo de trabalho, não tem como distinguir, o que nos obrigou escolher a destinação mais segura, no caso, Guarda Permanente.','022.21 022.21 promovidos pela instituicao (inclusive estudos, propostas, programas, relatorios finais, relacao de participantes, avaliacao e declaracao de comprovacao de estagio) como o foco e processo de trabalho, nao tem como distinguir, o que nos obrigou escolher a destinacao mais segura, no caso, guarda permanente.','S',5,5,'G','N',1),(39,'022.22','PROMOVIDOS POR OUTRAS INSTITUIÇÕES','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.22 022.22 promovidos por outras instituicoes para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','S',1),(40,'022.221','NO BRASIL','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.221 022.221 no brasil para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','N',1),(41,'022.222','NO EXTERIOR','Para os documentos comprobatórios de participação utilizar os prazos e a destinação dos assentamentos individuais 020.5.','022.222 022.222 no exterior para os documentos comprobatorios de participacao utilizar os prazos e a destinacao dos assentamentos individuais 020.5.','S',NULL,5,'E','N',1),(42,'022.9','OUTROS ASSUNTOS REFERENTES A APERFEIÇOAMENTO E TREINAMENTO (inclusive Palestras e Reuniões de caráter informativo geral promovidas pelo órgão)','Este subgrupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','022.9 022.9 outros assuntos referentes a aperfeicoamento e treinamento (inclusive palestras e reunioes de carater informativo geral promovidas pelo orgao) este subgrupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,5,'G','S',1),(43,'023','QUADROS, TABELAS E POLÍTICA DE PESSOAL',NULL,'023 023 quadros, tabelas e politica de pessoal','S',47,5,'G','S',1),(44,'023.01','ESTUDOS E PREVISÃO DE PESSOAL',NULL,'023.01 023.01 estudos e previsao de pessoal','S',5,5,'G','N',1),(45,'023.02','CRIAÇÃO, CLASSIFICAÇÃO, TRANSFORMAÇÃO, TRANSPOSIÇÃO E REMUNERAÇÃO DE CARGOS E FUNÇÕES',NULL,'023.02 023.02 criacao, classificacao, transformacao, transposicao e remuneracao de cargos e funcoes','S',5,5,'G','N',1),(46,'023.03','REESTRUTURAÇÕES E ALTERAÇÕES SALARIAIS (inclusive Ascensão e Progressão Funcional; Avaliação de Desempenho; Enquadramento; Equiparação, Reajuste e Reposição Salarial; Promoções)',NULL,'023.03 023.03 reestruturacoes e alteracoes salariais (inclusive ascensao e progressao funcional; avaliacao de desempenho; enquadramento; equiparacao, reajuste e reposicao salarial; promocoes)','S',47,5,'E','N',1),(47,'023.1','MOVIMENTAÇÃO DE PESSOAL','Quando se tratar de atos específicos e individuais de servidores, classificar em 020.5.','023.1 023.1 movimentacao de pessoal quando se tratar de atos especificos e individuais de servidores, classificar em 020.5.','S',47,5,'G','S',1),(48,'023.11','ADMISSÃO. APROVEITAMENTO. CONTRATAÇÃO. NOMEAÇÃO. READMISSÃO. READAPTAÇÃO. RECONDUÇÃO. REINTEGRAÇÃO. REVERSÃO',NULL,'023.11 023.11 admissao. aproveitamento. contratacao. nomeacao. readmissao. readaptacao. reconducao. reintegracao. reversao','S',47,5,'E','N',1),(49,'023.12','DEMISSÃO. DISPENSA. EXONERAÇÃO. RESCISÃO CONTRATUAL. FALECIMENTO',NULL,'023.12 023.12 demissao. dispensa. exoneracao. rescisao contratual. falecimento','S',47,5,'E','N',1),(50,'023.13','LOTAÇÃO. REMOÇÃO. TRANSFERÊNCIA. PERMUTA',NULL,'023.13 023.13 lotacao. remocao. transferencia. permuta','S',5,4,'E','N',1),(51,'023.14','DESIGNAÇÃO. DISPONIBILIDADE. REDISTRIBUIÇÃO. SUBSTITUIÇÃO',NULL,'023.14 023.14 designacao. disponibilidade. redistribuicao. substituicao','S',47,5,'E','N',1),(52,'023.15','REQUISIÇÃO. CESSÃO (Internas e/ou Externas de Servidores para a realização de serviços temporários)',NULL,'023.15 023.15 requisicao. cessao (internas e/ou externas de servidores para a realizacao de servicos temporarios)','S',47,5,'E','N',1),(53,'024','DIREITOS, OBRIGAÇÕES E VANTAGENS',NULL,'024 024 direitos, obrigacoes e vantagens','S',100,7,'E','S',1),(54,'024.1','FOLHAS DE PAGAMENTO. FICHAS FINANCEIRAS',NULL,'024.1 024.1 folhas de pagamento. fichas financeiras','S',95,5,'E','N',1),(55,'024.11','SALÁRIOS, VENCIMENTOS, PROVENTOS E REMUNERAÇÕES',NULL,'024.11 024.11 salarios, vencimentos, proventos e remuneracoes','S',NULL,7,'E','N',1),(56,'024.111','SALÁRIO-FAMÍLIA','Para os casos especiais previstos no Regime Jurídico Único, o prazo total de guarda para os documentos referentes à concessão de salário família será de 100 anos, em vez de 19 anos.\r\n\r\n- Como o foco é processo de trabalho, não tem como distinguir, o que nos obrigou escolher a destinação mais segura, no caso, 100 anos.','024.111 024.111 salario-familia para os casos especiais previstos no regime juridico unico, o prazo total de guarda para os documentos referentes a concessao de salario familia sera de 100 anos, em vez de 19 anos. - como o foco e processo de trabalho, nao tem como distinguir, o que nos obrigou escolher a destinacao mais segura, no caso, 100 anos.','S',100,5,'E','N',1),(57,'024.112.a','ABONO OU PROVENTO PROVISÓRIO',NULL,'024.112.a 024.112.a abono ou provento provisorio','S',NULL,7,'E','N',1),(58,'024.112.b','ABONO DE PERMANÊNCIA EM SERVIÇO','Condicional “Até a homologação da aposentadoria” convencionado para 52 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\n- Este é o tempo médio de permanência do servidor.','024.112.b 024.112.b abono de permanencia em servico condicional ate a homologacao da aposentadoria convencionado para 52 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. - este e o tempo medio de permanencia do servidor.','S',NULL,52,'E','N',1),(59,'024.119','OUTROS SALÁRIOS, VENCIMENTOS, PROVENTOS E REMUNERAÇÕES',NULL,'024.119 024.119 outros salarios, vencimentos, proventos e remuneracoes','S',NULL,7,'E','N',1),(60,'024.12','GRATIFICAÇÕES (inclusive Incorporações)',NULL,'024.12 024.12 gratificacoes (inclusive incorporacoes)','S',47,7,'E','S',1),(61,'024.121','DE FUNÇÃO',NULL,'024.121 024.121 de funcao','S',47,5,'E','N',1),(62,'024.122','JETONS',NULL,'024.122 024.122 jetons','S',NULL,7,'E','N',1),(63,'024.123','CARGOS EM COMISSÃO',NULL,'024.123 024.123 cargos em comissao','S',47,5,'E','N',1),(64,'024.124','NATALINA (Décimo Terceiro Salário)',NULL,'024.124 024.124 natalina (decimo terceiro salario)','S',NULL,7,'E','N',1),(65,'024.129','OUTRAS GRATIFICAÇÕES',NULL,'024.129 024.129 outras gratificacoes','S',47,5,'E','N',1),(66,'024.13','ADICIONAIS',NULL,'024.13 024.13 adicionais','S',47,5,'E','S',1),(67,'024.131','TEMPO DE SERVIÇO (Anuênios, Biênios e Quinquênios)',NULL,'024.131 024.131 tempo de servico (anuenios, bienios e quinquenios)','S',47,5,'E','N',1),(68,'024.132','NOTURNO',NULL,'024.132 024.132 noturno','S',47,5,'E','N',1),(69,'024.133','PERICULOSIDADE',NULL,'024.133 024.133 periculosidade','S',47,5,'E','N',1),(70,'024.134','INSALUBRIDADE',NULL,'024.134 024.134 insalubridade','S',47,5,'E','N',1),(71,'024.135','ATIVIDADES PENOSAS',NULL,'024.135 024.135 atividades penosas','S',47,5,'E','N',1),(72,'024.136','SERVIÇO EXTRAORDINÁRIO (Horas Extras)',NULL,'024.136 024.136 servico extraordinario (horas extras)','S',47,5,'E','N',1),(73,'024.137','FÉRIAS: ADICIONAL DE 1/3 E ABONO PECUNIÁRIO','Quanto ao afastamento para gozo de férias, ver 024.2.','024.137 024.137 ferias: adicional de 1/3 e abono pecuniario quanto ao afastamento para gozo de ferias, ver 024.2.','S',NULL,7,'E','N',1),(74,'024.139','OUTROS ADICIONAIS',NULL,'024.139 024.139 outros adicionais','S',47,5,'E','N',1),(75,'024.14','DESCONTOS',NULL,'024.14 024.14 descontos','S',95,7,'E','S',1),(76,'024.141','CONTRIBUIÇÃO SINDICAL DO SERVIDOR',NULL,'024.141 024.141 contribuicao sindical do servidor','S',NULL,7,'E','N',1),(77,'024.142','CONTRIBUIÇÃO PARA O PLANO DE SEGURIDADE SOCIAL',NULL,'024.142 024.142 contribuicao para o plano de seguridade social','S',47,5,'E','N',1),(78,'024.143','IMPOSTO DE RENDA RETIDO NA FONTE (IRRF)',NULL,'024.143 024.143 imposto de renda retido na fonte (irrf)','S',NULL,7,'E','N',1),(79,'024.144','PENSÕES ALIMENTÍCIAS',NULL,'024.144 024.144 pensoes alimenticias','S',95,5,'E','N',1),(80,'024.145','CONSIGNAÇÕES',NULL,'024.145 024.145 consignacoes','S',NULL,7,'E','N',1),(81,'024.149','OUTROS DESCONTOS',NULL,'024.149 024.149 outros descontos','S',NULL,7,'E','N',1),(82,'024.15','ENCARGOS PATRONAIS. RECOLHIMENTOS',NULL,'024.15 024.15 encargos patronais. recolhimentos','S',95,7,'E','S',1),(83,'024.151','PROGRAMA DE FORMAÇÃO DO PATRIMÔNIO DO SERVIDOR PÚBLICO (PASEP). PROGRAMA DE INTEGRAÇÃO SOCIAL (PIS)',NULL,'024.151 024.151 programa de formacao do patrimonio do servidor publico (pasep). programa de integracao social (pis)','S',5,5,'E','N',1),(84,'024.152','FUNDO DE GARANTIA POR TEMPO DE SERVIÇO (FGTS)',NULL,'024.152 024.152 fundo de garantia por tempo de servico (fgts)','S',47,5,'E','N',1),(85,'024.153','CONTRIBUIÇÃO SINDICAL DO EMPREGADOR',NULL,'024.153 024.153 contribuicao sindical do empregador','S',NULL,7,'E','N',1),(86,'024.154','CONTRIBUIÇÃO PARA O PLANO DE SEGURIDADE SOCIAL (inclusive Contribuições anteriores)',NULL,'024.154 024.154 contribuicao para o plano de seguridade social (inclusive contribuicoes anteriores)','S',95,5,'E','N',1),(87,'024.155','SALÁRIO MATERNIDADE',NULL,'024.155 024.155 salario maternidade','S',NULL,7,'E','N',1),(88,'024.156','IMPOSTO DE RENDA',NULL,'024.156 024.156 imposto de renda','S',NULL,7,'E','N',1),(89,'024.2','FÉRIAS','Quanto ao pagamento de adicional de 1/3 de férias e abono pecuniário, ver 024.137.','024.2 024.2 ferias quanto ao pagamento de adicional de 1/3 de ferias e abono pecuniario, ver 024.137.','S',NULL,7,'E','N',1),(90,'024.3','LICENÇAS (Doença em Pessoa da Família; Afastamento do Cônjuge; Serviço Militar; Atividade Política; Capacitação; Prêmio; Interesses Particulares; Mandato Classista; Gestante; Adotante; Paternidade; Tratamento da Própria Saúde; Acidente em Serviço)','Incluem-se os estudos, normas e procedimentos sobre todas as licenças concedidas aos servidores.\r\n\r\nOrdenar por: Doença em Pessoa da Família; Afastamento do Cônjuge/Companheiro; Serviço Militar; Atividade Política; Capacitação Profissional; Prêmio por Assiduidade; Tratamento de Interesses Particulares; Desempenho de Mandato Classista; Gestante; Adotante; Paternidade; Tratamento da Própria Saúde (inclusive Perícia Médica); Acidente em Serviço\r\n\r\n- Ver também 024.4, 024.91 e 029.11.','024.3 024.3 licencas (doenca em pessoa da familia; afastamento do conjuge; servico militar; atividade politica; capacitacao; premio; interesses particulares; mandato classista; gestante; adotante; paternidade; tratamento da propria saude; acidente em servico) incluem-se os estudos, normas e procedimentos sobre todas as licencas concedidas aos servidores. ordenar por: doenca em pessoa da familia; afastamento do conjuge/companheiro; servico militar; atividade politica; capacitacao profissional; premio por assiduidade; tratamento de interesses particulares; desempenho de mandato classista; gestante; adotante; paternidade; tratamento da propria saude (inclusive pericia medica); acidente em servico - ver tambem 024.4, 024.91 e 029.11.','S',47,5,'E','N',1),(91,'024.4','AFASTAMENTOS (Para Depor; Para Exercer Mandato Eletivo; Para Servir ao Tribunal Regional Eleitoral - TRE; Para Servir como Jurado; Suspensão de Contrato de Trabalho - CLT)','Quanto ao afastamento para missões fora da sede e viagens a serviço no país ou no exterior, classificar em 029.21 e 029.22, respectivamente.\r\n\r\nOrdenar por:\r\n- Para Depor\r\n- Para Exercer Mandato Eletivo\r\n- Para Servir ao Tribunal Regional Eleitoral (TRE)\r\n- Para Servir como Jurado\r\n- Suspensão de Contrato de Trabalho (CLT)\r\n\r\n- Ver também 024.3, 024.91 e 029.11.','024.4 024.4 afastamentos (para depor; para exercer mandato eletivo; para servir ao tribunal regional eleitoral - tre; para servir como jurado; suspensao de contrato de trabalho - clt) quanto ao afastamento para missoes fora da sede e viagens a servico no pais ou no exterior, classificar em 029.21 e 029.22, respectivamente. ordenar por: - para depor - para exercer mandato eletivo - para servir ao tribunal regional eleitoral (tre) - para servir como jurado - suspensao de contrato de trabalho (clt) - ver tambem 024.3, 024.91 e 029.11.','S',47,5,'E','N',1),(92,'024.5','REEMBOLSO DE DESPESAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','024.5 024.5 reembolso de despesas condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(93,'024.51','MUDANÇA DE DOMICÍLIO DE SERVIDORES','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','024.51 024.51 mudanca de domicilio de servidores condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(94,'024.52','LOCOMOÇÃO (Despesas Efetuadas com a Utilização de Meio Próprio de Locomoção para a Execução de Serviços Externos)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','024.52 024.52 locomocao (despesas efetuadas com a utilizacao de meio proprio de locomocao para a execucao de servicos externos) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(95,'024.59','OUTROS REEMBOLSOS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','024.59 024.59 outros reembolsos condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(96,'024.9','OUTROS DIREITOS, OBRIGAÇÕES E VANTAGENS',NULL,'024.9 024.9 outros direitos, obrigacoes e vantagens','S',47,5,'E','S',1),(97,'024.91','CONCESSÕES (Doação de Sangue; Alistamento Eleitoral; Casamento - Gala; Falecimento de Familiares - Nojo; Horário Especial para Servidor Estudante; Horário Especial para Servidor Portador de Deficiência)','Ordenar por:\r\n- Doação de Sangue\r\n- Alistamento Eleitoral\r\n- Casamento (Gala)\r\n- Falecimento de Familiares (Nojo)\r\n- Horário Especial para Servidor Estudante\r\n- Horário Especial para Servidor Portador de Deficiência)\r\n\r\n- Ver também 024.3, 024.4 e 029.11.','024.91 024.91 concessoes (doacao de sangue; alistamento eleitoral; casamento - gala; falecimento de familiares - nojo; horario especial para servidor estudante; horario especial para servidor portador de deficiencia) ordenar por: - doacao de sangue - alistamento eleitoral - casamento (gala) - falecimento de familiares (nojo) - horario especial para servidor estudante - horario especial para servidor portador de deficiencia) - ver tambem 024.3, 024.4 e 029.11.','S',47,5,'E','N',1),(98,'024.92','AUXÍLIOS (Alimentação/Refeição; Assistência Pré-Escolar/Creche; Fardamento/Uniforme; Moradia; Vale-Transporte)','Ordenar por: Alimentação/Refeição; Assistência Pré-Escolar/Creche; Fardamento/Uniforme; Moradia; Vale-Transporte\r\n- Ver também 026.12.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','024.92 024.92 auxilios (alimentacao/refeicao; assistencia pre-escolar/creche; fardamento/uniforme; moradia; vale-transporte) ordenar por: alimentacao/refeicao; assistencia pre-escolar/creche; fardamento/uniforme; moradia; vale-transporte - ver tambem 026.12. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(99,'025','APURAÇÃO DE RESPONSABILIDADE E AÇÃO DISCIPLINAR',NULL,'025 025 apuracao de responsabilidade e acao disciplinar','S',95,5,'G','S',1),(100,'025.1','DENÚNCIAS. SINDICÂNCIAS. INQUÉRITOS',NULL,'025.1 025.1 denuncias. sindicancias. inqueritos','S',95,5,'G','S',1),(101,'025.11','PROCESSOS DISCIPLINARES','Incluem-se documentos referentes à acumulação ilícita de cargos, empregos e funções públicas, afastamento preventivo, instauração do inquérito (ato de constituição da comissão de sindicância), inquérito administrativo (instrução, defesa, relatório e julgamento) e revisão do processo disciplinar.\r\n\r\n- Quando se tratar de acumulação lícita de cargos, empregos e funções públicas, classificar em 020.5.','025.11 025.11 processos disciplinares incluem-se documentos referentes a acumulacao ilicita de cargos, empregos e funcoes publicas, afastamento preventivo, instauracao do inquerito (ato de constituicao da comissao de sindicancia), inquerito administrativo (instrucao, defesa, relatorio e julgamento) e revisao do processo disciplinar. - quando se tratar de acumulacao licita de cargos, empregos e funcoes publicas, classificar em 020.5.','S',95,5,'G','N',1),(102,'025.12','PENALIDADES DISCIPLINARES (Advertência, Suspensão, Demissão, Cassação de Aposentadoria, Disponibilidade, Destituição de Cargo em Comissão, Destituição de Função Comissionada)','O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor 020.5.','025.12 025.12 penalidades disciplinares (advertencia, suspensao, demissao, cassacao de aposentadoria, disponibilidade, destituicao de cargo em comissao, destituicao de funcao comissionada) o registro das penalidades disciplinares devera ser feito na pasta de assentamento individual do servidor 020.5.','S',95,5,'G','N',1),(103,'026','PREVIDÊNCIA, ASSISTÊNCIA E SEGURIDADE SOCIAL','Quanto às licenças, ver 024.3.','026 026 previdencia, assistencia e seguridade social quanto as licencas, ver 024.3.','S',95,5,'G','S',1),(104,'026.01','PREVIDÊNCIA PRIVADA (Planos Privados de Concessão de Pecúlios ou de Rendas, de Benefícios Complementares ou assemelhados aos da previdência social)','Incluem-se documentos referentes aos Planos Privados de Concessão de Pecúlios ou de Rendas, de Benefícios Complementares ou assemelhados aos da previdência social.','026.01 026.01 previdencia privada (planos privados de concessao de peculios ou de rendas, de beneficios complementares ou assemelhados aos da previdencia social) incluem-se documentos referentes aos planos privados de concessao de peculios ou de rendas, de beneficios complementares ou assemelhados aos da previdencia social.','S',47,5,'E','N',1),(105,'026.1','BENEFÍCIOS',NULL,'026.1 026.1 beneficios','S',95,5,'G','S',1),(106,'026.11','SEGUROS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','026.11 026.11 seguros condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(107,'026.12a','AUXÍLIOS (Acidente; Doença; Funeral; Natalidade)','Ordenar por:\r\n- Acidente\r\n- Doença\r\n- Funeral\r\n- Natalidade\r\n\r\n- Ver também 024.92.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','026.12a 026.12a auxilios (acidente; doenca; funeral; natalidade) ordenar por: - acidente - doenca - funeral - natalidade - ver tambem 024.92. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(108,'026.12b','AUXÍLIOS (Reclusão)',NULL,'026.12b 026.12b auxilios (reclusao)','S',47,5,'E','N',1),(109,'026.13','APOSENTADORIA','Quanto ao abono ou provento provisório, ver 024.112.','026.13 026.13 aposentadoria quanto ao abono ou provento provisorio, ver 024.112.','S',95,5,'E','N',1),(110,'026.131','CONTAGEM E AVERBAÇÃO DE TEMPO DE SERVIÇO','Condicional “Até a homologação da aposentadoria” convencionado para 52 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\n- Este é o tempo médio para ocorrer a aposentadoria.','026.131 026.131 contagem e averbacao de tempo de servico condicional ate a homologacao da aposentadoria convencionado para 52 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. - este e o tempo medio para ocorrer a aposentadoria.','S',NULL,52,'E','N',1),(111,'026.132.a','PENSÕES: PROVISÓRIA E TEMPORÁRIA','Para o Código 026.132.a, condicional \"Enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 47 anos no intermediário. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\n- Este é o tempo médio de permanência do servidor.','026.132.a 026.132.a pensoes: provisoria e temporaria para o codigo 026.132.a, condicional \"enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 47 anos no intermediario. - o prazo comeca a contar a partir da conclusao do processo. - este e o tempo medio de permanencia do servidor.','S',47,5,'E','N',1),(112,'026.132.b','PENSÃO VITALÍCIA',NULL,'026.132.b 026.132.b pensao vitalicia','S',95,5,'E','N',1),(113,'026.19','OUTROS BENEFÍCIOS',NULL,'026.19 026.19 outros beneficios','S',95,5,'G','S',1),(114,'026.191','ADIANTAMENTOS E EMPRÉSTIMOS A SERVIDORES','Condicional \"Até quitação da dívida\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','026.191 026.191 adiantamentos e emprestimos a servidores condicional \"ate quitacao da divida\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'E','N',1),(115,'026.192.a','ASSISTÊNCIA À SAÚDE (inclusive Planos de Saúde)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','026.192.a 026.192.a assistencia a saude (inclusive planos de saude) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(116,'026.192.b','ASSISTÊNCIA À SAÚDE (Prontuário Médico do Servidor)',NULL,'026.192.b 026.192.b assistencia a saude (prontuario medico do servidor)','S',95,5,'E','N',1),(117,'026.193','AQUISIÇÃO DE IMÓVEIS','Condicional \"Até quitação da dívida\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','026.193 026.193 aquisicao de imoveis condicional \"ate quitacao da divida\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'E','N',1),(118,'026.194','OCUPAÇÃO DE IMÓVEIS PRÓPRIOS DA UNIÃO','Condicional \"Enquanto permanece a ocupação\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','026.194 026.194 ocupacao de imoveis proprios da uniao condicional \"enquanto permanece a ocupacao\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'E','N',1),(119,'026.195','TRANSPORTES PARA SERVIDORES',NULL,'026.195 026.195 transportes para servidores','S',NULL,2,'E','N',1),(120,'026.2','HIGIENE E SEGURANÇA DO TRABALHO','Quanto ao pagamento de adicionais de periculosidade, insalubridade e atividades penosas, classificar em 024.133, 024.134 e 024.135, respectivamente.','026.2 026.2 higiene e seguranca do trabalho quanto ao pagamento de adicionais de periculosidade, insalubridade e atividades penosas, classificar em 024.133, 024.134 e 024.135, respectivamente.','S',NULL,2,'E','N',1),(121,'026.21a','PREVENÇÃO DE ACIDENTES DE TRABALHO',NULL,'026.21a 026.21a prevencao de acidentes de trabalho','S',47,5,'E','N',1),(122,'026.21b','COMISSÃO INTERNA DE PREVENÇÃO DE ACIDENTES - CIPA (inclusive Criação, Designação, Propostas, Relatórios e Atas)','Como o foco é processo de trabalho, não tem como distinguir, o que nos obrigou escolher a destinação mais segura, no caso, Guarda Permanente.','026.21b 026.21b comissao interna de prevencao de acidentes - cipa (inclusive criacao, designacao, propostas, relatorios e atas) como o foco e processo de trabalho, nao tem como distinguir, o que nos obrigou escolher a destinacao mais segura, no caso, guarda permanente.','S',5,3,'G','N',1),(123,'026.22','REFEITÓRIOS, CANTINAS E COPAS (Fornecimento de Refeições)',NULL,'026.22 026.22 refeitorios, cantinas e copas (fornecimento de refeicoes)','S',NULL,2,'E','N',1),(124,'026.23','INSPEÇÕES PERIÓDICAS DE SAÚDE',NULL,'026.23 026.23 inspecoes periodicas de saude','S',NULL,5,'E','N',1),(125,'029','OUTROS ASSUNTOS REFERENTES A PESSOAL',NULL,'029 029 outros assuntos referentes a pessoal','S',52,7,'G','S',1),(126,'029.1','HORÁRIO DE EXPEDIENTE (inclusive Escala de Plantão)',NULL,'029.1 029.1 horario de expediente (inclusive escala de plantao)','S',NULL,2,'E','N',1),(127,'029.11','CONTROLE DE FREQUÊNCIA (Livros, Cartões, Folhas de Ponto, Abono de Faltas, Cumprimento de Horas Extras)','Ver também 024.3, 024.4 e 024.91.','029.11 029.11 controle de frequencia (livros, cartoes, folhas de ponto, abono de faltas, cumprimento de horas extras) ver tambem 024.3, 024.4 e 024.91.','S',47,5,'E','N',1),(128,'029.2','MISSÕES FORA DA SEDE. VIAGENS A SERVIÇO','Sugere-se abrir uma pasta para cada missão e/ou viagem, sempre que tal procedimento se justificar.\r\n\r\n- Os relatórios técnicos de viagem deverão ser classificados no assunto correspondente ao seu conteúdo.','029.2 029.2 missoes fora da sede. viagens a servico sugere-se abrir uma pasta para cada missao e/ou viagem, sempre que tal procedimento se justificar. - os relatorios tecnicos de viagem deverao ser classificados no assunto correspondente ao seu conteudo.','S',5,7,'E','S',1),(129,'029.21','NO PAÍS (Ajudas de Custo; Diárias; Passagens - inclusive Devolução; Prestações de Contas; Relatórios de Viagem)','Os relatórios técnicos de viagem deverão ser classificados no assunto correspondente ao seu conteúdo.\r\n- Ajuda de custo para mudança de domicílio de servidores, ver 024.51.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações para manter os documentos financeiros por 20 anos.','029.21 029.21 no pais (ajudas de custo; diarias; passagens - inclusive devolucao; prestacoes de contas; relatorios de viagem) os relatorios tecnicos de viagem deverao ser classificados no assunto correspondente ao seu conteudo. - ajuda de custo para mudanca de domicilio de servidores, ver 024.51. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes para manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(130,'029.22','NO EXTERIOR (Afastamento do País)','Os relatórios técnicos de viagem deverão ser classificados no assunto correspondente ao seu conteúdo.','029.22 029.22 no exterior (afastamento do pais) os relatorios tecnicos de viagem deverao ser classificados no assunto correspondente ao seu conteudo.','S',5,7,'E','S',1),(131,'029.221','SEM ÔNUS PARA A INSTITUIÇÃO','Os relatórios técnicos de viagem deverão ser classificados no assunto correspondente ao seu conteúdo.','029.221 029.221 sem onus para a instituicao os relatorios tecnicos de viagem deverao ser classificados no assunto correspondente ao seu conteudo.','S',NULL,7,'E','N',1),(132,'029.222','COM ÔNUS PARA A INSTITUIÇÃO (Autorização de Afastamento; Diárias, inclusive Compra de Moeda Estrangeira; Lista de Participantes, no caso de Comitivas e Delegações; Passagens; Passaportes; Prestações de Contas; Relatórios de Viagem; Reservas de Hotel)','Os relatórios técnicos de viagem deverão ser classificados no assunto correspondente ao seu conteúdo.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','029.222 029.222 com onus para a instituicao (autorizacao de afastamento; diarias, inclusive compra de moeda estrangeira; lista de participantes, no caso de comitivas e delegacoes; passagens; passaportes; prestacoes de contas; relatorios de viagem; reservas de hotel) os relatorios tecnicos de viagem deverao ser classificados no assunto correspondente ao seu conteudo. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(133,'029.3','INCENTIVOS FUNCIONAIS',NULL,'029.3 029.3 incentivos funcionais','S',52,5,'G','S',1),(134,'029.31','PRÊMIOS (Concessão de Medalhas, Diplomas de Honra ao Mérito e Elogios)',NULL,'029.31 029.31 premios (concessao de medalhas, diplomas de honra ao merito e elogios)','S',5,5,'G','N',1),(135,'029.4','DELEGAÇÕES DE COMPETÊNCIA. PROCURAÇÃO','Quanto aos ordenadores de despesas, utilizar o prazo dos documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).\r\n\r\nPara o Código 029.4, condicional \"Enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 15 anos no intermediário. - O prazo começa a contar a partir da conclusão do processo.\r\n- Devido à observação referentes aos ordenadores de despesa, utilizado o prazo dos documentos financeiros.','029.4 029.4 delegacoes de competencia. procuracao quanto aos ordenadores de despesas, utilizar o prazo dos documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao). para o codigo 029.4, condicional \"enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 15 anos no intermediario. - o prazo comeca a contar a partir da conclusao do processo. - devido a observacao referentes aos ordenadores de despesa, utilizado o prazo dos documentos financeiros.','S',15,5,'E','N',1),(136,'029.5','SERVIÇOS PROFISSIONAIS TRANSITÓRIOS: AUTÔNOMOS E COLABORADORES (inclusive Licitações)','O prazo total de guarda dos documentos é de 52 anos.\r\n\r\nCondicional \"Enquanto vigora a prestação do serviço\" convencionado para 5 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nComo para o Código 029.5 o prazo total de guarda dos documentos é de 52 anos, então podemos ter 5 anos no corrente e 47 anos no intermediário. Assim, o prazo intermediário foi ajustado de 52 para 47 anos.','029.5 029.5 servicos profissionais transitorios: autonomos e colaboradores (inclusive licitacoes) o prazo total de guarda dos documentos e de 52 anos. condicional \"enquanto vigora a prestacao do servico\" convencionado para 5 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. como para o codigo 029.5 o prazo total de guarda dos documentos e de 52 anos, entao podemos ter 5 anos no corrente e 47 anos no intermediario. assim, o prazo intermediario foi ajustado de 52 para 47 anos.','S',47,5,'E','N',1),(137,'029.6','AÇÕES TRABALHISTAS. RECLAMAÇÕES TRABALHISTAS','Condicional \"Até o trânsito em julgado\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','029.6 029.6 acoes trabalhistas. reclamacoes trabalhistas condicional \"ate o transito em julgado\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(138,'029.7','MOVIMENTOS REIVINDICATÓRIOS: GREVES E PARALISAÇÕES',NULL,'029.7 029.7 movimentos reivindicatorios: greves e paralisacoes','S',5,5,'G','N',1),(139,'030','MATERIAL (inclusive Normas, Regulamentações, Diretrizes, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','São classificados os documentos referentes à administração dos materiais do órgão, necessários ao desenvolvimento de suas atividades, incluindo as formas de aquisição e alienação, o controle do estoque e da distribuição e a conservação e reparo.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','030 030 material (inclusive normas, regulamentacoes, diretrizes, procedimentos, estudos e/ou decisoes de carater geral) sao classificados os documentos referentes a administracao dos materiais do orgao, necessarios ao desenvolvimento de suas atividades, incluindo as formas de aquisicao e alienacao, o controle do estoque e da distribuicao e a conservacao e reparo. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(140,'030.1','CADASTRO DE FORNECEDORES',NULL,'030.1 030.1 cadastro de fornecedores','S',NULL,5,'E','N',1),(141,'031','ESPECIFICAÇÃO. PADRONIZAÇÃO. CODIFICAÇÃO. PREVISÃO. CATÁLOGO. IDENTIFICAÇÃO. CLASSIFICAÇÃO (inclusive Amostras)',NULL,'031 031 especificacao. padronizacao. codificacao. previsao. catalogo. identificacao. classificacao (inclusive amostras)','S',NULL,2,'E','N',1),(142,'032','REQUISIÇÃO E CONTROLE DE SERVIÇOS REPROGRÁFICOS (inclusive Assinaturas Autorizadas e Reprodução de Formulários)',NULL,'032 032 requisicao e controle de servicos reprograficos (inclusive assinaturas autorizadas e reproducao de formularios)','S',NULL,1,'E','N',1),(143,'033','AQUISIÇÃO (inclusive Licitações)',NULL,'033 033 aquisicao (inclusive licitacoes)','S',5,4,'E','S',1),(144,'033.1','MATERIAL PERMANENTE (Equipamentos, Mobiliário, Aparelhos, Ferramentas, Máquinas, Instrumentos Técnicos e Obras de Arte)','Os documentos referentes a material não adquirido deverão ser eliminados após 1 ano.\r\n\r\n- Quanto à documentação bibliográfica, classificar em 062.','033.1 033.1 material permanente (equipamentos, mobiliario, aparelhos, ferramentas, maquinas, instrumentos tecnicos e obras de arte) os documentos referentes a material nao adquirido deverao ser eliminados apos 1 ano. - quanto a documentacao bibliografica, classificar em 062.','S',5,4,'E','S',1),(145,'033.11','COMPRA (inclusive Compra por Importação)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','033.11 033.11 compra (inclusive compra por importacao) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(146,'033.12','ALUGUEL. COMODATO. LEASING','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','033.12 033.12 aluguel. comodato. leasing condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(147,'033.13a','EMPRÉSTIMO. CESSÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).\r\n- Com isso, foram utilizados os prazos dos documentos financeiros para garantir.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 15 anos no intermediário. - O prazo começa a contar a partir da conclusão do processo.','033.13a 033.13a emprestimo. cessao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao). - com isso, foram utilizados os prazos dos documentos financeiros para garantir. condicional \"enquanto vigora\" convencionado para 5 anos no corrente e prazo de 5 anos ajustado para 15 anos no intermediario. - o prazo comeca a contar a partir da conclusao do processo.','S',15,5,'E','N',1),(148,'033.13b','DOAÇÃO. PERMUTA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).','033.13b 033.13b doacao. permuta para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao).','S',5,4,'E','N',1),(149,'033.2','MATERIAL DE CONSUMO','Os documentos referentes a material não adquirido deverão ser eliminados após 1 ano.','033.2 033.2 material de consumo os documentos referentes a material nao adquirido deverao ser eliminados apos 1 ano.','S',5,4,'E','S',1),(150,'033.21','COMPRA','Os documentos referentes a material não adquirido deverão ser eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','033.21 033.21 compra os documentos referentes a material nao adquirido deverao ser eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(151,'033.22','CESSÃO. DOAÇÃO. PERMUTA','Os documentos referentes a material não adquirido deverão ser eliminados após 1 ano.','033.22 033.22 cessao. doacao. permuta os documentos referentes a material nao adquirido deverao ser eliminados apos 1 ano.','S',5,4,'E','N',1),(152,'033.23','CONFECÇÃO DE IMPRESSOS (inclusive Formulários, Convites, Cartazes, Cartões e outros)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','033.23 033.23 confeccao de impressos (inclusive formularios, convites, cartazes, cartoes e outros) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(153,'034','MOVIMENTAÇÃO DE MATERIAL (Permanente e de Consumo)','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.','034 034 movimentacao de material (permanente e de consumo) para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente.','S',5,2,'E','S',1),(154,'034.01','TERMOS DE RESPONSABILIDADE (inclusive Relatório de Movimentação de Bens Móveis - RMBM)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','034.01 034.01 termos de responsabilidade (inclusive relatorio de movimentacao de bens moveis - rmbm) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(155,'034.1','CONTROLE DE ESTOQUE (inclusive Requisição, Distribuição e Relatório de Movimentação de Almoxarifado - RMA)','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.','034.1 034.1 controle de estoque (inclusive requisicao, distribuicao e relatorio de movimentacao de almoxarifado - rma) para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente.','S',NULL,2,'E','N',1),(156,'034.2','EXTRAVIO. ROUBO. DESAPARECIMENTO','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.\r\n\r\nCondicional \"Até a conclusão do caso\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\n- Quando se tratar de apuração de responsabilidade de servidor, classificar em 025.','034.2 034.2 extravio. roubo. desaparecimento para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente. condicional \"ate a conclusao do caso\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo. - quando se tratar de apuracao de responsabilidade de servidor, classificar em 025.','S',5,1,'E','N',1),(157,'034.3','TRANSPORTE DE MATERIAL','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.','034.3 034.3 transporte de material para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente.','S',NULL,2,'E','N',1),(158,'034.4','AUTORIZAÇÃO DE SAÍDA DE MATERIAL','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.','034.4 034.4 autorizacao de saida de material para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente.','S',NULL,1,'E','N',1),(159,'034.5','RECOLHIMENTO DE MATERIAL AO DEPÓSITO','Para os documentos referentes a produtos e insumos químicos e outras substâncias entorpecentes, observar os prazos da legislação específica vigente.\r\n\r\n- Ver também 024.3, 024.4 e 024.91.','034.5 034.5 recolhimento de material ao deposito para os documentos referentes a produtos e insumos quimicos e outras substancias entorpecentes, observar os prazos da legislacao especifica vigente. - ver tambem 024.3, 024.4 e 024.91.','S',NULL,2,'E','N',1),(160,'035','ALIENAÇÃO. BAIXA (Material Permanente e de Consumo)',NULL,'035 035 alienacao. baixa (material permanente e de consumo)','S',5,4,'E','S',1),(161,'035.1','VENDA (inclusive Leilão)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','035.1 035.1 venda (inclusive leilao) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(162,'035.2','CESSÃO. DOAÇÃO. PERMUTA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).','035.2 035.2 cessao. doacao. permuta para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao).','S',5,4,'E','N',1),(163,'036','INSTALAÇÃO E MANUTENÇÃO (Serviços de Instalação, Conservação, Recuperação e Consertos de Equipamentos e Mobiliário)',NULL,'036 036 instalacao e manutencao (servicos de instalacao, conservacao, recuperacao e consertos de equipamentos e mobiliario)','S',5,1,'E','S',1),(164,'036.1','REQUISIÇÃO E CONTRATAÇÃO DE SERVIÇOS (inclusive Licitações)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','036.1 036.1 requisicao e contratacao de servicos (inclusive licitacoes) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(165,'036.2','SERVIÇOS EXECUTADOS EM OFICINAS DO ÓRGÃO',NULL,'036.2 036.2 servicos executados em oficinas do orgao','S',NULL,1,'E','N',1),(166,'037','INVENTÁRIO','Quanto aos inventários de documentação bibliográfica, classificar em 062.5.','037 037 inventario quanto aos inventarios de documentacao bibliografica, classificar em 062.5.','S',5,2,'G','S',1),(167,'037.1','MATERIAL PERMANENTE','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','037.1 037.1 material permanente condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(168,'037.2','MATERIAL DE CONSUMO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','037.2 037.2 material de consumo condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(169,'039','OUTROS ASSUNTOS REFERENTES A MATERIAL','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','039 039 outros assuntos referentes a material este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,5,'G','S',1),(170,'040','PATRIMÔNIO (Bens Imóveis, Veículos e Semoventes pertencentes ao Órgão) (inclusive Normas, Regulamentações, Diretrizes, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','Incluem-se, neste caso, as formas de aquisição e alienação, bem como os serviços de manutenção, limpeza e recuperação.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','040 040 patrimonio (bens imoveis, veiculos e semoventes pertencentes ao orgao) (inclusive normas, regulamentacoes, diretrizes, procedimentos, estudos e/ou decisoes de carater geral) incluem-se, neste caso, as formas de aquisicao e alienacao, bem como os servicos de manutencao, limpeza e recuperacao. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(171,'041','BENS IMÓVEIS (Projetos, Plantas e Escrituras relativos aos edifícios, terrenos, residências e salas)','É opcional a reprodução dos documentos previamente ao recolhimento, para que o órgão permaneça com cópias para consulta.\r\n\r\n- Sugere-se abrir uma pasta para cada bem imóvel, sempre que tal procedimento se justificar.','041 041 bens imoveis (projetos, plantas e escrituras relativos aos edificios, terrenos, residencias e salas) e opcional a reproducao dos documentos previamente ao recolhimento, para que o orgao permaneca com copias para consulta. - sugere-se abrir uma pasta para cada bem imovel, sempre que tal procedimento se justificar.','S',5,3,'G','N',1),(172,'041.01','FORNECIMENTO E MANUTENÇÃO DE SERVIÇOS BÁSICOS','Quanto à instalação, conservação e reparo de rádio, telex, telefone e fac-símile, ver 072.1, 073.1 e 074.1, respectivamente.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.01 041.01 fornecimento e manutencao de servicos basicos quanto a instalacao, conservacao e reparo de radio, telex, telefone e fac-simile, ver 072.1, 073.1 e 074.1, respectivamente. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(173,'041.011','ÁGUA E ESGOTO','Quanto à instalação, conservação e reparo de rádio, telex, telefone e fac-símile, ver 072.1, 073.1 e 074.1, respectivamente.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.011 041.011 agua e esgoto quanto a instalacao, conservacao e reparo de radio, telex, telefone e fac-simile, ver 072.1, 073.1 e 074.1, respectivamente. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(174,'041.012','GÁS','Quanto à instalação, conservação e reparo de rádio, telex, telefone e fac-símile, ver 072.1, 073.1 e 074.1, respectivamente.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.012 041.012 gas quanto a instalacao, conservacao e reparo de radio, telex, telefone e fac-simile, ver 072.1, 073.1 e 074.1, respectivamente. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(175,'041.013','LUZ E FORÇA','Quanto à instalação, conservação e reparo de rádio, telex, telefone e fac-símile, ver 072.1, 073.1 e 074.1, respectivamente.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.013 041.013 luz e forca quanto a instalacao, conservacao e reparo de radio, telex, telefone e fac-simile, ver 072.1, 073.1 e 074.1, respectivamente. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(176,'041.02','COMISSÃO INTERNA DE CONSERVAÇÃO DE ENERGIA - CICE (Criação, Designação, Propostas de Redução de Gastos com Energia, Relatórios e Atas)','Como o foco é processo de trabalho, não tem como distinguir, o que nos obrigou escolher a destinação mais segura, no caso, Guarda Permanente.','041.02 041.02 comissao interna de conservacao de energia - cice (criacao, designacao, propostas de reducao de gastos com energia, relatorios e atas) como o foco e processo de trabalho, nao tem como distinguir, o que nos obrigou escolher a destinacao mais segura, no caso, guarda permanente.','S',5,3,'G','N',1),(177,'041.03','CONDOMÍNIO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.03 041.03 condominio condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(178,'041.1','AQUISIÇÃO',NULL,'041.1 041.1 aquisicao','S',5,4,'G','S',1),(179,'041.11','COMPRA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.11 041.11 compra condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(180,'041.12','CESSÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data da aprovação das contas e guarda permanente).','041.12 041.12 cessao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data da aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(181,'041.13','DOAÇÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data da aprovação das contas e guarda permanente).','041.13 041.13 doacao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data da aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(182,'041.14','PERMUTA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data da aprovação das contas e guarda permanente).','041.14 041.14 permuta para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data da aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(183,'041.15','LOCAÇÃO. ARRENDAMENTO. COMODATO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.15 041.15 locacao. arrendamento. comodato condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(184,'041.2','ALIENAÇÃO',NULL,'041.2 041.2 alienacao','S',5,4,'G','S',1),(185,'041.21','VENDA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.21 041.21 venda condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(186,'041.22','CESSÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e guarda permanente).','041.22 041.22 cessao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(187,'041.23','DOAÇÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e guarda permanente).','041.23 041.23 doacao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(188,'041.24','PERMUTA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e guarda permanente).','041.24 041.24 permuta para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e guarda permanente).','S',5,4,'G','N',1),(189,'041.3','DESAPROPRIAÇÃO. REINTEGRAÇÃO DE POSSE. REIVINDICAÇÃO DE DOMÍNIO. TOMBAMENTO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.3 041.3 desapropriacao. reintegracao de posse. reivindicacao de dominio. tombamento condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(190,'041.4','OBRAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.4 041.4 obras condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','S',1),(191,'041.41','REFORMA. RECUPERAÇÃO. RESTAURAÇÃO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.41 041.41 reforma. recuperacao. restauracao condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(192,'041.42','CONSTRUÇÃO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.42 041.42 construcao condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(193,'041.5','SERVIÇOS DE MANUTENÇÃO (inclusive Licitações)','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.5 041.5 servicos de manutencao (inclusive licitacoes) os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(194,'041.51','MANUTENÇÃO DE ELEVADORES','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.51 041.51 manutencao de elevadores os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(195,'041.52','MANUTENÇÃO DE AR CONDICIONADO','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.52 041.52 manutencao de ar condicionado os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(196,'041.53','MANUTENÇÃO DE SUBESTAÇÕES E GERADORES','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.53 041.53 manutencao de subestacoes e geradores os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(197,'041.54','LIMPEZA. IMUNIZAÇÃO. DESINFESTAÇÃO (inclusive para Jardins)','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','041.54 041.54 limpeza. imunizacao. desinfestacao (inclusive para jardins) os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(198,'041.59','OUTROS SERVIÇOS DE MANUTENÇÃO','Este subgrupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','041.59 041.59 outros servicos de manutencao este subgrupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,4,'G','S',1),(199,'042','VEÍCULOS','Sugere-se abrir uma pasta para cada veículo.','042 042 veiculos sugere-se abrir uma pasta para cada veiculo.','S',5,4,'E','S',1),(200,'042.1','AQUISIÇÃO (inclusive Licitações)','Para veículos não adquiridos eliminar após 1 ano.','042.1 042.1 aquisicao (inclusive licitacoes) para veiculos nao adquiridos eliminar apos 1 ano.','S',5,4,'E','S',1),(201,'042.11','COMPRA (inclusive Compra por Importação)','Para veículos não adquiridos eliminar após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','042.11 042.11 compra (inclusive compra por importacao) para veiculos nao adquiridos eliminar apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(202,'042.12','ALUGUEL','Para veículos não adquiridos eliminar após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','042.12 042.12 aluguel para veiculos nao adquiridos eliminar apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(203,'042.13','CESSÃO. DOAÇÃO. PERMUTA. TRANSFERÊNCIA','Para veículos não adquiridos eliminar após 1 ano.\r\n\r\n- Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).','042.13 042.13 cessao. doacao. permuta. transferencia para veiculos nao adquiridos eliminar apos 1 ano. - para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao).','S',5,4,'E','N',1),(204,'042.2','CADASTRO. LICENCIAMENTO. EMPLACAMENTO. TOMBAMENTO','Condicional \"Até a alienação\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','042.2 042.2 cadastro. licenciamento. emplacamento. tombamento condicional \"ate a alienacao\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'E','N',1),(205,'042.3','ALIENAÇÃO (inclusive Licitações)',NULL,'042.3 042.3 alienacao (inclusive licitacoes)','S',5,4,'E','S',1),(206,'042.31','VENDA (inclusive Leilão)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','042.31 042.31 venda (inclusive leilao) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(207,'042.32','CESSÃO. DOAÇÃO. PERMUTA. TRANSFERÊNCIA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).','042.32 042.32 cessao. doacao. permuta. transferencia para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao).','S',5,4,'E','N',1),(208,'042.4','ABASTECIMENTO. LIMPEZA. MANUTENÇÃO. REPARO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','042.4 042.4 abastecimento. limpeza. manutencao. reparo condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(209,'042.5','ACIDENTES. INFRAÇÕES. MULTAS','Para acidentes com vítimas, o prazo total de guarda é de 20 anos.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','042.5 042.5 acidentes. infracoes. multas para acidentes com vitimas, o prazo total de guarda e de 20 anos. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(210,'042.9','OUTROS ASSUNTOS REFERENTES A VEÍCULOS',NULL,'042.9 042.9 outros assuntos referentes a veiculos','S',NULL,2,'E','S',1),(211,'042.91','CONTROLE DE USO DE VEÍCULOS',NULL,'042.91 042.91 controle de uso de veiculos','S',NULL,2,'E','N',1),(212,'042.911','REQUISIÇÃO',NULL,'042.911 042.911 requisicao','S',NULL,2,'E','N',1),(213,'042.912','AUTORIZAÇÃO PARA USO FORA DO HORÁRIO DE EXPEDIENTE',NULL,'042.912 042.912 autorizacao para uso fora do horario de expediente','S',NULL,2,'E','N',1),(214,'042.913','ESTACIONAMENTO. GARAGEM',NULL,'042.913 042.913 estacionamento. garagem','S',NULL,2,'E','N',1),(215,'043','BENS SEMOVENTES','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','043 043 bens semoventes este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,4,'G','S',1),(216,'044','INVENTÁRIO (inclusive Relatório de Movimentação de Bens Imóveis - RMBI)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','044 044 inventario (inclusive relatorio de movimentacao de bens imoveis - rmbi) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(217,'049','OUTROS ASSUNTOS REFERENTES A PATRIMÔNIO',NULL,'049 049 outros assuntos referentes a patrimonio','S',5,4,'G','S',1),(218,'049.1','GUARDA E SEGURANÇA',NULL,'049.1 049.1 guarda e seguranca','S',NULL,2,'E','N',1),(219,'049.11','SERVIÇOS DE VIGILÂNCIA','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','049.11 049.11 servicos de vigilancia os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(220,'049.12','SEGUROS (inclusive de Veículos)','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','049.12 049.12 seguros (inclusive de veiculos) os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(221,'049.13a','PREVENÇÃO DE INCÊNDIO (Treinamento de Pessoal, Instalação e Manutenção de Extintores, Inspeções Periódicas)',NULL,'049.13a 049.13a prevencao de incendio (treinamento de pessoal, instalacao e manutencao de extintores, inspecoes periodicas)','S',NULL,2,'E','N',1),(222,'049.13b','PREVENÇÃO DE INCÊNDIO (Constituição de Brigadas de Incêndio, Planos, Projetos e Relatórios)',NULL,'049.13b 049.13b prevencao de incendio (constituicao de brigadas de incendio, planos, projetos e relatorios)','S',5,4,'G','N',1),(223,'049.14','SINISTRO (inclusive Vistorias, Sindicâncias e Perícias Técnicas relativas a Arrombamento, Desaparecimento, Extravio, Incêndio e Roubo)','Condicional \"Até a conclusão do caso\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','049.14 049.14 sinistro (inclusive vistorias, sindicancias e pericias tecnicas relativas a arrombamento, desaparecimento, extravio, incendio e roubo) condicional \"ate a conclusao do caso\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'E','N',1),(224,'049.15a','CONTROLE DE PORTARIA (Entrada e Saída de Pessoas, Materiais e Veículos; Permissão para Entrada e Permanência fora do horário de expediente; Controle de Entrega e Devolução de Chaves)','Quanto ao controle de uso de veículos, ver 042.91.','049.15a 049.15a controle de portaria (entrada e saida de pessoas, materiais e veiculos; permissao para entrada e permanencia fora do horario de expediente; controle de entrega e devolucao de chaves) quanto ao controle de uso de veiculos, ver 042.91.','S',NULL,2,'E','N',1),(225,'049.15b','CONTROLE DE PORTARIA (Registro de Ocorrências)','Quanto ao controle de uso de veículos, ver 042.91.','049.15b 049.15b controle de portaria (registro de ocorrencias) quanto ao controle de uso de veiculos, ver 042.91.','S',5,5,'E','N',1),(226,'049.2','MUDANÇAS',NULL,'049.2 049.2 mudancas','S',5,2,'G','S',1),(227,'049.21','PARA OUTROS IMÓVEIS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','049.21 049.21 para outros imoveis condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(228,'049.22','DENTRO DO MESMO IMÓVEL','Os documentos que não envolvem pagamentos serão eliminados após 1 ano.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','049.22 049.22 dentro do mesmo imovel os documentos que nao envolvem pagamentos serao eliminados apos 1 ano. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(229,'049.3','USO DE DEPENDÊNCIAS (Utilização de Auditório e demais Dependências do Imóvel, pelo órgão ou por terceiros)',NULL,'049.3 049.3 uso de dependencias (utilizacao de auditorio e demais dependencias do imovel, pelo orgao ou por terceiros)','S',NULL,2,'E','N',1),(230,'050','ORÇAMENTO E FINANÇAS (Previsão e Execução; Operações Contábeis; Receita e Despesa; Movimentação de Conta; Balanços; Prestações de Contas) (inclusive Normas, Regulamentações, Diretrizes, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','Previsão e Execução Orçamentária; Operações Contábeis e Financeiras; Comprovação de Receita e Despesa; Movimentação de Conta Corrente; Balanços; Prestações de Contas ao Tribunal de Contas.\r\n\r\nCondicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','050 050 orcamento e financas (previsao e execucao; operacoes contabeis; receita e despesa; movimentacao de conta; balancos; prestacoes de contas) (inclusive normas, regulamentacoes, diretrizes, procedimentos, estudos e/ou decisoes de carater geral) previsao e execucao orcamentaria; operacoes contabeis e financeiras; comprovacao de receita e despesa; movimentacao de conta corrente; balancos; prestacoes de contas ao tribunal de contas. condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(231,'050.1','AUDITORIA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','050.1 050.1 auditoria condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(232,'051','ORÇAMENTO',NULL,'051 051 orcamento','S',5,5,'G','S',1),(233,'051.1','PROGRAMAÇÃO ORÇAMENTÁRIA',NULL,'051.1 051.1 programacao orcamentaria','S',5,5,'G','S',1),(234,'051.11','PREVISÃO ORÇAMENTÁRIA',NULL,'051.11 051.11 previsao orcamentaria','S',NULL,2,'E','N',1),(235,'051.12','PROPOSTA ORÇAMENTÁRIA',NULL,'051.12 051.12 proposta orcamentaria','S',5,5,'G','N',1),(236,'051.13','QUADRO DE DETALHAMENTO DE DESPESA - QDD (inclusive as Metas e Destinação de Recursos e Receitas por Fontes)',NULL,'051.13 051.13 quadro de detalhamento de despesa - qdd (inclusive as metas e destinacao de recursos e receitas por fontes)','S',NULL,2,'E','N',1),(237,'051.14','CRÉDITOS ADICIONAIS (Crédito Suplementar. Crédito Especial. Crédito Extraordinário)',NULL,'051.14 051.14 creditos adicionais (credito suplementar. credito especial. credito extraordinario)','S',5,5,'G','N',1),(238,'051.2','EXECUÇÃO ORÇAMENTÁRIA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','051.2 051.2 execucao orcamentaria condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(239,'051.21','DESCENTRALIZAÇÃO DE RECURSOS (Distribuição Orçamentária) (Transferências, Provisão, Destaques, Estornos e Subvenções)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','051.21 051.21 descentralizacao de recursos (distribuicao orcamentaria) (transferencias, provisao, destaques, estornos e subvencoes) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(240,'051.22','ACOMPANHAMENTO DE DESPESA MENSAL (Pessoal/Dívida)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','051.22 051.22 acompanhamento de despesa mensal (pessoal/divida) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(241,'051.23','PLANO OPERATIVO. CRONOGRAMA DE DESEMBOLSO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','051.23 051.23 plano operativo. cronograma de desembolso condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(242,'052','FINANÇAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','052 052 financas condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(243,'052.1','PROGRAMAÇÃO FINANCEIRA DE DESEMBOLSO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','052.1 052.1 programacao financeira de desembolso condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(244,'052.2','EXECUÇÃO FINANCEIRA (inclusive Despesas Correntes e de Capital)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','052.2 052.2 execucao financeira (inclusive despesas correntes e de capital) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(245,'052.21','RECEITA (inclusive Créditos do Tesouro Nacional - cota, repasse e sub-repasse; Taxas Cobradas por Serviços; Multas; Emolumentos; e outras rendas arrecadadas)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','052.21 052.21 receita (inclusive creditos do tesouro nacional - cota, repasse e sub-repasse; taxas cobradas por servicos; multas; emolumentos; e outras rendas arrecadadas) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(246,'052.22','DESPESA (inclusive Despesas Correntes e de Capital, bem como Adiantamentos, Subvenções, Suprimento de Fundos e Restos a Pagar)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','052.22 052.22 despesa (inclusive despesas correntes e de capital, bem como adiantamentos, subvencoes, suprimento de fundos e restos a pagar) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(247,'053','FUNDOS ESPECIAIS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','053 053 fundos especiais condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(248,'054','ESTÍMULOS FINANCEIROS E CREDITÍCIOS (inclusive Subsídios, Incentivos Fiscais e Investimentos)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','054 054 estimulos financeiros e crediticios (inclusive subsidios, incentivos fiscais e investimentos) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(249,'055','OPERAÇÕES BANCÁRIAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','055 055 operacoes bancarias condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(250,'055.01','PAGAMENTOS EM MOEDA ESTRANGEIRA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','055.01 055.01 pagamentos em moeda estrangeira condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(251,'055.1','CONTA ÚNICA (inclusive Assinaturas Autorizadas e Extratos de Contas)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','055.1 055.1 conta unica (inclusive assinaturas autorizadas e extratos de contas) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(252,'055.2','OUTRAS CONTAS: TIPO B, C e D (inclusive Assinaturas Autorizadas e Extratos de Contas)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','055.2 055.2 outras contas: tipo b, c e d (inclusive assinaturas autorizadas e extratos de contas) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(253,'056','BALANÇOS. BALANCETES','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','056 056 balancos. balancetes condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(254,'057','TOMADA DE CONTAS. PRESTAÇÃO DE CONTAS (inclusive Parecer de Aprovação das Contas). TOMADA DE CONSTAS ESPECIAL','Incluem-se a avaliação da gestão dos responsáveis por unidades jurisdicionadas da administração pública federal direta e indireta.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','057 057 tomada de contas. prestacao de contas (inclusive parecer de aprovacao das contas). tomada de constas especial incluem-se a avaliacao da gestao dos responsaveis por unidades jurisdicionadas da administracao publica federal direta e indireta. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(255,'059','OUTROS ASSUNTOS REFERENTES A ORÇAMENTO E FINANÇAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','059 059 outros assuntos referentes a orcamento e financas condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(256,'059.1','TRIBUTOS (Impostos e Taxas)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','059.1 059.1 tributos (impostos e taxas) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(257,'060','DOCUMENTAÇÃO E INFORMAÇÃO','Incluem-se nesta subclasse os documentos referentes à publicação, produção editorial, preparo, impressão e distribuição de matérias, bem como à aquisição, controle, distribuição e acesso à documentação bibliográfica do órgão. Incluem-se, ainda, os documentos referentes à produção, controle, avaliação, arquivamento e destinação de documentos arquivísticos, como também os documentos relacionados com as atividades de reprodução, conservação e informática.','060 060 documentacao e informacao incluem-se nesta subclasse os documentos referentes a publicacao, producao editorial, preparo, impressao e distribuicao de materias, bem como a aquisicao, controle, distribuicao e acesso a documentacao bibliografica do orgao. incluem-se, ainda, os documentos referentes a producao, controle, avaliacao, arquivamento e destinacao de documentos arquivisticos, como tambem os documentos relacionados com as atividades de reproducao, conservacao e informatica.','S',100,5,'G','S',1),(258,'060.1','PUBLICAÇÃO DE MATÉRIAS NO DIÁRIO OFICIAL','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','060.1 060.1 publicacao de materias no diario oficial condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(259,'060.2','PUBLICAÇÃO DE MATÉRIAS NOS BOLETINS ADMINISTRATIVO, DE PESSOAL E DE SERVIÇO',NULL,'060.2 060.2 publicacao de materias nos boletins administrativo, de pessoal e de servico','S',NULL,1,'E','N',1),(260,'060.3','PUBLICAÇÃO DE MATÉRIAS EM OUTROS PERIÓDICOS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','060.3 060.3 publicacao de materias em outros periodicos condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(261,'061','PRODUÇÃO EDITORIAL (inclusive Edição ou Coedição de Publicações em Geral produzidas pelo órgão em qualquer suporte)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','061 061 producao editorial (inclusive edicao ou coedicao de publicacoes em geral produzidas pelo orgao em qualquer suporte) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(262,'061.1','EDITORAÇÃO. PROGRAMAÇÃO VISUAL','Documentos que não envolvem pagamentos serão eliminados após 5 anos de arquivamento na fase corrente.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','061.1 061.1 editoracao. programacao visual documentos que nao envolvem pagamentos serao eliminados apos 5 anos de arquivamento na fase corrente. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(263,'061.2','DISTRIBUIÇÃO. PROMOÇÃO. DIVULGAÇÃO','Quanto à permuta de documentação bibliográfica, ver 062.13.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','061.2 061.2 distribuicao. promocao. divulgacao quanto a permuta de documentacao bibliografica, ver 062.13. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(264,'062','DOCUMENTAÇÃO BIBLIOGRÁFICA (Livros, Periódicos, Folhetos e Audiovisuais)',NULL,'062 062 documentacao bibliografica (livros, periodicos, folhetos e audiovisuais)','S',5,4,'G','S',1),(265,'062.01','NORMAS E MANUAIS (inclusive Estudos e Textos referentes à Elaboração de Metodologias e Procedimentos Técnicos adotados para o Tratamento da Documentação Bibliográfica)','Para o Código 062.01, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','062.01 062.01 normas e manuais (inclusive estudos e textos referentes a elaboracao de metodologias e procedimentos tecnicos adotados para o tratamento da documentacao bibliografica) para o codigo 062.01, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(266,'062.1','AQUISIÇÃO (no Brasil e no exterior)','Os documentos referentes a material bibliográfico não adquirido serão eliminados após 1 ano.','062.1 062.1 aquisicao (no brasil e no exterior) os documentos referentes a material bibliografico nao adquirido serao eliminados apos 1 ano.','S',5,4,'E','S',1),(267,'062.11','COMPRA (inclusive Assinaturas de Periódicos)','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','062.11 062.11 compra (inclusive assinaturas de periodicos) condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(268,'062.12','DOAÇÃO','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).','062.12 062.12 doacao para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao).','S',5,4,'E','N',1),(269,'062.13','PERMUTA','Para transações que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (Até aprovação das contas + 5 anos a contar da data de aprovação das contas e eliminação).\r\n\r\n- Quanto à permuta da produção editorial do órgão, ver 061.2.','062.13 062.13 permuta para transacoes que envolvam pagamentos de despesas pendentes, utilizar prazos para documentos financeiros (ate aprovacao das contas + 5 anos a contar da data de aprovacao das contas e eliminacao). - quanto a permuta da producao editorial do orgao, ver 061.2.','S',5,4,'E','N',1),(270,'062.2','REGISTRO (inclusive Incorporação de Livros e Periódicos ao Acervo)',NULL,'062.2 062.2 registro (inclusive incorporacao de livros e periodicos ao acervo)','S',NULL,2,'E','N',1),(271,'062.3','CATALOGAÇÃO. CLASSIFICAÇÃO. INDEXAÇÃO',NULL,'062.3 062.3 catalogacao. classificacao. indexacao','S',NULL,2,'E','N',1),(272,'062.4','REFERÊNCIA E CIRCULAÇÃO (inclusive Consultas, Pesquisas Bibliográficas, Bibliografias, Empréstimos e Intercâmbio entre Bibliotecas)',NULL,'062.4 062.4 referencia e circulacao (inclusive consultas, pesquisas bibliograficas, bibliografias, emprestimos e intercambio entre bibliotecas)','S',NULL,2,'E','N',1),(273,'062.5','INVENTÁRIO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','062.5 062.5 inventario condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'G','N',1),(274,'063','DOCUMENTAÇÃO ARQUIVÍSTICA: GESTÃO DE DOCUMENTOS E SISTEMA DE ARQUIVOS',NULL,'063 063 documentacao arquivistica: gestao de documentos e sistema de arquivos','S',100,5,'G','S',1),(275,'063.01','NORMAS E MANUAIS (inclusive Estudos e Orientações referentes à Elaboração de Documentos, Metodologias e Procedimentos Técnicos)','Para o Código 063.01, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','063.01 063.01 normas e manuais (inclusive estudos e orientacoes referentes a elaboracao de documentos, metodologias e procedimentos tecnicos) para o codigo 063.01, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',7,1,'G','N',1),(276,'063.1a','PRODUÇÃO DE DOCUMENTOS. LEVANTAMENTO. DIAGNÓSTICO. FLUXO',NULL,'063.1a 063.1a producao de documentos. levantamento. diagnostico. fluxo','S',NULL,4,'E','N',1),(277,'063.1b','PRODUÇÃO DE DOCUMENTOS. LEVANTAMENTO. DIAGNÓSTICO. FLUXO (Diagnóstico)',NULL,'063.1b 063.1b producao de documentos. levantamento. diagnostico. fluxo (diagnostico)','S',5,5,'G','N',1),(278,'063.2','PROTOCOLO: RECEPÇÃO, TRAMITAÇÃO E EXPEDIÇÃO DE DOCUMENTOS',NULL,'063.2 063.2 protocolo: recepcao, tramitacao e expedicao de documentos','S',NULL,2,'E','N',1),(279,'063.3','ASSISTÊNCIA TÉCNICA',NULL,'063.3 063.3 assistencia tecnica','S',NULL,5,'E','N',1),(280,'063.4a','CLASSIFICAÇÃO E ARQUIVAMENTO',NULL,'063.4a 063.4a classificacao e arquivamento','S',NULL,2,'E','N',1),(281,'063.4b','CLASSIFICAÇÃO E ARQUIVAMENTO (Códigos de Classificação de Documentos)','Condicional \"Enquanto vigora\" convencionado para 5 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nPara o Código 063.4b o prazo total é 100 anos, assim, foi definido 5 anos no corrente e 95 anos no intermediário.\r\n\r\nO prazo total é de 100 anos, devendo o órgão permanecer com um exemplar por igual período. Um outro exemplar deverá compor o conjunto documental NORMAS E MANUAIS do subgrupo 063.01, seguindo a temporalidade e destinação previstas para o mesmo.','063.4b 063.4b classificacao e arquivamento (codigos de classificacao de documentos) condicional \"enquanto vigora\" convencionado para 5 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. para o codigo 063.4b o prazo total e 100 anos, assim, foi definido 5 anos no corrente e 95 anos no intermediario. o prazo total e de 100 anos, devendo o orgao permanecer com um exemplar por igual periodo. um outro exemplar devera compor o conjunto documental normas e manuais do subgrupo 063.01, seguindo a temporalidade e destinacao previstas para o mesmo.','S',95,5,'E','N',1),(282,'063.5','POLÍTICA DE ACESSO AOS DOCUMENTOS',NULL,'063.5 063.5 politica de acesso aos documentos','S',5,5,'G','N',1),(283,'063.51','CONSULTAS. EMPRÉSTIMOS','Condicional \"1 ano após a devolução\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','063.51 063.51 consultas. emprestimos condicional \"1 ano apos a devolucao\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',NULL,1,'E','N',1),(284,'063.6','DESTINAÇÃO DE DOCUMENTOS',NULL,'063.6 063.6 destinacao de documentos','S',100,5,'G','S',1),(285,'063.61a','ANÁLISE. AVALIAÇÃO. SELEÇÃO',NULL,'063.61a 063.61a analise. avaliacao. selecao','S',5,5,'G','N',1),(286,'063.61b','ANÁLISE. AVALIAÇÃO. SELEÇÃO (Tabela de Temporalidade)','Condicional \"Enquanto vigora\" convencionado para 5 anos no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nPara o Código 063.61b o prazo total é de 100 anos, assim, foi definido 5 anos no corrente e 95 anos no intermediário.\r\n\r\nO prazo total é de 100 anos, devendo o órgão permanecer com um exemplar por igual período. Um outro exemplar deverá compor o conjunto documental NORMAS E MANUAIS do subgrupo 063.01, seguindo a temporalidade e destinação previstas para o mesmo.','063.61b 063.61b analise. avaliacao. selecao (tabela de temporalidade) condicional \"enquanto vigora\" convencionado para 5 anos no corrente. - o prazo comeca a contar a partir da conclusao do processo. para o codigo 063.61b o prazo total e de 100 anos, assim, foi definido 5 anos no corrente e 95 anos no intermediario. o prazo total e de 100 anos, devendo o orgao permanecer com um exemplar por igual periodo. um outro exemplar devera compor o conjunto documental normas e manuais do subgrupo 063.01, seguindo a temporalidade e destinacao previstas para o mesmo.','S',95,5,'E','N',1),(287,'063.62','ELIMINAÇÃO (inclusive Termos, Listagens e Editais de Ciência de Eliminação)',NULL,'063.62 063.62 eliminacao (inclusive termos, listagens e editais de ciencia de eliminacao)','S',1,4,'G','N',1),(288,'063.63','TRANSFERÊNCIA. RECOLHIMENTO (inclusive Guias e Termos de Transferência; Guias, Relações e Termos de Recolhimento; e Listagens Descritivas do Acervo)',NULL,'063.63 063.63 transferencia. recolhimento (inclusive guias e termos de transferencia; guias, relacoes e termos de recolhimento; e listagens descritivas do acervo)','S',1,4,'G','N',1),(289,'064','DOCUMENTAÇÃO MUSEOLÓGICA','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','064 064 documentacao museologica este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,5,'G','S',1),(290,'065','REPRODUÇÃO DE DOCUMENTOS (em qualquer suporte, de material arquivístico, bibliográfico e museológico) (inclusive Estudos, Projetos e Normas)','Para o Código 065, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.\r\n\r\nQuanto à requisição de cópias eletrostáticas, ver 032.','065 065 reproducao de documentos (em qualquer suporte, de material arquivistico, bibliografico e museologico) (inclusive estudos, projetos e normas) para o codigo 065, condicional \"enquanto vigora\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo. quanto a requisicao de copias eletrostaticas, ver 032.','S',5,1,'G','N',1),(291,'066','CONSERVAÇÃO DE DOCUMENTOS',NULL,'066 066 conservacao de documentos','S',5,2,'E','S',1),(292,'066.1','DESINFESTAÇÃO. HIGIENIZAÇÃO','Para documentos que não envolvam pagamentos, eliminar após 2 anos.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','066.1 066.1 desinfestacao. higienizacao para documentos que nao envolvam pagamentos, eliminar apos 2 anos. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(293,'066.2','ARMAZENAMENTO. DEPÓSITOS',NULL,'066.2 066.2 armazenamento. depositos','S',NULL,2,'E','N',1),(294,'066.3','RESTAURAÇÃO (inclusive Encadernação)','Para documentos que não envolvam pagamentos, eliminar após 2 anos.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','066.3 066.3 restauracao (inclusive encadernacao) para documentos que nao envolvam pagamentos, eliminar apos 2 anos. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(295,'067','INFORMÁTICA',NULL,'067 067 informatica','S',5,1,'G','S',1),(296,'067.1','PLANOS E PROJETOS','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','067.1 067.1 planos e projetos condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(297,'067.2','PROGRAMAS. SISTEMAS. REDES (inclusive Licença e Registro de Uso e Compra)','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','067.2 067.2 programas. sistemas. redes (inclusive licenca e registro de uso e compra) condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(298,'067.21','MANUAIS TÉCNICOS (Exemplares Únicos)','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','067.21 067.21 manuais tecnicos (exemplares unicos) condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(299,'067.22','MANUAIS DO USUÁRIO (Exemplares Únicos)','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','067.22 067.22 manuais do usuario (exemplares unicos) condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(300,'067.3','ASSISTÊNCIA TÉCNICA','Para documentos que não envolvam pagamentos, eliminar após 2 anos.\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','067.3 067.3 assistencia tecnica para documentos que nao envolvam pagamentos, eliminar apos 2 anos. condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(301,'069','OUTROS ASSUNTOS REFERENTES À DOCUMENTAÇÃO E INFORMAÇÃO','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','069 069 outros assuntos referentes a documentacao e informacao este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,5,'G','S',1),(302,'070','COMUNICAÇÕES (Instalação, Manutenção, Operação e Uso dos Recursos e Serviços Postais, de Telecomunicações e de Tecnologias da Informação) (inclusive Normas, Regulamentações, Diretrizes, Procedimentos, Estudos e/ou Decisões de Caráter Geral)','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','070 070 comunicacoes (instalacao, manutencao, operacao e uso dos recursos e servicos postais, de telecomunicacoes e de tecnologias da informacao) (inclusive normas, regulamentacoes, diretrizes, procedimentos, estudos e/ou decisoes de carater geral) condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,1,'G','N',1),(303,'071','SERVIÇO POSTAL','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071 071 servico postal condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(304,'071.1','SERVIÇOS DE ENTREGA EXPRESSA','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.1 071.1 servicos de entrega expressa condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','S',1),(305,'071.11','NACIONAL','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.11 071.11 nacional condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(306,'071.12','INTERNACIONAL','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.12 071.12 internacional condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(307,'071.2','SERVIÇOS DE COLETA, TRANSPORTE E ENTREGA DE CORRESPONDÊNCIA AGRUPADA – MALOTE','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.2 071.2 servicos de coleta, transporte e entrega de correspondencia agrupada malote condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(308,'071.3','MALA OFICIAL','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.3 071.3 mala oficial condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(309,'071.9','OUTROS SERVIÇOS POSTAIS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','071.9 071.9 outros servicos postais condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(310,'072','SERVIÇO DE RÁDIO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','072 072 servico de radio condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(311,'072.1','INSTALAÇÃO. MANUTENÇÃO. REPARO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','072.1 072.1 instalacao. manutencao. reparo condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(312,'073','SERVIÇO DE TELEX','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','073 073 servico de telex condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(313,'073.1','INSTALAÇÃO. MANUTENÇÃO. REPARO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','073.1 073.1 instalacao. manutencao. reparo condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(314,'074','SERVIÇO TELEFÔNICO (inclusive Autorização para Ligações Interurbanas). FAC-SÍMILE (Fax)',NULL,'074 074 servico telefonico (inclusive autorizacao para ligacoes interurbanas). fac-simile (fax)','S',NULL,2,'E','N',1),(315,'074.1','INSTALAÇÃO. TRANSFERÊNCIA. MANUTENÇÃO. REPARO','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','074.1 074.1 instalacao. transferencia. manutencao. reparo condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(316,'074.2','LISTAS TELEFÔNICAS INTERNAS','Para o Código 074.2, condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, independente da vigência, pois esta é uma classificação em desuso. - O prazo começa a contar a partir da conclusão do processo.','074.2 074.2 listas telefonicas internas para o codigo 074.2, condicional \"enquanto vigora\" convencionado para 1 ano no corrente, independente da vigencia, pois esta e uma classificacao em desuso. - o prazo comeca a contar a partir da conclusao do processo.','S',NULL,1,'E','N',1),(317,'074.3','CONTAS TELEFÔNICAS','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','074.3 074.3 contas telefonicas condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(318,'075','SERVIÇO DE TRANSMISSÃO DE DADOS, VOZ E IMAGEM','Condicional \"Até aprovação das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovação das contas\" convencionado para 15 anos para o intermediário, somando-se 20 anos.\r\n\r\n- O prazo de guarda recomendado pelo TCU é de 10 anos, mas existem orientações sobre a necessidade de manter os documentos financeiros por 20 anos.','075 075 servico de transmissao de dados, voz e imagem condicional \"ate aprovacao das contas\" convencionado para 5 anos para o corrente e condicional \"5 anos a contar da data de aprovacao das contas\" convencionado para 15 anos para o intermediario, somando-se 20 anos. - o prazo de guarda recomendado pelo tcu e de 10 anos, mas existem orientacoes sobre a necessidade de manter os documentos financeiros por 20 anos.','S',15,5,'E','N',1),(319,'079','OUTROS ASSUNTOS REFERENTES A COMUNICAÇÕES','Este grupo será desenvolvido pelo órgão de acordo com a necessidade, bem como a temporalidade e destinação.','079 079 outros assuntos referentes a comunicacoes este grupo sera desenvolvido pelo orgao de acordo com a necessidade, bem como a temporalidade e destinacao.','S',5,2,'G','S',1),(320,'090','OUTROS ASSUNTOS REFERENTES À ADMINISTRAÇÃO GERAL','Incluem-se nesta subclasse documentos de caráter genérico relativos à ADMINISTRAÇÃO GERAL. Utiliza-se, também, esta subclasse como recurso para inclusão de assuntos que não possuam classificação específica, bem como para evitar a proliferação de subclasses que possam ser reservadas para possíveis expansões. Entretanto, os documentos só poderão ser aqui classificados após a verificação da não existência de outras subclasses nas quais possam ser inseridos.','090 090 outros assuntos referentes a administracao geral incluem-se nesta subclasse documentos de carater generico relativos a administracao geral. utiliza-se, tambem, esta subclasse como recurso para inclusao de assuntos que nao possuam classificacao especifica, bem como para evitar a proliferacao de subclasses que possam ser reservadas para possiveis expansoes. entretanto, os documentos so poderao ser aqui classificados apos a verificacao da nao existencia de outras subclasses nas quais possam ser inseridos.','S',5,5,'G','S',1),(321,'091','AÇÕES JUDICIAIS',NULL,'091 091 acoes judiciais','S',95,5,'G','N',1),(322,'900','ASSUNTOS DIVERSOS','Incluem-se documentos de caráter genérico referentes à administração geral cujos assuntos não possuem classificação específica nas demais classes do código.','900 900 assuntos diversos incluem-se documentos de carater generico referentes a administracao geral cujos assuntos nao possuem classificacao especifica nas demais classes do codigo.','S',5,5,'G','S',1),(323,'910.a','SOLENIDADES. COMEMORAÇÕES. HOMENAGENS (inclusive Discursos e Palestras proferidas por convidados)','Ordenar por evento, em ordem alfabética ou cronológica.','910.a 910.a solenidades. comemoracoes. homenagens (inclusive discursos e palestras proferidas por convidados) ordenar por evento, em ordem alfabetica ou cronologica.','S',NULL,1,'E','N',1),(324,'910.b','SOLENIDADES. COMEMORAÇÕES. HOMENAGENS (Planejamento, Programação, Discursos, Palestras e Trabalhos apresentados por Técnicos do Órgão)','Ordenar por evento, em ordem alfabética ou cronológica.','910.b 910.b solenidades. comemoracoes. homenagens (planejamento, programacao, discursos, palestras e trabalhos apresentados por tecnicos do orgao) ordenar por evento, em ordem alfabetica ou cronologica.','S',5,5,'G','N',1),(325,'920.a','CONGRESSOS. CONFERÊNCIAS. SEMINÁRIOS. SIMPÓSIOS. ENCONTROS. CONVENÇÕES. CICLOS DE PALESTRAS. MESAS REDONDAS','Classificam-se os documentos referentes a eventos, promovidos ou não pelo órgão.\r\n\r\nIncluem-se documentos referentes tanto aos eventos promovidos pelo órgão, quanto à participação e apresentação de trabalhos por técnicos do órgão.\r\n\r\nOrdenar por evento, em ordem alfabética ou cronológica.','920.a 920.a congressos. conferencias. seminarios. simposios. encontros. convencoes. ciclos de palestras. mesas redondas classificam-se os documentos referentes a eventos, promovidos ou nao pelo orgao. incluem-se documentos referentes tanto aos eventos promovidos pelo orgao, quanto a participacao e apresentacao de trabalhos por tecnicos do orgao. ordenar por evento, em ordem alfabetica ou cronologica.','S',NULL,1,'E','N',1),(326,'920.b','CONGRESSOS. CONFERÊNCIAS. SEMINÁRIOS. SIMPÓSIOS. ENCONTROS. CONVENÇÕES. CICLOS DE PALESTRAS. MESAS REDONDAS (Planejamento, Programação, Discursos, Palestras e Trabalhos apresentados por Técnicos do Órgão)','Classificam-se os documentos referentes a eventos, promovidos ou não pelo órgão.\r\n\r\nIncluem-se documentos referentes tanto aos eventos promovidos pelo órgão, quanto à participação e apresentação de trabalhos por técnicos do órgão.\r\n\r\nOrdenar por evento, em ordem alfabética ou cronológica.','920.b 920.b congressos. conferencias. seminarios. simposios. encontros. convencoes. ciclos de palestras. mesas redondas (planejamento, programacao, discursos, palestras e trabalhos apresentados por tecnicos do orgao) classificam-se os documentos referentes a eventos, promovidos ou nao pelo orgao. incluem-se documentos referentes tanto aos eventos promovidos pelo orgao, quanto a participacao e apresentacao de trabalhos por tecnicos do orgao. ordenar por evento, em ordem alfabetica ou cronologica.','S',5,5,'G','N',1),(327,'930.a','FEIRAS. SALÕES. EXPOSIÇÕES. MOSTRAS. CONCURSOS. FESTAS','Incluem-se nesta subclasse os documentos relativos a eventos promocionais, do órgão ou de outras instituições, bem como material de divulgação.','930.a 930.a feiras. saloes. exposicoes. mostras. concursos. festas incluem-se nesta subclasse os documentos relativos a eventos promocionais, do orgao ou de outras instituicoes, bem como material de divulgacao.','S',NULL,1,'E','N',1),(328,'930.b','FEIRAS. SALÕES. EXPOSIÇÕES. MOSTRAS. CONCURSOS. FESTAS (Planejamento, Programação, Discursos, Palestras e Trabalhos apresentados por Técnicos do Órgão)','Incluem-se nesta subclasse os documentos relativos a eventos promocionais, do órgão ou de outras instituições, bem como material de divulgação.','930.b 930.b feiras. saloes. exposicoes. mostras. concursos. festas (planejamento, programacao, discursos, palestras e trabalhos apresentados por tecnicos do orgao) incluem-se nesta subclasse os documentos relativos a eventos promocionais, do orgao ou de outras instituicoes, bem como material de divulgacao.','S',5,5,'G','N',1),(329,'930.c','FEIRAS. SALÕES. EXPOSIÇÕES. MOSTRAS. CONCURSOS. FESTAS (Planejamento, Editais, Habilitação dos Candidatos, Julgamento da Banca, Trabalhos Concorrentes, Premiação e Recursos)','Incluem-se nesta subclasse os documentos relativos a eventos promocionais, do órgão ou de outras instituições, bem como material de divulgação.','930.c 930.c feiras. saloes. exposicoes. mostras. concursos. festas (planejamento, editais, habilitacao dos candidatos, julgamento da banca, trabalhos concorrentes, premiacao e recursos) incluem-se nesta subclasse os documentos relativos a eventos promocionais, do orgao ou de outras instituicoes, bem como material de divulgacao.','S',5,5,'G','N',1),(330,'930.d','FEIRAS. SALÕES. EXPOSIÇÕES. MOSTRAS. CONCURSOS. FESTAS (Normas)','Incluem-se nesta subclasse os documentos relativos a eventos promocionais, do órgão ou de outras instituições, bem como material de divulgação.\r\n\r\n- As normas deverão permanecer em fase corrente enquanto vigoram.\r\n\r\nPara o Código 930.d, condicional \"Enquanto vigora\" convencionado para 5 anos no corrente, independente da vigência e do prazo no intermediário, pois são de guarda permanente. - O prazo começa a contar a partir da conclusão do processo.','930.d 930.d feiras. saloes. exposicoes. mostras. concursos. festas (normas) incluem-se nesta subclasse os documentos relativos a eventos promocionais, do orgao ou de outras instituicoes, bem como material de divulgacao. - as normas deverao permanecer em fase corrente enquanto vigoram. para o codigo 930.d, condicional \"enquanto vigora\" convencionado para 5 anos no corrente, independente da vigencia e do prazo no intermediario, pois sao de guarda permanente. - o prazo comeca a contar a partir da conclusao do processo.','S',5,5,'G','N',1),(331,'940','VISITAS E VISITANTES (inclusive Solicitações de Audiência, Assistência, Orientação e Assessoramento a Visitantes)',NULL,'940 940 visitas e visitantes (inclusive solicitacoes de audiencia, assistencia, orientacao e assessoramento a visitantes)','S',NULL,1,'E','N',1),(332,'990','ASSUNTOS TRANSITÓRIOS','Incluem-se nesta subclasse documentos de caráter genérico, tais como pedidos e cartas de apresentação e recomendação; comunicações de posse, endereço e afastamento; convites; felicitações e congratulações; protestos, reivindicações e oferecimentos diversos.','990 990 assuntos transitorios incluem-se nesta subclasse documentos de carater generico, tais como pedidos e cartas de apresentacao e recomendacao; comunicacoes de posse, endereco e afastamento; convites; felicitacoes e congratulacoes; protestos, reivindicacoes e oferecimentos diversos.','S',NULL,1,'E','S',1),(333,'991','APRESENTAÇÃO. RECOMENDAÇÃO (inclusive Cartas de Apresentação e Recomendação)',NULL,'991 991 apresentacao. recomendacao (inclusive cartas de apresentacao e recomendacao)','S',NULL,1,'E','N',1),(334,'992','COMUNICADOS E INFORMES (inclusive Comunicações de Posse, Afastamento de Cargos e Alterações de Endereços e Telefones)',NULL,'992 992 comunicados e informes (inclusive comunicacoes de posse, afastamento de cargos e alteracoes de enderecos e telefones)','S',NULL,1,'E','N',1),(335,'993','AGRADECIMENTOS. CONVITES. FELICITAÇÕES. PÊSAMES',NULL,'993 993 agradecimentos. convites. felicitacoes. pesames','S',NULL,1,'E','N',1),(336,'994','PROTESTOS. REIVINDICAÇÕES. SUGESTÕES',NULL,'994 994 protestos. reivindicacoes. sugestoes','S',NULL,1,'E','N',1),(337,'995','PEDIDOS, OFERECIMENTOS E INFORMAÇÕES DIVERSAS',NULL,'995 995 pedidos, oferecimentos e informacoes diversas','S',NULL,1,'E','N',1),(338,'996','ASSOCIAÇÕES: CULTURAIS, DE AMIGOS E DE SERVIDORES',NULL,'996 996 associacoes: culturais, de amigos e de servidores','S',NULL,1,'E','N',1),(339,'019.1','PLANEJAMENTO INSTITUCIONAL','Assunto Adicional à Res. 14 do CONARQ.','019.1 019.1 planejamento institucional assunto adicional a res. 14 do conarq.','S',5,3,'G','S',1),(340,'019.11','GESTÃO DE PROJETOS','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 00.13.00.00','019.11 019.11 gestao de projetos assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 00.13.00.00','S',5,3,'G','N',1),(341,'019.12','MAPEAMENTO E MODELAGEM DE PROCESSOS DE TRABALHO. ATRIBUIÇÕES E COMPETÊNCIAS','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 00.01.01.15 e CJF 00.01.01.15','019.12 019.12 mapeamento e modelagem de processos de trabalho. atribuicoes e competencias assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 00.01.01.15 e cjf 00.01.01.15','S',5,3,'G','N',1),(342,'019.13','DESEMPENHO INSTITUCIONAL','Assunto Adicional à Res. 14 do CONARQ.','019.13 019.13 desempenho institucional assunto adicional a res. 14 do conarq.','S',5,2,'G','N',1),(343,'019.2','GESTÃO SOCIOAMBIENTAL','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 00.03.00.01','019.2 019.2 gestao socioambiental assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 00.03.00.01','S',5,2,'G','N',1),(344,'019.3','RESPONSABILIDADE SOCIAL / VOLUNTARIADO','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 00.03.00.03','019.3 019.3 responsabilidade social / voluntariado assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 00.03.00.03','S',5,2,'G','N',1),(345,'019.4','PROGRAMAS SOCIOEDUCATIVOS','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 00.03.00.05','019.4 019.4 programas socioeducativos assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 00.03.00.05','S',5,2,'G','N',1),(346,'049.4','GESTÃO DE RESÍDUOS (incluem-se documentos referentes à reciclagem de resíduos e outras formas de destinação ambiental)','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela TJRJ 0-4-1-5-4\r\n\r\nCondicional \"Até aprovação das contas\" convencionado para 1 ano no corrente. - O prazo começa a contar a partir da conclusão do processo.','049.4 049.4 gestao de residuos (incluem-se documentos referentes a reciclagem de residuos e outras formas de destinacao ambiental) assunto adicional a res. 14 do conarq. assunto de referencia: tabela tjrj 0-4-1-5-4 condicional \"ate aprovacao das contas\" convencionado para 1 ano no corrente. - o prazo comeca a contar a partir da conclusao do processo.','S',10,1,'E','N',1),(347,'092','CONTRATAÇÃO E EXECUÇÃO DE SERVIÇO (Incluem-se documentos referentes a todas as fases da prestação de serviço por pessoa jurídica: Licitação, Contratação, Execução, Acompanhamento e Pagamento)','Assunto Adicional à Res. 14 do CONARQ.\r\n\r\nAssunto de Referência: tabela CJF 30.02.02.01','092 092 contratacao e execucao de servico (incluem-se documentos referentes a todas as fases da prestacao de servico por pessoa juridica: licitacao, contratacao, execucao, acompanhamento e pagamento) assunto adicional a res. 14 do conarq. assunto de referencia: tabela cjf 30.02.02.01','S',15,5,'E','N',1),(348,'080','PESSOAL MILITAR',NULL,'080 080 pessoal militar','S',5,5,'G','S',1),(349,'080.1','LEGISLAÇÃO (normas; avisos; portarias de caráter geral; boletins administrativo, de pessoal e de serviço; diretrizes; procedimentos; pareceres; estudos e/ou decisões de caráter geral)','\"É opcional a reprodução dos documentos previamente ao recolhimento, para que o órgão permaneça com cópias para consulta.\n\nCondicional \"\"Enquanto vigora\"\" convencionado para 1 ano no corrente, a contar da revogação do ato.\"','080.1 080.1 legislacao (normas; avisos; portarias de carater geral; boletins administrativo, de pessoal e de servico; diretrizes; procedimentos; pareceres; estudos e/ou decisoes de carater geral) \"e opcional a reproducao dos documentos previamente ao recolhimento, para que o orgao permaneca com copias para consulta. condicional \"\"enquanto vigora\"\" convencionado para 1 ano no corrente, a contar da revogacao do ato.\"','S',5,1,'G','N',1),(350,'080.2','IDENTIFICAÇÃO MILITAR',NULL,'080.2 080.2 identificacao militar','S',5,5,'G','S',1),(351,'080.21','IDENTIDADE MILITAR. CARTEIRA. CARTÃO',NULL,'080.21 080.21 identidade militar. carteira. cartao','S',NULL,5,'E','N',1),(352,'080.21.a','FICHA DE IDENTIDADE GRANDE, FICHA INDIVIDUAL DATILOSCÓPICA, CARTÃO ÍNDICE, FICHA DE DADOS CADASTRAIS','\"O prazo total de guarda dos documentos é de 130 anos, independente do suporte.\n\nCondicional \"\"Enquanto o militar permanecer na ativa\"\" convencionado para 1 ano no corrente.Serão transferidos ao arquivo intermediário após a transferência do militar para a reserva.\"','080.21.a 080.21.a ficha de identidade grande, ficha individual datiloscopica, cartao indice, ficha de dados cadastrais \"o prazo total de guarda dos documentos e de 130 anos, independente do suporte. condicional \"\"enquanto o militar permanecer na ativa\"\" convencionado para 1 ano no corrente.serao transferidos ao arquivo intermediario apos a transferencia do militar para a reserva.\"','S',129,1,'E','N',1),(353,'080.21.b','GUIA DE REMESSA DE MATERIAL DE IDENTIFICAÇÃO, MAPA MENSAL DO MATERIAL TÉCNICO',NULL,'080.21.b 080.21.b guia de remessa de material de identificacao, mapa mensal do material tecnico','S',5,5,'E','N',1),(354,'080.21.c','IDENTIDADE PROVISÓRIA','Condicional \"Enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','080.21.c 080.21.c identidade provisoria condicional \"enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','S',1,1,'E','N',1),(355,'080.22 ','CONCESSÃO DE PASSAPORTE: DIPLOMÁTICO E/OU OFICIAL','Condicional \"Enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','080.22 080.22 concessao de passaporte: diplomatico e/ou oficial condicional \"enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','S',1,1,'E','N',1),(356,'080.3','ASSENTAMENTOS INDIVIDUAIS.CADASTRO',NULL,'080.3 080.3 assentamentos individuais.cadastro','S',NULL,5,'E','N',1),(357,'080.3.a','FOLHAS DE ALTERAÇÕES, CADERNETA REGISTRO CADASTRO, CADERNETA SANITÁRIA, DECLARAÇÃO / CADASTRO DE DEPENDENTES, FICHA INDIVIDUAL, DECLARAÇÃO / ALTERAÇÃO DE BENEFICIÁRIOS, TERMO DE OPÇÃO OU DE RETIFICAÇÃO DA LICENÇA ESPECIAL, TERMO DE RENÚNCIA DE PENSÃO','\"A Comissão Permanente de Avaliação de Documentos, findo o prazo total de guarda, poderá determinar a preservação de alguns conjuntos documentais de relevância para a Força.\n\nCondicional \"\"Enquanto o militar permanecer na ativa\"\" convencionada para 1 ano no corrente, a contar da transferência do militar para a reserva.\"','080.3.a 080.3.a folhas de alteracoes, caderneta registro cadastro, caderneta sanitaria, declaracao / cadastro de dependentes, ficha individual, declaracao / alteracao de beneficiarios, termo de opcao ou de retificacao da licenca especial, termo de renuncia de pensao \"a comissao permanente de avaliacao de documentos, findo o prazo total de guarda, podera determinar a preservacao de alguns conjuntos documentais de relevancia para a forca. condicional \"\"enquanto o militar permanecer na ativa\"\" convencionada para 1 ano no corrente, a contar da transferencia do militar para a reserva.\"','S',130,1,'E','N',1),(358,'080.3.b','FICHA DE APRESENTAÇÃO, CONTAGEM DE TEMPO DE SERVIÇO, FICHA PADRÃO PASEP, FICHA DE CÓDIGO DE ESPECIALIDADE, CONCESSÃO E CESSAÇÃO DE PORTE DE ARMA','Condicional \"Enquanto o militar permanecer na ativa\" convencionada para 1 ano no corrente, a contar da transferência do militar para a reserva. ','080.3.b 080.3.b ficha de apresentacao, contagem de tempo de servico, ficha padrao pasep, ficha de codigo de especialidade, concessao e cessacao de porte de arma condicional \"enquanto o militar permanecer na ativa\" convencionada para 1 ano no corrente, a contar da transferencia do militar para a reserva.','S',5,1,'E','N',1),(359,'081 ','INGRESSO NAS FORÇAS ARMADAS',NULL,'081 081 ingresso nas forcas armadas','S',5,5,'G','S',1),(360,'081.1 ','RECRUTAMENTO.SELEÇÃO: INSCRIÇÃO PARA CONCURSO, CRONOGRAMA DE REALIZAÇÃO DE PROVAS, CONTROLE DE APLICAÇÃO DAS PROVAS',NULL,'081.1 081.1 recrutamento.selecao: inscricao para concurso, cronograma de realizacao de provas, controle de aplicacao das provas','S',NULL,5,'E','N',1),(361,'081.1.a','EDITAL DE CONCURSOS E ORIENTAÇÕES ESPECÍFICAS. MATERIAL DE DIVULGAÇÃO*, RELATÓRIOS E ATAS DOS PROCESSOS SELETIVOS, PROVAS ESCRITAS, PRÁTICAS E ORAIS*, GABARITOS*, INSTRUÇÕES COMPLEMENTARES DE CONVOCAÇÃO E DE SISTEMA DE SERVIÇO MILITAR','* Exemplares únicos.','081.1.a 081.1.a edital de concursos e orientacoes especificas. material de divulgacao*, relatorios e atas dos processos seletivos, provas escritas, praticas e orais*, gabaritos*, instrucoes complementares de convocacao e de sistema de servico militar * exemplares unicos.','S',5,5,'G','N',1),(362,'081.1.b','SELEÇÃO E DESIGNAÇÃO PARA INCORPORAÇÃO E MATRÍCULA, NOMEAÇÃO E TERMO DE COMPROMISSO DE BANCA DE PROVAS, LISTA DE CANDIDATOS, QUESTIONÁRIO BIOGRÁFICO SIMPLIFICADO, CARTÕES RESPOSTAS DE TESTES OU PROVAS DO CANDIDATO, TESTES, PROVAS DE TÍTULO, RESULTADO',NULL,'081.1.b 081.1.b selecao e designacao para incorporacao e matricula, nomeacao e termo de compromisso de banca de provas, lista de candidatos, questionario biografico simplificado, cartoes respostas de testes ou provas do candidato, testes, provas de titulo, resultado','S',25,5,'E','N',1),(363,'081.2 ','INCORPORAÇÃO',NULL,'081.2 081.2 incorporacao','S',NULL,5,'E','N',1),(364,'081.2.a','ATOS DE CONVOCAÇÃO À INCORPORAÇÃO, ALISTAMENTOS, ESTÁGIOS, DISPENSA OU ISENÇÃO DO SERVIÇO MILITAR, CONVOCAÇÃO À INCORPORAÇÃO PARA PRESTAR SERVIÇO MILITAR OBRIGATÓRIO (SERVIÇO MILITAR INICIAL OU OUTRAS FORMAS POSTERIORES)',NULL,'081.2.a 081.2.a atos de convocacao a incorporacao, alistamentos, estagios, dispensa ou isencao do servico militar, convocacao a incorporacao para prestar servico militar obrigatorio (servico militar inicial ou outras formas posteriores)','S',47,5,'E','N',1),(365,'081.3 ','MATRÍCULA',NULL,'081.3 081.3 matricula','S',NULL,5,'E','N',1),(366,'081.3.a','ADMISSÃO EM ESCOLAS, CENTROS E CURSOS DE FORMAÇÃO',NULL,'081.3.a 081.3.a admissao em escolas, centros e cursos de formacao','S',47,5,'E','N',1),(367,'081.4 ','NOMEAÇÃO',NULL,'081.4 081.4 nomeacao','S',NULL,5,'E','N',1),(368,'081.4.a','INGRESSO NOS CORPOS E/OU QUADROS DE CARREIRA DE OFICIAIS, NOS POSTOS INICIAIS OU NOS CORPOS / QUADROS DE OFICIAIS DA RESERVA',NULL,'081.4.a 081.4.a ingresso nos corpos e/ou quadros de carreira de oficiais, nos postos iniciais ou nos corpos / quadros de oficiais da reserva','S',47,5,'E','N',1),(369,'081.5','EXERCÍCIOS DE MOBILIZAÇÃO /APRESENTAÇÃO',NULL,'081.5 081.5 exercicios de mobilizacao /apresentacao','S',NULL,5,'E','N',1),(370,'081.5.a','CAMPANHAS DE CONVOCAÇÃO, MAPAS DE ENCARGOS DE MOBILIZAÇÃO, RELATÓRIOS SOBRE O EXERCÍCIO DE APRESENTAÇÃO DA RESERVA, CONTROLE DE EFETIVO DE MILITARES TEMPORÁRIOS (MÉDICOS, FARMACÊUTICOS, DENTISTAS, VETERINÁRIOS), TIROS DE GUERRA',NULL,'081.5.a 081.5.a campanhas de convocacao, mapas de encargos de mobilizacao, relatorios sobre o exercicio de apresentacao da reserva, controle de efetivo de militares temporarios (medicos, farmaceuticos, dentistas, veterinarios), tiros de guerra','S',47,5,'E','N',1),(371,'081.9 ','OUTROS ASSUNTOS REFERENTES A INGRESSO NAS FORÇAS ARMADAS',NULL,'081.9 081.9 outros assuntos referentes a ingresso nas forcas armadas','S',5,5,'G','S',1),(372,'082','PLANO DE CARREIRA',NULL,'082 082 plano de carreira','S',5,5,'G','S',1),(373,'082.1 ','PROMOÇÃO',NULL,'082.1 082.1 promocao','S',NULL,5,'E','N',1),(374,'082.1.a','CONTAGEM DE ANTIGUIDADE, PROPOSTAS DE POSICIONAMENTO NO QUADRO DE ACESSO, FAIXA DE COGITAÇÃO, COGITAÇÃO / INCLUSÃO NO QUADRO DE ACESSO, LISTA DE ESCOLHA, ATO DE PROMOÇÃO, RESSARCIMENTO E RECONSIDERAÇÃO DE ATO, RECONTAGEM DE PONTOS, CORREÇÃO DE POSIÇÃ','Condicional \"Enquanto o militar permanecer na ativa\" convencionada para 1 ano no corrente, a contar da transferência do militar para a reserva.','082.1.a 082.1.a contagem de antiguidade, propostas de posicionamento no quadro de acesso, faixa de cogitacao, cogitacao / inclusao no quadro de acesso, lista de escolha, ato de promocao, ressarcimento e reconsideracao de ato, recontagem de pontos, correcao de posica condicional \"enquanto o militar permanecer na ativa\" convencionada para 1 ano no corrente, a contar da transferencia do militar para a reserva.','S',130,1,'E','N',1),(375,'082.2 ','CURSOS',NULL,'082.2 082.2 cursos','S',5,5,'G','S',1),(376,'082.21 ','FORMAÇÃO. ADAPTAÇÃO',NULL,'082.21 082.21 formacao. adaptacao','S',NULL,5,'E','N',1),(377,'082.21.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CONCURSOS',NULL,'082.21.a 082.21.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos concursos','S',47,5,'E','N',1),(378,'082.22 ','APERFEIÇOAMENTO.ESPECIALIZAÇÃO',NULL,'082.22 082.22 aperfeicoamento.especializacao','S',NULL,5,'E','N',1),(379,'082.22.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.22.a 082.22.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(380,'082.23 ','ESTADO-MAIOR',NULL,'082.23 082.23 estado-maior','S',NULL,5,'E','N',1),(381,'082.23.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.23.a 082.23.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(382,'082.24 ','ALTOS ESTUDOS MILITARES',NULL,'082.24 082.24 altos estudos militares','S',NULL,5,'E','N',1),(383,'082.24.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.24.a 082.24.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(384,'082.3 ','AVALIAÇÃO',NULL,'082.3 082.3 avaliacao','S',NULL,5,'E','N',1),(385,'082.3.a','FICHAS / FOLHAS DE AVALIAÇÃO',NULL,'082.3.a 082.3.a fichas / folhas de avaliacao','S',47,5,'E','N',1),(386,'082.4','REQUISITOS ESPECÍFICOS DE CARREIRA',NULL,'082.4 082.4 requisitos especificos de carreira','S',NULL,5,'E','N',1),(387,'082.4.a','MANOBRA, TEMPO DE TROPA, TEMPO DE EMBARQUE, VIVÊNCIA NACIONAL, DIAS DE MAR, ATIVIDADE BÉLICA, HORAS DE VOO',NULL,'082.4.a 082.4.a manobra, tempo de tropa, tempo de embarque, vivencia nacional, dias de mar, atividade belica, horas de voo','S',47,5,'E','N',1),(388,'082.5 ','CURSOS COMPLEMENTARES',NULL,'082.5 082.5 cursos complementares','S',5,5,'G','S',1),(389,'082.51 ','ADESTRAMENTO',NULL,'082.51 082.51 adestramento','S',NULL,5,'E','N',1),(390,'082.51.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS DIVERSOS TIPOS DE ADESTRAMENTO',NULL,'082.51.a 082.51.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos diversos tipos de adestramento','S',47,5,'E','N',1),(391,'082.52 ','PÓS-GRADUAÇÃO LATO SENSU',NULL,'082.52 082.52 pos-graduacao lato sensu','S',NULL,5,'E','N',1),(392,'082.52.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.52.a 082.52.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(393,'082.53 ','QUALIFICAÇÃO TÉCNICA ESPECIAL',NULL,'082.53 082.53 qualificacao tecnica especial','S',NULL,5,'E','N',1),(394,'082.53.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.53.a 082.53.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(395,'082.54 ','PÓS-GRADUAÇÃO STRICTO SENSU',NULL,'082.54 082.54 pos-graduacao stricto sensu','S',NULL,5,'E','N',1),(396,'082.54 .a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.54 .a 082.54 .a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(397,'082.55','PÓS-DOUTORADO',NULL,'082.55 082.55 pos-doutorado','S',NULL,5,'E','N',1),(398,'082.55.a','DESIGNAÇÃO, MATRÍCULA, CONCLUSÃO, CANCELAMENTO, TRANCAMENTO E/OU DESLIGAMENTO DOS CURSOS',NULL,'082.55.a 082.55.a designacao, matricula, conclusao, cancelamento, trancamento e/ou desligamento dos cursos','S',47,5,'E','N',1),(399,'082.6','PRORROGAÇÃO DE TEMPO DE SERVIÇO. REENGAJAMENTO',NULL,'082.6 082.6 prorrogacao de tempo de servico. reengajamento','S',NULL,5,'E','N',1),(400,'082.6.a','REQUERIMENTOS, AVALIAÇÕES, PARECERES E DESPACHOS',NULL,'082.6.a 082.6.a requerimentos, avaliacoes, pareceres e despachos','S',47,5,'E','N',1),(401,'082.7 ','TRANSPOSIÇÃO DE QUADRO',NULL,'082.7 082.7 transposicao de quadro','S',NULL,5,'E','N',1),(402,'082.7.a','REQUERIMENTOS, AVALIAÇÕES, PARECERES E DESPACHOS',NULL,'082.7.a 082.7.a requerimentos, avaliacoes, pareceres e despachos','S',47,5,'E','N',1),(403,'082.9 ','OUTROS ASSUNTOS REFERENTES A PLANO DE CARREIRA',NULL,'082.9 082.9 outros assuntos referentes a plano de carreira','S',5,5,'G','S',1),(404,'083','MOVIMENTAÇÃO. DESTAQUE. ADIÇÃO. EXCLUSÃO DO SERVIÇO ATIVO: MAPAS DE LOTAÇÃO DE OFICIAIS E PRAÇAS',NULL,'083 083 movimentacao. destaque. adicao. exclusao do servico ativo: mapas de lotacao de oficiais e pracas','S',NULL,5,'E','N',1),(405,'083.a','PLANOS DE MOVIMENTAÇÃO','Condicional \"Enquanto vigora\" convencionado para 1 ano no corrente, a contar a partir da perda da vigência do documento.','083.a 083.a planos de movimentacao condicional \"enquanto vigora\" convencionado para 1 ano no corrente, a contar a partir da perda da vigencia do documento.','S',5,1,'G','N',1),(406,'083.1 ','MOVIMENTAÇÃO',NULL,'083.1 083.1 movimentacao','S',5,5,'G','S',1),(407,'083.11 ','MOTIVO DE SAÚDE',NULL,'083.11 083.11 motivo de saude','S',NULL,5,'E','N',1),(408,'083.11.a','SOLICITAÇÃO DA MOVIMENTAÇÃO, CÓPIA DA ATA DE INSPEÇÃO DE SAÚDE, TERMO DE INSPEÇÃO DE SAÚDE',NULL,'083.11.a 083.11.a solicitacao da movimentacao, copia da ata de inspecao de saude, termo de inspecao de saude','S',47,5,'E','N',1),(409,'083.12 ','INTERESSE DO MILITAR',NULL,'083.12 083.12 interesse do militar','S',NULL,5,'E','N',1),(410,'083.12 .a','SOLICITAÇÃO DA MOVIMENTAÇÃO, ORDEM DE MOVIMENTAÇÃO, PORTARIA DE MOVIMENTAÇÃO',NULL,'083.12 .a 083.12 .a solicitacao da movimentacao, ordem de movimentacao, portaria de movimentacao','S',47,5,'E','N',1),(411,'083.13 ','NECESSIDADE DO SERVIÇO',NULL,'083.13 083.13 necessidade do servico','S',NULL,5,'E','N',1),(412,'083.13.a','PROPOSTA DE PLANO DE MOVIMENTAÇÃO, SOLICITAÇÕES DE ÓRGÃOS DE DIREÇÃO-GERAL OU SETORIAL, INCOMPATIBILIDADE DE POSTO, MATRÍCULA, TÉRMINO DE CURSO, INTERCÂMBIO E A BEM DA DISCIPLINA',NULL,'083.13.a 083.13.a proposta de plano de movimentacao, solicitacoes de orgaos de direcao-geral ou setorial, incompatibilidade de posto, matricula, termino de curso, intercambio e a bem da disciplina','S',47,5,'E','N',1),(413,'083.14 ','MOTIVO DE JUSTIÇA',NULL,'083.14 083.14 motivo de justica','S',NULL,5,'E','N',1),(414,'083.14.a','ORDEM JUDICIAL','Condicional \"Até o trânsito em julgado\" convencionada para 1 ano no corrente, a contar do trânsito em julgado. Como o prazo de guarda total dos documentos é de 52 anos, o prazo no intermediário foi ajustado para 51 anos.','083.14.a 083.14.a ordem judicial condicional \"ate o transito em julgado\" convencionada para 1 ano no corrente, a contar do transito em julgado. como o prazo de guarda total dos documentos e de 52 anos, o prazo no intermediario foi ajustado para 51 anos.','S',51,1,'E','N',1),(415,'083.2 ','DESTAQUE. ADIÇÃO',NULL,'083.2 083.2 destaque. adicao','S',NULL,5,'E','N',1),(416,'083.2.a','PARECERES, DESPACHOS',NULL,'083.2.a 083.2.a pareceres, despachos','S',47,5,'E','N',1),(417,'083.3 ','EXCLUSÃO DO SERVIÇO ATIVO',NULL,'083.3 083.3 exclusao do servico ativo','S',NULL,5,'E','N',1),(418,'083.3.a','DEMISSÃO, PERDA DE POSTO E DA PATENTE, LICENCIAMENTO, ANULAÇÃO DE INCORPORAÇÃO, DESINCORPORAÇÃO, A BEM DA DISCIPLINA, FALECIMENTO',NULL,'083.3.a 083.3.a demissao, perda de posto e da patente, licenciamento, anulacao de incorporacao, desincorporacao, a bem da disciplina, falecimento','S',47,5,'E','N',1),(419,'083.3.b','DESERÇÃO. EXTRAVIO','Condicional \"Até a apuração do fato\" convencionada para 1 ano no corrente, a contar da conclusão da apruração.','083.3.b 083.3.b desercao. extravio condicional \"ate a apuracao do fato\" convencionada para 1 ano no corrente, a contar da conclusao da apruracao.','S',100,1,'E','N',1),(420,'083.9 ','OUTROS ASSUNTOS REFERENTES À MOVIMENTAÇÃO.DESTAQUE. ADIÇÃO. EXCLUSÃO DO SERVIÇO ATIVO',NULL,'083.9 083.9 outros assuntos referentes a movimentacao.destaque. adicao. exclusao do servico ativo','S',NULL,5,'E','N',1),(421,'083.9.a','POSSE E NOMEAÇÃO PARA CARGOS PÚBLICOS',NULL,'083.9.a 083.9.a posse e nomeacao para cargos publicos','S',47,5,'E','N',1),(422,'084 ','VIOLAÇÃO DAS OBRIGAÇÕES E DOS DEVERES',NULL,'084 084 violacao das obrigacoes e dos deveres','S',5,5,'G','S',1),(423,'084.1 ','TRANSGRESSÕES E/OU CONTRAVENÇÕES DISCIPLINARES',NULL,'084.1 084.1 transgressoes e/ou contravencoes disciplinares','S',NULL,5,'E','N',1),(424,'084.1.a','SINDICÂNCIA, ACAREAÇÃO E APURAÇÃO DAS TRANSGRESSÕES E/OU CONTRAVENÇÕES, APLICAÇÃO DAS PUNIÇÕES DISCIPLINARES',NULL,'084.1.a 084.1.a sindicancia, acareacao e apuracao das transgressoes e/ou contravencoes, aplicacao das punicoes disciplinares','S',47,5,'E','N',1),(425,'084.2 ','CRIMES MILITARES',NULL,'084.2 084.2 crimes militares','S',NULL,5,'E','N',1),(426,'084.2.a','PORTARIA DE NOMEAÇÃO DO ENCARREGADO E ESCRIVÃO DO IPM, SOLUÇÃO DO IPM, OFÍCIO DE REMESSA DO IPM À JUSTIÇA MILITAR','Os autos dos Inquéritos Policiais Militares (IPM) serão encaminhados á Justiça Militar.','084.2.a 084.2.a portaria de nomeacao do encarregado e escrivao do ipm, solucao do ipm, oficio de remessa do ipm a justica militar os autos dos inqueritos policiais militares (ipm) serao encaminhados a justica militar.','S',5,5,'G','N',1),(427,'084.3 ','CONSELHOS',NULL,'084.3 084.3 conselhos','S',5,5,'G','S',1),(428,'084.31 ','DE DISCIPLINA',NULL,'084.31 084.31 de disciplina','S',NULL,5,'E','N',1),(429,'084.31.a','NOMEAÇÃO DOS MEMBROS DO CONSELHO, ATOS DE AFASTAMENTO DO ACUSADO, AUTOS DO CONSELHO, CONCLUSÕES E DECISÕES','\"Caso seja considerado crime, os autos do processo do Conselho serão encaminhados à Justiça Militar.\n\nCondicional \"\"Até o despacho final do Comandante da Força\"\" convencionada para 1 ano no arquivo corrente, a contar do despacho final do Comandante da Força.\"','084.31.a 084.31.a nomeacao dos membros do conselho, atos de afastamento do acusado, autos do conselho, conclusoes e decisoes \"caso seja considerado crime, os autos do processo do conselho serao encaminhados a justica militar. condicional \"\"ate o despacho final do comandante da forca\"\" convencionada para 1 ano no arquivo corrente, a contar do despacho final do comandante da forca.\"','S',130,1,'E','N',1),(430,'084.32 ','DE JUSTIFICAÇÃO',NULL,'084.32 084.32 de justificacao','S',NULL,5,'E','N',1),(431,'084.32.a','NOMEAÇÃO DOS MEMBROS DO CONSELHO, ATOS DE AFASTAMENTO DO ACUSADO, AUTOS DO CONSELHO, CONCLUSÕES E DECISÕES','\"Os autos do processo do Conselho serão encaminhados à Justiça Militar.\n\nCondicional \"\"Até o trânsito em julgado\"\" convencionada para 1 ano no arquivo corrente, a contar do trânsito em julgado.\"','084.32.a 084.32.a nomeacao dos membros do conselho, atos de afastamento do acusado, autos do conselho, conclusoes e decisoes \"os autos do processo do conselho serao encaminhados a justica militar. condicional \"\"ate o transito em julgado\"\" convencionada para 1 ano no arquivo corrente, a contar do transito em julgado.\"','S',130,1,'E','N',1),(432,'085 ','DIREITOS E PRERROGATIVAS',NULL,'085 085 direitos e prerrogativas','S',5,5,'G','S',1),(433,'085.1','RECOMPENSAS. DISTINÇÕES. HONRARIAS',NULL,'085.1 085.1 recompensas. distincoes. honrarias','S',NULL,5,'E','N',1),(434,'085.1.a','PRÊMIOS DE HONRA AO MÉRITO, ELOGIOS, LOUVORES, REFERÊNCIAS ELOGIOSAS, DISTINTIVOS, DISPENSAS DE SERVIÇO',NULL,'085.1.a 085.1.a premios de honra ao merito, elogios, louvores, referencias elogiosas, distintivos, dispensas de servico','S',47,5,'E','N',1),(435,'085.1.b','RELAÇÕES DE AGRACIADOS COM AS CONDECORAÇÕES, RELAÇÕES DAQUELES QUE TIVERAM AS CONDECORAÇÕES CASSADAS',NULL,'085.1.b 085.1.b relacoes de agraciados com as condecoracoes, relacoes daqueles que tiveram as condecoracoes cassadas','S',5,5,'G','N',1),(436,'085.2 ','LICENÇAS',NULL,'085.2 085.2 licencas','S',NULL,5,'E','N',1),(437,'085.2.a','ADOTANTE, PARA ACOMPANHAR CÔNJUGE / COMPANHEIRO, CANDIDATO A CARGO ELETIVO, ESPECIAL, GESTANTE, PATERNIDADE, PARA TRATAR DE INTERESSE PARTICULAR, PARA TRATAMENTO DE SAÚDE DE PESSOA DA FAMÍLIA, PARA TRATAMENTO DE SAÚDE PRÓPRIA',NULL,'085.2.a 085.2.a adotante, para acompanhar conjuge / companheiro, candidato a cargo eletivo, especial, gestante, paternidade, para tratar de interesse particular, para tratamento de saude de pessoa da familia, para tratamento de saude propria','S',47,5,'E','N',1),(438,'085.3 ','AFASTAMENTOS',NULL,'085.3 085.3 afastamentos','S',NULL,5,'E','N',1),(439,'085.3.a','INSTALAÇÃO (NO BRASIL E NO EXTERIOR), LUTO, NÚPCIAS, TRÂNSITO (NO BRASIL E NO EXTERIOR)',NULL,'085.3.a 085.3.a instalacao (no brasil e no exterior), luto, nupcias, transito (no brasil e no exterior)','S',47,5,'E','N',1),(440,'085.4 ','DISPENSAS DE SERVIÇO',NULL,'085.4 085.4 dispensas de servico','S',NULL,5,'E','N',1),(441,'085.4.a','PARA DESCONTO EM FÉRIAS, POR PRESCRIÇÃO MÉDICA',NULL,'085.4.a 085.4.a para desconto em ferias, por prescricao medica','S',47,5,'E','N',1),(442,'085.5 ','FÉRIAS',NULL,'085.5 085.5 ferias','S',NULL,5,'E','N',1),(443,'085.5.a','PLANEJAMENTO, SOLICITAÇÃO, CONCESSÃO, CANCELAMENTO E PUBLICAÇÃO',NULL,'085.5.a 085.5.a planejamento, solicitacao, concessao, cancelamento e publicacao','S',47,5,'E','N',1),(444,'085.6','REMUNERAÇÃO. PROVENTOS',NULL,'085.6 085.6 remuneracao. proventos','S',5,5,'G','S',1),(445,'085.61','REMUNERAÇÃO NA ATIVA',NULL,'085.61 085.61 remuneracao na ativa','S',NULL,5,'E','N',1),(446,'085.61.a','FICHAS FINANCEIRAS E FOLHAS DE PAGAMENTO',NULL,'085.61.a 085.61.a fichas financeiras e folhas de pagamento','S',125,5,'E','N',1),(447,'085.611 ','ADICIONAIS',NULL,'085.611 085.611 adicionais','S',NULL,5,'E','N',1),(448,'085.611.a','MILITAR, DE HABILITAÇÃO, DE TEMPO DE SERVIÇO, DE COMPENSAÇÃO ORGÂNICA, DE PERMANÊNCIA',NULL,'085.611.a 085.611.a militar, de habilitacao, de tempo de servico, de compensacao organica, de permanencia','S',47,5,'E','N',1),(449,'085.612 ','GRATIFICAÇÕES',NULL,'085.612 085.612 gratificacoes','S',NULL,5,'E','N',1),(450,'085.612.a','DE LOCALIDADE ESPECIAL, DE REPRESENTAÇÃO',NULL,'085.612.a 085.612.a de localidade especial, de representacao','S',47,5,'E','N',1),(451,'085.619 ','OUTROS DIREITOS REMUNERATÓRIOS NA ATIVA',NULL,'085.619 085.619 outros direitos remuneratorios na ativa','S',NULL,5,'E','N',1),(452,'085.619.a','ADICIONAL DE FÉRIAS, ADICIONAL NATALINO, AJUDA DE CUSTO, ASSISTÊNCIA PRÉ-ESCOLAR, AUXÍLIOS: FARDAMENTO, ALIMENTAÇÃO, NATALIDADE, INVALIDEZ, FUNERAL E TRANSPORTE, COMPENSAÇÃO PECUNIÁRIA, DIÁRIAS, SALÁRIO-FAMÍLIA, TRANSPORTE DE PESSOAL E BAGAGENS POR M',NULL,'085.619.a 085.619.a adicional de ferias, adicional natalino, ajuda de custo, assistencia pre-escolar, auxilios: fardamento, alimentacao, natalidade, invalidez, funeral e transporte, compensacao pecuniaria, diarias, salario-familia, transporte de pessoal e bagagens por m','S',47,5,'E','N',1),(453,'085.62 ','PROVENTOS NA INATIVIDADE',NULL,'085.62 085.62 proventos na inatividade','S',NULL,5,'E','N',1),(454,'085.62.a','FICHAS FINANCEIRAS E FOLHAS DE PAGAMENTO',NULL,'085.62.a 085.62.a fichas financeiras e folhas de pagamento','S',125,5,'E','N',1),(455,'085.621 ','ADICIONAIS',NULL,'085.621 085.621 adicionais','S',NULL,5,'E','N',1),(456,'085.621.a','ADICIONAIS: MILITAR, DE HABILITAÇÃO, DE TEMPO DE SERVIÇO, DE COMPENSAÇÃO ORGÂNICA, DE PERMANÊNCIA',NULL,'085.621.a 085.621.a adicionais: militar, de habilitacao, de tempo de servico, de compensacao organica, de permanencia','S',47,5,'E','N',1),(457,'085.629 ','OUTROS DIREITOS PECUNIÁRIOS NA INATIVIDADE',NULL,'085.629 085.629 outros direitos pecuniarios na inatividade','S',NULL,5,'E','N',1),(458,'085.629.a','ADICIONAL NATALINO, ASSISTÊNCIA PRÉ-ESCOLAR, AUXÍLIOS: INVALIDEZ, NATALIDADE E FUNERAL, SALÁRIO-FAMÍLIA, ADICIONAL POR DESIGNAÇÃO PARA O SERVIÇO ATIVO, PRO-LABORE PARA TAREFA POR TEMPO CERTO, AJUDA DE TRANSPORTE POR BAIXA / ALTA EM ORGANIZAÇÃO, HOSPI',NULL,'085.629.a 085.629.a adicional natalino, assistencia pre-escolar, auxilios: invalidez, natalidade e funeral, salario-familia, adicional por designacao para o servico ativo, pro-labore para tarefa por tempo certo, ajuda de transporte por baixa / alta em organizacao, hospi','S',47,5,'E','N',1),(459,'085.63 ','DESCONTOS',NULL,'085.63 085.63 descontos','S',5,5,'G','S',1),(460,'085.631 ','OBRIGATÓRIOS',NULL,'085.631 085.631 obrigatorios','S',NULL,5,'E','N',1),(461,'085.631.a','OBRIGATÓRIOS: CONTRIBUIÇÃO PARA A ASSISTÊNCIA MÉDICO-HOSPITALAR E SOCIAL (PRESTADA POR ENTIDADE MILITAR), IMPOSTOS INCIDENTES SOBRE A REMUNERAÇÃO OU PROVENTOS, INDENIZAÇÃO PELA ASSISTÊNCIA MÉDICO-HOSPITALAR (PRESTADA POR ENTIDADE MILITAR), INDENIZAÇÃ',NULL,'085.631.a 085.631.a obrigatorios: contribuicao para a assistencia medico-hospitalar e social (prestada por entidade militar), impostos incidentes sobre a remuneracao ou proventos, indenizacao pela assistencia medico-hospitalar (prestada por entidade militar), indenizaca','S',47,5,'E','N',1),(462,'085.632 ','AUTORIZADOS',NULL,'085.632 085.632 autorizados','S',NULL,5,'E','N',1),(463,'085.632.a','DESCONTOS EM FAVOR DE ENTIDADE CONSIGNATÁRIAS, DE TERCEIRO OU BENEFÍCIO FAMÍLIA',NULL,'085.632.a 085.632.a descontos em favor de entidade consignatarias, de terceiro ou beneficio familia','S',47,5,'E','N',1),(464,'086 ','INATIVOS E PENSIONISTAS',NULL,'086 086 inativos e pensionistas','S',5,5,'G','S',1),(465,'086.1 ','INATIVOS',NULL,'086.1 086.1 inativos','S',5,5,'G','S',1),(466,'086.11 ','RESERVA',NULL,'086.11 086.11 reserva','S',5,5,'G','S',1),(467,'086.111 ','REMUNERADA',NULL,'086.111 086.111 remunerada','S',NULL,5,'E','N',1),(468,'086.111.a','PROCESSO DE TRANSFERÊNCIA PARA A RESERVA REMUNERADA','\"* O processo de reserva remunerada transforma-se em processo de reforma ou, em caso de falecimento, é anexado ao processo de pensão militar.\n\nCondicional \"\"Até a reforma ou falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediário para o processo de pensão militar.\"','086.111.a 086.111.a processo de transferencia para a reserva remunerada \"* o processo de reserva remunerada transforma-se em processo de reforma ou, em caso de falecimento, e anexado ao processo de pensao militar. condicional \"\"ate a reforma ou falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediario para o processo de pensao militar.\"','S',125,5,'E','N',1),(469,'086.112 ','NÃO REMUNERADA',NULL,'086.112 086.112 nao remunerada','S',NULL,5,'E','N',1),(470,'086.112.a','PROCESSO DE TRANSFERÊNCIA PARA A RESERVA NÃO REMUNERADA',NULL,'086.112.a 086.112.a processo de transferencia para a reserva nao remunerada','S',47,5,'E','N',1),(471,'086.12 ','REFORMA',NULL,'086.12 086.12 reforma','S',5,5,'G','S',1),(472,'086.121 ','POR INVALIDEZ',NULL,'086.121 086.121 por invalidez','S',NULL,5,'E','N',1),(473,'086.121.a','PROCESSO DE REFORMA POR INVALIDEZ','\"* O processo é anexado ao processo de pensão militar.\n\nCondicional \"\"Até o falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediário para o processo de pensão militar.\"','086.121.a 086.121.a processo de reforma por invalidez \"* o processo e anexado ao processo de pensao militar. condicional \"\"ate o falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediario para o processo de pensao militar.\"','S',125,5,'E','N',1),(474,'086.122 ','POR IDADES-LIMITE',NULL,'086.122 086.122 por idades-limite','S',NULL,5,'E','N',1),(475,'086.122.a','PROCESSO DE REFORMA POR IDADES-LIMITE','\"* O processo é anexado ao processo de pensão militar.\n\nCondicional \"\"Até o falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediário para o processo de pensão militar.\"','086.122.a 086.122.a processo de reforma por idades-limite \"* o processo e anexado ao processo de pensao militar. condicional \"\"ate o falecimento do militar\"\" convencionada para 125 anos, acompanhando o maior prazo determinado no intermediario para o processo de pensao militar.\"','S',125,5,'E','N',1),(476,'086.13 ','DESIGNAÇÃO PARA O SERVIÇO ATIVO',NULL,'086.13 086.13 designacao para o servico ativo','S',NULL,5,'E','N',1),(477,'086.13.a','PROCESSO DE DESIGNAÇÃO PARA O SERVIÇO ATIVO',NULL,'086.13.a 086.13.a processo de designacao para o servico ativo','S',47,5,'E','N',1),(478,'086.14 ','TAREFA POR TEMPO CERTO',NULL,'086.14 086.14 tarefa por tempo certo','S',NULL,5,'E','N',1),(479,'086.14.a','PROCESSO DE DESIGNAÇÃO PARA TAREFA POR TEMPO CERTO',NULL,'086.14.a 086.14.a processo de designacao para tarefa por tempo certo','S',47,5,'E','N',1),(480,'086.2 ','PENSIONISTAS',NULL,'086.2 086.2 pensionistas','S',5,5,'G','S',1),(481,'086.21 ','PENSÕES',NULL,'086.21 086.21 pensoes','S',5,5,'G','S',1),(482,'086.211 ','TEMPORÁRIA',NULL,'086.211 086.211 temporaria','S',NULL,5,'E','N',1),(483,'086.211.a','PROCESSOS DE SOLICITAÇÃO /CONCESSÃO DE PENSÃO MILITAR TEMPORÁRIA',NULL,'086.211.a 086.211.a processos de solicitacao /concessao de pensao militar temporaria','S',95,5,'E','N',1),(484,'086.212 ','VITALÍCIA',NULL,'086.212 086.212 vitalicia','S',NULL,5,'E','N',1),(485,'086.212.a','PROCESSOS DE SOLICITAÇÃO /CONCESSÃO DE PENSÃO MILITAR VITALÍCIA',NULL,'086.212.a 086.212.a processos de solicitacao /concessao de pensao militar vitalicia','S',125,5,'E','N',1),(486,'086.213 ','ESPECIAL',NULL,'086.213 086.213 especial','S',NULL,5,'E','N',1),(487,'086.213.a','PROCESSOS DE SOLICITAÇÃO /CONCESSÃO DE PENSÃO MILITAR ESPECIAL',NULL,'086.213.a 086.213.a processos de solicitacao /concessao de pensao militar especial','S',125,5,'E','N',1),(488,'087 ','ASSISTÊNCIA',NULL,'087 087 assistencia','S',5,5,'G','S',1),(489,'087.1 ','MÉDICA',NULL,'087.1 087.1 medica','S',5,5,'G','S',1),(490,'087.11 ','HOSPITALAR',NULL,'087.11 087.11 hospitalar','S',NULL,5,'E','N',1),(491,'087.11.a','ATENDIMENTO AMBULATORIAL OU PRONTO-ATENDIMENTO',NULL,'087.11.a 087.11.a atendimento ambulatorial ou pronto-atendimento','S',20,5,'E','N',1),(492,'087.11.b','PRONTUÁRIOS MÉDICOS, FICHAS ODONTOLÓGICAS',NULL,'087.11.b 087.11.b prontuarios medicos, fichas odontologicas','S',95,5,'E','N',1),(493,'087.12 ','PERICIAL',NULL,'087.12 087.12 pericial','S',NULL,5,'E','N',1),(494,'087.12.a','CONTROLE E VERIFICAÇÃO DO ESTADO DE HIGIDEZ (EM ESTADO SAUDÁVEL) DO PESSOAL EM SERVIÇO ATIVO, INATIVO E A SER SELECIONADO PARA INGRESSO NAS FORÇAS ARMADAS; ATESTADO SANITÁRIO DE ORIGEM; INQUÉRITO SANITÁRIO DE ORIGEM; RESULTADO DE EXAMES; AUTO DE CORP',NULL,'087.12.a 087.12.a controle e verificacao do estado de higidez (em estado saudavel) do pessoal em servico ativo, inativo e a ser selecionado para ingresso nas forcas armadas; atestado sanitario de origem; inquerito sanitario de origem; resultado de exames; auto de corp','S',125,5,'E','N',1),(495,'087.2 ','SOCIAL',NULL,'087.2 087.2 social','S',NULL,5,'E','N',1),(496,'087.2.a','PROGRAMAS DE ASSISTÊNCIA SOCIAL COM VISTAS À CONCESSÃO DE LICENÇAS E BENEFÍCIOS; ATENDIMENTOS EDUCACIONAIS E ASSISTENCIAIS PRESTADOS POR EMPRESAS CONVENIADAS',NULL,'087.2.a 087.2.a programas de assistencia social com vistas a concessao de licencas e beneficios; atendimentos educacionais e assistenciais prestados por empresas conveniadas','S',95,5,'E','N',1),(497,'087.3 ','JURÍDICA',NULL,'087.3 087.3 juridica','S',NULL,5,'E','N',1),(498,'087.3.a','ORIENTAÇÃO DE CARÁTER PARTICULAR; ATENDIMENTOS JURÍDICOS PRESTADOS POR EMPRESAS CONVENIADAS',NULL,'087.3.a 087.3.a orientacao de carater particular; atendimentos juridicos prestados por empresas conveniadas','S',20,5,'E','N',1),(499,'087.4 ','PSICOLÓGICA',NULL,'087.4 087.4 psicologica','S',NULL,5,'E','N',1),(500,'087.4.a','TRIAGEM PARA ENCAMINHAMENTO AO SERVIÇO DE SAÚDE ESPECÍFICO; ORIENTAÇÃO E ACONSELHAMENTO PSICOLÓGICO; ATENDIMENTOS PSICOLÓGICOS PRESTADOS POR EMPRESAS CONVENIADAS',NULL,'087.4.a 087.4.a triagem para encaminhamento ao servico de saude especifico; orientacao e aconselhamento psicologico; atendimentos psicologicos prestados por empresas conveniadas','S',125,5,'E','N',1),(501,'087.5 ','RELIGIOSA',NULL,'087.5 087.5 religiosa','S',NULL,5,'E','N',1),(502,'087.5.a','CENSO RELIGIOSO',NULL,'087.5.a 087.5.a censo religioso','S',45,5,'E','N',1),(503,'087.5.b','PROCESSOS DE HABILITAÇÃO E REGISTROS DE CASAMENTO; BATIZADO E CRISMA; LIVRO TOMBO',NULL,'087.5.b 087.5.b processos de habilitacao e registros de casamento; batizado e crisma; livro tombo','S',15,15,'G','N',1),(504,'088 ','(VAGA)',NULL,'088 088 (vaga)','S',5,5,'G','S',1),(505,'089 ','OUTROS ASSUNTOS REFERENTES A PESSOAL MILITAR',NULL,'089 089 outros assuntos referentes a pessoal militar','S',5,5,'G','S',1),(506,'089.1 ','SERVIÇOS DE ESCALA',NULL,'089.1 089.1 servicos de escala','S',NULL,5,'E','N',1),(507,'089.1.a','ESCALAS DE SERVIÇO',NULL,'089.1.a 089.1.a escalas de servico','S',47,5,'E','N',1),(508,'089.2 ','TABELAS MESTRAS',NULL,'089.2 089.2 tabelas mestras','S',NULL,5,'E','N',1),(509,'089.2.a','TABELAS INDIVIDUAIS E GERAIS','Condicional \"Enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','089.2.a 089.2.a tabelas individuais e gerais condicional \"enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','S',5,1,'E','N',1),(510,'089.3 ','CONTROLE DE FREQUÊNCIA',NULL,'089.3 089.3 controle de frequencia','S',NULL,5,'E','N',1),(511,'089.3.a','FICHAS DE CONTROLE DE EFETIVOS; LIVROS DE LICENCIADOS',NULL,'089.3.a 089.3.a fichas de controle de efetivos; livros de licenciados','S',47,5,'E','N',1),(512,'089.4 ','DELEGAÇÕES DE COMPETÊNCIA',NULL,'089.4 089.4 delegacoes de competencia','S',NULL,5,'E','N',1),(513,'089.4.a','ATOS DE DELEGAÇÃO; RELAÇÃO DE ENCARGOS COLATERAIS','Condicional \"Enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','089.4.a 089.4.a atos de delegacao; relacao de encargos colaterais condicional \"enquanto vigora\" convencionada para 1 ano no corrente, a contar da perda da validade do documento.','S',5,1,'E','N',1),(514,'098.1','Assunto adicional reservado para a Área-Meio 1',NULL,'098.1 098.1 assunto adicional reservado para a area-meio 1','N',NULL,1,'E','S',1),(515,'098.11','Assunto adicional reservado para a Área-Meio 2',NULL,'098.11 098.11 assunto adicional reservado para a area-meio 2','N',NULL,1,'E','S',1),(516,'098.12','Assunto adicional reservado para a Área-Meio 3',NULL,'098.12 098.12 assunto adicional reservado para a area-meio 3','N',NULL,1,'E','S',1),(517,'098.13','Assunto adicional reservado para a Área-Meio 4',NULL,'098.13 098.13 assunto adicional reservado para a area-meio 4','N',NULL,1,'E','S',1),(518,'098.14','Assunto adicional reservado para a Área-Meio 5',NULL,'098.14 098.14 assunto adicional reservado para a area-meio 5','N',NULL,1,'E','S',1),(519,'098.15','Assunto adicional reservado para a Área-Meio 6',NULL,'098.15 098.15 assunto adicional reservado para a area-meio 6','N',NULL,1,'E','S',1),(520,'098.16','Assunto adicional reservado para a Área-Meio 7',NULL,'098.16 098.16 assunto adicional reservado para a area-meio 7','N',NULL,1,'E','S',1),(521,'098.17','Assunto adicional reservado para a Área-Meio 8',NULL,'098.17 098.17 assunto adicional reservado para a area-meio 8','N',NULL,1,'E','S',1),(522,'098.18','Assunto adicional reservado para a Área-Meio 9',NULL,'098.18 098.18 assunto adicional reservado para a area-meio 9','N',NULL,1,'E','S',1),(523,'098.19','Assunto adicional reservado para a Área-Meio 10',NULL,'098.19 098.19 assunto adicional reservado para a area-meio 10','N',NULL,1,'E','S',1),(524,'098.2','Assunto adicional reservado para a Área-Meio 11',NULL,'098.2 098.2 assunto adicional reservado para a area-meio 11','N',NULL,1,'E','S',1),(525,'098.21','Assunto adicional reservado para a Área-Meio 12',NULL,'098.21 098.21 assunto adicional reservado para a area-meio 12','N',NULL,1,'E','S',1),(526,'098.22','Assunto adicional reservado para a Área-Meio 13',NULL,'098.22 098.22 assunto adicional reservado para a area-meio 13','N',NULL,1,'E','S',1),(527,'098.23','Assunto adicional reservado para a Área-Meio 14',NULL,'098.23 098.23 assunto adicional reservado para a area-meio 14','N',NULL,1,'E','S',1),(528,'098.24','Assunto adicional reservado para a Área-Meio 15',NULL,'098.24 098.24 assunto adicional reservado para a area-meio 15','N',NULL,1,'E','S',1),(529,'098.25','Assunto adicional reservado para a Área-Meio 16',NULL,'098.25 098.25 assunto adicional reservado para a area-meio 16','N',NULL,1,'E','S',1),(530,'098.26','Assunto adicional reservado para a Área-Meio 17',NULL,'098.26 098.26 assunto adicional reservado para a area-meio 17','N',NULL,1,'E','S',1),(531,'098.27','Assunto adicional reservado para a Área-Meio 18',NULL,'098.27 098.27 assunto adicional reservado para a area-meio 18','N',NULL,1,'E','S',1),(532,'098.28','Assunto adicional reservado para a Área-Meio 19',NULL,'098.28 098.28 assunto adicional reservado para a area-meio 19','N',NULL,1,'E','S',1),(533,'098.29','Assunto adicional reservado para a Área-Meio 20',NULL,'098.29 098.29 assunto adicional reservado para a area-meio 20','N',NULL,1,'E','S',1),(534,'098.3','Assunto adicional reservado para a Área-Meio 21',NULL,'098.3 098.3 assunto adicional reservado para a area-meio 21','N',NULL,1,'E','S',1),(535,'098.31','Assunto adicional reservado para a Área-Meio 22',NULL,'098.31 098.31 assunto adicional reservado para a area-meio 22','N',NULL,1,'E','S',1),(536,'098.32','Assunto adicional reservado para a Área-Meio 23',NULL,'098.32 098.32 assunto adicional reservado para a area-meio 23','N',NULL,1,'E','S',1),(537,'098.33','Assunto adicional reservado para a Área-Meio 24',NULL,'098.33 098.33 assunto adicional reservado para a area-meio 24','N',NULL,1,'E','S',1),(538,'098.34','Assunto adicional reservado para a Área-Meio 25',NULL,'098.34 098.34 assunto adicional reservado para a area-meio 25','N',NULL,1,'E','S',1),(539,'098.35','Assunto adicional reservado para a Área-Meio 26',NULL,'098.35 098.35 assunto adicional reservado para a area-meio 26','N',NULL,1,'E','S',1),(540,'098.36','Assunto adicional reservado para a Área-Meio 27',NULL,'098.36 098.36 assunto adicional reservado para a area-meio 27','N',NULL,1,'E','S',1),(541,'098.37','Assunto adicional reservado para a Área-Meio 28',NULL,'098.37 098.37 assunto adicional reservado para a area-meio 28','N',NULL,1,'E','S',1),(542,'098.38','Assunto adicional reservado para a Área-Meio 29',NULL,'098.38 098.38 assunto adicional reservado para a area-meio 29','N',NULL,1,'E','S',1),(543,'098.39','Assunto adicional reservado para a Área-Meio 30',NULL,'098.39 098.39 assunto adicional reservado para a area-meio 30','N',NULL,1,'E','S',1),(544,'098.4','Assunto adicional reservado para a Área-Meio 31',NULL,'098.4 098.4 assunto adicional reservado para a area-meio 31','N',NULL,1,'E','S',1),(545,'098.41','Assunto adicional reservado para a Área-Meio 32',NULL,'098.41 098.41 assunto adicional reservado para a area-meio 32','N',NULL,1,'E','S',1),(546,'098.42','Assunto adicional reservado para a Área-Meio 33',NULL,'098.42 098.42 assunto adicional reservado para a area-meio 33','N',NULL,1,'E','S',1),(547,'098.43','Assunto adicional reservado para a Área-Meio 34',NULL,'098.43 098.43 assunto adicional reservado para a area-meio 34','N',NULL,1,'E','S',1),(548,'098.44','Assunto adicional reservado para a Área-Meio 35',NULL,'098.44 098.44 assunto adicional reservado para a area-meio 35','N',NULL,1,'E','S',1),(549,'098.45','Assunto adicional reservado para a Área-Meio 36',NULL,'098.45 098.45 assunto adicional reservado para a area-meio 36','N',NULL,1,'E','S',1),(550,'098.46','Assunto adicional reservado para a Área-Meio 37',NULL,'098.46 098.46 assunto adicional reservado para a area-meio 37','N',NULL,1,'E','S',1),(551,'098.47','Assunto adicional reservado para a Área-Meio 38',NULL,'098.47 098.47 assunto adicional reservado para a area-meio 38','N',NULL,1,'E','S',1),(552,'098.48','Assunto adicional reservado para a Área-Meio 39',NULL,'098.48 098.48 assunto adicional reservado para a area-meio 39','N',NULL,1,'E','S',1),(553,'098.49','Assunto adicional reservado para a Área-Meio 40',NULL,'098.49 098.49 assunto adicional reservado para a area-meio 40','N',NULL,1,'E','S',1),(554,'098.5','Assunto adicional reservado para a Área-Meio 41',NULL,'098.5 098.5 assunto adicional reservado para a area-meio 41','N',NULL,1,'E','S',1),(555,'098.51','Assunto adicional reservado para a Área-Meio 42',NULL,'098.51 098.51 assunto adicional reservado para a area-meio 42','N',NULL,1,'E','S',1),(556,'098.52','Assunto adicional reservado para a Área-Meio 43',NULL,'098.52 098.52 assunto adicional reservado para a area-meio 43','N',NULL,1,'E','S',1),(557,'098.53','Assunto adicional reservado para a Área-Meio 44',NULL,'098.53 098.53 assunto adicional reservado para a area-meio 44','N',NULL,1,'E','S',1),(558,'098.54','Assunto adicional reservado para a Área-Meio 45',NULL,'098.54 098.54 assunto adicional reservado para a area-meio 45','N',NULL,1,'E','S',1),(559,'098.55','Assunto adicional reservado para a Área-Meio 46',NULL,'098.55 098.55 assunto adicional reservado para a area-meio 46','N',NULL,1,'E','S',1),(560,'098.56','Assunto adicional reservado para a Área-Meio 47',NULL,'098.56 098.56 assunto adicional reservado para a area-meio 47','N',NULL,1,'E','S',1),(561,'098.57','Assunto adicional reservado para a Área-Meio 48',NULL,'098.57 098.57 assunto adicional reservado para a area-meio 48','N',NULL,1,'E','S',1),(562,'098.58','Assunto adicional reservado para a Área-Meio 49',NULL,'098.58 098.58 assunto adicional reservado para a area-meio 49','N',NULL,1,'E','S',1),(563,'098.59','Assunto adicional reservado para a Área-Meio 50',NULL,'098.59 098.59 assunto adicional reservado para a area-meio 50','N',NULL,1,'E','S',1),(564,'098.6','Assunto adicional reservado para a Área-Meio 51',NULL,'098.6 098.6 assunto adicional reservado para a area-meio 51','N',NULL,1,'E','S',1),(565,'098.61','Assunto adicional reservado para a Área-Meio 52',NULL,'098.61 098.61 assunto adicional reservado para a area-meio 52','N',NULL,1,'E','S',1),(566,'098.62','Assunto adicional reservado para a Área-Meio 53',NULL,'098.62 098.62 assunto adicional reservado para a area-meio 53','N',NULL,1,'E','S',1),(567,'098.63','Assunto adicional reservado para a Área-Meio 54',NULL,'098.63 098.63 assunto adicional reservado para a area-meio 54','N',NULL,1,'E','S',1),(568,'098.64','Assunto adicional reservado para a Área-Meio 55',NULL,'098.64 098.64 assunto adicional reservado para a area-meio 55','N',NULL,1,'E','S',1),(569,'098.65','Assunto adicional reservado para a Área-Meio 56',NULL,'098.65 098.65 assunto adicional reservado para a area-meio 56','N',NULL,1,'E','S',1),(570,'098.66','Assunto adicional reservado para a Área-Meio 57',NULL,'098.66 098.66 assunto adicional reservado para a area-meio 57','N',NULL,1,'E','S',1),(571,'098.67','Assunto adicional reservado para a Área-Meio 58',NULL,'098.67 098.67 assunto adicional reservado para a area-meio 58','N',NULL,1,'E','S',1),(572,'098.68','Assunto adicional reservado para a Área-Meio 59',NULL,'098.68 098.68 assunto adicional reservado para a area-meio 59','N',NULL,1,'E','S',1),(573,'098.69','Assunto adicional reservado para a Área-Meio 60',NULL,'098.69 098.69 assunto adicional reservado para a area-meio 60','N',NULL,1,'E','S',1),(574,'098.7','Assunto adicional reservado para a Área-Meio 61',NULL,'098.7 098.7 assunto adicional reservado para a area-meio 61','N',NULL,1,'E','S',1),(575,'098.71','Assunto adicional reservado para a Área-Meio 62',NULL,'098.71 098.71 assunto adicional reservado para a area-meio 62','N',NULL,1,'E','S',1),(576,'098.72','Assunto adicional reservado para a Área-Meio 63',NULL,'098.72 098.72 assunto adicional reservado para a area-meio 63','N',NULL,1,'E','S',1),(577,'098.73','Assunto adicional reservado para a Área-Meio 64',NULL,'098.73 098.73 assunto adicional reservado para a area-meio 64','N',NULL,1,'E','S',1),(578,'098.74','Assunto adicional reservado para a Área-Meio 65',NULL,'098.74 098.74 assunto adicional reservado para a area-meio 65','N',NULL,1,'E','S',1),(579,'098.75','Assunto adicional reservado para a Área-Meio 66',NULL,'098.75 098.75 assunto adicional reservado para a area-meio 66','N',NULL,1,'E','S',1),(580,'098.76','Assunto adicional reservado para a Área-Meio 67',NULL,'098.76 098.76 assunto adicional reservado para a area-meio 67','N',NULL,1,'E','S',1),(581,'098.77','Assunto adicional reservado para a Área-Meio 68',NULL,'098.77 098.77 assunto adicional reservado para a area-meio 68','N',NULL,1,'E','S',1),(582,'098.78','Assunto adicional reservado para a Área-Meio 69',NULL,'098.78 098.78 assunto adicional reservado para a area-meio 69','N',NULL,1,'E','S',1),(583,'098.79','Assunto adicional reservado para a Área-Meio 70',NULL,'098.79 098.79 assunto adicional reservado para a area-meio 70','N',NULL,1,'E','S',1),(584,'098.8','Assunto adicional reservado para a Área-Meio 71',NULL,'098.8 098.8 assunto adicional reservado para a area-meio 71','N',NULL,1,'E','S',1),(585,'098.81','Assunto adicional reservado para a Área-Meio 72',NULL,'098.81 098.81 assunto adicional reservado para a area-meio 72','N',NULL,1,'E','S',1),(586,'098.82','Assunto adicional reservado para a Área-Meio 73',NULL,'098.82 098.82 assunto adicional reservado para a area-meio 73','N',NULL,1,'E','S',1),(587,'098.83','Assunto adicional reservado para a Área-Meio 74',NULL,'098.83 098.83 assunto adicional reservado para a area-meio 74','N',NULL,1,'E','S',1),(588,'098.84','Assunto adicional reservado para a Área-Meio 75',NULL,'098.84 098.84 assunto adicional reservado para a area-meio 75','N',NULL,1,'E','S',1),(589,'098.85','Assunto adicional reservado para a Área-Meio 76',NULL,'098.85 098.85 assunto adicional reservado para a area-meio 76','N',NULL,1,'E','S',1),(590,'098.86','Assunto adicional reservado para a Área-Meio 77',NULL,'098.86 098.86 assunto adicional reservado para a area-meio 77','N',NULL,1,'E','S',1),(591,'098.87','Assunto adicional reservado para a Área-Meio 78',NULL,'098.87 098.87 assunto adicional reservado para a area-meio 78','N',NULL,1,'E','S',1),(592,'098.88','Assunto adicional reservado para a Área-Meio 79',NULL,'098.88 098.88 assunto adicional reservado para a area-meio 79','N',NULL,1,'E','S',1),(593,'098.89','Assunto adicional reservado para a Área-Meio 80',NULL,'098.89 098.89 assunto adicional reservado para a area-meio 80','N',NULL,1,'E','S',1),(594,'098.9','Assunto adicional reservado para a Área-Meio 81',NULL,'098.9 098.9 assunto adicional reservado para a area-meio 81','N',NULL,1,'E','S',1),(595,'098.91','Assunto adicional reservado para a Área-Meio 82',NULL,'098.91 098.91 assunto adicional reservado para a area-meio 82','N',NULL,1,'E','S',1),(596,'098.92','Assunto adicional reservado para a Área-Meio 83',NULL,'098.92 098.92 assunto adicional reservado para a area-meio 83','N',NULL,1,'E','S',1),(597,'098.93','Assunto adicional reservado para a Área-Meio 84',NULL,'098.93 098.93 assunto adicional reservado para a area-meio 84','N',NULL,1,'E','S',1),(598,'098.94','Assunto adicional reservado para a Área-Meio 85',NULL,'098.94 098.94 assunto adicional reservado para a area-meio 85','N',NULL,1,'E','S',1),(599,'098.95','Assunto adicional reservado para a Área-Meio 86',NULL,'098.95 098.95 assunto adicional reservado para a area-meio 86','N',NULL,1,'E','S',1),(600,'098.96','Assunto adicional reservado para a Área-Meio 87',NULL,'098.96 098.96 assunto adicional reservado para a area-meio 87','N',NULL,1,'E','S',1),(601,'098.97','Assunto adicional reservado para a Área-Meio 88',NULL,'098.97 098.97 assunto adicional reservado para a area-meio 88','N',NULL,1,'E','S',1),(602,'098.98','Assunto adicional reservado para a Área-Meio 89',NULL,'098.98 098.98 assunto adicional reservado para a area-meio 89','N',NULL,1,'E','S',1),(603,'098.99','Assunto adicional reservado para a Área-Meio 90',NULL,'098.99 098.99 assunto adicional reservado para a area-meio 90','N',NULL,1,'E','S',1),(604,'099.1','Assunto adicional reservado para a Área-Meio 91',NULL,'099.1 099.1 assunto adicional reservado para a area-meio 91','N',NULL,1,'E','S',1),(605,'099.11','Assunto adicional reservado para a Área-Meio 92',NULL,'099.11 099.11 assunto adicional reservado para a area-meio 92','N',NULL,1,'E','S',1),(606,'099.12','Assunto adicional reservado para a Área-Meio 93',NULL,'099.12 099.12 assunto adicional reservado para a area-meio 93','N',NULL,1,'E','S',1),(607,'099.13','Assunto adicional reservado para a Área-Meio 94',NULL,'099.13 099.13 assunto adicional reservado para a area-meio 94','N',NULL,1,'E','S',1),(608,'099.14','Assunto adicional reservado para a Área-Meio 95',NULL,'099.14 099.14 assunto adicional reservado para a area-meio 95','N',NULL,1,'E','S',1),(609,'099.15','Assunto adicional reservado para a Área-Meio 96',NULL,'099.15 099.15 assunto adicional reservado para a area-meio 96','N',NULL,1,'E','S',1),(610,'099.16','Assunto adicional reservado para a Área-Meio 97',NULL,'099.16 099.16 assunto adicional reservado para a area-meio 97','N',NULL,1,'E','S',1),(611,'099.17','Assunto adicional reservado para a Área-Meio 98',NULL,'099.17 099.17 assunto adicional reservado para a area-meio 98','N',NULL,1,'E','S',1),(612,'099.18','Assunto adicional reservado para a Área-Meio 99',NULL,'099.18 099.18 assunto adicional reservado para a area-meio 99','N',NULL,1,'E','S',1),(613,'099.19','Assunto adicional reservado para a Área-Meio 100',NULL,'099.19 099.19 assunto adicional reservado para a area-meio 100','N',NULL,1,'E','S',1),(614,'099.2','Assunto adicional reservado para a Área-Meio 101',NULL,'099.2 099.2 assunto adicional reservado para a area-meio 101','N',NULL,1,'E','S',1),(615,'099.21','Assunto adicional reservado para a Área-Meio 102',NULL,'099.21 099.21 assunto adicional reservado para a area-meio 102','N',NULL,1,'E','S',1),(616,'099.22','Assunto adicional reservado para a Área-Meio 103',NULL,'099.22 099.22 assunto adicional reservado para a area-meio 103','N',NULL,1,'E','S',1),(617,'099.23','Assunto adicional reservado para a Área-Meio 104',NULL,'099.23 099.23 assunto adicional reservado para a area-meio 104','N',NULL,1,'E','S',1),(618,'099.24','Assunto adicional reservado para a Área-Meio 105',NULL,'099.24 099.24 assunto adicional reservado para a area-meio 105','N',NULL,1,'E','S',1),(619,'099.25','Assunto adicional reservado para a Área-Meio 106',NULL,'099.25 099.25 assunto adicional reservado para a area-meio 106','N',NULL,1,'E','S',1),(620,'099.26','Assunto adicional reservado para a Área-Meio 107',NULL,'099.26 099.26 assunto adicional reservado para a area-meio 107','N',NULL,1,'E','S',1),(621,'099.27','Assunto adicional reservado para a Área-Meio 108',NULL,'099.27 099.27 assunto adicional reservado para a area-meio 108','N',NULL,1,'E','S',1),(622,'099.28','Assunto adicional reservado para a Área-Meio 109',NULL,'099.28 099.28 assunto adicional reservado para a area-meio 109','N',NULL,1,'E','S',1),(623,'099.29','Assunto adicional reservado para a Área-Meio 110',NULL,'099.29 099.29 assunto adicional reservado para a area-meio 110','N',NULL,1,'E','S',1),(624,'099.3','Assunto adicional reservado para a Área-Meio 111',NULL,'099.3 099.3 assunto adicional reservado para a area-meio 111','N',NULL,1,'E','S',1),(625,'099.31','Assunto adicional reservado para a Área-Meio 112',NULL,'099.31 099.31 assunto adicional reservado para a area-meio 112','N',NULL,1,'E','S',1),(626,'099.32','Assunto adicional reservado para a Área-Meio 113',NULL,'099.32 099.32 assunto adicional reservado para a area-meio 113','N',NULL,1,'E','S',1),(627,'099.33','Assunto adicional reservado para a Área-Meio 114',NULL,'099.33 099.33 assunto adicional reservado para a area-meio 114','N',NULL,1,'E','S',1),(628,'099.34','Assunto adicional reservado para a Área-Meio 115',NULL,'099.34 099.34 assunto adicional reservado para a area-meio 115','N',NULL,1,'E','S',1),(629,'099.35','Assunto adicional reservado para a Área-Meio 116',NULL,'099.35 099.35 assunto adicional reservado para a area-meio 116','N',NULL,1,'E','S',1),(630,'099.36','Assunto adicional reservado para a Área-Meio 117',NULL,'099.36 099.36 assunto adicional reservado para a area-meio 117','N',NULL,1,'E','S',1),(631,'099.37','Assunto adicional reservado para a Área-Meio 118',NULL,'099.37 099.37 assunto adicional reservado para a area-meio 118','N',NULL,1,'E','S',1),(632,'099.38','Assunto adicional reservado para a Área-Meio 119',NULL,'099.38 099.38 assunto adicional reservado para a area-meio 119','N',NULL,1,'E','S',1),(633,'099.39','Assunto adicional reservado para a Área-Meio 120',NULL,'099.39 099.39 assunto adicional reservado para a area-meio 120','N',NULL,1,'E','S',1),(634,'099.4','Assunto adicional reservado para a Área-Meio 121',NULL,'099.4 099.4 assunto adicional reservado para a area-meio 121','N',NULL,1,'E','S',1),(635,'099.41','Assunto adicional reservado para a Área-Meio 122',NULL,'099.41 099.41 assunto adicional reservado para a area-meio 122','N',NULL,1,'E','S',1),(636,'099.42','Assunto adicional reservado para a Área-Meio 123',NULL,'099.42 099.42 assunto adicional reservado para a area-meio 123','N',NULL,1,'E','S',1),(637,'099.43','Assunto adicional reservado para a Área-Meio 124',NULL,'099.43 099.43 assunto adicional reservado para a area-meio 124','N',NULL,1,'E','S',1),(638,'099.44','Assunto adicional reservado para a Área-Meio 125',NULL,'099.44 099.44 assunto adicional reservado para a area-meio 125','N',NULL,1,'E','S',1),(639,'099.45','Assunto adicional reservado para a Área-Meio 126',NULL,'099.45 099.45 assunto adicional reservado para a area-meio 126','N',NULL,1,'E','S',1),(640,'099.46','Assunto adicional reservado para a Área-Meio 127',NULL,'099.46 099.46 assunto adicional reservado para a area-meio 127','N',NULL,1,'E','S',1),(641,'099.47','Assunto adicional reservado para a Área-Meio 128',NULL,'099.47 099.47 assunto adicional reservado para a area-meio 128','N',NULL,1,'E','S',1),(642,'099.48','Assunto adicional reservado para a Área-Meio 129',NULL,'099.48 099.48 assunto adicional reservado para a area-meio 129','N',NULL,1,'E','S',1),(643,'099.49','Assunto adicional reservado para a Área-Meio 130',NULL,'099.49 099.49 assunto adicional reservado para a area-meio 130','N',NULL,1,'E','S',1),(644,'099.5','Assunto adicional reservado para a Área-Meio 131',NULL,'099.5 099.5 assunto adicional reservado para a area-meio 131','N',NULL,1,'E','S',1),(645,'099.51','Assunto adicional reservado para a Área-Meio 132',NULL,'099.51 099.51 assunto adicional reservado para a area-meio 132','N',NULL,1,'E','S',1),(646,'099.52','Assunto adicional reservado para a Área-Meio 133',NULL,'099.52 099.52 assunto adicional reservado para a area-meio 133','N',NULL,1,'E','S',1),(647,'099.53','Assunto adicional reservado para a Área-Meio 134',NULL,'099.53 099.53 assunto adicional reservado para a area-meio 134','N',NULL,1,'E','S',1),(648,'099.54','Assunto adicional reservado para a Área-Meio 135',NULL,'099.54 099.54 assunto adicional reservado para a area-meio 135','N',NULL,1,'E','S',1),(649,'099.55','Assunto adicional reservado para a Área-Meio 136',NULL,'099.55 099.55 assunto adicional reservado para a area-meio 136','N',NULL,1,'E','S',1),(650,'099.56','Assunto adicional reservado para a Área-Meio 137',NULL,'099.56 099.56 assunto adicional reservado para a area-meio 137','N',NULL,1,'E','S',1),(651,'099.57','Assunto adicional reservado para a Área-Meio 138',NULL,'099.57 099.57 assunto adicional reservado para a area-meio 138','N',NULL,1,'E','S',1),(652,'099.58','Assunto adicional reservado para a Área-Meio 139',NULL,'099.58 099.58 assunto adicional reservado para a area-meio 139','N',NULL,1,'E','S',1),(653,'099.59','Assunto adicional reservado para a Área-Meio 140',NULL,'099.59 099.59 assunto adicional reservado para a area-meio 140','N',NULL,1,'E','S',1),(654,'099.6','Assunto adicional reservado para a Área-Meio 141',NULL,'099.6 099.6 assunto adicional reservado para a area-meio 141','N',NULL,1,'E','S',1),(655,'099.61','Assunto adicional reservado para a Área-Meio 142',NULL,'099.61 099.61 assunto adicional reservado para a area-meio 142','N',NULL,1,'E','S',1),(656,'099.62','Assunto adicional reservado para a Área-Meio 143',NULL,'099.62 099.62 assunto adicional reservado para a area-meio 143','N',NULL,1,'E','S',1),(657,'099.63','Assunto adicional reservado para a Área-Meio 144',NULL,'099.63 099.63 assunto adicional reservado para a area-meio 144','N',NULL,1,'E','S',1),(658,'099.64','Assunto adicional reservado para a Área-Meio 145',NULL,'099.64 099.64 assunto adicional reservado para a area-meio 145','N',NULL,1,'E','S',1),(659,'099.65','Assunto adicional reservado para a Área-Meio 146',NULL,'099.65 099.65 assunto adicional reservado para a area-meio 146','N',NULL,1,'E','S',1),(660,'099.66','Assunto adicional reservado para a Área-Meio 147',NULL,'099.66 099.66 assunto adicional reservado para a area-meio 147','N',NULL,1,'E','S',1),(661,'099.67','Assunto adicional reservado para a Área-Meio 148',NULL,'099.67 099.67 assunto adicional reservado para a area-meio 148','N',NULL,1,'E','S',1),(662,'099.68','Assunto adicional reservado para a Área-Meio 149',NULL,'099.68 099.68 assunto adicional reservado para a area-meio 149','N',NULL,1,'E','S',1),(663,'099.69','Assunto adicional reservado para a Área-Meio 150',NULL,'099.69 099.69 assunto adicional reservado para a area-meio 150','N',NULL,1,'E','S',1),(664,'099.7','Assunto adicional reservado para a Área-Meio 151',NULL,'099.7 099.7 assunto adicional reservado para a area-meio 151','N',NULL,1,'E','S',1),(665,'099.71','Assunto adicional reservado para a Área-Meio 152',NULL,'099.71 099.71 assunto adicional reservado para a area-meio 152','N',NULL,1,'E','S',1),(666,'099.72','Assunto adicional reservado para a Área-Meio 153',NULL,'099.72 099.72 assunto adicional reservado para a area-meio 153','N',NULL,1,'E','S',1),(667,'099.73','Assunto adicional reservado para a Área-Meio 154',NULL,'099.73 099.73 assunto adicional reservado para a area-meio 154','N',NULL,1,'E','S',1),(668,'099.74','Assunto adicional reservado para a Área-Meio 155',NULL,'099.74 099.74 assunto adicional reservado para a area-meio 155','N',NULL,1,'E','S',1),(669,'099.75','Assunto adicional reservado para a Área-Meio 156',NULL,'099.75 099.75 assunto adicional reservado para a area-meio 156','N',NULL,1,'E','S',1),(670,'099.76','Assunto adicional reservado para a Área-Meio 157',NULL,'099.76 099.76 assunto adicional reservado para a area-meio 157','N',NULL,1,'E','S',1),(671,'099.77','Assunto adicional reservado para a Área-Meio 158',NULL,'099.77 099.77 assunto adicional reservado para a area-meio 158','N',NULL,1,'E','S',1),(672,'099.78','Assunto adicional reservado para a Área-Meio 159',NULL,'099.78 099.78 assunto adicional reservado para a area-meio 159','N',NULL,1,'E','S',1),(673,'099.79','Assunto adicional reservado para a Área-Meio 160',NULL,'099.79 099.79 assunto adicional reservado para a area-meio 160','N',NULL,1,'E','S',1),(674,'099.80','Assunto adicional reservado para a Área-Meio 161',NULL,'099.80 099.80 assunto adicional reservado para a area-meio 161','N',NULL,1,'E','S',1),(675,'099.81','Assunto adicional reservado para a Área-Meio 162',NULL,'099.81 099.81 assunto adicional reservado para a area-meio 162','N',NULL,1,'E','S',1),(676,'099.82','Assunto adicional reservado para a Área-Meio 163',NULL,'099.82 099.82 assunto adicional reservado para a area-meio 163','N',NULL,1,'E','S',1),(677,'099.83','Assunto adicional reservado para a Área-Meio 164',NULL,'099.83 099.83 assunto adicional reservado para a area-meio 164','N',NULL,1,'E','S',1),(678,'099.84','Assunto adicional reservado para a Área-Meio 165',NULL,'099.84 099.84 assunto adicional reservado para a area-meio 165','N',NULL,1,'E','S',1),(679,'099.85','Assunto adicional reservado para a Área-Meio 166',NULL,'099.85 099.85 assunto adicional reservado para a area-meio 166','N',NULL,1,'E','S',1),(680,'099.86','Assunto adicional reservado para a Área-Meio 167',NULL,'099.86 099.86 assunto adicional reservado para a area-meio 167','N',NULL,1,'E','S',1),(681,'099.87','Assunto adicional reservado para a Área-Meio 168',NULL,'099.87 099.87 assunto adicional reservado para a area-meio 168','N',NULL,1,'E','S',1),(682,'099.88','Assunto adicional reservado para a Área-Meio 169',NULL,'099.88 099.88 assunto adicional reservado para a area-meio 169','N',NULL,1,'E','S',1),(683,'099.89','Assunto adicional reservado para a Área-Meio 170',NULL,'099.89 099.89 assunto adicional reservado para a area-meio 170','N',NULL,1,'E','S',1),(684,'099.90','Assunto adicional reservado para a Área-Meio 171',NULL,'099.90 099.90 assunto adicional reservado para a area-meio 171','N',NULL,1,'E','S',1),(685,'099.91','Assunto adicional reservado para a Área-Meio 172',NULL,'099.91 099.91 assunto adicional reservado para a area-meio 172','N',NULL,1,'E','S',1),(686,'099.92','Assunto adicional reservado para a Área-Meio 173',NULL,'099.92 099.92 assunto adicional reservado para a area-meio 173','N',NULL,1,'E','S',1),(687,'099.93','Assunto adicional reservado para a Área-Meio 174',NULL,'099.93 099.93 assunto adicional reservado para a area-meio 174','N',NULL,1,'E','S',1),(688,'099.94','Assunto adicional reservado para a Área-Meio 175',NULL,'099.94 099.94 assunto adicional reservado para a area-meio 175','N',NULL,1,'E','S',1),(689,'099.95','Assunto adicional reservado para a Área-Meio 176',NULL,'099.95 099.95 assunto adicional reservado para a area-meio 176','N',NULL,1,'E','S',1),(690,'099.96','Assunto adicional reservado para a Área-Meio 177',NULL,'099.96 099.96 assunto adicional reservado para a area-meio 177','N',NULL,1,'E','S',1),(691,'099.97','Assunto adicional reservado para a Área-Meio 178',NULL,'099.97 099.97 assunto adicional reservado para a area-meio 178','N',NULL,1,'E','S',1),(692,'099.98','Assunto adicional reservado para a Área-Meio 179',NULL,'099.98 099.98 assunto adicional reservado para a area-meio 179','N',NULL,1,'E','S',1),(693,'099.99','Assunto adicional reservado para a Área-Meio 180',NULL,'099.99 099.99 assunto adicional reservado para a area-meio 180','N',NULL,1,'E','S',1),(694,'099.99.a','Assunto adicional reservado para a Área-Meio 181',NULL,'099.99.a 099.99.a assunto adicional reservado para a area-meio 181','N',NULL,1,'E','S',1),(695,'099.99.b','Assunto adicional reservado para a Área-Meio 182',NULL,'099.99.b 099.99.b assunto adicional reservado para a area-meio 182','N',NULL,1,'E','S',1),(696,'099.99.c','Assunto adicional reservado para a Área-Meio 183',NULL,'099.99.c 099.99.c assunto adicional reservado para a area-meio 183','N',NULL,1,'E','S',1),(697,'099.99.d','Assunto adicional reservado para a Área-Meio 184',NULL,'099.99.d 099.99.d assunto adicional reservado para a area-meio 184','N',NULL,1,'E','S',1),(698,'099.99.e','Assunto adicional reservado para a Área-Meio 185',NULL,'099.99.e 099.99.e assunto adicional reservado para a area-meio 185','N',NULL,1,'E','S',1),(699,'099.99.f','Assunto adicional reservado para a Área-Meio 186',NULL,'099.99.f 099.99.f assunto adicional reservado para a area-meio 186','N',NULL,1,'E','S',1),(700,'099.99.g','Assunto adicional reservado para a Área-Meio 187',NULL,'099.99.g 099.99.g assunto adicional reservado para a area-meio 187','N',NULL,1,'E','S',1); +/*!40000 ALTER TABLE `assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `assunto_proxy` +-- + +DROP TABLE IF EXISTS `assunto_proxy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `assunto_proxy` ( + `id_assunto_proxy` int(11) NOT NULL, + `id_assunto` int(11) NOT NULL, + PRIMARY KEY (`id_assunto_proxy`), + KEY `fk_assunto_proxy_assunto` (`id_assunto`), + CONSTRAINT `fk_assunto_proxy_assunto` FOREIGN KEY (`id_assunto`) REFERENCES `assunto` (`id_assunto`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `assunto_proxy` +-- + +LOCK TABLES `assunto_proxy` WRITE; +/*!40000 ALTER TABLE `assunto_proxy` DISABLE KEYS */; +INSERT INTO `assunto_proxy` VALUES (2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(10,10),(12,12),(13,13),(14,14),(15,15),(16,16),(18,18),(20,20),(21,21),(22,22),(23,23),(24,24),(25,25),(26,26),(28,28),(29,29),(30,30),(33,33),(35,35),(36,36),(38,38),(40,40),(41,41),(44,44),(45,45),(46,46),(48,48),(49,49),(50,50),(51,51),(52,52),(54,54),(55,55),(56,56),(57,57),(58,58),(59,59),(61,61),(62,62),(63,63),(64,64),(65,65),(67,67),(68,68),(69,69),(70,70),(71,71),(72,72),(73,73),(74,74),(76,76),(77,77),(78,78),(79,79),(80,80),(81,81),(83,83),(84,84),(85,85),(86,86),(87,87),(88,88),(89,89),(90,90),(91,91),(93,93),(94,94),(95,95),(97,97),(98,98),(101,101),(102,102),(104,104),(106,106),(107,107),(108,108),(109,109),(110,110),(111,111),(112,112),(114,114),(115,115),(116,116),(117,117),(118,118),(119,119),(120,120),(121,121),(122,122),(123,123),(124,124),(126,126),(127,127),(129,129),(131,131),(132,132),(134,134),(135,135),(136,136),(137,137),(138,138),(139,139),(140,140),(141,141),(142,142),(145,145),(146,146),(147,147),(148,148),(150,150),(151,151),(152,152),(154,154),(155,155),(156,156),(157,157),(158,158),(159,159),(161,161),(162,162),(164,164),(165,165),(167,167),(168,168),(170,170),(171,171),(173,173),(174,174),(175,175),(176,176),(177,177),(179,179),(180,180),(181,181),(182,182),(183,183),(185,185),(186,186),(187,187),(188,188),(189,189),(191,191),(192,192),(194,194),(195,195),(196,196),(197,197),(201,201),(202,202),(203,203),(204,204),(206,206),(207,207),(208,208),(209,209),(211,211),(212,212),(213,213),(214,214),(216,216),(218,218),(219,219),(220,220),(221,221),(222,222),(223,223),(224,224),(225,225),(227,227),(228,228),(229,229),(230,230),(231,231),(234,234),(235,235),(236,236),(237,237),(239,239),(240,240),(241,241),(243,243),(245,245),(246,246),(247,247),(248,248),(250,250),(251,251),(252,252),(253,253),(254,254),(256,256),(258,258),(259,259),(260,260),(262,262),(263,263),(265,265),(267,267),(268,268),(269,269),(270,270),(271,271),(272,272),(273,273),(275,275),(276,276),(277,277),(278,278),(279,279),(280,280),(281,281),(282,282),(283,283),(285,285),(286,286),(287,287),(288,288),(290,290),(292,292),(293,293),(294,294),(296,296),(297,297),(298,298),(299,299),(300,300),(302,302),(305,305),(306,306),(307,307),(308,308),(309,309),(310,310),(311,311),(312,312),(313,313),(314,314),(315,315),(316,316),(317,317),(318,318),(321,321),(323,323),(324,324),(325,325),(326,326),(327,327),(328,328),(329,329),(330,330),(331,331),(333,333),(334,334),(335,335),(336,336),(337,337),(338,338),(340,340),(341,341),(342,342),(343,343),(344,344),(345,345),(346,346),(347,347),(349,349),(351,351),(352,352),(353,353),(354,354),(355,355),(356,356),(357,357),(358,358),(360,360),(361,361),(362,362),(363,363),(364,364),(365,365),(366,366),(367,367),(368,368),(369,369),(370,370),(373,373),(374,374),(376,376),(377,377),(378,378),(379,379),(380,380),(381,381),(382,382),(383,383),(384,384),(385,385),(386,386),(387,387),(389,389),(390,390),(391,391),(392,392),(393,393),(394,394),(395,395),(396,396),(397,397),(398,398),(399,399),(400,400),(401,401),(402,402),(404,404),(405,405),(407,407),(408,408),(409,409),(410,410),(411,411),(412,412),(413,413),(414,414),(415,415),(416,416),(417,417),(418,418),(419,419),(420,420),(421,421),(423,423),(424,424),(425,425),(426,426),(428,428),(429,429),(430,430),(431,431),(433,433),(434,434),(435,435),(436,436),(437,437),(438,438),(439,439),(440,440),(441,441),(442,442),(443,443),(445,445),(446,446),(447,447),(448,448),(449,449),(450,450),(451,451),(452,452),(453,453),(454,454),(455,455),(456,456),(457,457),(458,458),(460,460),(461,461),(462,462),(463,463),(467,467),(468,468),(469,469),(470,470),(472,472),(473,473),(474,474),(475,475),(476,476),(477,477),(478,478),(479,479),(482,482),(483,483),(484,484),(485,485),(486,486),(487,487),(490,490),(491,491),(492,492),(493,493),(494,494),(495,495),(496,496),(497,497),(498,498),(499,499),(500,500),(501,501),(502,502),(503,503),(506,506),(507,507),(508,508),(509,509),(510,510),(511,511),(512,512),(513,513); +/*!40000 ALTER TABLE `assunto_proxy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `atividade` +-- + +DROP TABLE IF EXISTS `atividade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `atividade` ( + `id_atividade` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `dth_abertura` datetime NOT NULL, + `dth_conclusao` datetime DEFAULT NULL, + `id_tarefa` int(11) DEFAULT NULL, + `id_unidade_origem` int(11) NOT NULL, + `id_usuario_conclusao` int(11) DEFAULT NULL, + `sin_inicial` char(1) NOT NULL, + `id_usuario_visualizacao` int(11) DEFAULT NULL, + `id_usuario_atribuicao` int(11) DEFAULT NULL, + `dta_prazo` datetime DEFAULT NULL, + `tipo_visualizacao` int(11) NOT NULL, + `id_usuario` int(11) DEFAULT NULL, + `id_usuario_origem` int(11) NOT NULL, + PRIMARY KEY (`id_atividade`), + KEY `i04_atividade` (`id_unidade`,`dth_abertura`,`id_tarefa`,`id_atividade`,`id_protocolo`,`dth_conclusao`), + KEY `i06_atividade` (`id_unidade`,`id_protocolo`,`id_atividade`,`id_unidade_origem`), + KEY `i07_atividade` (`id_protocolo`,`id_unidade_origem`,`id_tarefa`,`id_atividade`), + KEY `fk_atividade_usuario_atribuica` (`id_usuario_atribuicao`), + KEY `fk_atividade_unidade_origem` (`id_unidade_origem`), + KEY `fk_atividade_usuario_conclusao` (`id_usuario_conclusao`), + KEY `fk_atividade_usuario_visualiza` (`id_usuario_visualizacao`), + KEY `fk_atividade_usuario` (`id_usuario`), + KEY `fk_atividade_usuario_origem` (`id_usuario_origem`), + KEY `i09_atividade` (`id_unidade`,`id_usuario`,`id_protocolo`), + KEY `i01_atividade` (`id_atividade`,`id_protocolo`,`id_unidade`,`id_usuario`,`dth_conclusao`,`sin_inicial`,`id_usuario_atribuicao`), + KEY `i02_atividade` (`id_atividade`,`id_protocolo`,`id_unidade`,`id_usuario`,`id_tarefa`), + KEY `fk_atividade_tarefa` (`id_tarefa`), + KEY `fk_atividade_protocolo` (`id_protocolo`), + KEY `fk_atividade_unidade` (`id_unidade`), + KEY `i03_atividade` (`id_unidade`,`dth_conclusao`,`sin_inicial`), + KEY `i10_atividade` (`dth_abertura`,`id_tarefa`), + KEY `i16_atividade` (`id_unidade`,`id_protocolo`,`dth_conclusao`,`id_usuario`,`id_atividade`,`id_usuario_atribuicao`), + KEY `i17_atividade` (`id_protocolo`,`id_tarefa`,`id_unidade`,`id_unidade_origem`), + CONSTRAINT `fk_atividade_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_atividade_tarefa` FOREIGN KEY (`id_tarefa`) REFERENCES `tarefa` (`id_tarefa`), + CONSTRAINT `fk_atividade_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_atividade_unidade_origem` FOREIGN KEY (`id_unidade_origem`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_atividade_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_atividade_usuario_atribuica` FOREIGN KEY (`id_usuario_atribuicao`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_atividade_usuario_conclusao` FOREIGN KEY (`id_usuario_conclusao`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_atividade_usuario_origem` FOREIGN KEY (`id_usuario_origem`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_atividade_usuario_visualiza` FOREIGN KEY (`id_usuario_visualizacao`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `atividade` +-- + +LOCK TABLES `atividade` WRITE; +/*!40000 ALTER TABLE `atividade` DISABLE KEYS */; +/*!40000 ALTER TABLE `atividade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `atributo` +-- + +DROP TABLE IF EXISTS `atributo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `atributo` ( + `id_atributo` int(11) NOT NULL, + `id_tipo_formulario` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `rotulo` varchar(4000) NOT NULL, + `ordem` int(11) NOT NULL, + `sta_tipo` varchar(20) NOT NULL, + `tamanho` int(11) DEFAULT NULL, + `linhas` int(11) DEFAULT NULL, + `decimais` int(11) DEFAULT NULL, + `mascara` varchar(50) DEFAULT NULL, + `valor_minimo` varchar(20) DEFAULT NULL, + `valor_maximo` varchar(20) DEFAULT NULL, + `valor_padrao` varchar(4000) DEFAULT NULL, + `sin_obrigatorio` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_atributo`), + KEY `fk_atributo_tipo_formulario` (`id_tipo_formulario`), + CONSTRAINT `fk_atributo_tipo_formulario` FOREIGN KEY (`id_tipo_formulario`) REFERENCES `tipo_formulario` (`id_tipo_formulario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `atributo` +-- + +LOCK TABLES `atributo` WRITE; +/*!40000 ALTER TABLE `atributo` DISABLE KEYS */; +/*!40000 ALTER TABLE `atributo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `atributo_andamento` +-- + +DROP TABLE IF EXISTS `atributo_andamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `atributo_andamento` ( + `id_atributo_andamento` int(11) NOT NULL, + `id_atividade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `valor` varchar(4000) DEFAULT NULL, + `id_origem` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_atributo_andamento`), + KEY `i01_atributo_andamento` (`id_atividade`,`nome`,`id_origem`), + KEY `fk_atributo_andamento_atividad` (`id_atividade`), + KEY `i02_atributo_andamento` (`nome`,`id_origem`), + KEY `i04_atributo_andamento` (`id_atividade`,`id_atributo_andamento`), + CONSTRAINT `fk_atributo_andamento_atividad` FOREIGN KEY (`id_atividade`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `atributo_andamento` +-- + +LOCK TABLES `atributo_andamento` WRITE; +/*!40000 ALTER TABLE `atributo_andamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `atributo_andamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `atributo_instalacao` +-- + +DROP TABLE IF EXISTS `atributo_instalacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `atributo_instalacao` ( + `id_atributo_instalacao` int(11) NOT NULL, + `id_andamento_instalacao` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `valor` varchar(4000) NOT NULL, + `id_origem` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_atributo_instalacao`), + KEY `fk_atributo_inst_andam_inst` (`id_andamento_instalacao`), + CONSTRAINT `fk_atributo_inst_andam_inst` FOREIGN KEY (`id_andamento_instalacao`) REFERENCES `andamento_instalacao` (`id_andamento_instalacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `atributo_instalacao` +-- + +LOCK TABLES `atributo_instalacao` WRITE; +/*!40000 ALTER TABLE `atributo_instalacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `atributo_instalacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auditoria_protocolo` +-- + +DROP TABLE IF EXISTS `auditoria_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `auditoria_protocolo` ( + `id_auditoria_protocolo` bigint(20) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_anexo` int(11) DEFAULT NULL, + `versao` int(11) DEFAULT NULL, + `dta_auditoria` datetime NOT NULL, + PRIMARY KEY (`id_auditoria_protocolo`), + KEY `i01_auditoria_protocolo` (`id_usuario`,`id_protocolo`,`versao`,`dta_auditoria`,`id_anexo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auditoria_protocolo` +-- + +LOCK TABLES `auditoria_protocolo` WRITE; +/*!40000 ALTER TABLE `auditoria_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `auditoria_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `base_conhecimento` +-- + +DROP TABLE IF EXISTS `base_conhecimento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `base_conhecimento` ( + `id_base_conhecimento` int(11) NOT NULL, + `id_base_conhecimento_agrupador` int(11) DEFAULT NULL, + `id_base_conhecimento_origem` int(11) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `conteudo` longtext, + `id_documento_edoc` bigint(20) DEFAULT NULL, + `sta_estado` char(1) NOT NULL, + `id_usuario_gerador` int(11) NOT NULL, + `dth_geracao` datetime NOT NULL, + `dth_liberacao` datetime DEFAULT NULL, + `id_usuario_liberacao` int(11) DEFAULT NULL, + `id_conjunto_estilos` int(11) DEFAULT NULL, + `sta_documento` char(1) NOT NULL, + PRIMARY KEY (`id_base_conhecimento`), + KEY `fk_base_conhecimento_unidade` (`id_unidade`), + KEY `fk_base_conhec_usu_gerador` (`id_usuario_gerador`), + KEY `fk_base_conhec_usu_liberacao` (`id_usuario_liberacao`), + KEY `fk_base_conhec_conj_estilos` (`id_conjunto_estilos`), + KEY `i01_base_conhecimento` (`id_base_conhecimento_agrupador`), + KEY `i02_base_conhecimento` (`id_unidade`,`sta_estado`), + CONSTRAINT `fk_base_conhec_conj_estilos` FOREIGN KEY (`id_conjunto_estilos`) REFERENCES `conjunto_estilos` (`id_conjunto_estilos`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_base_conhec_usu_gerador` FOREIGN KEY (`id_usuario_gerador`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_base_conhec_usu_liberacao` FOREIGN KEY (`id_usuario_liberacao`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_base_conhecimento_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `base_conhecimento` +-- + +LOCK TABLES `base_conhecimento` WRITE; +/*!40000 ALTER TABLE `base_conhecimento` DISABLE KEYS */; +/*!40000 ALTER TABLE `base_conhecimento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bloco` +-- + +DROP TABLE IF EXISTS `bloco`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `bloco` ( + `id_bloco` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `idx_bloco` varchar(500) DEFAULT NULL, + `sta_estado` char(1) NOT NULL, + PRIMARY KEY (`id_bloco`), + KEY `i01_bloco` (`sta_estado`,`id_bloco`,`sta_tipo`), + KEY `i02_bloco` (`id_unidade`,`sta_tipo`,`sta_estado`,`id_bloco`,`descricao`), + KEY `ie1_bloco` (`id_bloco`,`sta_estado`,`sta_tipo`,`id_unidade`,`id_usuario`), + KEY `fk_bloco_unidade` (`id_unidade`), + KEY `fk_bloco_usuario` (`id_usuario`), + CONSTRAINT `fk_bloco_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_bloco_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bloco` +-- + +LOCK TABLES `bloco` WRITE; +/*!40000 ALTER TABLE `bloco` DISABLE KEYS */; +/*!40000 ALTER TABLE `bloco` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `campo_pesquisa` +-- + +DROP TABLE IF EXISTS `campo_pesquisa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `campo_pesquisa` ( + `id_campo_pesquisa` int(11) NOT NULL, + `chave` int(11) NOT NULL, + `valor` varchar(4000) NOT NULL, + `id_pesquisa` int(11) NOT NULL, + PRIMARY KEY (`id_campo_pesquisa`), + KEY `fk_campo_pesquisa_pesquisa` (`id_pesquisa`), + CONSTRAINT `fk_campo_pesquisa_pesquisa` FOREIGN KEY (`id_pesquisa`) REFERENCES `pesquisa` (`id_pesquisa`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `campo_pesquisa` +-- + +LOCK TABLES `campo_pesquisa` WRITE; +/*!40000 ALTER TABLE `campo_pesquisa` DISABLE KEYS */; +/*!40000 ALTER TABLE `campo_pesquisa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cargo` +-- + +DROP TABLE IF EXISTS `cargo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cargo` ( + `id_cargo` int(11) NOT NULL, + `expressao` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `id_tratamento` int(11) DEFAULT NULL, + `id_vocativo` int(11) DEFAULT NULL, + `sta_genero` char(1) DEFAULT NULL, + `id_titulo` int(11) DEFAULT NULL, + PRIMARY KEY (`id_cargo`), + KEY `ie1_cargo` (`id_cargo`,`sin_ativo`), + KEY `fk_cargo_tratamento` (`id_tratamento`), + KEY `fk_cargo_vocativo` (`id_vocativo`), + KEY `fk_cargo_titulo` (`id_titulo`), + CONSTRAINT `fk_cargo_titulo` FOREIGN KEY (`id_titulo`) REFERENCES `titulo` (`id_titulo`), + CONSTRAINT `fk_cargo_tratamento` FOREIGN KEY (`id_tratamento`) REFERENCES `tratamento` (`id_tratamento`), + CONSTRAINT `fk_cargo_vocativo` FOREIGN KEY (`id_vocativo`) REFERENCES `vocativo` (`id_vocativo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cargo` +-- + +LOCK TABLES `cargo` WRITE; +/*!40000 ALTER TABLE `cargo` DISABLE KEYS */; +INSERT INTO `cargo` VALUES (1,'Almirante da Marinha do Brasil','S',1,1,'M',NULL),(2,'Brigadeiro da Força Aérea Brasileira','S',1,2,'M',NULL),(3,'Chefe de Gabinete','S',2,3,'M',NULL),(4,'Cidadão','S',2,4,'M',NULL),(5,'Cidadão','S',3,5,'F',NULL),(6,'Cônsul','S',1,6,'M',NULL),(7,'Consulesa','S',4,7,'F',NULL),(8,'Coordenador','S',2,8,'M',NULL),(9,'Coordenadora','S',3,9,'F',NULL),(10,'Coordenadora-Geral','S',3,10,'F',NULL),(11,'Coordenador-Geral','S',2,11,'M',NULL),(12,'Delegada de Polícia','S',4,12,'F',NULL),(13,'Delegada de Polícia Federal','S',4,12,'F',NULL),(14,'Delegado de Polícia','S',1,13,'M',NULL),(15,'Delegado de Polícia Federal','S',1,13,'M',NULL),(16,'Deputada Estadual','S',4,14,'F',NULL),(17,'Deputada Federal','S',4,14,'F',NULL),(18,'Deputado Estadual','S',1,15,'M',NULL),(19,'Deputado Federal','S',1,15,'M',NULL),(20,'Desembargador de Justiça','S',1,16,'M',NULL),(21,'Desembargador Federal','S',1,16,'M',NULL),(22,'Desembargadora de Justiça','S',4,17,'F',NULL),(23,'Desembargadora Federal','S',4,17,'F',NULL),(24,'Diretor','S',2,18,'M',NULL),(25,'Diretora','S',3,19,'F',NULL),(26,'Embaixador','S',1,20,'M',NULL),(27,'Embaixadora','S',4,21,'F',NULL),(28,'General do Exército Brasileiro','S',1,22,'M',NULL),(29,'Governador','S',1,23,'M',NULL),(30,'Governadora','S',4,24,'F',NULL),(31,'Juiz de Direito','S',1,25,'M',NULL),(32,'Juiz Federal','S',1,25,'M',NULL),(33,'Juíza de Direito','S',4,26,'F',NULL),(34,'Juíza Federal','S',4,26,'F',NULL),(35,'Marechal do Exército Brasileiro','S',1,27,'M',NULL),(36,'Ministra de Estado','S',4,28,'F',NULL),(37,'Ministro de Estado','S',1,29,'M',NULL),(38,'Prefeita Municipal','S',4,30,'F',NULL),(39,'Prefeito Municipal','S',1,31,'M',NULL),(40,'Presidenta','S',3,32,'F',NULL),(41,'Presidenta da Assembleia Legislativa','S',4,33,'F',NULL),(42,'Presidenta da Câmara Legislativa','S',4,34,'F',NULL),(43,'Presidenta da Câmara Municipal','S',4,35,'F',NULL),(44,'Presidenta da República','S',4,36,'F',NULL),(45,'Presidenta do Congresso Nacional','S',4,37,'F',NULL),(46,'Presidenta do Supremo Tribunal Federal','S',4,37,'F',NULL),(47,'Presidente','S',2,38,'M',NULL),(48,'Presidente da Assembleia Legislativa','S',1,39,'M',NULL),(49,'Presidente da Câmara Legislativa','S',1,40,'M',NULL),(50,'Presidente da Câmara Municipal','S',1,41,'M',NULL),(51,'Presidente da República','S',1,42,'M',NULL),(52,'Presidente do Congresso Nacional','S',1,43,'M',NULL),(53,'Presidente do Supremo Tribunal Federal','S',1,43,'M',NULL),(54,'Procurador da República','S',1,44,'M',NULL),(55,'Procuradora da República','S',4,45,'F',NULL),(56,'Procurador do Estado','S',1,44,'M',NULL),(57,'Procuradora do Estado','S',4,45,'F',NULL),(58,'Promotor de Justiça','S',1,46,'M',NULL),(59,'Promotora de Justiça','S',4,47,'F',NULL),(60,'Reitor','S',2,48,'M',NULL),(61,'Reitora','S',3,49,'F',NULL),(62,'Secretária','S',3,50,'F',NULL),(63,'Secretária de Estado','S',4,50,'F',NULL),(64,'Secretário','S',2,51,'M',NULL),(65,'Secretário de Estado','S',1,51,'M',NULL),(66,'Secretário-Adjunto','S',1,51,'M',NULL),(67,'Secretário-Executivo','S',1,51,'M',NULL),(68,'Secretário-Executivo Adjunto','S',1,51,'M',NULL),(69,'Secretário-Executivo Substituto','S',1,51,'M',NULL),(70,'Senador da República','S',1,52,'M',NULL),(71,'Senadora da República','S',4,53,'F',NULL),(72,'Superintendente','S',2,54,'M',NULL),(73,'Superintendente','S',3,55,'F',NULL),(74,'Vereador','S',2,56,'M',NULL),(75,'Vereadora','S',3,57,'F',NULL),(76,'Vice-Presidente','S',2,58,'M',NULL),(77,'Vice-Presidente da República','S',1,59,'M',NULL),(78,'Vice-Reitor','S',2,60,'M',NULL),(79,'Vice-Reitora','S',3,61,'F',NULL),(80,'Gerente','S',2,62,'M',NULL),(81,'Gerente','S',3,63,'F',NULL); +/*!40000 ALTER TABLE `cargo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cargo_funcao` +-- + +DROP TABLE IF EXISTS `cargo_funcao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cargo_funcao` ( + `id_unidade` int(11) NOT NULL, + `id_cargo_funcao` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_unidade`,`id_cargo_funcao`), + KEY `fk_cargo_funcao_unidade` (`id_unidade`), + CONSTRAINT `fk_cargo_funcao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cargo_funcao` +-- + +LOCK TABLES `cargo_funcao` WRITE; +/*!40000 ALTER TABLE `cargo_funcao` DISABLE KEYS */; +/*!40000 ALTER TABLE `cargo_funcao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `categoria` +-- + +DROP TABLE IF EXISTS `categoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `categoria` ( + `id_categoria` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_categoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `categoria` +-- + +LOCK TABLES `categoria` WRITE; +/*!40000 ALTER TABLE `categoria` DISABLE KEYS */; +/*!40000 ALTER TABLE `categoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cidade` +-- + +DROP TABLE IF EXISTS `cidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cidade` ( + `id_cidade` int(11) NOT NULL, + `id_uf` int(11) DEFAULT NULL, + `nome` varchar(50) NOT NULL, + `id_pais` int(11) DEFAULT NULL, + `codigo_ibge` int(11) DEFAULT NULL, + `sin_capital` char(1) NOT NULL, + `latitude` decimal(9,6) DEFAULT NULL, + `longitude` decimal(9,6) DEFAULT NULL, + PRIMARY KEY (`id_cidade`), + UNIQUE KEY `ak1_cidade` (`id_uf`,`nome`), + KEY `fk_cidade_pais` (`id_pais`), + KEY `i01_cidade` (`id_pais`,`id_uf`,`sin_capital`,`codigo_ibge`), + KEY `fk_cidade_uf` (`id_uf`), + CONSTRAINT `fk_cidade_pais` FOREIGN KEY (`id_pais`) REFERENCES `pais` (`id_pais`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_cidade_uf` FOREIGN KEY (`id_uf`) REFERENCES `uf` (`id_uf`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cidade` +-- + +LOCK TABLES `cidade` WRITE; +/*!40000 ALTER TABLE `cidade` DISABLE KEYS */; +INSERT INTO `cidade` VALUES (1,1,'Alta Floresta D\'Oeste',76,1100015,'N',-11.935540,-61.999824),(2,1,'Ariquemes',76,1100023,'N',-9.908463,-63.033269),(3,1,'Cabixi',76,1100031,'N',-13.499763,-60.544314),(4,1,'Cacoal',76,1100049,'N',-11.433865,-61.442944),(5,1,'Cerejeiras',76,1100056,'N',-13.195033,-60.818426),(6,1,'Colorado do Oeste',76,1100064,'N',-13.130564,-60.555067),(7,1,'Corumbiara',76,1100072,'N',-12.997520,-60.948701),(8,1,'Costa Marques',76,1100080,'N',-12.436014,-64.231654),(9,1,'Espigão D\'Oeste',76,1100098,'N',-11.528555,-61.020173),(10,1,'Guajará-Mirim',76,1100106,'N',-10.773884,-65.323952),(11,1,'Jaru',76,1100114,'N',-10.435949,-62.476231),(12,1,'Ji-Paraná',76,1100122,'N',-10.882051,-61.945095),(13,1,'Machadinho D\'Oeste',76,1100130,'N',-9.425562,-61.999593),(14,1,'Nova Brasilândia D\'Oeste',76,1100148,'N',-11.721325,-62.308230),(15,1,'Ouro Preto do Oeste',76,1100155,'N',-10.723574,-62.261055),(16,1,'Pimenta Bueno',76,1100189,'N',-11.677537,-61.183666),(17,1,'Porto Velho',76,1100205,'S',-8.768892,-63.831446),(18,1,'Presidente Médici',76,1100254,'N',-11.173205,-61.909439),(19,1,'Rio Crespo',76,1100262,'N',-9.705537,-62.900010),(20,1,'Rolim de Moura',76,1100288,'N',-11.722259,-61.785781),(21,1,'Santa Luzia D\'Oeste',76,1100296,'N',-11.908423,-61.773305),(22,1,'Vilhena',76,1100304,'N',-12.741373,-60.138584),(23,1,'São Miguel do Guaporé',76,1100320,'N',-11.699490,-62.720063),(24,1,'Nova Mamoré',76,1100338,'N',-10.411771,-65.329149),(25,1,'Alvorada D\'Oeste',76,1100346,'N',-11.344130,-62.277275),(26,1,'Alto Alegre dos Parecis',76,1100379,'N',-12.131777,-61.853077),(27,1,'Alto Paraíso',76,1100403,'N',-9.716667,-63.317629),(28,1,'Buritis',76,1100452,'N',-10.209805,-63.829679),(29,1,'Novo Horizonte do Oeste',76,1100502,'N',-11.709743,-61.994388),(30,1,'Cacaulândia',76,1100601,'N',-10.338873,-62.903190),(31,1,'Campo Novo de Rondônia',76,1100700,'N',-10.568416,-63.624991),(32,1,'Candeias do Jamari',76,1100809,'N',-8.785021,-63.700020),(33,1,'Castanheiras',76,1100908,'N',-11.426842,-61.949161),(34,1,'Chupinguaia',76,1100924,'N',-12.556841,-60.901848),(35,1,'Cujubim',76,1100940,'N',-9.378193,-62.587175),(36,1,'Governador Jorge Teixeira',76,1101005,'N',-10.612072,-62.740458),(37,1,'Itapuã do Oeste',76,1101104,'N',-9.191872,-63.182337),(38,1,'Ministro Andreazza',76,1101203,'N',-11.196238,-61.518922),(39,1,'Mirante da Serra',76,1101302,'N',-11.045609,-62.669427),(40,1,'Monte Negro',76,1101401,'N',-10.263098,-63.295559),(41,1,'Nova União',76,1101435,'N',-10.915532,-62.555089),(42,1,'Parecis',76,1101450,'N',-12.179827,-61.597998),(43,1,'Pimenteiras do Oeste',76,1101468,'N',-13.476562,-61.044379),(44,1,'Primavera de Rondônia',76,1101476,'N',-11.825707,-61.316546),(45,1,'São Felipe D\'Oeste',76,1101484,'N',-11.914389,-61.512508),(46,1,'São Francisco do Guaporé',76,1101492,'N',-12.063798,-63.570865),(47,1,'Seringueiras',76,1101500,'N',-11.767117,-63.038761),(48,1,'Teixeirópolis',76,1101559,'N',-10.932169,-62.255922),(49,1,'Theobroma',76,1101609,'N',-10.248731,-62.345146),(50,1,'Urupá',76,1101708,'N',-11.128545,-62.370632),(51,1,'Vale do Anari',76,1101757,'N',-9.851393,-62.176823),(52,1,'Vale do Paraíso',76,1101807,'N',-10.431053,-62.134390),(53,2,'Acrelândia',76,1200013,'N',-10.073794,-67.052317),(54,2,'Assis Brasil',76,1200054,'N',-10.942866,-69.563459),(55,2,'Brasiléia',76,1200104,'N',-11.016411,-68.747943),(56,2,'Bujari',76,1200138,'N',-9.820020,-67.951859),(57,2,'Capixaba',76,1200179,'N',-10.569768,-67.673508),(58,2,'Cruzeiro do Sul',76,1200203,'N',-7.630690,-72.672531),(59,2,'Epitaciolândia',76,1200252,'N',-11.028240,-68.744868),(60,2,'Feijó',76,1200302,'N',-8.160248,-70.353984),(61,2,'Jordão',76,1200328,'N',-9.193358,-71.950875),(62,2,'Mâncio Lima',76,1200336,'N',-7.593223,-72.916501),(63,2,'Manoel Urbano',76,1200344,'N',-8.836318,-69.259945),(64,2,'Marechal Thaumaturgo',76,1200351,'N',-8.953591,-72.790266),(65,2,'Plácido de Castro',76,1200385,'N',-10.335133,-67.188260),(66,2,'Porto Walter',76,1200393,'N',-8.266666,-72.742334),(67,2,'Rio Branco',76,1200401,'S',-9.978299,-67.810529),(68,2,'Rodrigues Alves',76,1200427,'N',-7.733602,-72.647855),(69,2,'Santa Rosa do Purus',76,1200435,'N',-9.443407,-70.486497),(70,2,'Senador Guiomard',76,1200450,'N',-10.148174,-67.743172),(71,2,'Sena Madureira',76,1200500,'N',-9.065340,-68.655684),(72,2,'Tarauacá',76,1200609,'N',-8.155669,-70.755501),(73,2,'Xapuri',76,1200708,'N',-10.652072,-68.506295),(74,2,'Porto Acre',76,1200807,'N',-9.600858,-67.540590),(75,3,'Alvarães',76,1300029,'N',-3.216584,-64.813535),(76,3,'Amaturá',76,1300060,'N',-3.366805,-68.209615),(77,3,'Anamã',76,1300086,'N',-3.576370,-61.405903),(78,3,'Anori',76,1300102,'N',-3.745386,-61.658955),(79,3,'Apuí',76,1300144,'N',-7.197870,-59.885666),(80,3,'Atalaia do Norte',76,1300201,'N',-4.366157,-70.187989),(81,3,'Autazes',76,1300300,'N',-3.578664,-59.133567),(82,3,'Barcelos',76,1300409,'N',-0.972801,-62.925670),(83,3,'Barreirinha',76,1300508,'N',-2.798150,-57.067750),(84,3,'Benjamin Constant',76,1300607,'N',-4.374989,-70.027348),(85,3,'Beruri',76,1300631,'N',-3.894513,-61.371571),(86,3,'Boa Vista do Ramos',76,1300680,'N',-2.971727,-57.587707),(87,3,'Boca do Acre',76,1300706,'N',-8.751243,-67.399578),(88,3,'Borba',76,1300805,'N',-4.390620,-59.594559),(89,3,'Caapiranga',76,1300839,'N',-3.330093,-61.211334),(90,3,'Canutama',76,1300904,'N',-6.529106,-64.394231),(91,3,'Carauari',76,1301001,'N',-4.881666,-66.896635),(92,3,'Careiro',76,1301100,'N',-3.822447,-60.363810),(93,3,'Careiro da Várzea',76,1301159,'N',-3.197397,-59.826314),(94,3,'Coari',76,1301209,'N',-4.084219,-63.142184),(95,3,'Codajás',76,1301308,'N',-3.843046,-62.063430),(96,3,'Eirunepé',76,1301407,'N',-6.667353,-69.866290),(97,3,'Envira',76,1301506,'N',-7.439818,-70.030413),(98,3,'Fonte Boa',76,1301605,'N',-2.512271,-66.096503),(99,3,'Guajará',76,1301654,'N',-7.547774,-72.582431),(100,3,'Humaitá',76,1301704,'N',-7.512225,-63.026698),(101,3,'Ipixuna',76,1301803,'N',-7.050980,-71.694418),(102,3,'Iranduba',76,1301852,'N',-3.281054,-60.193388),(103,3,'Itacoatiara',76,1301902,'N',-3.140379,-58.440175),(104,3,'Itamarati',76,1301951,'N',-6.437799,-68.247917),(105,3,'Itapiranga',76,1302009,'N',-2.741843,-58.034546),(106,3,'Japurá',76,1302108,'N',-1.880845,-66.996903),(107,3,'Juruá',76,1302207,'N',-3.474890,-66.063042),(108,3,'Jutaí',76,1302306,'N',-2.744646,-66.771328),(109,3,'Lábrea',76,1302405,'N',-7.261947,-64.794773),(110,3,'Manacapuru',76,1302504,'N',-3.298278,-60.620589),(111,3,'Manaquiri',76,1302553,'N',-3.429080,-60.458881),(112,3,'Manaus',76,1302603,'S',-3.134691,-60.023335),(113,3,'Manicoré',76,1302702,'N',-5.813205,-61.299248),(114,3,'Maraã',76,1302801,'N',-1.866437,-65.574284),(115,3,'Maués',76,1302900,'N',-3.386428,-57.715034),(116,3,'Nhamundá',76,1303007,'N',-2.188984,-56.716770),(117,3,'Nova Olinda do Norte',76,1303106,'N',-3.887593,-59.093074),(118,3,'Novo Airão',76,1303205,'N',-2.623432,-60.948811),(119,3,'Novo Aripuanã',76,1303304,'N',-5.122669,-60.377046),(120,3,'Parintins',76,1303403,'N',-2.627053,-56.736292),(121,3,'Pauini',76,1303502,'N',-7.714044,-67.002097),(122,3,'Presidente Figueiredo',76,1303536,'N',-2.058429,-60.025647),(123,3,'Rio Preto da Eva',76,1303569,'N',-2.693302,-59.704738),(124,3,'Santa Isabel do Rio Negro',76,1303601,'N',-0.416695,-65.020023),(125,3,'Santo Antônio do Içá',76,1303700,'N',-3.107486,-67.946485),(126,3,'São Gabriel da Cachoeira',76,1303809,'N',-0.136463,-67.083643),(127,3,'São Paulo de Olivença',76,1303908,'N',-3.466510,-68.944853),(128,3,'São Sebastião do Uatumã',76,1303957,'N',-2.570153,-57.870346),(129,3,'Silves',76,1304005,'N',-2.836427,-58.214801),(130,3,'Tabatinga',76,1304062,'N',-4.231884,-69.946244),(131,3,'Tapauá',76,1304104,'N',-5.624224,-63.187095),(132,3,'Tefé',76,1304203,'N',-3.348372,-64.708420),(133,3,'Tonantins',76,1304237,'N',-2.861091,-67.776482),(134,3,'Uarini',76,1304260,'N',-2.983609,-65.155346),(135,3,'Urucará',76,1304302,'N',-2.536612,-57.759828),(136,3,'Urucurituba',76,1304401,'N',-3.134633,-58.159641),(137,4,'Amajari',76,1400027,'N',3.652118,-61.420590),(138,4,'Alto Alegre',76,1400050,'N',2.993823,-61.314022),(139,4,'Boa Vista',76,1400100,'S',2.816682,-60.670533),(140,4,'Bonfim',76,1400159,'N',3.350289,-59.878007),(141,4,'Cantá',76,1400175,'N',2.607666,-60.602063),(142,4,'Caracaraí',76,1400209,'N',1.803871,-61.149177),(143,4,'Caroebe',76,1400233,'N',0.872675,-59.694810),(144,4,'Iracema',76,1400282,'N',2.168215,-61.052259),(145,4,'Mucajaí',76,1400308,'N',2.479772,-60.911519),(146,4,'Normandia',76,1400407,'N',3.882978,-59.635206),(147,4,'Pacaraima',76,1400456,'N',4.475259,-61.147306),(148,4,'Rorainópolis',76,1400472,'N',0.937195,-60.425060),(149,4,'São João da Baliza',76,1400506,'N',0.947157,-59.906044),(150,4,'São Luiz',76,1400605,'N',1.018112,-60.028267),(151,4,'Uiramutã',76,1400704,'N',4.585440,-60.195716),(152,5,'Abaetetuba',76,1500107,'N',-1.723470,-48.884404),(153,5,'Abel Figueiredo',76,1500131,'N',-4.951391,-48.396762),(154,5,'Acará',76,1500206,'N',-1.963437,-48.200456),(155,5,'Afuá',76,1500305,'N',-0.159172,-50.391428),(156,5,'Água Azul do Norte',76,1500347,'N',-6.804949,-50.485275),(157,5,'Alenquer',76,1500404,'N',-1.951398,-54.740862),(158,5,'Almeirim',76,1500503,'N',-1.527339,-52.576835),(159,5,'Altamira',76,1500602,'N',-3.205660,-52.214376),(160,5,'Anajás',76,1500701,'N',-0.984451,-49.945001),(161,5,'Ananindeua',76,1500800,'N',-1.368714,-48.372067),(162,5,'Anapu',76,1500859,'N',-3.476105,-51.201622),(163,5,'Augusto Corrêa',76,1500909,'N',-1.022921,-46.641646),(164,5,'Aurora do Pará',76,1500958,'N',-2.129376,-47.556175),(165,5,'Aveiro',76,1501006,'N',-3.605595,-55.330734),(166,5,'Bagre',76,1501105,'N',-1.889808,-50.221987),(167,5,'Baião',76,1501204,'N',-2.791962,-49.672753),(168,5,'Bannach',76,1501253,'N',-7.351072,-50.406047),(169,5,'Barcarena',76,1501303,'N',-1.505767,-48.627073),(170,5,'Belém',76,1501402,'S',-1.459845,-48.487826),(171,5,'Belterra',76,1501451,'N',-2.649020,-54.942675),(172,5,'Benevides',76,1501501,'N',-1.361438,-48.241836),(173,5,'Bom Jesus do Tocantins',76,1501576,'N',-5.047363,-48.599040),(174,5,'Bonito',76,1501600,'N',-1.367474,-47.305892),(175,5,'Bragança',76,1501709,'N',-1.053524,-46.765754),(176,5,'Brasil Novo',76,1501725,'N',-3.297804,-52.543441),(177,5,'Brejo Grande do Araguaia',76,1501758,'N',-5.707296,-48.405760),(178,5,'Breu Branco',76,1501782,'N',-3.778135,-49.569880),(179,5,'Breves',76,1501808,'N',-1.690737,-50.480895),(180,5,'Bujaru',76,1501907,'N',-1.513991,-48.035875),(181,5,'Cachoeira do Piriá',76,1501956,'N',-1.752897,-46.547391),(182,5,'Cachoeira do Arari',76,1502004,'N',-1.008786,-48.960668),(183,5,'Cametá',76,1502103,'N',-2.246838,-49.497830),(184,5,'Canaã dos Carajás',76,1502152,'N',-6.532197,-49.848958),(185,5,'Capanema',76,1502202,'N',-1.192442,-47.175126),(186,5,'Capitão Poço',76,1502301,'N',-1.746187,-47.062825),(187,5,'Castanhal',76,1502400,'N',-1.295757,-47.926643),(188,5,'Chaves',76,1502509,'N',-0.162437,-49.989319),(189,5,'Colares',76,1502608,'N',-0.932091,-48.288728),(190,5,'Conceição do Araguaia',76,1502707,'N',-8.264864,-49.264501),(191,5,'Concórdia do Pará',76,1502756,'N',-1.984521,-47.949887),(192,5,'Cumaru do Norte',76,1502764,'N',-7.811107,-50.771578),(193,5,'Curionópolis',76,1502772,'N',-6.096820,-49.602214),(194,5,'Curralinho',76,1502806,'N',-1.809423,-49.791523),(195,5,'Curuá',76,1502855,'N',-1.889929,-55.119679),(196,5,'Curuçá',76,1502905,'N',-0.732496,-47.851265),(197,5,'Dom Eliseu',76,1502939,'N',-4.290778,-47.555915),(198,5,'Eldorado dos Carajás',76,1502954,'N',-6.103525,-49.373952),(199,5,'Faro',76,1503002,'N',-2.172975,-56.745753),(200,5,'Floresta do Araguaia',76,1503044,'N',-7.558701,-49.697578),(201,5,'Garrafão do Norte',76,1503077,'N',-1.931697,-47.045046),(202,5,'Goianésia do Pará',76,1503093,'N',-3.842468,-49.101045),(203,5,'Gurupá',76,1503101,'N',-1.404918,-51.643696),(204,5,'Igarapé-Açu',76,1503200,'N',-1.124322,-47.622375),(205,5,'Igarapé-Miri',76,1503309,'N',-1.983116,-48.962299),(206,5,'Inhangapi',76,1503408,'N',-1.426582,-47.913393),(207,5,'Ipixuna do Pará',76,1503457,'N',-2.557529,-47.499718),(208,5,'Irituia',76,1503507,'N',-1.771475,-47.440756),(209,5,'Itaituba',76,1503606,'N',-4.263729,-55.990049),(210,5,'Itupiranga',76,1503705,'N',-5.128837,-49.324426),(211,5,'Jacareacanga',76,1503754,'N',-6.223552,-57.766340),(212,5,'Jacundá',76,1503804,'N',-4.448405,-49.112782),(213,5,'Juruti',76,1503903,'N',-2.155253,-56.094998),(214,5,'Limoeiro do Ajuru',76,1504000,'N',-1.891949,-49.381534),(215,5,'Mãe do Rio',76,1504059,'N',-2.047707,-47.552290),(216,5,'Magalhães Barata',76,1504109,'N',-0.795850,-47.599182),(217,5,'Marabá',76,1504208,'N',-5.352606,-49.142025),(218,5,'Maracanã',76,1504307,'N',-0.762419,-47.455268),(219,5,'Marapanim',76,1504406,'N',-0.712151,-47.702549),(220,5,'Marituba',76,1504422,'N',-1.346417,-48.340536),(221,5,'Medicilândia',76,1504455,'N',-3.445417,-52.888345),(222,5,'Melgaço',76,1504505,'N',-1.803447,-50.717465),(223,5,'Mocajuba',76,1504604,'N',-2.582873,-49.509023),(224,5,'Moju',76,1504703,'N',-1.885889,-48.767199),(225,5,'Monte Alegre',76,1504802,'N',-2.003328,-54.073375),(226,5,'Muaná',76,1504901,'N',-1.530026,-49.216832),(227,5,'Nova Esperança do Piriá',76,1504950,'N',-2.267626,-46.962093),(228,5,'Nova Ipixuna',76,1504976,'N',-4.923086,-49.079887),(229,5,'Nova Timboteua',76,1505007,'N',-1.204144,-47.393202),(230,5,'Novo Progresso',76,1505031,'N',-7.034836,-55.419870),(231,5,'Novo Repartimento',76,1505064,'N',-4.248149,-49.948638),(232,5,'Óbidos',76,1505106,'N',-1.909235,-55.516324),(233,5,'Oeiras do Pará',76,1505205,'N',-2.004734,-49.855106),(234,5,'Oriximiná',76,1505304,'N',-1.763754,-55.862800),(235,5,'Ourém',76,1505403,'N',-1.548947,-47.117619),(236,5,'Ourilândia do Norte',76,1505437,'N',-6.740617,-51.090833),(237,5,'Pacajá',76,1505486,'N',-3.830306,-50.634841),(238,5,'Palestina do Pará',76,1505494,'N',-5.749934,-48.321794),(239,5,'Paragominas',76,1505502,'N',-2.994191,-47.356962),(240,5,'Parauapebas',76,1505536,'N',-6.072730,-49.900781),(241,5,'Pau D\'Arco',76,1505551,'N',-7.836794,-50.048276),(242,5,'Peixe-Boi',76,1505601,'N',-1.189569,-47.317927),(243,5,'Piçarra',76,1505635,'N',-6.453676,-48.868401),(244,5,'Placas',76,1505650,'N',-3.867316,-54.216968),(245,5,'Ponta de Pedras',76,1505700,'N',-1.396600,-48.871786),(246,5,'Portel',76,1505809,'N',-1.936451,-50.822490),(247,5,'Porto de Moz',76,1505908,'N',-1.746090,-52.242477),(248,5,'Prainha',76,1506005,'N',-1.805695,-53.481814),(249,5,'Primavera',76,1506104,'N',-0.940112,-47.117251),(250,5,'Quatipuru',76,1506112,'N',-0.900116,-47.006787),(251,5,'Redenção',76,1506138,'N',-8.027605,-50.029642),(252,5,'Rio Maria',76,1506161,'N',-7.311115,-50.046411),(253,5,'Rondon do Pará',76,1506187,'N',-4.777822,-48.069974),(254,5,'Rurópolis',76,1506195,'N',-4.099065,-54.905862),(255,5,'Salinópolis',76,1506203,'N',-0.623638,-47.353120),(256,5,'Salvaterra',76,1506302,'N',-0.754526,-48.513187),(257,5,'Santa Bárbara do Pará',76,1506351,'N',-1.229439,-48.297741),(258,5,'Santa Cruz do Arari',76,1506401,'N',-0.659974,-49.171616),(259,5,'Santa Isabel do Pará',76,1506500,'N',-1.297396,-48.163060),(260,5,'Santa Luzia do Pará',76,1506559,'N',-1.518828,-46.906169),(261,5,'Santa Maria das Barreiras',76,1506583,'N',-8.870551,-49.719352),(262,5,'Santa Maria do Pará',76,1506609,'N',-1.347866,-47.574695),(263,5,'Santana do Araguaia',76,1506708,'N',-9.329425,-50.344804),(264,5,'Santarém',76,1506807,'N',-2.436213,-54.718570),(265,5,'Santarém Novo',76,1506906,'N',-0.928720,-47.400925),(266,5,'Santo Antônio do Tauá',76,1507003,'N',-1.151693,-48.132433),(267,5,'São Caetano de Odivelas',76,1507102,'N',-0.746618,-48.025805),(268,5,'São Domingos do Araguaia',76,1507151,'N',-5.549841,-48.720373),(269,5,'São Domingos do Capim',76,1507201,'N',-1.675815,-47.774785),(270,5,'São Félix do Xingu',76,1507300,'N',-6.642483,-51.993783),(271,5,'São Francisco do Pará',76,1507409,'N',-1.170189,-47.790515),(272,5,'São Geraldo do Araguaia',76,1507458,'N',-6.398958,-48.555712),(273,5,'São João da Ponta',76,1507466,'N',-0.851002,-47.920724),(274,5,'São João de Pirabas',76,1507474,'N',-0.766443,-47.172674),(275,5,'São João do Araguaia',76,1507508,'N',-5.359003,-48.788633),(276,5,'São Miguel do Guamá',76,1507607,'N',-1.617136,-47.482409),(277,5,'São Sebastião da Boa Vista',76,1507706,'N',-1.718851,-49.532312),(278,5,'Sapucaia',76,1507755,'N',-6.942857,-49.703581),(279,5,'Senador José Porfírio',76,1507805,'N',-2.594850,-51.953056),(280,5,'Soure',76,1507904,'N',-0.725926,-48.516013),(281,5,'Tailândia',76,1507953,'N',-2.937080,-48.951282),(282,5,'Terra Alta',76,1507961,'N',-1.034827,-47.907808),(283,5,'Terra Santa',76,1507979,'N',-2.108114,-56.490905),(284,5,'Tomé-Açu',76,1508001,'N',-2.419367,-48.146897),(285,5,'Tracuateua',76,1508035,'N',-1.068784,-46.899478),(286,5,'Trairão',76,1508050,'N',-4.699819,-55.996170),(287,5,'Tucumã',76,1508084,'N',-6.749972,-51.139539),(288,5,'Tucuruí',76,1508100,'N',-3.766889,-49.667184),(289,5,'Ulianópolis',76,1508126,'N',-3.757193,-47.503145),(290,5,'Uruará',76,1508159,'N',-3.706529,-53.737031),(291,5,'Vigia',76,1508209,'N',-0.855533,-48.141499),(292,5,'Viseu',76,1508308,'N',-1.203279,-46.138765),(293,5,'Vitória do Xingu',76,1508357,'N',-2.883766,-52.011260),(294,5,'Xinguara',76,1508407,'N',-7.101513,-49.942701),(295,6,'Serra do Navio',76,1600055,'N',0.897841,-52.003538),(296,6,'Amapá',76,1600105,'N',2.053921,-50.793214),(297,6,'Pedra Branca do Amapari',76,1600154,'N',0.776883,-51.946594),(298,6,'Calçoene',76,1600204,'N',2.496559,-50.944773),(299,6,'Cutias',76,1600212,'N',0.971078,-50.801626),(300,6,'Ferreira Gomes',76,1600238,'N',0.853977,-51.187429),(301,6,'Itaubal',76,1600253,'N',0.600653,-50.700179),(302,6,'Laranjal do Jari',76,1600279,'N',-0.855665,-52.539021),(303,6,'Macapá',76,1600303,'S',0.038951,-51.057405),(304,6,'Mazagão',76,1600402,'N',-0.124396,-51.286077),(305,6,'Oiapoque',76,1600501,'N',3.851131,-51.830553),(306,6,'Porto Grande',76,1600535,'N',0.712555,-51.414449),(307,6,'Pracuúba',76,1600550,'N',1.742508,-50.784254),(308,6,'Santana',76,1600600,'N',-0.038373,-51.172846),(309,6,'Tartarugalzinho',76,1600709,'N',1.509848,-50.912786),(310,6,'Vitória do Jari',76,1600808,'N',-0.918977,-52.419615),(311,7,'Abreulândia',76,1700251,'N',-9.621791,-49.162438),(312,7,'Aguiarnópolis',76,1700301,'N',-6.547171,-47.470457),(313,7,'Aliança do Tocantins',76,1700350,'N',-11.303743,-48.941240),(314,7,'Almas',76,1700400,'N',-11.574523,-47.174172),(315,7,'Alvorada',76,1700707,'N',-12.478815,-49.126811),(316,7,'Ananás',76,1701002,'N',-6.362818,-48.079765),(317,7,'Angico',76,1701051,'N',-6.387753,-47.862078),(318,7,'Aparecida do Rio Negro',76,1701101,'N',-9.955878,-47.976670),(319,7,'Aragominas',76,1701309,'N',-7.164349,-48.523430),(320,7,'Araguacema',76,1701903,'N',-8.801803,-49.561813),(321,7,'Araguaçu',76,1702000,'N',-12.925584,-49.828612),(322,7,'Araguaína',76,1702109,'N',-7.191329,-48.208705),(323,7,'Araguanã',76,1702158,'N',-6.582249,-48.643750),(324,7,'Araguatins',76,1702208,'N',-5.650586,-48.123507),(325,7,'Arapoema',76,1702307,'N',-7.652570,-49.075637),(326,7,'Arraias',76,1702406,'N',-12.934420,-46.946107),(327,7,'Augustinópolis',76,1702554,'N',-5.465414,-47.880957),(328,7,'Aurora do Tocantins',76,1702703,'N',-12.708490,-46.407083),(329,7,'Axixá do Tocantins',76,1702901,'N',-5.624309,-47.774156),(330,7,'Babaçulândia',76,1703008,'N',-7.201865,-47.758816),(331,7,'Bandeirantes do Tocantins',76,1703057,'N',-7.764859,-48.578381),(332,7,'Barra do Ouro',76,1703073,'N',-7.691767,-47.687135),(333,7,'Barrolândia',76,1703107,'N',-9.831653,-48.731461),(334,7,'Bernardo Sayão',76,1703206,'N',-7.868512,-48.899054),(335,7,'Bom Jesus do Tocantins',76,1703305,'N',-8.963348,-48.166380),(336,7,'Brasilândia do Tocantins',76,1703602,'N',-8.384889,-48.485374),(337,7,'Brejinho de Nazaré',76,1703701,'N',-11.010805,-48.558660),(338,7,'Buriti do Tocantins',76,1703800,'N',-5.313539,-48.223250),(339,7,'Cachoeirinha',76,1703826,'N',-6.113242,-47.914198),(340,7,'Campos Lindos',76,1703842,'N',-7.971681,-46.801974),(341,7,'Cariri do Tocantins',76,1703867,'N',-11.888997,-49.171041),(342,7,'Carmolândia',76,1703883,'N',-7.031479,-48.395960),(343,7,'Carrasco Bonito',76,1703891,'N',-5.322661,-48.030633),(344,7,'Caseara',76,1703909,'N',-9.267406,-49.948692),(345,7,'Centenário',76,1704105,'N',-8.958464,-47.338399),(346,7,'Chapada de Areia',76,1704600,'N',-10.141989,-49.183108),(347,7,'Chapada da Natividade',76,1705102,'N',-11.624268,-47.753905),(348,7,'Colinas do Tocantins',76,1705508,'N',-8.054625,-48.481595),(349,7,'Combinado',76,1705557,'N',-12.818608,-46.552072),(350,7,'Conceição do Tocantins',76,1705607,'N',-12.217278,-47.292869),(351,7,'Couto Magalhães',76,1706001,'N',-8.355118,-49.176572),(352,7,'Cristalândia',76,1706100,'N',-10.590725,-49.186300),(353,7,'Crixás do Tocantins',76,1706258,'N',-11.104274,-48.915514),(354,7,'Darcinópolis',76,1706506,'N',-6.712351,-47.752161),(355,7,'Dianópolis',76,1707009,'N',-11.625232,-46.820409),(356,7,'Divinópolis do Tocantins',76,1707108,'N',-9.795301,-49.205413),(357,7,'Dois Irmãos do Tocantins',76,1707207,'N',-9.261297,-49.067339),(358,7,'Dueré',76,1707306,'N',-11.341285,-49.265876),(359,7,'Esperantina',76,1707405,'N',-5.366608,-48.544148),(360,7,'Fátima',76,1707553,'N',-10.752509,-48.898983),(361,7,'Figueirópolis',76,1707652,'N',-12.136780,-49.173847),(362,7,'Filadélfia',76,1707702,'N',-7.337612,-47.484964),(363,7,'Formoso do Araguaia',76,1708205,'N',-11.805142,-49.526860),(364,7,'Fortaleza do Tabocão',76,1708254,'N',-9.058965,-48.517426),(365,7,'Goianorte',76,1708304,'N',-8.770521,-48.936890),(366,7,'Goiatins',76,1709005,'N',-7.709172,-47.315435),(367,7,'Guaraí',76,1709302,'N',-8.836166,-48.508641),(368,7,'Gurupi',76,1709500,'N',-11.729772,-49.071477),(369,7,'Ipueiras',76,1709807,'N',-11.246289,-48.451926),(370,7,'Itacajá',76,1710508,'N',-8.390981,-47.768112),(371,7,'Itaguatins',76,1710706,'N',-5.775385,-47.479936),(372,7,'Itapiratins',76,1710904,'N',-8.384330,-48.111200),(373,7,'Itaporã do Tocantins',76,1711100,'N',-8.568829,-48.693264),(374,7,'Jaú do Tocantins',76,1711506,'N',-12.652926,-48.594608),(375,7,'Juarina',76,1711803,'N',-8.117424,-49.098643),(376,7,'Lagoa da Confusão',76,1711902,'N',-10.788696,-49.620085),(377,7,'Lagoa do Tocantins',76,1711951,'N',-10.296887,-47.561447),(378,7,'Lajeado',76,1712009,'N',-9.744682,-48.358504),(379,7,'Lavandeira',76,1712157,'N',-12.791659,-46.506676),(380,7,'Lizarda',76,1712405,'N',-9.594570,-46.675165),(381,7,'Luzinópolis',76,1712454,'N',-6.193990,-47.856828),(382,7,'Marianópolis do Tocantins',76,1712504,'N',-9.798880,-49.651034),(383,7,'Mateiros',76,1712702,'N',-10.544429,-46.412466),(384,7,'Maurilândia do Tocantins',76,1712801,'N',-5.952566,-47.504880),(385,7,'Miracema do Tocantins',76,1713205,'N',-9.568346,-48.387991),(386,7,'Miranorte',76,1713304,'N',-9.517405,-48.592632),(387,7,'Monte do Carmo',76,1713601,'N',-10.763542,-48.110420),(388,7,'Monte Santo do Tocantins',76,1713700,'N',-10.005591,-48.990891),(389,7,'Palmeiras do Tocantins',76,1713809,'N',-6.611862,-47.558684),(390,7,'Muricilândia',76,1713957,'N',-7.138519,-48.606745),(391,7,'Natividade',76,1714203,'N',-11.705357,-47.727258),(392,7,'Nazaré',76,1714302,'N',-6.372558,-47.666977),(393,7,'Nova Olinda',76,1714880,'N',-7.633315,-48.424807),(394,7,'Nova Rosalândia',76,1715002,'N',-10.566871,-48.906181),(395,7,'Novo Acordo',76,1715101,'N',-9.968486,-47.668148),(396,7,'Novo Alegre',76,1715150,'N',-12.909939,-46.577297),(397,7,'Novo Jardim',76,1715259,'N',-11.815875,-46.630787),(398,7,'Oliveira de Fátima',76,1715507,'N',-10.708363,-48.907402),(399,7,'Palmeirante',76,1715705,'N',-7.857561,-47.934250),(400,7,'Palmeirópolis',76,1715754,'N',-13.039888,-48.413414),(401,7,'Paraíso do Tocantins',76,1716109,'N',-10.171221,-48.886630),(402,7,'Paranã',76,1716208,'N',-12.620481,-47.884084),(403,7,'Pau D\'Arco',76,1716307,'N',-7.539998,-49.363306),(404,7,'Pedro Afonso',76,1716505,'N',-8.964450,-48.177556),(405,7,'Peixe',76,1716604,'N',-12.029774,-48.537811),(406,7,'Pequizeiro',76,1716653,'N',-8.593341,-48.935180),(407,7,'Colméia',76,1716703,'N',-8.729372,-48.757067),(408,7,'Pindorama do Tocantins',76,1717008,'N',-11.138203,-47.575688),(409,7,'Piraquê',76,1717206,'N',-6.769777,-48.293707),(410,7,'Pium',76,1717503,'N',-10.440931,-49.166658),(411,7,'Ponte Alta do Bom Jesus',76,1717800,'N',-12.087813,-46.469587),(412,7,'Ponte Alta do Tocantins',76,1717909,'N',-10.740673,-47.541180),(413,7,'Porto Alegre do Tocantins',76,1718006,'N',-11.607259,-47.047426),(414,7,'Porto Nacional',76,1718204,'N',-10.708570,-48.412153),(415,7,'Praia Norte',76,1718303,'N',-5.396713,-47.814732),(416,7,'Presidente Kennedy',76,1718402,'N',-8.529961,-48.504331),(417,7,'Pugmil',76,1718451,'N',-10.424307,-48.894220),(418,7,'Recursolândia',76,1718501,'N',-8.735360,-47.238041),(419,7,'Riachinho',76,1718550,'N',-6.442211,-48.141046),(420,7,'Rio da Conceição',76,1718659,'N',-11.404940,-46.880400),(421,7,'Rio dos Bois',76,1718709,'N',-9.343742,-48.533048),(422,7,'Rio Sono',76,1718758,'N',-9.347789,-47.899942),(423,7,'Sampaio',76,1718808,'N',-5.349296,-47.875792),(424,7,'Sandolândia',76,1718840,'N',-12.541600,-49.933388),(425,7,'Santa Fé do Araguaia',76,1718865,'N',-7.149936,-48.693942),(426,7,'Santa Maria do Tocantins',76,1718881,'N',-8.774976,-47.745270),(427,7,'Santa Rita do Tocantins',76,1718899,'N',-10.866455,-48.909294),(428,7,'Santa Rosa do Tocantins',76,1718907,'N',-11.451404,-48.119954),(429,7,'Santa Tereza do Tocantins',76,1719004,'N',-10.282362,-47.806288),(430,7,'Santa Terezinha do Tocantins',76,1720002,'N',-6.436998,-47.684285),(431,7,'São Bento do Tocantins',76,1720101,'N',-6.044999,-47.919392),(432,7,'São Félix do Tocantins',76,1720150,'N',-10.173286,-46.654981),(433,7,'São Miguel do Tocantins',76,1720200,'N',-5.553820,-47.573002),(434,7,'São Salvador do Tocantins',76,1720259,'N',-12.747433,-48.232085),(435,7,'São Sebastião do Tocantins',76,1720309,'N',-5.258961,-48.203834),(436,7,'São Valério da Natividade',76,1720499,'N',-11.973067,-48.232948),(437,7,'Silvanópolis',76,1720655,'N',-11.149861,-48.179824),(438,7,'Sítio Novo do Tocantins',76,1720804,'N',-5.604727,-47.637423),(439,7,'Sucupira',76,1720853,'N',-11.986222,-48.911126),(440,7,'Taguatinga',76,1720903,'N',-12.396142,-46.438732),(441,7,'Taipas do Tocantins',76,1720937,'N',-12.192837,-46.984572),(442,7,'Talismã',76,1720978,'N',-12.787538,-49.091118),(443,7,'Palmas',76,1721000,'S',-10.163253,-48.351044),(444,7,'Tocantínia',76,1721109,'N',-9.558148,-48.375880),(445,7,'Tocantinópolis',76,1721208,'N',-6.325634,-47.427413),(446,7,'Tupirama',76,1721257,'N',-8.980570,-48.206685),(447,7,'Tupiratins',76,1721307,'N',-8.395530,-48.122996),(448,7,'Wanderlândia',76,1722081,'N',-6.850126,-47.956268),(449,7,'Xambioá',76,1722107,'N',-6.411885,-48.531601),(450,8,'Açailândia',76,2100055,'N',-4.951377,-47.506665),(451,8,'Afonso Cunha',76,2100105,'N',-4.135015,-43.320869),(452,8,'Água Doce do Maranhão',76,2100154,'N',-2.840278,-42.115551),(453,8,'Alcântara',76,2100204,'N',-2.403277,-44.417013),(454,8,'Aldeias Altas',76,2100303,'N',-4.630779,-43.468735),(455,8,'Altamira do Maranhão',76,2100402,'N',-4.162269,-45.464676),(456,8,'Alto Alegre do Maranhão',76,2100436,'N',-4.207227,-44.448247),(457,8,'Alto Alegre do Pindaré',76,2100477,'N',-3.665170,-45.842080),(458,8,'Alto Parnaíba',76,2100501,'N',-9.108366,-45.927344),(459,8,'Amapá do Maranhão',76,2100550,'N',-1.680921,-46.009180),(460,8,'Amarante do Maranhão',76,2100600,'N',-5.557662,-46.750638),(461,8,'Anajatuba',76,2100709,'N',-3.257555,-44.620670),(462,8,'Anapurus',76,2100808,'N',-3.667035,-43.105793),(463,8,'Apicum-Açu',76,2100832,'N',-1.530592,-45.076652),(464,8,'Araguanã',76,2100873,'N',-2.949126,-45.668794),(465,8,'Araioses',76,2100907,'N',-2.889256,-41.899139),(466,8,'Arame',76,2100956,'N',-4.886082,-46.013636),(467,8,'Arari',76,2101004,'N',-3.459171,-44.778835),(468,8,'Axixá',76,2101103,'N',-2.837797,-44.054586),(469,8,'Bacabal',76,2101202,'N',-4.231525,-44.781556),(470,8,'Bacabeira',76,2101251,'N',-2.985825,-44.315423),(471,8,'Bacuri',76,2101301,'N',-1.724046,-45.137349),(472,8,'Bacurituba',76,2101350,'N',-2.710872,-44.735742),(473,8,'Balsas',76,2101400,'N',-7.531170,-46.038993),(474,8,'Barão de Grajaú',76,2101509,'N',-6.758955,-43.026453),(475,8,'Barra do Corda',76,2101608,'N',-5.508340,-45.239011),(476,8,'Barreirinhas',76,2101707,'N',-2.750086,-42.827803),(477,8,'Belágua',76,2101731,'N',-3.156772,-43.510062),(478,8,'Bela Vista do Maranhão',76,2101772,'N',-3.737733,-45.248246),(479,8,'Benedito Leite',76,2101806,'N',-7.218800,-44.559857),(480,8,'Bequimão',76,2101905,'N',-2.462063,-44.785730),(481,8,'Bernardo do Mearim',76,2101939,'N',-4.630287,-44.764323),(482,8,'Boa Vista do Gurupi',76,2101970,'N',-1.793296,-46.298710),(483,8,'Bom Jardim',76,2102002,'N',-3.544161,-45.601889),(484,8,'Bom Jesus das Selvas',76,2102036,'N',-4.489968,-46.853241),(485,8,'Bom Lugar',76,2102077,'N',-4.375510,-45.031108),(486,8,'Brejo',76,2102101,'N',-3.679178,-42.750848),(487,8,'Brejo de Areia',76,2102150,'N',-4.330630,-45.582095),(488,8,'Buriti',76,2102200,'N',-3.945572,-42.925106),(489,8,'Buriti Bravo',76,2102309,'N',-5.835288,-43.835622),(490,8,'Buriticupu',76,2102325,'N',-4.325948,-46.451495),(491,8,'Buritirana',76,2102358,'N',-5.588915,-47.017225),(492,8,'Cachoeira Grande',76,2102374,'N',-2.931921,-44.059685),(493,8,'Cajapió',76,2102408,'N',-2.882882,-44.673377),(494,8,'Cajari',76,2102507,'N',-3.323869,-45.007965),(495,8,'Campestre do Maranhão',76,2102556,'N',-6.164717,-47.367633),(496,8,'Cândido Mendes',76,2102606,'N',-1.453889,-45.737268),(497,8,'Cantanhede',76,2102705,'N',-3.628364,-44.381816),(498,8,'Capinzal do Norte',76,2102754,'N',-4.721245,-44.330436),(499,8,'Carolina',76,2102804,'N',-7.330783,-47.470092),(500,8,'Carutapera',76,2102903,'N',-1.200602,-46.023151),(501,8,'Caxias',76,2103000,'N',-4.861675,-43.358539),(502,8,'Cedral',76,2103109,'N',-1.997916,-44.530790),(503,8,'Central do Maranhão',76,2103125,'N',-2.191314,-44.831844),(504,8,'Centro do Guilherme',76,2103158,'N',-2.456985,-46.039960),(505,8,'Centro Novo do Maranhão',76,2103174,'N',-2.144292,-46.128409),(506,8,'Chapadinha',76,2103208,'N',-3.740025,-43.361121),(507,8,'Cidelândia',76,2103257,'N',-5.177421,-47.784233),(508,8,'Codó',76,2103307,'N',-4.451338,-43.886080),(509,8,'Coelho Neto',76,2103406,'N',-4.254738,-43.014014),(510,8,'Colinas',76,2103505,'N',-6.027366,-44.249780),(511,8,'Conceição do Lago-Açu',76,2103554,'N',-3.841118,-44.903016),(512,8,'Coroatá',76,2103604,'N',-4.128976,-44.125599),(513,8,'Cururupu',76,2103703,'N',-1.825521,-44.867762),(514,8,'Davinópolis',76,2103752,'N',-5.534456,-47.404996),(515,8,'Dom Pedro',76,2103802,'N',-5.038448,-44.440010),(516,8,'Duque Bacelar',76,2103901,'N',-4.147819,-42.944180),(517,8,'Esperantinópolis',76,2104008,'N',-4.870301,-44.886069),(518,8,'Estreito',76,2104057,'N',-6.568085,-47.447883),(519,8,'Feira Nova do Maranhão',76,2104073,'N',-6.963136,-46.687355),(520,8,'Fernando Falcão',76,2104081,'N',-6.154978,-44.910707),(521,8,'Formosa da Serra Negra',76,2104099,'N',-6.435304,-46.186357),(522,8,'Fortaleza dos Nogueiras',76,2104107,'N',-6.965926,-46.185558),(523,8,'Fortuna',76,2104206,'N',-5.736224,-44.160628),(524,8,'Godofredo Viana',76,2104305,'N',-1.409800,-45.771755),(525,8,'Gonçalves Dias',76,2104404,'N',-5.143956,-44.305907),(526,8,'Governador Archer',76,2104503,'N',-5.025388,-44.275757),(527,8,'Governador Edison Lobão',76,2104552,'N',-5.747412,-47.368936),(528,8,'Governador Eugênio Barros',76,2104602,'N',-5.322491,-44.246963),(529,8,'Governador Luiz Rocha',76,2104628,'N',-5.472865,-44.070887),(530,8,'Governador Newton Bello',76,2104651,'N',-3.429705,-45.674502),(531,8,'Governador Nunes Freire',76,2104677,'N',-2.134962,-45.881481),(532,8,'Graça Aranha',76,2104701,'N',-5.404821,-44.335791),(533,8,'Grajaú',76,2104800,'N',-5.818548,-46.142396),(534,8,'Guimarães',76,2104909,'N',-2.135077,-44.597746),(535,8,'Humberto de Campos',76,2105005,'N',-2.591224,-43.465092),(536,8,'Icatu',76,2105104,'N',-2.774828,-44.065848),(537,8,'Igarapé do Meio',76,2105153,'N',-3.636709,-45.183328),(538,8,'Igarapé Grande',76,2105203,'N',-4.660854,-44.867403),(539,8,'Imperatriz',76,2105302,'N',-5.526524,-47.479811),(540,8,'Itaipava do Grajaú',76,2105351,'N',-5.144582,-45.792683),(541,8,'Itapecuru Mirim',76,2105401,'N',-3.399045,-44.354263),(542,8,'Itinga do Maranhão',76,2105427,'N',-4.455004,-47.527910),(543,8,'Jatobá',76,2105450,'N',-5.819667,-44.219915),(544,8,'Jenipapo dos Vieiras',76,2105476,'N',-5.369425,-45.633379),(545,8,'João Lisboa',76,2105500,'N',-5.453663,-47.405036),(546,8,'Joselândia',76,2105609,'N',-4.972693,-44.699153),(547,8,'Junco do Maranhão',76,2105658,'N',-1.874610,-46.070726),(548,8,'Lago da Pedra',76,2105708,'N',-4.564745,-45.125891),(549,8,'Lago do Junco',76,2105807,'N',-4.607643,-45.051344),(550,8,'Lago Verde',76,2105906,'N',-4.038711,-44.937635),(551,8,'Lagoa do Mato',76,2105922,'N',-6.045277,-43.527559),(552,8,'Lago dos Rodrigues',76,2105948,'N',-4.612376,-44.976442),(553,8,'Lagoa Grande do Maranhão',76,2105963,'N',-4.993124,-45.390614),(554,8,'Lajeado Novo',76,2105989,'N',-6.191609,-47.032448),(555,8,'Lima Campos',76,2106003,'N',-4.517046,-44.469340),(556,8,'Loreto',76,2106102,'N',-7.094454,-45.139242),(557,8,'Luís Domingues',76,2106201,'N',-1.325460,-45.895332),(558,8,'Magalhães de Almeida',76,2106300,'N',-3.396668,-42.201507),(559,8,'Maracaçumé',76,2106326,'N',-2.056165,-45.958639),(560,8,'Marajá do Sena',76,2106359,'N',-4.620313,-45.457238),(561,8,'Maranhãozinho',76,2106375,'N',-2.235617,-45.855611),(562,8,'Mata Roma',76,2106409,'N',-3.619046,-43.120389),(563,8,'Matinha',76,2106508,'N',-3.098400,-45.036429),(564,8,'Matões',76,2106607,'N',-5.522465,-43.201208),(565,8,'Matões do Norte',76,2106631,'N',-3.627519,-44.550245),(566,8,'Milagres do Maranhão',76,2106672,'N',-3.582207,-42.610753),(567,8,'Mirador',76,2106706,'N',-6.377566,-44.362610),(568,8,'Miranda do Norte',76,2106755,'N',-3.562645,-44.584276),(569,8,'Mirinzal',76,2106805,'N',-2.064224,-44.785756),(570,8,'Monção',76,2106904,'N',-3.493932,-45.247585),(571,8,'Montes Altos',76,2107001,'N',-5.828563,-47.070440),(572,8,'Morros',76,2107100,'N',-2.861479,-44.044545),(573,8,'Nina Rodrigues',76,2107209,'N',-3.462464,-43.904485),(574,8,'Nova Colinas',76,2107258,'N',-7.120566,-46.259325),(575,8,'Nova Iorque',76,2107308,'N',-6.733203,-44.048627),(576,8,'Nova Olinda do Maranhão',76,2107357,'N',-2.799887,-45.704536),(577,8,'Olho d\'Água das Cunhãs',76,2107407,'N',-4.137276,-45.119580),(578,8,'Olinda Nova do Maranhão',76,2107456,'N',-2.997478,-45.003235),(579,8,'Paço do Lumiar',76,2107506,'N',-2.528063,-44.098692),(580,8,'Palmeirândia',76,2107605,'N',-2.647774,-44.904464),(581,8,'Paraibano',76,2107704,'N',-6.431825,-43.985762),(582,8,'Parnarama',76,2107803,'N',-5.684467,-43.090401),(583,8,'Passagem Franca',76,2107902,'N',-6.173994,-43.781745),(584,8,'Pastos Bons',76,2108009,'N',-6.604028,-44.088603),(585,8,'Paulino Neves',76,2108058,'N',-2.718206,-42.545424),(586,8,'Paulo Ramos',76,2108108,'N',-4.447957,-45.239980),(587,8,'Pedreiras',76,2108207,'N',-4.569351,-44.603735),(588,8,'Pedro do Rosário',76,2108256,'N',-2.968115,-45.346454),(589,8,'Penalva',76,2108306,'N',-3.293233,-45.176462),(590,8,'Peri Mirim',76,2108405,'N',-2.573055,-44.850291),(591,8,'Peritoró',76,2108454,'N',-4.370225,-44.325854),(592,8,'Pindaré-Mirim',76,2108504,'N',-3.605501,-45.346868),(593,8,'Pinheiro',76,2108603,'N',-2.522741,-45.083927),(594,8,'Pio XII',76,2108702,'N',-3.887588,-45.169960),(595,8,'Pirapemas',76,2108801,'N',-3.725329,-44.228281),(596,8,'Poção de Pedras',76,2108900,'N',-4.750025,-44.951551),(597,8,'Porto Franco',76,2109007,'N',-6.354182,-47.382165),(598,8,'Porto Rico do Maranhão',76,2109056,'N',-1.857223,-44.583748),(599,8,'Presidente Dutra',76,2109106,'N',-5.282374,-44.492919),(600,8,'Presidente Juscelino',76,2109205,'N',-2.928229,-44.076779),(601,8,'Presidente Médici',76,2109239,'N',-2.383664,-45.820709),(602,8,'Presidente Sarney',76,2109270,'N',-2.595531,-45.371302),(603,8,'Presidente Vargas',76,2109304,'N',-3.402012,-44.033402),(604,8,'Primeira Cruz',76,2109403,'N',-2.510583,-43.442443),(605,8,'Raposa',76,2109452,'N',-2.415075,-44.102516),(606,8,'Riachão',76,2109502,'N',-7.364565,-46.623350),(607,8,'Ribamar Fiquene',76,2109551,'N',-5.933823,-47.383478),(608,8,'Rosário',76,2109601,'N',-2.941543,-44.247519),(609,8,'Sambaíba',76,2109700,'N',-7.138351,-45.344203),(610,8,'Santa Filomena do Maranhão',76,2109759,'N',-5.499767,-44.563714),(611,8,'Santa Helena',76,2109809,'N',-2.234533,-45.305161),(612,8,'Santa Inês',76,2109908,'N',-3.658575,-45.378272),(613,8,'Santa Luzia',76,2110005,'N',-3.968391,-45.665012),(614,8,'Santa Luzia do Paruá',76,2110039,'N',-2.546161,-45.776462),(615,8,'Santa Quitéria do Maranhão',76,2110104,'N',-3.498485,-42.562873),(616,8,'Santa Rita',76,2110203,'N',-3.134117,-44.319948),(617,8,'Santana do Maranhão',76,2110237,'N',-3.113068,-42.400768),(618,8,'Santo Amaro do Maranhão',76,2110278,'N',-2.502721,-43.255285),(619,8,'Santo Antônio dos Lopes',76,2110302,'N',-4.873820,-44.361447),(620,8,'São Benedito do Rio Preto',76,2110401,'N',-3.332766,-43.529992),(621,8,'São Bento',76,2110500,'N',-2.697008,-44.828345),(622,8,'São Bernardo',76,2110609,'N',-3.365437,-42.423010),(623,8,'São Domingos do Azeitão',76,2110658,'N',-6.804425,-44.650424),(624,8,'São Domingos do Maranhão',76,2110708,'N',-5.565642,-44.392879),(625,8,'São Félix de Balsas',76,2110807,'N',-7.084685,-44.811448),(626,8,'São Francisco do Brejão',76,2110856,'N',-5.130201,-47.391137),(627,8,'São Francisco do Maranhão',76,2110906,'N',-6.252798,-42.865322),(628,8,'São João Batista',76,2111003,'N',-2.953333,-44.811762),(629,8,'São João do Carú',76,2111029,'N',-3.560803,-46.254925),(630,8,'São João do Paraíso',76,2111052,'N',-6.466222,-47.050610),(631,8,'São João do Soter',76,2111078,'N',-5.115739,-43.818182),(632,8,'São João dos Patos',76,2111102,'N',-6.498208,-43.702910),(633,8,'São José de Ribamar',76,2111201,'N',-2.555859,-44.057548),(634,8,'São José dos Basílios',76,2111250,'N',-5.048687,-44.582447),(635,8,'São Luís',76,2111300,'S',-2.531886,-44.297919),(636,8,'São Luís Gonzaga do Maranhão',76,2111409,'N',-4.373918,-44.662708),(637,8,'São Mateus do Maranhão',76,2111508,'N',-4.034551,-44.468563),(638,8,'São Pedro da Água Branca',76,2111532,'N',-5.088911,-48.423624),(639,8,'São Pedro dos Crentes',76,2111573,'N',-6.828556,-46.532580),(640,8,'São Raimundo das Mangabeiras',76,2111607,'N',-7.026963,-45.484831),(641,8,'São Raimundo do Doca Bezerra',76,2111631,'N',-5.103182,-45.084163),(642,8,'São Roberto',76,2111672,'N',-5.017367,-44.991901),(643,8,'São Vicente Ferrer',76,2111706,'N',-2.890731,-44.886905),(644,8,'Satubinha',76,2111722,'N',-4.035735,-45.233630),(645,8,'Senador Alexandre Costa',76,2111748,'N',-5.261077,-44.056302),(646,8,'Senador La Rocque',76,2111763,'N',-5.441832,-47.289191),(647,8,'Serrano do Maranhão',76,2111789,'N',-1.852646,-45.114641),(648,8,'Sítio Novo',76,2111805,'N',-5.870630,-46.694983),(649,8,'Sucupira do Norte',76,2111904,'N',-6.478284,-44.188603),(650,8,'Sucupira do Riachão',76,2111953,'N',-6.420108,-43.545853),(651,8,'Tasso Fragoso',76,2112001,'N',-8.479831,-45.744124),(652,8,'Timbiras',76,2112100,'N',-4.253841,-43.938434),(653,8,'Timon',76,2112209,'N',-5.100681,-42.833728),(654,8,'Trizidela do Vale',76,2112233,'N',-4.570127,-44.610685),(655,8,'Tufilândia',76,2112274,'N',-3.676404,-45.633916),(656,8,'Tuntum',76,2112308,'N',-5.249656,-44.649012),(657,8,'Turiaçu',76,2112407,'N',-1.669022,-45.369152),(658,8,'Turilândia',76,2112456,'N',-2.228834,-45.306765),(659,8,'Tutóia',76,2112506,'N',-2.763550,-42.276847),(660,8,'Urbano Santos',76,2112605,'N',-3.208409,-43.404248),(661,8,'Vargem Grande',76,2112704,'N',-3.541896,-43.916664),(662,8,'Viana',76,2112803,'N',-3.214563,-45.001307),(663,8,'Vila Nova dos Martírios',76,2112852,'N',-5.183512,-48.138926),(664,8,'Vitória do Mearim',76,2112902,'N',-3.482047,-44.869572),(665,8,'Vitorino Freire',76,2113009,'N',-4.291187,-45.244185),(666,8,'Zé Doca',76,2114007,'N',-3.275481,-45.657698),(667,9,'Acauã',76,2200053,'N',-8.220787,-41.083638),(668,9,'Agricolândia',76,2200103,'N',-5.795502,-42.659183),(669,9,'Água Branca',76,2200202,'N',-5.893266,-42.635131),(670,9,'Alagoinha do Piauí',76,2200251,'N',-7.008175,-40.934635),(671,9,'Alegrete do Piauí',76,2200277,'N',-7.245349,-40.857863),(672,9,'Alto Longá',76,2200301,'N',-5.250993,-42.210322),(673,9,'Altos',76,2200400,'N',-5.036546,-42.460948),(674,9,'Alvorada do Gurguéia',76,2200459,'N',-8.443959,-43.863072),(675,9,'Amarante',76,2200509,'N',-6.246611,-42.853693),(676,9,'Angical do Piauí',76,2200608,'N',-6.087242,-42.743866),(677,9,'Anísio de Abreu',76,2200707,'N',-9.174919,-43.034853),(678,9,'Antônio Almeida',76,2200806,'N',-7.219356,-44.196535),(679,9,'Aroazes',76,2200905,'N',-6.112850,-41.797453),(680,9,'Aroeiras do Itaim',76,2200954,'N',-7.278745,-41.563204),(681,9,'Arraial',76,2201002,'N',-6.650827,-42.536567),(682,9,'Assunção do Piauí',76,2201051,'N',-5.864914,-41.050830),(683,9,'Avelino Lopes',76,2201101,'N',-10.134745,-43.941510),(684,9,'Baixa Grande do Ribeiro',76,2201150,'N',-7.853352,-45.212815),(685,9,'Barra D\'Alcântara',76,2201176,'N',-6.518873,-42.105002),(686,9,'Barras',76,2201200,'N',-4.243093,-42.295340),(687,9,'Barreiras do Piauí',76,2201309,'N',-9.921247,-45.477788),(688,9,'Barro Duro',76,2201408,'N',-5.812360,-42.513378),(689,9,'Batalha',76,2201507,'N',-4.020412,-42.075219),(690,9,'Bela Vista do Piauí',76,2201556,'N',-7.972185,-41.871380),(691,9,'Belém do Piauí',76,2201572,'N',-7.370140,-40.970302),(692,9,'Beneditinos',76,2201606,'N',-5.447603,-42.370617),(693,9,'Bertolínia',76,2201705,'N',-7.628625,-43.954388),(694,9,'Betânia do Piauí',76,2201739,'N',-8.145666,-40.796622),(695,9,'Boa Hora',76,2201770,'N',-4.409010,-42.125296),(696,9,'Bocaina',76,2201804,'N',-6.954842,-41.322341),(697,9,'Bom Jesus',76,2201903,'N',-9.070949,-44.360525),(698,9,'Bom Princípio do Piauí',76,2201919,'N',-3.189859,-41.645210),(699,9,'Bonfim do Piauí',76,2201929,'N',-9.166561,-42.879663),(700,9,'Boqueirão do Piauí',76,2201945,'N',-4.485820,-42.103627),(701,9,'Brasileira',76,2201960,'N',-4.137829,-41.789260),(702,9,'Brejo do Piauí',76,2201988,'N',-8.207065,-42.830302),(703,9,'Buriti dos Lopes',76,2202000,'N',-3.172721,-41.869909),(704,9,'Buriti dos Montes',76,2202026,'N',-5.312067,-41.101851),(705,9,'Cabeceiras do Piauí',76,2202059,'N',-4.471331,-42.308316),(706,9,'Cajazeiras do Piauí',76,2202075,'N',-6.794184,-42.396727),(707,9,'Cajueiro da Praia',76,2202083,'N',-2.929227,-41.347150),(708,9,'Caldeirão Grande do Piauí',76,2202091,'N',-7.331560,-40.637419),(709,9,'Campinas do Piauí',76,2202109,'N',-7.654778,-41.880745),(710,9,'Campo Alegre do Fidalgo',76,2202117,'N',-8.374480,-41.832013),(711,9,'Campo Grande do Piauí',76,2202133,'N',-7.135993,-41.031201),(712,9,'Campo Largo do Piauí',76,2202174,'N',-3.807869,-42.626041),(713,9,'Campo Maior',76,2202208,'N',-4.829114,-42.166745),(714,9,'Canavieira',76,2202251,'N',-7.694622,-43.719428),(715,9,'Canto do Buriti',76,2202307,'N',-8.108232,-42.944021),(716,9,'Capitão de Campos',76,2202406,'N',-4.458559,-41.943522),(717,9,'Capitão Gervásio Oliveira',76,2202455,'N',-8.496838,-41.816116),(718,9,'Caracol',76,2202505,'N',-9.276765,-43.334200),(719,9,'Caraúbas do Piauí',76,2202539,'N',-3.478591,-41.841208),(720,9,'Caridade do Piauí',76,2202554,'N',-7.728652,-40.990335),(721,9,'Castelo do Piauí',76,2202604,'N',-5.321544,-41.547316),(722,9,'Caxingó',76,2202653,'N',-3.426938,-41.882684),(723,9,'Cocal',76,2202703,'N',-3.470453,-41.556845),(724,9,'Cocal de Telha',76,2202711,'N',-4.553816,-41.979048),(725,9,'Cocal dos Alves',76,2202729,'N',-3.606073,-41.455419),(726,9,'Coivaras',76,2202737,'N',-5.091308,-42.207316),(727,9,'Colônia do Gurguéia',76,2202752,'N',-8.187574,-43.796017),(728,9,'Colônia do Piauí',76,2202778,'N',-7.223658,-42.177119),(729,9,'Conceição do Canindé',76,2202802,'N',-7.882704,-41.596634),(730,9,'Coronel José Dias',76,2202851,'N',-8.816369,-42.470357),(731,9,'Corrente',76,2202901,'N',-10.440936,-45.163313),(732,9,'Cristalândia do Piauí',76,2203008,'N',-10.647804,-45.186031),(733,9,'Cristino Castro',76,2203107,'N',-8.820186,-44.224415),(734,9,'Curimatá',76,2203206,'N',-10.031292,-44.300722),(735,9,'Currais',76,2203230,'N',-9.012434,-44.403002),(736,9,'Curralinhos',76,2203255,'N',-5.620453,-42.832211),(737,9,'Curral Novo do Piauí',76,2203271,'N',-7.830797,-40.901069),(738,9,'Demerval Lobão',76,2203305,'N',-5.358465,-42.674229),(739,9,'Dirceu Arcoverde',76,2203354,'N',-9.335200,-42.439570),(740,9,'Dom Expedito Lopes',76,2203404,'N',-6.957902,-41.652385),(741,9,'Domingos Mourão',76,2203420,'N',-4.253434,-41.271881),(742,9,'Dom Inocêncio',76,2203453,'N',-9.008075,-41.976851),(743,9,'Elesbão Veloso',76,2203503,'N',-6.201719,-42.138144),(744,9,'Eliseu Martins',76,2203602,'N',-8.096462,-43.664811),(745,9,'Esperantina',76,2203701,'N',-3.895605,-42.235365),(746,9,'Fartura do Piauí',76,2203750,'N',-9.478606,-42.794401),(747,9,'Flores do Piauí',76,2203800,'N',-7.791776,-42.924306),(748,9,'Floresta do Piauí',76,2203859,'N',-7.466795,-41.800314),(749,9,'Floriano',76,2203909,'N',-6.769672,-43.020645),(750,9,'Francinópolis',76,2204006,'N',-6.395293,-42.263366),(751,9,'Francisco Ayres',76,2204105,'N',-6.623344,-42.691128),(752,9,'Francisco Macedo',76,2204154,'N',-7.327871,-40.795567),(753,9,'Francisco Santos',76,2204204,'N',-6.994171,-41.136157),(754,9,'Fronteiras',76,2204303,'N',-7.088413,-40.617233),(755,9,'Geminiano',76,2204352,'N',-7.158418,-41.357580),(756,9,'Gilbués',76,2204402,'N',-9.834570,-45.346920),(757,9,'Guadalupe',76,2204501,'N',-6.785247,-43.566924),(758,9,'Guaribas',76,2204550,'N',-9.395111,-43.687721),(759,9,'Hugo Napoleão',76,2204600,'N',-5.987788,-42.562563),(760,9,'Ilha Grande',76,2204659,'N',-2.854009,-41.819773),(761,9,'Inhuma',76,2204709,'N',-6.667120,-41.710194),(762,9,'Ipiranga do Piauí',76,2204808,'N',-6.826933,-41.739914),(763,9,'Isaías Coelho',76,2204907,'N',-7.734311,-41.679448),(764,9,'Itainópolis',76,2205003,'N',-7.451281,-41.480025),(765,9,'Itaueira',76,2205102,'N',-7.608117,-43.025497),(766,9,'Jacobina do Piauí',76,2205151,'N',-7.936264,-41.210762),(767,9,'Jaicós',76,2205201,'N',-7.353152,-41.146475),(768,9,'Jardim do Mulato',76,2205250,'N',-6.096578,-42.633960),(769,9,'Jatobá do Piauí',76,2205276,'N',-4.773159,-41.819822),(770,9,'Jerumenha',76,2205300,'N',-7.084632,-43.502743),(771,9,'João Costa',76,2205359,'N',-8.489126,-42.417849),(772,9,'Joaquim Pires',76,2205409,'N',-3.513104,-42.187690),(773,9,'Joca Marques',76,2205458,'N',-3.488034,-42.427737),(774,9,'José de Freitas',76,2205508,'N',-4.763051,-42.578375),(775,9,'Juazeiro do Piauí',76,2205516,'N',-5.161373,-41.702601),(776,9,'Júlio Borges',76,2205524,'N',-10.326787,-44.243701),(777,9,'Jurema',76,2205532,'N',-9.222025,-43.133110),(778,9,'Lagoinha do Piauí',76,2205540,'N',-5.836583,-42.627384),(779,9,'Lagoa Alegre',76,2205557,'N',-4.508730,-42.616743),(780,9,'Lagoa do Barro do Piauí',76,2205565,'N',-8.482437,-41.530275),(781,9,'Lagoa de São Francisco',76,2205573,'N',-4.392746,-41.605469),(782,9,'Lagoa do Piauí',76,2205581,'N',-5.412144,-42.649013),(783,9,'Lagoa do Sítio',76,2205599,'N',-6.515348,-41.582386),(784,9,'Landri Sales',76,2205607,'N',-7.266600,-43.931046),(785,9,'Luís Correia',76,2205706,'N',-2.881567,-41.664567),(786,9,'Luzilândia',76,2205805,'N',-3.460818,-42.371638),(787,9,'Madeiro',76,2205854,'N',-3.484212,-42.505141),(788,9,'Manoel Emídio',76,2205904,'N',-8.011359,-43.875475),(789,9,'Marcolândia',76,2205953,'N',-7.443557,-40.662854),(790,9,'Marcos Parente',76,2206001,'N',-7.119295,-43.888314),(791,9,'Massapê do Piauí',76,2206050,'N',-7.465483,-41.123855),(792,9,'Matias Olímpio',76,2206100,'N',-3.711027,-42.558629),(793,9,'Miguel Alves',76,2206209,'N',-4.168216,-42.893167),(794,9,'Miguel Leão',76,2206308,'N',-5.682242,-42.735830),(795,9,'Milton Brandão',76,2206357,'N',-4.699953,-41.447960),(796,9,'Monsenhor Gil',76,2206407,'N',-5.551486,-42.617399),(797,9,'Monsenhor Hipólito',76,2206506,'N',-7.003502,-41.032893),(798,9,'Monte Alegre do Piauí',76,2206605,'N',-9.755834,-45.295740),(799,9,'Morro Cabeça no Tempo',76,2206654,'N',-9.719319,-43.901874),(800,9,'Morro do Chapéu do Piauí',76,2206670,'N',-3.742255,-42.309063),(801,9,'Murici dos Portelas',76,2206696,'N',-3.323860,-42.096769),(802,9,'Nazaré do Piauí',76,2206704,'N',-6.967128,-42.668227),(803,9,'Nossa Senhora de Nazaré',76,2206753,'N',-4.626932,-42.179303),(804,9,'Nossa Senhora dos Remédios',76,2206803,'N',-3.991225,-42.623951),(805,9,'Novo Oriente do Piauí',76,2206902,'N',-6.449405,-41.928722),(806,9,'Novo Santo Antônio',76,2206951,'N',-5.286058,-41.934507),(807,9,'Oeiras',76,2207009,'N',-7.016418,-42.131406),(808,9,'Olho D\'Água do Piauí',76,2207108,'N',-5.847159,-42.578552),(809,9,'Padre Marcos',76,2207207,'N',-7.354712,-40.905862),(810,9,'Paes Landim',76,2207306,'N',-7.775563,-42.256958),(811,9,'Pajeú do Piauí',76,2207355,'N',-7.852520,-42.816936),(812,9,'Palmeira do Piauí',76,2207405,'N',-8.729501,-44.232569),(813,9,'Palmeirais',76,2207504,'N',-5.979797,-43.061844),(814,9,'Paquetá',76,2207553,'N',-7.101466,-41.701385),(815,9,'Parnaguá',76,2207603,'N',-10.217181,-44.634315),(816,9,'Parnaíba',76,2207702,'N',-2.903360,-41.778171),(817,9,'Passagem Franca do Piauí',76,2207751,'N',-5.856247,-42.440527),(818,9,'Patos do Piauí',76,2207777,'N',-7.680764,-41.252281),(819,9,'Pau D\'Arco do Piauí',76,2207793,'N',-5.251093,-42.388865),(820,9,'Paulistana',76,2207801,'N',-8.141436,-41.147096),(821,9,'Pavussu',76,2207850,'N',-7.964287,-43.221752),(822,9,'Pedro II',76,2207900,'N',-4.427055,-41.458560),(823,9,'Pedro Laurentino',76,2207934,'N',-8.066883,-42.286074),(824,9,'Nova Santa Rita',76,2207959,'N',-8.074965,-42.048262),(825,9,'Picos',76,2208007,'N',-7.081374,-41.468827),(826,9,'Pimenteiras',76,2208106,'N',-6.241688,-41.415159),(827,9,'Pio IX',76,2208205,'N',-6.832687,-40.618273),(828,9,'Piracuruca',76,2208304,'N',-3.929287,-41.709042),(829,9,'Piripiri',76,2208403,'N',-4.276069,-41.778505),(830,9,'Porto',76,2208502,'N',-3.891423,-42.710926),(831,9,'Porto Alegre do Piauí',76,2208551,'N',-6.971725,-44.194837),(832,9,'Prata do Piauí',76,2208601,'N',-5.664798,-42.204224),(833,9,'Queimada Nova',76,2208650,'N',-8.585425,-41.417025),(834,9,'Redenção do Gurguéia',76,2208700,'N',-9.493448,-44.581214),(835,9,'Regeneração',76,2208809,'N',-6.240183,-42.685024),(836,9,'Riacho Frio',76,2208858,'N',-10.128728,-44.952530),(837,9,'Ribeira do Piauí',76,2208874,'N',-7.690576,-42.714043),(838,9,'Ribeiro Gonçalves',76,2208908,'N',-7.558034,-45.245639),(839,9,'Rio Grande do Piauí',76,2209005,'N',-7.770857,-43.140183),(840,9,'Santa Cruz do Piauí',76,2209104,'N',-7.177626,-41.761926),(841,9,'Santa Cruz dos Milagres',76,2209153,'N',-5.808121,-41.958446),(842,9,'Santa Filomena',76,2209203,'N',-9.106796,-45.920556),(843,9,'Santa Luz',76,2209302,'N',-8.944624,-44.129586),(844,9,'Santana do Piauí',76,2209351,'N',-6.949072,-41.518481),(845,9,'Santa Rosa do Piauí',76,2209377,'N',-6.801455,-42.280814),(846,9,'Santo Antônio de Lisboa',76,2209401,'N',-6.981848,-41.233765),(847,9,'Santo Antônio dos Milagres',76,2209450,'N',-6.046718,-42.711197),(848,9,'Santo Inácio do Piauí',76,2209500,'N',-7.422337,-41.918213),(849,9,'São Braz do Piauí',76,2209559,'N',-9.062561,-42.999073),(850,9,'São Félix do Piauí',76,2209609,'N',-5.932868,-42.113503),(851,9,'São Francisco de Assis do Piauí',76,2209658,'N',-8.237755,-41.689597),(852,9,'São Francisco do Piauí',76,2209708,'N',-7.243976,-42.538532),(853,9,'São Gonçalo do Gurguéia',76,2209757,'N',-10.029940,-45.301406),(854,9,'São Gonçalo do Piauí',76,2209807,'N',-5.989667,-42.698831),(855,9,'São João da Canabrava',76,2209856,'N',-6.818931,-41.346054),(856,9,'São João da Fronteira',76,2209872,'N',-3.938597,-41.256287),(857,9,'São João da Serra',76,2209906,'N',-5.508798,-41.899264),(858,9,'São João da Varjota',76,2209955,'N',-6.919018,-41.863742),(859,9,'São João do Arraial',76,2209971,'N',-3.813169,-42.453126),(860,9,'São João do Piauí',76,2210003,'N',-8.348850,-42.256438),(861,9,'São José do Divino',76,2210052,'N',-3.805716,-41.830109),(862,9,'São José do Peixe',76,2210102,'N',-7.493009,-42.570179),(863,9,'São José do Piauí',76,2210201,'N',-6.870626,-41.479407),(864,9,'São Julião',76,2210300,'N',-7.085315,-40.836913),(865,9,'São Lourenço do Piauí',76,2210359,'N',-9.172002,-42.544352),(866,9,'São Luis do Piauí',76,2210375,'N',-6.828144,-41.322838),(867,9,'São Miguel da Baixa Grande',76,2210383,'N',-5.862299,-42.185377),(868,9,'São Miguel do Fidalgo',76,2210391,'N',-7.584969,-42.370529),(869,9,'São Miguel do Tapuio',76,2210409,'N',-5.500664,-41.319798),(870,9,'São Pedro do Piauí',76,2210508,'N',-5.913952,-42.723660),(871,9,'São Raimundo Nonato',76,2210607,'N',-9.015360,-42.692285),(872,9,'Sebastião Barros',76,2210623,'N',-10.816675,-44.833284),(873,9,'Sebastião Leal',76,2210631,'N',-7.577386,-44.067692),(874,9,'Sigefredo Pacheco',76,2210656,'N',-4.911689,-41.727559),(875,9,'Simões',76,2210706,'N',-7.599137,-40.817509),(876,9,'Simplício Mendes',76,2210805,'N',-7.857957,-41.910910),(877,9,'Socorro do Piauí',76,2210904,'N',-7.864938,-42.504692),(878,9,'Sussuapara',76,2210938,'N',-7.017011,-41.392268),(879,9,'Tamboril do Piauí',76,2210953,'N',-8.400432,-42.909689),(880,9,'Tanque do Piauí',76,2210979,'N',-6.596353,-42.283901),(881,9,'Teresina',76,2211001,'S',-5.086342,-42.805270),(882,9,'União',76,2211100,'N',-4.586018,-42.862930),(883,9,'Uruçuí',76,2211209,'N',-7.229503,-44.560256),(884,9,'Valença do Piauí',76,2211308,'N',-6.398196,-41.740536),(885,9,'Várzea Branca',76,2211357,'N',-9.236541,-42.969445),(886,9,'Várzea Grande',76,2211407,'N',-6.542948,-42.253102),(887,9,'Vera Mendes',76,2211506,'N',-7.602849,-41.479737),(888,9,'Vila Nova do Piauí',76,2211605,'N',-7.141046,-40.937801),(889,9,'Wall Ferraz',76,2211704,'N',-7.235779,-41.908954),(890,10,'Abaiara',76,2300101,'N',-7.356977,-39.047547),(891,10,'Acarape',76,2300150,'N',-4.223138,-38.705624),(892,10,'Acaraú',76,2300200,'N',-2.885311,-40.118241),(893,10,'Acopiara',76,2300309,'N',-6.092762,-39.455705),(894,10,'Aiuaba',76,2300408,'N',-6.563298,-40.123160),(895,10,'Alcântaras',76,2300507,'N',-3.586984,-40.544638),(896,10,'Altaneira',76,2300606,'N',-6.997498,-39.745821),(897,10,'Alto Santo',76,2300705,'N',-5.522082,-38.272778),(898,10,'Amontada',76,2300754,'N',-3.364878,-39.828823),(899,10,'Antonina do Norte',76,2300804,'N',-6.779688,-39.982387),(900,10,'Apuiarés',76,2300903,'N',-3.948019,-39.430423),(901,10,'Aquiraz',76,2301000,'N',-3.906195,-38.389803),(902,10,'Aracati',76,2301109,'N',-4.567066,-37.772753),(903,10,'Aracoiaba',76,2301208,'N',-4.370394,-38.809441),(904,10,'Ararendá',76,2301257,'N',-4.751938,-40.831097),(905,10,'Araripe',76,2301307,'N',-7.206184,-40.137446),(906,10,'Aratuba',76,2301406,'N',-4.416931,-39.047555),(907,10,'Arneiroz',76,2301505,'N',-6.319426,-40.161444),(908,10,'Assaré',76,2301604,'N',-6.872607,-39.871275),(909,10,'Aurora',76,2301703,'N',-6.940392,-38.976991),(910,10,'Baixio',76,2301802,'N',-6.727162,-38.720126),(911,10,'Banabuiú',76,2301851,'N',-5.315047,-38.925785),(912,10,'Barbalha',76,2301901,'N',-7.307172,-39.302316),(913,10,'Barreira',76,2301950,'N',-4.288762,-38.638502),(914,10,'Barro',76,2302008,'N',-7.168209,-38.779881),(915,10,'Barroquinha',76,2302057,'N',-3.009117,-41.139482),(916,10,'Baturité',76,2302107,'N',-4.331205,-38.880021),(917,10,'Beberibe',76,2302206,'N',-4.174763,-38.123273),(918,10,'Bela Cruz',76,2302305,'N',-3.055107,-40.166843),(919,10,'Boa Viagem',76,2302404,'N',-5.125744,-39.733282),(920,10,'Brejo Santo',76,2302503,'N',-7.491638,-38.985514),(921,10,'Camocim',76,2302602,'N',-2.900967,-40.847528),(922,10,'Campos Sales',76,2302701,'N',-7.073384,-40.379003),(923,10,'Canindé',76,2302800,'N',-4.355344,-39.310343),(924,10,'Capistrano',76,2302909,'N',-4.459897,-38.901829),(925,10,'Caridade',76,2303006,'N',-4.224960,-39.193033),(926,10,'Cariré',76,2303105,'N',-3.951612,-40.473845),(927,10,'Caririaçu',76,2303204,'N',-7.041528,-39.284372),(928,10,'Cariús',76,2303303,'N',-6.531128,-39.497689),(929,10,'Carnaubal',76,2303402,'N',-4.163989,-40.935632),(930,10,'Cascavel',76,2303501,'N',-4.131434,-38.239686),(931,10,'Catarina',76,2303600,'N',-6.127556,-39.879466),(932,10,'Catunda',76,2303659,'N',-4.651549,-40.205804),(933,10,'Caucaia',76,2303709,'N',-3.736487,-38.664018),(934,10,'Cedro',76,2303808,'N',-6.604961,-39.059743),(935,10,'Chaval',76,2303907,'N',-3.038901,-41.244596),(936,10,'Choró',76,2303931,'N',-4.842516,-39.137468),(937,10,'Chorozinho',76,2303956,'N',-4.302171,-38.501286),(938,10,'Coreaú',76,2304004,'N',-3.549488,-40.656951),(939,10,'Crateús',76,2304103,'N',-5.176951,-40.668400),(940,10,'Crato',76,2304202,'N',-7.231753,-39.408390),(941,10,'Croatá',76,2304236,'N',-4.414057,-40.909045),(942,10,'Cruz',76,2304251,'N',-2.916708,-40.171279),(943,10,'Deputado Irapuan Pinheiro',76,2304269,'N',-5.908962,-39.261542),(944,10,'Ererê',76,2304277,'N',-6.031333,-38.347259),(945,10,'Eusébio',76,2304285,'N',-3.886973,-38.445122),(946,10,'Farias Brito',76,2304301,'N',-6.927110,-39.570835),(947,10,'Forquilha',76,2304350,'N',-3.798958,-40.258769),(948,10,'Fortaleza',76,2304400,'S',-3.723805,-38.589928),(949,10,'Fortim',76,2304459,'N',-4.449805,-37.798975),(950,10,'Frecheirinha',76,2304509,'N',-3.760612,-40.821405),(951,10,'General Sampaio',76,2304608,'N',-4.051041,-39.453530),(952,10,'Graça',76,2304657,'N',-4.046939,-40.755525),(953,10,'Granja',76,2304707,'N',-3.118952,-40.829939),(954,10,'Granjeiro',76,2304806,'N',-6.888884,-39.220309),(955,10,'Groaíras',76,2304905,'N',-3.911954,-40.382146),(956,10,'Guaiúba',76,2304954,'N',-4.040244,-38.634435),(957,10,'Guaraciaba do Norte',76,2305001,'N',-4.162451,-40.752633),(958,10,'Guaramiranga',76,2305100,'N',-4.262051,-38.940633),(959,10,'Hidrolândia',76,2305209,'N',-4.407999,-40.401817),(960,10,'Horizonte',76,2305233,'N',-4.093278,-38.494240),(961,10,'Ibaretama',76,2305266,'N',-4.818652,-38.821678),(962,10,'Ibiapina',76,2305308,'N',-3.936131,-40.893929),(963,10,'Ibicuitinga',76,2305332,'N',-4.969166,-38.640863),(964,10,'Icapuí',76,2305357,'N',-4.715549,-37.353563),(965,10,'Icó',76,2305407,'N',-6.403031,-38.863085),(966,10,'Iguatu',76,2305506,'N',-6.360555,-39.299906),(967,10,'Independência',76,2305605,'N',-5.398028,-40.309348),(968,10,'Ipaporanga',76,2305654,'N',-4.900630,-40.757966),(969,10,'Ipaumirim',76,2305704,'N',-6.788361,-38.715904),(970,10,'Ipu',76,2305803,'N',-4.313432,-40.718726),(971,10,'Ipueiras',76,2305902,'N',-4.543785,-40.715697),(972,10,'Iracema',76,2306009,'N',-5.809843,-38.304662),(973,10,'Irauçuba',76,2306108,'N',-3.745419,-39.792238),(974,10,'Itaiçaba',76,2306207,'N',-4.683405,-37.821630),(975,10,'Itaitinga',76,2306256,'N',-3.970459,-38.526405),(976,10,'Itapagé',76,2306306,'N',-3.685673,-39.583533),(977,10,'Itapipoca',76,2306405,'N',-3.499436,-39.583482),(978,10,'Itapiúna',76,2306504,'N',-4.554740,-38.920674),(979,10,'Itarema',76,2306553,'N',-2.923348,-39.915678),(980,10,'Itatira',76,2306603,'N',-4.528923,-39.617904),(981,10,'Jaguaretama',76,2306702,'N',-5.610890,-38.762526),(982,10,'Jaguaribara',76,2306801,'N',-5.457502,-38.463097),(983,10,'Jaguaribe',76,2306900,'N',-5.886459,-38.623005),(984,10,'Jaguaruana',76,2307007,'N',-4.839555,-37.782391),(985,10,'Jardim',76,2307106,'N',-7.585536,-39.284164),(986,10,'Jati',76,2307205,'N',-7.692742,-39.005139),(987,10,'Jijoca de Jericoacoara',76,2307254,'N',-2.899683,-40.438735),(988,10,'Juazeiro do Norte',76,2307304,'N',-7.210766,-39.316993),(989,10,'Jucás',76,2307403,'N',-6.522549,-39.526776),(990,10,'Lavras da Mangabeira',76,2307502,'N',-6.754748,-38.967275),(991,10,'Limoeiro do Norte',76,2307601,'N',-5.150239,-38.099095),(992,10,'Madalena',76,2307635,'N',-4.852434,-39.575789),(993,10,'Maracanaú',76,2307650,'N',-3.876964,-38.624419),(994,10,'Maranguape',76,2307700,'N',-3.891869,-38.685851),(995,10,'Marco',76,2307809,'N',-3.120707,-40.151644),(996,10,'Martinópole',76,2307908,'N',-3.225012,-40.699355),(997,10,'Massapê',76,2308005,'N',-3.523871,-40.342135),(998,10,'Mauriti',76,2308104,'N',-7.387398,-38.772795),(999,10,'Meruoca',76,2308203,'N',-3.539007,-40.450881),(1000,10,'Milagres',76,2308302,'N',-7.310428,-38.943157),(1001,10,'Milhã',76,2308351,'N',-5.679564,-39.203574),(1002,10,'Miraíma',76,2308377,'N',-3.568600,-39.970065),(1003,10,'Missão Velha',76,2308401,'N',-7.243232,-39.145198),(1004,10,'Mombaça',76,2308500,'N',-5.747005,-39.624405),(1005,10,'Monsenhor Tabosa',76,2308609,'N',-4.783091,-40.070067),(1006,10,'Morada Nova',76,2308708,'N',-5.096952,-38.364907),(1007,10,'Moraújo',76,2308807,'N',-3.466363,-40.683599),(1008,10,'Morrinhos',76,2308906,'N',-3.228831,-40.124179),(1009,10,'Mucambo',76,2309003,'N',-3.906030,-40.745280),(1010,10,'Mulungu',76,2309102,'N',-4.299528,-38.993066),(1011,10,'Nova Olinda',76,2309201,'N',-7.084103,-39.679485),(1012,10,'Nova Russas',76,2309300,'N',-4.706808,-40.565303),(1013,10,'Novo Oriente',76,2309409,'N',-5.533865,-40.774767),(1014,10,'Ocara',76,2309458,'N',-4.485067,-38.598538),(1015,10,'Orós',76,2309508,'N',-6.242799,-38.913596),(1016,10,'Pacajus',76,2309607,'N',-4.170541,-38.467022),(1017,10,'Pacatuba',76,2309706,'N',-3.986120,-38.618299),(1018,10,'Pacoti',76,2309805,'N',-4.224765,-38.925889),(1019,10,'Pacujá',76,2309904,'N',-3.978394,-40.696736),(1020,10,'Palhano',76,2310001,'N',-4.743945,-37.966235),(1021,10,'Palmácia',76,2310100,'N',-4.148982,-38.845029),(1022,10,'Paracuru',76,2310209,'N',-3.411635,-39.029545),(1023,10,'Paraipaba',76,2310258,'N',-3.436197,-39.148116),(1024,10,'Parambu',76,2310308,'N',-6.210336,-40.694207),(1025,10,'Paramoti',76,2310407,'N',-4.097432,-39.239466),(1026,10,'Pedra Branca',76,2310506,'N',-5.454686,-39.713938),(1027,10,'Penaforte',76,2310605,'N',-7.829915,-39.074128),(1028,10,'Pentecoste',76,2310704,'N',-3.796267,-39.267009),(1029,10,'Pereiro',76,2310803,'N',-6.045077,-38.459136),(1030,10,'Pindoretama',76,2310852,'N',-4.027804,-38.300088),(1031,10,'Piquet Carneiro',76,2310902,'N',-5.808570,-39.419406),(1032,10,'Pires Ferreira',76,2310951,'N',-4.242154,-40.646541),(1033,10,'Poranga',76,2311009,'N',-4.743951,-40.926380),(1034,10,'Porteiras',76,2311108,'N',-7.535746,-39.115331),(1035,10,'Potengi',76,2311207,'N',-7.090179,-40.032133),(1036,10,'Potiretama',76,2311231,'N',-5.721668,-38.157918),(1037,10,'Quiterianópolis',76,2311264,'N',-5.847009,-40.704489),(1038,10,'Quixadá',76,2311306,'N',-4.963700,-39.011745),(1039,10,'Quixelô',76,2311355,'N',-6.251212,-39.202294),(1040,10,'Quixeramobim',76,2311405,'N',-5.198405,-39.294354),(1041,10,'Quixeré',76,2311504,'N',-5.068729,-37.990522),(1042,10,'Redenção',76,2311603,'N',-4.222958,-38.729571),(1043,10,'Reriutaba',76,2311702,'N',-4.141568,-40.584612),(1044,10,'Russas',76,2311801,'N',-4.939738,-37.975431),(1045,10,'Saboeiro',76,2311900,'N',-6.536433,-39.904581),(1046,10,'Salitre',76,2311959,'N',-7.284529,-40.464752),(1047,10,'Santana do Acaraú',76,2312007,'N',-3.459775,-40.209463),(1048,10,'Santana do Cariri',76,2312106,'N',-7.180898,-39.737980),(1049,10,'Santa Quitéria',76,2312205,'N',-4.333271,-40.153508),(1050,10,'São Benedito',76,2312304,'N',-4.044727,-40.864490),(1051,10,'São Gonçalo do Amarante',76,2312403,'N',-3.605633,-38.972076),(1052,10,'São João do Jaguaribe',76,2312502,'N',-5.268631,-38.271941),(1053,10,'São Luís do Curu',76,2312601,'N',-3.673009,-39.241606),(1054,10,'Senador Pompeu',76,2312700,'N',-5.589344,-39.375325),(1055,10,'Senador Sá',76,2312809,'N',-3.351790,-40.463792),(1056,10,'Sobral',76,2312908,'N',-3.688038,-40.348668),(1057,10,'Solonópole',76,2313005,'N',-5.726351,-39.008225),(1058,10,'Tabuleiro do Norte',76,2313104,'N',-5.243804,-38.129737),(1059,10,'Tamboril',76,2313203,'N',-4.833929,-40.319069),(1060,10,'Tarrafas',76,2313252,'N',-6.682590,-39.758494),(1061,10,'Tauá',76,2313302,'N',-6.002999,-40.292625),(1062,10,'Tejuçuoca',76,2313351,'N',-3.989712,-39.576826),(1063,10,'Tianguá',76,2313401,'N',-3.722674,-40.991706),(1064,10,'Trairi',76,2313500,'N',-3.264420,-39.272232),(1065,10,'Tururu',76,2313559,'N',-3.595595,-39.434364),(1066,10,'Ubajara',76,2313609,'N',-3.848491,-40.907144),(1067,10,'Umari',76,2313708,'N',-6.647244,-38.701326),(1068,10,'Umirim',76,2313757,'N',-3.675562,-39.342384),(1069,10,'Uruburetama',76,2313807,'N',-3.623017,-39.508178),(1070,10,'Uruoca',76,2313906,'N',-3.313231,-40.561163),(1071,10,'Varjota',76,2313955,'N',-4.182822,-40.478993),(1072,10,'Várzea Alegre',76,2314003,'N',-6.791846,-39.298933),(1073,10,'Viçosa do Ceará',76,2314102,'N',-3.566013,-41.091629),(1074,11,'Acari',76,2400109,'N',-6.442085,-36.643739),(1075,11,'Açu',76,2400208,'N',-5.571946,-36.917923),(1076,11,'Afonso Bezerra',76,2400307,'N',-5.498734,-36.509148),(1077,11,'Água Nova',76,2400406,'N',-6.204717,-38.290825),(1078,11,'Alexandria',76,2400505,'N',-6.417136,-38.019289),(1079,11,'Almino Afonso',76,2400604,'N',-6.157421,-37.763125),(1080,11,'Alto do Rodrigues',76,2400703,'N',-5.293808,-36.759493),(1081,11,'Angicos',76,2400802,'N',-5.660365,-36.605433),(1082,11,'Antônio Martins',76,2400901,'N',-6.216004,-37.885735),(1083,11,'Apodi',76,2401008,'N',-5.663770,-37.797784),(1084,11,'Areia Branca',76,2401107,'N',-4.952898,-37.131272),(1085,11,'Arês',76,2401206,'N',-6.193712,-35.160636),(1086,11,'Augusto Severo',76,2401305,'N',-5.858114,-37.308873),(1087,11,'Baía Formosa',76,2401404,'N',-6.369992,-35.009036),(1088,11,'Baraúna',76,2401453,'N',-5.076618,-37.618180),(1089,11,'Barcelona',76,2401503,'N',-5.948132,-35.926795),(1090,11,'Bento Fernandes',76,2401602,'N',-5.692383,-35.821699),(1091,11,'Bodó',76,2401651,'N',-5.988045,-36.413838),(1092,11,'Bom Jesus',76,2401701,'N',-5.986319,-35.588803),(1093,11,'Brejinho',76,2401800,'N',-6.192579,-35.357354),(1094,11,'Caiçara do Norte',76,2401859,'N',-5.062994,-36.055857),(1095,11,'Caiçara do Rio do Vento',76,2401909,'N',-5.759087,-35.999790),(1096,11,'Caicó',76,2402006,'N',-6.459139,-37.096489),(1097,11,'Campo Redondo',76,2402105,'N',-6.243383,-36.182505),(1098,11,'Canguaretama',76,2402204,'N',-6.374925,-35.128540),(1099,11,'Caraúbas',76,2402303,'N',-5.791176,-37.553702),(1100,11,'Carnaúba dos Dantas',76,2402402,'N',-6.560733,-36.595252),(1101,11,'Carnaubais',76,2402501,'N',-5.339785,-36.834642),(1102,11,'Ceará-Mirim',76,2402600,'N',-5.640984,-35.424487),(1103,11,'Cerro Corá',76,2402709,'N',-6.034827,-36.345741),(1104,11,'Coronel Ezequiel',76,2402808,'N',-6.383402,-36.214771),(1105,11,'Coronel João Pessoa',76,2402907,'N',-6.260112,-38.440258),(1106,11,'Cruzeta',76,2403004,'N',-6.413176,-36.791705),(1107,11,'Currais Novos',76,2403103,'N',-6.264672,-36.516219),(1108,11,'Doutor Severiano',76,2403202,'N',-6.093687,-38.373683),(1109,11,'Parnamirim',76,2403251,'N',-5.910370,-35.259209),(1110,11,'Encanto',76,2403301,'N',-6.111134,-38.304879),(1111,11,'Equador',76,2403400,'N',-6.945843,-36.716412),(1112,11,'Espírito Santo',76,2403509,'N',-6.335572,-35.317091),(1113,11,'Extremoz',76,2403608,'N',-5.702710,-35.314025),(1114,11,'Felipe Guerra',76,2403707,'N',-5.601962,-37.691385),(1115,11,'Fernando Pedroza',76,2403756,'N',-5.696016,-36.532454),(1116,11,'Florânia',76,2403806,'N',-6.126952,-36.814076),(1117,11,'Francisco Dantas',76,2403905,'N',-6.088097,-38.125650),(1118,11,'Frutuoso Gomes',76,2404002,'N',-6.156233,-37.840961),(1119,11,'Galinhos',76,2404101,'N',-5.091690,-36.274640),(1120,11,'Goianinha',76,2404200,'N',-6.250590,-35.217786),(1121,11,'Governador Dix-Sept Rosado',76,2404309,'N',-5.458914,-37.521912),(1122,11,'Grossos',76,2404408,'N',-4.975515,-37.157484),(1123,11,'Guamaré',76,2404507,'N',-5.107363,-36.318144),(1124,11,'Ielmo Marinho',76,2404606,'N',-5.815315,-35.552829),(1125,11,'Ipanguaçu',76,2404705,'N',-5.497148,-36.852875),(1126,11,'Ipueira',76,2404804,'N',-6.815551,-37.197856),(1127,11,'Itajá',76,2404853,'N',-5.643548,-36.869818),(1128,11,'Itaú',76,2404903,'N',-5.837936,-37.988269),(1129,11,'Jaçanã',76,2405009,'N',-6.424973,-36.205593),(1130,11,'Jandaíra',76,2405108,'N',-5.355280,-36.130585),(1131,11,'Janduís',76,2405207,'N',-6.016093,-37.409211),(1132,11,'Januário Cicco',76,2405306,'N',-6.156098,-35.600892),(1133,11,'Japi',76,2405405,'N',-6.460566,-35.945935),(1134,11,'Jardim de Angicos',76,2405504,'N',-5.652631,-35.969954),(1135,11,'Jardim de Piranhas',76,2405603,'N',-6.380098,-37.349218),(1136,11,'Jardim do Seridó',76,2405702,'N',-6.586336,-36.774582),(1137,11,'João Câmara',76,2405801,'N',-5.538423,-35.816788),(1138,11,'João Dias',76,2405900,'N',-6.276114,-37.796961),(1139,11,'José da Penha',76,2406007,'N',-6.312688,-38.284403),(1140,11,'Jucurutu',76,2406106,'N',-6.033419,-37.020226),(1141,11,'Jundiá',76,2406155,'N',-6.269169,-35.327789),(1142,11,'Lagoa d\'Anta',76,2406205,'N',-6.391502,-35.599795),(1143,11,'Lagoa de Pedras',76,2406304,'N',-6.149739,-35.433483),(1144,11,'Lagoa de Velhos',76,2406403,'N',-5.999916,-35.870699),(1145,11,'Lagoa Nova',76,2406502,'N',-6.097669,-36.458961),(1146,11,'Lagoa Salgada',76,2406601,'N',-6.125818,-35.472498),(1147,11,'Lajes',76,2406700,'N',-5.698830,-36.242735),(1148,11,'Lajes Pintadas',76,2406809,'N',-6.151432,-36.118442),(1149,11,'Lucrécia',76,2406908,'N',-6.116924,-37.815633),(1150,11,'Luís Gomes',76,2407005,'N',-6.414028,-38.386420),(1151,11,'Macaíba',76,2407104,'N',-5.857237,-35.355237),(1152,11,'Macau',76,2407203,'N',-5.113368,-36.634973),(1153,11,'Major Sales',76,2407252,'N',-6.403757,-38.323455),(1154,11,'Marcelino Vieira',76,2407302,'N',-6.293550,-38.166613),(1155,11,'Martins',76,2407401,'N',-6.096347,-37.911327),(1156,11,'Maxaranguape',76,2407500,'N',-5.505456,-35.262075),(1157,11,'Messias Targino',76,2407609,'N',-6.076498,-37.512059),(1158,11,'Montanhas',76,2407708,'N',-6.482243,-35.287692),(1159,11,'Monte Alegre',76,2407807,'N',-6.067877,-35.332099),(1160,11,'Monte das Gameleiras',76,2407906,'N',-6.439466,-35.786607),(1161,11,'Mossoró',76,2408003,'N',-5.193801,-37.356874),(1162,11,'Natal',76,2408102,'S',-5.750899,-35.252255),(1163,11,'Nísia Floresta',76,2408201,'N',-6.090714,-35.211310),(1164,11,'Nova Cruz',76,2408300,'N',-6.480065,-35.432300),(1165,11,'Olho-d\'Água do Borges',76,2408409,'N',-5.959258,-37.711821),(1166,11,'Ouro Branco',76,2408508,'N',-6.699659,-36.946295),(1167,11,'Paraná',76,2408607,'N',-6.485331,-38.311129),(1168,11,'Paraú',76,2408706,'N',-5.777056,-37.101650),(1169,11,'Parazinho',76,2408805,'N',-5.230781,-35.844990),(1170,11,'Parelhas',76,2408904,'N',-6.688755,-36.657805),(1171,11,'Rio do Fogo',76,2408953,'N',-5.271559,-35.384872),(1172,11,'Passa e Fica',76,2409100,'N',-6.429115,-35.647352),(1173,11,'Passagem',76,2409209,'N',-6.274442,-35.375566),(1174,11,'Patu',76,2409308,'N',-6.101532,-37.640102),(1175,11,'Santa Maria',76,2409332,'N',-5.838519,-35.690364),(1176,11,'Pau dos Ferros',76,2409407,'N',-6.114732,-38.203262),(1177,11,'Pedra Grande',76,2409506,'N',-5.149387,-35.875991),(1178,11,'Pedra Preta',76,2409605,'N',-5.581909,-36.103136),(1179,11,'Pedro Avelino',76,2409704,'N',-5.524002,-36.385229),(1180,11,'Pedro Velho',76,2409803,'N',-6.433189,-35.222939),(1181,11,'Pendências',76,2409902,'N',-5.256788,-36.719146),(1182,11,'Pilões',76,2410009,'N',-6.265722,-38.044443),(1183,11,'Poço Branco',76,2410108,'N',-5.618852,-35.655012),(1184,11,'Portalegre',76,2410207,'N',-6.024328,-37.985195),(1185,11,'Porto do Mangue',76,2410256,'N',-5.069670,-36.780538),(1186,11,'Presidente Juscelino',76,2410306,'N',-6.104913,-35.705605),(1187,11,'Pureza',76,2410405,'N',-5.465919,-35.562268),(1188,11,'Rafael Fernandes',76,2410504,'N',-6.186495,-38.222503),(1189,11,'Rafael Godeiro',76,2410603,'N',-6.078297,-37.715974),(1190,11,'Riacho da Cruz',76,2410702,'N',-5.935803,-37.950275),(1191,11,'Riacho de Santana',76,2410801,'N',-6.264731,-38.314833),(1192,11,'Riachuelo',76,2410900,'N',-5.813947,-35.826275),(1193,11,'Rodolfo Fernandes',76,2411007,'N',-5.787994,-38.062874),(1194,11,'Tibau',76,2411056,'N',-4.841437,-37.251303),(1195,11,'Ruy Barbosa',76,2411106,'N',-5.879429,-35.935484),(1196,11,'Santa Cruz',76,2411205,'N',-6.230076,-36.020517),(1197,11,'Santana do Matos',76,2411403,'N',-5.957727,-36.654105),(1198,11,'Santana do Seridó',76,2411429,'N',-6.770152,-36.736852),(1199,11,'Santo Antônio',76,2411502,'N',-6.305174,-35.475137),(1200,11,'São Bento do Norte',76,2411601,'N',-5.059501,-36.035431),(1201,11,'São Bento do Trairí',76,2411700,'N',-6.344481,-36.086888),(1202,11,'São Fernando',76,2411809,'N',-6.383861,-37.185403),(1203,11,'São Francisco do Oeste',76,2411908,'N',-6.000637,-38.169296),(1204,11,'São Gonçalo do Amarante',76,2412005,'N',-5.789556,-35.331156),(1205,11,'São João do Sabugi',76,2412104,'N',-6.711224,-37.204140),(1206,11,'São José de Mipibu',76,2412203,'N',-6.070466,-35.240275),(1207,11,'São José do Campestre',76,2412302,'N',-6.315564,-35.712115),(1208,11,'São José do Seridó',76,2412401,'N',-6.448799,-36.883259),(1209,11,'São Miguel',76,2412500,'N',-6.212343,-38.496344),(1210,11,'São Miguel do Gostoso',76,2412559,'N',-5.122857,-35.641284),(1211,11,'São Paulo do Potengi',76,2412609,'N',-5.899820,-35.764370),(1212,11,'São Pedro',76,2412708,'N',-5.897980,-35.640311),(1213,11,'São Rafael',76,2412807,'N',-5.800934,-36.890398),(1214,11,'São Tomé',76,2412906,'N',-5.973022,-36.073663),(1215,11,'São Vicente',76,2413003,'N',-6.214964,-36.688662),(1216,11,'Senador Elói de Souza',76,2413102,'N',-6.036226,-35.695664),(1217,11,'Senador Georgino Avelino',76,2413201,'N',-6.158694,-35.124176),(1218,11,'Serra de São Bento',76,2413300,'N',-6.415367,-35.703490),(1219,11,'Serra do Mel',76,2413359,'N',-5.165241,-37.041301),(1220,11,'Serra Negra do Norte',76,2413409,'N',-6.663984,-37.394973),(1221,11,'Serrinha',76,2413508,'N',-6.277092,-35.501343),(1222,11,'Serrinha dos Pintos',76,2413557,'N',-6.114129,-37.961579),(1223,11,'Severiano Melo',76,2413607,'N',-5.778188,-37.956581),(1224,11,'Sítio Novo',76,2413706,'N',-6.104092,-35.910449),(1225,11,'Taboleiro Grande',76,2413805,'N',-5.926752,-38.043568),(1226,11,'Taipu',76,2413904,'N',-5.619667,-35.598847),(1227,11,'Tangará',76,2414001,'N',-6.197357,-35.800190),(1228,11,'Tenente Ananias',76,2414100,'N',-6.477544,-38.179298),(1229,11,'Tenente Laurentino Cruz',76,2414159,'N',-6.147230,-36.720660),(1230,11,'Tibau do Sul',76,2414209,'N',-6.188072,-35.092600),(1231,11,'Timbaúba dos Batistas',76,2414308,'N',-6.463289,-37.271340),(1232,11,'Touros',76,2414407,'N',-5.202607,-35.455293),(1233,11,'Triunfo Potiguar',76,2414456,'N',-5.866959,-37.183797),(1234,11,'Umarizal',76,2414506,'N',-5.989902,-37.813258),(1235,11,'Upanema',76,2414605,'N',-5.641798,-37.260147),(1236,11,'Várzea',76,2414704,'N',-6.348800,-35.374791),(1237,11,'Venha-Ver',76,2414753,'N',-6.319423,-38.491230),(1238,11,'Vera Cruz',76,2414803,'N',-6.045608,-35.428110),(1239,11,'Viçosa',76,2414902,'N',-5.991857,-37.947409),(1240,11,'Vila Flor',76,2415008,'N',-6.312792,-35.076127),(1241,12,'Água Branca',76,2500106,'N',-7.511070,-37.642209),(1242,12,'Aguiar',76,2500205,'N',-7.094806,-38.177582),(1243,12,'Alagoa Grande',76,2500304,'N',-7.036775,-35.633892),(1244,12,'Alagoa Nova',76,2500403,'N',-7.057799,-35.759457),(1245,12,'Alagoinha',76,2500502,'N',-6.948140,-35.545491),(1246,12,'Alcantil',76,2500536,'N',-7.741477,-36.060604),(1247,12,'Algodão de Jandaíra',76,2500577,'N',-6.904694,-36.006093),(1248,12,'Alhandra',76,2500601,'N',-7.432995,-34.911985),(1249,12,'São João do Rio do Peixe',76,2500700,'N',-6.734431,-38.445454),(1250,12,'Amparo',76,2500734,'N',-7.567212,-37.064775),(1251,12,'Aparecida',76,2500775,'N',-6.783695,-38.083338),(1252,12,'Araçagi',76,2500809,'N',-6.851697,-35.383299),(1253,12,'Arara',76,2500908,'N',-6.826192,-35.759542),(1254,12,'Araruna',76,2501005,'N',-6.531447,-35.735981),(1255,12,'Areia',76,2501104,'N',-6.965515,-35.703391),(1256,12,'Areia de Baraúnas',76,2501153,'N',-7.123695,-36.943508),(1257,12,'Areial',76,2501203,'N',-7.049961,-35.922809),(1258,12,'Aroeiras',76,2501302,'N',-7.548462,-35.715593),(1259,12,'Assunção',76,2501351,'N',-7.076327,-36.733187),(1260,12,'Baía da Traição',76,2501401,'N',-6.679529,-34.949931),(1261,12,'Bananeiras',76,2501500,'N',-6.749637,-35.631600),(1262,12,'Baraúna',76,2501534,'N',-6.642405,-36.253041),(1263,12,'Barra de Santana',76,2501575,'N',-7.522834,-35.996314),(1264,12,'Barra de Santa Rosa',76,2501609,'N',-6.720253,-36.059773),(1265,12,'Barra de São Miguel',76,2501708,'N',-7.752671,-36.321536),(1266,12,'Bayeux',76,2501807,'N',-7.132276,-34.929186),(1267,12,'Belém',76,2501906,'N',-6.694043,-35.536274),(1268,12,'Belém do Brejo do Cruz',76,2502003,'N',-6.188575,-37.539502),(1269,12,'Bernardino Batista',76,2502052,'N',-6.453548,-38.548869),(1270,12,'Boa Ventura',76,2502102,'N',-7.422282,-38.218951),(1271,12,'Boa Vista',76,2502151,'N',-7.257913,-36.235374),(1272,12,'Bom Jesus',76,2502201,'N',-6.817958,-38.655143),(1273,12,'Bom Sucesso',76,2502300,'N',-6.445047,-37.930024),(1274,12,'Bonito de Santa Fé',76,2502409,'N',-7.310763,-38.516495),(1275,12,'Boqueirão',76,2502508,'N',-7.482648,-36.133405),(1276,12,'Igaracy',76,2502607,'N',-7.179319,-38.146695),(1277,12,'Borborema',76,2502706,'N',-6.804306,-35.599376),(1278,12,'Brejo do Cruz',76,2502805,'N',-6.347708,-37.500163),(1279,12,'Brejo dos Santos',76,2502904,'N',-6.376183,-37.823710),(1280,12,'Caaporã',76,2503001,'N',-7.514288,-34.917850),(1281,12,'Cabaceiras',76,2503100,'N',-7.490670,-36.284342),(1282,12,'Cabedelo',76,2503209,'N',-6.966983,-34.839430),(1283,12,'Cachoeira dos Índios',76,2503308,'N',-6.923936,-38.678303),(1284,12,'Cacimba de Areia',76,2503407,'N',-7.128473,-37.158217),(1285,12,'Cacimba de Dentro',76,2503506,'N',-6.640017,-35.792821),(1286,12,'Cacimbas',76,2503555,'N',-7.212359,-37.060402),(1287,12,'Caiçara',76,2503605,'N',-6.617470,-35.469114),(1288,12,'Cajazeiras',76,2503704,'N',-6.890465,-38.560530),(1289,12,'Cajazeirinhas',76,2503753,'N',-6.962693,-37.799184),(1290,12,'Caldas Brandão',76,2503803,'N',-7.171751,-35.342382),(1291,12,'Camalaú',76,2503902,'N',-7.891242,-36.831611),(1292,12,'Campina Grande',76,2504009,'N',-7.221497,-35.883859),(1293,12,'Capim',76,2504033,'N',-6.910844,-35.167739),(1294,12,'Caraúbas',76,2504074,'N',-7.731099,-36.495478),(1295,12,'Carrapateira',76,2504108,'N',-7.039654,-38.344217),(1296,12,'Casserengue',76,2504157,'N',-6.783760,-35.816305),(1297,12,'Catingueira',76,2504207,'N',-7.125210,-37.610720),(1298,12,'Catolé do Rocha',76,2504306,'N',-6.346753,-37.748500),(1299,12,'Caturité',76,2504355,'N',-7.419618,-36.020659),(1300,12,'Conceição',76,2504405,'N',-7.560225,-38.509158),(1301,12,'Condado',76,2504504,'N',-6.912307,-37.603971),(1302,12,'Conde',76,2504603,'N',-7.263572,-34.907151),(1303,12,'Congo',76,2504702,'N',-7.792571,-36.661533),(1304,12,'Coremas',76,2504801,'N',-7.016918,-37.945537),(1305,12,'Coxixola',76,2504850,'N',-7.628797,-36.604830),(1306,12,'Cruz do Espírito Santo',76,2504900,'N',-7.141337,-35.091489),(1307,12,'Cubati',76,2505006,'N',-6.862361,-36.347930),(1308,12,'Cuité',76,2505105,'N',-6.485555,-36.153208),(1309,12,'Cuitegi',76,2505204,'N',-6.895814,-35.525741),(1310,12,'Cuité de Mamanguape',76,2505238,'N',-6.914157,-35.252825),(1311,12,'Curral de Cima',76,2505279,'N',-6.717430,-35.267057),(1312,12,'Curral Velho',76,2505303,'N',-7.538085,-38.200391),(1313,12,'Damião',76,2505352,'N',-6.631897,-35.909943),(1314,12,'Desterro',76,2505402,'N',-7.291448,-37.092169),(1315,12,'Vista Serrana',76,2505501,'N',-6.740687,-37.567915),(1316,12,'Diamante',76,2505600,'N',-7.423583,-38.265044),(1317,12,'Dona Inês',76,2505709,'N',-6.602123,-35.622541),(1318,12,'Duas Estradas',76,2505808,'N',-6.688133,-35.418177),(1319,12,'Emas',76,2505907,'N',-7.107992,-37.714586),(1320,12,'Esperança',76,2506004,'N',-7.020685,-35.858593),(1321,12,'Fagundes',76,2506103,'N',-7.363062,-35.784609),(1322,12,'Frei Martinho',76,2506202,'N',-6.404516,-36.452044),(1323,12,'Gado Bravo',76,2506251,'N',-7.582941,-35.790651),(1324,12,'Guarabira',76,2506301,'N',-6.852715,-35.489965),(1325,12,'Gurinhém',76,2506400,'N',-7.123216,-35.428186),(1326,12,'Gurjão',76,2506509,'N',-7.246222,-36.486276),(1327,12,'Ibiara',76,2506608,'N',-7.497851,-38.405568),(1328,12,'Imaculada',76,2506707,'N',-7.388537,-37.510075),(1329,12,'Ingá',76,2506806,'N',-7.295027,-35.617689),(1330,12,'Itabaiana',76,2506905,'N',-7.330932,-35.337533),(1331,12,'Itaporanga',76,2507002,'N',-7.303980,-38.152573),(1332,12,'Itapororoca',76,2507101,'N',-6.829920,-35.246296),(1333,12,'Itatuba',76,2507200,'N',-7.374958,-35.628161),(1334,12,'Jacaraú',76,2507309,'N',-6.612969,-35.294282),(1335,12,'Jericó',76,2507408,'N',-6.556195,-37.808641),(1336,12,'João Pessoa',76,2507507,'S',-7.149382,-34.873385),(1337,12,'Juarez Távora',76,2507606,'N',-7.166345,-35.591178),(1338,12,'Juazeirinho',76,2507705,'N',-7.065368,-36.570701),(1339,12,'Junco do Seridó',76,2507804,'N',-6.993338,-36.716441),(1340,12,'Juripiranga',76,2507903,'N',-7.370291,-35.239454),(1341,12,'Juru',76,2508000,'N',-7.534307,-37.819264),(1342,12,'Lagoa',76,2508109,'N',-6.594209,-37.915090),(1343,12,'Lagoa de Dentro',76,2508208,'N',-6.670599,-35.377044),(1344,12,'Lagoa Seca',76,2508307,'N',-7.158412,-35.851440),(1345,12,'Lastro',76,2508406,'N',-6.516531,-38.179218),(1346,12,'Livramento',76,2508505,'N',-7.379003,-36.948629),(1347,12,'Logradouro',76,2508554,'N',-6.615371,-35.443299),(1348,12,'Lucena',76,2508604,'N',-6.898849,-34.874609),(1349,12,'Mãe d\'Água',76,2508703,'N',-7.257049,-37.428161),(1350,12,'Malta',76,2508802,'N',-6.907185,-37.517776),(1351,12,'Mamanguape',76,2508901,'N',-6.833715,-35.123893),(1352,12,'Manaíra',76,2509008,'N',-7.704614,-38.153072),(1353,12,'Marcação',76,2509057,'N',-6.770054,-35.013924),(1354,12,'Mari',76,2509107,'N',-7.056384,-35.318542),(1355,12,'Marizópolis',76,2509156,'N',-6.844674,-38.355396),(1356,12,'Massaranduba',76,2509206,'N',-7.180199,-35.737515),(1357,12,'Mataraca',76,2509305,'N',-6.600519,-35.048558),(1358,12,'Matinhas',76,2509339,'N',-7.121168,-35.770937),(1359,12,'Mato Grosso',76,2509370,'N',-6.542633,-37.711573),(1360,12,'Maturéia',76,2509396,'N',-7.265930,-37.350434),(1361,12,'Mogeiro',76,2509404,'N',-7.309481,-35.482425),(1362,12,'Montadas',76,2509503,'N',-7.089096,-35.958275),(1363,12,'Monte Horebe',76,2509602,'N',-7.209526,-38.583657),(1364,12,'Monteiro',76,2509701,'N',-7.892217,-37.122681),(1365,12,'Mulungu',76,2509800,'N',-7.027886,-35.465143),(1366,12,'Natuba',76,2509909,'N',-7.640979,-35.556145),(1367,12,'Nazarezinho',76,2510006,'N',-6.912701,-38.318913),(1368,12,'Nova Floresta',76,2510105,'N',-6.456140,-36.202495),(1369,12,'Nova Olinda',76,2510204,'N',-7.476843,-38.041050),(1370,12,'Nova Palmeira',76,2510303,'N',-6.676606,-36.418713),(1371,12,'Olho d\'Água',76,2510402,'N',-7.224973,-37.752686),(1372,12,'Olivedos',76,2510501,'N',-6.988226,-36.243665),(1373,12,'Ouro Velho',76,2510600,'N',-7.618652,-37.154379),(1374,12,'Parari',76,2510659,'N',-7.316700,-36.658324),(1375,12,'Passagem',76,2510709,'N',-7.132820,-37.054392),(1376,12,'Patos',76,2510808,'N',-7.024492,-37.276913),(1377,12,'Paulista',76,2510907,'N',-6.594062,-37.621056),(1378,12,'Pedra Branca',76,2511004,'N',-7.426564,-38.072246),(1379,12,'Pedra Lavrada',76,2511103,'N',-6.757881,-36.472050),(1380,12,'Pedras de Fogo',76,2511202,'N',-7.401539,-35.113178),(1381,12,'Piancó',76,2511301,'N',-7.192570,-37.926519),(1382,12,'Picuí',76,2511400,'N',-6.510136,-36.347046),(1383,12,'Pilar',76,2511509,'N',-7.259888,-35.259880),(1384,12,'Pilões',76,2511608,'N',-6.869221,-35.615541),(1385,12,'Pilõezinhos',76,2511707,'N',-6.840569,-35.530586),(1386,12,'Pirpirituba',76,2511806,'N',-6.780800,-35.497716),(1387,12,'Pitimbu',76,2511905,'N',-7.482413,-34.813930),(1388,12,'Pocinhos',76,2512002,'N',-7.078617,-36.056442),(1389,12,'Poço Dantas',76,2512036,'N',-6.407176,-38.497166),(1390,12,'Poço de José de Moura',76,2512077,'N',-6.576919,-38.510000),(1391,12,'Pombal',76,2512101,'N',-6.769855,-37.798267),(1392,12,'Prata',76,2512200,'N',-7.696983,-37.082334),(1393,12,'Princesa Isabel',76,2512309,'N',-7.733866,-37.993664),(1394,12,'Puxinanã',76,2512408,'N',-7.148907,-35.958494),(1395,12,'Queimadas',76,2512507,'N',-7.360792,-35.899434),(1396,12,'Quixabá',76,2512606,'N',-7.030818,-37.147099),(1397,12,'Remígio',76,2512705,'N',-6.966293,-35.795833),(1398,12,'Pedro Régis',76,2512721,'N',-6.644471,-35.293006),(1399,12,'Riachão',76,2512747,'N',-6.542677,-35.662722),(1400,12,'Riachão do Bacamarte',76,2512754,'N',-7.250595,-35.655388),(1401,12,'Riachão do Poço',76,2512762,'N',-7.151504,-35.261243),(1402,12,'Riacho de Santo Antônio',76,2512788,'N',-7.690295,-36.156710),(1403,12,'Riacho dos Cavalos',76,2512804,'N',-6.436494,-37.653835),(1404,12,'Rio Tinto',76,2512903,'N',-6.808449,-35.078852),(1405,12,'Salgadinho',76,2513000,'N',-7.103035,-36.845503),(1406,12,'Salgado de São Félix',76,2513109,'N',-7.355357,-35.443302),(1407,12,'Santa Cecília',76,2513158,'N',-7.742906,-35.877474),(1408,12,'Santa Cruz',76,2513208,'N',-6.535014,-38.060556),(1409,12,'Santa Helena',76,2513307,'N',-6.718694,-38.642790),(1410,12,'Santa Inês',76,2513356,'N',-7.627780,-38.559600),(1411,12,'Santa Luzia',76,2513406,'N',-6.871863,-36.921678),(1412,12,'Santana de Mangueira',76,2513505,'N',-7.551213,-38.332581),(1413,12,'Santana dos Garrotes',76,2513604,'N',-7.387644,-37.985043),(1414,12,'Santarém',76,2513653,'N',-6.484055,-38.479152),(1415,12,'Santa Rita',76,2513703,'N',-7.138085,-34.965839),(1416,12,'Santa Teresinha',76,2513802,'N',-7.084192,-37.441718),(1417,12,'Santo André',76,2513851,'N',-7.220489,-36.630975),(1418,12,'São Bento',76,2513901,'N',-6.489308,-37.449350),(1419,12,'São Bentinho',76,2513927,'N',-6.890309,-37.722721),(1420,12,'São Domingos do Cariri',76,2513943,'N',-7.632991,-36.435929),(1421,12,'São Domingos',76,2513968,'N',-6.815925,-37.942603),(1422,12,'São Francisco',76,2513984,'N',-6.619280,-38.097141),(1423,12,'São João do Cariri',76,2514008,'N',-7.390201,-36.531521),(1424,12,'São João do Tigre',76,2514107,'N',-8.081043,-36.845743),(1425,12,'São José da Lagoa Tapada',76,2514206,'N',-6.944231,-38.157770),(1426,12,'São José de Caiana',76,2514305,'N',-7.249160,-38.297823),(1427,12,'São José de Espinharas',76,2514404,'N',-6.844180,-37.325115),(1428,12,'São José dos Ramos',76,2514453,'N',-7.247127,-35.377961),(1429,12,'São José de Piranhas',76,2514503,'N',-7.120870,-38.501075),(1430,12,'São José de Princesa',76,2514552,'N',-7.742969,-38.098803),(1431,12,'São José do Bonfim',76,2514602,'N',-7.160915,-37.309245),(1432,12,'São José do Brejo do Cruz',76,2514651,'N',-6.212915,-37.353830),(1433,12,'São José do Sabugi',76,2514701,'N',-6.775531,-36.797493),(1434,12,'São José dos Cordeiros',76,2514800,'N',-7.392643,-36.802778),(1435,12,'São Mamede',76,2514909,'N',-6.930228,-37.094857),(1436,12,'São Miguel de Taipu',76,2515005,'N',-7.249234,-35.210451),(1437,12,'São Sebastião de Lagoa de Roça',76,2515104,'N',-7.100946,-35.866414),(1438,12,'São Sebastião do Umbuzeiro',76,2515203,'N',-8.157119,-37.008417),(1439,12,'Sapé',76,2515302,'N',-7.087111,-35.230433),(1440,12,'Seridó',76,2515401,'N',-6.856909,-36.410764),(1441,12,'Serra Branca',76,2515500,'N',-7.480503,-36.655667),(1442,12,'Serra da Raiz',76,2515609,'N',-6.685518,-35.442739),(1443,12,'Serra Grande',76,2515708,'N',-7.214148,-38.374895),(1444,12,'Serra Redonda',76,2515807,'N',-7.182549,-35.674270),(1445,12,'Serraria',76,2515906,'N',-6.817089,-35.644143),(1446,12,'Sertãozinho',76,2515930,'N',-6.750798,-35.441751),(1447,12,'Sobrado',76,2515971,'N',-7.144576,-35.238195),(1448,12,'Solânea',76,2516003,'N',-6.759898,-35.656158),(1449,12,'Soledade',76,2516102,'N',-7.058741,-36.362665),(1450,12,'Sossêgo',76,2516151,'N',-6.767528,-36.248224),(1451,12,'Sousa',76,2516201,'N',-6.763378,-38.229605),(1452,12,'Sumé',76,2516300,'N',-7.671054,-36.880276),(1453,12,'Campo de Santana',76,2516409,'N',-6.488917,-35.638837),(1454,12,'Taperoá',76,2516508,'N',-7.209539,-36.828999),(1455,12,'Tavares',76,2516607,'N',-7.635708,-37.878592),(1456,12,'Teixeira',76,2516706,'N',-7.223703,-37.251562),(1457,12,'Tenório',76,2516755,'N',-6.938260,-36.628000),(1458,12,'Triunfo',76,2516805,'N',-6.576836,-38.598098),(1459,12,'Uiraúna',76,2516904,'N',-6.524927,-38.407027),(1460,12,'Umbuzeiro',76,2517001,'N',-7.698206,-35.671471),(1461,12,'Várzea',76,2517100,'N',-6.770807,-36.992721),(1462,12,'Vieirópolis',76,2517209,'N',-6.545714,-38.277843),(1463,12,'Zabelê',76,2517407,'N',-8.076874,-37.093552),(1464,13,'Abreu e Lima',76,2600054,'N',-7.904449,-34.899131),(1465,13,'Afogados da Ingazeira',76,2600104,'N',-7.748328,-37.637686),(1466,13,'Afrânio',76,2600203,'N',-8.511091,-41.005797),(1467,13,'Agrestina',76,2600302,'N',-8.455973,-35.946777),(1468,13,'Água Preta',76,2600401,'N',-8.709123,-35.518557),(1469,13,'Águas Belas',76,2600500,'N',-9.114590,-37.121957),(1470,13,'Alagoinha',76,2600609,'N',-8.466271,-36.775456),(1471,13,'Aliança',76,2600708,'N',-7.604730,-35.228501),(1472,13,'Altinho',76,2600807,'N',-8.489593,-36.059700),(1473,13,'Amaraji',76,2600906,'N',-8.378487,-35.450773),(1474,13,'Angelim',76,2601003,'N',-8.890374,-36.284814),(1475,13,'Araçoiaba',76,2601052,'N',-7.785642,-35.093967),(1476,13,'Araripina',76,2601102,'N',-7.578142,-40.502461),(1477,13,'Arcoverde',76,2601201,'N',-8.423941,-37.056506),(1478,13,'Barra de Guabiraba',76,2601300,'N',-8.420935,-35.662819),(1479,13,'Barreiros',76,2601409,'N',-8.814138,-35.199086),(1480,13,'Belém de Maria',76,2601508,'N',-8.621202,-35.839924),(1481,13,'Belém de São Francisco',76,2601607,'N',-8.751463,-38.961600),(1482,13,'Belo Jardim',76,2601706,'N',-8.335295,-36.420035),(1483,13,'Betânia',76,2601805,'N',-8.269841,-38.038738),(1484,13,'Bezerros',76,2601904,'N',-8.235360,-35.754488),(1485,13,'Bodocó',76,2602001,'N',-7.779343,-39.936163),(1486,13,'Bom Conselho',76,2602100,'N',-9.163383,-36.679314),(1487,13,'Bom Jardim',76,2602209,'N',-7.799512,-35.587140),(1488,13,'Bonito',76,2602308,'N',-8.472261,-35.728528),(1489,13,'Brejão',76,2602407,'N',-9.027249,-36.564697),(1490,13,'Brejinho',76,2602506,'N',-7.345671,-37.287335),(1491,13,'Brejo da Madre de Deus',76,2602605,'N',-8.148957,-36.370391),(1492,13,'Buenos Aires',76,2602704,'N',-7.724372,-35.329570),(1493,13,'Buíque',76,2602803,'N',-8.622059,-37.156988),(1494,13,'Cabo de Santo Agostinho',76,2602902,'N',-8.289864,-35.038489),(1495,13,'Cabrobó',76,2603009,'N',-8.515105,-39.309841),(1496,13,'Cachoeirinha',76,2603108,'N',-8.486831,-36.235991),(1497,13,'Caetés',76,2603207,'N',-8.775595,-36.624804),(1498,13,'Calçado',76,2603306,'N',-8.738378,-36.333288),(1499,13,'Calumbi',76,2603405,'N',-7.938427,-38.153746),(1500,13,'Camaragibe',76,2603454,'N',-8.020522,-34.995721),(1501,13,'Camocim de São Félix',76,2603504,'N',-8.362138,-35.765195),(1502,13,'Camutanga',76,2603603,'N',-7.407082,-35.282791),(1503,13,'Canhotinho',76,2603702,'N',-8.883871,-36.193575),(1504,13,'Capoeiras',76,2603801,'N',-8.736143,-36.623798),(1505,13,'Carnaíba',76,2603900,'N',-7.803058,-37.793399),(1506,13,'Carnaubeira da Penha',76,2603926,'N',-8.320608,-38.743422),(1507,13,'Carpina',76,2604007,'N',-7.846887,-35.258061),(1508,13,'Caruaru',76,2604106,'N',-8.285898,-35.967073),(1509,13,'Casinhas',76,2604155,'N',-7.743207,-35.725323),(1510,13,'Catende',76,2604205,'N',-8.670308,-35.721667),(1511,13,'Cedro',76,2604304,'N',-7.717469,-39.237138),(1512,13,'Chã de Alegria',76,2604403,'N',-7.997901,-35.213727),(1513,13,'Chã Grande',76,2604502,'N',-8.240113,-35.464741),(1514,13,'Condado',76,2604601,'N',-7.589382,-35.104118),(1515,13,'Correntes',76,2604700,'N',-9.128666,-36.329702),(1516,13,'Cortês',76,2604809,'N',-8.475151,-35.541587),(1517,13,'Cumaru',76,2604908,'N',-8.015032,-35.694699),(1518,13,'Cupira',76,2605004,'N',-8.611283,-35.950257),(1519,13,'Custódia',76,2605103,'N',-8.089002,-37.641097),(1520,13,'Dormentes',76,2605152,'N',-8.448657,-40.770736),(1521,13,'Escada',76,2605202,'N',-8.362522,-35.236157),(1522,13,'Exu',76,2605301,'N',-7.516307,-39.722728),(1523,13,'Feira Nova',76,2605400,'N',-7.948728,-35.390598),(1524,13,'Fernando de Noronha',76,2605459,'N',-3.852021,-32.435186),(1525,13,'Ferreiros',76,2605509,'N',-7.445494,-35.244070),(1526,13,'Flores',76,2605608,'N',-7.861714,-37.971456),(1527,13,'Floresta',76,2605707,'N',-8.600827,-38.571239),(1528,13,'Frei Miguelinho',76,2605806,'N',-7.944458,-35.923128),(1529,13,'Gameleira',76,2605905,'N',-8.583836,-35.386611),(1530,13,'Garanhuns',76,2606002,'N',-8.888906,-36.493050),(1531,13,'Glória do Goitá',76,2606101,'N',-7.999608,-35.292322),(1532,13,'Goiana',76,2606200,'N',-7.559232,-34.998376),(1533,13,'Granito',76,2606309,'N',-7.709253,-39.619286),(1534,13,'Gravatá',76,2606408,'N',-8.206000,-35.571492),(1535,13,'Iati',76,2606507,'N',-9.045709,-36.847276),(1536,13,'Ibimirim',76,2606606,'N',-8.538762,-37.690047),(1537,13,'Ibirajuba',76,2606705,'N',-8.580535,-36.180463),(1538,13,'Igarassu',76,2606804,'N',-7.828372,-34.910583),(1539,13,'Iguaraci',76,2606903,'N',-7.844774,-37.518821),(1540,13,'Inajá',76,2607000,'N',-8.902046,-37.824485),(1541,13,'Ingazeira',76,2607109,'N',-7.677797,-37.457670),(1542,13,'Ipojuca',76,2607208,'N',-8.396987,-35.063472),(1543,13,'Ipubi',76,2607307,'N',-7.649705,-40.150209),(1544,13,'Itacuruba',76,2607406,'N',-8.724515,-38.686342),(1545,13,'Itaíba',76,2607505,'N',-8.940054,-37.418948),(1546,13,'Ilha de Itamaracá',76,2607604,'N',-7.746573,-34.823951),(1547,13,'Itambé',76,2607653,'N',-7.409264,-35.110627),(1548,13,'Itapetim',76,2607703,'N',-7.378429,-37.188439),(1549,13,'Itapissuma',76,2607752,'N',-7.774035,-34.889271),(1550,13,'Itaquitinga',76,2607802,'N',-7.666394,-35.102615),(1551,13,'Jaboatão dos Guararapes',76,2607901,'N',-8.165391,-34.921173),(1552,13,'Jaqueira',76,2607950,'N',-8.727970,-35.797395),(1553,13,'Jataúba',76,2608008,'N',-7.987258,-36.498829),(1554,13,'Jatobá',76,2608057,'N',-9.185070,-38.275038),(1555,13,'João Alfredo',76,2608107,'N',-7.860189,-35.591502),(1556,13,'Joaquim Nabuco',76,2608206,'N',-8.626898,-35.529242),(1557,13,'Jucati',76,2608255,'N',-8.707029,-36.490387),(1558,13,'Jupi',76,2608305,'N',-8.706097,-36.411734),(1559,13,'Jurema',76,2608404,'N',-8.719667,-36.135954),(1560,13,'Lagoa do Carro',76,2608453,'N',-7.844232,-35.312602),(1561,13,'Lagoa do Itaenga',76,2608503,'N',-7.932378,-35.292804),(1562,13,'Lagoa do Ouro',76,2608602,'N',-9.124172,-36.464317),(1563,13,'Lagoa dos Gatos',76,2608701,'N',-8.649255,-35.907121),(1564,13,'Lagoa Grande',76,2608750,'N',-8.995051,-40.270725),(1565,13,'Lajedo',76,2608800,'N',-8.662857,-36.321497),(1566,13,'Limoeiro',76,2608909,'N',-7.880198,-35.455261),(1567,13,'Macaparana',76,2609006,'N',-7.555681,-35.449875),(1568,13,'Machados',76,2609105,'N',-7.688572,-35.514141),(1569,13,'Manari',76,2609154,'N',-8.960108,-37.626823),(1570,13,'Maraial',76,2609204,'N',-8.783078,-35.814118),(1571,13,'Mirandiba',76,2609303,'N',-8.120244,-38.734565),(1572,13,'Moreno',76,2609402,'N',-8.118695,-35.094869),(1573,13,'Nazaré da Mata',76,2609501,'N',-7.737688,-35.221339),(1574,13,'Olinda',76,2609600,'N',-7.992660,-34.861310),(1575,13,'Orobó',76,2609709,'N',-7.737895,-35.602982),(1576,13,'Orocó',76,2609808,'N',-8.617946,-39.595246),(1577,13,'Ouricuri',76,2609907,'N',-7.883152,-40.081463),(1578,13,'Palmares',76,2610004,'N',-8.679083,-35.588336),(1579,13,'Palmeirina',76,2610103,'N',-9.001683,-36.327311),(1580,13,'Panelas',76,2610202,'N',-8.667242,-36.001576),(1581,13,'Paranatama',76,2610301,'N',-8.920145,-36.658429),(1582,13,'Parnamirim',76,2610400,'N',-8.090138,-39.575787),(1583,13,'Passira',76,2610509,'N',-7.978884,-35.581685),(1584,13,'Paudalho',76,2610608,'N',-7.897135,-35.179151),(1585,13,'Paulista',76,2610707,'N',-7.943188,-34.884792),(1586,13,'Pedra',76,2610806,'N',-8.498477,-36.942798),(1587,13,'Pesqueira',76,2610905,'N',-8.355456,-36.695515),(1588,13,'Petrolândia',76,2611002,'N',-8.977343,-38.220734),(1589,13,'Petrolina',76,2611101,'N',-9.397376,-40.499999),(1590,13,'Poção',76,2611200,'N',-8.186227,-36.705880),(1591,13,'Pombos',76,2611309,'N',-8.144360,-35.396195),(1592,13,'Primavera',76,2611408,'N',-8.331376,-35.353943),(1593,13,'Quipapá',76,2611507,'N',-8.827885,-36.011990),(1594,13,'Quixaba',76,2611533,'N',-7.718126,-37.846446),(1595,13,'Recife',76,2611606,'S',-8.062762,-34.888942),(1596,13,'Riacho das Almas',76,2611705,'N',-8.127033,-35.860875),(1597,13,'Ribeirão',76,2611804,'N',-8.511116,-35.376131),(1598,13,'Rio Formoso',76,2611903,'N',-8.662171,-35.155433),(1599,13,'Sairé',76,2612000,'N',-8.327614,-35.710248),(1600,13,'Salgadinho',76,2612109,'N',-7.939484,-35.638061),(1601,13,'Salgueiro',76,2612208,'N',-8.070678,-39.120851),(1602,13,'Saloá',76,2612307,'N',-8.975995,-36.692729),(1603,13,'Sanharó',76,2612406,'N',-8.362962,-36.562507),(1604,13,'Santa Cruz',76,2612455,'N',-8.237961,-40.337688),(1605,13,'Santa Cruz da Baixa Verde',76,2612471,'N',-7.821470,-38.153138),(1606,13,'Santa Cruz do Capibaribe',76,2612505,'N',-7.955190,-36.203950),(1607,13,'Santa Filomena',76,2612554,'N',-8.160511,-40.615775),(1608,13,'Santa Maria da Boa Vista',76,2612604,'N',-8.804127,-39.824236),(1609,13,'Santa Maria do Cambucá',76,2612703,'N',-7.831813,-35.885243),(1610,13,'Santa Terezinha',76,2612802,'N',-7.370356,-37.480033),(1611,13,'São Benedito do Sul',76,2612901,'N',-8.810438,-35.931123),(1612,13,'São Bento do Una',76,2613008,'N',-8.519868,-36.446298),(1613,13,'São Caitano',76,2613107,'N',-8.327361,-36.137360),(1614,13,'São João',76,2613206,'N',-8.877559,-36.368253),(1615,13,'São Joaquim do Monte',76,2613305,'N',-8.432152,-35.809491),(1616,13,'São José da Coroa Grande',76,2613404,'N',-8.894195,-35.145707),(1617,13,'São José do Belmonte',76,2613503,'N',-7.861740,-38.759454),(1618,13,'São José do Egito',76,2613602,'N',-7.474025,-37.275072),(1619,13,'São Lourenço da Mata',76,2613701,'N',-7.995938,-35.041278),(1620,13,'São Vicente Ferrer',76,2613800,'N',-7.592213,-35.490122),(1621,13,'Serra Talhada',76,2613909,'N',-7.987998,-38.296315),(1622,13,'Serrita',76,2614006,'N',-7.954340,-39.292623),(1623,13,'Sertânia',76,2614105,'N',-8.072450,-37.267390),(1624,13,'Sirinhaém',76,2614204,'N',-8.593370,-35.116405),(1625,13,'Moreilândia',76,2614303,'N',-7.629983,-39.553754),(1626,13,'Solidão',76,2614402,'N',-7.602126,-37.647470),(1627,13,'Surubim',76,2614501,'N',-7.835157,-35.756784),(1628,13,'Tabira',76,2614600,'N',-7.591137,-37.540266),(1629,13,'Tacaimbó',76,2614709,'N',-8.315611,-36.290404),(1630,13,'Tacaratu',76,2614808,'N',-9.105700,-38.153461),(1631,13,'Tamandaré',76,2614857,'N',-8.704689,-35.090647),(1632,13,'Taquaritinga do Norte',76,2615003,'N',-7.902160,-36.043338),(1633,13,'Terezinha',76,2615102,'N',-9.057778,-36.621476),(1634,13,'Terra Nova',76,2615201,'N',-8.230358,-39.374422),(1635,13,'Timbaúba',76,2615300,'N',-7.511746,-35.318772),(1636,13,'Toritama',76,2615409,'N',-8.006650,-36.056843),(1637,13,'Tracunhaém',76,2615508,'N',-7.802689,-35.237923),(1638,13,'Trindade',76,2615607,'N',-7.761795,-40.265591),(1639,13,'Triunfo',76,2615706,'N',-7.830876,-38.107060),(1640,13,'Tupanatinga',76,2615805,'N',-8.751582,-37.340233),(1641,13,'Tuparetama',76,2615904,'N',-7.598759,-37.311182),(1642,13,'Venturosa',76,2616001,'N',-8.576527,-36.878372),(1643,13,'Verdejante',76,2616100,'N',-7.932884,-38.974283),(1644,13,'Vertente do Lério',76,2616183,'N',-7.774819,-35.853003),(1645,13,'Vertentes',76,2616209,'N',-7.905743,-35.989306),(1646,13,'Vicência',76,2616308,'N',-7.652960,-35.320301),(1647,13,'Vitória de Santo Antão',76,2616407,'N',-8.118748,-35.293864),(1648,13,'Xexéu',76,2616506,'N',-8.803313,-35.624235),(1649,14,'Água Branca',76,2700102,'N',-9.267025,-37.940715),(1650,14,'Anadia',76,2700201,'N',-9.684084,-36.300814),(1651,14,'Arapiraca',76,2700300,'N',-9.755907,-36.657297),(1652,14,'Atalaia',76,2700409,'N',-9.501387,-36.021427),(1653,14,'Barra de Santo Antônio',76,2700508,'N',-9.409278,-35.500298),(1654,14,'Barra de São Miguel',76,2700607,'N',-9.838998,-35.907450),(1655,14,'Batalha',76,2700706,'N',-9.674593,-37.127092),(1656,14,'Belém',76,2700805,'N',-9.568648,-36.494498),(1657,14,'Belo Monte',76,2700904,'N',-9.826989,-37.278439),(1658,14,'Boca da Mata',76,2701001,'N',-9.645145,-36.211725),(1659,14,'Branquinha',76,2701100,'N',-9.246583,-36.020034),(1660,14,'Cacimbinhas',76,2701209,'N',-9.405163,-36.996870),(1661,14,'Cajueiro',76,2701308,'N',-9.389661,-36.156379),(1662,14,'Campestre',76,2701357,'N',-8.848375,-35.566718),(1663,14,'Campo Alegre',76,2701407,'N',-9.783416,-36.352435),(1664,14,'Campo Grande',76,2701506,'N',-9.956923,-36.790840),(1665,14,'Canapi',76,2701605,'N',-9.117380,-37.605647),(1666,14,'Capela',76,2701704,'N',-9.412932,-36.075008),(1667,14,'Carneiros',76,2701803,'N',-9.480680,-37.374750),(1668,14,'Chã Preta',76,2701902,'N',-9.261422,-36.299381),(1669,14,'Coité do Nóia',76,2702009,'N',-9.638487,-36.579684),(1670,14,'Colônia Leopoldina',76,2702108,'N',-8.912688,-35.719781),(1671,14,'Coqueiro Seco',76,2702207,'N',-9.637554,-35.795363),(1672,14,'Coruripe',76,2702306,'N',-10.126547,-36.176078),(1673,14,'Craíbas',76,2702355,'N',-9.619934,-36.772391),(1674,14,'Delmiro Gouveia',76,2702405,'N',-9.384574,-37.999233),(1675,14,'Dois Riachos',76,2702504,'N',-9.385671,-37.089850),(1676,14,'Estrela de Alagoas',76,2702553,'N',-9.387405,-36.758333),(1677,14,'Feira Grande',76,2702603,'N',-9.900437,-36.677686),(1678,14,'Feliz Deserto',76,2702702,'N',-10.292381,-36.307188),(1679,14,'Flexeiras',76,2702801,'N',-9.273235,-35.724372),(1680,14,'Girau do Ponciano',76,2702900,'N',-9.887364,-36.830314),(1681,14,'Ibateguara',76,2703007,'N',-8.976985,-35.931184),(1682,14,'Igaci',76,2703106,'N',-9.533689,-36.628160),(1683,14,'Igreja Nova',76,2703205,'N',-10.129299,-36.653345),(1684,14,'Inhapi',76,2703304,'N',-9.223899,-37.752637),(1685,14,'Jacaré dos Homens',76,2703403,'N',-9.636659,-37.207833),(1686,14,'Jacuípe',76,2703502,'N',-8.840301,-35.460998),(1687,14,'Japaratinga',76,2703601,'N',-9.088974,-35.258658),(1688,14,'Jaramataia',76,2703700,'N',-9.658352,-37.003596),(1689,14,'Jequiá da Praia',76,2703759,'N',-10.009592,-36.027334),(1690,14,'Joaquim Gomes',76,2703809,'N',-9.135979,-35.749030),(1691,14,'Jundiá',76,2703908,'N',-8.938877,-35.555597),(1692,14,'Junqueiro',76,2704005,'N',-9.931610,-36.471522),(1693,14,'Lagoa da Canoa',76,2704104,'N',-9.830876,-36.735789),(1694,14,'Limoeiro de Anadia',76,2704203,'N',-9.738613,-36.503897),(1695,14,'Maceió',76,2704302,'S',-9.660822,-35.701630),(1696,14,'Major Isidoro',76,2704401,'N',-9.526644,-36.984800),(1697,14,'Maragogi',76,2704500,'N',-9.015456,-35.223015),(1698,14,'Maravilha',76,2704609,'N',-9.233997,-37.356635),(1699,14,'Marechal Deodoro',76,2704708,'N',-9.739156,-35.893069),(1700,14,'Maribondo',76,2704807,'N',-9.577250,-36.306603),(1701,14,'Mar Vermelho',76,2704906,'N',-9.447773,-36.385040),(1702,14,'Mata Grande',76,2705002,'N',-9.114806,-37.725224),(1703,14,'Matriz de Camaragibe',76,2705101,'N',-9.158526,-35.533555),(1704,14,'Messias',76,2705200,'N',-9.391812,-35.840378),(1705,14,'Minador do Negrão',76,2705309,'N',-9.303683,-36.864916),(1706,14,'Monteirópolis',76,2705408,'N',-9.602328,-37.245272),(1707,14,'Murici',76,2705507,'N',-9.316301,-35.947556),(1708,14,'Novo Lino',76,2705606,'N',-8.943159,-35.660964),(1709,14,'Olho d\'Água das Flores',76,2705705,'N',-9.533601,-37.297891),(1710,14,'Olho d\'Água do Casado',76,2705804,'N',-9.501446,-37.836243),(1711,14,'Olho d\'Água Grande',76,2705903,'N',-10.058495,-36.806746),(1712,14,'Olivença',76,2706000,'N',-9.519456,-37.190819),(1713,14,'Ouro Branco',76,2706109,'N',-9.163415,-37.354444),(1714,14,'Palestina',76,2706208,'N',-9.673097,-37.331136),(1715,14,'Palmeira dos Índios',76,2706307,'N',-9.406159,-36.630984),(1716,14,'Pão de Açúcar',76,2706406,'N',-9.747042,-37.435139),(1717,14,'Pariconha',76,2706422,'N',-9.257884,-38.009826),(1718,14,'Paripueira',76,2706448,'N',-9.466313,-35.559105),(1719,14,'Passo de Camaragibe',76,2706505,'N',-9.244847,-35.491275),(1720,14,'Paulo Jacinto',76,2706604,'N',-9.373364,-36.372742),(1721,14,'Penedo',76,2706703,'N',-10.296110,-36.580460),(1722,14,'Piaçabuçu',76,2706802,'N',-10.407362,-36.434352),(1723,14,'Pilar',76,2706901,'N',-9.606894,-35.948518),(1724,14,'Pindoba',76,2707008,'N',-9.476211,-36.286541),(1725,14,'Piranhas',76,2707107,'N',-9.623559,-37.750393),(1726,14,'Poço das Trincheiras',76,2707206,'N',-9.302914,-37.279298),(1727,14,'Porto Calvo',76,2707305,'N',-9.052448,-35.398334),(1728,14,'Porto de Pedras',76,2707404,'N',-9.156086,-35.297015),(1729,14,'Porto Real do Colégio',76,2707503,'N',-10.173733,-36.824629),(1730,14,'Quebrangulo',76,2707602,'N',-9.323547,-36.477222),(1731,14,'Rio Largo',76,2707701,'N',-9.486158,-35.852422),(1732,14,'Roteiro',76,2707800,'N',-9.832189,-35.981210),(1733,14,'Santa Luzia do Norte',76,2707909,'N',-9.596768,-35.823488),(1734,14,'Santana do Ipanema',76,2708006,'N',-9.372284,-37.245407),(1735,14,'Santana do Mundaú',76,2708105,'N',-9.165033,-36.225234),(1736,14,'São Brás',76,2708204,'N',-10.120310,-36.898949),(1737,14,'São José da Laje',76,2708303,'N',-9.011066,-36.057388),(1738,14,'São José da Tapera',76,2708402,'N',-9.549396,-37.383708),(1739,14,'São Luís do Quitunde',76,2708501,'N',-9.314117,-35.565491),(1740,14,'São Miguel dos Campos',76,2708600,'N',-9.779935,-36.094264),(1741,14,'São Miguel dos Milagres',76,2708709,'N',-9.267186,-35.369119),(1742,14,'São Sebastião',76,2708808,'N',-9.931657,-36.551092),(1743,14,'Satuba',76,2708907,'N',-9.569428,-35.828540),(1744,14,'Senador Rui Palmeira',76,2708956,'N',-9.463391,-37.453646),(1745,14,'Tanque d\'Arca',76,2709004,'N',-9.531962,-36.436742),(1746,14,'Taquarana',76,2709103,'N',-9.642320,-36.496768),(1747,14,'Teotônio Vilela',76,2709152,'N',-9.907498,-36.355563),(1748,14,'Traipu',76,2709202,'N',-9.971059,-37.006006),(1749,14,'União dos Palmares',76,2709301,'N',-9.159524,-36.033143),(1750,14,'Viçosa',76,2709400,'N',-9.377054,-36.248393),(1751,15,'Amparo de São Francisco',76,2800100,'N',-10.133971,-36.927484),(1752,15,'Aquidabã',76,2800209,'N',-10.292518,-37.022181),(1753,15,'Aracaju',76,2800308,'S',-10.907216,-37.048213),(1754,15,'Arauá',76,2800407,'N',-11.264505,-37.612337),(1755,15,'Areia Branca',76,2800506,'N',-10.758192,-37.313363),(1756,15,'Barra dos Coqueiros',76,2800605,'N',-10.906799,-37.041242),(1757,15,'Boquim',76,2800670,'N',-11.146392,-37.623573),(1758,15,'Brejo Grande',76,2800704,'N',-10.418943,-36.471820),(1759,15,'Campo do Brito',76,2801009,'N',-10.743335,-37.496356),(1760,15,'Canhoba',76,2801108,'N',-10.138744,-36.973845),(1761,15,'Canindé de São Francisco',76,2801207,'N',-9.654104,-37.787964),(1762,15,'Capela',76,2801306,'N',-10.506100,-37.054833),(1763,15,'Carira',76,2801405,'N',-10.358017,-37.701919),(1764,15,'Carmópolis',76,2801504,'N',-10.646819,-36.990816),(1765,15,'Cedro de São João',76,2801603,'N',-10.247765,-36.884036),(1766,15,'Cristinápolis',76,2801702,'N',-11.473558,-37.754660),(1767,15,'Cumbe',76,2801900,'N',-10.357025,-37.187899),(1768,15,'Divina Pastora',76,2802007,'N',-10.677376,-37.149345),(1769,15,'Estância',76,2802106,'N',-11.267949,-37.440011),(1770,15,'Feira Nova',76,2802205,'N',-10.270533,-37.316118),(1771,15,'Frei Paulo',76,2802304,'N',-10.540085,-37.541876),(1772,15,'Gararu',76,2802403,'N',-9.967351,-37.084372),(1773,15,'General Maynard',76,2802502,'N',-10.686530,-36.987984),(1774,15,'Gracho Cardoso',76,2802601,'N',-10.226200,-37.196055),(1775,15,'Ilha das Flores',76,2802700,'N',-10.434276,-36.538635),(1776,15,'Indiaroba',76,2802809,'N',-11.518507,-37.515095),(1777,15,'Itabaiana',76,2802908,'N',-10.685716,-37.426861),(1778,15,'Itabaianinha',76,2803005,'N',-11.276785,-37.787411),(1779,15,'Itabi',76,2803104,'N',-10.123490,-37.099650),(1780,15,'Itaporanga d\'Ajuda',76,2803203,'N',-10.996733,-37.307827),(1781,15,'Japaratuba',76,2803302,'N',-10.589467,-36.941786),(1782,15,'Japoatã',76,2803401,'N',-10.346510,-36.800756),(1783,15,'Lagarto',76,2803500,'N',-10.915301,-37.666353),(1784,15,'Laranjeiras',76,2803609,'N',-10.797030,-37.160568),(1785,15,'Macambira',76,2803708,'N',-10.664150,-37.543445),(1786,15,'Malhada dos Bois',76,2803807,'N',-10.346452,-36.918902),(1787,15,'Malhador',76,2803906,'N',-10.660044,-37.311460),(1788,15,'Maruim',76,2804003,'N',-10.736932,-37.083314),(1789,15,'Moita Bonita',76,2804102,'N',-10.579044,-37.345749),(1790,15,'Monte Alegre de Sergipe',76,2804201,'N',-10.025862,-37.561426),(1791,15,'Muribeca',76,2804300,'N',-10.427427,-36.957001),(1792,15,'Neópolis',76,2804409,'N',-10.315878,-36.576718),(1793,15,'Nossa Senhora Aparecida',76,2804458,'N',-10.394651,-37.454439),(1794,15,'Nossa Senhora da Glória',76,2804508,'N',-10.215687,-37.419921),(1795,15,'Nossa Senhora das Dores',76,2804607,'N',-10.492054,-37.193711),(1796,15,'Nossa Senhora de Lourdes',76,2804706,'N',-10.078616,-37.050473),(1797,15,'Nossa Senhora do Socorro',76,2804805,'N',-10.848754,-37.128496),(1798,15,'Pacatuba',76,2804904,'N',-10.449900,-36.647986),(1799,15,'Pedra Mole',76,2805000,'N',-10.618119,-37.686027),(1800,15,'Pedrinhas',76,2805109,'N',-11.193503,-37.681128),(1801,15,'Pinhão',76,2805208,'N',-10.566690,-37.722111),(1802,15,'Pirambu',76,2805307,'N',-10.741056,-36.859746),(1803,15,'Poço Redondo',76,2805406,'N',-9.805790,-37.684214),(1804,15,'Poço Verde',76,2805505,'N',-10.707599,-38.176658),(1805,15,'Porto da Folha',76,2805604,'N',-9.919259,-37.276635),(1806,15,'Propriá',76,2805703,'N',-10.208207,-36.842099),(1807,15,'Riachão do Dantas',76,2805802,'N',-11.066402,-37.729341),(1808,15,'Riachuelo',76,2805901,'N',-10.731651,-37.193457),(1809,15,'Ribeirópolis',76,2806008,'N',-10.545190,-37.432939),(1810,15,'Rosário do Catete',76,2806107,'N',-10.694590,-37.031323),(1811,15,'Salgado',76,2806206,'N',-11.022119,-37.477755),(1812,15,'Santa Luzia do Itanhy',76,2806305,'N',-11.353317,-37.449842),(1813,15,'Santana do São Francisco',76,2806404,'N',-10.287672,-36.599579),(1814,15,'Santa Rosa de Lima',76,2806503,'N',-10.646234,-37.197732),(1815,15,'Santo Amaro das Brotas',76,2806602,'N',-10.782011,-37.056311),(1816,15,'São Cristóvão',76,2806701,'N',-11.013677,-37.209499),(1817,15,'São Domingos',76,2806800,'N',-10.792326,-37.568429),(1818,15,'São Francisco',76,2806909,'N',-10.346486,-36.886240),(1819,15,'São Miguel do Aleixo',76,2807006,'N',-10.387772,-37.383976),(1820,15,'Simão Dias',76,2807105,'N',-10.738062,-37.809431),(1821,15,'Siriri',76,2807204,'N',-10.605036,-37.112225),(1822,15,'Telha',76,2807303,'N',-10.209173,-36.883850),(1823,15,'Tobias Barreto',76,2807402,'N',-11.184330,-37.999001),(1824,15,'Tomar do Geru',76,2807501,'N',-11.368052,-37.845371),(1825,15,'Umbaúba',76,2807600,'N',-11.379872,-37.661147),(1826,16,'Abaíra',76,2900108,'N',-13.253532,-41.661608),(1827,16,'Abaré',76,2900207,'N',-8.723418,-39.116588),(1828,16,'Acajutiba',76,2900306,'N',-11.662613,-38.018286),(1829,16,'Adustina',76,2900355,'N',-10.529572,-38.115506),(1830,16,'Água Fria',76,2900405,'N',-11.872931,-38.768078),(1831,16,'Érico Cardoso',76,2900504,'N',-13.422348,-42.136164),(1832,16,'Aiquara',76,2900603,'N',-14.127277,-39.885778),(1833,16,'Alagoinhas',76,2900702,'N',-12.134183,-38.422616),(1834,16,'Alcobaça',76,2900801,'N',-17.518933,-39.194214),(1835,16,'Almadina',76,2900900,'N',-14.706048,-39.635903),(1836,16,'Amargosa',76,2901007,'N',-13.034451,-39.598123),(1837,16,'Amélia Rodrigues',76,2901106,'N',-12.400188,-38.755557),(1838,16,'América Dourada',76,2901155,'N',-11.449646,-41.437163),(1839,16,'Anagé',76,2901205,'N',-14.611326,-41.127113),(1840,16,'Andaraí',76,2901304,'N',-12.801351,-41.324642),(1841,16,'Andorinha',76,2901353,'N',-10.344240,-39.832336),(1842,16,'Angical',76,2901403,'N',-12.006683,-44.695823),(1843,16,'Anguera',76,2901502,'N',-12.149587,-39.248499),(1844,16,'Antas',76,2901601,'N',-10.412702,-38.331042),(1845,16,'Antônio Cardoso',76,2901700,'N',-12.434839,-39.118662),(1846,16,'Antônio Gonçalves',76,2901809,'N',-10.575798,-40.275659),(1847,16,'Aporá',76,2901908,'N',-11.655394,-38.079995),(1848,16,'Apuarema',76,2901957,'N',-13.853229,-39.742132),(1849,16,'Aracatu',76,2902005,'N',-14.426630,-41.461685),(1850,16,'Araças',76,2902054,'N',-12.215200,-38.198288),(1851,16,'Araci',76,2902104,'N',-11.335728,-38.960958),(1852,16,'Aramari',76,2902203,'N',-12.088183,-38.503066),(1853,16,'Arataca',76,2902252,'N',-15.260873,-39.413282),(1854,16,'Aratuípe',76,2902302,'N',-13.080597,-39.002911),(1855,16,'Aurelino Leal',76,2902401,'N',-14.316949,-39.321997),(1856,16,'Baianópolis',76,2902500,'N',-12.304125,-44.536098),(1857,16,'Baixa Grande',76,2902609,'N',-11.959357,-40.166861),(1858,16,'Banzaê',76,2902658,'N',-10.574092,-38.611870),(1859,16,'Barra',76,2902708,'N',-11.088955,-43.143639),(1860,16,'Barra da Estiva',76,2902807,'N',-13.620205,-41.331696),(1861,16,'Barra do Choça',76,2902906,'N',-14.864273,-40.576373),(1862,16,'Barra do Mendes',76,2903003,'N',-11.808828,-42.059128),(1863,16,'Barra do Rocha',76,2903102,'N',-14.210029,-39.601386),(1864,16,'Barreiras',76,2903201,'N',-12.144925,-45.004168),(1865,16,'Barro Alto',76,2903235,'N',-11.761064,-41.912096),(1866,16,'Barrocas',76,2903276,'N',-11.529113,-39.078669),(1867,16,'Barro Preto',76,2903300,'N',-14.809754,-39.473335),(1868,16,'Belmonte',76,2903409,'N',-15.861396,-38.880303),(1869,16,'Belo Campo',76,2903508,'N',-15.033496,-41.260033),(1870,16,'Biritinga',76,2903607,'N',-11.620110,-38.812159),(1871,16,'Boa Nova',76,2903706,'N',-14.362608,-40.200522),(1872,16,'Boa Vista do Tupim',76,2903805,'N',-12.661322,-40.605743),(1873,16,'Bom Jesus da Lapa',76,2903904,'N',-13.254114,-43.417142),(1874,16,'Bom Jesus da Serra',76,2903953,'N',-14.372922,-40.501176),(1875,16,'Boninal',76,2904001,'N',-12.715121,-41.824328),(1876,16,'Bonito',76,2904050,'N',-11.969573,-41.268403),(1877,16,'Boquira',76,2904100,'N',-12.820823,-42.730115),(1878,16,'Botuporã',76,2904209,'N',-13.380866,-42.529278),(1879,16,'Brejões',76,2904308,'N',-13.105536,-39.793492),(1880,16,'Brejolândia',76,2904407,'N',-12.486693,-43.965665),(1881,16,'Brotas de Macaúbas',76,2904506,'N',-12.002636,-42.624691),(1882,16,'Brumado',76,2904605,'N',-14.205438,-41.667070),(1883,16,'Buerarema',76,2904704,'N',-14.956441,-39.302520),(1884,16,'Buritirama',76,2904753,'N',-10.711791,-43.631381),(1885,16,'Caatiba',76,2904803,'N',-14.978551,-40.410272),(1886,16,'Cabaceiras do Paraguaçu',76,2904852,'N',-12.537136,-39.186713),(1887,16,'Cachoeira',76,2904902,'N',-12.596211,-38.969398),(1888,16,'Caculé',76,2905008,'N',-14.504206,-42.221414),(1889,16,'Caém',76,2905107,'N',-11.093092,-40.437312),(1890,16,'Caetanos',76,2905156,'N',-14.338563,-40.909290),(1891,16,'Caetité',76,2905206,'N',-14.066754,-42.485711),(1892,16,'Cafarnaum',76,2905305,'N',-11.691356,-41.472222),(1893,16,'Cairu',76,2905404,'N',-13.487603,-39.043254),(1894,16,'Caldeirão Grande',76,2905503,'N',-11.022156,-40.307370),(1895,16,'Camacan',76,2905602,'N',-15.417627,-39.496367),(1896,16,'Camaçari',76,2905701,'N',-12.698817,-38.325740),(1897,16,'Camamu',76,2905800,'N',-13.947076,-39.100570),(1898,16,'Campo Alegre de Lourdes',76,2905909,'N',-9.517154,-43.012298),(1899,16,'Campo Formoso',76,2906006,'N',-10.505662,-40.318821),(1900,16,'Canápolis',76,2906105,'N',-13.075911,-44.205029),(1901,16,'Canarana',76,2906204,'N',-11.687583,-41.765492),(1902,16,'Canavieiras',76,2906303,'N',-15.679777,-38.947376),(1903,16,'Candeal',76,2906402,'N',-11.804970,-39.123718),(1904,16,'Candeias',76,2906501,'N',-12.671923,-38.543596),(1905,16,'Candiba',76,2906600,'N',-14.413187,-42.864402),(1906,16,'Cândido Sales',76,2906709,'N',-15.506066,-41.241118),(1907,16,'Cansanção',76,2906808,'N',-10.666750,-39.496605),(1908,16,'Canudos',76,2906824,'N',-9.890673,-39.024071),(1909,16,'Capela do Alto Alegre',76,2906857,'N',-11.670082,-39.835355),(1910,16,'Capim Grosso',76,2906873,'N',-11.381574,-40.011001),(1911,16,'Caraíbas',76,2906899,'N',-14.722069,-41.265431),(1912,16,'Caravelas',76,2906907,'N',-17.733371,-39.253382),(1913,16,'Cardeal da Silva',76,2907004,'N',-11.940767,-37.945477),(1914,16,'Carinhanha',76,2907103,'N',-14.302007,-43.761777),(1915,16,'Casa Nova',76,2907202,'N',-9.178595,-40.975797),(1916,16,'Castro Alves',76,2907301,'N',-12.765833,-39.426519),(1917,16,'Catolândia',76,2907400,'N',-12.316006,-44.859770),(1918,16,'Catu',76,2907509,'N',-12.355187,-38.376294),(1919,16,'Caturama',76,2907558,'N',-13.328201,-42.296407),(1920,16,'Central',76,2907608,'N',-11.137989,-42.112349),(1921,16,'Chorrochó',76,2907707,'N',-8.975478,-39.102370),(1922,16,'Cícero Dantas',76,2907806,'N',-10.592172,-38.383419),(1923,16,'Cipó',76,2907905,'N',-11.101144,-38.517129),(1924,16,'Coaraci',76,2908002,'N',-14.636814,-39.552304),(1925,16,'Cocos',76,2908101,'N',-14.171078,-44.545669),(1926,16,'Conceição da Feira',76,2908200,'N',-12.503992,-38.999781),(1927,16,'Conceição do Almeida',76,2908309,'N',-12.778020,-39.170946),(1928,16,'Conceição do Coité',76,2908408,'N',-11.561826,-39.281684),(1929,16,'Conceição do Jacuípe',76,2908507,'N',-12.322946,-38.763674),(1930,16,'Conde',76,2908606,'N',-11.813432,-37.606978),(1931,16,'Condeúba',76,2908705,'N',-14.890410,-41.970810),(1932,16,'Contendas do Sincorá',76,2908804,'N',-13.755497,-41.046318),(1933,16,'Coração de Maria',76,2908903,'N',-12.247921,-38.750517),(1934,16,'Cordeiros',76,2909000,'N',-15.037234,-41.935734),(1935,16,'Coribe',76,2909109,'N',-13.827842,-44.453036),(1936,16,'Coronel João Sá',76,2909208,'N',-10.279395,-37.932964),(1937,16,'Correntina',76,2909307,'N',-13.341772,-44.641087),(1938,16,'Cotegipe',76,2909406,'N',-12.028597,-44.252476),(1939,16,'Cravolândia',76,2909505,'N',-13.362623,-39.812712),(1940,16,'Crisópolis',76,2909604,'N',-11.517790,-38.151716),(1941,16,'Cristópolis',76,2909703,'N',-12.231451,-44.411842),(1942,16,'Cruz das Almas',76,2909802,'N',-12.663786,-39.100736),(1943,16,'Curaçá',76,2909901,'N',-8.989032,-39.908081),(1944,16,'Dário Meira',76,2910008,'N',-14.435047,-39.902466),(1945,16,'Dias d\'Ávila',76,2910057,'N',-12.604368,-38.297994),(1946,16,'Dom Basílio',76,2910107,'N',-13.763327,-41.770878),(1947,16,'Dom Macedo Costa',76,2910206,'N',-12.911489,-39.188094),(1948,16,'Elísio Medrado',76,2910305,'N',-12.943326,-39.520486),(1949,16,'Encruzilhada',76,2910404,'N',-15.534580,-40.909121),(1950,16,'Entre Rios',76,2910503,'N',-11.937261,-38.078777),(1951,16,'Esplanada',76,2910602,'N',-11.799409,-37.944981),(1952,16,'Euclides da Cunha',76,2910701,'N',-10.505818,-39.014249),(1953,16,'Eunápolis',76,2910727,'N',-16.375167,-39.584172),(1954,16,'Fátima',76,2910750,'N',-10.600170,-38.208675),(1955,16,'Feira da Mata',76,2910776,'N',-14.210565,-44.283464),(1956,16,'Feira de Santana',76,2910800,'N',-12.229284,-38.960033),(1957,16,'Filadélfia',76,2910859,'N',-10.738464,-40.137827),(1958,16,'Firmino Alves',76,2910909,'N',-14.984935,-39.921442),(1959,16,'Floresta Azul',76,2911006,'N',-14.862798,-39.656524),(1960,16,'Formosa do Rio Preto',76,2911105,'N',-11.047032,-45.190991),(1961,16,'Gandu',76,2911204,'N',-13.743781,-39.486324),(1962,16,'Gavião',76,2911253,'N',-11.470895,-39.786113),(1963,16,'Gentio do Ouro',76,2911303,'N',-11.427531,-42.504742),(1964,16,'Glória',76,2911402,'N',-9.340173,-38.259273),(1965,16,'Gongogi',76,2911501,'N',-14.323713,-39.467240),(1966,16,'Governador Mangabeira',76,2911600,'N',-12.601554,-39.034024),(1967,16,'Guajeru',76,2911659,'N',-14.546962,-41.937148),(1968,16,'Guanambi',76,2911709,'N',-14.225315,-42.778562),(1969,16,'Guaratinga',76,2911808,'N',-16.581216,-39.781284),(1970,16,'Heliópolis',76,2911857,'N',-10.675299,-38.280233),(1971,16,'Iaçu',76,2911907,'N',-12.769138,-40.213365),(1972,16,'Ibiassucê',76,2912004,'N',-14.276703,-42.255774),(1973,16,'Ibicaraí',76,2912103,'N',-14.865763,-39.591541),(1974,16,'Ibicoara',76,2912202,'N',-13.426327,-41.272066),(1975,16,'Ibicuí',76,2912301,'N',-14.843090,-39.989832),(1976,16,'Ibipeba',76,2912400,'N',-11.637526,-42.011248),(1977,16,'Ibipitanga',76,2912509,'N',-12.879106,-42.491229),(1978,16,'Ibiquera',76,2912608,'N',-12.649929,-40.935421),(1979,16,'Ibirapitanga',76,2912707,'N',-14.165032,-39.374467),(1980,16,'Ibirapuã',76,2912806,'N',-17.684197,-40.106309),(1981,16,'Ibirataia',76,2912905,'N',-14.067269,-39.640919),(1982,16,'Ibitiara',76,2913002,'N',-12.645514,-42.213294),(1983,16,'Ibititá',76,2913101,'N',-11.552771,-41.975152),(1984,16,'Ibotirama',76,2913200,'N',-12.184014,-43.218696),(1985,16,'Ichu',76,2913309,'N',-11.755250,-39.188716),(1986,16,'Igaporã',76,2913408,'N',-13.767976,-42.717880),(1987,16,'Igrapiúna',76,2913457,'N',-13.820402,-39.140081),(1988,16,'Iguaí',76,2913507,'N',-14.757963,-40.097513),(1989,16,'Ilhéus',76,2913606,'N',-14.793320,-39.043184),(1990,16,'Inhambupe',76,2913705,'N',-11.789127,-38.354019),(1991,16,'Ipecaetá',76,2913804,'N',-12.314199,-39.306026),(1992,16,'Ipiaú',76,2913903,'N',-14.137474,-39.735654),(1993,16,'Ipirá',76,2914000,'N',-12.160287,-39.740708),(1994,16,'Ipupiara',76,2914109,'N',-11.828827,-42.610689),(1995,16,'Irajuba',76,2914208,'N',-13.256610,-40.083852),(1996,16,'Iramaia',76,2914307,'N',-13.293651,-40.969582),(1997,16,'Iraquara',76,2914406,'N',-12.243501,-41.617959),(1998,16,'Irará',76,2914505,'N',-12.033704,-38.771651),(1999,16,'Irecê',76,2914604,'N',-11.303380,-41.858860),(2000,16,'Itabela',76,2914653,'N',-16.575836,-39.553238),(2001,16,'Itaberaba',76,2914703,'N',-12.532254,-40.306995),(2002,16,'Itabuna',76,2914802,'N',-14.789040,-39.273109),(2003,16,'Itacaré',76,2914901,'N',-14.278249,-38.994842),(2004,16,'Itaeté',76,2915007,'N',-12.982034,-40.963419),(2005,16,'Itagi',76,2915106,'N',-14.161794,-40.013625),(2006,16,'Itagibá',76,2915205,'N',-14.286514,-39.848516),(2007,16,'Itagimirim',76,2915304,'N',-16.088143,-39.615192),(2008,16,'Itaguaçu da Bahia',76,2915353,'N',-11.008722,-42.401157),(2009,16,'Itaju do Colônia',76,2915403,'N',-15.140194,-39.724725),(2010,16,'Itajuípe',76,2915502,'N',-14.678019,-39.381788),(2011,16,'Itamaraju',76,2915601,'N',-17.042338,-39.533040),(2012,16,'Itamari',76,2915700,'N',-13.774837,-39.676348),(2013,16,'Itambé',76,2915809,'N',-15.248019,-40.624042),(2014,16,'Itanagra',76,2915908,'N',-12.268163,-38.038181),(2015,16,'Itanhém',76,2916005,'N',-17.166333,-40.327049),(2016,16,'Itaparica',76,2916104,'N',-12.881489,-38.684030),(2017,16,'Itapé',76,2916203,'N',-14.894808,-39.429963),(2018,16,'Itapebi',76,2916302,'N',-15.972167,-39.528541),(2019,16,'Itapetinga',76,2916401,'N',-15.246167,-40.247381),(2020,16,'Itapicuru',76,2916500,'N',-11.310953,-38.218612),(2021,16,'Itapitanga',76,2916609,'N',-14.421195,-39.566362),(2022,16,'Itaquara',76,2916708,'N',-13.446409,-39.938244),(2023,16,'Itarantim',76,2916807,'N',-15.657830,-40.061545),(2024,16,'Itatim',76,2916856,'N',-12.709247,-39.703775),(2025,16,'Itiruçu',76,2916906,'N',-13.532399,-40.146172),(2026,16,'Itiúba',76,2917003,'N',-10.691901,-39.853277),(2027,16,'Itororó',76,2917102,'N',-15.119037,-40.071703),(2028,16,'Ituaçu',76,2917201,'N',-13.807407,-41.310982),(2029,16,'Ituberá',76,2917300,'N',-13.736157,-39.149042),(2030,16,'Iuiú',76,2917334,'N',-14.412146,-43.556403),(2031,16,'Jaborandi',76,2917359,'N',-13.625934,-44.465970),(2032,16,'Jacaraci',76,2917409,'N',-14.849191,-42.430609),(2033,16,'Jacobina',76,2917508,'N',-11.185062,-40.513018),(2034,16,'Jaguaquara',76,2917607,'N',-13.530699,-39.970255),(2035,16,'Jaguarari',76,2917706,'N',-10.262854,-40.193611),(2036,16,'Jaguaripe',76,2917805,'N',-13.115064,-38.891419),(2037,16,'Jandaíra',76,2917904,'N',-11.565748,-37.786868),(2038,16,'Jequié',76,2918001,'N',-13.855664,-40.088607),(2039,16,'Jeremoabo',76,2918100,'N',-10.062242,-38.351819),(2040,16,'Jiquiriçá',76,2918209,'N',-13.252306,-39.576502),(2041,16,'Jitaúna',76,2918308,'N',-14.017429,-39.889632),(2042,16,'João Dourado',76,2918357,'N',-11.346405,-41.659989),(2043,16,'Juazeiro',76,2918407,'N',-9.410717,-40.503552),(2044,16,'Jucuruçu',76,2918456,'N',-16.844516,-40.158813),(2045,16,'Jussara',76,2918506,'N',-11.054555,-41.979732),(2046,16,'Jussari',76,2918555,'N',-15.190456,-39.494940),(2047,16,'Jussiape',76,2918605,'N',-13.512950,-41.590142),(2048,16,'Lafaiete Coutinho',76,2918704,'N',-13.652999,-40.210606),(2049,16,'Lagoa Real',76,2918753,'N',-14.030029,-42.145712),(2050,16,'Laje',76,2918803,'N',-13.179649,-39.427552),(2051,16,'Lajedão',76,2918902,'N',-17.612131,-40.345847),(2052,16,'Lajedinho',76,2919009,'N',-12.360374,-40.903710),(2053,16,'Lajedo do Tabocal',76,2919058,'N',-13.472520,-40.225230),(2054,16,'Lamarão',76,2919108,'N',-11.791578,-38.892980),(2055,16,'Lapão',76,2919157,'N',-11.380139,-41.831909),(2056,16,'Lauro de Freitas',76,2919207,'N',-12.896718,-38.323462),(2057,16,'Lençóis',76,2919306,'N',-12.564063,-41.394031),(2058,16,'Licínio de Almeida',76,2919405,'N',-14.675866,-42.502684),(2059,16,'Livramento de Nossa Senhora',76,2919504,'N',-13.649501,-41.840387),(2060,16,'Luís Eduardo Magalhães',76,2919553,'N',-12.078372,-45.800464),(2061,16,'Macajuba',76,2919603,'N',-12.141393,-40.365180),(2062,16,'Macarani',76,2919702,'N',-15.567316,-40.422044),(2063,16,'Macaúbas',76,2919801,'N',-13.023672,-42.694666),(2064,16,'Macururé',76,2919900,'N',-9.174706,-39.059515),(2065,16,'Madre de Deus',76,2919926,'N',-12.740313,-38.602769),(2066,16,'Maetinga',76,2919959,'N',-14.661266,-41.483657),(2067,16,'Maiquinique',76,2920007,'N',-15.619772,-40.260515),(2068,16,'Mairi',76,2920106,'N',-11.711111,-40.149783),(2069,16,'Malhada',76,2920205,'N',-14.340383,-43.771620),(2070,16,'Malhada de Pedras',76,2920304,'N',-14.377945,-41.878698),(2071,16,'Manoel Vitorino',76,2920403,'N',-14.145932,-40.242016),(2072,16,'Mansidão',76,2920452,'N',-10.715829,-44.036485),(2073,16,'Maracás',76,2920502,'N',-13.437674,-40.431288),(2074,16,'Maragogipe',76,2920601,'N',-12.775120,-38.918881),(2075,16,'Maraú',76,2920700,'N',-14.105531,-39.024952),(2076,16,'Marcionílio Souza',76,2920809,'N',-13.003510,-40.534530),(2077,16,'Mascote',76,2920908,'N',-15.565988,-39.302400),(2078,16,'Mata de São João',76,2921005,'N',-12.529971,-38.297299),(2079,16,'Matina',76,2921054,'N',-13.912636,-42.842932),(2080,16,'Medeiros Neto',76,2921104,'N',-17.370409,-40.220174),(2081,16,'Miguel Calmon',76,2921203,'N',-11.428344,-40.596070),(2082,16,'Milagres',76,2921302,'N',-12.870575,-39.859127),(2083,16,'Mirangaba',76,2921401,'N',-10.956117,-40.574793),(2084,16,'Mirante',76,2921450,'N',-14.239818,-40.773567),(2085,16,'Monte Santo',76,2921500,'N',-10.440158,-39.332706),(2086,16,'Morpará',76,2921609,'N',-11.558043,-43.277913),(2087,16,'Morro do Chapéu',76,2921708,'N',-11.550126,-41.159097),(2088,16,'Mortugaba',76,2921807,'N',-15.016407,-42.380449),(2089,16,'Mucugê',76,2921906,'N',-13.003894,-41.373213),(2090,16,'Mucuri',76,2922003,'N',-18.088540,-39.547546),(2091,16,'Mulungu do Morro',76,2922052,'N',-11.967220,-41.643800),(2092,16,'Mundo Novo',76,2922102,'N',-11.864723,-40.471498),(2093,16,'Muniz Ferreira',76,2922201,'N',-12.997304,-39.112982),(2094,16,'Muquém de São Francisco',76,2922250,'N',-12.068261,-43.551860),(2095,16,'Muritiba',76,2922300,'N',-12.623372,-38.988689),(2096,16,'Mutuípe',76,2922409,'N',-13.229373,-39.504164),(2097,16,'Nazaré',76,2922508,'N',-13.035148,-39.010623),(2098,16,'Nilo Peçanha',76,2922607,'N',-13.604494,-39.112986),(2099,16,'Nordestina',76,2922656,'N',-10.832054,-39.429131),(2100,16,'Nova Canaã',76,2922706,'N',-14.793598,-40.145175),(2101,16,'Nova Fátima',76,2922730,'N',-11.608398,-39.632217),(2102,16,'Nova Ibiá',76,2922755,'N',-13.809907,-39.625686),(2103,16,'Nova Itarana',76,2922805,'N',-13.033050,-40.069250),(2104,16,'Nova Redenção',76,2922854,'N',-12.818868,-41.068860),(2105,16,'Nova Soure',76,2922904,'N',-11.238008,-38.484614),(2106,16,'Nova Viçosa',76,2923001,'N',-17.893392,-39.372012),(2107,16,'Novo Horizonte',76,2923035,'N',-12.801997,-42.167788),(2108,16,'Novo Triunfo',76,2923050,'N',-10.342018,-38.415581),(2109,16,'Olindina',76,2923100,'N',-11.358306,-38.331080),(2110,16,'Oliveira dos Brejinhos',76,2923209,'N',-12.320589,-42.897020),(2111,16,'Ouriçangas',76,2923308,'N',-12.006852,-38.628417),(2112,16,'Ourolândia',76,2923357,'N',-10.964618,-41.081812),(2113,16,'Palmas de Monte Alto',76,2923407,'N',-14.257351,-43.170512),(2114,16,'Palmeiras',76,2923506,'N',-12.510071,-41.577337),(2115,16,'Paramirim',76,2923605,'N',-13.442427,-42.240649),(2116,16,'Paratinga',76,2923704,'N',-12.690697,-43.182025),(2117,16,'Paripiranga',76,2923803,'N',-10.675992,-37.870448),(2118,16,'Pau Brasil',76,2923902,'N',-15.463619,-39.648782),(2119,16,'Paulo Afonso',76,2924009,'N',-9.403332,-38.218329),(2120,16,'Pé de Serra',76,2924058,'N',-11.831179,-39.609425),(2121,16,'Pedrão',76,2924108,'N',-12.143587,-38.649001),(2122,16,'Pedro Alexandre',76,2924207,'N',-10.010072,-37.899262),(2123,16,'Piatã',76,2924306,'N',-13.164457,-41.770623),(2124,16,'Pilão Arcado',76,2924405,'N',-9.997771,-42.484757),(2125,16,'Pindaí',76,2924504,'N',-14.489988,-42.687033),(2126,16,'Pindobaçu',76,2924603,'N',-10.734207,-40.357159),(2127,16,'Pintadas',76,2924652,'N',-11.808037,-39.908239),(2128,16,'Piraí do Norte',76,2924678,'N',-13.761225,-39.374522),(2129,16,'Piripá',76,2924702,'N',-14.946871,-41.724866),(2130,16,'Piritiba',76,2924801,'N',-11.737234,-40.551328),(2131,16,'Planaltino',76,2924900,'N',-13.256609,-40.368397),(2132,16,'Planalto',76,2925006,'N',-14.670170,-40.484640),(2133,16,'Poções',76,2925105,'N',-14.522325,-40.365127),(2134,16,'Pojuca',76,2925204,'N',-12.429263,-38.327167),(2135,16,'Ponto Novo',76,2925253,'N',-10.867148,-40.135393),(2136,16,'Porto Seguro',76,2925303,'N',-16.449056,-39.062114),(2137,16,'Potiraguá',76,2925402,'N',-15.592456,-39.875660),(2138,16,'Prado',76,2925501,'N',-17.329564,-39.229238),(2139,16,'Presidente Dutra',76,2925600,'N',-11.296504,-41.990931),(2140,16,'Presidente Jânio Quadros',76,2925709,'N',-14.685395,-41.682443),(2141,16,'Presidente Tancredo Neves',76,2925758,'N',-13.470842,-39.424060),(2142,16,'Queimadas',76,2925808,'N',-10.976391,-39.626407),(2143,16,'Quijingue',76,2925907,'N',-10.751672,-39.206609),(2144,16,'Quixabeira',76,2925931,'N',-11.408685,-40.121497),(2145,16,'Rafael Jambeiro',76,2925956,'N',-12.407417,-39.500636),(2146,16,'Remanso',76,2926004,'N',-9.623907,-42.079668),(2147,16,'Retirolândia',76,2926103,'N',-11.489667,-39.424178),(2148,16,'Riachão das Neves',76,2926202,'N',-11.746248,-44.916470),(2149,16,'Riachão do Jacuípe',76,2926301,'N',-11.805979,-39.383035),(2150,16,'Riacho de Santana',76,2926400,'N',-13.606588,-42.938347),(2151,16,'Ribeira do Amparo',76,2926509,'N',-11.039158,-38.430554),(2152,16,'Ribeira do Pombal',76,2926608,'N',-10.836278,-38.536099),(2153,16,'Ribeirão do Largo',76,2926657,'N',-15.464060,-40.743860),(2154,16,'Rio de Contas',76,2926707,'N',-13.588608,-41.818791),(2155,16,'Rio do Antônio',76,2926806,'N',-14.408510,-42.075055),(2156,16,'Rio do Pires',76,2926905,'N',-13.118663,-42.287878),(2157,16,'Rio Real',76,2927002,'N',-11.484935,-37.933578),(2158,16,'Rodelas',76,2927101,'N',-8.844997,-38.772309),(2159,16,'Ruy Barbosa',76,2927200,'N',-12.289317,-40.500371),(2160,16,'Salinas da Margarida',76,2927309,'N',-12.877997,-38.757944),(2161,16,'Salvador',76,2927408,'S',-13.014772,-38.488061),(2162,16,'Santa Bárbara',76,2927507,'N',-11.956903,-38.966139),(2163,16,'Santa Brígida',76,2927606,'N',-9.731891,-38.127818),(2164,16,'Santa Cruz Cabrália',76,2927705,'N',-16.338097,-39.013183),(2165,16,'Santa Cruz da Vitória',76,2927804,'N',-14.960078,-39.811836),(2166,16,'Santa Inês',76,2927903,'N',-13.298687,-39.827605),(2167,16,'Santaluz',76,2928000,'N',-11.253360,-39.377378),(2168,16,'Santa Luzia',76,2928059,'N',-15.432788,-39.332493),(2169,16,'Santa Maria da Vitória',76,2928109,'N',-13.393545,-44.198309),(2170,16,'Santana',76,2928208,'N',-12.980751,-44.053258),(2171,16,'Santanópolis',76,2928307,'N',-12.028407,-38.867162),(2172,16,'Santa Rita de Cássia',76,2928406,'N',-11.008045,-44.519050),(2173,16,'Santa Teresinha',76,2928505,'N',-12.772852,-39.521140),(2174,16,'Santo Amaro',76,2928604,'N',-12.549140,-38.709031),(2175,16,'Santo Antônio de Jesus',76,2928703,'N',-12.968008,-39.261131),(2176,16,'Santo Estêvão',76,2928802,'N',-12.428893,-39.253190),(2177,16,'São Desidério',76,2928901,'N',-12.360895,-44.974096),(2178,16,'São Domingos',76,2928950,'N',-11.463466,-39.526265),(2179,16,'São Félix',76,2929008,'N',-12.605713,-38.968719),(2180,16,'São Félix do Coribe',76,2929057,'N',-13.404218,-44.196873),(2181,16,'São Felipe',76,2929107,'N',-12.845078,-39.084015),(2182,16,'São Francisco do Conde',76,2929206,'N',-12.629983,-38.675798),(2183,16,'São Gabriel',76,2929255,'N',-11.226707,-41.874269),(2184,16,'São Gonçalo dos Campos',76,2929305,'N',-12.430310,-38.949772),(2185,16,'São José da Vitória',76,2929354,'N',-15.078178,-39.338921),(2186,16,'São José do Jacuípe',76,2929370,'N',-11.505326,-40.023656),(2187,16,'São Miguel das Matas',76,2929404,'N',-13.051733,-39.455780),(2188,16,'São Sebastião do Passé',76,2929503,'N',-12.512725,-38.495310),(2189,16,'Sapeaçu',76,2929602,'N',-12.735161,-39.194808),(2190,16,'Sátiro Dias',76,2929701,'N',-11.600809,-38.591354),(2191,16,'Saubara',76,2929750,'N',-12.736904,-38.770607),(2192,16,'Saúde',76,2929800,'N',-10.941105,-40.418551),(2193,16,'Seabra',76,2929909,'N',-12.418763,-41.768201),(2194,16,'Sebastião Laranjeiras',76,2930006,'N',-14.574822,-42.944113),(2195,16,'Senhor do Bonfim',76,2930105,'N',-10.456771,-40.189985),(2196,16,'Serra do Ramalho',76,2930154,'N',-13.564466,-43.580731),(2197,16,'Sento Sé',76,2930204,'N',-9.740380,-41.890997),(2198,16,'Serra Dourada',76,2930303,'N',-12.762595,-43.952337),(2199,16,'Serra Preta',76,2930402,'N',-12.159727,-39.332504),(2200,16,'Serrinha',76,2930501,'N',-11.659532,-39.008133),(2201,16,'Serrolândia',76,2930600,'N',-11.416032,-40.299905),(2202,16,'Simões Filho',76,2930709,'N',-12.783941,-38.411519),(2203,16,'Sítio do Mato',76,2930758,'N',-13.085793,-43.466441),(2204,16,'Sítio do Quinto',76,2930766,'N',-10.364159,-38.200371),(2205,16,'Sobradinho',76,2930774,'N',-9.470807,-40.791595),(2206,16,'Souto Soares',76,2930808,'N',-12.092596,-41.644248),(2207,16,'Tabocas do Brejo Velho',76,2930907,'N',-12.707301,-44.011189),(2208,16,'Tanhaçu',76,2931004,'N',-14.025508,-41.254334),(2209,16,'Tanque Novo',76,2931053,'N',-13.546560,-42.490613),(2210,16,'Tanquinho',76,2931103,'N',-11.971693,-39.100547),(2211,16,'Taperoá',76,2931202,'N',-13.530993,-39.100622),(2212,16,'Tapiramutá',76,2931301,'N',-11.852341,-40.788700),(2213,16,'Teixeira de Freitas',76,2931350,'N',-17.537750,-39.744518),(2214,16,'Teodoro Sampaio',76,2931400,'N',-12.301407,-38.641928),(2215,16,'Teofilândia',76,2931509,'N',-11.482925,-39.005813),(2216,16,'Teolândia',76,2931608,'N',-13.601106,-39.489386),(2217,16,'Terra Nova',76,2931707,'N',-12.403092,-38.623102),(2218,16,'Tremedal',76,2931806,'N',-14.972472,-41.409576),(2219,16,'Tucano',76,2931905,'N',-10.964300,-38.785948),(2220,16,'Uauá',76,2932002,'N',-9.832654,-39.488064),(2221,16,'Ubaíra',76,2932101,'N',-13.268089,-39.662033),(2222,16,'Ubaitaba',76,2932200,'N',-14.310436,-39.322547),(2223,16,'Ubatã',76,2932309,'N',-14.211467,-39.522668),(2224,16,'Uibaí',76,2932408,'N',-11.338115,-42.133796),(2225,16,'Umburanas',76,2932457,'N',-10.729271,-41.332914),(2226,16,'Una',76,2932507,'N',-15.294208,-39.074713),(2227,16,'Urandi',76,2932606,'N',-14.763242,-42.658999),(2228,16,'Uruçuca',76,2932705,'N',-14.592035,-39.283802),(2229,16,'Utinga',76,2932804,'N',-12.083318,-41.095829),(2230,16,'Valença',76,2932903,'N',-13.370342,-39.072350),(2231,16,'Valente',76,2933000,'N',-11.412490,-39.464246),(2232,16,'Várzea da Roça',76,2933059,'N',-11.598986,-40.140637),(2233,16,'Várzea do Poço',76,2933109,'N',-11.523980,-40.318918),(2234,16,'Várzea Nova',76,2933158,'N',-11.257231,-40.945846),(2235,16,'Varzedo',76,2933174,'N',-12.975313,-39.393476),(2236,16,'Vera Cruz',76,2933208,'N',-12.935733,-38.619160),(2237,16,'Vereda',76,2933257,'N',-17.223934,-40.084485),(2238,16,'Vitória da Conquista',76,2933307,'N',-14.848005,-40.839810),(2239,16,'Wagner',76,2933406,'N',-12.284251,-41.169627),(2240,16,'Wanderley',76,2933455,'N',-12.120150,-43.888930),(2241,16,'Wenceslau Guimarães',76,2933505,'N',-13.688588,-39.479671),(2242,16,'Xique-Xique',76,2933604,'N',-10.824974,-42.725508),(2243,17,'Abadia dos Dourados',76,3100104,'N',-18.487565,-47.396832),(2244,17,'Abaeté',76,3100203,'N',-19.155848,-45.446191),(2245,17,'Abre Campo',76,3100302,'N',-20.301445,-42.480990),(2246,17,'Acaiaca',76,3100401,'N',-20.360409,-43.148239),(2247,17,'Açucena',76,3100500,'N',-19.076713,-42.546211),(2248,17,'Água Boa',76,3100609,'N',-17.991053,-42.389643),(2249,17,'Água Comprida',76,3100708,'N',-20.059312,-48.108077),(2250,17,'Aguanil',76,3100807,'N',-20.937432,-45.389465),(2251,17,'Águas Formosas',76,3100906,'N',-17.082304,-40.935228),(2252,17,'Águas Vermelhas',76,3101003,'N',-15.745320,-41.458788),(2253,17,'Aimorés',76,3101102,'N',-19.491950,-41.073327),(2254,17,'Aiuruoca',76,3101201,'N',-21.975897,-44.602824),(2255,17,'Alagoa',76,3101300,'N',-22.171136,-44.638099),(2256,17,'Albertina',76,3101409,'N',-22.199764,-46.611603),(2257,17,'Além Paraíba',76,3101508,'N',-21.876804,-42.695947),(2258,17,'Alfenas',76,3101607,'N',-21.428178,-45.948918),(2259,17,'Alfredo Vasconcelos',76,3101631,'N',-21.139423,-43.773890),(2260,17,'Almenara',76,3101706,'N',-16.180616,-40.697651),(2261,17,'Alpercata',76,3101805,'N',-18.986831,-41.989129),(2262,17,'Alpinópolis',76,3101904,'N',-20.861855,-46.389483),(2263,17,'Alterosa',76,3102001,'N',-21.255870,-46.145321),(2264,17,'Alto Caparaó',76,3102050,'N',-20.444361,-41.873084),(2265,17,'Alto Rio Doce',76,3102100,'N',-21.022146,-43.418871),(2266,17,'Alvarenga',76,3102209,'N',-19.414470,-41.726442),(2267,17,'Alvinópolis',76,3102308,'N',-20.114763,-43.066083),(2268,17,'Alvorada de Minas',76,3102407,'N',-18.733593,-43.366084),(2269,17,'Amparo do Serra',76,3102506,'N',-20.510067,-42.807202),(2270,17,'Andradas',76,3102605,'N',-22.072807,-46.575583),(2271,17,'Cachoeira de Pajeú',76,3102704,'N',-15.965176,-41.496410),(2272,17,'Andrelândia',76,3102803,'N',-21.736968,-44.317699),(2273,17,'Angelândia',76,3102852,'N',-17.727790,-42.266450),(2274,17,'Antônio Carlos',76,3102902,'N',-21.318580,-43.755641),(2275,17,'Antônio Dias',76,3103009,'N',-19.651467,-42.869545),(2276,17,'Antônio Prado de Minas',76,3103108,'N',-21.018232,-42.109343),(2277,17,'Araçaí',76,3103207,'N',-19.200364,-44.246924),(2278,17,'Aracitaba',76,3103306,'N',-21.339269,-43.381556),(2279,17,'Araçuaí',76,3103405,'N',-16.851781,-42.064207),(2280,17,'Araguari',76,3103504,'N',-18.648270,-48.191605),(2281,17,'Arantina',76,3103603,'N',-21.916104,-44.246954),(2282,17,'Araponga',76,3103702,'N',-20.665662,-42.526273),(2283,17,'Araporã',76,3103751,'N',-18.441909,-49.190087),(2284,17,'Arapuá',76,3103801,'N',-19.033855,-46.154598),(2285,17,'Araújos',76,3103900,'N',-19.946785,-45.166702),(2286,17,'Araxá',76,3104007,'N',-19.591330,-46.940010),(2287,17,'Arceburgo',76,3104106,'N',-21.360181,-46.944354),(2288,17,'Arcos',76,3104205,'N',-20.282563,-45.543632),(2289,17,'Areado',76,3104304,'N',-21.358382,-46.146559),(2290,17,'Argirita',76,3104403,'N',-21.607555,-42.836447),(2291,17,'Aricanduva',76,3104452,'N',-17.867763,-42.559231),(2292,17,'Arinos',76,3104502,'N',-15.921772,-46.107752),(2293,17,'Astolfo Dutra',76,3104601,'N',-21.311204,-42.859644),(2294,17,'Ataléia',76,3104700,'N',-18.045920,-41.110558),(2295,17,'Augusto de Lima',76,3104809,'N',-18.112548,-44.275219),(2296,17,'Baependi',76,3104908,'N',-21.957611,-44.890371),(2297,17,'Baldim',76,3105004,'N',-19.286437,-43.957041),(2298,17,'Bambuí',76,3105103,'N',-20.011892,-45.979045),(2299,17,'Bandeira',76,3105202,'N',-15.884977,-40.558886),(2300,17,'Bandeira do Sul',76,3105301,'N',-21.724869,-46.385263),(2301,17,'Barão de Cocais',76,3105400,'N',-19.935847,-43.484882),(2302,17,'Barão de Monte Alto',76,3105509,'N',-21.247882,-42.239147),(2303,17,'Barbacena',76,3105608,'N',-21.224915,-43.776193),(2304,17,'Barra Longa',76,3105707,'N',-20.283636,-43.037197),(2305,17,'Barroso',76,3105905,'N',-21.176287,-43.975381),(2306,17,'Bela Vista de Minas',76,3106002,'N',-19.825847,-43.096932),(2307,17,'Belmiro Braga',76,3106101,'N',-21.950131,-43.415721),(2308,17,'Belo Horizonte',76,3106200,'S',-19.937524,-43.926453),(2309,17,'Belo Oriente',76,3106309,'N',-19.224645,-42.487283),(2310,17,'Belo Vale',76,3106408,'N',-20.406658,-44.028528),(2311,17,'Berilo',76,3106507,'N',-16.950302,-42.461354),(2312,17,'Bertópolis',76,3106606,'N',-17.060963,-40.572246),(2313,17,'Berizal',76,3106655,'N',-15.610784,-41.746785),(2314,17,'Betim',76,3106705,'N',-19.965379,-44.197551),(2315,17,'Bias Fortes',76,3106804,'N',-21.608747,-43.756575),(2316,17,'Bicas',76,3106903,'N',-21.722105,-43.062047),(2317,17,'Biquinhas',76,3107000,'N',-18.784752,-45.504652),(2318,17,'Boa Esperança',76,3107109,'N',-21.090531,-45.564409),(2319,17,'Bocaina de Minas',76,3107208,'N',-22.169608,-44.397306),(2320,17,'Bocaiúva',76,3107307,'N',-17.112105,-43.814444),(2321,17,'Bom Despacho',76,3107406,'N',-19.737596,-45.254115),(2322,17,'Bom Jardim de Minas',76,3107505,'N',-21.945900,-44.189374),(2323,17,'Bom Jesus da Penha',76,3107604,'N',-21.017269,-46.523544),(2324,17,'Bom Jesus do Amparo',76,3107703,'N',-19.704137,-43.473515),(2325,17,'Bom Jesus do Galho',76,3107802,'N',-19.824472,-42.315727),(2326,17,'Bom Repouso',76,3107901,'N',-22.476837,-46.147882),(2327,17,'Bom Sucesso',76,3108008,'N',-21.030416,-44.755503),(2328,17,'Bonfim',76,3108107,'N',-20.325491,-44.232911),(2329,17,'Bonfinópolis de Minas',76,3108206,'N',-16.570765,-45.988341),(2330,17,'Bonito de Minas',76,3108255,'N',-15.323804,-44.758028),(2331,17,'Borda da Mata',76,3108305,'N',-22.272408,-46.167168),(2332,17,'Botelhos',76,3108404,'N',-21.651664,-46.395493),(2333,17,'Botumirim',76,3108503,'N',-16.862925,-43.010432),(2334,17,'Brasilândia de Minas',76,3108552,'N',-16.998601,-46.015402),(2335,17,'Brasília de Minas',76,3108602,'N',-16.205873,-44.427533),(2336,17,'Brás Pires',76,3108701,'N',-20.848456,-43.239123),(2337,17,'Braúnas',76,3108800,'N',-19.053597,-42.715353),(2338,17,'Brasópolis',76,3108909,'N',-22.473110,-45.615326),(2339,17,'Brumadinho',76,3109006,'N',-20.144174,-44.200188),(2340,17,'Bueno Brandão',76,3109105,'N',-22.436167,-46.353388),(2341,17,'Buenópolis',76,3109204,'N',-17.874256,-44.180788),(2342,17,'Bugre',76,3109253,'N',-19.422213,-42.259457),(2343,17,'Buritis',76,3109303,'N',-15.626505,-46.424041),(2344,17,'Buritizeiro',76,3109402,'N',-17.359421,-44.955194),(2345,17,'Cabeceira Grande',76,3109451,'N',-16.028275,-47.084989),(2346,17,'Cabo Verde',76,3109501,'N',-21.469292,-46.399971),(2347,17,'Cachoeira da Prata',76,3109600,'N',-19.526435,-44.441051),(2348,17,'Cachoeira de Minas',76,3109709,'N',-22.353984,-45.782138),(2349,17,'Cachoeira Dourada',76,3109808,'N',-18.512690,-49.501734),(2350,17,'Caetanópolis',76,3109907,'N',-19.293713,-44.413037),(2351,17,'Caeté',76,3110004,'N',-19.887141,-43.664787),(2352,17,'Caiana',76,3110103,'N',-20.696829,-41.922982),(2353,17,'Cajuri',76,3110202,'N',-20.788943,-42.793920),(2354,17,'Caldas',76,3110301,'N',-21.923336,-46.387789),(2355,17,'Camacho',76,3110400,'N',-20.626916,-45.158793),(2356,17,'Camanducaia',76,3110509,'N',-22.756746,-46.146863),(2357,17,'Cambuí',76,3110608,'N',-22.611097,-46.058019),(2358,17,'Cambuquira',76,3110707,'N',-21.855410,-45.292521),(2359,17,'Campanário',76,3110806,'N',-18.241124,-41.730132),(2360,17,'Campanha',76,3110905,'N',-21.835357,-45.398449),(2361,17,'Campestre',76,3111002,'N',-21.711455,-46.248159),(2362,17,'Campina Verde',76,3111101,'N',-19.535456,-49.481169),(2363,17,'Campo Azul',76,3111150,'N',-16.504063,-44.811858),(2364,17,'Campo Belo',76,3111200,'N',-20.895316,-45.275861),(2365,17,'Campo do Meio',76,3111309,'N',-21.109326,-45.830757),(2366,17,'Campo Florido',76,3111408,'N',-19.765445,-48.573003),(2367,17,'Campos Altos',76,3111507,'N',-19.698896,-46.173710),(2368,17,'Campos Gerais',76,3111606,'N',-21.238698,-45.756907),(2369,17,'Canaã',76,3111705,'N',-20.687376,-42.613011),(2370,17,'Canápolis',76,3111804,'N',-18.721664,-49.204054),(2371,17,'Cana Verde',76,3111903,'N',-21.023452,-45.185925),(2372,17,'Candeias',76,3112000,'N',-20.770350,-45.276857),(2373,17,'Cantagalo',76,3112059,'N',-18.531718,-42.625727),(2374,17,'Caparaó',76,3112109,'N',-20.525588,-41.907190),(2375,17,'Capela Nova',76,3112208,'N',-20.916668,-43.612422),(2376,17,'Capelinha',76,3112307,'N',-17.695385,-42.516075),(2377,17,'Capetinga',76,3112406,'N',-20.620499,-47.057437),(2378,17,'Capim Branco',76,3112505,'N',-19.545542,-44.133166),(2379,17,'Capinópolis',76,3112604,'N',-18.682294,-49.574482),(2380,17,'Capitão Andrade',76,3112653,'N',-19.079024,-41.865097),(2381,17,'Capitão Enéas',76,3112703,'N',-16.320915,-43.705413),(2382,17,'Capitólio',76,3112802,'N',-20.614664,-46.054514),(2383,17,'Caputira',76,3112901,'N',-20.170890,-42.271988),(2384,17,'Caraí',76,3113008,'N',-17.192904,-41.698307),(2385,17,'Caranaíba',76,3113107,'N',-20.870219,-43.739466),(2386,17,'Carandaí',76,3113206,'N',-20.954369,-43.805475),(2387,17,'Carangola',76,3113305,'N',-20.732551,-42.032225),(2388,17,'Caratinga',76,3113404,'N',-19.789635,-42.143707),(2389,17,'Carbonita',76,3113503,'N',-17.530246,-43.014460),(2390,17,'Careaçu',76,3113602,'N',-22.038085,-45.687677),(2391,17,'Carlos Chagas',76,3113701,'N',-17.703331,-40.767400),(2392,17,'Carmésia',76,3113800,'N',-19.087086,-43.145840),(2393,17,'Carmo da Cachoeira',76,3113909,'N',-21.461060,-45.224623),(2394,17,'Carmo da Mata',76,3114006,'N',-20.559210,-44.868383),(2395,17,'Carmo de Minas',76,3114105,'N',-22.118127,-45.132763),(2396,17,'Carmo do Cajuru',76,3114204,'N',-20.186094,-44.771478),(2397,17,'Carmo do Paranaíba',76,3114303,'N',-18.997289,-46.314289),(2398,17,'Carmo do Rio Claro',76,3114402,'N',-20.972997,-46.121965),(2399,17,'Carmópolis de Minas',76,3114501,'N',-20.539642,-44.632528),(2400,17,'Carneirinho',76,3114550,'N',-19.697326,-50.691427),(2401,17,'Carrancas',76,3114600,'N',-21.491626,-44.643609),(2402,17,'Carvalhópolis',76,3114709,'N',-21.776073,-45.845639),(2403,17,'Carvalhos',76,3114808,'N',-21.996705,-44.466015),(2404,17,'Casa Grande',76,3114907,'N',-20.793451,-43.931467),(2405,17,'Cascalho Rico',76,3115003,'N',-18.578590,-47.875999),(2406,17,'Cássia',76,3115102,'N',-20.582856,-46.924036),(2407,17,'Conceição da Barra de Minas',76,3115201,'N',-21.131769,-44.477808),(2408,17,'Cataguases',76,3115300,'N',-21.389248,-42.692085),(2409,17,'Catas Altas',76,3115359,'N',-20.074893,-43.414806),(2410,17,'Catas Altas da Noruega',76,3115409,'N',-20.687088,-43.505059),(2411,17,'Catuji',76,3115458,'N',-17.301081,-41.523127),(2412,17,'Catuti',76,3115474,'N',-15.357379,-42.963523),(2413,17,'Caxambu',76,3115508,'N',-21.979312,-44.931499),(2414,17,'Cedro do Abaeté',76,3115607,'N',-19.147168,-45.712195),(2415,17,'Central de Minas',76,3115706,'N',-18.757461,-41.310405),(2416,17,'Centralina',76,3115805,'N',-18.585386,-49.196283),(2417,17,'Chácara',76,3115904,'N',-21.672913,-43.218770),(2418,17,'Chalé',76,3116001,'N',-20.044253,-41.692207),(2419,17,'Chapada do Norte',76,3116100,'N',-17.086696,-42.540749),(2420,17,'Chapada Gaúcha',76,3116159,'N',-15.299809,-45.625584),(2421,17,'Chiador',76,3116209,'N',-22.003713,-43.059039),(2422,17,'Cipotânea',76,3116308,'N',-20.905536,-43.367977),(2423,17,'Claraval',76,3116407,'N',-20.398376,-47.287761),(2424,17,'Claro dos Poções',76,3116506,'N',-17.077685,-44.208710),(2425,17,'Cláudio',76,3116605,'N',-20.444575,-44.768423),(2426,17,'Coimbra',76,3116704,'N',-20.858660,-42.805939),(2427,17,'Coluna',76,3116803,'N',-18.220405,-42.843655),(2428,17,'Comendador Gomes',76,3116902,'N',-19.700215,-49.081430),(2429,17,'Comercinho',76,3117009,'N',-16.296595,-41.791132),(2430,17,'Conceição da Aparecida',76,3117108,'N',-21.096620,-46.203127),(2431,17,'Conceição das Pedras',76,3117207,'N',-22.161176,-45.453679),(2432,17,'Conceição das Alagoas',76,3117306,'N',-19.923114,-48.381874),(2433,17,'Conceição de Ipanema',76,3117405,'N',-19.930780,-41.692449),(2434,17,'Conceição do Mato Dentro',76,3117504,'N',-19.045190,-43.423436),(2435,17,'Conceição do Pará',76,3117603,'N',-19.749056,-44.895876),(2436,17,'Conceição do Rio Verde',76,3117702,'N',-21.877666,-45.083769),(2437,17,'Conceição dos Ouros',76,3117801,'N',-22.417475,-45.796327),(2438,17,'Cônego Marinho',76,3117836,'N',-15.296270,-44.415155),(2439,17,'Confins',76,3117876,'N',-19.629948,-43.995596),(2440,17,'Congonhal',76,3117900,'N',-22.152561,-46.053662),(2441,17,'Congonhas',76,3118007,'N',-20.504643,-43.856893),(2442,17,'Congonhas do Norte',76,3118106,'N',-18.816452,-43.687632),(2443,17,'Conquista',76,3118205,'N',-19.936931,-47.543283),(2444,17,'Conselheiro Lafaiete',76,3118304,'N',-20.660852,-43.788445),(2445,17,'Conselheiro Pena',76,3118403,'N',-19.175623,-41.471974),(2446,17,'Consolação',76,3118502,'N',-22.550465,-45.922251),(2447,17,'Contagem',76,3118601,'N',-19.943446,-44.066345),(2448,17,'Coqueiral',76,3118700,'N',-21.186575,-45.440806),(2449,17,'Coração de Jesus',76,3118809,'N',-16.689323,-44.358495),(2450,17,'Cordisburgo',76,3118908,'N',-19.128533,-44.322067),(2451,17,'Cordislândia',76,3119005,'N',-21.791208,-45.700530),(2452,17,'Corinto',76,3119104,'N',-18.363516,-44.456226),(2453,17,'Coroaci',76,3119203,'N',-18.618084,-42.283028),(2454,17,'Coromandel',76,3119302,'N',-18.473851,-47.201548),(2455,17,'Coronel Fabriciano',76,3119401,'N',-19.525053,-42.624347),(2456,17,'Coronel Murta',76,3119500,'N',-16.610268,-42.184804),(2457,17,'Coronel Pacheco',76,3119609,'N',-21.576415,-43.268858),(2458,17,'Coronel Xavier Chaves',76,3119708,'N',-21.024595,-44.228624),(2459,17,'Córrego Danta',76,3119807,'N',-19.826410,-45.898471),(2460,17,'Córrego do Bom Jesus',76,3119906,'N',-22.629922,-46.017909),(2461,17,'Córrego Fundo',76,3119955,'N',-20.455525,-45.553395),(2462,17,'Córrego Novo',76,3120003,'N',-19.834785,-42.400138),(2463,17,'Couto de Magalhães de Minas',76,3120102,'N',-18.072059,-43.475349),(2464,17,'Crisólita',76,3120151,'N',-17.237534,-40.914895),(2465,17,'Cristais',76,3120201,'N',-20.875233,-45.518504),(2466,17,'Cristália',76,3120300,'N',-16.712634,-42.859551),(2467,17,'Cristiano Otoni',76,3120409,'N',-20.840852,-43.797836),(2468,17,'Cristina',76,3120508,'N',-22.208321,-45.262809),(2469,17,'Crucilândia',76,3120607,'N',-20.393292,-44.337837),(2470,17,'Cruzeiro da Fortaleza',76,3120706,'N',-18.938647,-46.673393),(2471,17,'Cruzília',76,3120805,'N',-21.838951,-44.811023),(2472,17,'Cuparaque',76,3120839,'N',-18.966642,-41.103126),(2473,17,'Curral de Dentro',76,3120870,'N',-15.939327,-41.855980),(2474,17,'Curvelo',76,3120904,'N',-18.755481,-44.428399),(2475,17,'Datas',76,3121001,'N',-18.453303,-43.656715),(2476,17,'Delfim Moreira',76,3121100,'N',-22.502009,-45.272596),(2477,17,'Delfinópolis',76,3121209,'N',-20.345846,-46.858180),(2478,17,'Delta',76,3121258,'N',-19.977473,-47.772971),(2479,17,'Descoberto',76,3121308,'N',-21.460204,-42.972069),(2480,17,'Desterro de Entre Rios',76,3121407,'N',-20.654631,-44.343666),(2481,17,'Desterro do Melo',76,3121506,'N',-21.147179,-43.519600),(2482,17,'Diamantina',76,3121605,'N',-18.242093,-43.594457),(2483,17,'Diogo de Vasconcelos',76,3121704,'N',-20.487506,-43.196577),(2484,17,'Dionísio',76,3121803,'N',-19.843997,-42.782368),(2485,17,'Divinésia',76,3121902,'N',-20.990010,-43.011081),(2486,17,'Divino',76,3122009,'N',-20.612977,-42.147739),(2487,17,'Divino das Laranjeiras',76,3122108,'N',-18.773128,-41.483254),(2488,17,'Divinolândia de Minas',76,3122207,'N',-18.805260,-42.621820),(2489,17,'Divinópolis',76,3122306,'N',-20.142074,-44.893886),(2490,17,'Divisa Alegre',76,3122355,'N',-15.723940,-41.340024),(2491,17,'Divisa Nova',76,3122405,'N',-21.517264,-46.202941),(2492,17,'Divisópolis',76,3122454,'N',-15.724635,-41.002582),(2493,17,'Dom Bosco',76,3122470,'N',-16.650750,-46.271450),(2494,17,'Dom Cavati',76,3122504,'N',-19.379163,-42.110324),(2495,17,'Dom Joaquim',76,3122603,'N',-18.964550,-43.261348),(2496,17,'Dom Silvério',76,3122702,'N',-20.162205,-42.970873),(2497,17,'Dom Viçoso',76,3122801,'N',-22.253674,-45.159169),(2498,17,'Dona Eusébia',76,3122900,'N',-21.323875,-42.806934),(2499,17,'Dores de Campos',76,3123007,'N',-21.104088,-44.023047),(2500,17,'Dores de Guanhães',76,3123106,'N',-19.054262,-42.926722),(2501,17,'Dores do Indaiá',76,3123205,'N',-19.461629,-45.602656),(2502,17,'Dores do Turvo',76,3123304,'N',-20.981273,-43.195195),(2503,17,'Doresópolis',76,3123403,'N',-20.288451,-45.905197),(2504,17,'Douradoquara',76,3123502,'N',-18.433834,-47.611975),(2505,17,'Durandé',76,3123528,'N',-20.207239,-41.794262),(2506,17,'Elói Mendes',76,3123601,'N',-21.609313,-45.566434),(2507,17,'Engenheiro Caldas',76,3123700,'N',-19.198103,-42.049842),(2508,17,'Engenheiro Navarro',76,3123809,'N',-17.287753,-43.949415),(2509,17,'Entre Folhas',76,3123858,'N',-19.627783,-42.232360),(2510,17,'Entre Rios de Minas',76,3123908,'N',-20.671357,-44.067082),(2511,17,'Ervália',76,3124005,'N',-20.833507,-42.659367),(2512,17,'Esmeraldas',76,3124104,'N',-19.759201,-44.314807),(2513,17,'Espera Feliz',76,3124203,'N',-20.643708,-41.913935),(2514,17,'Espinosa',76,3124302,'N',-14.925272,-42.812982),(2515,17,'Espírito Santo do Dourado',76,3124401,'N',-22.047514,-45.954013),(2516,17,'Estiva',76,3124500,'N',-22.463045,-46.016352),(2517,17,'Estrela Dalva',76,3124609,'N',-21.742285,-42.458371),(2518,17,'Estrela do Indaiá',76,3124708,'N',-19.520238,-45.792433),(2519,17,'Estrela do Sul',76,3124807,'N',-18.741293,-47.688975),(2520,17,'Eugenópolis',76,3124906,'N',-21.097223,-42.192277),(2521,17,'Ewbank da Câmara',76,3125002,'N',-21.541636,-43.507591),(2522,17,'Extrema',76,3125101,'N',-22.858190,-46.322162),(2523,17,'Fama',76,3125200,'N',-21.405762,-45.832312),(2524,17,'Faria Lemos',76,3125309,'N',-20.801745,-42.013846),(2525,17,'Felício dos Santos',76,3125408,'N',-18.077563,-43.245171),(2526,17,'São Gonçalo do Rio Preto',76,3125507,'N',-18.006394,-43.384544),(2527,17,'Felisburgo',76,3125606,'N',-16.638333,-40.758570),(2528,17,'Felixlândia',76,3125705,'N',-18.754357,-44.896587),(2529,17,'Fernandes Tourinho',76,3125804,'N',-19.151001,-42.080978),(2530,17,'Ferros',76,3125903,'N',-19.236420,-43.019714),(2531,17,'Fervedouro',76,3125952,'N',-20.732776,-42.278181),(2532,17,'Florestal',76,3126000,'N',-19.894518,-44.430116),(2533,17,'Formiga',76,3126109,'N',-20.464884,-45.426428),(2534,17,'Formoso',76,3126208,'N',-14.951743,-46.239980),(2535,17,'Fortaleza de Minas',76,3126307,'N',-20.848493,-46.712643),(2536,17,'Fortuna de Minas',76,3126406,'N',-19.563901,-44.443397),(2537,17,'Francisco Badaró',76,3126505,'N',-16.990691,-42.349773),(2538,17,'Francisco Dumont',76,3126604,'N',-17.319949,-44.234207),(2539,17,'Francisco Sá',76,3126703,'N',-16.475681,-43.488735),(2540,17,'Franciscópolis',76,3126752,'N',-17.959044,-42.007313),(2541,17,'Frei Gaspar',76,3126802,'N',-18.071185,-41.429421),(2542,17,'Frei Inocêncio',76,3126901,'N',-18.561790,-41.901217),(2543,17,'Frei Lagonegro',76,3126950,'N',-18.165081,-42.765295),(2544,17,'Fronteira',76,3127008,'N',-20.288301,-49.204282),(2545,17,'Fronteira dos Vales',76,3127057,'N',-16.892015,-40.925079),(2546,17,'Fruta de Leite',76,3127073,'N',-16.116418,-42.532222),(2547,17,'Frutal',76,3127107,'N',-20.025898,-48.939154),(2548,17,'Funilândia',76,3127206,'N',-19.369987,-44.063086),(2549,17,'Galiléia',76,3127305,'N',-19.005474,-41.536197),(2550,17,'Gameleiras',76,3127339,'N',-15.076822,-43.119481),(2551,17,'Glaucilândia',76,3127354,'N',-16.850219,-43.696406),(2552,17,'Goiabeira',76,3127370,'N',-18.981713,-41.222822),(2553,17,'Goianá',76,3127388,'N',-21.532418,-43.191482),(2554,17,'Gonçalves',76,3127404,'N',-22.657619,-45.856592),(2555,17,'Gonzaga',76,3127503,'N',-18.824825,-42.477224),(2556,17,'Gouveia',76,3127602,'N',-18.442973,-43.733987),(2557,17,'Governador Valadares',76,3127701,'N',-18.852882,-41.947081),(2558,17,'Grão Mogol',76,3127800,'N',-16.566495,-42.888013),(2559,17,'Grupiara',76,3127909,'N',-18.493024,-47.724798),(2560,17,'Guanhães',76,3128006,'N',-18.777151,-42.937049),(2561,17,'Guapé',76,3128105,'N',-20.756725,-45.918384),(2562,17,'Guaraciaba',76,3128204,'N',-20.571704,-43.011282),(2563,17,'Guaraciama',76,3128253,'N',-17.011527,-43.668778),(2564,17,'Guaranésia',76,3128303,'N',-21.305560,-46.795491),(2565,17,'Guarani',76,3128402,'N',-21.362669,-43.046457),(2566,17,'Guarará',76,3128501,'N',-21.732720,-43.038952),(2567,17,'Guarda-Mor',76,3128600,'N',-17.771300,-47.101076),(2568,17,'Guaxupé',76,3128709,'N',-21.303781,-46.713537),(2569,17,'Guidoval',76,3128808,'N',-21.144239,-42.800817),(2570,17,'Guimarânia',76,3128907,'N',-18.838019,-46.797265),(2571,17,'Guiricema',76,3129004,'N',-21.010673,-42.718812),(2572,17,'Gurinhatã',76,3129103,'N',-19.213748,-49.786273),(2573,17,'Heliodora',76,3129202,'N',-22.064744,-45.544577),(2574,17,'Iapu',76,3129301,'N',-19.440272,-42.214693),(2575,17,'Ibertioga',76,3129400,'N',-21.429472,-43.968124),(2576,17,'Ibiá',76,3129509,'N',-19.475112,-46.538611),(2577,17,'Ibiaí',76,3129608,'N',-16.859872,-44.914107),(2578,17,'Ibiracatu',76,3129657,'N',-15.665467,-44.167709),(2579,17,'Ibiraci',76,3129707,'N',-20.470155,-47.130803),(2580,17,'Ibirité',76,3129806,'N',-20.028038,-44.056665),(2581,17,'Ibitiúra de Minas',76,3129905,'N',-22.057055,-46.437603),(2582,17,'Ibituruna',76,3130002,'N',-21.146485,-44.738464),(2583,17,'Icaraí de Minas',76,3130051,'N',-16.214013,-44.902777),(2584,17,'Igarapé',76,3130101,'N',-20.069909,-44.301158),(2585,17,'Igaratinga',76,3130200,'N',-19.953886,-44.700495),(2586,17,'Iguatama',76,3130309,'N',-20.176074,-45.709140),(2587,17,'Ijaci',76,3130408,'N',-21.172066,-44.928783),(2588,17,'Ilicínea',76,3130507,'N',-20.940389,-45.828464),(2589,17,'Imbé de Minas',76,3130556,'N',-19.595876,-41.962481),(2590,17,'Inconfidentes',76,3130606,'N',-22.321487,-46.333801),(2591,17,'Indaiabira',76,3130655,'N',-15.492385,-42.203585),(2592,17,'Indianópolis',76,3130705,'N',-19.042495,-47.917992),(2593,17,'Ingaí',76,3130804,'N',-21.403717,-44.922423),(2594,17,'Inhapim',76,3130903,'N',-19.550115,-42.121931),(2595,17,'Inhaúma',76,3131000,'N',-19.492367,-44.390946),(2596,17,'Inimutaba',76,3131109,'N',-18.731441,-44.366262),(2597,17,'Ipaba',76,3131158,'N',-19.413251,-42.418166),(2598,17,'Ipanema',76,3131208,'N',-19.800336,-41.717353),(2599,17,'Ipatinga',76,3131307,'N',-19.481032,-42.520351),(2600,17,'Ipiaçu',76,3131406,'N',-18.694880,-49.945773),(2601,17,'Ipuiúna',76,3131505,'N',-22.099521,-46.190829),(2602,17,'Iraí de Minas',76,3131604,'N',-18.981858,-47.462991),(2603,17,'Itabira',76,3131703,'N',-19.638169,-43.223952),(2604,17,'Itabirinha',76,3131802,'N',-18.556799,-41.233183),(2605,17,'Itabirito',76,3131901,'N',-20.254177,-43.802143),(2606,17,'Itacambira',76,3132008,'N',-17.064435,-43.310402),(2607,17,'Itacarambi',76,3132107,'N',-15.102642,-44.093186),(2608,17,'Itaguara',76,3132206,'N',-20.390678,-44.486778),(2609,17,'Itaipé',76,3132305,'N',-17.404232,-41.673230),(2610,17,'Itajubá',76,3132404,'N',-22.430601,-45.464583),(2611,17,'Itamarandiba',76,3132503,'N',-17.858517,-42.849158),(2612,17,'Itamarati de Minas',76,3132602,'N',-21.419456,-42.818593),(2613,17,'Itambacuri',76,3132701,'N',-18.034330,-41.682267),(2614,17,'Itambé do Mato Dentro',76,3132800,'N',-19.420963,-43.322895),(2615,17,'Itamogi',76,3132909,'N',-21.078443,-47.047468),(2616,17,'Itamonte',76,3133006,'N',-22.285127,-44.868288),(2617,17,'Itanhandu',76,3133105,'N',-22.295080,-44.935922),(2618,17,'Itanhomi',76,3133204,'N',-19.171689,-41.864932),(2619,17,'Itaobim',76,3133303,'N',-16.559526,-41.498977),(2620,17,'Itapagipe',76,3133402,'N',-19.903296,-49.369821),(2621,17,'Itapecerica',76,3133501,'N',-20.472890,-45.124680),(2622,17,'Itapeva',76,3133600,'N',-22.769740,-46.219557),(2623,17,'Itatiaiuçu',76,3133709,'N',-20.198642,-44.429164),(2624,17,'Itaú de Minas',76,3133758,'N',-20.738189,-46.752954),(2625,17,'Itaúna',76,3133808,'N',-20.074436,-44.578277),(2626,17,'Itaverava',76,3133907,'N',-20.674727,-43.604322),(2627,17,'Itinga',76,3134004,'N',-16.601429,-41.778178),(2628,17,'Itueta',76,3134103,'N',-19.392398,-41.225632),(2629,17,'Ituiutaba',76,3134202,'N',-18.973068,-49.462235),(2630,17,'Itumirim',76,3134301,'N',-21.313796,-44.875788),(2631,17,'Iturama',76,3134400,'N',-19.731948,-50.201974),(2632,17,'Itutinga',76,3134509,'N',-21.296056,-44.658838),(2633,17,'Jaboticatubas',76,3134608,'N',-19.522289,-43.747334),(2634,17,'Jacinto',76,3134707,'N',-16.141162,-40.291429),(2635,17,'Jacuí',76,3134806,'N',-21.017602,-46.742010),(2636,17,'Jacutinga',76,3134905,'N',-22.286638,-46.612341),(2637,17,'Jaguaraçu',76,3135001,'N',-19.647073,-42.752999),(2638,17,'Jaíba',76,3135050,'N',-15.342934,-43.670329),(2639,17,'Jampruca',76,3135076,'N',-18.461599,-41.810169),(2640,17,'Janaúba',76,3135100,'N',-15.799028,-43.307683),(2641,17,'Januária',76,3135209,'N',-15.487873,-44.359805),(2642,17,'Japaraíba',76,3135308,'N',-20.141618,-45.504118),(2643,17,'Japonvar',76,3135357,'N',-16.000957,-44.276127),(2644,17,'Jeceaba',76,3135407,'N',-20.533033,-43.985232),(2645,17,'Jenipapo de Minas',76,3135456,'N',-17.080423,-42.256047),(2646,17,'Jequeri',76,3135506,'N',-20.446303,-42.682264),(2647,17,'Jequitaí',76,3135605,'N',-17.216373,-44.441687),(2648,17,'Jequitibá',76,3135704,'N',-19.237674,-44.028076),(2649,17,'Jequitinhonha',76,3135803,'N',-16.441769,-41.007115),(2650,17,'Jesuânia',76,3135902,'N',-21.998426,-45.290877),(2651,17,'Joaíma',76,3136009,'N',-16.654730,-41.023053),(2652,17,'Joanésia',76,3136108,'N',-19.168696,-42.674702),(2653,17,'João Monlevade',76,3136207,'N',-19.805639,-43.174571),(2654,17,'João Pinheiro',76,3136306,'N',-17.741853,-46.175464),(2655,17,'Joaquim Felício',76,3136405,'N',-17.755294,-44.173605),(2656,17,'Jordânia',76,3136504,'N',-15.901065,-40.180014),(2657,17,'José Gonçalves de Minas',76,3136520,'N',-16.907182,-42.607175),(2658,17,'José Raydan',76,3136553,'N',-18.217495,-42.500590),(2659,17,'Josenópolis',76,3136579,'N',-16.544525,-42.513137),(2660,17,'Nova União',76,3136603,'N',-19.688103,-43.579994),(2661,17,'Juatuba',76,3136652,'N',-19.955791,-44.341331),(2662,17,'Juiz de Fora',76,3136702,'N',-21.760924,-43.348817),(2663,17,'Juramento',76,3136801,'N',-16.851270,-43.590194),(2664,17,'Juruaia',76,3136900,'N',-21.249356,-46.580596),(2665,17,'Juvenília',76,3136959,'N',-14.263595,-44.159590),(2666,17,'Ladainha',76,3137007,'N',-17.624480,-41.740450),(2667,17,'Lagamar',76,3137106,'N',-18.176962,-46.812536),(2668,17,'Lagoa da Prata',76,3137205,'N',-20.023765,-45.541692),(2669,17,'Lagoa dos Patos',76,3137304,'N',-16.978449,-44.578335),(2670,17,'Lagoa Dourada',76,3137403,'N',-20.918599,-44.071116),(2671,17,'Lagoa Formosa',76,3137502,'N',-18.775573,-46.406529),(2672,17,'Lagoa Grande',76,3137536,'N',-17.838047,-46.517905),(2673,17,'Lagoa Santa',76,3137601,'N',-19.625851,-43.895288),(2674,17,'Lajinha',76,3137700,'N',-20.164170,-41.645293),(2675,17,'Lambari',76,3137809,'N',-21.974316,-45.352479),(2676,17,'Lamim',76,3137908,'N',-20.792057,-43.474467),(2677,17,'Laranjal',76,3138005,'N',-21.363630,-42.480674),(2678,17,'Lassance',76,3138104,'N',-17.895115,-44.579359),(2679,17,'Lavras',76,3138203,'N',-21.242870,-44.999931),(2680,17,'Leandro Ferreira',76,3138302,'N',-19.719223,-45.026284),(2681,17,'Leme do Prado',76,3138351,'N',-17.083867,-42.695683),(2682,17,'Leopoldina',76,3138401,'N',-21.530729,-42.641844),(2683,17,'Liberdade',76,3138500,'N',-22.024359,-44.315141),(2684,17,'Lima Duarte',76,3138609,'N',-21.841096,-43.796383),(2685,17,'Limeira do Oeste',76,3138625,'N',-19.547777,-50.575290),(2686,17,'Lontra',76,3138658,'N',-15.902058,-44.306115),(2687,17,'Luisburgo',76,3138674,'N',-20.438376,-42.106472),(2688,17,'Luislândia',76,3138682,'N',-16.115311,-44.586048),(2689,17,'Luminárias',76,3138708,'N',-21.512320,-44.906106),(2690,17,'Luz',76,3138807,'N',-19.796247,-45.683881),(2691,17,'Machacalis',76,3138906,'N',-17.077370,-40.720422),(2692,17,'Machado',76,3139003,'N',-21.678354,-45.921764),(2693,17,'Madre de Deus de Minas',76,3139102,'N',-21.477322,-44.340886),(2694,17,'Malacacheta',76,3139201,'N',-17.841623,-42.076077),(2695,17,'Mamonas',76,3139250,'N',-15.051647,-42.955964),(2696,17,'Manga',76,3139300,'N',-14.755922,-43.936762),(2697,17,'Manhuaçu',76,3139409,'N',-20.258680,-42.033848),(2698,17,'Manhumirim',76,3139508,'N',-20.363999,-41.962680),(2699,17,'Mantena',76,3139607,'N',-18.780700,-40.978526),(2700,17,'Maravilhas',76,3139706,'N',-19.514680,-44.676076),(2701,17,'Mar de Espanha',76,3139805,'N',-21.866893,-43.008407),(2702,17,'Maria da Fé',76,3139904,'N',-22.307219,-45.371054),(2703,17,'Mariana',76,3140001,'N',-20.374493,-43.416140),(2704,17,'Marilac',76,3140100,'N',-18.504972,-42.081689),(2705,17,'Mário Campos',76,3140159,'N',-20.053636,-44.185825),(2706,17,'Maripá de Minas',76,3140209,'N',-21.692263,-42.968350),(2707,17,'Marliéria',76,3140308,'N',-19.706456,-42.737379),(2708,17,'Marmelópolis',76,3140407,'N',-22.446517,-45.160048),(2709,17,'Martinho Campos',76,3140506,'N',-19.329742,-45.238650),(2710,17,'Martins Soares',76,3140530,'N',-20.258229,-41.875791),(2711,17,'Mata Verde',76,3140555,'N',-15.687668,-40.738533),(2712,17,'Materlândia',76,3140605,'N',-18.472774,-43.057376),(2713,17,'Mateus Leme',76,3140704,'N',-19.990868,-44.428991),(2714,17,'Matias Barbosa',76,3140803,'N',-21.869479,-43.319162),(2715,17,'Matias Cardoso',76,3140852,'N',-14.850284,-43.917826),(2716,17,'Matipó',76,3140902,'N',-20.287148,-42.341486),(2717,17,'Mato Verde',76,3141009,'N',-15.397322,-42.866515),(2718,17,'Matozinhos',76,3141108,'N',-19.561910,-44.083975),(2719,17,'Matutina',76,3141207,'N',-19.226612,-45.983517),(2720,17,'Medeiros',76,3141306,'N',-19.993308,-46.226689),(2721,17,'Medina',76,3141405,'N',-16.224796,-41.476309),(2722,17,'Mendes Pimentel',76,3141504,'N',-18.661778,-41.405615),(2723,17,'Mercês',76,3141603,'N',-21.192065,-43.341070),(2724,17,'Mesquita',76,3141702,'N',-19.224346,-42.605661),(2725,17,'Minas Novas',76,3141801,'N',-17.215458,-42.596759),(2726,17,'Minduri',76,3141900,'N',-21.677543,-44.609293),(2727,17,'Mirabela',76,3142007,'N',-16.258453,-44.160644),(2728,17,'Miradouro',76,3142106,'N',-20.894419,-42.346150),(2729,17,'Miraí',76,3142205,'N',-21.193982,-42.616040),(2730,17,'Miravânia',76,3142254,'N',-14.747839,-44.412075),(2731,17,'Moeda',76,3142304,'N',-20.330269,-44.047569),(2732,17,'Moema',76,3142403,'N',-19.838700,-45.425310),(2733,17,'Monjolos',76,3142502,'N',-18.323686,-44.119317),(2734,17,'Monsenhor Paulo',76,3142601,'N',-21.761772,-45.545074),(2735,17,'Montalvânia',76,3142700,'N',-14.420365,-44.363621),(2736,17,'Monte Alegre de Minas',76,3142809,'N',-18.869167,-48.877117),(2737,17,'Monte Azul',76,3142908,'N',-15.155339,-42.873165),(2738,17,'Monte Belo',76,3143005,'N',-21.327146,-46.368246),(2739,17,'Monte Carmelo',76,3143104,'N',-18.729038,-47.495972),(2740,17,'Monte Formoso',76,3143153,'N',-16.866494,-41.254579),(2741,17,'Monte Santo de Minas',76,3143203,'N',-21.190475,-46.977119),(2742,17,'Montes Claros',76,3143302,'N',-16.722707,-43.865422),(2743,17,'Monte Sião',76,3143401,'N',-22.433549,-46.573703),(2744,17,'Montezuma',76,3143450,'N',-15.171144,-42.507474),(2745,17,'Morada Nova de Minas',76,3143500,'N',-18.607445,-45.355502),(2746,17,'Morro da Garça',76,3143609,'N',-18.547218,-44.603531),(2747,17,'Morro do Pilar',76,3143708,'N',-19.218342,-43.374804),(2748,17,'Munhoz',76,3143807,'N',-22.612783,-46.360371),(2749,17,'Muriaé',76,3143906,'N',-21.132047,-42.361075),(2750,17,'Mutum',76,3144003,'N',-19.807189,-41.439139),(2751,17,'Muzambinho',76,3144102,'N',-21.373013,-46.526805),(2752,17,'Nacip Raydan',76,3144201,'N',-18.457924,-42.251792),(2753,17,'Nanuque',76,3144300,'N',-17.838993,-40.351739),(2754,17,'Naque',76,3144359,'N',-19.223543,-42.334708),(2755,17,'Natalândia',76,3144375,'N',-16.503836,-46.497534),(2756,17,'Natércia',76,3144409,'N',-22.118474,-45.518235),(2757,17,'Nazareno',76,3144508,'N',-21.217697,-44.617235),(2758,17,'Nepomuceno',76,3144607,'N',-21.234577,-45.237429),(2759,17,'Ninheira',76,3144656,'N',-15.323802,-41.748789),(2760,17,'Nova Belém',76,3144672,'N',-18.494091,-41.103688),(2761,17,'Nova Era',76,3144706,'N',-19.764423,-43.035457),(2762,17,'Nova Lima',76,3144805,'N',-19.983893,-43.849783),(2763,17,'Nova Módica',76,3144904,'N',-18.441606,-41.501336),(2764,17,'Nova Ponte',76,3145000,'N',-19.168892,-47.670571),(2765,17,'Nova Porteirinha',76,3145059,'N',-15.802210,-43.302551),(2766,17,'Nova Resende',76,3145109,'N',-21.126652,-46.417029),(2767,17,'Nova Serrana',76,3145208,'N',-19.875867,-44.985579),(2768,17,'Novo Cruzeiro',76,3145307,'N',-17.474889,-41.875392),(2769,17,'Novo Oriente de Minas',76,3145356,'N',-17.409166,-41.222097),(2770,17,'Novorizonte',76,3145372,'N',-16.019539,-42.416781),(2771,17,'Olaria',76,3145406,'N',-21.864773,-43.930927),(2772,17,'Olhos-d\'Água',76,3145455,'N',-17.401900,-43.571411),(2773,17,'Olímpio Noronha',76,3145505,'N',-22.066960,-45.264136),(2774,17,'Oliveira',76,3145604,'N',-20.697516,-44.826411),(2775,17,'Oliveira Fortes',76,3145703,'N',-21.339493,-43.462544),(2776,17,'Onça de Pitangui',76,3145802,'N',-19.745524,-44.808382),(2777,17,'Oratórios',76,3145851,'N',-20.430996,-42.806339),(2778,17,'Orizânia',76,3145877,'N',-20.504121,-42.202946),(2779,17,'Ouro Branco',76,3145901,'N',-20.523583,-43.694771),(2780,17,'Ouro Fino',76,3146008,'N',-22.283524,-46.380081),(2781,17,'Ouro Preto',76,3146107,'N',-20.386776,-43.506448),(2782,17,'Ouro Verde de Minas',76,3146206,'N',-18.069339,-41.268709),(2783,17,'Padre Carvalho',76,3146255,'N',-16.365103,-42.520745),(2784,17,'Padre Paraíso',76,3146305,'N',-17.076319,-41.484965),(2785,17,'Paineiras',76,3146404,'N',-18.902217,-45.538758),(2786,17,'Pains',76,3146503,'N',-20.370917,-45.660813),(2787,17,'Pai Pedro',76,3146552,'N',-15.537066,-43.070556),(2788,17,'Paiva',76,3146602,'N',-21.287852,-43.418833),(2789,17,'Palma',76,3146701,'N',-21.372561,-42.315826),(2790,17,'Palmópolis',76,3146750,'N',-16.734467,-40.420398),(2791,17,'Papagaios',76,3146909,'N',-19.455537,-44.744702),(2792,17,'Paracatu',76,3147006,'N',-17.219742,-46.875419),(2793,17,'Pará de Minas',76,3147105,'N',-19.864738,-44.605380),(2794,17,'Paraguaçu',76,3147204,'N',-21.547316,-45.732695),(2795,17,'Paraisópolis',76,3147303,'N',-22.555193,-45.781704),(2796,17,'Paraopeba',76,3147402,'N',-19.281429,-44.403117),(2797,17,'Passabém',76,3147501,'N',-19.350982,-43.143814),(2798,17,'Passa Quatro',76,3147600,'N',-22.389798,-44.969639),(2799,17,'Passa Tempo',76,3147709,'N',-20.652388,-44.493417),(2800,17,'Passa-Vinte',76,3147808,'N',-22.208977,-44.231049),(2801,17,'Passos',76,3147907,'N',-20.719212,-46.611413),(2802,17,'Patis',76,3147956,'N',-16.079276,-44.082705),(2803,17,'Patos de Minas',76,3148004,'N',-18.592571,-46.515916),(2804,17,'Patrocínio',76,3148103,'N',-18.940813,-46.997438),(2805,17,'Patrocínio do Muriaé',76,3148202,'N',-21.151711,-42.212653),(2806,17,'Paula Cândido',76,3148301,'N',-20.870162,-42.983155),(2807,17,'Paulistas',76,3148400,'N',-18.431738,-42.872625),(2808,17,'Pavão',76,3148509,'N',-17.432690,-41.000113),(2809,17,'Peçanha',76,3148608,'N',-18.546889,-42.563186),(2810,17,'Pedra Azul',76,3148707,'N',-16.005923,-41.281752),(2811,17,'Pedra Bonita',76,3148756,'N',-20.520018,-42.332134),(2812,17,'Pedra do Anta',76,3148806,'N',-20.596011,-42.715933),(2813,17,'Pedra do Indaiá',76,3148905,'N',-20.253596,-45.209810),(2814,17,'Pedra Dourada',76,3149002,'N',-20.829946,-42.154539),(2815,17,'Pedralva',76,3149101,'N',-22.254226,-45.465972),(2816,17,'Pedras de Maria da Cruz',76,3149150,'N',-15.599012,-44.392444),(2817,17,'Pedrinópolis',76,3149200,'N',-19.227720,-47.460617),(2818,17,'Pedro Leopoldo',76,3149309,'N',-19.618396,-44.045884),(2819,17,'Pedro Teixeira',76,3149408,'N',-21.706807,-43.745459),(2820,17,'Pequeri',76,3149507,'N',-21.836904,-43.126286),(2821,17,'Pequi',76,3149606,'N',-19.627987,-44.653442),(2822,17,'Perdigão',76,3149705,'N',-19.955123,-45.079363),(2823,17,'Perdizes',76,3149804,'N',-19.338658,-47.292008),(2824,17,'Perdões',76,3149903,'N',-21.094519,-45.093088),(2825,17,'Periquito',76,3149952,'N',-19.154485,-42.234725),(2826,17,'Pescador',76,3150000,'N',-18.353629,-41.601623),(2827,17,'Piau',76,3150109,'N',-21.504618,-43.329125),(2828,17,'Piedade de Caratinga',76,3150158,'N',-19.759213,-42.074264),(2829,17,'Piedade de Ponte Nova',76,3150208,'N',-20.247665,-42.735239),(2830,17,'Piedade do Rio Grande',76,3150307,'N',-21.469733,-44.202502),(2831,17,'Piedade dos Gerais',76,3150406,'N',-20.461010,-44.227916),(2832,17,'Pimenta',76,3150505,'N',-20.483195,-45.799087),(2833,17,'Pingo-d\'Água',76,3150539,'N',-19.728608,-42.408666),(2834,17,'Pintópolis',76,3150570,'N',-16.054990,-45.149507),(2835,17,'Piracema',76,3150604,'N',-20.508996,-44.478472),(2836,17,'Pirajuba',76,3150703,'N',-19.908505,-48.696638),(2837,17,'Piranga',76,3150802,'N',-20.685144,-43.287346),(2838,17,'Piranguçu',76,3150901,'N',-22.526494,-45.493272),(2839,17,'Piranguinho',76,3151008,'N',-22.411873,-45.534739),(2840,17,'Pirapetinga',76,3151107,'N',-21.655972,-42.348431),(2841,17,'Pirapora',76,3151206,'N',-17.349582,-44.951065),(2842,17,'Piraúba',76,3151305,'N',-21.276550,-43.018131),(2843,17,'Pitangui',76,3151404,'N',-19.680597,-44.890119),(2844,17,'Piumhi',76,3151503,'N',-20.470883,-45.960569),(2845,17,'Planura',76,3151602,'N',-20.138663,-48.699919),(2846,17,'Poço Fundo',76,3151701,'N',-21.784693,-45.964970),(2847,17,'Poços de Caldas',76,3151800,'N',-21.787364,-46.566410),(2848,17,'Pocrane',76,3151909,'N',-19.620144,-41.629001),(2849,17,'Pompéu',76,3152006,'N',-19.220957,-45.001871),(2850,17,'Ponte Nova',76,3152105,'N',-20.416643,-42.909684),(2851,17,'Ponto Chique',76,3152131,'N',-16.633040,-45.063135),(2852,17,'Ponto dos Volantes',76,3152170,'N',-16.754520,-41.507808),(2853,17,'Porteirinha',76,3152204,'N',-15.746838,-43.028523),(2854,17,'Porto Firme',76,3152303,'N',-20.668267,-43.091411),(2855,17,'Poté',76,3152402,'N',-17.801369,-41.788386),(2856,17,'Pouso Alegre',76,3152501,'N',-22.230303,-45.937144),(2857,17,'Pouso Alto',76,3152600,'N',-22.190942,-44.975344),(2858,17,'Prados',76,3152709,'N',-21.056014,-44.073280),(2859,17,'Prata',76,3152808,'N',-19.308211,-48.923846),(2860,17,'Pratápolis',76,3152907,'N',-20.744184,-46.860917),(2861,17,'Pratinha',76,3153004,'N',-19.756945,-46.378449),(2862,17,'Presidente Bernardes',76,3153103,'N',-20.765678,-43.190056),(2863,17,'Presidente Juscelino',76,3153202,'N',-18.640782,-44.054182),(2864,17,'Presidente Kubitschek',76,3153301,'N',-18.615490,-43.557448),(2865,17,'Presidente Olegário',76,3153400,'N',-18.414742,-46.417789),(2866,17,'Alto Jequitibá',76,3153509,'N',-20.422927,-41.967175),(2867,17,'Prudente de Morais',76,3153608,'N',-19.483560,-44.158391),(2868,17,'Quartel Geral',76,3153707,'N',-19.267690,-45.558863),(2869,17,'Queluzito',76,3153806,'N',-20.742384,-43.880027),(2870,17,'Raposos',76,3153905,'N',-19.965599,-43.804774),(2871,17,'Raul Soares',76,3154002,'N',-20.101959,-42.454168),(2872,17,'Recreio',76,3154101,'N',-21.533785,-42.471395),(2873,17,'Reduto',76,3154150,'N',-20.242680,-41.985199),(2874,17,'Resende Costa',76,3154200,'N',-20.917369,-44.239404),(2875,17,'Resplendor',76,3154309,'N',-19.325484,-41.253967),(2876,17,'Ressaquinha',76,3154408,'N',-21.055301,-43.758706),(2877,17,'Riachinho',76,3154457,'N',-16.216826,-46.002747),(2878,17,'Riacho dos Machados',76,3154507,'N',-15.998034,-43.044564),(2879,17,'Ribeirão das Neves',76,3154606,'N',-19.766022,-44.085824),(2880,17,'Ribeirão Vermelho',76,3154705,'N',-21.190414,-45.064782),(2881,17,'Rio Acima',76,3154804,'N',-20.095130,-43.790854),(2882,17,'Rio Casca',76,3154903,'N',-20.226513,-42.652230),(2883,17,'Rio Doce',76,3155009,'N',-20.244646,-42.895681),(2884,17,'Rio do Prado',76,3155108,'N',-16.609408,-40.571894),(2885,17,'Rio Espera',76,3155207,'N',-20.858080,-43.465333),(2886,17,'Rio Manso',76,3155306,'N',-20.261682,-44.310205),(2887,17,'Rio Novo',76,3155405,'N',-21.483249,-43.128669),(2888,17,'Rio Paranaíba',76,3155504,'N',-19.191238,-46.242753),(2889,17,'Rio Pardo de Minas',76,3155603,'N',-15.613078,-42.541232),(2890,17,'Rio Piracicaba',76,3155702,'N',-19.954941,-43.179824),(2891,17,'Rio Pomba',76,3155801,'N',-21.272191,-43.177806),(2892,17,'Rio Preto',76,3155900,'N',-22.086922,-43.829466),(2893,17,'Rio Vermelho',76,3156007,'N',-18.301111,-43.022439),(2894,17,'Ritápolis',76,3156106,'N',-21.023253,-44.323478),(2895,17,'Rochedo de Minas',76,3156205,'N',-21.631460,-43.022069),(2896,17,'Rodeiro',76,3156304,'N',-21.200705,-42.868676),(2897,17,'Romaria',76,3156403,'N',-18.883480,-47.581755),(2898,17,'Rosário da Limeira',76,3156452,'N',-20.981298,-42.506060),(2899,17,'Rubelita',76,3156502,'N',-16.402966,-42.264762),(2900,17,'Rubim',76,3156601,'N',-16.372974,-40.536941),(2901,17,'Sabará',76,3156700,'N',-19.892495,-43.825557),(2902,17,'Sabinópolis',76,3156809,'N',-18.671815,-43.088204),(2903,17,'Sacramento',76,3156908,'N',-19.863576,-47.436555),(2904,17,'Salinas',76,3157005,'N',-16.169856,-42.293506),(2905,17,'Salto da Divisa',76,3157104,'N',-15.997571,-39.950756),(2906,17,'Santa Bárbara',76,3157203,'N',-19.965591,-43.405221),(2907,17,'Santa Bárbara do Leste',76,3157252,'N',-19.975793,-42.140841),(2908,17,'Santa Bárbara do Monte Verde',76,3157278,'N',-21.957267,-43.701774),(2909,17,'Santa Bárbara do Tugúrio',76,3157302,'N',-21.246208,-43.558949),(2910,17,'Santa Cruz de Minas',76,3157336,'N',-21.119471,-44.223258),(2911,17,'Santa Cruz de Salinas',76,3157377,'N',-16.094356,-41.750355),(2912,17,'Santa Cruz do Escalvado',76,3157401,'N',-20.238277,-42.818453),(2913,17,'Santa Efigênia de Minas',76,3157500,'N',-18.819838,-42.439313),(2914,17,'Santa Fé de Minas',76,3157609,'N',-16.687373,-45.413633),(2915,17,'Santa Helena de Minas',76,3157658,'N',-16.936308,-40.686289),(2916,17,'Santa Juliana',76,3157708,'N',-19.311299,-47.527144),(2917,17,'Santa Luzia',76,3157807,'N',-19.767617,-43.850007),(2918,17,'Santa Margarida',76,3157906,'N',-20.377925,-42.252536),(2919,17,'Santa Maria de Itabira',76,3158003,'N',-19.459011,-43.110150),(2920,17,'Santa Maria do Salto',76,3158102,'N',-16.247573,-40.146933),(2921,17,'Santa Maria do Suaçuí',76,3158201,'N',-18.192252,-42.417802),(2922,17,'Santana da Vargem',76,3158300,'N',-21.248962,-45.507121),(2923,17,'Santana de Cataguases',76,3158409,'N',-21.284028,-42.554605),(2924,17,'Santana de Pirapama',76,3158508,'N',-19.006886,-44.038103),(2925,17,'Santana do Deserto',76,3158607,'N',-21.949692,-43.172318),(2926,17,'Santana do Garambéu',76,3158706,'N',-21.601832,-44.110873),(2927,17,'Santana do Jacaré',76,3158805,'N',-20.901677,-45.128049),(2928,17,'Santana do Manhuaçu',76,3158904,'N',-20.108546,-41.923497),(2929,17,'Santana do Paraíso',76,3158953,'N',-19.369099,-42.552583),(2930,17,'Santana do Riacho',76,3159001,'N',-19.170092,-43.711459),(2931,17,'Santana dos Montes',76,3159100,'N',-20.789735,-43.705998),(2932,17,'Santa Rita de Caldas',76,3159209,'N',-22.026435,-46.338626),(2933,17,'Santa Rita de Jacutinga',76,3159308,'N',-22.148461,-44.100442),(2934,17,'Santa Rita de Minas',76,3159357,'N',-19.875210,-42.131781),(2935,17,'Santa Rita de Ibitipoca',76,3159407,'N',-21.561230,-43.916761),(2936,17,'Santa Rita do Itueto',76,3159506,'N',-19.359813,-41.379278),(2937,17,'Santa Rita do Sapucaí',76,3159605,'N',-22.253330,-45.703988),(2938,17,'Santa Rosa da Serra',76,3159704,'N',-19.532621,-45.970664),(2939,17,'Santa Vitória',76,3159803,'N',-18.843948,-50.123465),(2940,17,'Santo Antônio do Amparo',76,3159902,'N',-20.946249,-44.918675),(2941,17,'Santo Antônio do Aventureiro',76,3160009,'N',-21.755828,-42.811637),(2942,17,'Santo Antônio do Grama',76,3160108,'N',-20.312500,-42.613899),(2943,17,'Santo Antônio do Itambé',76,3160207,'N',-18.468972,-43.303779),(2944,17,'Santo Antônio do Jacinto',76,3160306,'N',-16.537683,-40.175337),(2945,17,'Santo Antônio do Monte',76,3160405,'N',-20.087219,-45.293936),(2946,17,'Santo Antônio do Retiro',76,3160454,'N',-15.342634,-42.624377),(2947,17,'Santo Antônio do Rio Abaixo',76,3160504,'N',-19.225680,-43.253057),(2948,17,'Santo Hipólito',76,3160603,'N',-18.287810,-44.221698),(2949,17,'Santos Dumont',76,3160702,'N',-21.457532,-43.553752),(2950,17,'São Bento Abade',76,3160801,'N',-21.579048,-45.075361),(2951,17,'São Brás do Suaçuí',76,3160900,'N',-20.626504,-43.952675),(2952,17,'São Domingos das Dores',76,3160959,'N',-19.529446,-42.009508),(2953,17,'São Domingos do Prata',76,3161007,'N',-19.871028,-42.960363),(2954,17,'São Félix de Minas',76,3161056,'N',-18.586106,-41.490353),(2955,17,'São Francisco',76,3161106,'N',-15.952564,-44.861313),(2956,17,'São Francisco de Paula',76,3161205,'N',-20.713532,-44.982631),(2957,17,'São Francisco de Sales',76,3161304,'N',-19.865114,-49.765566),(2958,17,'São Francisco do Glória',76,3161403,'N',-20.792301,-42.268221),(2959,17,'São Geraldo',76,3161502,'N',-20.920848,-42.837664),(2960,17,'São Geraldo da Piedade',76,3161601,'N',-18.844031,-42.289135),(2961,17,'São Geraldo do Baixio',76,3161650,'N',-18.918809,-41.363628),(2962,17,'São Gonçalo do Abaeté',76,3161700,'N',-18.341113,-45.834246),(2963,17,'São Gonçalo do Pará',76,3161809,'N',-19.985685,-44.857189),(2964,17,'São Gonçalo do Rio Abaixo',76,3161908,'N',-19.831801,-43.348040),(2965,17,'São Gonçalo do Sapucaí',76,3162005,'N',-21.891905,-45.594638),(2966,17,'São Gotardo',76,3162104,'N',-19.312700,-46.053144),(2967,17,'São João Batista do Glória',76,3162203,'N',-20.639037,-46.503461),(2968,17,'São João da Lagoa',76,3162252,'N',-16.852055,-44.349089),(2969,17,'São João da Mata',76,3162302,'N',-21.934853,-45.926530),(2970,17,'São João da Ponte',76,3162401,'N',-15.924513,-44.008955),(2971,17,'São João das Missões',76,3162450,'N',-14.882533,-44.081262),(2972,17,'São João del Rei',76,3162500,'N',-21.135509,-44.260973),(2973,17,'São João do Manhuaçu',76,3162559,'N',-20.395500,-42.152158),(2974,17,'São João do Manteninha',76,3162575,'N',-18.727837,-41.158748),(2975,17,'São João do Oriente',76,3162609,'N',-19.337666,-42.156460),(2976,17,'São João do Pacuí',76,3162658,'N',-16.538375,-44.529571),(2977,17,'São João do Paraíso',76,3162708,'N',-15.318438,-42.011422),(2978,17,'São João Evangelista',76,3162807,'N',-18.545187,-42.776048),(2979,17,'São João Nepomuceno',76,3162906,'N',-21.535697,-43.011286),(2980,17,'São Joaquim de Bicas',76,3162922,'N',-20.063468,-44.266273),(2981,17,'São José da Barra',76,3162948,'N',-20.722091,-46.319330),(2982,17,'São José da Lapa',76,3162955,'N',-19.698627,-43.959956),(2983,17,'São José da Safira',76,3163003,'N',-18.325117,-42.146411),(2984,17,'São José da Varginha',76,3163102,'N',-19.704806,-44.561060),(2985,17,'São José do Alegre',76,3163201,'N',-22.329055,-45.530188),(2986,17,'São José do Divino',76,3163300,'N',-18.483263,-41.391209),(2987,17,'São José do Goiabal',76,3163409,'N',-19.927983,-42.709860),(2988,17,'São José do Jacuri',76,3163508,'N',-18.275811,-42.666627),(2989,17,'São José do Mantimento',76,3163607,'N',-20.005999,-41.749073),(2990,17,'São Lourenço',76,3163706,'N',-22.117769,-45.053373),(2991,17,'São Miguel do Anta',76,3163805,'N',-20.705918,-42.720899),(2992,17,'São Pedro da União',76,3163904,'N',-21.133458,-46.621327),(2993,17,'São Pedro dos Ferros',76,3164001,'N',-20.171910,-42.523901),(2994,17,'São Pedro do Suaçuí',76,3164100,'N',-18.365506,-42.600232),(2995,17,'São Romão',76,3164209,'N',-16.368639,-45.069135),(2996,17,'São Roque de Minas',76,3164308,'N',-20.250671,-46.368995),(2997,17,'São Sebastião da Bela Vista',76,3164407,'N',-22.155006,-45.754789),(2998,17,'São Sebastião da Vargem Alegre',76,3164431,'N',-21.073830,-42.638666),(2999,17,'São Sebastião do Anta',76,3164472,'N',-19.500107,-41.979599),(3000,17,'São Sebastião do Maranhão',76,3164506,'N',-18.091372,-42.565746),(3001,17,'São Sebastião do Oeste',76,3164605,'N',-20.274095,-45.003134),(3002,17,'São Sebastião do Paraíso',76,3164704,'N',-20.918065,-46.986472),(3003,17,'São Sebastião do Rio Preto',76,3164803,'N',-19.285767,-43.174734),(3004,17,'São Sebastião do Rio Verde',76,3164902,'N',-22.215056,-44.977736),(3005,17,'São Tiago',76,3165008,'N',-20.900946,-44.503992),(3006,17,'São Tomás de Aquino',76,3165107,'N',-20.784994,-47.096783),(3007,17,'São Thomé das Letras',76,3165206,'N',-21.720723,-44.987008),(3008,17,'São Vicente de Minas',76,3165305,'N',-21.697472,-44.454684),(3009,17,'Sapucaí-Mirim',76,3165404,'N',-22.751596,-45.740926),(3010,17,'Sardoá',76,3165503,'N',-18.783265,-42.366129),(3011,17,'Sarzedo',76,3165537,'N',-20.034535,-44.145867),(3012,17,'Setubinha',76,3165552,'N',-17.597019,-42.166438),(3013,17,'Sem-Peixe',76,3165560,'N',-20.102536,-42.841902),(3014,17,'Senador Amaral',76,3165578,'N',-22.588722,-46.180234),(3015,17,'Senador Cortes',76,3165602,'N',-21.802517,-42.944332),(3016,17,'Senador Firmino',76,3165701,'N',-20.918060,-43.104130),(3017,17,'Senador José Bento',76,3165800,'N',-22.166607,-46.179473),(3018,17,'Senador Modestino Gonçalves',76,3165909,'N',-17.946025,-43.222975),(3019,17,'Senhora de Oliveira',76,3166006,'N',-20.793900,-43.337732),(3020,17,'Senhora do Porto',76,3166105,'N',-18.898008,-43.081756),(3021,17,'Senhora dos Remédios',76,3166204,'N',-21.033083,-43.586382),(3022,17,'Sericita',76,3166303,'N',-20.471555,-42.482007),(3023,17,'Seritinga',76,3166402,'N',-21.911349,-44.521445),(3024,17,'Serra Azul de Minas',76,3166501,'N',-18.362280,-43.174459),(3025,17,'Serra da Saudade',76,3166600,'N',-19.440562,-45.796590),(3026,17,'Serra dos Aimorés',76,3166709,'N',-17.785747,-40.243169),(3027,17,'Serra do Salitre',76,3166808,'N',-19.111796,-46.692109),(3028,17,'Serrania',76,3166907,'N',-21.546681,-46.043145),(3029,17,'Serranópolis de Minas',76,3166956,'N',-15.808784,-42.874386),(3030,17,'Serranos',76,3167004,'N',-21.888782,-44.506754),(3031,17,'Serro',76,3167103,'N',-18.604442,-43.388631),(3032,17,'Sete Lagoas',76,3167202,'N',-19.458287,-44.239595),(3033,17,'Silveirânia',76,3167301,'N',-21.164638,-43.217878),(3034,17,'Silvianópolis',76,3167400,'N',-22.027997,-45.832447),(3035,17,'Simão Pereira',76,3167509,'N',-21.964857,-43.314956),(3036,17,'Simonésia',76,3167608,'N',-20.122030,-42.003857),(3037,17,'Sobrália',76,3167707,'N',-19.235549,-42.098654),(3038,17,'Soledade de Minas',76,3167806,'N',-22.059206,-45.041023),(3039,17,'Tabuleiro',76,3167905,'N',-21.357578,-43.245605),(3040,17,'Taiobeiras',76,3168002,'N',-15.811521,-42.227916),(3041,17,'Taparuba',76,3168051,'N',-19.761470,-41.615858),(3042,17,'Tapira',76,3168101,'N',-19.925579,-46.821915),(3043,17,'Tapiraí',76,3168200,'N',-19.885806,-46.018570),(3044,17,'Taquaraçu de Minas',76,3168309,'N',-19.673848,-43.687143),(3045,17,'Tarumirim',76,3168408,'N',-19.281495,-42.007735),(3046,17,'Teixeiras',76,3168507,'N',-20.649067,-42.862644),(3047,17,'Teófilo Otoni',76,3168606,'N',-17.862540,-41.509635),(3048,17,'Timóteo',76,3168705,'N',-19.584050,-42.643942),(3049,17,'Tiradentes',76,3168804,'N',-21.107043,-44.172692),(3050,17,'Tiros',76,3168903,'N',-19.003917,-45.963551),(3051,17,'Tocantins',76,3169000,'N',-21.175550,-43.018700),(3052,17,'Tocos do Moji',76,3169059,'N',-22.371646,-46.096447),(3053,17,'Toledo',76,3169109,'N',-22.743395,-46.378973),(3054,17,'Tombos',76,3169208,'N',-20.902589,-42.014682),(3055,17,'Três Corações',76,3169307,'N',-21.695966,-45.254937),(3056,17,'Três Marias',76,3169356,'N',-18.205921,-45.225735),(3057,17,'Três Pontas',76,3169406,'N',-21.368770,-45.515475),(3058,17,'Tumiritinga',76,3169505,'N',-18.976608,-41.637980),(3059,17,'Tupaciguara',76,3169604,'N',-18.599353,-48.693736),(3060,17,'Turmalina',76,3169703,'N',-17.286412,-42.730415),(3061,17,'Turvolândia',76,3169802,'N',-21.879389,-45.796736),(3062,17,'Ubá',76,3169901,'N',-21.118597,-42.936786),(3063,17,'Ubaí',76,3170008,'N',-16.297405,-44.787086),(3064,17,'Ubaporanga',76,3170057,'N',-19.641362,-42.109216),(3065,17,'Uberaba',76,3170107,'N',-19.713535,-47.983625),(3066,17,'Uberlândia',76,3170206,'N',-18.918999,-48.277950),(3067,17,'Umburatiba',76,3170305,'N',-17.253607,-40.572645),(3068,17,'Unaí',76,3170404,'N',-16.359008,-46.899957),(3069,17,'União de Minas',76,3170438,'N',-19.529737,-50.330803),(3070,17,'Uruana de Minas',76,3170479,'N',-16.060025,-46.256229),(3071,17,'Urucânia',76,3170503,'N',-20.350870,-42.741228),(3072,17,'Urucuia',76,3170529,'N',-16.132091,-45.737028),(3073,17,'Vargem Alegre',76,3170578,'N',-19.600720,-42.299815),(3074,17,'Vargem Bonita',76,3170602,'N',-20.326777,-46.372457),(3075,17,'Vargem Grande do Rio Pardo',76,3170651,'N',-15.402401,-42.309291),(3076,17,'Varginha',76,3170701,'N',-21.557080,-45.431886),(3077,17,'Varjão de Minas',76,3170750,'N',-18.383704,-46.033502),(3078,17,'Várzea da Palma',76,3170800,'N',-17.597570,-44.730347),(3079,17,'Varzelândia',76,3170909,'N',-15.708871,-44.027948),(3080,17,'Vazante',76,3171006,'N',-17.991038,-46.901967),(3081,17,'Verdelândia',76,3171030,'N',-15.594542,-43.606022),(3082,17,'Veredinha',76,3171071,'N',-17.393969,-42.735930),(3083,17,'Veríssimo',76,3171105,'N',-19.669358,-48.303711),(3084,17,'Vermelho Novo',76,3171154,'N',-20.034766,-42.268346),(3085,17,'Vespasiano',76,3171204,'N',-19.693030,-43.919915),(3086,17,'Viçosa',76,3171303,'N',-20.752072,-42.879477),(3087,17,'Vieiras',76,3171402,'N',-20.865341,-42.245804),(3088,17,'Mathias Lobato',76,3171501,'N',-18.579589,-41.923360),(3089,17,'Virgem da Lapa',76,3171600,'N',-16.802149,-42.343281),(3090,17,'Virgínia',76,3171709,'N',-22.336972,-45.095425),(3091,17,'Virginópolis',76,3171808,'N',-18.825140,-42.714804),(3092,17,'Virgolândia',76,3171907,'N',-18.476062,-42.310810),(3093,17,'Visconde do Rio Branco',76,3172004,'N',-21.011990,-42.839389),(3094,17,'Volta Grande',76,3172103,'N',-21.770711,-42.541285),(3095,17,'Wenceslau Braz',76,3172202,'N',-22.529013,-45.356774),(3096,18,'Afonso Cláudio',76,3200102,'N',-20.077040,-41.125460),(3097,18,'Águia Branca',76,3200136,'N',-18.987361,-40.736638),(3098,18,'Água Doce do Norte',76,3200169,'N',-18.545546,-40.976456),(3099,18,'Alegre',76,3200201,'N',-20.763265,-41.536488),(3100,18,'Alfredo Chaves',76,3200300,'N',-20.630348,-40.760050),(3101,18,'Alto Rio Novo',76,3200359,'N',-19.057500,-41.018684),(3102,18,'Anchieta',76,3200409,'N',-20.805613,-40.647659),(3103,18,'Apiacá',76,3200508,'N',-21.156448,-41.563380),(3104,18,'Aracruz',76,3200607,'N',-19.823278,-40.276223),(3105,18,'Atilio Vivacqua',76,3200706,'N',-20.915897,-41.191242),(3106,18,'Baixo Guandu',76,3200805,'N',-19.514246,-41.012068),(3107,18,'Barra de São Francisco',76,3200904,'N',-18.759089,-40.890399),(3108,18,'Boa Esperança',76,3201001,'N',-18.538715,-40.302956),(3109,18,'Bom Jesus do Norte',76,3201100,'N',-21.129342,-41.675811),(3110,18,'Brejetuba',76,3201159,'N',-20.157034,-41.289677),(3111,18,'Cachoeiro de Itapemirim',76,3201209,'N',-20.850112,-41.111919),(3112,18,'Cariacica',76,3201308,'N',-20.294678,-40.390559),(3113,18,'Castelo',76,3201407,'N',-20.602065,-41.202213),(3114,18,'Colatina',76,3201506,'N',-19.536270,-40.630318),(3115,18,'Conceição da Barra',76,3201605,'N',-18.598462,-39.727474),(3116,18,'Conceição do Castelo',76,3201704,'N',-20.365581,-41.245348),(3117,18,'Divino de São Lourenço',76,3201803,'N',-20.620471,-41.679976),(3118,18,'Domingos Martins',76,3201902,'N',-20.364239,-40.659396),(3119,18,'Dores do Rio Preto',76,3202009,'N',-20.692894,-41.849577),(3120,18,'Ecoporanga',76,3202108,'N',-18.375252,-40.830081),(3121,18,'Fundão',76,3202207,'N',-19.933447,-40.403765),(3122,18,'Governador Lindenberg',76,3202256,'N',-19.252807,-40.457766),(3123,18,'Guaçuí',76,3202306,'N',-20.775338,-41.679496),(3124,18,'Guarapari',76,3202405,'N',-20.665975,-40.495021),(3125,18,'Ibatiba',76,3202454,'N',-20.234020,-41.507208),(3126,18,'Ibiraçu',76,3202504,'N',-19.831880,-40.371666),(3127,18,'Ibitirama',76,3202553,'N',-20.538731,-41.659412),(3128,18,'Iconha',76,3202603,'N',-20.797145,-40.811221),(3129,18,'Irupi',76,3202652,'N',-20.348597,-41.647528),(3130,18,'Itaguaçu',76,3202702,'N',-19.802508,-40.856598),(3131,18,'Itapemirim',76,3202801,'N',-21.011100,-40.836145),(3132,18,'Itarana',76,3202900,'N',-19.872348,-40.879791),(3133,18,'Iúna',76,3203007,'N',-20.348600,-41.532889),(3134,18,'Jaguaré',76,3203056,'N',-18.900436,-40.086141),(3135,18,'Jerônimo Monteiro',76,3203106,'N',-20.797698,-41.402935),(3136,18,'João Neiva',76,3203130,'N',-19.752959,-40.380880),(3137,18,'Laranja da Terra',76,3203163,'N',-19.898693,-41.055244),(3138,18,'Linhares',76,3203205,'N',-19.398106,-40.065306),(3139,18,'Mantenópolis',76,3203304,'N',-18.861179,-41.117737),(3140,18,'Marataízes',76,3203320,'N',-21.042996,-40.830187),(3141,18,'Marechal Floriano',76,3203346,'N',-20.426709,-40.680383),(3142,18,'Marilândia',76,3203353,'N',-19.412813,-40.550951),(3143,18,'Mimoso do Sul',76,3203403,'N',-21.065374,-41.364425),(3144,18,'Montanha',76,3203502,'N',-18.126857,-40.363421),(3145,18,'Mucurici',76,3203601,'N',-18.097236,-40.517927),(3146,18,'Muniz Freire',76,3203700,'N',-20.456546,-41.417514),(3147,18,'Muqui',76,3203809,'N',-20.953692,-41.346214),(3148,18,'Nova Venécia',76,3203908,'N',-18.712906,-40.401548),(3149,18,'Pancas',76,3204005,'N',-19.224420,-40.856003),(3150,18,'Pedro Canário',76,3204054,'N',-18.297192,-39.954937),(3151,18,'Pinheiros',76,3204104,'N',-18.413323,-40.217728),(3152,18,'Piúma',76,3204203,'N',-20.837609,-40.727981),(3153,18,'Ponto Belo',76,3204252,'N',-18.129126,-40.538134),(3154,18,'Presidente Kennedy',76,3204302,'N',-21.100148,-41.051896),(3155,18,'Rio Bananal',76,3204351,'N',-19.277086,-40.322478),(3156,18,'Rio Novo do Sul',76,3204401,'N',-20.864586,-40.936228),(3157,18,'Santa Leopoldina',76,3204500,'N',-20.098891,-40.533210),(3158,18,'Santa Maria de Jetibá',76,3204559,'N',-20.028814,-40.741618),(3159,18,'Santa Teresa',76,3204609,'N',-19.937714,-40.598998),(3160,18,'São Domingos do Norte',76,3204658,'N',-19.148169,-40.621878),(3161,18,'São Gabriel da Palha',76,3204708,'N',-19.021965,-40.529600),(3162,18,'São José do Calçado',76,3204807,'N',-21.026130,-41.656088),(3163,18,'São Mateus',76,3204906,'N',-18.718447,-39.858201),(3164,18,'São Roque do Canaã',76,3204955,'N',-19.725307,-40.643139),(3165,18,'Serra',76,3205002,'N',-20.156770,-40.275217),(3166,18,'Sooretama',76,3205010,'N',-19.191950,-40.096491),(3167,18,'Vargem Alta',76,3205036,'N',-20.671678,-41.007148),(3168,18,'Venda Nova do Imigrante',76,3205069,'N',-20.331518,-41.129053),(3169,18,'Viana',76,3205101,'N',-20.390863,-40.495624),(3170,18,'Vila Pavão',76,3205150,'N',-18.620803,-40.602411),(3171,18,'Vila Valério',76,3205176,'N',-18.993617,-40.390590),(3172,18,'Vila Velha',76,3205200,'N',-20.338374,-40.293957),(3173,18,'Vitória',76,3205309,'S',-20.320154,-40.322209),(3174,19,'Angra dos Reis',76,3300100,'N',-23.009116,-44.319627),(3175,19,'Aperibé',76,3300159,'N',-21.619422,-42.104917),(3176,19,'Araruama',76,3300209,'N',-22.877438,-42.341096),(3177,19,'Areal',76,3300225,'N',-22.236912,-43.101070),(3178,19,'Armação dos Búzios',76,3300233,'N',-22.757764,-41.887749),(3179,19,'Arraial do Cabo',76,3300258,'N',-22.967638,-42.028336),(3180,19,'Barra do Piraí',76,3300308,'N',-22.469596,-43.828452),(3181,19,'Barra Mansa',76,3300407,'N',-22.545301,-44.172431),(3182,19,'Belford Roxo',76,3300456,'N',-22.764556,-43.399625),(3183,19,'Bom Jardim',76,3300506,'N',-22.153305,-42.417211),(3184,19,'Bom Jesus do Itabapoana',76,3300605,'N',-21.134497,-41.677680),(3185,19,'Cabo Frio',76,3300704,'N',-22.880765,-42.020075),(3186,19,'Cachoeiras de Macacu',76,3300803,'N',-22.467571,-42.663164),(3187,19,'Cambuci',76,3300902,'N',-21.577277,-41.908636),(3188,19,'Carapebus',76,3300936,'N',-22.182595,-41.664011),(3189,19,'Comendador Levy Gasparian',76,3300951,'N',-22.033359,-43.217224),(3190,19,'Campos dos Goytacazes',76,3301009,'N',-21.751899,-41.330476),(3191,19,'Cantagalo',76,3301108,'N',-21.981840,-42.365978),(3192,19,'Cardoso Moreira',76,3301157,'N',-21.496157,-41.613296),(3193,19,'Carmo',76,3301207,'N',-21.929312,-42.609718),(3194,19,'Casimiro de Abreu',76,3301306,'N',-22.479537,-42.204211),(3195,19,'Conceição de Macabu',76,3301405,'N',-22.087872,-41.867759),(3196,19,'Cordeiro',76,3301504,'N',-22.027777,-42.363031),(3197,19,'Duas Barras',76,3301603,'N',-22.058906,-42.515098),(3198,19,'Duque de Caxias',76,3301702,'N',-22.785253,-43.309888),(3199,19,'Engenheiro Paulo de Frontin',76,3301801,'N',-22.543685,-43.679477),(3200,19,'Guapimirim',76,3301850,'N',-22.519596,-42.978330),(3201,19,'Iguaba Grande',76,3301876,'N',-22.839057,-42.222125),(3202,19,'Itaboraí',76,3301900,'N',-22.745863,-42.860343),(3203,19,'Itaguaí',76,3302007,'N',-22.871251,-43.775041),(3204,19,'Italva',76,3302056,'N',-21.425103,-41.690965),(3205,19,'Itaocara',76,3302106,'N',-21.670503,-42.077730),(3206,19,'Itaperuna',76,3302205,'N',-21.210591,-41.886203),(3207,19,'Itatiaia',76,3302254,'N',-22.497015,-44.562772),(3208,19,'Japeri',76,3302270,'N',-22.644819,-43.653786),(3209,19,'Laje do Muriaé',76,3302304,'N',-21.205721,-42.131174),(3210,19,'Macaé',76,3302403,'N',-22.368705,-41.775064),(3211,19,'Macuco',76,3302452,'N',-21.990230,-42.257074),(3212,19,'Magé',76,3302502,'N',-22.654349,-43.040246),(3213,19,'Mangaratiba',76,3302601,'N',-22.961712,-44.041127),(3214,19,'Maricá',76,3302700,'N',-22.916955,-42.819824),(3215,19,'Mendes',76,3302809,'N',-22.517423,-43.721487),(3216,19,'Mesquita',76,3302858,'N',-22.768088,-43.429224),(3217,19,'Miguel Pereira',76,3302908,'N',-22.455427,-43.474676),(3218,19,'Miracema',76,3303005,'N',-21.411163,-42.198411),(3219,19,'Natividade',76,3303104,'N',-21.043757,-41.976440),(3220,19,'Nilópolis',76,3303203,'N',-22.807514,-43.416610),(3221,19,'Niterói',76,3303302,'N',-22.896452,-43.075823),(3222,19,'Nova Friburgo',76,3303401,'N',-22.286461,-42.532771),(3223,19,'Nova Iguaçu',76,3303500,'N',-22.759835,-43.450345),(3224,19,'Paracambi',76,3303609,'N',-22.609727,-43.709385),(3225,19,'Paraíba do Sul',76,3303708,'N',-22.161982,-43.289544),(3226,19,'Parati',76,3303807,'N',-23.219414,-44.710859),(3227,19,'Paty do Alferes',76,3303856,'N',-22.427415,-43.424871),(3228,19,'Petrópolis',76,3303906,'N',-22.510599,-43.177337),(3229,19,'Pinheiral',76,3303955,'N',-22.515674,-44.000355),(3230,19,'Piraí',76,3304003,'N',-22.628757,-43.899351),(3231,19,'Porciúncula',76,3304102,'N',-20.962608,-42.040156),(3232,19,'Porto Real',76,3304110,'N',-22.432948,-44.296901),(3233,19,'Quatis',76,3304128,'N',-22.409919,-44.262711),(3234,19,'Queimados',76,3304144,'N',-22.717430,-43.555670),(3235,19,'Quissamã',76,3304151,'N',-22.106640,-41.472509),(3236,19,'Resende',76,3304201,'N',-22.471184,-44.443613),(3237,19,'Rio Bonito',76,3304300,'N',-22.711272,-42.625998),(3238,19,'Rio Claro',76,3304409,'N',-22.731727,-44.139406),(3239,19,'Rio das Flores',76,3304508,'N',-22.171862,-43.576433),(3240,19,'Rio das Ostras',76,3304524,'N',-22.523941,-41.936967),(3241,19,'Rio de Janeiro',76,3304557,'S',-22.876652,-43.227875),(3242,19,'Santa Maria Madalena',76,3304607,'N',-21.966094,-42.014445),(3243,19,'Santo Antônio de Pádua',76,3304706,'N',-21.535977,-42.177912),(3244,19,'São Francisco de Itabapoana',76,3304755,'N',-21.480138,-41.117720),(3245,19,'São Fidélis',76,3304805,'N',-21.643627,-41.755592),(3246,19,'São Gonçalo',76,3304904,'N',-22.829547,-43.032335),(3247,19,'São João da Barra',76,3305000,'N',-21.640458,-41.050348),(3248,19,'São João de Meriti',76,3305109,'N',-22.802331,-43.371885),(3249,19,'São José de Ubá',76,3305133,'N',-21.360221,-41.941232),(3250,19,'São José do Vale do Rio Preto',76,3305158,'N',-22.149740,-42.923368),(3251,19,'São Pedro da Aldeia',76,3305208,'N',-22.837203,-42.103529),(3252,19,'São Sebastião do Alto',76,3305307,'N',-21.954463,-42.130220),(3253,19,'Sapucaia',76,3305406,'N',-21.993956,-42.914175),(3254,19,'Saquarema',76,3305505,'N',-22.931127,-42.496694),(3255,19,'Seropédica',76,3305554,'N',-22.743011,-43.701925),(3256,19,'Silva Jardim',76,3305604,'N',-22.654330,-42.389826),(3257,19,'Sumidouro',76,3305703,'N',-22.050669,-42.678626),(3258,19,'Tanguá',76,3305752,'N',-22.733937,-42.721172),(3259,19,'Teresópolis',76,3305802,'N',-22.409005,-42.962957),(3260,19,'Trajano de Morais',76,3305901,'N',-22.061380,-42.054815),(3261,19,'Três Rios',76,3306008,'N',-22.117448,-43.211609),(3262,19,'Valença',76,3306107,'N',-22.244719,-43.704844),(3263,19,'Varre-Sai',76,3306156,'N',-20.929298,-41.863295),(3264,19,'Vassouras',76,3306206,'N',-22.409008,-43.663874),(3265,19,'Volta Redonda',76,3306305,'N',-22.509968,-44.093522),(3266,20,'Adamantina',76,3500105,'N',-21.688311,-51.073365),(3267,20,'Adolfo',76,3500204,'N',-21.232730,-49.649721),(3268,20,'Aguaí',76,3500303,'N',-22.059684,-46.979693),(3269,20,'Águas da Prata',76,3500402,'N',-21.934829,-46.716767),(3270,20,'Águas de Lindóia',76,3500501,'N',-22.473822,-46.631779),(3271,20,'Águas de Santa Bárbara',76,3500550,'N',-22.869149,-49.238608),(3272,20,'Águas de São Pedro',76,3500600,'N',-22.597340,-47.883975),(3273,20,'Agudos',76,3500709,'N',-22.474037,-48.990156),(3274,20,'Alambari',76,3500758,'N',-23.553899,-47.893588),(3275,20,'Alfredo Marcondes',76,3500808,'N',-21.952741,-51.412938),(3276,20,'Altair',76,3500907,'N',-20.523305,-49.060111),(3277,20,'Altinópolis',76,3501004,'N',-21.024583,-47.373280),(3278,20,'Alto Alegre',76,3501103,'N',-21.581689,-50.163597),(3279,20,'Alumínio',76,3501152,'N',-23.533373,-47.259057),(3280,20,'Álvares Florence',76,3501202,'N',-20.319876,-49.911185),(3281,20,'Álvares Machado',76,3501301,'N',-22.077779,-51.468797),(3282,20,'Álvaro de Carvalho',76,3501400,'N',-22.076375,-49.720609),(3283,20,'Alvinlândia',76,3501509,'N',-22.445010,-49.763033),(3284,20,'Americana',76,3501608,'N',-22.740884,-47.330363),(3285,20,'Américo Brasiliense',76,3501707,'N',-21.730037,-48.106605),(3286,20,'Américo de Campos',76,3501806,'N',-20.296402,-49.727027),(3287,20,'Amparo',76,3501905,'N',-22.699389,-46.765086),(3288,20,'Analândia',76,3502002,'N',-22.128785,-47.660766),(3289,20,'Andradina',76,3502101,'N',-20.901464,-51.378848),(3290,20,'Angatuba',76,3502200,'N',-23.483987,-48.406760),(3291,20,'Anhembi',76,3502309,'N',-22.786321,-48.126927),(3292,20,'Anhumas',76,3502408,'N',-22.293237,-51.386074),(3293,20,'Aparecida',76,3502507,'N',-22.848154,-45.229429),(3294,20,'Aparecida d\'Oeste',76,3502606,'N',-20.450845,-50.885616),(3295,20,'Apiaí',76,3502705,'N',-24.513316,-48.848660),(3296,20,'Araçariguama',76,3502754,'N',-23.430041,-47.071548),(3297,20,'Araçatuba',76,3502804,'N',-21.205476,-50.439226),(3298,20,'Araçoiaba da Serra',76,3502903,'N',-23.507320,-47.587243),(3299,20,'Aramina',76,3503000,'N',-20.089944,-47.786013),(3300,20,'Arandu',76,3503109,'N',-23.133407,-49.050976),(3301,20,'Arapeí',76,3503158,'N',-22.674799,-44.448107),(3302,20,'Araraquara',76,3503208,'N',-21.790360,-48.174440),(3303,20,'Araras',76,3503307,'N',-22.357087,-47.385830),(3304,20,'Arco-Íris',76,3503356,'N',-21.773914,-50.464911),(3305,20,'Arealva',76,3503406,'N',-22.024767,-48.920415),(3306,20,'Areias',76,3503505,'N',-22.582194,-44.699432),(3307,20,'Areiópolis',76,3503604,'N',-22.673940,-48.665595),(3308,20,'Ariranha',76,3503703,'N',-21.186127,-48.788337),(3309,20,'Artur Nogueira',76,3503802,'N',-22.571343,-47.164301),(3310,20,'Arujá',76,3503901,'N',-23.395827,-46.320490),(3311,20,'Aspásia',76,3503950,'N',-20.158190,-50.726963),(3312,20,'Assis',76,3504008,'N',-22.662835,-50.417510),(3313,20,'Atibaia',76,3504107,'N',-23.116308,-46.555063),(3314,20,'Auriflama',76,3504206,'N',-20.687335,-50.553959),(3315,20,'Avaí',76,3504305,'N',-22.156772,-49.336815),(3316,20,'Avanhandava',76,3504404,'N',-21.460871,-49.942697),(3317,20,'Avaré',76,3504503,'N',-23.103194,-48.923263),(3318,20,'Bady Bassitt',76,3504602,'N',-20.918564,-49.448574),(3319,20,'Balbinos',76,3504701,'N',-21.901524,-49.356473),(3320,20,'Bálsamo',76,3504800,'N',-20.738264,-49.579328),(3321,20,'Bananal',76,3504909,'N',-22.682616,-44.323330),(3322,20,'Barão de Antonina',76,3505005,'N',-23.627111,-49.566064),(3323,20,'Barbosa',76,3505104,'N',-21.259026,-49.953989),(3324,20,'Bariri',76,3505203,'N',-22.071978,-48.741525),(3325,20,'Barra Bonita',76,3505302,'N',-22.491146,-48.563229),(3326,20,'Barra do Chapéu',76,3505351,'N',-24.471426,-49.027139),(3327,20,'Barra do Turvo',76,3505401,'N',-24.759387,-48.502343),(3328,20,'Barretos',76,3505500,'N',-20.558456,-48.567378),(3329,20,'Barrinha',76,3505609,'N',-21.191744,-48.162814),(3330,20,'Barueri',76,3505708,'N',-23.508902,-46.874653),(3331,20,'Bastos',76,3505807,'N',-21.921037,-50.734871),(3332,20,'Batatais',76,3505906,'N',-20.891930,-47.586107),(3333,20,'Bauru',76,3506003,'N',-22.325123,-49.083001),(3334,20,'Bebedouro',76,3506102,'N',-20.949816,-48.477362),(3335,20,'Bento de Abreu',76,3506201,'N',-21.269108,-50.811852),(3336,20,'Bernardino de Campos',76,3506300,'N',-23.013553,-49.474043),(3337,20,'Bertioga',76,3506359,'N',-23.854015,-46.136538),(3338,20,'Bilac',76,3506409,'N',-21.402571,-50.481110),(3339,20,'Birigui',76,3506508,'N',-21.292392,-50.339329),(3340,20,'Biritiba-Mirim',76,3506607,'N',-23.571033,-46.041212),(3341,20,'Boa Esperança do Sul',76,3506706,'N',-21.992484,-48.390597),(3342,20,'Bocaina',76,3506805,'N',-22.133923,-48.520494),(3343,20,'Bofete',76,3506904,'N',-23.102520,-48.260033),(3344,20,'Boituva',76,3507001,'N',-23.281944,-47.671473),(3345,20,'Bom Jesus dos Perdões',76,3507100,'N',-23.130837,-46.466493),(3346,20,'Bom Sucesso de Itararé',76,3507159,'N',-24.318263,-49.143762),(3347,20,'Borá',76,3507209,'N',-22.270117,-50.544881),(3348,20,'Boracéia',76,3507308,'N',-22.193206,-48.779218),(3349,20,'Borborema',76,3507407,'N',-21.621538,-49.072640),(3350,20,'Borebi',76,3507456,'N',-22.567833,-48.971596),(3351,20,'Botucatu',76,3507506,'N',-22.888382,-48.441289),(3352,20,'Bragança Paulista',76,3507605,'N',-22.956896,-46.542333),(3353,20,'Braúna',76,3507704,'N',-21.501021,-50.318166),(3354,20,'Brejo Alegre',76,3507753,'N',-21.166128,-50.187259),(3355,20,'Brodowski',76,3507803,'N',-20.990140,-47.656398),(3356,20,'Brotas',76,3507902,'N',-22.286517,-48.126833),(3357,20,'Buri',76,3508009,'N',-23.799381,-48.597415),(3358,20,'Buritama',76,3508108,'N',-21.067040,-50.149281),(3359,20,'Buritizal',76,3508207,'N',-20.193148,-47.708860),(3360,20,'Cabrália Paulista',76,3508306,'N',-22.455087,-49.332447),(3361,20,'Cabreúva',76,3508405,'N',-23.312674,-47.133658),(3362,20,'Caçapava',76,3508504,'N',-23.100664,-45.707730),(3363,20,'Cachoeira Paulista',76,3508603,'N',-22.664754,-45.010630),(3364,20,'Caconde',76,3508702,'N',-21.528738,-46.646835),(3365,20,'Cafelândia',76,3508801,'N',-21.809705,-49.600354),(3366,20,'Caiabu',76,3508900,'N',-22.012325,-51.235953),(3367,20,'Caieiras',76,3509007,'N',-23.362116,-46.744101),(3368,20,'Caiuá',76,3509106,'N',-21.829910,-51.986893),(3369,20,'Cajamar',76,3509205,'N',-23.360971,-46.882920),(3370,20,'Cajati',76,3509254,'N',-24.726361,-48.105000),(3371,20,'Cajobi',76,3509304,'N',-20.879093,-48.810122),(3372,20,'Cajuru',76,3509403,'N',-21.274718,-47.304266),(3373,20,'Campina do Monte Alegre',76,3509452,'N',-23.584077,-48.480399),(3374,20,'Campinas',76,3509502,'N',-22.907343,-47.060156),(3375,20,'Campo Limpo Paulista',76,3509601,'N',-23.209396,-46.763819),(3376,20,'Campos do Jordão',76,3509700,'N',-22.740092,-45.589202),(3377,20,'Campos Novos Paulista',76,3509809,'N',-22.599749,-50.001795),(3378,20,'Cananéia',76,3509908,'N',-25.016908,-47.928483),(3379,20,'Canas',76,3509957,'N',-22.690669,-45.056976),(3380,20,'Cândido Mota',76,3510005,'N',-22.746926,-50.388393),(3381,20,'Cândido Rodrigues',76,3510104,'N',-21.322614,-48.634039),(3382,20,'Canitar',76,3510153,'N',-23.009837,-49.785432),(3383,20,'Capão Bonito',76,3510203,'N',-24.006801,-48.351435),(3384,20,'Capela do Alto',76,3510302,'N',-23.469903,-47.736118),(3385,20,'Capivari',76,3510401,'N',-22.999549,-47.502206),(3386,20,'Caraguatatuba',76,3510500,'N',-23.622007,-45.410818),(3387,20,'Carapicuíba',76,3510609,'N',-23.535250,-46.841445),(3388,20,'Cardoso',76,3510708,'N',-20.080992,-49.914942),(3389,20,'Casa Branca',76,3510807,'N',-21.777987,-47.079758),(3390,20,'Cássia dos Coqueiros',76,3510906,'N',-21.285000,-47.167106),(3391,20,'Castilho',76,3511003,'N',-20.872027,-51.489407),(3392,20,'Catanduva',76,3511102,'N',-21.139539,-48.975871),(3393,20,'Catiguá',76,3511201,'N',-21.048580,-49.057742),(3394,20,'Cedral',76,3511300,'N',-20.904232,-49.272842),(3395,20,'Cerqueira César',76,3511409,'N',-23.034797,-49.165330),(3396,20,'Cerquilho',76,3511508,'N',-23.168673,-47.737531),(3397,20,'Cesário Lange',76,3511607,'N',-23.224732,-47.952111),(3398,20,'Charqueada',76,3511706,'N',-22.508882,-47.775700),(3399,20,'Clementina',76,3511904,'N',-21.560310,-50.450349),(3400,20,'Colina',76,3512001,'N',-20.718734,-48.539738),(3401,20,'Colômbia',76,3512100,'N',-20.171559,-48.687484),(3402,20,'Conchal',76,3512209,'N',-22.330076,-47.174376),(3403,20,'Conchas',76,3512308,'N',-23.012958,-48.009892),(3404,20,'Cordeirópolis',76,3512407,'N',-22.481707,-47.458283),(3405,20,'Coroados',76,3512506,'N',-21.354053,-50.287296),(3406,20,'Coronel Macedo',76,3512605,'N',-23.632235,-49.318912),(3407,20,'Corumbataí',76,3512704,'N',-22.218997,-47.626610),(3408,20,'Cosmópolis',76,3512803,'N',-22.645785,-47.196771),(3409,20,'Cosmorama',76,3512902,'N',-20.477035,-49.778860),(3410,20,'Cotia',76,3513009,'N',-23.603514,-46.931846),(3411,20,'Cravinhos',76,3513108,'N',-21.340431,-47.730042),(3412,20,'Cristais Paulista',76,3513207,'N',-20.402492,-47.423806),(3413,20,'Cruzália',76,3513306,'N',-22.745499,-50.793666),(3414,20,'Cruzeiro',76,3513405,'N',-22.577750,-44.961732),(3415,20,'Cubatão',76,3513504,'N',-23.883839,-46.420032),(3416,20,'Cunha',76,3513603,'N',-23.074750,-44.958027),(3417,20,'Descalvado',76,3513702,'N',-21.909083,-47.620664),(3418,20,'Diadema',76,3513801,'N',-23.689295,-46.623381),(3419,20,'Dirce Reis',76,3513850,'N',-20.464413,-50.606056),(3420,20,'Divinolândia',76,3513900,'N',-21.661622,-46.736870),(3421,20,'Dobrada',76,3514007,'N',-21.514804,-48.400243),(3422,20,'Dois Córregos',76,3514106,'N',-22.367316,-48.382676),(3423,20,'Dolcinópolis',76,3514205,'N',-20.122871,-50.515363),(3424,20,'Dourado',76,3514304,'N',-22.113167,-48.316236),(3425,20,'Dracena',76,3514403,'N',-21.486138,-51.534050),(3426,20,'Duartina',76,3514502,'N',-22.414881,-49.405045),(3427,20,'Dumont',76,3514601,'N',-21.233326,-47.970843),(3428,20,'Echaporã',76,3514700,'N',-22.424997,-50.207006),(3429,20,'Eldorado',76,3514809,'N',-24.525387,-48.103228),(3430,20,'Elias Fausto',76,3514908,'N',-23.042537,-47.376774),(3431,20,'Elisiário',76,3514924,'N',-21.164429,-49.110836),(3432,20,'Embaúba',76,3514957,'N',-20.982668,-48.832620),(3433,20,'Embu',76,3515004,'N',-23.647313,-46.850860),(3434,20,'Embu-Guaçu',76,3515103,'N',-23.831829,-46.817109),(3435,20,'Emilianópolis',76,3515129,'N',-21.831309,-51.480431),(3436,20,'Engenheiro Coelho',76,3515152,'N',-22.491190,-47.213080),(3437,20,'Espírito Santo do Pinhal',76,3515186,'N',-22.197054,-46.745514),(3438,20,'Espírito Santo do Turvo',76,3515194,'N',-22.694973,-49.429825),(3439,20,'Estrela d\'Oeste',76,3515202,'N',-20.286082,-50.405467),(3440,20,'Estrela do Norte',76,3515301,'N',-22.490599,-51.664176),(3441,20,'Euclides da Cunha Paulista',76,3515350,'N',-22.554997,-52.590898),(3442,20,'Fartura',76,3515400,'N',-23.388961,-49.512053),(3443,20,'Fernandópolis',76,3515509,'N',-20.282383,-50.248748),(3444,20,'Fernando Prestes',76,3515608,'N',-21.267122,-48.692273),(3445,20,'Fernão',76,3515657,'N',-22.359138,-49.519841),(3446,20,'Ferraz de Vasconcelos',76,3515707,'N',-23.541545,-46.366553),(3447,20,'Flora Rica',76,3515806,'N',-21.676734,-51.382301),(3448,20,'Floreal',76,3515905,'N',-20.674031,-50.145689),(3449,20,'Flórida Paulista',76,3516002,'N',-21.613428,-51.168876),(3450,20,'Florínia',76,3516101,'N',-22.903569,-50.724822),(3451,20,'Franca',76,3516200,'N',-20.536097,-47.402332),(3452,20,'Francisco Morato',76,3516309,'N',-23.275826,-46.732527),(3453,20,'Franco da Rocha',76,3516408,'N',-23.320303,-46.727875),(3454,20,'Gabriel Monteiro',76,3516507,'N',-21.528980,-50.555461),(3455,20,'Gália',76,3516606,'N',-22.294019,-49.552111),(3456,20,'Garça',76,3516705,'N',-22.210709,-49.656530),(3457,20,'Gastão Vidigal',76,3516804,'N',-20.795239,-50.190220),(3458,20,'Gavião Peixoto',76,3516853,'N',-21.840367,-48.495459),(3459,20,'General Salgado',76,3516903,'N',-20.648369,-50.361814),(3460,20,'Getulina',76,3517000,'N',-21.799831,-49.929284),(3461,20,'Glicério',76,3517109,'N',-21.379778,-50.208417),(3462,20,'Guaiçara',76,3517208,'N',-21.622143,-49.798762),(3463,20,'Guaimbê',76,3517307,'N',-21.910921,-49.897178),(3464,20,'Guaíra',76,3517406,'N',-20.320144,-48.314470),(3465,20,'Guapiaçu',76,3517505,'N',-20.796449,-49.219146),(3466,20,'Guapiara',76,3517604,'N',-24.182527,-48.527681),(3467,20,'Guará',76,3517703,'N',-20.427557,-47.824593),(3468,20,'Guaraçaí',76,3517802,'N',-21.032881,-51.209106),(3469,20,'Guaraci',76,3517901,'N',-20.498809,-48.944503),(3470,20,'Guarani d\'Oeste',76,3518008,'N',-20.075706,-50.341534),(3471,20,'Guarantã',76,3518107,'N',-21.895146,-49.594822),(3472,20,'Guararapes',76,3518206,'N',-21.253446,-50.642639),(3473,20,'Guararema',76,3518305,'N',-23.415233,-46.041053),(3474,20,'Guaratinguetá',76,3518404,'N',-22.817425,-45.191600),(3475,20,'Guareí',76,3518503,'N',-23.373140,-48.184538),(3476,20,'Guariba',76,3518602,'N',-21.357996,-48.234057),(3477,20,'Guarujá',76,3518701,'N',-23.995149,-46.249034),(3478,20,'Guarulhos',76,3518800,'N',-23.468506,-46.531084),(3479,20,'Guatapará',76,3518859,'N',-21.491895,-48.037729),(3480,20,'Guzolândia',76,3518909,'N',-20.650169,-50.661460),(3481,20,'Herculândia',76,3519006,'N',-22.003747,-50.385522),(3482,20,'Holambra',76,3519055,'N',-22.641750,-47.059287),(3483,20,'Hortolândia',76,3519071,'N',-22.858395,-47.221097),(3484,20,'Iacanga',76,3519105,'N',-21.891978,-49.016930),(3485,20,'Iacri',76,3519204,'N',-21.855061,-50.689200),(3486,20,'Iaras',76,3519253,'N',-22.871892,-49.156179),(3487,20,'Ibaté',76,3519303,'N',-21.955602,-48.002388),(3488,20,'Ibirá',76,3519402,'N',-21.080537,-49.238862),(3489,20,'Ibirarema',76,3519501,'N',-22.814543,-50.079125),(3490,20,'Ibitinga',76,3519600,'N',-21.757083,-48.827695),(3491,20,'Ibiúna',76,3519709,'N',-23.652633,-47.220491),(3492,20,'Icém',76,3519808,'N',-20.343505,-49.196120),(3493,20,'Iepê',76,3519907,'N',-22.663101,-51.077414),(3494,20,'Igaraçu do Tietê',76,3520004,'N',-22.511149,-48.557066),(3495,20,'Igarapava',76,3520103,'N',-20.039613,-47.751067),(3496,20,'Igaratá',76,3520202,'N',-23.204843,-46.156314),(3497,20,'Iguape',76,3520301,'N',-24.706954,-47.553137),(3498,20,'Ilhabela',76,3520400,'N',-23.788653,-45.354057),(3499,20,'Ilha Comprida',76,3520426,'N',-24.739240,-47.554317),(3500,20,'Ilha Solteira',76,3520442,'N',-20.429373,-51.344891),(3501,20,'Indaiatuba',76,3520509,'N',-23.081646,-47.212309),(3502,20,'Indiana',76,3520608,'N',-22.172093,-51.251759),(3503,20,'Indiaporã',76,3520707,'N',-19.977543,-50.288981),(3504,20,'Inúbia Paulista',76,3520806,'N',-21.769912,-50.964375),(3505,20,'Ipaussu',76,3520905,'N',-23.052913,-49.626807),(3506,20,'Iperó',76,3521002,'N',-23.350277,-47.689894),(3507,20,'Ipeúna',76,3521101,'N',-22.437300,-47.719096),(3508,20,'Ipiguá',76,3521150,'N',-20.661646,-49.388142),(3509,20,'Iporanga',76,3521200,'N',-24.584460,-48.589601),(3510,20,'Ipuã',76,3521309,'N',-20.441483,-48.017385),(3511,20,'Iracemápolis',76,3521408,'N',-22.583037,-47.522247),(3512,20,'Irapuã',76,3521507,'N',-21.276437,-49.408152),(3513,20,'Irapuru',76,3521606,'N',-21.567476,-51.350173),(3514,20,'Itaberá',76,3521705,'N',-23.859811,-49.137133),(3515,20,'Itaí',76,3521804,'N',-23.419055,-49.081032),(3516,20,'Itajobi',76,3521903,'N',-21.315707,-49.054311),(3517,20,'Itaju',76,3522000,'N',-21.984672,-48.805022),(3518,20,'Itanhaém',76,3522109,'N',-24.186121,-46.790991),(3519,20,'Itaóca',76,3522158,'N',-24.642594,-48.842856),(3520,20,'Itapecerica da Serra',76,3522208,'N',-23.715357,-46.850552),(3521,20,'Itapetininga',76,3522307,'N',-23.587873,-48.046143),(3522,20,'Itapeva',76,3522406,'N',-23.983438,-48.877389),(3523,20,'Itapevi',76,3522505,'N',-23.546934,-46.933373),(3524,20,'Itapira',76,3522604,'N',-22.436005,-46.821248),(3525,20,'Itapirapuã Paulista',76,3522653,'N',-24.571553,-49.172166),(3526,20,'Itápolis',76,3522703,'N',-21.594704,-48.813392),(3527,20,'Itaporanga',76,3522802,'N',-23.703500,-49.484396),(3528,20,'Itapuí',76,3522901,'N',-22.232128,-48.718874),(3529,20,'Itapura',76,3523008,'N',-20.639826,-51.509969),(3530,20,'Itaquaquecetuba',76,3523107,'N',-23.476898,-46.351603),(3531,20,'Itararé',76,3523206,'N',-24.112138,-49.336120),(3532,20,'Itariri',76,3523305,'N',-24.292006,-47.175726),(3533,20,'Itatiba',76,3523404,'N',-23.004853,-46.837558),(3534,20,'Itatinga',76,3523503,'N',-23.104273,-48.613380),(3535,20,'Itirapina',76,3523602,'N',-22.253968,-47.819885),(3536,20,'Itirapuã',76,3523701,'N',-20.642427,-47.219953),(3537,20,'Itobi',76,3523800,'N',-21.734902,-46.973419),(3538,20,'Itu',76,3523909,'N',-23.265443,-47.299750),(3539,20,'Itupeva',76,3524006,'N',-23.153410,-47.055701),(3540,20,'Ituverava',76,3524105,'N',-20.336288,-47.780416),(3541,20,'Jaborandi',76,3524204,'N',-20.687224,-48.413445),(3542,20,'Jaboticabal',76,3524303,'N',-21.254471,-48.320350),(3543,20,'Jacareí',76,3524402,'N',-23.304880,-45.969593),(3544,20,'Jaci',76,3524501,'N',-20.884085,-49.573345),(3545,20,'Jacupiranga',76,3524600,'N',-24.698150,-48.004705),(3546,20,'Jaguariúna',76,3524709,'N',-22.706782,-46.982343),(3547,20,'Jales',76,3524808,'N',-20.267853,-50.550356),(3548,20,'Jambeiro',76,3524907,'N',-23.256577,-45.693655),(3549,20,'Jandira',76,3525003,'N',-23.529939,-46.905221),(3550,20,'Jardinópolis',76,3525102,'N',-21.022457,-47.765353),(3551,20,'Jarinu',76,3525201,'N',-23.103063,-46.738271),(3552,20,'Jaú',76,3525300,'N',-22.295791,-48.558141),(3553,20,'Jeriquara',76,3525409,'N',-20.312042,-47.588744),(3554,20,'Joanópolis',76,3525508,'N',-22.930678,-46.273417),(3555,20,'João Ramalho',76,3525607,'N',-22.251046,-50.768535),(3556,20,'José Bonifácio',76,3525706,'N',-21.053719,-49.686283),(3557,20,'Júlio Mesquita',76,3525805,'N',-22.013169,-49.790794),(3558,20,'Jumirim',76,3525854,'N',-23.082560,-47.798174),(3559,20,'Jundiaí',76,3525904,'N',-23.187668,-46.885274),(3560,20,'Junqueirópolis',76,3526001,'N',-21.511276,-51.434012),(3561,20,'Juquiá',76,3526100,'N',-24.320703,-47.635342),(3562,20,'Juquitiba',76,3526209,'N',-23.935689,-47.081594),(3563,20,'Lagoinha',76,3526308,'N',-23.086921,-45.190811),(3564,20,'Laranjal Paulista',76,3526407,'N',-23.054012,-47.833781),(3565,20,'Lavínia',76,3526506,'N',-21.164857,-51.040502),(3566,20,'Lavrinhas',76,3526605,'N',-22.570096,-44.893110),(3567,20,'Leme',76,3526704,'N',-22.185436,-47.388708),(3568,20,'Lençóis Paulista',76,3526803,'N',-22.597507,-48.798682),(3569,20,'Limeira',76,3526902,'N',-22.562194,-47.401940),(3570,20,'Lindóia',76,3527009,'N',-22.520488,-46.661484),(3571,20,'Lins',76,3527108,'N',-21.672347,-49.751423),(3572,20,'Lorena',76,3527207,'N',-22.731693,-45.124248),(3573,20,'Lourdes',76,3527256,'N',-20.965391,-50.226660),(3574,20,'Louveira',76,3527306,'N',-23.086779,-46.946440),(3575,20,'Lucélia',76,3527405,'N',-21.723416,-51.018349),(3576,20,'Lucianópolis',76,3527504,'N',-22.431640,-49.523179),(3577,20,'Luís Antônio',76,3527603,'N',-21.551707,-47.700280),(3578,20,'Luiziânia',76,3527702,'N',-21.673603,-50.327639),(3579,20,'Lupércio',76,3527801,'N',-22.413815,-49.820325),(3580,20,'Lutécia',76,3527900,'N',-22.343444,-50.389327),(3581,20,'Macatuba',76,3528007,'N',-22.505550,-48.711405),(3582,20,'Macaubal',76,3528106,'N',-20.801314,-49.963498),(3583,20,'Macedônia',76,3528205,'N',-20.149998,-50.197628),(3584,20,'Magda',76,3528304,'N',-20.643481,-50.227537),(3585,20,'Mairinque',76,3528403,'N',-23.547458,-47.184483),(3586,20,'Mairiporã',76,3528502,'N',-23.322459,-46.590196),(3587,20,'Manduri',76,3528601,'N',-23.003346,-49.318113),(3588,20,'Marabá Paulista',76,3528700,'N',-22.110331,-51.968467),(3589,20,'Maracaí',76,3528809,'N',-22.610415,-50.668968),(3590,20,'Marapoama',76,3528858,'N',-21.258762,-49.140001),(3591,20,'Mariápolis',76,3528908,'N',-21.794493,-51.182898),(3592,20,'Marília',76,3529005,'N',-22.214933,-49.951646),(3593,20,'Marinópolis',76,3529104,'N',-20.439399,-50.825677),(3594,20,'Martinópolis',76,3529203,'N',-22.147832,-51.170768),(3595,20,'Matão',76,3529302,'N',-21.602995,-48.367748),(3596,20,'Mauá',76,3529401,'N',-23.669335,-46.458262),(3597,20,'Mendonça',76,3529500,'N',-21.180156,-49.582019),(3598,20,'Meridiano',76,3529609,'N',-20.354110,-50.181832),(3599,20,'Mesópolis',76,3529658,'N',-19.967037,-50.622080),(3600,20,'Miguelópolis',76,3529708,'N',-20.177129,-48.029334),(3601,20,'Mineiros do Tietê',76,3529807,'N',-22.411697,-48.451802),(3602,20,'Miracatu',76,3529906,'N',-24.283929,-47.457104),(3603,20,'Mira Estrela',76,3530003,'N',-19.980516,-50.138427),(3604,20,'Mirandópolis',76,3530102,'N',-21.132087,-51.105640),(3605,20,'Mirante do Paranapanema',76,3530201,'N',-22.290559,-51.905794),(3606,20,'Mirassol',76,3530300,'N',-20.817005,-49.512139),(3607,20,'Mirassolândia',76,3530409,'N',-20.616857,-49.465520),(3608,20,'Mococa',76,3530508,'N',-21.468991,-47.007171),(3609,20,'Mogi das Cruzes',76,3530607,'N',-23.522707,-46.196760),(3610,20,'Mogi Guaçu',76,3530706,'N',-22.365720,-46.944474),(3611,20,'Moji Mirim',76,3530805,'N',-22.432696,-46.956367),(3612,20,'Mombuca',76,3530904,'N',-22.926828,-47.567524),(3613,20,'Monções',76,3531001,'N',-20.850326,-50.096306),(3614,20,'Mongaguá',76,3531100,'N',-24.094116,-46.619993),(3615,20,'Monte Alegre do Sul',76,3531209,'N',-22.681129,-46.681194),(3616,20,'Monte Alto',76,3531308,'N',-21.263864,-48.496651),(3617,20,'Monte Aprazível',76,3531407,'N',-20.772140,-49.714116),(3618,20,'Monte Azul Paulista',76,3531506,'N',-20.903841,-48.642971),(3619,20,'Monte Castelo',76,3531605,'N',-21.298959,-51.565493),(3620,20,'Monteiro Lobato',76,3531704,'N',-22.955011,-45.848152),(3621,20,'Monte Mor',76,3531803,'N',-22.945522,-47.313269),(3622,20,'Morro Agudo',76,3531902,'N',-20.732663,-48.057594),(3623,20,'Morungaba',76,3532009,'N',-22.881031,-46.791344),(3624,20,'Motuca',76,3532058,'N',-21.507609,-48.150661),(3625,20,'Murutinga do Sul',76,3532108,'N',-20.994298,-51.277138),(3626,20,'Nantes',76,3532157,'N',-22.620118,-51.238587),(3627,20,'Narandiba',76,3532207,'N',-22.404283,-51.524240),(3628,20,'Natividade da Serra',76,3532306,'N',-23.375787,-45.446400),(3629,20,'Nazaré Paulista',76,3532405,'N',-23.178696,-46.402590),(3630,20,'Neves Paulista',76,3532504,'N',-20.843916,-49.630475),(3631,20,'Nhandeara',76,3532603,'N',-20.694823,-50.040274),(3632,20,'Nipoã',76,3532702,'N',-20.913902,-49.780899),(3633,20,'Nova Aliança',76,3532801,'N',-21.013735,-49.507138),(3634,20,'Nova Campina',76,3532827,'N',-24.123210,-48.905738),(3635,20,'Nova Canaã Paulista',76,3532843,'N',-20.386895,-50.948052),(3636,20,'Nova Castilho',76,3532868,'N',-20.765655,-50.343906),(3637,20,'Nova Europa',76,3532900,'N',-21.778923,-48.562140),(3638,20,'Nova Granada',76,3533007,'N',-20.533154,-49.320093),(3639,20,'Nova Guataporanga',76,3533106,'N',-21.329937,-51.649833),(3640,20,'Nova Independência',76,3533205,'N',-21.104542,-51.490447),(3641,20,'Novais',76,3533254,'N',-20.990358,-48.917064),(3642,20,'Nova Luzitânia',76,3533304,'N',-20.856611,-50.265827),(3643,20,'Nova Odessa',76,3533403,'N',-22.782795,-47.293635),(3644,20,'Novo Horizonte',76,3533502,'N',-21.468475,-49.221750),(3645,20,'Nuporanga',76,3533601,'N',-20.734000,-47.749105),(3646,20,'Ocauçu',76,3533700,'N',-22.438860,-49.927373),(3647,20,'Óleo',76,3533809,'N',-22.944585,-49.340951),(3648,20,'Olímpia',76,3533908,'N',-20.737284,-48.913492),(3649,20,'Onda Verde',76,3534005,'N',-20.612722,-49.299215),(3650,20,'Oriente',76,3534104,'N',-22.148599,-50.093585),(3651,20,'Orindiúva',76,3534203,'N',-20.180197,-49.351818),(3652,20,'Orlândia',76,3534302,'N',-20.720421,-47.886384),(3653,20,'Osasco',76,3534401,'N',-23.533612,-46.788810),(3654,20,'Oscar Bressane',76,3534500,'N',-22.317882,-50.284126),(3655,20,'Osvaldo Cruz',76,3534609,'N',-21.797084,-50.873139),(3656,20,'Ourinhos',76,3534708,'N',-22.977268,-49.868580),(3657,20,'Ouroeste',76,3534757,'N',-19.995592,-50.377585),(3658,20,'Ouro Verde',76,3534807,'N',-21.491166,-51.699321),(3659,20,'Pacaembu',76,3534906,'N',-21.560078,-51.265202),(3660,20,'Palestina',76,3535002,'N',-20.390587,-49.433782),(3661,20,'Palmares Paulista',76,3535101,'N',-21.082471,-48.801285),(3662,20,'Palmeira d\'Oeste',76,3535200,'N',-20.416217,-50.765988),(3663,20,'Palmital',76,3535309,'N',-22.785592,-50.218791),(3664,20,'Panorama',76,3535408,'N',-21.360184,-51.856574),(3665,20,'Paraguaçu Paulista',76,3535507,'N',-22.417711,-50.575029),(3666,20,'Paraibuna',76,3535606,'N',-23.386262,-45.662864),(3667,20,'Paraíso',76,3535705,'N',-21.015793,-48.772529),(3668,20,'Paranapanema',76,3535804,'N',-23.386928,-48.723677),(3669,20,'Paranapuã',76,3535903,'N',-20.099806,-50.586719),(3670,20,'Parapuã',76,3536000,'N',-21.779839,-50.793844),(3671,20,'Pardinho',76,3536109,'N',-23.080318,-48.372877),(3672,20,'Pariquera-Açu',76,3536208,'N',-24.712547,-47.879998),(3673,20,'Parisi',76,3536257,'N',-20.302191,-50.012618),(3674,20,'Patrocínio Paulista',76,3536307,'N',-20.641153,-47.283060),(3675,20,'Paulicéia',76,3536406,'N',-21.309276,-51.847140),(3676,20,'Paulínia',76,3536505,'N',-22.759922,-47.154386),(3677,20,'Paulistânia',76,3536570,'N',-22.574301,-49.399038),(3678,20,'Paulo de Faria',76,3536604,'N',-20.029300,-49.399552),(3679,20,'Pederneiras',76,3536703,'N',-22.355492,-48.779681),(3680,20,'Pedra Bela',76,3536802,'N',-22.791384,-46.442031),(3681,20,'Pedranópolis',76,3536901,'N',-20.247647,-50.112390),(3682,20,'Pedregulho',76,3537008,'N',-20.256871,-47.481795),(3683,20,'Pedreira',76,3537107,'N',-22.743771,-46.897802),(3684,20,'Pedrinhas Paulista',76,3537156,'N',-22.811215,-50.792166),(3685,20,'Pedro de Toledo',76,3537206,'N',-24.272801,-47.229076),(3686,20,'Penápolis',76,3537305,'N',-21.418383,-50.073036),(3687,20,'Pereira Barreto',76,3537404,'N',-20.636669,-51.106661),(3688,20,'Pereiras',76,3537503,'N',-23.072852,-47.967867),(3689,20,'Peruíbe',76,3537602,'N',-24.319509,-46.997302),(3690,20,'Piacatu',76,3537701,'N',-21.595392,-50.599426),(3691,20,'Piedade',76,3537800,'N',-23.714202,-47.418015),(3692,20,'Pilar do Sul',76,3537909,'N',-23.814612,-47.715508),(3693,20,'Pindamonhangaba',76,3538006,'N',-22.926669,-45.462049),(3694,20,'Pindorama',76,3538105,'N',-21.185988,-48.905638),(3695,20,'Pinhalzinho',76,3538204,'N',-22.780796,-46.590577),(3696,20,'Piquerobi',76,3538303,'N',-21.884990,-51.731627),(3697,20,'Piquete',76,3538501,'N',-22.611167,-45.183569),(3698,20,'Piracaia',76,3538600,'N',-23.050499,-46.358755),(3699,20,'Piracicaba',76,3538709,'N',-22.723722,-47.646846),(3700,20,'Piraju',76,3538808,'N',-23.192991,-49.383974),(3701,20,'Pirajuí',76,3538907,'N',-21.993447,-49.456642),(3702,20,'Pirangi',76,3539004,'N',-21.099632,-48.669842),(3703,20,'Pirapora do Bom Jesus',76,3539103,'N',-23.397523,-47.000968),(3704,20,'Pirapozinho',76,3539202,'N',-22.276675,-51.499584),(3705,20,'Pirassununga',76,3539301,'N',-21.994049,-47.425173),(3706,20,'Piratininga',76,3539400,'N',-22.412066,-49.137252),(3707,20,'Pitangueiras',76,3539509,'N',-21.010999,-48.222266),(3708,20,'Planalto',76,3539608,'N',-21.032328,-49.925720),(3709,20,'Platina',76,3539707,'N',-22.633457,-50.208935),(3710,20,'Poá',76,3539806,'N',-23.528627,-46.346220),(3711,20,'Poloni',76,3539905,'N',-20.785858,-49.813895),(3712,20,'Pompéia',76,3540002,'N',-22.106146,-50.176028),(3713,20,'Pongaí',76,3540101,'N',-21.736176,-49.360870),(3714,20,'Pontal',76,3540200,'N',-21.025710,-48.037837),(3715,20,'Pontalinda',76,3540259,'N',-20.440834,-50.524602),(3716,20,'Pontes Gestal',76,3540309,'N',-20.182363,-49.703552),(3717,20,'Populina',76,3540408,'N',-19.944333,-50.536853),(3718,20,'Porangaba',76,3540507,'N',-23.175387,-48.126767),(3719,20,'Porto Feliz',76,3540606,'N',-23.214412,-47.524597),(3720,20,'Porto Ferreira',76,3540705,'N',-21.858363,-47.481410),(3721,20,'Potim',76,3540754,'N',-22.840620,-45.255974),(3722,20,'Potirendaba',76,3540804,'N',-21.045095,-49.378183),(3723,20,'Pracinha',76,3540853,'N',-21.851928,-51.087077),(3724,20,'Pradópolis',76,3540903,'N',-21.358049,-48.065583),(3725,20,'Praia Grande',76,3541000,'N',-24.003022,-46.412050),(3726,20,'Pratânia',76,3541059,'N',-22.811468,-48.664686),(3727,20,'Presidente Alves',76,3541109,'N',-22.103674,-49.439149),(3728,20,'Presidente Bernardes',76,3541208,'N',-22.008991,-51.557570),(3729,20,'Presidente Epitácio',76,3541307,'N',-21.768782,-52.115276),(3730,20,'Presidente Prudente',76,3541406,'N',-22.122744,-51.386766),(3731,20,'Presidente Venceslau',76,3541505,'N',-21.875940,-51.840259),(3732,20,'Promissão',76,3541604,'N',-21.538867,-49.857735),(3733,20,'Quadra',76,3541653,'N',-23.301575,-48.052685),(3734,20,'Quatá',76,3541703,'N',-22.249405,-50.697947),(3735,20,'Queiroz',76,3541802,'N',-21.799094,-50.240928),(3736,20,'Queluz',76,3541901,'N',-22.541844,-44.778477),(3737,20,'Quintana',76,3542008,'N',-22.071920,-50.311595),(3738,20,'Rafard',76,3542107,'N',-23.011556,-47.531161),(3739,20,'Rancharia',76,3542206,'N',-22.228451,-50.890212),(3740,20,'Redenção da Serra',76,3542305,'N',-23.272655,-45.536496),(3741,20,'Regente Feijó',76,3542404,'N',-22.220234,-51.303149),(3742,20,'Reginópolis',76,3542503,'N',-21.886761,-49.229798),(3743,20,'Registro',76,3542602,'N',-24.494251,-47.841055),(3744,20,'Restinga',76,3542701,'N',-20.603803,-47.483090),(3745,20,'Ribeira',76,3542800,'N',-24.657489,-49.008302),(3746,20,'Ribeirão Bonito',76,3542909,'N',-22.064935,-48.177706),(3747,20,'Ribeirão Branco',76,3543006,'N',-24.220268,-48.765477),(3748,20,'Ribeirão Corrente',76,3543105,'N',-20.460660,-47.590705),(3749,20,'Ribeirão do Sul',76,3543204,'N',-22.785735,-49.934168),(3750,20,'Ribeirão dos Índios',76,3543238,'N',-21.838500,-51.600635),(3751,20,'Ribeirão Grande',76,3543253,'N',-24.101200,-48.367071),(3752,20,'Ribeirão Pires',76,3543303,'N',-23.707423,-46.415344),(3753,20,'Ribeirão Preto',76,3543402,'N',-21.184835,-47.805476),(3754,20,'Riversul',76,3543501,'N',-23.831335,-49.436697),(3755,20,'Rifaina',76,3543600,'N',-20.082932,-47.429199),(3756,20,'Rincão',76,3543709,'N',-21.589189,-48.072330),(3757,20,'Rinópolis',76,3543808,'N',-21.727891,-50.724838),(3758,20,'Rio Claro',76,3543907,'N',-22.412512,-47.563533),(3759,20,'Rio das Pedras',76,3544004,'N',-22.842861,-47.604485),(3760,20,'Rio Grande da Serra',76,3544103,'N',-23.744515,-46.393693),(3761,20,'Riolândia',76,3544202,'N',-19.977734,-49.681159),(3762,20,'Rosana',76,3544251,'N',-22.581175,-53.058654),(3763,20,'Roseira',76,3544301,'N',-22.896819,-45.309378),(3764,20,'Rubiácea',76,3544400,'N',-21.300524,-50.726908),(3765,20,'Rubinéia',76,3544509,'N',-20.171775,-50.997485),(3766,20,'Sabino',76,3544608,'N',-21.460214,-49.580819),(3767,20,'Sagres',76,3544707,'N',-21.881139,-50.957155),(3768,20,'Sales',76,3544806,'N',-21.344453,-49.498769),(3769,20,'Sales Oliveira',76,3544905,'N',-20.777882,-47.842349),(3770,20,'Salesópolis',76,3545001,'N',-23.531793,-45.847177),(3771,20,'Salmourão',76,3545100,'N',-21.625363,-50.860672),(3772,20,'Saltinho',76,3545159,'N',-22.843367,-47.678288),(3773,20,'Salto',76,3545209,'N',-23.204074,-47.292416),(3774,20,'Salto de Pirapora',76,3545308,'N',-23.649132,-47.574680),(3775,20,'Salto Grande',76,3545407,'N',-22.890507,-49.981078),(3776,20,'Sandovalina',76,3545506,'N',-22.458542,-51.759952),(3777,20,'Santa Adélia',76,3545605,'N',-21.243270,-48.805948),(3778,20,'Santa Albertina',76,3545704,'N',-20.030703,-50.730564),(3779,20,'Santa Bárbara d\'Oeste',76,3545803,'N',-22.755394,-47.413955),(3780,20,'Santa Branca',76,3546009,'N',-23.395758,-45.887648),(3781,20,'Santa Clara d\'Oeste',76,3546108,'N',-20.091392,-50.930221),(3782,20,'Santa Cruz da Conceição',76,3546207,'N',-22.127682,-47.457164),(3783,20,'Santa Cruz da Esperança',76,3546256,'N',-21.291168,-47.433781),(3784,20,'Santa Cruz das Palmeiras',76,3546306,'N',-21.827568,-47.249414),(3785,20,'Santa Cruz do Rio Pardo',76,3546405,'N',-22.905723,-49.624609),(3786,20,'Santa Ernestina',76,3546504,'N',-21.462922,-48.393650),(3787,20,'Santa Fé do Sul',76,3546603,'N',-20.211693,-50.926777),(3788,20,'Santa Gertrudes',76,3546702,'N',-22.455327,-47.530709),(3789,20,'Santa Isabel',76,3546801,'N',-23.318089,-46.227013),(3790,20,'Santa Lúcia',76,3546900,'N',-21.686568,-48.085336),(3791,20,'Santa Maria da Serra',76,3547007,'N',-22.569410,-48.159014),(3792,20,'Santa Mercedes',76,3547106,'N',-21.346911,-51.758974),(3793,20,'Santana da Ponte Pensa',76,3547205,'N',-20.252602,-50.798404),(3794,20,'Santana de Parnaíba',76,3547304,'N',-23.449453,-46.922093),(3795,20,'Santa Rita d\'Oeste',76,3547403,'N',-20.141801,-50.830947),(3796,20,'Santa Rita do Passa Quatro',76,3547502,'N',-21.707144,-47.478981),(3797,20,'Santa Rosa de Viterbo',76,3547601,'N',-21.485273,-47.367269),(3798,20,'Santa Salete',76,3547650,'N',-20.243845,-50.688462),(3799,20,'Santo Anastácio',76,3547700,'N',-21.973021,-51.649892),(3800,20,'Santo André',76,3547809,'N',-23.657510,-46.530874),(3801,20,'Santo Antônio da Alegria',76,3547908,'N',-21.089964,-47.155931),(3802,20,'Santo Antônio de Posse',76,3548005,'N',-22.604797,-46.915910),(3803,20,'Santo Antônio do Aracanguá',76,3548054,'N',-20.932497,-50.496735),(3804,20,'Santo Antônio do Jardim',76,3548104,'N',-22.118523,-46.682307),(3805,20,'Santo Antônio do Pinhal',76,3548203,'N',-22.831193,-45.679279),(3806,20,'Santo Expedito',76,3548302,'N',-21.846805,-51.390921),(3807,20,'Santópolis do Aguapeí',76,3548401,'N',-21.639312,-50.504692),(3808,20,'Santos',76,3548500,'N',-23.933738,-46.331371),(3809,20,'São Bento do Sapucaí',76,3548609,'N',-22.685287,-45.737139),(3810,20,'São Bernardo do Campo',76,3548708,'N',-23.710305,-46.550257),(3811,20,'São Caetano do Sul',76,3548807,'N',-23.614705,-46.571515),(3812,20,'São Carlos',76,3548906,'N',-22.015999,-47.889238),(3813,20,'São Francisco',76,3549003,'N',-20.358414,-50.700097),(3814,20,'São João da Boa Vista',76,3549102,'N',-21.972011,-46.796351),(3815,20,'São João das Duas Pontes',76,3549201,'N',-20.388772,-50.380722),(3816,20,'São João de Iracema',76,3549250,'N',-20.512615,-50.351598),(3817,20,'São João do Pau d\'Alho',76,3549300,'N',-21.268364,-51.666665),(3818,20,'São Joaquim da Barra',76,3549409,'N',-20.583166,-47.863268),(3819,20,'São José da Bela Vista',76,3549508,'N',-20.594420,-47.640990),(3820,20,'São José do Barreiro',76,3549607,'N',-22.646490,-44.578341),(3821,20,'São José do Rio Pardo',76,3549706,'N',-21.596103,-46.888266),(3822,20,'São José do Rio Preto',76,3549805,'N',-20.812637,-49.381348),(3823,20,'São José dos Campos',76,3549904,'N',-23.184062,-45.884175),(3824,20,'São Lourenço da Serra',76,3549953,'N',-23.849086,-46.941750),(3825,20,'São Luís do Paraitinga',76,3550001,'N',-23.221872,-45.309545),(3826,20,'São Manuel',76,3550100,'N',-22.736460,-48.568763),(3827,20,'São Miguel Arcanjo',76,3550209,'N',-23.879490,-47.995589),(3828,20,'São Paulo',76,3550308,'S',-23.567387,-46.570383),(3829,20,'São Pedro',76,3550407,'N',-22.548888,-47.914033),(3830,20,'São Pedro do Turvo',76,3550506,'N',-22.751256,-49.741476),(3831,20,'São Roque',76,3550605,'N',-23.530359,-47.135423),(3832,20,'São Sebastião',76,3550704,'N',-23.806688,-45.402680),(3833,20,'São Sebastião da Grama',76,3550803,'N',-21.708421,-46.824128),(3834,20,'São Simão',76,3550902,'N',-21.479723,-47.553353),(3835,20,'São Vicente',76,3551009,'N',-23.967373,-46.384491),(3836,20,'Sarapuí',76,3551108,'N',-23.641507,-47.827196),(3837,20,'Sarutaiá',76,3551207,'N',-23.274496,-49.483129),(3838,20,'Sebastianópolis do Sul',76,3551306,'N',-20.656880,-49.920922),(3839,20,'Serra Azul',76,3551405,'N',-21.310288,-47.563250),(3840,20,'Serrana',76,3551504,'N',-21.209478,-47.597762),(3841,20,'Serra Negra',76,3551603,'N',-22.612694,-46.701791),(3842,20,'Sertãozinho',76,3551702,'N',-21.137022,-47.991148),(3843,20,'Sete Barras',76,3551801,'N',-24.388604,-47.927217),(3844,20,'Severínia',76,3551900,'N',-20.809386,-48.801534),(3845,20,'Silveiras',76,3552007,'N',-22.661424,-44.848996),(3846,20,'Socorro',76,3552106,'N',-22.592030,-46.529212),(3847,20,'Sorocaba',76,3552205,'N',-23.499323,-47.457853),(3848,20,'Sud Mennucci',76,3552304,'N',-20.692943,-50.920527),(3849,20,'Sumaré',76,3552403,'N',-22.822145,-47.265803),(3850,20,'Suzano',76,3552502,'N',-23.536828,-46.307810),(3851,20,'Suzanápolis',76,3552551,'N',-20.503344,-51.028223),(3852,20,'Tabapuã',76,3552601,'N',-20.957601,-49.032621),(3853,20,'Tabatinga',76,3552700,'N',-21.732515,-48.686788),(3854,20,'Taboão da Serra',76,3552809,'N',-23.623329,-46.785780),(3855,20,'Taciba',76,3552908,'N',-22.388266,-51.284773),(3856,20,'Taguaí',76,3553005,'N',-23.449814,-49.405771),(3857,20,'Taiaçu',76,3553104,'N',-21.146736,-48.511955),(3858,20,'Taiúva',76,3553203,'N',-21.129556,-48.453935),(3859,20,'Tambaú',76,3553302,'N',-21.703033,-47.271616),(3860,20,'Tanabi',76,3553401,'N',-20.625112,-49.648820),(3861,20,'Tapiraí',76,3553500,'N',-23.973148,-47.505288),(3862,20,'Tapiratiba',76,3553609,'N',-21.471885,-46.745515),(3863,20,'Taquaral',76,3553658,'N',-21.072609,-48.408655),(3864,20,'Taquaritinga',76,3553708,'N',-21.410008,-48.506742),(3865,20,'Taquarituba',76,3553807,'N',-23.532061,-49.244089),(3866,20,'Taquarivaí',76,3553856,'N',-23.919257,-48.697329),(3867,20,'Tarabai',76,3553906,'N',-22.301668,-51.559573),(3868,20,'Tarumã',76,3553955,'N',-22.744771,-50.576565),(3869,20,'Tatuí',76,3554003,'N',-23.348577,-47.849464),(3870,20,'Taubaté',76,3554102,'N',-23.026556,-45.556609),(3871,20,'Tejupá',76,3554201,'N',-23.340592,-49.377442),(3872,20,'Teodoro Sampaio',76,3554300,'N',-22.531007,-52.171195),(3873,20,'Terra Roxa',76,3554409,'N',-20.787842,-48.341536),(3874,20,'Tietê',76,3554508,'N',-23.097889,-47.711473),(3875,20,'Timburi',76,3554607,'N',-23.202363,-49.603543),(3876,20,'Torre de Pedra',76,3554656,'N',-23.243770,-48.198239),(3877,20,'Torrinha',76,3554706,'N',-22.427494,-48.172158),(3878,20,'Trabiju',76,3554755,'N',-22.038074,-48.340183),(3879,20,'Tremembé',76,3554805,'N',-22.960415,-45.550747),(3880,20,'Três Fronteiras',76,3554904,'N',-20.228013,-50.884883),(3881,20,'Tuiuti',76,3554953,'N',-22.814756,-46.697024),(3882,20,'Tupã',76,3555000,'N',-21.934822,-50.514006),(3883,20,'Tupi Paulista',76,3555109,'N',-21.386395,-51.576721),(3884,20,'Turiúba',76,3555208,'N',-20.950235,-50.109442),(3885,20,'Turmalina',76,3555307,'N',-20.051269,-50.477729),(3886,20,'Ubarana',76,3555356,'N',-21.162471,-49.719672),(3887,20,'Ubatuba',76,3555406,'N',-23.435965,-45.072091),(3888,20,'Ubirajara',76,3555505,'N',-22.523835,-49.663272),(3889,20,'Uchoa',76,3555604,'N',-20.953346,-49.177670),(3890,20,'União Paulista',76,3555703,'N',-20.887769,-49.897394),(3891,20,'Urânia',76,3555802,'N',-20.246264,-50.641800),(3892,20,'Uru',76,3555901,'N',-21.786314,-49.283202),(3893,20,'Urupês',76,3556008,'N',-21.200419,-49.290730),(3894,20,'Valentim Gentil',76,3556107,'N',-20.423370,-50.085868),(3895,20,'Valinhos',76,3556206,'N',-22.971244,-46.996630),(3896,20,'Valparaíso',76,3556305,'N',-21.225575,-50.869308),(3897,20,'Vargem',76,3556354,'N',-22.884880,-46.411600),(3898,20,'Vargem Grande do Sul',76,3556404,'N',-21.835866,-46.895609),(3899,20,'Vargem Grande Paulista',76,3556453,'N',-23.615303,-47.019648),(3900,20,'Várzea Paulista',76,3556503,'N',-23.214467,-46.829890),(3901,20,'Vera Cruz',76,3556602,'N',-22.224748,-49.821782),(3902,20,'Vinhedo',76,3556701,'N',-23.030538,-46.976476),(3903,20,'Viradouro',76,3556800,'N',-20.872314,-48.296663),(3904,20,'Vista Alegre do Alto',76,3556909,'N',-21.167154,-48.630171),(3905,20,'Vitória Brasil',76,3556958,'N',-20.198739,-50.480807),(3906,20,'Votorantim',76,3557006,'N',-23.541871,-47.449738),(3907,20,'Votuporanga',76,3557105,'N',-20.419470,-49.974672),(3908,20,'Zacarias',76,3557154,'N',-21.050110,-50.055740),(3909,20,'Chavantes',76,3557204,'N',-23.032006,-49.713936),(3910,20,'Estiva Gerbi',76,3557303,'N',-22.274589,-46.953603),(3911,21,'Abatiá',76,4100103,'N',-23.300494,-50.312527),(3912,21,'Adrianópolis',76,4100202,'N',-24.661690,-48.991755),(3913,21,'Agudos do Sul',76,4100301,'N',-25.990618,-49.338702),(3914,21,'Almirante Tamandaré',76,4100400,'N',-25.313378,-49.300320),(3915,21,'Altamira do Paraná',76,4100459,'N',-24.801000,-52.709807),(3916,21,'Altônia',76,4100509,'N',-23.870881,-53.891974),(3917,21,'Alto Paraná',76,4100608,'N',-23.127121,-52.321682),(3918,21,'Alto Piquiri',76,4100707,'N',-24.019013,-53.441249),(3919,21,'Alvorada do Sul',76,4100806,'N',-22.780379,-51.229216),(3920,21,'Amaporã',76,4100905,'N',-23.097370,-52.786787),(3921,21,'Ampére',76,4101002,'N',-25.917068,-53.473257),(3922,21,'Anahy',76,4101051,'N',-24.647582,-53.133320),(3923,21,'Andirá',76,4101101,'N',-23.051752,-50.226408),(3924,21,'Ângulo',76,4101150,'N',-23.192904,-51.917365),(3925,21,'Antonina',76,4101200,'N',-25.430166,-48.712900),(3926,21,'Antônio Olinto',76,4101309,'N',-25.986706,-50.197947),(3927,21,'Apucarana',76,4101408,'N',-23.551593,-51.459985),(3928,21,'Arapongas',76,4101507,'N',-23.413517,-51.438280),(3929,21,'Arapoti',76,4101606,'N',-24.146569,-49.824829),(3930,21,'Arapuã',76,4101655,'N',-24.308702,-51.791318),(3931,21,'Araruna',76,4101705,'N',-23.928201,-52.499618),(3932,21,'Araucária',76,4101804,'N',-25.591645,-49.401940),(3933,21,'Ariranha do Ivaí',76,4101853,'N',-24.383289,-51.587918),(3934,21,'Assaí',76,4101903,'N',-23.372718,-50.841623),(3935,21,'Assis Chateaubriand',76,4102000,'N',-24.408530,-53.521237),(3936,21,'Astorga',76,4102109,'N',-23.236712,-51.669679),(3937,21,'Atalaia',76,4102208,'N',-23.151587,-52.055701),(3938,21,'Balsa Nova',76,4102307,'N',-25.578498,-49.631756),(3939,21,'Bandeirantes',76,4102406,'N',-23.092481,-50.371873),(3940,21,'Barbosa Ferraz',76,4102505,'N',-24.027715,-52.007117),(3941,21,'Barracão',76,4102604,'N',-26.252603,-53.635000),(3942,21,'Barra do Jacaré',76,4102703,'N',-23.120593,-50.187737),(3943,21,'Bela Vista da Caroba',76,4102752,'N',-25.879493,-53.666043),(3944,21,'Bela Vista do Paraíso',76,4102802,'N',-22.992088,-51.194145),(3945,21,'Bituruna',76,4102901,'N',-26.160794,-51.556525),(3946,21,'Boa Esperança',76,4103008,'N',-24.239493,-52.792777),(3947,21,'Boa Esperança do Iguaçu',76,4103024,'N',-25.635873,-53.217160),(3948,21,'Boa Ventura de São Roque',76,4103040,'N',-24.878518,-51.539374),(3949,21,'Boa Vista da Aparecida',76,4103057,'N',-25.430405,-53.411736),(3950,21,'Bocaiúva do Sul',76,4103107,'N',-25.214902,-49.105787),(3951,21,'Bom Jesus do Sul',76,4103156,'N',-26.192875,-53.599600),(3952,21,'Bom Sucesso',76,4103206,'N',-23.707437,-51.764465),(3953,21,'Bom Sucesso do Sul',76,4103222,'N',-26.074537,-52.831976),(3954,21,'Borrazópolis',76,4103305,'N',-23.937854,-51.584409),(3955,21,'Braganey',76,4103354,'N',-24.814895,-53.121074),(3956,21,'Brasilândia do Sul',76,4103370,'N',-24.193846,-53.524042),(3957,21,'Cafeara',76,4103404,'N',-22.788235,-51.715006),(3958,21,'Cafelândia',76,4103453,'N',-24.615667,-53.324916),(3959,21,'Cafezal do Sul',76,4103479,'N',-23.904704,-53.511065),(3960,21,'Califórnia',76,4103503,'N',-23.666144,-51.358086),(3961,21,'Cambará',76,4103602,'N',-23.041266,-50.077571),(3962,21,'Cambé',76,4103701,'N',-23.281632,-51.277728),(3963,21,'Cambira',76,4103800,'N',-23.600612,-51.581631),(3964,21,'Campina da Lagoa',76,4103909,'N',-24.594957,-52.813564),(3965,21,'Campina do Simão',76,4103958,'N',-25.102578,-51.814787),(3966,21,'Campina Grande do Sul',76,4104006,'N',-25.303248,-49.053466),(3967,21,'Campo Bonito',76,4104055,'N',-25.039634,-52.996870),(3968,21,'Campo do Tenente',76,4104105,'N',-25.981006,-49.690377),(3969,21,'Campo Largo',76,4104204,'N',-25.459491,-49.528841),(3970,21,'Campo Magro',76,4104253,'N',-25.367957,-49.427665),(3971,21,'Campo Mourão',76,4104303,'N',-24.041223,-52.381115),(3972,21,'Cândido de Abreu',76,4104402,'N',-24.564669,-51.332581),(3973,21,'Candói',76,4104428,'N',-25.567932,-52.055446),(3974,21,'Cantagalo',76,4104451,'N',-25.374317,-52.126688),(3975,21,'Capanema',76,4104501,'N',-25.682977,-53.800179),(3976,21,'Capitão Leônidas Marques',76,4104600,'N',-25.479468,-53.617211),(3977,21,'Carambeí',76,4104659,'N',-24.950873,-50.113092),(3978,21,'Carlópolis',76,4104709,'N',-23.427724,-49.718724),(3979,21,'Cascavel',76,4104808,'N',-24.953798,-53.459722),(3980,21,'Castro',76,4104907,'N',-24.795418,-50.002811),(3981,21,'Catanduvas',76,4105003,'N',-25.196493,-53.153706),(3982,21,'Centenário do Sul',76,4105102,'N',-22.814982,-51.593530),(3983,21,'Cerro Azul',76,4105201,'N',-24.818947,-49.260317),(3984,21,'Céu Azul',76,4105300,'N',-25.149761,-53.857269),(3985,21,'Chopinzinho',76,4105409,'N',-25.854684,-52.533960),(3986,21,'Cianorte',76,4105508,'N',-23.653813,-52.609151),(3987,21,'Cidade Gaúcha',76,4105607,'N',-23.374197,-52.940525),(3988,21,'Clevelândia',76,4105706,'N',-26.405205,-52.352986),(3989,21,'Colombo',76,4105805,'N',-25.294340,-49.227438),(3990,21,'Colorado',76,4105904,'N',-22.837898,-51.974416),(3991,21,'Congonhinhas',76,4106001,'N',-23.546902,-50.554428),(3992,21,'Conselheiro Mairinck',76,4106100,'N',-23.621562,-50.171773),(3993,21,'Contenda',76,4106209,'N',-25.680766,-49.531612),(3994,21,'Corbélia',76,4106308,'N',-24.799650,-53.296528),(3995,21,'Cornélio Procópio',76,4106407,'N',-23.183258,-50.651484),(3996,21,'Coronel Domingos Soares',76,4106456,'N',-26.226548,-52.034539),(3997,21,'Coronel Vivida',76,4106506,'N',-25.978153,-52.567087),(3998,21,'Corumbataí do Sul',76,4106555,'N',-24.097412,-52.124185),(3999,21,'Cruzeiro do Iguaçu',76,4106571,'N',-25.616569,-53.126823),(4000,21,'Cruzeiro do Oeste',76,4106605,'N',-23.776905,-53.081822),(4001,21,'Cruzeiro do Sul',76,4106704,'N',-22.965175,-52.163978),(4002,21,'Cruz Machado',76,4106803,'N',-26.017269,-51.347710),(4003,21,'Cruzmaltina',76,4106852,'N',-23.993328,-51.444247),(4004,21,'Curitiba',76,4106902,'S',-25.432956,-49.271848),(4005,21,'Curiúva',76,4107009,'N',-24.035826,-50.459406),(4006,21,'Diamante do Norte',76,4107108,'N',-22.657206,-52.864111),(4007,21,'Diamante do Sul',76,4107124,'N',-25.035192,-52.688191),(4008,21,'Diamante D\'Oeste',76,4107157,'N',-24.942162,-54.103626),(4009,21,'Dois Vizinhos',76,4107207,'N',-25.746010,-53.054836),(4010,21,'Douradina',76,4107256,'N',-23.381907,-53.296449),(4011,21,'Doutor Camargo',76,4107306,'N',-23.555901,-52.222721),(4012,21,'Enéas Marques',76,4107405,'N',-25.940756,-53.166185),(4013,21,'Engenheiro Beltrão',76,4107504,'N',-23.801144,-52.260035),(4014,21,'Esperança Nova',76,4107520,'N',-23.724655,-53.810495),(4015,21,'Entre Rios do Oeste',76,4107538,'N',-24.708142,-54.244894),(4016,21,'Espigão Alto do Iguaçu',76,4107546,'N',-25.426670,-52.838213),(4017,21,'Farol',76,4107553,'N',-24.099095,-52.626215),(4018,21,'Faxinal',76,4107603,'N',-24.003927,-51.320106),(4019,21,'Fazenda Rio Grande',76,4107652,'N',-25.641400,-49.323293),(4020,21,'Fênix',76,4107702,'N',-23.920695,-51.984464),(4021,21,'Fernandes Pinheiro',76,4107736,'N',-25.412242,-50.547414),(4022,21,'Figueira',76,4107751,'N',-23.843411,-50.409201),(4023,21,'Floraí',76,4107801,'N',-23.319846,-52.302984),(4024,21,'Flor da Serra do Sul',76,4107850,'N',-26.255299,-53.308598),(4025,21,'Floresta',76,4107900,'N',-23.610267,-52.083085),(4026,21,'Florestópolis',76,4108007,'N',-22.859104,-51.383823),(4027,21,'Flórida',76,4108106,'N',-23.087802,-51.955828),(4028,21,'Formosa do Oeste',76,4108205,'N',-24.294197,-53.316161),(4029,21,'Foz do Iguaçu',76,4108304,'N',-25.542493,-54.587102),(4030,21,'Francisco Alves',76,4108320,'N',-24.067575,-53.844016),(4031,21,'Francisco Beltrão',76,4108403,'N',-26.078450,-53.056136),(4032,21,'Foz do Jordão',76,4108452,'N',-25.733440,-52.125628),(4033,21,'General Carneiro',76,4108502,'N',-26.425803,-51.316859),(4034,21,'Godoy Moreira',76,4108551,'N',-24.192859,-51.924368),(4035,21,'Goioerê',76,4108601,'N',-24.189188,-53.027319),(4036,21,'Goioxim',76,4108650,'N',-25.201540,-52.005588),(4037,21,'Grandes Rios',76,4108700,'N',-24.146194,-51.508742),(4038,21,'Guaíra',76,4108809,'N',-24.085275,-54.246758),(4039,21,'Guairaçá',76,4108908,'N',-22.938244,-52.691040),(4040,21,'Guamiranga',76,4108957,'N',-25.189909,-50.809876),(4041,21,'Guapirama',76,4109005,'N',-23.516640,-50.042614),(4042,21,'Guaporema',76,4109104,'N',-23.342984,-52.778244),(4043,21,'Guaraci',76,4109203,'N',-22.974429,-51.650385),(4044,21,'Guaraniaçu',76,4109302,'N',-25.098650,-52.869632),(4045,21,'Guarapuava',76,4109401,'N',-25.393592,-51.463431),(4046,21,'Guaraqueçaba',76,4109500,'N',-25.300437,-48.326049),(4047,21,'Guaratuba',76,4109609,'N',-25.874242,-48.575726),(4048,21,'Honório Serpa',76,4109658,'N',-26.142966,-52.383029),(4049,21,'Ibaiti',76,4109708,'N',-23.849821,-50.190666),(4050,21,'Ibema',76,4109757,'N',-25.112867,-53.023122),(4051,21,'Ibiporã',76,4109807,'N',-23.269331,-51.058034),(4052,21,'Icaraíma',76,4109906,'N',-23.396711,-53.625570),(4053,21,'Iguaraçu',76,4110003,'N',-23.194781,-51.824774),(4054,21,'Iguatu',76,4110052,'N',-24.711262,-53.086005),(4055,21,'Imbaú',76,4110078,'N',-24.442797,-50.749309),(4056,21,'Imbituva',76,4110102,'N',-25.230613,-50.597473),(4057,21,'Inácio Martins',76,4110201,'N',-25.572163,-51.074945),(4058,21,'Inajá',76,4110300,'N',-22.749116,-52.202344),(4059,21,'Indianópolis',76,4110409,'N',-23.479711,-52.701057),(4060,21,'Ipiranga',76,4110508,'N',-25.013023,-50.581240),(4061,21,'Iporã',76,4110607,'N',-24.002580,-53.718099),(4062,21,'Iracema do Oeste',76,4110656,'N',-24.429030,-53.358111),(4063,21,'Irati',76,4110706,'N',-25.473736,-50.658048),(4064,21,'Iretama',76,4110805,'N',-24.421142,-52.101577),(4065,21,'Itaguajé',76,4110904,'N',-22.614783,-51.969340),(4066,21,'Itaipulândia',76,4110953,'N',-25.138481,-54.305001),(4067,21,'Itambaracá',76,4111001,'N',-23.014769,-50.409090),(4068,21,'Itambé',76,4111100,'N',-23.660099,-51.990004),(4069,21,'Itapejara d\'Oeste',76,4111209,'N',-25.970878,-52.813930),(4070,21,'Itaperuçu',76,4111258,'N',-25.214470,-49.342864),(4071,21,'Itaúna do Sul',76,4111308,'N',-22.726877,-52.885025),(4072,21,'Ivaí',76,4111407,'N',-25.008263,-50.861426),(4073,21,'Ivaiporã',76,4111506,'N',-24.241948,-51.674552),(4074,21,'Ivaté',76,4111555,'N',-23.409589,-53.373879),(4075,21,'Ivatuba',76,4111605,'N',-23.618274,-52.217669),(4076,21,'Jaboti',76,4111704,'N',-23.735741,-50.073453),(4077,21,'Jacarezinho',76,4111803,'N',-23.160116,-49.978573),(4078,21,'Jaguapitã',76,4111902,'N',-23.117783,-51.540617),(4079,21,'Jaguariaíva',76,4112009,'N',-24.253057,-49.712186),(4080,21,'Jandaia do Sul',76,4112108,'N',-23.601179,-51.643395),(4081,21,'Janiópolis',76,4112207,'N',-24.141450,-52.782552),(4082,21,'Japira',76,4112306,'N',-23.807481,-50.138595),(4083,21,'Japurá',76,4112405,'N',-23.468588,-52.556628),(4084,21,'Jardim Alegre',76,4112504,'N',-24.181137,-51.694335),(4085,21,'Jardim Olinda',76,4112603,'N',-22.552632,-52.038141),(4086,21,'Jataizinho',76,4112702,'N',-23.257265,-50.974055),(4087,21,'Jesuítas',76,4112751,'N',-24.377249,-53.388115),(4088,21,'Joaquim Távora',76,4112801,'N',-23.500489,-49.924457),(4089,21,'Jundiaí do Sul',76,4112900,'N',-23.437909,-50.249354),(4090,21,'Juranda',76,4112959,'N',-24.416391,-52.844486),(4091,21,'Jussara',76,4113007,'N',-23.616327,-52.473041),(4092,21,'Kaloré',76,4113106,'N',-23.823439,-51.665142),(4093,21,'Lapa',76,4113205,'N',-25.765102,-49.718596),(4094,21,'Laranjal',76,4113254,'N',-24.888302,-52.471666),(4095,21,'Laranjeiras do Sul',76,4113304,'N',-25.401682,-52.408847),(4096,21,'Leópolis',76,4113403,'N',-23.079922,-50.755125),(4097,21,'Lidianópolis',76,4113429,'N',-24.106766,-51.654151),(4098,21,'Lindoeste',76,4113452,'N',-25.255985,-53.577126),(4099,21,'Loanda',76,4113502,'N',-22.930229,-53.134469),(4100,21,'Lobato',76,4113601,'N',-23.004158,-51.953749),(4101,21,'Londrina',76,4113700,'N',-23.312156,-51.162773),(4102,21,'Luiziana',76,4113734,'N',-24.280081,-52.281906),(4103,21,'Lunardelli',76,4113759,'N',-24.078046,-51.744548),(4104,21,'Lupionópolis',76,4113809,'N',-22.751995,-51.656873),(4105,21,'Mallet',76,4113908,'N',-25.873788,-50.827569),(4106,21,'Mamborê',76,4114005,'N',-24.321813,-52.529094),(4107,21,'Mandaguaçu',76,4114104,'N',-23.342789,-52.094253),(4108,21,'Mandaguari',76,4114203,'N',-23.517452,-51.681252),(4109,21,'Mandirituba',76,4114302,'N',-25.759621,-49.322783),(4110,21,'Manfrinópolis',76,4114351,'N',-26.143777,-53.312583),(4111,21,'Mangueirinha',76,4114401,'N',-25.942981,-52.176326),(4112,21,'Manoel Ribas',76,4114500,'N',-24.521731,-51.669079),(4113,21,'Marechal Cândido Rondon',76,4114609,'N',-24.559254,-54.060008),(4114,21,'Maria Helena',76,4114708,'N',-23.617610,-53.204819),(4115,21,'Marialva',76,4114807,'N',-23.484759,-51.798057),(4116,21,'Marilândia do Sul',76,4114906,'N',-23.745779,-51.309291),(4117,21,'Marilena',76,4115002,'N',-22.731825,-53.037186),(4118,21,'Mariluz',76,4115101,'N',-24.003733,-53.151526),(4119,21,'Maringá',76,4115200,'N',-23.422280,-51.939882),(4120,21,'Mariópolis',76,4115309,'N',-26.355843,-52.557748),(4121,21,'Maripá',76,4115358,'N',-24.417209,-53.833478),(4122,21,'Marmeleiro',76,4115408,'N',-26.148697,-53.026184),(4123,21,'Marquinho',76,4115457,'N',-25.112212,-52.256983),(4124,21,'Marumbi',76,4115507,'N',-23.706369,-51.641080),(4125,21,'Matelândia',76,4115606,'N',-25.237921,-53.974387),(4126,21,'Matinhos',76,4115705,'N',-25.816410,-48.533771),(4127,21,'Mato Rico',76,4115739,'N',-24.707317,-52.146259),(4128,21,'Mauá da Serra',76,4115754,'N',-23.901296,-51.226463),(4129,21,'Medianeira',76,4115804,'N',-25.292498,-54.091782),(4130,21,'Mercedes',76,4115853,'N',-24.448890,-54.164436),(4131,21,'Mirador',76,4115903,'N',-23.257408,-52.776935),(4132,21,'Miraselva',76,4116000,'N',-22.966093,-51.485707),(4133,21,'Missal',76,4116059,'N',-25.091160,-54.243175),(4134,21,'Moreira Sales',76,4116109,'N',-24.044758,-53.013447),(4135,21,'Morretes',76,4116208,'N',-25.478482,-48.831539),(4136,21,'Munhoz de Melo',76,4116307,'N',-23.145693,-51.775758),(4137,21,'Nossa Senhora das Graças',76,4116406,'N',-22.910563,-51.795148),(4138,21,'Nova Aliança do Ivaí',76,4116505,'N',-23.177456,-52.601923),(4139,21,'Nova América da Colina',76,4116604,'N',-23.332687,-50.714443),(4140,21,'Nova Aurora',76,4116703,'N',-24.528485,-53.257526),(4141,21,'Nova Cantu',76,4116802,'N',-24.670779,-52.570992),(4142,21,'Nova Esperança',76,4116901,'N',-23.184251,-52.204866),(4143,21,'Nova Esperança do Sudoeste',76,4116950,'N',-25.898779,-53.264207),(4144,21,'Nova Fátima',76,4117008,'N',-23.432359,-50.562314),(4145,21,'Nova Laranjeiras',76,4117057,'N',-25.306746,-52.539370),(4146,21,'Nova Londrina',76,4117107,'N',-22.763869,-52.986313),(4147,21,'Nova Olímpia',76,4117206,'N',-23.471101,-53.091233),(4148,21,'Nova Santa Bárbara',76,4117214,'N',-23.585424,-50.764147),(4149,21,'Nova Santa Rosa',76,4117222,'N',-24.464765,-53.955116),(4150,21,'Nova Prata do Iguaçu',76,4117255,'N',-25.631877,-53.347957),(4151,21,'Nova Tebas',76,4117271,'N',-24.438325,-51.950396),(4152,21,'Novo Itacolomi',76,4117297,'N',-23.765314,-51.506959),(4153,21,'Ortigueira',76,4117305,'N',-24.212011,-50.926930),(4154,21,'Ourizona',76,4117404,'N',-23.404568,-52.195039),(4155,21,'Ouro Verde do Oeste',76,4117453,'N',-24.770794,-53.899538),(4156,21,'Paiçandu',76,4117503,'N',-23.457699,-52.052412),(4157,21,'Palmas',76,4117602,'N',-26.481473,-51.988774),(4158,21,'Palmeira',76,4117701,'N',-25.418568,-50.003247),(4159,21,'Palmital',76,4117800,'N',-24.882244,-52.212997),(4160,21,'Palotina',76,4117909,'N',-24.279409,-53.838772),(4161,21,'Paraíso do Norte',76,4118006,'N',-23.287161,-52.603543),(4162,21,'Paranacity',76,4118105,'N',-22.926810,-52.155989),(4163,21,'Paranaguá',76,4118204,'N',-25.506842,-48.524733),(4164,21,'Paranapoema',76,4118303,'N',-22.655622,-52.080724),(4165,21,'Paranavaí',76,4118402,'N',-23.081879,-52.462402),(4166,21,'Pato Bragado',76,4118451,'N',-24.625644,-54.231396),(4167,21,'Pato Branco',76,4118501,'N',-26.229959,-52.677362),(4168,21,'Paula Freitas',76,4118600,'N',-26.220102,-50.934736),(4169,21,'Paulo Frontin',76,4118709,'N',-26.045608,-50.833196),(4170,21,'Peabiru',76,4118808,'N',-23.914126,-52.347896),(4171,21,'Perobal',76,4118857,'N',-23.894562,-53.411500),(4172,21,'Pérola',76,4118907,'N',-23.797479,-53.673252),(4173,21,'Pérola d\'Oeste',76,4119004,'N',-25.828266,-53.740108),(4174,21,'Piên',76,4119103,'N',-26.096956,-49.428244),(4175,21,'Pinhais',76,4119152,'N',-25.442198,-49.199197),(4176,21,'Pinhalão',76,4119202,'N',-23.787355,-50.062603),(4177,21,'Pinhal de São Bento',76,4119251,'N',-26.032729,-53.483090),(4178,21,'Pinhão',76,4119301,'N',-25.696295,-51.648270),(4179,21,'Piraí do Sul',76,4119400,'N',-24.532358,-49.941331),(4180,21,'Piraquara',76,4119509,'N',-25.446550,-49.065306),(4181,21,'Pitanga',76,4119608,'N',-24.752748,-51.763154),(4182,21,'Pitangueiras',76,4119657,'N',-23.230304,-51.585768),(4183,21,'Planaltina do Paraná',76,4119707,'N',-23.018810,-52.917841),(4184,21,'Planalto',76,4119806,'N',-25.712101,-53.770857),(4185,21,'Ponta Grossa',76,4119905,'N',-25.092547,-50.161442),(4186,21,'Pontal do Paraná',76,4119954,'N',-25.594151,-48.448327),(4187,21,'Porecatu',76,4120002,'N',-22.756209,-51.377599),(4188,21,'Porto Amazonas',76,4120101,'N',-25.541573,-49.889721),(4189,21,'Porto Barreiro',76,4120150,'N',-25.545186,-52.404787),(4190,21,'Porto Rico',76,4120200,'N',-22.778352,-53.267968),(4191,21,'Porto Vitória',76,4120309,'N',-26.163475,-51.236695),(4192,21,'Prado Ferreira',76,4120333,'N',-23.033914,-51.443226),(4193,21,'Pranchita',76,4120358,'N',-26.015664,-53.742623),(4194,21,'Presidente Castelo Branco',76,4120408,'N',-23.281550,-52.157726),(4195,21,'Primeiro de Maio',76,4120507,'N',-22.852533,-51.027752),(4196,21,'Prudentópolis',76,4120606,'N',-25.216021,-50.983575),(4197,21,'Quarto Centenário',76,4120655,'N',-24.279021,-53.075289),(4198,21,'Quatiguá',76,4120705,'N',-23.564161,-49.915264),(4199,21,'Quatro Barras',76,4120804,'N',-25.373745,-49.085189),(4200,21,'Quatro Pontes',76,4120853,'N',-24.573209,-53.972699),(4201,21,'Quedas do Iguaçu',76,4120903,'N',-25.456781,-52.909832),(4202,21,'Querência do Norte',76,4121000,'N',-23.086529,-53.487041),(4203,21,'Quinta do Sol',76,4121109,'N',-23.843888,-52.135129),(4204,21,'Quitandinha',76,4121208,'N',-25.868308,-49.496683),(4205,21,'Ramilândia',76,4121257,'N',-25.118987,-54.027237),(4206,21,'Rancho Alegre',76,4121307,'N',-23.075715,-50.916392),(4207,21,'Rancho Alegre D\'Oeste',76,4121356,'N',-24.309010,-52.951126),(4208,21,'Realeza',76,4121406,'N',-25.762580,-53.532574),(4209,21,'Rebouças',76,4121505,'N',-25.626393,-50.681254),(4210,21,'Renascença',76,4121604,'N',-26.156221,-52.972162),(4211,21,'Reserva',76,4121703,'N',-24.651648,-50.850596),(4212,21,'Reserva do Iguaçu',76,4121752,'N',-25.830958,-52.028762),(4213,21,'Ribeirão Claro',76,4121802,'N',-23.196285,-49.756351),(4214,21,'Ribeirão do Pinhal',76,4121901,'N',-23.408258,-50.358061),(4215,21,'Rio Azul',76,4122008,'N',-25.716113,-50.787173),(4216,21,'Rio Bom',76,4122107,'N',-23.762098,-51.415365),(4217,21,'Rio Bonito do Iguaçu',76,4122156,'N',-25.486909,-52.526890),(4218,21,'Rio Branco do Ivaí',76,4122172,'N',-24.320278,-51.312066),(4219,21,'Rio Branco do Sul',76,4122206,'N',-25.190165,-49.316714),(4220,21,'Rio Negro',76,4122305,'N',-26.100408,-49.797685),(4221,21,'Rolândia',76,4122404,'N',-23.313592,-51.362780),(4222,21,'Roncador',76,4122503,'N',-24.595107,-52.276053),(4223,21,'Rondon',76,4122602,'N',-23.412660,-52.762492),(4224,21,'Rosário do Ivaí',76,4122651,'N',-24.253553,-51.249945),(4225,21,'Sabáudia',76,4122701,'N',-23.318396,-51.556702),(4226,21,'Salgado Filho',76,4122800,'N',-26.170461,-53.362115),(4227,21,'Salto do Itararé',76,4122909,'N',-23.605757,-49.630750),(4228,21,'Salto do Lontra',76,4123006,'N',-25.776765,-53.314935),(4229,21,'Santa Amélia',76,4123105,'N',-23.268157,-50.423459),(4230,21,'Santa Cecília do Pavão',76,4123204,'N',-23.512896,-50.782865),(4231,21,'Santa Cruz de Monte Castelo',76,4123303,'N',-22.958582,-53.297306),(4232,21,'Santa Fé',76,4123402,'N',-23.036115,-51.806302),(4233,21,'Santa Helena',76,4123501,'N',-24.857096,-54.336453),(4234,21,'Santa Inês',76,4123600,'N',-22.638707,-51.902768),(4235,21,'Santa Isabel do Ivaí',76,4123709,'N',-23.001089,-53.195948),(4236,21,'Santa Izabel do Oeste',76,4123808,'N',-25.814381,-53.483618),(4237,21,'Santa Lúcia',76,4123824,'N',-25.411320,-53.571144),(4238,21,'Santa Maria do Oeste',76,4123857,'N',-24.934184,-51.867710),(4239,21,'Santa Mariana',76,4123907,'N',-23.146427,-50.521071),(4240,21,'Santa Mônica',76,4123956,'N',-23.105424,-53.111273),(4241,21,'Santana do Itararé',76,4124004,'N',-23.753133,-49.633197),(4242,21,'Santa Tereza do Oeste',76,4124020,'N',-25.058722,-53.627236),(4243,21,'Santa Terezinha de Itaipu',76,4124053,'N',-25.442161,-54.399519),(4244,21,'Santo Antônio da Platina',76,4124103,'N',-23.297049,-50.077346),(4245,21,'Santo Antônio do Caiuá',76,4124202,'N',-22.733975,-52.344658),(4246,21,'Santo Antônio do Paraíso',76,4124301,'N',-23.494719,-50.646828),(4247,21,'Santo Antônio do Sudoeste',76,4124400,'N',-26.074975,-53.723083),(4248,21,'Santo Inácio',76,4124509,'N',-22.700069,-51.795300),(4249,21,'São Carlos do Ivaí',76,4124608,'N',-23.308847,-52.477115),(4250,21,'São Jerônimo da Serra',76,4124707,'N',-23.723403,-50.738480),(4251,21,'São João',76,4124806,'N',-25.824663,-52.729473),(4252,21,'São João do Caiuá',76,4124905,'N',-22.854404,-52.339751),(4253,21,'São João do Ivaí',76,4125001,'N',-23.993089,-51.820279),(4254,21,'São João do Triunfo',76,4125100,'N',-25.691875,-50.308064),(4255,21,'São Jorge d\'Oeste',76,4125209,'N',-25.714948,-52.920103),(4256,21,'São Jorge do Ivaí',76,4125308,'N',-23.435458,-52.294342),(4257,21,'São Jorge do Patrocínio',76,4125357,'N',-23.758248,-53.883331),(4258,21,'São José da Boa Vista',76,4125407,'N',-23.915466,-49.651152),(4259,21,'São José das Palmeiras',76,4125456,'N',-24.834082,-54.059918),(4260,21,'São José dos Pinhais',76,4125506,'N',-25.537702,-49.200082),(4261,21,'São Manoel do Paraná',76,4125555,'N',-23.396130,-52.647020),(4262,21,'São Mateus do Sul',76,4125605,'N',-25.869600,-50.390624),(4263,21,'São Miguel do Iguaçu',76,4125704,'N',-25.348894,-54.242121),(4264,21,'São Pedro do Iguaçu',76,4125753,'N',-24.930931,-53.859862),(4265,21,'São Pedro do Ivaí',76,4125803,'N',-23.867813,-51.856963),(4266,21,'São Pedro do Paraná',76,4125902,'N',-22.825129,-53.222937),(4267,21,'São Sebastião da Amoreira',76,4126009,'N',-23.460646,-50.762401),(4268,21,'São Tomé',76,4126108,'N',-23.535511,-52.592484),(4269,21,'Sapopema',76,4126207,'N',-23.907287,-50.579647),(4270,21,'Sarandi',76,4126256,'N',-23.443172,-51.873682),(4271,21,'Saudade do Iguaçu',76,4126272,'N',-25.693661,-52.614339),(4272,21,'Sengés',76,4126306,'N',-24.116810,-49.473019),(4273,21,'Serranópolis do Iguaçu',76,4126355,'N',-25.379884,-54.058377),(4274,21,'Sertaneja',76,4126405,'N',-23.036937,-50.817102),(4275,21,'Sertanópolis',76,4126504,'N',-23.058482,-51.042244),(4276,21,'Siqueira Campos',76,4126603,'N',-23.687708,-49.831497),(4277,21,'Sulina',76,4126652,'N',-25.699632,-52.716597),(4278,21,'Tamarana',76,4126678,'N',-23.715177,-51.098560),(4279,21,'Tamboara',76,4126702,'N',-23.201821,-52.500629),(4280,21,'Tapejara',76,4126801,'N',-23.732479,-52.864113),(4281,21,'Tapira',76,4126900,'N',-23.317109,-53.075325),(4282,21,'Teixeira Soares',76,4127007,'N',-25.380049,-50.465647),(4283,21,'Telêmaco Borba',76,4127106,'N',-24.328686,-50.623123),(4284,21,'Terra Boa',76,4127205,'N',-23.766833,-52.462142),(4285,21,'Terra Rica',76,4127304,'N',-22.724365,-52.624671),(4286,21,'Terra Roxa',76,4127403,'N',-24.167484,-54.098514),(4287,21,'Tibagi',76,4127502,'N',-24.513288,-50.411470),(4288,21,'Tijucas do Sul',76,4127601,'N',-25.920180,-49.182244),(4289,21,'Toledo',76,4127700,'N',-24.732077,-53.741411),(4290,21,'Tomazina',76,4127809,'N',-23.779045,-49.955152),(4291,21,'Três Barras do Paraná',76,4127858,'N',-25.419408,-53.187499),(4292,21,'Tunas do Paraná',76,4127882,'N',-24.972381,-49.086059),(4293,21,'Tuneiras do Oeste',76,4127908,'N',-23.864031,-52.874568),(4294,21,'Tupãssi',76,4127957,'N',-24.579813,-53.514495),(4295,21,'Turvo',76,4127965,'N',-25.040127,-51.532764),(4296,21,'Ubiratã',76,4128005,'N',-24.541035,-52.994506),(4297,21,'Umuarama',76,4128104,'N',-23.763950,-53.308460),(4298,21,'União da Vitória',76,4128203,'N',-26.228435,-51.090610),(4299,21,'Uniflor',76,4128302,'N',-23.086049,-52.160011),(4300,21,'Uraí',76,4128401,'N',-23.200159,-50.797365),(4301,21,'Wenceslau Braz',76,4128500,'N',-23.870423,-49.802985),(4302,21,'Ventania',76,4128534,'N',-24.244166,-50.247617),(4303,21,'Vera Cruz do Oeste',76,4128559,'N',-25.063170,-53.880030),(4304,21,'Verê',76,4128609,'N',-25.880632,-52.908593),(4305,21,'Alto Paraíso',76,4128625,'N',-23.508131,-53.732893),(4306,21,'Doutor Ulysses',76,4128633,'N',-24.567836,-49.419772),(4307,21,'Virmond',76,4128658,'N',-25.378766,-52.202543),(4308,21,'Vitorino',76,4128708,'N',-26.264344,-52.777081),(4309,21,'Xambrê',76,4128807,'N',-23.738394,-53.486941),(4310,22,'Abdon Batista',76,4200051,'N',-27.608987,-51.025272),(4311,22,'Abelardo Luz',76,4200101,'N',-26.563031,-52.336482),(4312,22,'Agrolândia',76,4200200,'N',-27.400517,-49.825653),(4313,22,'Agronômica',76,4200309,'N',-27.269716,-49.718369),(4314,22,'Água Doce',76,4200408,'N',-27.004092,-51.559097),(4315,22,'Águas de Chapecó',76,4200507,'N',-27.076213,-52.987251),(4316,22,'Águas Frias',76,4200556,'N',-26.880228,-52.859419),(4317,22,'Águas Mornas',76,4200606,'N',-27.706597,-48.840538),(4318,22,'Alfredo Wagner',76,4200705,'N',-27.705396,-49.343812),(4319,22,'Alto Bela Vista',76,4200754,'N',-27.431138,-51.911037),(4320,22,'Anchieta',76,4200804,'N',-26.535681,-53.333270),(4321,22,'Angelina',76,4200903,'N',-27.582257,-48.983476),(4322,22,'Anita Garibaldi',76,4201000,'N',-27.683777,-51.131194),(4323,22,'Anitápolis',76,4201109,'N',-27.909887,-49.131599),(4324,22,'Antônio Carlos',76,4201208,'N',-27.513371,-48.764960),(4325,22,'Apiúna',76,4201257,'N',-27.041813,-49.391638),(4326,22,'Arabutã',76,4201273,'N',-27.157404,-52.148599),(4327,22,'Araquari',76,4201307,'N',-26.375952,-48.692707),(4328,22,'Araranguá',76,4201406,'N',-28.935752,-49.480967),(4329,22,'Armazém',76,4201505,'N',-28.258705,-49.012911),(4330,22,'Arroio Trinta',76,4201604,'N',-26.932565,-51.334124),(4331,22,'Arvoredo',76,4201653,'N',-27.073534,-52.457789),(4332,22,'Ascurra',76,4201703,'N',-26.954776,-49.386363),(4333,22,'Atalanta',76,4201802,'N',-27.420536,-49.779457),(4334,22,'Aurora',76,4201901,'N',-27.299029,-49.643628),(4335,22,'Balneário Arroio do Silva',76,4201950,'N',-28.980402,-49.405703),(4336,22,'Balneário Camboriú',76,4202008,'N',-26.991819,-48.634617),(4337,22,'Balneário Barra do Sul',76,4202057,'N',-26.456430,-48.606646),(4338,22,'Balneário Gaivota',76,4202073,'N',-29.164521,-49.590894),(4339,22,'Bandeirante',76,4202081,'N',-26.768938,-53.641050),(4340,22,'Barra Bonita',76,4202099,'N',-26.652294,-53.441303),(4341,22,'Barra Velha',76,4202107,'N',-26.634361,-48.683864),(4342,22,'Bela Vista do Toldo',76,4202131,'N',-26.276228,-50.464788),(4343,22,'Belmonte',76,4202156,'N',-26.844586,-53.580977),(4344,22,'Benedito Novo',76,4202206,'N',-26.777508,-49.364403),(4345,22,'Biguaçu',76,4202305,'N',-27.494323,-48.654489),(4346,22,'Blumenau',76,4202404,'N',-26.916108,-49.057631),(4347,22,'Bocaina do Sul',76,4202438,'N',-27.743198,-49.945898),(4348,22,'Bombinhas',76,4202453,'N',-27.144255,-48.521345),(4349,22,'Bom Jardim da Serra',76,4202503,'N',-28.337947,-49.624978),(4350,22,'Bom Jesus',76,4202537,'N',-26.735923,-52.393016),(4351,22,'Bom Jesus do Oeste',76,4202578,'N',-26.691812,-53.095350),(4352,22,'Bom Retiro',76,4202602,'N',-27.798671,-49.489834),(4353,22,'Botuverá',76,4202701,'N',-27.202107,-49.078484),(4354,22,'Braço do Norte',76,4202800,'N',-28.280039,-49.164548),(4355,22,'Braço do Trombudo',76,4202859,'N',-27.364251,-49.890908),(4356,22,'Brunópolis',76,4202875,'N',-27.318362,-50.835921),(4357,22,'Brusque',76,4202909,'N',-27.098310,-48.915163),(4358,22,'Caçador',76,4203006,'N',-26.775348,-51.019035),(4359,22,'Caibi',76,4203105,'N',-27.073054,-53.250527),(4360,22,'Calmon',76,4203154,'N',-26.604677,-51.096635),(4361,22,'Camboriú',76,4203204,'N',-27.026456,-48.649996),(4362,22,'Capão Alto',76,4203253,'N',-27.941685,-50.511479),(4363,22,'Campo Alegre',76,4203303,'N',-26.190659,-49.263344),(4364,22,'Campo Belo do Sul',76,4203402,'N',-27.896657,-50.761994),(4365,22,'Campo Erê',76,4203501,'N',-26.394551,-53.090155),(4366,22,'Campos Novos',76,4203600,'N',-27.399053,-51.223673),(4367,22,'Canelinha',76,4203709,'N',-27.272415,-48.789273),(4368,22,'Canoinhas',76,4203808,'N',-26.178807,-50.397849),(4369,22,'Capinzal',76,4203907,'N',-27.344278,-51.611363),(4370,22,'Capivari de Baixo',76,4203956,'N',-28.449046,-48.960575),(4371,22,'Catanduvas',76,4204004,'N',-27.072035,-51.658948),(4372,22,'Caxambu do Sul',76,4204103,'N',-27.161282,-52.880475),(4373,22,'Celso Ramos',76,4204152,'N',-27.634739,-51.335994),(4374,22,'Cerro Negro',76,4204178,'N',-27.795828,-50.870062),(4375,22,'Chapadão do Lageado',76,4204194,'N',-27.585298,-49.544326),(4376,22,'Chapecó',76,4204202,'N',-27.106837,-52.617031),(4377,22,'Cocal do Sul',76,4204251,'N',-28.603023,-49.327129),(4378,22,'Concórdia',76,4204301,'N',-27.233659,-52.023971),(4379,22,'Cordilheira Alta',76,4204350,'N',-26.985081,-52.603251),(4380,22,'Coronel Freitas',76,4204400,'N',-26.903251,-52.709151),(4381,22,'Coronel Martins',76,4204459,'N',-26.511638,-52.669699),(4382,22,'Corupá',76,4204509,'N',-26.431966,-49.226737),(4383,22,'Correia Pinto',76,4204558,'N',-27.584808,-50.363761),(4384,22,'Criciúma',76,4204608,'N',-28.673572,-49.365940),(4385,22,'Cunha Porã',76,4204707,'N',-26.891727,-53.173846),(4386,22,'Cunhataí',76,4204756,'N',-26.973140,-53.093290),(4387,22,'Curitibanos',76,4204806,'N',-27.282983,-50.582601),(4388,22,'Descanso',76,4204905,'N',-26.817870,-53.504629),(4389,22,'Dionísio Cerqueira',76,4205001,'N',-26.266489,-53.631395),(4390,22,'Dona Emma',76,4205100,'N',-26.986301,-49.716898),(4391,22,'Doutor Pedrinho',76,4205159,'N',-26.720461,-49.479293),(4392,22,'Entre Rios',76,4205175,'N',-26.723621,-52.562534),(4393,22,'Ermo',76,4205191,'N',-28.985082,-49.643405),(4394,22,'Erval Velho',76,4205209,'N',-27.273895,-51.443433),(4395,22,'Faxinal dos Guedes',76,4205308,'N',-26.859787,-52.271415),(4396,22,'Flor do Sertão',76,4205357,'N',-26.779432,-53.344891),(4397,22,'Florianópolis',76,4205407,'S',-27.587796,-48.547637),(4398,22,'Formosa do Sul',76,4205431,'N',-26.648523,-52.793450),(4399,22,'Forquilhinha',76,4205456,'N',-28.742415,-49.468861),(4400,22,'Fraiburgo',76,4205506,'N',-27.023447,-50.925079),(4401,22,'Frei Rogério',76,4205555,'N',-27.174751,-50.806408),(4402,22,'Galvão',76,4205605,'N',-26.455476,-52.682002),(4403,22,'Garopaba',76,4205704,'N',-28.020896,-48.612557),(4404,22,'Garuva',76,4205803,'N',-26.022076,-48.849842),(4405,22,'Gaspar',76,4205902,'N',-26.918369,-48.967707),(4406,22,'Governador Celso Ramos',76,4206009,'N',-27.318646,-48.578167),(4407,22,'Grão Pará',76,4206108,'N',-28.183987,-49.219996),(4408,22,'Gravatal',76,4206207,'N',-28.329131,-49.039470),(4409,22,'Guabiruba',76,4206306,'N',-27.060325,-48.983560),(4410,22,'Guaraciaba',76,4206405,'N',-26.600348,-53.522090),(4411,22,'Guaramirim',76,4206504,'N',-26.474445,-48.992104),(4412,22,'Guarujá do Sul',76,4206603,'N',-26.384921,-53.525445),(4413,22,'Guatambú',76,4206652,'N',-27.136911,-52.783840),(4414,22,'Herval d\'Oeste',76,4206702,'N',-27.170303,-51.496215),(4415,22,'Ibiam',76,4206751,'N',-27.180583,-51.239428),(4416,22,'Ibicaré',76,4206801,'N',-27.091549,-51.368450),(4417,22,'Ibirama',76,4206900,'N',-27.053541,-49.522028),(4418,22,'Içara',76,4207007,'N',-28.707084,-49.300823),(4419,22,'Ilhota',76,4207106,'N',-26.904625,-48.825014),(4420,22,'Imaruí',76,4207205,'N',-28.343850,-48.814672),(4421,22,'Imbituba',76,4207304,'N',-28.239951,-48.669284),(4422,22,'Imbuia',76,4207403,'N',-27.494604,-49.427729),(4423,22,'Indaial',76,4207502,'N',-26.906256,-49.240140),(4424,22,'Iomerê',76,4207577,'N',-27.001078,-51.240619),(4425,22,'Ipira',76,4207601,'N',-27.409709,-51.770854),(4426,22,'Iporã do Oeste',76,4207650,'N',-26.996017,-53.539512),(4427,22,'Ipuaçu',76,4207684,'N',-26.632560,-52.454297),(4428,22,'Ipumirim',76,4207700,'N',-27.068326,-52.140541),(4429,22,'Iraceminha',76,4207759,'N',-26.824065,-53.276058),(4430,22,'Irani',76,4207809,'N',-27.016187,-51.904108),(4431,22,'Irati',76,4207858,'N',-26.657227,-52.895011),(4432,22,'Irineópolis',76,4207908,'N',-26.236613,-50.803900),(4433,22,'Itá',76,4208005,'N',-27.281779,-52.329183),(4434,22,'Itaiópolis',76,4208104,'N',-26.337126,-49.908756),(4435,22,'Itajaí',76,4208203,'N',-26.907426,-48.657023),(4436,22,'Itapema',76,4208302,'N',-27.095938,-48.617399),(4437,22,'Itapiranga',76,4208401,'N',-27.175375,-53.714802),(4438,22,'Itapoá',76,4208450,'N',-26.006048,-48.604168),(4439,22,'Ituporanga',76,4208500,'N',-27.414858,-49.603415),(4440,22,'Jaborá',76,4208609,'N',-27.172853,-51.743354),(4441,22,'Jacinto Machado',76,4208708,'N',-29.001419,-49.761769),(4442,22,'Jaguaruna',76,4208807,'N',-28.624964,-49.049129),(4443,22,'Jaraguá do Sul',76,4208906,'N',-26.490484,-49.076299),(4444,22,'Jardinópolis',76,4208955,'N',-26.720569,-52.858899),(4445,22,'Joaçaba',76,4209003,'N',-27.173945,-51.506690),(4446,22,'Joinville',76,4209102,'N',-26.304518,-48.849409),(4447,22,'José Boiteux',76,4209151,'N',-26.954683,-49.623807),(4448,22,'Jupiá',76,4209177,'N',-26.393703,-52.734381),(4449,22,'Lacerdópolis',76,4209201,'N',-27.264600,-51.562866),(4450,22,'Lages',76,4209300,'N',-27.817259,-50.330222),(4451,22,'Laguna',76,4209409,'N',-28.483586,-48.781389),(4452,22,'Lajeado Grande',76,4209458,'N',-26.860942,-52.566035),(4453,22,'Laurentino',76,4209508,'N',-27.212388,-49.755264),(4454,22,'Lauro Muller',76,4209607,'N',-28.393585,-49.394307),(4455,22,'Lebon Régis',76,4209706,'N',-26.929114,-50.691828),(4456,22,'Leoberto Leal',76,4209805,'N',-27.506390,-49.289401),(4457,22,'Lindóia do Sul',76,4209854,'N',-27.047464,-52.080923),(4458,22,'Lontras',76,4209904,'N',-27.157487,-49.544829),(4459,22,'Luiz Alves',76,4210001,'N',-26.721111,-48.926047),(4460,22,'Luzerna',76,4210035,'N',-27.129896,-51.467946),(4461,22,'Macieira',76,4210050,'N',-26.855212,-51.376122),(4462,22,'Mafra',76,4210100,'N',-26.115228,-49.801038),(4463,22,'Major Gercino',76,4210209,'N',-27.418660,-48.953354),(4464,22,'Major Vieira',76,4210308,'N',-26.357527,-50.332987),(4465,22,'Maracajá',76,4210407,'N',-28.850315,-49.454376),(4466,22,'Maravilha',76,4210506,'N',-26.761624,-53.174819),(4467,22,'Marema',76,4210555,'N',-26.800422,-52.627135),(4468,22,'Massaranduba',76,4210605,'N',-26.595458,-48.988745),(4469,22,'Matos Costa',76,4210704,'N',-26.474115,-51.157451),(4470,22,'Meleiro',76,4210803,'N',-28.832446,-49.629849),(4471,22,'Mirim Doce',76,4210852,'N',-27.201205,-50.068564),(4472,22,'Modelo',76,4210902,'N',-26.778042,-53.053501),(4473,22,'Mondaí',76,4211009,'N',-27.103612,-53.398684),(4474,22,'Monte Carlo',76,4211058,'N',-27.217679,-50.974105),(4475,22,'Monte Castelo',76,4211108,'N',-26.456362,-50.226271),(4476,22,'Morro da Fumaça',76,4211207,'N',-28.654788,-49.213257),(4477,22,'Morro Grande',76,4211256,'N',-28.799720,-49.718800),(4478,22,'Navegantes',76,4211306,'N',-26.897439,-48.649183),(4479,22,'Nova Erechim',76,4211405,'N',-26.901273,-52.911287),(4480,22,'Nova Itaberaba',76,4211454,'N',-26.942890,-52.811244),(4481,22,'Nova Trento',76,4211504,'N',-27.287771,-48.925795),(4482,22,'Nova Veneza',76,4211603,'N',-28.638233,-49.503124),(4483,22,'Novo Horizonte',76,4211652,'N',-26.446172,-52.834033),(4484,22,'Orleans',76,4211702,'N',-28.360469,-49.291426),(4485,22,'Otacílio Costa',76,4211751,'N',-27.503846,-50.112315),(4486,22,'Ouro',76,4211801,'N',-27.342488,-51.620562),(4487,22,'Ouro Verde',76,4211850,'N',-26.695994,-52.310019),(4488,22,'Paial',76,4211876,'N',-27.255158,-52.501089),(4489,22,'Painel',76,4211892,'N',-27.914518,-50.113010),(4490,22,'Palhoça',76,4211900,'N',-27.647044,-48.670288),(4491,22,'Palma Sola',76,4212007,'N',-26.346508,-53.279977),(4492,22,'Palmeira',76,4212056,'N',-27.582262,-50.159001),(4493,22,'Palmitos',76,4212106,'N',-27.070251,-53.162267),(4494,22,'Papanduva',76,4212205,'N',-26.393983,-50.163204),(4495,22,'Paraíso',76,4212239,'N',-26.615263,-53.675314),(4496,22,'Passo de Torres',76,4212254,'N',-29.323460,-49.725145),(4497,22,'Passos Maia',76,4212270,'N',-26.780889,-52.061724),(4498,22,'Paulo Lopes',76,4212304,'N',-27.949816,-48.681495),(4499,22,'Pedras Grandes',76,4212403,'N',-28.437218,-49.186488),(4500,22,'Penha',76,4212502,'N',-26.768861,-48.647573),(4501,22,'Peritiba',76,4212601,'N',-27.377309,-51.909815),(4502,22,'Petrolândia',76,4212700,'N',-27.528127,-49.694869),(4503,22,'Balneário Piçarras',76,4212809,'N',-26.769171,-48.675051),(4504,22,'Pinhalzinho',76,4212908,'N',-26.848814,-52.982253),(4505,22,'Pinheiro Preto',76,4213005,'N',-27.045135,-51.230536),(4506,22,'Piratuba',76,4213104,'N',-27.415954,-51.758650),(4507,22,'Planalto Alegre',76,4213153,'N',-27.069460,-52.867352),(4508,22,'Pomerode',76,4213203,'N',-26.744826,-49.174198),(4509,22,'Ponte Alta',76,4213302,'N',-27.467784,-50.377101),(4510,22,'Ponte Alta do Norte',76,4213351,'N',-27.169029,-50.465404),(4511,22,'Ponte Serrada',76,4213401,'N',-26.874913,-52.014538),(4512,22,'Porto Belo',76,4213500,'N',-27.149466,-48.602757),(4513,22,'Porto União',76,4213609,'N',-26.230005,-51.081605),(4514,22,'Pouso Redondo',76,4213708,'N',-27.251086,-49.955652),(4515,22,'Praia Grande',76,4213807,'N',-29.195776,-49.960592),(4516,22,'Presidente Castello Branco',76,4213906,'N',-27.219942,-51.811376),(4517,22,'Presidente Getúlio',76,4214003,'N',-27.041408,-49.622086),(4518,22,'Presidente Nereu',76,4214102,'N',-27.287329,-49.403293),(4519,22,'Princesa',76,4214151,'N',-26.444335,-53.598106),(4520,22,'Quilombo',76,4214201,'N',-26.740056,-52.727610),(4521,22,'Rancho Queimado',76,4214300,'N',-27.677209,-49.008432),(4522,22,'Rio das Antas',76,4214409,'N',-26.897067,-51.076020),(4523,22,'Rio do Campo',76,4214508,'N',-26.942308,-50.139589),(4524,22,'Rio do \nOeste',76,4214607,'N',-27.191167,-49.802862),(4525,22,'Rio dos Cedros',76,4214706,'N',-26.749130,-49.272379),(4526,22,'Rio do Sul',76,4214805,'N',-27.217903,-49.643238),(4527,22,'Rio Fortuna',76,4214904,'N',-28.132591,-49.105094),(4528,22,'Rio Negrinho',76,4215000,'N',-26.255325,-49.517295),(4529,22,'Rio Rufino',76,4215059,'N',-27.863235,-49.777592),(4530,22,'Riqueza',76,4215075,'N',-27.067594,-53.325286),(4531,22,'Rodeio',76,4215109,'N',-26.943502,-49.304707),(4532,22,'Romelândia',76,4215208,'N',-26.679464,-53.320158),(4533,22,'Salete',76,4215307,'N',-26.975244,-50.001731),(4534,22,'Saltinho',76,4215356,'N',-26.608559,-53.058631),(4535,22,'Salto Veloso',76,4215406,'N',-26.903165,-51.405208),(4536,22,'Sangão',76,4215455,'N',-28.633223,-49.134030),(4537,22,'Santa Cecília',76,4215505,'N',-26.956901,-50.422902),(4538,22,'Santa Helena',76,4215554,'N',-26.939844,-53.619988),(4539,22,'Santa Rosa de Lima',76,4215604,'N',-28.035606,-49.125091),(4540,22,'Santa Rosa do Sul',76,4215653,'N',-29.135288,-49.717626),(4541,22,'Santa Terezinha',76,4215679,'N',-26.780982,-50.005529),(4542,22,'Santa Terezinha do Progresso',76,4215687,'N',-26.619776,-53.199847),(4543,22,'Santiago do Sul',76,4215695,'N',-26.634809,-52.675949),(4544,22,'Santo Amaro da Imperatriz',76,4215703,'N',-27.689748,-48.780240),(4545,22,'São Bernardino',76,4215752,'N',-26.473278,-52.965539),(4546,22,'São Bento do Sul',76,4215802,'N',-26.249485,-49.386979),(4547,22,'São Bonifácio',76,4215901,'N',-27.896497,-48.929312),(4548,22,'São Carlos',76,4216008,'N',-27.078635,-53.017394),(4549,22,'São Cristovão do Sul',76,4216057,'N',-27.282947,-50.434629),(4550,22,'São Domingos',76,4216107,'N',-26.557830,-52.537227),(4551,22,'São Francisco do Sul',76,4216206,'N',-26.244018,-48.637571),(4552,22,'São João do Oeste',76,4216255,'N',-27.097483,-53.595967),(4553,22,'São João Batista',76,4216305,'N',-27.295881,-48.857004),(4554,22,'São João do Itaperiú',76,4216354,'N',-26.617454,-48.767765),(4555,22,'São João do Sul',76,4216404,'N',-29.223480,-49.806571),(4556,22,'São Joaquim',76,4216503,'N',-28.294712,-49.936742),(4557,22,'São José',76,4216602,'N',-27.590312,-48.616023),(4558,22,'São José do Cedro',76,4216701,'N',-26.456060,-53.500124),(4559,22,'São José do Cerrito',76,4216800,'N',-27.668587,-50.581386),(4560,22,'São Lourenço do Oeste',76,4216909,'N',-26.355190,-52.851334),(4561,22,'São Ludgero',76,4217006,'N',-28.326896,-49.175684),(4562,22,'São Martinho',76,4217105,'N',-28.164495,-48.977786),(4563,22,'São Miguel da Boa Vista',76,4217154,'N',-26.694475,-53.254556),(4564,22,'São Miguel do Oeste',76,4217204,'N',-26.726427,-53.518839),(4565,22,'São Pedro de Alcântara',76,4217253,'N',-27.567170,-48.787670),(4566,22,'Saudades',76,4217303,'N',-26.919757,-52.995570),(4567,22,'Schroeder',76,4217402,'N',-26.420976,-49.073260),(4568,22,'Seara',76,4217501,'N',-27.145698,-52.302855),(4569,22,'Serra Alta',76,4217550,'N',-26.724773,-53.046276),(4570,22,'Siderópolis',76,4217600,'N',-28.595102,-49.420541),(4571,22,'Sombrio',76,4217709,'N',-29.109133,-49.634210),(4572,22,'Sul Brasil',76,4217758,'N',-26.736936,-52.964205),(4573,22,'Taió',76,4217808,'N',-27.117937,-50.005096),(4574,22,'Tangará',76,4217907,'N',-27.101011,-51.245914),(4575,22,'Tigrinhos',76,4217956,'N',-26.689475,-53.157542),(4576,22,'Tijucas',76,4218004,'N',-27.239454,-48.632071),(4577,22,'Timbé do Sul',76,4218103,'N',-28.832517,-49.844118),(4578,22,'Timbó',76,4218202,'N',-26.822903,-49.277712),(4579,22,'Timbó Grande',76,4218251,'N',-26.617828,-50.674674),(4580,22,'Três Barras',76,4218301,'N',-26.114096,-50.305419),(4581,22,'Treviso',76,4218350,'N',-28.518485,-49.455933),(4582,22,'Treze de Maio',76,4218400,'N',-28.558140,-49.144815),(4583,22,'Treze Tílias',76,4218509,'N',-26.998536,-51.414675),(4584,22,'Trombudo Central',76,4218608,'N',-27.303020,-49.792478),(4585,22,'Tubarão',76,4218707,'N',-28.480034,-49.005268),(4586,22,'Tunápolis',76,4218756,'N',-26.972224,-53.641460),(4587,22,'Turvo',76,4218806,'N',-28.924749,-49.680866),(4588,22,'União do Oeste',76,4218855,'N',-26.761737,-52.851496),(4589,22,'Urubici',76,4218905,'N',-28.004555,-49.588206),(4590,22,'Urupema',76,4218954,'N',-27.952686,-49.873211),(4591,22,'Urussanga',76,4219002,'N',-28.519966,-49.319108),(4592,22,'Vargeão',76,4219101,'N',-26.863983,-52.154106),(4593,22,'Vargem',76,4219150,'N',-27.489970,-50.978151),(4594,22,'Vargem Bonita',76,4219176,'N',-27.003242,-51.744740),(4595,22,'Vidal Ramos',76,4219200,'N',-27.395779,-49.368219),(4596,22,'Videira',76,4219309,'N',-27.006129,-51.151705),(4597,22,'Vitor Meireles',76,4219358,'N',-26.881578,-49.830752),(4598,22,'Witmarsum',76,4219408,'N',-26.926743,-49.804203),(4599,22,'Xanxerê',76,4219507,'N',-26.874584,-52.404667),(4600,22,'Xavantina',76,4219606,'N',-27.070250,-52.342851),(4601,22,'Xaxim',76,4219705,'N',-26.963719,-52.534933),(4602,22,'Zortéa',76,4219853,'N',-27.450251,-51.549566),(4603,23,'Aceguá',76,4300034,'N',-31.864015,-54.164732),(4604,23,'Água Santa',76,4300059,'N',-28.175055,-52.034633),(4605,23,'Agudo',76,4300109,'N',-29.645663,-53.258692),(4606,23,'Ajuricaba',76,4300208,'N',-28.237729,-53.772819),(4607,23,'Alecrim',76,4300307,'N',-27.661074,-54.767096),(4608,23,'Alegrete',76,4300406,'N',-29.782043,-55.795870),(4609,23,'Alegria',76,4300455,'N',-27.837300,-54.057366),(4610,23,'Almirante Tamandaré do Sul',76,4300471,'N',-28.113726,-52.913715),(4611,23,'Alpestre',76,4300505,'N',-27.248769,-53.037366),(4612,23,'Alto Alegre',76,4300554,'N',-28.774746,-52.990755),(4613,23,'Alto Feliz',76,4300570,'N',-29.390139,-51.315816),(4614,23,'Alvorada',76,4300604,'N',-29.997493,-51.077729),(4615,23,'Amaral Ferrador',76,4300638,'N',-30.875148,-52.251270),(4616,23,'Ametista do Sul',76,4300646,'N',-27.356425,-53.192177),(4617,23,'André da Rocha',76,4300661,'N',-28.631977,-51.573738),(4618,23,'Anta Gorda',76,4300703,'N',-28.970884,-52.015823),(4619,23,'Antônio Prado',76,4300802,'N',-28.855438,-51.283577),(4620,23,'Arambaré',76,4300851,'N',-30.909346,-51.501318),(4621,23,'Araricá',76,4300877,'N',-29.617244,-50.925677),(4622,23,'Aratiba',76,4300901,'N',-27.394444,-52.303832),(4623,23,'Arroio do Meio',76,4301008,'N',-29.398891,-51.947449),(4624,23,'Arroio do Sal',76,4301057,'N',-29.592961,-49.932958),(4625,23,'Arroio do Padre',76,4301073,'N',-31.440644,-52.433302),(4626,23,'Arroio dos Ratos',76,4301107,'N',-30.090013,-51.733807),(4627,23,'Arroio do Tigre',76,4301206,'N',-29.335860,-53.086396),(4628,23,'Arroio Grande',76,4301305,'N',-32.236344,-53.082248),(4629,23,'Arvorezinha',76,4301404,'N',-28.873049,-52.179512),(4630,23,'Augusto Pestana',76,4301503,'N',-28.513352,-53.989470),(4631,23,'Áurea',76,4301552,'N',-27.693787,-52.054176),(4632,23,'Bagé',76,4301602,'N',-31.330502,-54.107083),(4633,23,'Balneário Pinhal',76,4301636,'N',-30.239751,-50.236701),(4634,23,'Barão',76,4301651,'N',-29.380864,-51.497538),(4635,23,'Barão de Cotegipe',76,4301701,'N',-27.617093,-52.377750),(4636,23,'Barão do Triunfo',76,4301750,'N',-30.390484,-51.737669),(4637,23,'Barracão',76,4301800,'N',-27.680230,-51.460151),(4638,23,'Barra do Guarita',76,4301859,'N',-27.188070,-53.714413),(4639,23,'Barra do Quaraí',76,4301875,'N',-30.211075,-57.557060),(4640,23,'Barra do Ribeiro',76,4301909,'N',-30.292675,-51.300874),(4641,23,'Barra do Rio Azul',76,4301925,'N',-27.408758,-52.414105),(4642,23,'Barra Funda',76,4301958,'N',-27.923826,-53.036297),(4643,23,'Barros Cassal',76,4302006,'N',-29.087704,-52.587752),(4644,23,'Benjamin Constant do Sul',76,4302055,'N',-27.508584,-52.602225),(4645,23,'Bento Gonçalves',76,4302105,'N',-29.167402,-51.515560),(4646,23,'Boa Vista das Missões',76,4302154,'N',-27.666111,-53.312756),(4647,23,'Boa Vista do Buricá',76,4302204,'N',-27.671567,-54.109481),(4648,23,'Boa Vista do Cadeado',76,4302220,'N',-28.577434,-53.813735),(4649,23,'Boa Vista do Incra',76,4302238,'N',-28.818488,-53.388705),(4650,23,'Boa Vista do Sul',76,4302253,'N',-29.350119,-51.677272),(4651,23,'Bom Jesus',76,4302303,'N',-28.670578,-50.433349),(4652,23,'Bom Princípio',76,4302352,'N',-29.494485,-51.355519),(4653,23,'Bom Progresso',76,4302378,'N',-27.546774,-53.866791),(4654,23,'Bom Retiro do Sul',76,4302402,'N',-29.607423,-51.943847),(4655,23,'Boqueirão do Leão',76,4302451,'N',-29.305158,-52.428050),(4656,23,'Bossoroca',76,4302501,'N',-28.730724,-54.909811),(4657,23,'Bozano',76,4302584,'N',-28.366290,-53.772402),(4658,23,'Braga',76,4302600,'N',-27.619193,-53.744329),(4659,23,'Brochier',76,4302659,'N',-29.555528,-51.588916),(4660,23,'Butiá',76,4302709,'N',-30.116144,-51.961483),(4661,23,'Caçapava do Sul',76,4302808,'N',-30.514743,-53.487569),(4662,23,'Cacequi',76,4302907,'N',-29.880288,-54.827728),(4663,23,'Cachoeira do Sul',76,4303004,'N',-30.045820,-52.893413),(4664,23,'Cachoeirinha',76,4303103,'N',-29.950629,-51.093677),(4665,23,'Cacique Doble',76,4303202,'N',-27.768232,-51.664113),(4666,23,'Caibaté',76,4303301,'N',-28.291075,-54.637887),(4667,23,'Caiçara',76,4303400,'N',-27.280941,-53.431895),(4668,23,'Camaquã',76,4303509,'N',-30.850704,-51.814601),(4669,23,'Camargo',76,4303558,'N',-28.589238,-52.203799),(4670,23,'Cambará do Sul',76,4303608,'N',-29.048175,-50.143765),(4671,23,'Campestre da Serra',76,4303673,'N',-28.796512,-51.095664),(4672,23,'Campina das Missões',76,4303707,'N',-27.991690,-54.845329),(4673,23,'Campinas do Sul',76,4303806,'N',-27.711601,-52.633104),(4674,23,'Campo Bom',76,4303905,'N',-29.675685,-51.058870),(4675,23,'Campo Novo',76,4304002,'N',-27.674493,-53.802814),(4676,23,'Campos Borges',76,4304101,'N',-28.892132,-52.998915),(4677,23,'Candelária',76,4304200,'N',-29.671285,-52.789668),(4678,23,'Cândido Godói',76,4304309,'N',-27.951318,-54.752834),(4679,23,'Candiota',76,4304358,'N',-31.561010,-53.677805),(4680,23,'Canela',76,4304408,'N',-29.357972,-50.814867),(4681,23,'Canguçu',76,4304507,'N',-31.393860,-52.676286),(4682,23,'Canoas',76,4304606,'N',-29.918697,-51.181030),(4683,23,'Canudos do Vale',76,4304614,'N',-29.323525,-52.232383),(4684,23,'Capão Bonito do Sul',76,4304622,'N',-28.125975,-51.395158),(4685,23,'Capão da Canoa',76,4304630,'N',-29.761467,-50.020022),(4686,23,'Capão do Cipó',76,4304655,'N',-28.931628,-54.554699),(4687,23,'Capão do Leão',76,4304663,'N',-31.766839,-52.487008),(4688,23,'Capivari do Sul',76,4304671,'N',-30.149660,-50.508808),(4689,23,'Capela de Santana',76,4304689,'N',-29.701945,-51.321769),(4690,23,'Capitão',76,4304697,'N',-29.269500,-51.985969),(4691,23,'Carazinho',76,4304705,'N',-28.286511,-52.791897),(4692,23,'Caraá',76,4304713,'N',-29.778637,-50.435756),(4693,23,'Carlos Barbosa',76,4304804,'N',-29.298297,-51.503818),(4694,23,'Carlos Gomes',76,4304853,'N',-27.714892,-51.917576),(4695,23,'Casca',76,4304903,'N',-28.559874,-51.983233),(4696,23,'Caseiros',76,4304952,'N',-28.273565,-51.692683),(4697,23,'Catuípe',76,4305009,'N',-28.254234,-54.012387),(4698,23,'Caxias do Sul',76,4305108,'N',-29.166899,-51.178860),(4699,23,'Centenário',76,4305116,'N',-27.762847,-52.002054),(4700,23,'Cerrito',76,4305124,'N',-31.852639,-52.814802),(4701,23,'Cerro Branco',76,4305132,'N',-29.656287,-52.941978),(4702,23,'Cerro Grande',76,4305157,'N',-27.607980,-53.165913),(4703,23,'Cerro Grande do Sul',76,4305173,'N',-30.602029,-51.753103),(4704,23,'Cerro Largo',76,4305207,'N',-28.147841,-54.739997),(4705,23,'Chapada',76,4305306,'N',-28.058450,-53.067277),(4706,23,'Charqueadas',76,4305355,'N',-29.956800,-51.625006),(4707,23,'Charrua',76,4305371,'N',-27.952831,-52.029412),(4708,23,'Chiapetta',76,4305405,'N',-27.917365,-53.945750),(4709,23,'Chuí',76,4305439,'N',-33.687567,-53.462675),(4710,23,'Chuvisca',76,4305447,'N',-30.757427,-51.978542),(4711,23,'Cidreira',76,4305454,'N',-30.181170,-50.209092),(4712,23,'Ciríaco',76,4305504,'N',-28.344303,-51.883031),(4713,23,'Colinas',76,4305587,'N',-29.392537,-51.868576),(4714,23,'Colorado',76,4305603,'N',-28.522948,-52.993176),(4715,23,'Condor',76,4305702,'N',-28.205296,-53.488943),(4716,23,'Constantina',76,4305801,'N',-27.730411,-52.987739),(4717,23,'Coqueiro Baixo',76,4305835,'N',-29.179257,-52.094603),(4718,23,'Coqueiros do Sul',76,4305850,'N',-28.117428,-52.778801),(4719,23,'Coronel Barros',76,4305871,'N',-28.384541,-54.073662),(4720,23,'Coronel Bicaco',76,4305900,'N',-27.717873,-53.709128),(4721,23,'Coronel Pilar',76,4305934,'N',-29.272710,-51.684935),(4722,23,'Cotiporã',76,4305959,'N',-28.998576,-51.696434),(4723,23,'Coxilha',76,4305975,'N',-28.121342,-52.300278),(4724,23,'Crissiumal',76,4306007,'N',-27.498012,-54.100035),(4725,23,'Cristal',76,4306056,'N',-30.999345,-52.049410),(4726,23,'Cristal do Sul',76,4306072,'N',-27.453630,-53.249184),(4727,23,'Cruz Alta',76,4306106,'N',-28.642447,-53.605241),(4728,23,'Cruzaltense',76,4306130,'N',-27.664888,-52.648143),(4729,23,'Cruzeiro do Sul',76,4306205,'N',-29.508291,-51.991576),(4730,23,'David Canabarro',76,4306304,'N',-28.384612,-51.852249),(4731,23,'Derrubadas',76,4306320,'N',-27.265391,-53.865119),(4732,23,'Dezesseis de Novembro',76,4306353,'N',-28.226876,-55.048209),(4733,23,'Dilermando de Aguiar',76,4306379,'N',-29.701964,-54.213560),(4734,23,'Dois Irmãos',76,4306403,'N',-29.584159,-51.087619),(4735,23,'Dois Irmãos das Missões',76,4306429,'N',-27.657537,-53.530865),(4736,23,'Dois Lajeados',76,4306452,'N',-28.975205,-51.835103),(4737,23,'Dom Feliciano',76,4306502,'N',-30.708598,-52.103934),(4738,23,'Dom Pedro de Alcântara',76,4306551,'N',-29.370187,-49.849550),(4739,23,'Dom Pedrito',76,4306601,'N',-30.981267,-54.674130),(4740,23,'Dona Francisca',76,4306700,'N',-29.624852,-53.362333),(4741,23,'Doutor Maurício Cardoso',76,4306734,'N',-27.509213,-54.358268),(4742,23,'Doutor Ricardo',76,4306759,'N',-29.099031,-51.984904),(4743,23,'Eldorado do Sul',76,4306767,'N',-29.999293,-51.310419),(4744,23,'Encantado',76,4306809,'N',-29.239917,-51.873023),(4745,23,'Encruzilhada do Sul',76,4306908,'N',-30.543657,-52.522045),(4746,23,'Engenho Velho',76,4306924,'N',-27.708587,-52.911921),(4747,23,'Entre-Ijuís',76,4306932,'N',-28.362794,-54.271432),(4748,23,'Entre Rios do Sul',76,4306957,'N',-27.528858,-52.735068),(4749,23,'Erebango',76,4306973,'N',-27.849196,-52.299711),(4750,23,'Erechim',76,4307005,'N',-27.633406,-52.275877),(4751,23,'Ernestina',76,4307054,'N',-28.497155,-52.572176),(4752,23,'Herval',76,4307104,'N',-32.026744,-53.394338),(4753,23,'Erval Grande',76,4307203,'N',-27.393337,-52.570112),(4754,23,'Erval Seco',76,4307302,'N',-27.549417,-53.509573),(4755,23,'Esmeralda',76,4307401,'N',-28.057276,-51.188794),(4756,23,'Esperança do Sul',76,4307450,'N',-27.359944,-53.992768),(4757,23,'Espumoso',76,4307500,'N',-28.731445,-52.841927),(4758,23,'Estação',76,4307559,'N',-27.909006,-52.270486),(4759,23,'Estância Velha',76,4307609,'N',-29.650148,-51.174294),(4760,23,'Esteio',76,4307708,'N',-29.852186,-51.143837),(4761,23,'Estrela',76,4307807,'N',-29.503472,-51.970260),(4762,23,'Estrela Velha',76,4307815,'N',-29.179661,-53.160294),(4763,23,'Eugênio de Castro',76,4307831,'N',-28.525060,-54.148113),(4764,23,'Fagundes Varela',76,4307864,'N',-28.882134,-51.691449),(4765,23,'Farroupilha',76,4307906,'N',-29.223679,-51.348350),(4766,23,'Faxinal do Soturno',76,4308003,'N',-29.574330,-53.439065),(4767,23,'Faxinalzinho',76,4308052,'N',-27.425416,-52.670591),(4768,23,'Fazenda Vilanova',76,4308078,'N',-29.588575,-51.821183),(4769,23,'Feliz',76,4308102,'N',-29.453971,-51.310102),(4770,23,'Flores da Cunha',76,4308201,'N',-29.031142,-51.182221),(4771,23,'Floriano Peixoto',76,4308250,'N',-27.862509,-52.085607),(4772,23,'Fontoura Xavier',76,4308300,'N',-28.982168,-52.344953),(4773,23,'Formigueiro',76,4308409,'N',-29.997634,-53.500294),(4774,23,'Forquetinha',76,4308433,'N',-29.380634,-52.096917),(4775,23,'Fortaleza dos Valos',76,4308458,'N',-28.787883,-53.235523),(4776,23,'Frederico Westphalen',76,4308508,'N',-27.358882,-53.400777),(4777,23,'Garibaldi',76,4308607,'N',-29.254549,-51.529548),(4778,23,'Garruchos',76,4308656,'N',-28.189477,-55.634072),(4779,23,'Gaurama',76,4308706,'N',-27.583858,-52.100138),(4780,23,'General Câmara',76,4308805,'N',-29.902984,-51.763431),(4781,23,'Gentil',76,4308854,'N',-28.433848,-52.034524),(4782,23,'Getúlio Vargas',76,4308904,'N',-27.875912,-52.249574),(4783,23,'Giruá',76,4309001,'N',-28.029744,-54.350840),(4784,23,'Glorinha',76,4309050,'N',-29.877134,-50.786207),(4785,23,'Gramado',76,4309100,'N',-29.379738,-50.871946),(4786,23,'Gramado dos Loureiros',76,4309126,'N',-27.444385,-52.918218),(4787,23,'Gramado Xavier',76,4309159,'N',-29.269936,-52.577838),(4788,23,'Gravataí',76,4309209,'N',-29.945519,-50.990793),(4789,23,'Guabiju',76,4309258,'N',-28.540672,-51.691047),(4790,23,'Guaíba',76,4309308,'N',-30.108602,-51.314684),(4791,23,'Guaporé',76,4309407,'N',-28.849134,-51.890651),(4792,23,'Guarani das Missões',76,4309506,'N',-28.141779,-54.560556),(4793,23,'Harmonia',76,4309555,'N',-29.549049,-51.414040),(4794,23,'Herveiras',76,4309571,'N',-29.457044,-52.650171),(4795,23,'Horizontina',76,4309605,'N',-27.630097,-54.308792),(4796,23,'Hulha Negra',76,4309654,'N',-31.405098,-53.867825),(4797,23,'Humaitá',76,4309704,'N',-27.561490,-53.976506),(4798,23,'Ibarama',76,4309753,'N',-29.420744,-53.133200),(4799,23,'Ibiaçá',76,4309803,'N',-28.048850,-51.857252),(4800,23,'Ibiraiaras',76,4309902,'N',-28.369227,-51.635324),(4801,23,'Ibirapuitã',76,4309951,'N',-28.615020,-52.519386),(4802,23,'Ibirubá',76,4310009,'N',-28.627608,-53.088354),(4803,23,'Igrejinha',76,4310108,'N',-29.572220,-50.798711),(4804,23,'Ijuí',76,4310207,'N',-28.388537,-53.918067),(4805,23,'Ilópolis',76,4310306,'N',-28.929153,-52.122157),(4806,23,'Imbé',76,4310330,'N',-29.974778,-50.130580),(4807,23,'Imigrante',76,4310363,'N',-29.352158,-51.770191),(4808,23,'Independência',76,4310405,'N',-27.847332,-54.188108),(4809,23,'Inhacorá',76,4310413,'N',-27.880454,-54.012546),(4810,23,'Ipê',76,4310439,'N',-28.818328,-51.279910),(4811,23,'Ipiranga do Sul',76,4310462,'N',-27.935984,-52.425061),(4812,23,'Iraí',76,4310504,'N',-27.192282,-53.264296),(4813,23,'Itaara',76,4310538,'N',-29.602888,-53.757849),(4814,23,'Itacurubi',76,4310553,'N',-28.802205,-55.232723),(4815,23,'Itapuca',76,4310579,'N',-28.780296,-52.172367),(4816,23,'Itaqui',76,4310603,'N',-29.128637,-56.557133),(4817,23,'Itati',76,4310652,'N',-29.500248,-50.101782),(4818,23,'Itatiba do Sul',76,4310702,'N',-27.383292,-52.452443),(4819,23,'Ivorá',76,4310751,'N',-29.519534,-53.580886),(4820,23,'Ivoti',76,4310801,'N',-29.594157,-51.159574),(4821,23,'Jaboticaba',76,4310850,'N',-27.631222,-53.284389),(4822,23,'Jacuizinho',76,4310876,'N',-29.033816,-53.056551),(4823,23,'Jacutinga',76,4310900,'N',-27.728494,-52.543173),(4824,23,'Jaguarão',76,4311007,'N',-32.563569,-53.377523),(4825,23,'Jaguari',76,4311106,'N',-29.497347,-54.693847),(4826,23,'Jaquirana',76,4311122,'N',-28.880568,-50.358037),(4827,23,'Jari',76,4311130,'N',-29.290081,-54.219936),(4828,23,'Jóia',76,4311155,'N',-28.645624,-54.115965),(4829,23,'Júlio de Castilhos',76,4311205,'N',-29.226449,-53.683100),(4830,23,'Lagoa Bonita do Sul',76,4311239,'N',-29.494131,-53.016983),(4831,23,'Lagoão',76,4311254,'N',-29.224316,-52.775029),(4832,23,'Lagoa dos Três Cantos',76,4311270,'N',-28.569468,-52.857835),(4833,23,'Lagoa Vermelha',76,4311304,'N',-28.208870,-51.527229),(4834,23,'Lajeado',76,4311403,'N',-29.465454,-51.967828),(4835,23,'Lajeado do Bugre',76,4311429,'N',-27.690769,-53.181387),(4836,23,'Lavras do Sul',76,4311502,'N',-30.812010,-53.898477),(4837,23,'Liberato Salzano',76,4311601,'N',-27.596470,-53.074861),(4838,23,'Lindolfo Collor',76,4311627,'N',-29.600804,-51.208155),(4839,23,'Linha Nova',76,4311643,'N',-29.462639,-51.201902),(4840,23,'Machadinho',76,4311700,'N',-27.568140,-51.667507),(4841,23,'Maçambará',76,4311718,'N',-29.146144,-56.063613),(4842,23,'Mampituba',76,4311734,'N',-29.210649,-49.936514),(4843,23,'Manoel Viana',76,4311759,'N',-29.580537,-55.491663),(4844,23,'Maquiné',76,4311775,'N',-29.679137,-50.203395),(4845,23,'Maratá',76,4311791,'N',-29.555323,-51.555567),(4846,23,'Marau',76,4311809,'N',-28.448454,-52.196777),(4847,23,'Marcelino Ramos',76,4311908,'N',-27.461391,-51.913319),(4848,23,'Mariana Pimentel',76,4311981,'N',-30.353622,-51.587343),(4849,23,'Mariano Moro',76,4312005,'N',-27.352613,-52.148892),(4850,23,'Marques de Souza',76,4312054,'N',-29.329137,-52.097804),(4851,23,'Mata',76,4312104,'N',-29.569392,-54.452435),(4852,23,'Mato Castelhano',76,4312138,'N',-28.275762,-52.197261),(4853,23,'Mato Leitão',76,4312153,'N',-29.524830,-52.133029),(4854,23,'Mato Queimado',76,4312179,'N',-28.255816,-54.616837),(4855,23,'Maximiliano de Almeida',76,4312203,'N',-27.634941,-51.801718),(4856,23,'Minas do Leão',76,4312252,'N',-30.122440,-52.051280),(4857,23,'Miraguaí',76,4312302,'N',-27.496076,-53.685994),(4858,23,'Montauri',76,4312351,'N',-28.653207,-52.076108),(4859,23,'Monte Alegre dos Campos',76,4312377,'N',-28.685072,-50.782834),(4860,23,'Monte Belo do Sul',76,4312385,'N',-29.159941,-51.631559),(4861,23,'Montenegro',76,4312401,'N',-29.688119,-51.461299),(4862,23,'Mormaço',76,4312427,'N',-28.693351,-52.692826),(4863,23,'Morrinhos do Sul',76,4312443,'N',-29.362964,-49.932763),(4864,23,'Morro Redondo',76,4312450,'N',-31.582203,-52.657780),(4865,23,'Morro Reuter',76,4312476,'N',-29.539342,-51.080088),(4866,23,'Mostardas',76,4312500,'N',-31.108225,-50.919159),(4867,23,'Muçum',76,4312609,'N',-29.165615,-51.866056),(4868,23,'Muitos Capões',76,4312617,'N',-28.318913,-51.184602),(4869,23,'Muliterno',76,4312625,'N',-28.330265,-51.768701),(4870,23,'Não-Me-Toque',76,4312658,'N',-28.459907,-52.819279),(4871,23,'Nicolau Vergueiro',76,4312674,'N',-28.536215,-52.462401),(4872,23,'Nonoai',76,4312708,'N',-27.354665,-52.776189),(4873,23,'Nova Alvorada',76,4312757,'N',-28.676564,-52.167134),(4874,23,'Nova Araçá',76,4312807,'N',-28.658176,-51.742165),(4875,23,'Nova Bassano',76,4312906,'N',-28.723469,-51.703231),(4876,23,'Nova Boa Vista',76,4312955,'N',-27.987968,-52.981477),(4877,23,'Nova Bréscia',76,4313003,'N',-29.216511,-52.017984),(4878,23,'Nova Candelária',76,4313011,'N',-27.612098,-54.104114),(4879,23,'Nova Esperança do Sul',76,4313037,'N',-29.404596,-54.835873),(4880,23,'Nova Hartz',76,4313060,'N',-29.585748,-50.903793),(4881,23,'Nova Pádua',76,4313086,'N',-29.030046,-51.306825),(4882,23,'Nova Palma',76,4313102,'N',-29.473026,-53.470635),(4883,23,'Nova Petrópolis',76,4313201,'N',-29.376209,-51.106954),(4884,23,'Nova Prata',76,4313300,'N',-28.783945,-51.608996),(4885,23,'Nova Ramada',76,4313334,'N',-28.082645,-53.706937),(4886,23,'Nova Roma do Sul',76,4313359,'N',-28.984749,-51.405157),(4887,23,'Nova Santa Rita',76,4313375,'N',-29.848616,-51.275211),(4888,23,'Novo Cabrais',76,4313391,'N',-29.736255,-52.955086),(4889,23,'Novo Hamburgo',76,4313409,'N',-29.686326,-51.128605),(4890,23,'Novo Machado',76,4313425,'N',-27.578401,-54.503384),(4891,23,'Novo Tiradentes',76,4313441,'N',-27.563558,-53.185703),(4892,23,'Novo Xingu',76,4313466,'N',-27.748115,-53.064109),(4893,23,'Novo Barreiro',76,4313490,'N',-27.906788,-53.113499),(4894,23,'Osório',76,4313508,'N',-29.892697,-50.266798),(4895,23,'Paim Filho',76,4313607,'N',-27.703308,-51.761597),(4896,23,'Palmares do Sul',76,4313656,'N',-30.260067,-50.506052),(4897,23,'Palmeira das Missões',76,4313706,'N',-27.900621,-53.314954),(4898,23,'Palmitinho',76,4313805,'N',-27.356020,-53.555546),(4899,23,'Panambi',76,4313904,'N',-28.292731,-53.500265),(4900,23,'Pantano Grande',76,4313953,'N',-30.194552,-52.373900),(4901,23,'Paraí',76,4314001,'N',-28.599621,-51.782096),(4902,23,'Paraíso do Sul',76,4314027,'N',-29.731314,-53.179100),(4903,23,'Pareci Novo',76,4314035,'N',-29.639389,-51.398870),(4904,23,'Parobé',76,4314050,'N',-29.631749,-50.834866),(4905,23,'Passa Sete',76,4314068,'N',-29.451666,-52.963983),(4906,23,'Passo do Sobrado',76,4314076,'N',-29.745794,-52.278758),(4907,23,'Passo Fundo',76,4314100,'N',-28.261767,-52.407095),(4908,23,'Paulo Bento',76,4314134,'N',-27.704100,-52.422436),(4909,23,'Paverama',76,4314159,'N',-29.554856,-51.730293),(4910,23,'Pedras Altas',76,4314175,'N',-31.733637,-53.587170),(4911,23,'Pedro Osório',76,4314209,'N',-31.863828,-52.826312),(4912,23,'Pejuçara',76,4314308,'N',-28.421586,-53.656542),(4913,23,'Pelotas',76,4314407,'N',-31.719598,-52.344320),(4914,23,'Picada Café',76,4314423,'N',-29.454384,-51.064050),(4915,23,'Pinhal',76,4314456,'N',-27.511674,-53.214706),(4916,23,'Pinhal da Serra',76,4314464,'N',-27.876665,-51.170103),(4917,23,'Pinhal Grande',76,4314472,'N',-29.335360,-53.338638),(4918,23,'Pinheirinho do Vale',76,4314498,'N',-27.209763,-53.619561),(4919,23,'Pinheiro Machado',76,4314506,'N',-31.580593,-53.384620),(4920,23,'Pirapó',76,4314555,'N',-28.045316,-55.200310),(4921,23,'Piratini',76,4314605,'N',-31.444112,-53.104734),(4922,23,'Planalto',76,4314704,'N',-27.331464,-53.058881),(4923,23,'Poço das Antas',76,4314753,'N',-29.454546,-51.670890),(4924,23,'Pontão',76,4314779,'N',-28.061841,-52.675399),(4925,23,'Ponte Preta',76,4314787,'N',-27.657040,-52.490232),(4926,23,'Portão',76,4314803,'N',-29.696259,-51.230150),(4927,23,'Porto Alegre',76,4314902,'S',-30.030037,-51.228660),(4928,23,'Porto Lucena',76,4315008,'N',-27.851375,-55.011562),(4929,23,'Porto Mauá',76,4315057,'N',-27.578635,-54.671952),(4930,23,'Porto Vera Cruz',76,4315073,'N',-27.734374,-54.899032),(4931,23,'Porto Xavier',76,4315107,'N',-27.905690,-55.139560),(4932,23,'Pouso Novo',76,4315131,'N',-29.169761,-52.210870),(4933,23,'Presidente Lucena',76,4315149,'N',-29.526127,-51.181600),(4934,23,'Progresso',76,4315156,'N',-29.240309,-52.301717),(4935,23,'Protásio Alves',76,4315172,'N',-28.756713,-51.473632),(4936,23,'Putinga',76,4315206,'N',-28.998756,-52.159911),(4937,23,'Quaraí',76,4315305,'N',-30.382868,-56.453647),(4938,23,'Quatro Irmãos',76,4315313,'N',-27.821197,-52.442769),(4939,23,'Quevedos',76,4315321,'N',-29.351921,-54.071255),(4940,23,'Quinze de Novembro',76,4315354,'N',-28.742361,-53.096722),(4941,23,'Redentora',76,4315404,'N',-27.661540,-53.641934),(4942,23,'Relvado',76,4315453,'N',-29.112279,-52.072949),(4943,23,'Restinga Seca',76,4315503,'N',-29.813949,-53.370569),(4944,23,'Rio dos Índios',76,4315552,'N',-27.298398,-52.840058),(4945,23,'Rio Grande',76,4315602,'N',-32.050446,-52.086770),(4946,23,'Rio Pardo',76,4315701,'N',-29.985626,-52.379018),(4947,23,'Riozinho',76,4315750,'N',-29.642286,-50.473818),(4948,23,'Roca Sales',76,4315800,'N',-29.285070,-51.863892),(4949,23,'Rodeio Bonito',76,4315909,'N',-27.470403,-53.168531),(4950,23,'Rolador',76,4315958,'N',-28.256344,-54.819427),(4951,23,'Rolante',76,4316006,'N',-29.640763,-50.573442),(4952,23,'Ronda Alta',76,4316105,'N',-27.781931,-52.806534),(4953,23,'Rondinha',76,4316204,'N',-27.831816,-52.906160),(4954,23,'Roque Gonzales',76,4316303,'N',-28.135367,-55.029186),(4955,23,'Rosário do Sul',76,4316402,'N',-30.244033,-54.945761),(4956,23,'Sagrada Família',76,4316428,'N',-27.706731,-53.135652),(4957,23,'Saldanha Marinho',76,4316436,'N',-28.403286,-53.094107),(4958,23,'Salto do Jacuí',76,4316451,'N',-29.088681,-53.213310),(4959,23,'Salvador das Missões',76,4316477,'N',-28.121697,-54.837742),(4960,23,'Salvador do Sul',76,4316501,'N',-29.439732,-51.509421),(4961,23,'Sananduva',76,4316600,'N',-27.944007,-51.813502),(4962,23,'Santa Bárbara do Sul',76,4316709,'N',-28.365167,-53.250527),(4963,23,'Santa Cecília do Sul',76,4316733,'N',-28.164451,-51.926671),(4964,23,'Santa Clara do Sul',76,4316758,'N',-29.463596,-52.080926),(4965,23,'Santa Cruz do Sul',76,4316808,'N',-29.719768,-52.429929),(4966,23,'Santa Maria',76,4316907,'N',-29.685582,-53.808675),(4967,23,'Santa Maria do Herval',76,4316956,'N',-29.503516,-50.987255),(4968,23,'Santa Margarida do Sul',76,4316972,'N',-30.345103,-54.090955),(4969,23,'Santana da Boa Vista',76,4317004,'N',-30.874703,-53.115875),(4970,23,'Sant\' Ana do Livramento',76,4317103,'N',-30.889384,-55.534814),(4971,23,'Santa Rosa',76,4317202,'N',-27.866750,-54.478224),(4972,23,'Santa Tereza',76,4317251,'N',-29.171634,-51.734344),(4973,23,'Santa Vitória do Palmar',76,4317301,'N',-33.519860,-53.367006),(4974,23,'Santiago',76,4317400,'N',-29.191460,-54.869076),(4975,23,'Santo Ângelo',76,4317509,'N',-28.301938,-54.264143),(4976,23,'Santo Antônio do Palma',76,4317558,'N',-28.497445,-52.024633),(4977,23,'Santo Antônio da Patrulha',76,4317608,'N',-29.832034,-50.520986),(4978,23,'Santo Antônio das Missões',76,4317707,'N',-28.508097,-55.224557),(4979,23,'Santo Antônio do Planalto',76,4317756,'N',-28.395929,-52.683726),(4980,23,'Santo Augusto',76,4317806,'N',-27.853491,-53.778850),(4981,23,'Santo Cristo',76,4317905,'N',-27.819930,-54.668748),(4982,23,'Santo Expedito do Sul',76,4317954,'N',-27.909369,-51.643572),(4983,23,'São Borja',76,4318002,'N',-28.662838,-56.001029),(4984,23,'São Domingos do Sul',76,4318051,'N',-28.531763,-51.893187),(4985,23,'São Francisco de Assis',76,4318101,'N',-29.552716,-55.132386),(4986,23,'São Francisco de Paula',76,4318200,'N',-29.444098,-50.582108),(4987,23,'São Gabriel',76,4318309,'N',-30.336760,-54.320478),(4988,23,'São Jerônimo',76,4318408,'N',-29.959439,-51.728178),(4989,23,'São João da Urtiga',76,4318424,'N',-27.826690,-51.825839),(4990,23,'São João do Polêsine',76,4318432,'N',-29.614676,-53.446350),(4991,23,'São Jorge',76,4318440,'N',-28.498081,-51.702969),(4992,23,'São José das Missões',76,4318457,'N',-27.778183,-53.118775),(4993,23,'São José do Herval',76,4318465,'N',-29.041447,-52.293016),(4994,23,'São José do Hortêncio',76,4318481,'N',-29.540049,-51.249598),(4995,23,'São José do Inhacorá',76,4318499,'N',-27.722585,-54.133550),(4996,23,'São José do Norte',76,4318507,'N',-32.020609,-52.034202),(4997,23,'São José do Ouro',76,4318606,'N',-27.771255,-51.594768),(4998,23,'São José do Sul',76,4318614,'N',-29.543470,-51.486384),(4999,23,'São José dos Ausentes',76,4318622,'N',-28.749906,-50.063613),(5000,23,'São Leopoldo',76,4318705,'N',-29.765867,-51.146235),(5001,23,'São Lourenço do Sul',76,4318804,'N',-31.364024,-51.976915),(5002,23,'São Luiz Gonzaga',76,4318903,'N',-28.406647,-54.959660),(5003,23,'São Marcos',76,4319000,'N',-28.969849,-51.066707),(5004,23,'São Martinho',76,4319109,'N',-27.708929,-53.966923),(5005,23,'São Martinho da Serra',76,4319125,'N',-29.534851,-53.854226),(5006,23,'São Miguel das Missões',76,4319158,'N',-28.549537,-54.561563),(5007,23,'São Nicolau',76,4319208,'N',-28.182155,-55.260100),(5008,23,'São Paulo das Missões',76,4319307,'N',-28.020485,-54.934708),(5009,23,'São Pedro da Serra',76,4319356,'N',-29.421430,-51.514327),(5010,23,'São Pedro das Missões',76,4319364,'N',-27.771308,-53.247369),(5011,23,'São Pedro do Butiá',76,4319372,'N',-28.124354,-54.888256),(5012,23,'São Pedro do Sul',76,4319406,'N',-29.617531,-54.179991),(5013,23,'São Sebastião do Caí',76,4319505,'N',-29.592080,-51.376665),(5014,23,'São Sepé',76,4319604,'N',-30.167411,-53.569644),(5015,23,'São Valentim',76,4319703,'N',-27.554318,-52.528479),(5016,23,'São Valentim do Sul',76,4319711,'N',-29.051228,-51.769671),(5017,23,'São Valério do Sul',76,4319737,'N',-27.787718,-53.935526),(5018,23,'São Vendelino',76,4319752,'N',-29.375810,-51.368653),(5019,23,'São Vicente do Sul',76,4319802,'N',-29.692061,-54.676002),(5020,23,'Sapiranga',76,4319901,'N',-29.638554,-51.003623),(5021,23,'Sapucaia do Sul',76,4320008,'N',-29.824868,-51.151875),(5022,23,'Sarandi',76,4320107,'N',-27.943595,-52.925461),(5023,23,'Seberi',76,4320206,'N',-27.480414,-53.405467),(5024,23,'Sede Nova',76,4320230,'N',-27.631163,-53.955885),(5025,23,'Segredo',76,4320263,'N',-29.342618,-52.982074),(5026,23,'Selbach',76,4320305,'N',-28.627434,-52.956525),(5027,23,'Senador Salgado Filho',76,4320321,'N',-28.027490,-54.545403),(5028,23,'Sentinela do Sul',76,4320354,'N',-30.613303,-51.577982),(5029,23,'Serafina Corrêa',76,4320404,'N',-28.710797,-51.935709),(5030,23,'Sério',76,4320453,'N',-29.386760,-52.267456),(5031,23,'Sertão',76,4320503,'N',-27.980774,-52.259738),(5032,23,'Sertão Santana',76,4320552,'N',-30.465428,-51.604250),(5033,23,'Sete de Setembro',76,4320578,'N',-28.130416,-54.463686),(5034,23,'Severiano de Almeida',76,4320602,'N',-27.432793,-52.120656),(5035,23,'Silveira Martins',76,4320651,'N',-29.645250,-53.585237),(5036,23,'Sinimbu',76,4320677,'N',-29.529068,-52.521636),(5037,23,'Sobradinho',76,4320701,'N',-29.414773,-53.025168),(5038,23,'Soledade',76,4320800,'N',-28.827738,-52.509866),(5039,23,'Tabaí',76,4320859,'N',-29.687771,-51.727475),(5040,23,'Tapejara',76,4320909,'N',-28.084171,-52.022133),(5041,23,'Tapera',76,4321006,'N',-28.624950,-52.871467),(5042,23,'Tapes',76,4321105,'N',-30.673173,-51.394499),(5043,23,'Taquara',76,4321204,'N',-29.650513,-50.781169),(5044,23,'Taquari',76,4321303,'N',-29.802801,-51.862776),(5045,23,'Taquaruçu do Sul',76,4321329,'N',-27.398036,-53.466952),(5046,23,'Tavares',76,4321352,'N',-31.288703,-51.088843),(5047,23,'Tenente Portela',76,4321402,'N',-27.372167,-53.757270),(5048,23,'Terra de Areia',76,4321436,'N',-29.577549,-50.067249),(5049,23,'Teutônia',76,4321451,'N',-29.488914,-51.812817),(5050,23,'Tio Hugo',76,4321469,'N',-28.580496,-52.593046),(5051,23,'Tiradentes do Sul',76,4321477,'N',-27.396899,-54.085392),(5052,23,'Toropi',76,4321493,'N',-29.472142,-54.228011),(5053,23,'Torres',76,4321501,'N',-29.335931,-49.730404),(5054,23,'Tramandaí',76,4321600,'N',-29.987302,-50.130377),(5055,23,'Travesseiro',76,4321626,'N',-29.299086,-52.057777),(5056,23,'Três Arroios',76,4321634,'N',-27.499516,-52.149852),(5057,23,'Três Cachoeiras',76,4321667,'N',-29.445887,-49.915639),(5058,23,'Três Coroas',76,4321709,'N',-29.516661,-50.783126),(5059,23,'Três de Maio',76,4321808,'N',-27.779660,-54.235302),(5060,23,'Três Forquilhas',76,4321832,'N',-29.538111,-50.064316),(5061,23,'Três Palmeiras',76,4321857,'N',-27.617527,-52.843714),(5062,23,'Três Passos',76,4321907,'N',-27.456160,-53.929699),(5063,23,'Trindade do Sul',76,4321956,'N',-27.517576,-52.892231),(5064,23,'Triunfo',76,4322004,'N',-29.945204,-51.715313),(5065,23,'Tucunduva',76,4322103,'N',-27.650060,-54.433129),(5066,23,'Tunas',76,4322152,'N',-29.106440,-52.957013),(5067,23,'Tupanci do Sul',76,4322186,'N',-27.925711,-51.540539),(5068,23,'Tupanciretã',76,4322202,'N',-29.077480,-53.840630),(5069,23,'Tupandi',76,4322251,'N',-29.487913,-51.419825),(5070,23,'Tuparendi',76,4322301,'N',-27.754089,-54.478508),(5071,23,'Turuçu',76,4322327,'N',-31.412366,-52.171416),(5072,23,'Ubiretama',76,4322343,'N',-28.043565,-54.684511),(5073,23,'União da Serra',76,4322350,'N',-28.779899,-52.000417),(5074,23,'Unistalda',76,4322376,'N',-29.047485,-55.150781),(5075,23,'Uruguaiana',76,4322400,'N',-29.759823,-57.081825),(5076,23,'Vacaria',76,4322509,'N',-28.502354,-50.936599),(5077,23,'Vale Verde',76,4322525,'N',-29.782575,-52.179722),(5078,23,'Vale do Sol',76,4322533,'N',-29.608828,-52.681355),(5079,23,'Vale Real',76,4322541,'N',-29.392281,-51.251197),(5080,23,'Vanini',76,4322558,'N',-28.476223,-51.844658),(5081,23,'Venâncio Aires',76,4322608,'N',-29.611653,-52.191880),(5082,23,'Vera Cruz',76,4322707,'N',-29.719858,-52.501103),(5083,23,'Veranópolis',76,4322806,'N',-28.933957,-51.552287),(5084,23,'Vespasiano Correa',76,4322855,'N',-29.069894,-51.859470),(5085,23,'Viadutos',76,4322905,'N',-27.570953,-52.023799),(5086,23,'Viamão',76,4323002,'N',-30.081897,-51.024820),(5087,23,'Vicente Dutra',76,4323101,'N',-27.168445,-53.402129),(5088,23,'Victor Graeff',76,4323200,'N',-28.560185,-52.747792),(5089,23,'Vila Flores',76,4323309,'N',-28.863000,-51.549589),(5090,23,'Vila Lângaro',76,4323358,'N',-28.107405,-52.146903),(5091,23,'Vila Maria',76,4323408,'N',-28.533314,-52.163538),(5092,23,'Vila Nova do Sul',76,4323457,'N',-30.333959,-53.879196),(5093,23,'Vista Alegre',76,4323507,'N',-27.370084,-53.492410),(5094,23,'Vista Alegre do Prata',76,4323606,'N',-28.809472,-51.786208),(5095,23,'Vista Gaúcha',76,4323705,'N',-27.289978,-53.701320),(5096,23,'Vitória das Missões',76,4323754,'N',-28.352387,-54.499055),(5097,23,'Westfalia',76,4323770,'N',-29.423450,-51.766156),(5098,23,'Xangri-lá',76,4323804,'N',-29.805378,-50.039081),(5099,24,'Água Clara',76,5000203,'N',-20.448851,-52.875118),(5100,24,'Alcinópolis',76,5000252,'N',-18.325034,-53.708090),(5101,24,'Amambai',76,5000609,'N',-23.100582,-55.243828),(5102,24,'Anastácio',76,5000708,'N',-20.482360,-55.804571),(5103,24,'Anaurilândia',76,5000807,'N',-22.182650,-52.718169),(5104,24,'Angélica',76,5000856,'N',-22.156063,-53.769730),(5105,24,'Antônio João',76,5000906,'N',-22.194685,-55.948082),(5106,24,'Aparecida do Taboado',76,5001003,'N',-20.085022,-51.097638),(5107,24,'Aquidauana',76,5001102,'N',-20.474654,-55.790616),(5108,24,'Aral Moreira',76,5001243,'N',-22.947881,-55.630761),(5109,24,'Bandeirantes',76,5001508,'N',-19.920920,-54.363194),(5110,24,'Bataguassu',76,5001904,'N',-21.715288,-52.425437),(5111,24,'Batayporã',76,5002001,'N',-22.295880,-53.274807),(5112,24,'Bela Vista',76,5002100,'N',-22.115976,-56.531315),(5113,24,'Bodoquena',76,5002159,'N',-20.554843,-56.673567),(5114,24,'Bonito',76,5002209,'N',-21.124341,-56.492859),(5115,24,'Brasilândia',76,5002308,'N',-21.247118,-52.036297),(5116,24,'Caarapó',76,5002407,'N',-22.636582,-54.826970),(5117,24,'Camapuã',76,5002605,'N',-19.535260,-54.043309),(5118,24,'Campo Grande',76,5002704,'S',-20.458030,-54.615744),(5119,24,'Caracol',76,5002803,'N',-22.012738,-57.025939),(5120,24,'Cassilândia',76,5002902,'N',-19.109407,-51.731577),(5121,24,'Chapadão do Sul',76,5002951,'N',-18.797773,-52.626356),(5122,24,'Corguinho',76,5003108,'N',-19.831218,-54.830006),(5123,24,'Coronel Sapucaia',76,5003157,'N',-23.276445,-55.541328),(5124,24,'Corumbá',76,5003207,'N',-19.006375,-57.648985),(5125,24,'Costa Rica',76,5003256,'N',-18.543548,-53.133047),(5126,24,'Coxim',76,5003306,'N',-18.508411,-54.758056),(5127,24,'Deodápolis',76,5003454,'N',-22.272949,-54.161183),(5128,24,'Dois Irmãos do Buriti',76,5003488,'N',-20.692312,-55.281914),(5129,24,'Douradina',76,5003504,'N',-22.045530,-54.607931),(5130,24,'Dourados',76,5003702,'N',-22.227236,-54.811289),(5131,24,'Eldorado',76,5003751,'N',-23.774054,-54.280028),(5132,24,'Fátima do Sul',76,5003801,'N',-22.375423,-54.516376),(5133,24,'Figueirão',76,5003900,'N',-18.675448,-53.642573),(5134,24,'Glória de Dourados',76,5004007,'N',-22.414425,-54.234629),(5135,24,'Guia Lopes da Laguna',76,5004106,'N',-21.452459,-56.108153),(5136,24,'Iguatemi',76,5004304,'N',-23.661902,-54.558601),(5137,24,'Inocência',76,5004403,'N',-19.725458,-51.927679),(5138,24,'Itaporã',76,5004502,'N',-22.082448,-54.795659),(5139,24,'Itaquiraí',76,5004601,'N',-23.490663,-54.188198),(5140,24,'Ivinhema',76,5004700,'N',-22.301604,-53.826970),(5141,24,'Japorã',76,5004809,'N',-23.894067,-54.403485),(5142,24,'Jaraguari',76,5004908,'N',-20.103740,-54.440684),(5143,24,'Jardim',76,5005004,'N',-21.479603,-56.145845),(5144,24,'Jateí',76,5005103,'N',-22.481687,-54.308054),(5145,24,'Juti',76,5005152,'N',-22.862472,-54.601323),(5146,24,'Ladário',76,5005202,'N',-19.001776,-57.602400),(5147,24,'Laguna Carapã',76,5005251,'N',-22.550582,-55.150108),(5148,24,'Maracaju',76,5005400,'N',-21.623610,-55.157140),(5149,24,'Miranda',76,5005608,'N',-20.239333,-56.390198),(5150,24,'Mundo Novo',76,5005681,'N',-23.935274,-54.281661),(5151,24,'Naviraí',76,5005707,'N',-23.059999,-54.198836),(5152,24,'Nioaque',76,5005806,'N',-21.158152,-55.833890),(5153,24,'Nova Alvorada do Sul',76,5006002,'N',-21.466634,-54.382804),(5154,24,'Nova Andradina',76,5006200,'N',-22.248759,-53.351574),(5155,24,'Novo Horizonte do Sul',76,5006259,'N',-22.654953,-53.860887),(5156,24,'Paranaíba',76,5006309,'N',-19.677372,-51.188708),(5157,24,'Paranhos',76,5006358,'N',-23.896870,-55.433030),(5158,24,'Pedro Gomes',76,5006408,'N',-18.101856,-54.552446),(5159,24,'Ponta Porã',76,5006606,'N',-22.486187,-55.710850),(5160,24,'Porto Murtinho',76,5006903,'N',-21.707325,-57.888482),(5161,24,'Ribas do Rio Pardo',76,5007109,'N',-20.443676,-53.761678),(5162,24,'Rio Brilhante',76,5007208,'N',-21.801195,-54.542242),(5163,24,'Rio Negro',76,5007307,'N',-19.447429,-54.987502),(5164,24,'Rio Verde de Mato Grosso',76,5007406,'N',-18.916586,-54.842254),(5165,24,'Rochedo',76,5007505,'N',-19.961860,-54.892772),(5166,24,'Santa Rita do Pardo',76,5007554,'N',-21.305377,-52.828071),(5167,24,'São Gabriel do Oeste',76,5007695,'N',-19.395521,-54.564569),(5168,24,'Sete Quedas',76,5007703,'N',-23.983513,-55.053315),(5169,24,'Selvíria',76,5007802,'N',-20.366743,-51.418937),(5170,24,'Sidrolândia',76,5007901,'N',-20.931054,-54.966030),(5171,24,'Sonora',76,5007935,'N',-17.581355,-54.754906),(5172,24,'Tacuru',76,5007950,'N',-23.634742,-55.020321),(5173,24,'Taquarussu',76,5007976,'N',-22.489987,-53.351919),(5174,24,'Terenos',76,5008008,'N',-20.442308,-54.865557),(5175,24,'Três Lagoas',76,5008305,'N',-20.788679,-51.710001),(5176,24,'Vicentina',76,5008404,'N',-22.401788,-54.442125),(5177,25,'Acorizal',76,5100102,'N',-15.197890,-56.371553),(5178,25,'Água Boa',76,5100201,'N',-14.049087,-52.158915),(5179,25,'Alta Floresta',76,5100250,'N',-9.871723,-56.091610),(5180,25,'Alto Araguaia',76,5100300,'N',-17.315590,-53.220260),(5181,25,'Alto Boa Vista',76,5100359,'N',-11.676745,-51.379322),(5182,25,'Alto Garças',76,5100409,'N',-16.946722,-53.528454),(5183,25,'Alto Paraguai',76,5100508,'N',-14.514712,-56.494442),(5184,25,'Alto Taquari',76,5100607,'N',-17.834744,-53.281993),(5185,25,'Apiacás',76,5100805,'N',-9.565495,-57.395402),(5186,25,'Araguaiana',76,5101001,'N',-15.731243,-51.833622),(5187,25,'Araguainha',76,5101209,'N',-16.857546,-53.035620),(5188,25,'Araputanga',76,5101258,'N',-15.468144,-58.348367),(5189,25,'Arenápolis',76,5101308,'N',-14.455522,-56.844489),(5190,25,'Aripuanã',76,5101407,'N',-10.172524,-59.448616),(5191,25,'Barão de Melgaço',76,5101605,'N',-16.195099,-55.967121),(5192,25,'Barra do Bugres',76,5101704,'N',-15.066258,-57.186409),(5193,25,'Barra do Garças',76,5101803,'N',-15.888711,-52.260330),(5194,25,'Bom Jesus do Araguaia',76,5101852,'N',-12.173598,-51.503639),(5195,25,'Brasnorte',76,5101902,'N',-12.124938,-58.002674),(5196,25,'Cáceres',76,5102504,'N',-16.074096,-57.674762),(5197,25,'Campinápolis',76,5102603,'N',-14.539617,-52.797495),(5198,25,'Campo Novo do Parecis',76,5102637,'N',-13.654733,-57.888546),(5199,25,'Campo Verde',76,5102678,'N',-15.553704,-55.171655),(5200,25,'Campos de Júlio',76,5102686,'N',-13.719923,-59.263409),(5201,25,'Canabrava do Norte',76,5102694,'N',-11.046187,-51.837758),(5202,25,'Canarana',76,5102702,'N',-13.559230,-52.273457),(5203,25,'Carlinda',76,5102793,'N',-9.966666,-55.821615),(5204,25,'Castanheira',76,5102850,'N',-11.134108,-58.613409),(5205,25,'Chapada dos Guimarães',76,5103007,'N',-15.460570,-55.745005),(5206,25,'Cláudia',76,5103056,'N',-11.505311,-54.874182),(5207,25,'Cocalinho',76,5103106,'N',-14.390366,-51.011244),(5208,25,'Colíder',76,5103205,'N',-10.804090,-55.464231),(5209,25,'Colniza',76,5103254,'N',-9.457904,-59.218949),(5210,25,'Comodoro',76,5103304,'N',-13.660560,-59.790431),(5211,25,'Confresa',76,5103353,'N',-10.640731,-51.571034),(5212,25,'Conquista D\'Oeste',76,5103361,'N',-14.536273,-59.545074),(5213,25,'Cotriguaçu',76,5103379,'N',-9.886254,-58.606895),(5214,25,'Cuiabá',76,5103403,'S',-15.569989,-56.073252),(5215,25,'Curvelândia',76,5103437,'N',-15.609306,-57.917115),(5216,25,'Denise',76,5103452,'N',-14.733816,-57.053777),(5217,25,'Diamantino',76,5103502,'N',-14.401323,-56.433566),(5218,25,'Dom Aquino',76,5103601,'N',-15.807455,-54.917481),(5219,25,'Feliz Natal',76,5103700,'N',-12.383247,-54.933904),(5220,25,'Figueirópolis D\'Oeste',76,5103809,'N',-15.446135,-58.737825),(5221,25,'Gaúcha do Norte',76,5103858,'N',-13.188043,-53.261519),(5222,25,'General Carneiro',76,5103908,'N',-15.707042,-52.759310),(5223,25,'Glória D\'Oeste',76,5103957,'N',-15.767962,-58.314486),(5224,25,'Guarantã do Norte',76,5104104,'N',-9.954073,-54.916057),(5225,25,'Guiratinga',76,5104203,'N',-16.348389,-53.760964),(5226,25,'Indiavaí',76,5104500,'N',-15.497514,-58.573992),(5227,25,'Ipiranga do Norte',76,5104526,'N',-12.236842,-56.159793),(5228,25,'Itanhangá',76,5104542,'N',-12.234769,-56.649344),(5229,25,'Itaúba',76,5104559,'N',-11.007712,-55.246689),(5230,25,'Itiquira',76,5104609,'N',-17.206825,-54.144301),(5231,25,'Jaciara',76,5104807,'N',-15.964838,-54.964188),(5232,25,'Jangada',76,5104906,'N',-15.239687,-56.490195),(5233,25,'Jauru',76,5105002,'N',-15.341896,-58.879838),(5234,25,'Juara',76,5105101,'N',-11.250360,-57.513123),(5235,25,'Juína',76,5105150,'N',-11.422018,-58.762217),(5236,25,'Juruena',76,5105176,'N',-10.329113,-58.496309),(5237,25,'Juscimeira',76,5105200,'N',-16.044685,-54.888761),(5238,25,'Lambari D\'Oeste',76,5105234,'N',-15.315501,-58.005825),(5239,25,'Lucas do Rio Verde',76,5105259,'N',-13.070465,-55.921771),(5240,25,'Luciara',76,5105309,'N',-11.228097,-50.663202),(5241,25,'Vila Bela da Santíssima Trindade',76,5105507,'N',-15.009324,-59.952558),(5242,25,'Marcelândia',76,5105580,'N',-11.080591,-54.519306),(5243,25,'Matupá',76,5105606,'N',-10.172107,-54.931806),(5244,25,'Mirassol d\'Oeste',76,5105622,'N',-15.674071,-58.097904),(5245,25,'Nobres',76,5105903,'N',-14.724500,-56.334085),(5246,25,'Nortelândia',76,5106000,'N',-14.453725,-56.802069),(5247,25,'Nossa Senhora do Livramento',76,5106109,'N',-15.789676,-56.345259),(5248,25,'Nova Bandeirantes',76,5106158,'N',-9.842953,-57.818476),(5249,25,'Nova Nazaré',76,5106174,'N',-13.987867,-51.797434),(5250,25,'Nova Lacerda',76,5106182,'N',-14.469789,-59.590331),(5251,25,'Nova Santa Helena',76,5106190,'N',-10.851000,-55.183686),(5252,25,'Nova Brasilândia',76,5106208,'N',-14.925464,-54.971909),(5253,25,'Nova Canaã do Norte',76,5106216,'N',-10.631104,-55.714877),(5254,25,'Nova Mutum',76,5106224,'N',-13.832726,-56.110005),(5255,25,'Nova Olímpia',76,5106232,'N',-14.779414,-57.282924),(5256,25,'Nova Ubiratã',76,5106240,'N',-13.033828,-55.273213),(5257,25,'Nova Xavantina',76,5106257,'N',-14.669180,-52.361193),(5258,25,'Novo Mundo',76,5106265,'N',-9.977109,-55.172019),(5259,25,'Novo Horizonte do Norte',76,5106273,'N',-11.387635,-57.317475),(5260,25,'Novo São Joaquim',76,5106281,'N',-14.886565,-53.016116),(5261,25,'Paranaíta',76,5106299,'N',-9.669655,-56.478900),(5262,25,'Paranatinga',76,5106307,'N',-14.427698,-54.054092),(5263,25,'Novo Santo Antônio',76,5106315,'N',-12.294693,-50.969173),(5264,25,'Pedra Preta',76,5106372,'N',-16.622210,-54.471396),(5265,25,'Peixoto de Azevedo',76,5106422,'N',-10.244842,-54.992297),(5266,25,'Planalto da Serra',76,5106455,'N',-14.660706,-54.783496),(5267,25,'Poconé',76,5106505,'N',-16.259509,-56.626509),(5268,25,'Pontal do Araguaia',76,5106653,'N',-15.902471,-52.258511),(5269,25,'Ponte Branca',76,5106703,'N',-16.767648,-52.835776),(5270,25,'Pontes e Lacerda',76,5106752,'N',-15.229728,-59.338002),(5271,25,'Porto Alegre do Norte',76,5106778,'N',-10.877548,-51.630880),(5272,25,'Porto dos Gaúchos',76,5106802,'N',-11.533840,-57.408354),(5273,25,'Porto Esperidião',76,5106828,'N',-15.857635,-58.469299),(5274,25,'Porto Estrela',76,5106851,'N',-15.331336,-57.201357),(5275,25,'Poxoréo',76,5107008,'N',-15.818136,-54.400733),(5276,25,'Primavera do Leste',76,5107040,'N',-15.552294,-54.300053),(5277,25,'Querência',76,5107065,'N',-12.592300,-52.209892),(5278,25,'São José dos Quatro Marcos',76,5107107,'N',-15.627106,-58.176506),(5279,25,'Reserva do Cabaçal',76,5107156,'N',-15.122410,-58.385365),(5280,25,'Ribeirão Cascalheira',76,5107180,'N',-12.932049,-51.833363),(5281,25,'Ribeirãozinho',76,5107198,'N',-16.486526,-52.695442),(5282,25,'Rio Branco',76,5107206,'N',-15.235683,-58.117939),(5283,25,'Santa Carmem',76,5107248,'N',-11.969686,-55.282223),(5284,25,'Santo Afonso',76,5107263,'N',-14.490777,-57.000504),(5285,25,'São José do Povo',76,5107297,'N',-16.466330,-54.256246),(5286,25,'São José do Rio Claro',76,5107305,'N',-13.452068,-56.721584),(5287,25,'São José do Xingu',76,5107354,'N',-10.800264,-52.739794),(5288,25,'São Pedro da Cipa',76,5107404,'N',-16.002709,-54.918993),(5289,25,'Rondolândia',76,5107578,'N',-10.844302,-61.459678),(5290,25,'Rondonópolis',76,5107602,'N',-16.470163,-54.633587),(5291,25,'Rosário Oeste',76,5107701,'N',-14.826428,-56.428293),(5292,25,'Santa Cruz do Xingu',76,5107743,'N',-10.152450,-52.398616),(5293,25,'Salto do Céu',76,5107750,'N',-15.135825,-58.126752),(5294,25,'Santa Rita do Trivelato',76,5107768,'N',-13.816190,-55.277693),(5295,25,'Santa Terezinha',76,5107776,'N',-10.466112,-50.506266),(5296,25,'Santo Antônio do Leste',76,5107792,'N',-14.800813,-53.611724),(5297,25,'Santo Antônio do Leverger',76,5107800,'N',-15.869179,-56.094162),(5298,25,'São Félix do Araguaia',76,5107859,'N',-11.616082,-50.661986),(5299,25,'Sapezal',76,5107875,'N',-13.538195,-58.812138),(5300,25,'Serra Nova Dourada',76,5107883,'N',-12.089272,-51.399593),(5301,25,'Sinop',76,5107909,'N',-11.858005,-55.500922),(5302,25,'Sorriso',76,5107925,'N',-12.551777,-55.725914),(5303,25,'Tabaporã',76,5107941,'N',-11.307508,-56.824834),(5304,25,'Tangará da Serra',76,5107958,'N',-14.623785,-57.491299),(5305,25,'Tapurah',76,5108006,'N',-12.732069,-56.519486),(5306,25,'Terra Nova do Norte',76,5108055,'N',-10.597128,-55.115951),(5307,25,'Tesouro',76,5108105,'N',-16.075237,-53.555844),(5308,25,'Torixoréu',76,5108204,'N',-16.197526,-52.558839),(5309,25,'União do Sul',76,5108303,'N',-11.535511,-54.374844),(5310,25,'Vale de São Domingos',76,5108352,'N',-15.295898,-59.064571),(5311,25,'Várzea Grande',76,5108402,'N',-15.658065,-56.144664),(5312,25,'Vera',76,5108501,'N',-12.284049,-55.300919),(5313,25,'Vila Rica',76,5108600,'N',-10.013352,-51.116823),(5314,25,'Nova Guarita',76,5108808,'N',-10.308846,-55.403070),(5315,25,'Nova Marilândia',76,5108857,'N',-14.362451,-56.973177),(5316,25,'Nova Maringá',76,5108907,'N',-13.011427,-57.098552),(5317,25,'Nova Monte Verde',76,5108956,'N',-9.972617,-57.472369),(5318,26,'Abadia de Goiás',76,5200050,'N',-16.758812,-49.440548),(5319,26,'Abadiânia',76,5200100,'N',-16.182672,-48.718812),(5320,26,'Acreúna',76,5200134,'N',-17.398156,-50.374973),(5321,26,'Adelândia',76,5200159,'N',-16.415002,-50.163147),(5322,26,'Água Fria de Goiás',76,5200175,'N',-14.985535,-47.782212),(5323,26,'Água Limpa',76,5200209,'N',-18.071406,-48.761241),(5324,26,'Águas Lindas de Goiás',76,5200258,'N',-15.737939,-48.283444),(5325,26,'Alexânia',76,5200308,'N',-16.086168,-48.509636),(5326,26,'Aloândia',76,5200506,'N',-17.724909,-49.482321),(5327,26,'Alto Horizonte',76,5200555,'N',-14.199227,-49.332749),(5328,26,'Alto Paraíso de Goiás',76,5200605,'N',-14.136245,-47.519093),(5329,26,'Alvorada do Norte',76,5200803,'N',-14.482839,-46.515638),(5330,26,'Amaralina',76,5200829,'N',-13.925482,-49.295377),(5331,26,'Americano do Brasil',76,5200852,'N',-16.255100,-49.983642),(5332,26,'Amorinópolis',76,5200902,'N',-16.617912,-51.097167),(5333,26,'Anápolis',76,5201108,'N',-16.328826,-48.957218),(5334,26,'Anhanguera',76,5201207,'N',-18.334366,-48.217404),(5335,26,'Anicuns',76,5201306,'N',-16.460741,-49.959068),(5336,26,'Aparecida de Goiânia',76,5201405,'N',-16.822147,-49.243326),(5337,26,'Aparecida do Rio Doce',76,5201454,'N',-18.296984,-51.151492),(5338,26,'Aporé',76,5201504,'N',-18.958877,-51.928073),(5339,26,'Araçu',76,5201603,'N',-16.354335,-49.681682),(5340,26,'Aragarças',76,5201702,'N',-15.897768,-52.246855),(5341,26,'Aragoiânia',76,5201801,'N',-16.915640,-49.450903),(5342,26,'Araguapaz',76,5202155,'N',-15.088530,-50.634742),(5343,26,'Arenópolis',76,5202353,'N',-16.387546,-51.560029),(5344,26,'Aruanã',76,5202502,'N',-14.903332,-51.080885),(5345,26,'Aurilândia',76,5202601,'N',-16.676725,-50.464766),(5346,26,'Avelinópolis',76,5202809,'N',-16.461939,-49.754226),(5347,26,'Baliza',76,5203104,'N',-16.201637,-52.542745),(5348,26,'Barro Alto',76,5203203,'N',-14.973709,-48.915707),(5349,26,'Bela Vista de Goiás',76,5203302,'N',-16.973121,-48.952412),(5350,26,'Bom Jardim de Goiás',76,5203401,'N',-16.200685,-52.175368),(5351,26,'Bom Jesus de Goiás',76,5203500,'N',-18.214767,-49.739411),(5352,26,'Bonfinópolis',76,5203559,'N',-16.617528,-48.970580),(5353,26,'Bonópolis',76,5203575,'N',-13.649747,-49.837184),(5354,26,'Brazabrantes',76,5203609,'N',-16.425715,-49.388667),(5355,26,'Britânia',76,5203807,'N',-15.238586,-51.167285),(5356,26,'Buriti Alegre',76,5203906,'N',-18.133055,-49.040065),(5357,26,'Buriti de Goiás',76,5203939,'N',-16.181397,-50.434435),(5358,26,'Buritinópolis',76,5203962,'N',-14.456023,-46.431077),(5359,26,'Cabeceiras',76,5204003,'N',-15.801156,-46.929476),(5360,26,'Cachoeira Alta',76,5204102,'N',-18.751004,-50.944708),(5361,26,'Cachoeira de Goiás',76,5204201,'N',-16.666733,-50.643148),(5362,26,'Cachoeira Dourada',76,5204250,'N',-18.489036,-49.470918),(5363,26,'Caçu',76,5204300,'N',-18.563051,-51.133529),(5364,26,'Caiapônia',76,5204409,'N',-16.953458,-51.809480),(5365,26,'Caldas Novas',76,5204508,'N',-17.743539,-48.621197),(5366,26,'Caldazinha',76,5204557,'N',-16.714777,-49.003373),(5367,26,'Campestre de Goiás',76,5204607,'N',-16.762309,-49.695534),(5368,26,'Campinaçu',76,5204656,'N',-13.786349,-48.569834),(5369,26,'Campinorte',76,5204706,'N',-14.310598,-49.156347),(5370,26,'Campo Alegre de Goiás',76,5204805,'N',-17.640555,-47.778225),(5371,26,'Campo Limpo de Goiás',76,5204854,'N',-16.298623,-49.089937),(5372,26,'Campos Belos',76,5204904,'N',-13.036724,-46.770783),(5373,26,'Campos Verdes',76,5204953,'N',-14.273267,-49.663265),(5374,26,'Carmo do Rio Verde',76,5205000,'N',-15.357714,-49.702865),(5375,26,'Castelândia',76,5205059,'N',-18.089845,-50.229250),(5376,26,'Catalão',76,5205109,'N',-18.169573,-47.947703),(5377,26,'Caturaí',76,5205208,'N',-16.446762,-49.502853),(5378,26,'Cavalcante',76,5205307,'N',-13.799279,-47.463436),(5379,26,'Ceres',76,5205406,'N',-15.307028,-49.603346),(5380,26,'Cezarina',76,5205455,'N',-16.967792,-49.773169),(5381,26,'Chapadão do Céu',76,5205471,'N',-18.394032,-52.670801),(5382,26,'Cidade Ocidental',76,5205497,'N',-16.110959,-47.937131),(5383,26,'Cocalzinho de Goiás',76,5205513,'N',-15.781737,-48.768967),(5384,26,'Colinas do Sul',76,5205521,'N',-14.150185,-48.076843),(5385,26,'Córrego do Ouro',76,5205703,'N',-16.295358,-50.555819),(5386,26,'Corumbá de Goiás',76,5205802,'N',-15.927905,-48.810345),(5387,26,'Corumbaíba',76,5205901,'N',-18.136906,-48.556102),(5388,26,'Cristalina',76,5206206,'N',-16.769434,-47.606818),(5389,26,'Cristianópolis',76,5206305,'N',-17.195589,-48.712298),(5390,26,'Crixás',76,5206404,'N',-14.537590,-49.967204),(5391,26,'Cromínia',76,5206503,'N',-17.281855,-49.380505),(5392,26,'Cumari',76,5206602,'N',-18.261382,-48.156677),(5393,26,'Damianópolis',76,5206701,'N',-14.557435,-46.173536),(5394,26,'Damolândia',76,5206800,'N',-16.254802,-49.361106),(5395,26,'Davinópolis',76,5206909,'N',-18.158564,-47.559368),(5396,26,'Diorama',76,5207105,'N',-16.231709,-51.258893),(5397,26,'Doverlândia',76,5207253,'N',-16.721037,-52.313980),(5398,26,'Edealina',76,5207352,'N',-17.422892,-49.664695),(5399,26,'Edéia',76,5207402,'N',-17.338080,-49.934424),(5400,26,'Estrela do Norte',76,5207501,'N',-13.867027,-49.073401),(5401,26,'Faina',76,5207535,'N',-15.442869,-50.368704),(5402,26,'Fazenda Nova',76,5207600,'N',-16.177514,-50.787364),(5403,26,'Firminópolis',76,5207808,'N',-16.576461,-50.303634),(5404,26,'Flores de Goiás',76,5207907,'N',-14.450174,-47.045083),(5405,26,'Formosa',76,5208004,'N',-15.540945,-47.335816),(5406,26,'Formoso',76,5208103,'N',-13.655780,-48.888090),(5407,26,'Gameleira de Goiás',76,5208152,'N',-16.482737,-48.645705),(5408,26,'Divinópolis de Goiás',76,5208301,'N',-13.296813,-46.393889),(5409,26,'Goianápolis',76,5208400,'N',-16.500682,-49.017342),(5410,26,'Goiandira',76,5208509,'N',-18.132625,-48.088471),(5411,26,'Goianésia',76,5208608,'N',-15.322289,-49.115810),(5412,26,'Goiânia',76,5208707,'S',-16.673310,-49.255814),(5413,26,'Goianira',76,5208806,'N',-16.503192,-49.428777),(5414,26,'Goiás',76,5208905,'N',-15.935743,-50.141384),(5415,26,'Goiatuba',76,5209101,'N',-18.010633,-49.366643),(5416,26,'Gouvelândia',76,5209150,'N',-18.438279,-50.137999),(5417,26,'Guapó',76,5209200,'N',-16.831323,-49.536733),(5418,26,'Guaraíta',76,5209291,'N',-15.629428,-50.031778),(5419,26,'Guarani de Goiás',76,5209408,'N',-13.938911,-46.480376),(5420,26,'Guarinos',76,5209457,'N',-14.733740,-49.701188),(5421,26,'Heitoraí',76,5209606,'N',-15.720216,-49.829340),(5422,26,'Hidrolândia',76,5209705,'N',-16.960945,-49.229784),(5423,26,'Hidrolina',76,5209804,'N',-14.727658,-49.459897),(5424,26,'Iaciara',76,5209903,'N',-14.100818,-46.631968),(5425,26,'Inaciolândia',76,5209937,'N',-18.486355,-49.987578),(5426,26,'Indiara',76,5209952,'N',-17.137261,-49.989053),(5427,26,'Inhumas',76,5210000,'N',-16.359960,-49.500225),(5428,26,'Ipameri',76,5210109,'N',-17.722177,-48.158668),(5429,26,'Ipiranga de Goiás',76,5210158,'N',-15.172012,-49.667405),(5430,26,'Iporá',76,5210208,'N',-16.440003,-51.119595),(5431,26,'Israelândia',76,5210307,'N',-16.312801,-50.903440),(5432,26,'Itaberaí',76,5210406,'N',-16.021130,-49.803479),(5433,26,'Itaguari',76,5210562,'N',-15.909094,-49.609760),(5434,26,'Itaguaru',76,5210604,'N',-15.763794,-49.632051),(5435,26,'Itajá',76,5210802,'N',-19.062235,-51.544684),(5436,26,'Itapaci',76,5210901,'N',-14.950403,-49.554156),(5437,26,'Itapirapuã',76,5211008,'N',-15.818862,-50.609163),(5438,26,'Itapuranga',76,5211206,'N',-15.562331,-49.944493),(5439,26,'Itarumã',76,5211305,'N',-18.761660,-51.348890),(5440,26,'Itauçu',76,5211404,'N',-16.203347,-49.601134),(5441,26,'Itumbiara',76,5211503,'N',-18.417682,-49.220870),(5442,26,'Ivolândia',76,5211602,'N',-16.603403,-50.794701),(5443,26,'Jandaia',76,5211701,'N',-17.049421,-50.148008),(5444,26,'Jaraguá',76,5211800,'N',-15.753114,-49.330144),(5445,26,'Jataí',76,5211909,'N',-17.886232,-51.720818),(5446,26,'Jaupaci',76,5212006,'N',-16.178036,-50.951719),(5447,26,'Jesúpolis',76,5212055,'N',-15.951598,-49.376219),(5448,26,'Joviânia',76,5212105,'N',-17.807109,-49.629940),(5449,26,'Jussara',76,5212204,'N',-15.866349,-50.866127),(5450,26,'Lagoa Santa',76,5212253,'N',-19.183607,-51.404616),(5451,26,'Leopoldo de Bulhões',76,5212303,'N',-16.618965,-48.746452),(5452,26,'Luziânia',76,5212501,'N',-16.258541,-47.955720),(5453,26,'Mairipotaba',76,5212600,'N',-17.297395,-49.500880),(5454,26,'Mambaí',76,5212709,'N',-14.487534,-46.113947),(5455,26,'Mara Rosa',76,5212808,'N',-14.008569,-49.179823),(5456,26,'Marzagão',76,5212907,'N',-17.981610,-48.637174),(5457,26,'Matrinchã',76,5212956,'N',-15.437188,-50.746474),(5458,26,'Maurilândia',76,5213004,'N',-17.972083,-50.338911),(5459,26,'Mimoso de Goiás',76,5213053,'N',-15.059293,-48.163273),(5460,26,'Minaçu',76,5213087,'N',-13.535094,-48.223908),(5461,26,'Mineiros',76,5213103,'N',-17.566168,-52.554667),(5462,26,'Moiporá',76,5213400,'N',-16.546900,-50.736098),(5463,26,'Monte Alegre de Goiás',76,5213509,'N',-13.257326,-46.885799),(5464,26,'Montes Claros de Goiás',76,5213707,'N',-16.004760,-51.400499),(5465,26,'Montividiu',76,5213756,'N',-17.444462,-51.175145),(5466,26,'Montividiu do Norte',76,5213772,'N',-13.353094,-48.688822),(5467,26,'Morrinhos',76,5213806,'N',-17.735271,-49.110177),(5468,26,'Morro Agudo de Goiás',76,5213855,'N',-15.312198,-50.057447),(5469,26,'Mossâmedes',76,5213905,'N',-16.119654,-50.218050),(5470,26,'Mozarlândia',76,5214002,'N',-14.747589,-50.570214),(5471,26,'Mundo Novo',76,5214051,'N',-13.765577,-50.285688),(5472,26,'Mutunópolis',76,5214101,'N',-13.723611,-49.274445),(5473,26,'Nazário',76,5214408,'N',-16.580528,-49.881988),(5474,26,'Nerópolis',76,5214507,'N',-16.404044,-49.224463),(5475,26,'Niquelândia',76,5214606,'N',-14.469110,-48.458585),(5476,26,'Nova América',76,5214705,'N',-15.018386,-49.899315),(5477,26,'Nova Aurora',76,5214804,'N',-18.065102,-48.260458),(5478,26,'Nova Crixás',76,5214838,'N',-14.095611,-50.342000),(5479,26,'Nova Glória',76,5214861,'N',-15.149277,-49.578785),(5480,26,'Nova Iguaçu de Goiás',76,5214879,'N',-14.283477,-49.390770),(5481,26,'Nova Roma',76,5214903,'N',-13.742906,-46.890326),(5482,26,'Nova Veneza',76,5215009,'N',-16.365233,-49.310898),(5483,26,'Novo Brasil',76,5215207,'N',-16.032671,-50.716314),(5484,26,'Novo Gama',76,5215231,'N',-16.056078,-48.037211),(5485,26,'Novo Planalto',76,5215256,'N',-13.240952,-49.512050),(5486,26,'Orizona',76,5215306,'N',-17.034766,-48.302148),(5487,26,'Ouro Verde de Goiás',76,5215405,'N',-16.210828,-49.203868),(5488,26,'Ouvidor',76,5215504,'N',-18.225569,-47.832604),(5489,26,'Padre Bernardo',76,5215603,'N',-15.164355,-48.285966),(5490,26,'Palestina de Goiás',76,5215652,'N',-16.741432,-51.530032),(5491,26,'Palmeiras de Goiás',76,5215702,'N',-16.806988,-49.922787),(5492,26,'Palmelo',76,5215801,'N',-17.323017,-48.423096),(5493,26,'Palminópolis',76,5215900,'N',-16.799135,-50.165494),(5494,26,'Panamá',76,5216007,'N',-18.182455,-49.353482),(5495,26,'Paranaiguara',76,5216304,'N',-18.905160,-50.652204),(5496,26,'Paraúna',76,5216403,'N',-16.946697,-50.457641),(5497,26,'Perolândia',76,5216452,'N',-17.526454,-52.066577),(5498,26,'Petrolina de Goiás',76,5216809,'N',-16.097418,-49.338798),(5499,26,'Pilar de Goiás',76,5216908,'N',-14.766090,-49.575114),(5500,26,'Piracanjuba',76,5217104,'N',-17.301810,-49.024560),(5501,26,'Piranhas',76,5217203,'N',-16.420706,-51.821801),(5502,26,'Pirenópolis',76,5217302,'N',-15.853342,-48.962527),(5503,26,'Pires do Rio',76,5217401,'N',-17.300581,-48.280293),(5504,26,'Planaltina',76,5217609,'N',-15.453110,-47.614847),(5505,26,'Pontalina',76,5217708,'N',-17.514984,-49.448181),(5506,26,'Porangatu',76,5218003,'N',-13.442186,-49.146226),(5507,26,'Porteirão',76,5218052,'N',-17.815401,-50.164250),(5508,26,'Portelândia',76,5218102,'N',-17.352924,-52.680684),(5509,26,'Posse',76,5218300,'N',-14.087734,-46.362010),(5510,26,'Professor Jamil',76,5218391,'N',-17.247567,-49.236697),(5511,26,'Quirinópolis',76,5218508,'N',-18.451507,-50.452263),(5512,26,'Rialma',76,5218607,'N',-15.315404,-49.584370),(5513,26,'Rianápolis',76,5218706,'N',-15.442467,-49.510117),(5514,26,'Rio Quente',76,5218789,'N',-17.767746,-48.772668),(5515,26,'Rio Verde',76,5218805,'N',-17.794543,-50.929681),(5516,26,'Rubiataba',76,5218904,'N',-15.164313,-49.803410),(5517,26,'Sanclerlândia',76,5219001,'N',-16.200663,-50.315867),(5518,26,'Santa Bárbara de Goiás',76,5219100,'N',-16.577476,-49.689783),(5519,26,'Santa Cruz de Goiás',76,5219209,'N',-17.321553,-48.476690),(5520,26,'Santa Fé de Goiás',76,5219258,'N',-15.770785,-51.109416),(5521,26,'Santa Helena de Goiás',76,5219308,'N',-17.812355,-50.598443),(5522,26,'Santa Isabel',76,5219357,'N',-15.302398,-49.428178),(5523,26,'Santa Rita do Araguaia',76,5219407,'N',-17.326351,-53.205147),(5524,26,'Santa Rita do Novo Destino',76,5219456,'N',-15.135391,-49.120126),(5525,26,'Santa Rosa de Goiás',76,5219506,'N',-16.079891,-49.491579),(5526,26,'Santa Tereza de Goiás',76,5219605,'N',-13.712551,-49.014997),(5527,26,'Santa Terezinha de Goiás',76,5219704,'N',-14.433476,-49.706202),(5528,26,'Santo Antônio da Barra',76,5219712,'N',-17.556108,-50.634054),(5529,26,'Santo Antônio de Goiás',76,5219738,'N',-16.483121,-49.310243),(5530,26,'Santo Antônio do Descoberto',76,5219753,'N',-15.944224,-48.256006),(5531,26,'São Domingos',76,5219803,'N',-13.402013,-46.315105),(5532,26,'São Francisco de Goiás',76,5219902,'N',-15.922706,-49.262009),(5533,26,'São João d\'Aliança',76,5220009,'N',-14.708216,-47.518802),(5534,26,'São João da Paraúna',76,5220058,'N',-16.814524,-50.405063),(5535,26,'São Luís de Montes Belos',76,5220108,'N',-16.519810,-50.374288),(5536,26,'São Luíz do Norte',76,5220157,'N',-14.862079,-49.331936),(5537,26,'São Miguel do Araguaia',76,5220207,'N',-13.276024,-50.163838),(5538,26,'São Miguel do Passa Quatro',76,5220264,'N',-17.050934,-48.664718),(5539,26,'São Patrício',76,5220280,'N',-15.352490,-49.816346),(5540,26,'São Simão',76,5220405,'N',-18.989739,-50.549700),(5541,26,'Senador Canedo',76,5220454,'N',-16.718575,-49.087967),(5542,26,'Serranópolis',76,5220504,'N',-18.307724,-51.957778),(5543,26,'Silvânia',76,5220603,'N',-16.664617,-48.610570),(5544,26,'Simolândia',76,5220686,'N',-14.470323,-46.484284),(5545,26,'Sítio d\'Abadia',76,5220702,'N',-14.803994,-46.252490),(5546,26,'Taquaral de Goiás',76,5221007,'N',-16.050019,-49.602219),(5547,26,'Teresina de Goiás',76,5221080,'N',-13.776863,-47.263520),(5548,26,'Terezópolis de Goiás',76,5221197,'N',-16.478960,-49.091785),(5549,26,'Três Ranchos',76,5221304,'N',-18.360799,-47.779339),(5550,26,'Trindade',76,5221403,'N',-16.655350,-49.489099),(5551,26,'Trombas',76,5221452,'N',-13.508468,-48.744709),(5552,26,'Turvânia',76,5221502,'N',-16.609804,-50.131953),(5553,26,'Turvelândia',76,5221551,'N',-17.850952,-50.307479),(5554,26,'Uirapuru',76,5221577,'N',-14.288654,-49.921075),(5555,26,'Uruaçu',76,5221601,'N',-14.520220,-49.147486),(5556,26,'Uruana',76,5221700,'N',-15.501165,-49.679481),(5557,26,'Urutaí',76,5221809,'N',-17.459753,-48.204653),(5558,26,'Valparaíso de Goiás',76,5221858,'N',-16.069575,-47.984111),(5559,26,'Varjão',76,5221908,'N',-17.041225,-49.628167),(5560,26,'Vianópolis',76,5222005,'N',-16.742081,-48.513471),(5561,26,'Vicentinópolis',76,5222054,'N',-17.732662,-49.807239),(5562,26,'Vila Boa',76,5222203,'N',-15.034889,-47.057361),(5563,26,'Vila Propício',76,5222302,'N',-15.454635,-48.882422),(5564,27,'Brasília',76,5300108,'S',-15.794087,-47.887905); +/*!40000 ALTER TABLE `cidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `comentario` +-- + +DROP TABLE IF EXISTS `comentario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `comentario` ( + `id_comentario` int(11) NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `id_rel_protocolo_protocolo` bigint(20) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `descricao` varchar(4000) NOT NULL, + `dth_comentario` datetime NOT NULL, + PRIMARY KEY (`id_comentario`), + KEY `fk_comentario_procedimento` (`id_procedimento`), + KEY `fk_comentario_rel_prot_prot` (`id_rel_protocolo_protocolo`), + KEY `fk_comentario_unidade` (`id_unidade`), + KEY `fk_comentario_usuario` (`id_usuario`), + KEY `i01_comentario` (`id_procedimento`,`id_rel_protocolo_protocolo`), + CONSTRAINT `fk_comentario_procedimento` FOREIGN KEY (`id_procedimento`) REFERENCES `procedimento` (`id_procedimento`), + CONSTRAINT `fk_comentario_rel_prot_prot` FOREIGN KEY (`id_rel_protocolo_protocolo`) REFERENCES `rel_protocolo_protocolo` (`id_rel_protocolo_protocolo`), + CONSTRAINT `fk_comentario_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_comentario_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `comentario` +-- + +LOCK TABLES `comentario` WRITE; +/*!40000 ALTER TABLE `comentario` DISABLE KEYS */; +/*!40000 ALTER TABLE `comentario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conjunto_estilos` +-- + +DROP TABLE IF EXISTS `conjunto_estilos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `conjunto_estilos` ( + `id_conjunto_estilos` int(11) NOT NULL, + `sin_ultimo` char(1) NOT NULL, + PRIMARY KEY (`id_conjunto_estilos`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conjunto_estilos` +-- + +LOCK TABLES `conjunto_estilos` WRITE; +/*!40000 ALTER TABLE `conjunto_estilos` DISABLE KEYS */; +INSERT INTO `conjunto_estilos` VALUES (1,'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,'S'); +/*!40000 ALTER TABLE `conjunto_estilos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conjunto_estilos_item` +-- + +DROP TABLE IF EXISTS `conjunto_estilos_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `conjunto_estilos_item` ( + `id_conjunto_estilos_item` int(11) NOT NULL, + `id_conjunto_estilos` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `formatacao` longtext NOT NULL, + PRIMARY KEY (`id_conjunto_estilos_item`), + KEY `fk_conj_est_item_conj_est` (`id_conjunto_estilos`), + CONSTRAINT `fk_conj_est_item_conj_est` FOREIGN KEY (`id_conjunto_estilos`) REFERENCES `conjunto_estilos` (`id_conjunto_estilos`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conjunto_estilos_item` +-- + +LOCK TABLES `conjunto_estilos_item` WRITE; +/*!40000 ALTER TABLE `conjunto_estilos_item` DISABLE KEYS */; +INSERT INTO `conjunto_estilos_item` VALUES (1,1,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(2,1,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(3,1,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(4,1,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(5,1,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(6,1,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(7,1,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(8,1,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(9,1,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(10,1,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(11,1,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(12,1,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(13,1,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(14,1,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(15,1,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(16,17,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(17,17,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(18,17,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(19,17,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(20,17,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(21,17,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(22,17,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(23,17,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(24,17,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(25,17,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(26,17,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(27,17,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(28,17,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(29,17,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(30,17,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(31,18,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(32,18,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(33,18,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(34,18,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(35,18,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(36,18,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(37,18,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(38,18,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(39,18,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(40,18,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(41,18,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(42,18,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(43,18,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(44,18,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(45,18,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(46,19,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(47,19,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(48,19,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(49,19,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(50,19,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(51,19,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(52,19,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(53,19,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(54,19,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(55,19,'Tabela_Texto_8','\'font-size\':\'9pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(56,19,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(57,19,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(58,19,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(59,19,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(60,19,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(61,20,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(62,20,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(63,20,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(64,20,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(65,20,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(66,20,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(67,20,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(68,20,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(69,20,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(70,20,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(71,20,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(72,20,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(73,20,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(74,20,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(75,20,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(76,21,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(77,21,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(78,21,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(79,21,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(80,21,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(81,21,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(82,21,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(83,21,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(84,21,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(85,21,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(86,21,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(87,21,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(88,21,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(89,21,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(90,21,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(91,22,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(92,22,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(93,22,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(94,22,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(95,22,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(96,22,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(97,22,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(98,22,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(99,22,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(100,22,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(101,22,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(102,22,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(103,22,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(104,22,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(105,22,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(106,23,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(107,23,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(108,23,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(109,23,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(110,23,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(111,23,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(112,23,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(113,23,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(114,23,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(115,23,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(116,23,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(117,23,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(118,23,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(119,23,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(120,23,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(121,24,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(122,24,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(123,24,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(124,24,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(125,24,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(126,24,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(127,24,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(128,24,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(129,24,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(130,24,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(131,24,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(132,24,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(133,24,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(134,24,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(135,24,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(136,25,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(137,25,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(138,25,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(139,25,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(140,25,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(141,25,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(142,25,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(143,25,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(144,25,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(145,25,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(146,25,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(147,25,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(148,25,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(149,25,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(150,25,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(151,26,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(152,26,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(153,26,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(154,26,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(155,26,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(156,26,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(157,26,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(158,26,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(159,26,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(160,26,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(161,26,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(162,26,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(163,26,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(164,26,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(165,26,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(166,27,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(167,27,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(168,27,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(169,27,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(170,27,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(171,27,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(172,27,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(173,27,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(174,27,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(175,27,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(176,27,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(177,27,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(178,27,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(179,27,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(180,27,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(181,28,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(182,28,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(183,28,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(184,28,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(185,28,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(186,28,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(187,28,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(188,28,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(189,28,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(190,28,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(191,28,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(192,28,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(193,28,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(194,28,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(195,28,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(196,29,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(197,29,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(198,29,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(199,29,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(200,29,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(201,29,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(202,29,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(203,29,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(204,29,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(205,29,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(206,29,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(207,29,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(208,29,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(209,29,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(210,29,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(211,30,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(212,30,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(213,30,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(214,30,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(215,30,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(216,30,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(217,30,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(218,30,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(219,30,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(220,30,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(221,30,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(222,30,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(223,30,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(224,30,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(225,30,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(226,31,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(227,31,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(228,31,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(229,31,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(230,31,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(231,31,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(232,31,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(233,31,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(234,31,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(235,31,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(236,31,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(237,31,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(238,31,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(239,31,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(240,31,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(241,32,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(242,32,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(243,32,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(244,32,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(245,32,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Times New Roman\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(246,32,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(247,32,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(248,32,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(249,32,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(250,32,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(251,32,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(252,32,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(253,32,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(254,32,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(255,32,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(256,33,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(257,33,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(258,33,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(259,33,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(260,33,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(261,33,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(262,33,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(263,33,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(264,33,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Courier New\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(265,33,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(266,33,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(267,33,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(268,33,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(269,33,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(270,33,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(271,34,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(272,34,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(273,34,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(274,34,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(275,34,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(276,34,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(277,34,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(278,34,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(279,34,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(280,34,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(281,34,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(282,34,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(283,34,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(284,34,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(285,34,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(286,35,'Texto_Alinhado_Esquerda_Espaçamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(287,35,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(288,35,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(289,35,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(290,35,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(291,35,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(292,35,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(293,35,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(294,35,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(295,35,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(296,35,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(297,35,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(298,35,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(299,35,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(300,35,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(301,35,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(302,36,'Teste','Teste'),(303,36,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(304,36,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(305,36,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(306,36,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(307,36,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(308,36,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(309,36,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(310,36,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(311,36,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(312,36,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(313,36,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(314,36,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(315,36,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(316,36,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(317,36,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(318,36,'Texto_Alinhado_Esquerda_Espaçamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(319,37,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(320,37,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(321,37,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(322,37,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(323,37,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(324,37,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(325,37,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(326,37,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(327,37,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(328,37,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(329,37,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(330,37,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(331,37,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(332,37,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(333,37,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(334,37,'Texto_Alinhado_Esquerda_Espaçamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(335,38,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(336,38,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(337,38,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(338,38,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(339,38,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(340,38,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(341,38,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(342,38,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(343,38,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(344,38,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(345,38,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(346,38,'Texto_Alinhado_Esquerda_Espaçamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(347,38,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(348,38,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(349,38,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(350,38,'Texto_Alinhado_Esquerda_Espaçamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(351,38,'Teste2','Teste2'),(352,39,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(353,39,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(354,39,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(355,39,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(356,39,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(357,39,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(358,39,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(359,39,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(360,39,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(361,39,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(362,39,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(363,39,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(364,39,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(365,39,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(366,39,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(367,39,'Texto_Alinhado_Esquerda_Espaçamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(368,39,'Teste2','Teste2'),(369,40,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(370,40,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(371,40,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(372,40,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(373,40,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(374,40,'Texto_Citação','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(375,40,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(376,40,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(377,40,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(378,40,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(379,40,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(380,40,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(381,40,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(382,40,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(383,40,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(384,40,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(385,40,'Teste2','Teste2'),(386,41,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(387,41,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(388,41,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(389,41,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(390,41,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(391,41,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(392,41,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(393,41,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(394,41,'Texto_Mono_Espaçado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(395,41,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(396,41,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(397,41,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(398,41,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(399,41,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(400,41,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(401,41,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(402,41,'Teste2','Teste2'),(403,42,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(404,42,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(405,42,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(406,42,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(407,42,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(408,42,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(409,42,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(410,42,'Texto_Centralizado_Maiusculas','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(411,42,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(412,42,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(413,42,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(414,42,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(415,42,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(416,42,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(417,42,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(418,42,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(419,42,'Teste2','Teste2'),(420,43,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(421,43,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(422,43,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(423,43,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(424,43,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(425,43,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(426,43,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(427,43,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(428,43,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(429,43,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(430,43,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(431,43,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(432,43,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(433,43,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(434,43,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(435,43,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(436,43,'Teste2','Teste2'),(437,44,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(438,44,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(439,44,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(440,44,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(441,44,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(442,44,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(443,44,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(444,44,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(445,44,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(446,44,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(447,44,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(448,44,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(449,44,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(450,44,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(451,44,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(452,44,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(453,44,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(454,45,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(455,45,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(456,45,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(457,45,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(458,45,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(459,45,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(460,45,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(461,45,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(462,45,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(463,45,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(464,45,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(465,45,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(466,45,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(467,45,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(468,45,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(469,45,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(470,45,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(471,45,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(472,46,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(473,46,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(474,46,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(475,46,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(476,46,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(477,46,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(478,46,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(479,46,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(480,46,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(481,46,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(482,46,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(483,46,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(484,46,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(485,46,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(486,46,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(487,46,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(488,46,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(489,46,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(490,46,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(491,47,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(492,47,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(493,47,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(494,47,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(495,47,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(496,47,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(497,47,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(498,47,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(499,47,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 1.18in\',\'text-align\':\'justify\''),(500,47,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(501,47,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(502,47,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(503,47,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(504,47,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(505,47,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(506,47,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(507,47,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(508,47,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(509,47,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(510,47,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(511,48,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(512,48,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(513,48,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(514,48,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(515,48,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(516,48,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(517,48,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(518,48,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(519,48,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(520,48,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(521,48,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(522,48,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(523,48,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(524,48,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(525,48,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(526,48,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(527,48,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(528,48,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(529,48,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(530,48,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(531,49,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(532,49,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(533,49,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(534,49,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(535,49,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(536,49,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(537,49,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(538,49,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(539,49,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(540,49,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(541,49,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(542,49,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(543,49,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(544,49,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(545,49,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(546,49,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(547,49,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(548,49,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(549,49,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(550,49,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(551,49,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(552,50,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(553,50,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(554,50,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(555,50,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(556,50,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(557,50,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(558,50,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(559,50,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(560,50,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(561,50,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(562,50,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(563,50,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(564,50,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(565,50,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(566,50,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(567,50,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(568,50,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(569,50,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(570,50,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(571,50,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(572,50,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(573,50,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(574,51,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(575,51,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(576,51,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(577,51,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(578,51,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(579,51,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(580,51,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(581,51,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(582,51,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(583,51,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(584,51,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(585,51,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(586,51,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(587,51,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(588,51,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(589,51,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(590,51,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(591,51,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(592,51,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(593,51,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(594,51,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(595,51,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(596,51,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(597,52,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(598,52,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(599,52,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(600,52,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(601,52,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(602,52,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(603,52,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(604,52,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(605,52,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(606,52,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(607,52,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(608,52,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(609,52,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(610,52,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(611,52,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(612,52,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(613,52,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(614,52,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(615,52,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(616,52,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(617,52,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(618,52,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(619,52,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(620,52,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(621,53,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(622,53,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(623,53,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(624,53,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(625,53,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(626,53,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(627,53,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(628,53,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(629,53,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(630,53,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(631,53,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(632,53,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(633,53,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(634,53,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(635,53,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(636,53,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(637,53,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(638,53,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(639,53,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(640,53,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(641,53,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(642,53,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(643,53,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(644,53,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(645,53,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(646,54,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(647,54,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(648,54,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(649,54,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(650,54,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(651,54,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(652,54,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(653,54,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(654,54,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(655,54,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(656,54,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(657,54,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(658,54,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(659,54,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(660,54,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(661,54,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(662,54,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(663,54,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(664,54,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(665,54,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(666,54,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(667,54,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(668,54,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(669,54,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(670,54,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(671,54,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(672,55,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(673,55,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(674,55,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(675,55,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(676,55,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(677,55,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(678,55,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(679,55,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(680,55,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(681,55,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(682,55,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(683,55,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(684,55,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(685,55,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(686,55,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(687,55,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(688,55,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(689,55,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(690,55,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(691,55,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(692,55,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(693,55,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(694,55,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(695,55,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(696,55,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(697,55,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(698,55,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(699,56,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(700,56,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(701,56,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(702,56,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(703,56,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(704,56,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(705,56,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(706,56,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(707,56,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(708,56,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(709,56,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(710,56,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(711,56,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(712,56,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(713,56,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(714,56,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(715,56,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(716,56,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(717,56,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(718,56,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(719,56,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(720,56,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(721,56,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(722,56,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(723,56,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(724,56,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(725,56,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(726,56,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(727,57,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(728,57,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(729,57,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(730,57,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(731,57,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(732,57,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(733,57,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(734,57,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(735,57,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(736,57,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(737,57,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(738,57,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(739,57,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(740,57,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(741,57,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(742,57,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(743,57,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(744,57,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(745,57,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(746,57,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(747,57,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(748,57,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(749,57,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(750,57,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(751,57,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(752,57,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(753,57,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(754,57,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(755,57,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(756,58,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(757,58,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(758,58,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(759,58,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(760,58,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(761,58,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(762,58,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(763,58,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(764,58,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(765,58,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(766,58,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(767,58,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(768,58,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(769,58,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(770,58,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(771,58,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(772,58,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(773,58,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(774,58,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(775,58,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(776,58,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(777,58,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(778,58,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(779,58,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(780,58,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(781,58,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(782,58,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(783,58,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(784,58,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(785,58,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(786,59,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(787,59,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(788,59,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(789,59,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(790,59,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(791,59,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(792,59,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(793,59,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(794,59,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(795,59,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(796,59,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(797,59,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(798,59,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(799,59,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(800,59,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(801,59,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(802,59,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(803,59,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(804,59,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(805,59,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(806,59,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(807,59,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(808,59,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(809,59,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(810,59,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(811,59,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(812,59,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(813,59,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(814,59,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(815,59,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(816,59,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(817,60,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(818,60,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(819,60,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(820,60,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(821,60,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(822,60,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(823,60,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(824,60,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(825,60,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(826,60,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(827,60,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(828,60,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(829,60,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(830,60,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(831,60,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(832,60,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(833,60,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(834,60,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(835,60,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(836,60,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(837,60,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(838,60,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(839,60,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(840,60,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(841,60,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(842,60,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(843,60,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(844,60,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(845,60,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(846,60,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(847,60,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(848,60,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(849,61,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(850,61,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(851,61,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(852,61,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(853,61,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(854,61,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(855,61,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(856,61,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(857,61,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(858,61,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(859,61,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(860,61,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(861,61,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(862,61,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(863,61,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(864,61,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(865,61,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(866,61,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(867,61,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(868,61,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(869,61,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(870,61,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(871,61,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(872,61,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(873,61,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(874,61,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(875,61,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(876,61,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(877,61,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(878,61,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(879,61,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(880,61,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(881,61,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(882,62,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(883,62,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(884,62,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(885,62,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(886,62,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(887,62,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(888,62,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(889,62,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(890,62,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(891,62,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(892,62,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(893,62,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(894,62,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(895,62,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(896,62,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(897,62,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(898,62,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(899,62,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(900,62,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(901,62,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(902,62,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(903,62,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(904,62,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(905,62,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(906,62,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(907,62,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(908,62,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(909,62,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(910,62,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(911,62,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(912,62,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(913,62,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(914,62,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(915,62,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(916,63,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(917,63,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(918,63,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(919,63,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(920,63,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(921,63,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(922,63,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(923,63,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(924,63,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(925,63,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(926,63,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(927,63,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(928,63,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(929,63,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(930,63,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(931,63,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(932,63,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(933,63,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(934,63,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(935,63,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(936,63,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(937,63,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(938,63,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(939,63,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(940,63,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(941,63,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(942,63,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(943,63,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(944,63,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(945,63,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(946,63,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(947,63,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(948,63,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(949,63,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(950,63,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(951,64,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(952,64,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(953,64,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(954,64,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(955,64,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(956,64,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(957,64,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(958,64,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(959,64,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(960,64,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(961,64,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(962,64,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(963,64,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(964,64,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(965,64,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(966,64,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(967,64,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(968,64,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(969,64,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(970,64,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(971,64,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(972,64,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(973,64,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(974,64,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(975,64,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(976,64,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(977,64,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(978,64,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(979,64,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(980,64,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(981,64,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(982,64,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(983,64,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(984,64,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(985,64,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(986,64,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(987,65,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(988,65,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(989,65,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(990,65,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(991,65,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(992,65,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(993,65,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(994,65,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(995,65,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(996,65,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(997,65,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(998,65,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(999,65,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1000,65,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1001,65,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1002,65,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1003,65,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1004,65,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1005,65,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1006,65,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1007,65,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1008,65,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1009,65,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1010,65,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1011,65,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1012,65,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1013,65,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1014,65,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1015,65,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1016,65,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1017,65,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1018,65,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1019,65,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1020,65,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1021,65,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1022,65,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1023,65,'Item_Alinea_Letra:before','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1024,66,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1025,66,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1026,66,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1027,66,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1028,66,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1029,66,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1030,66,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(1031,66,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1032,66,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1033,66,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1034,66,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1035,66,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1036,66,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1037,66,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1038,66,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1039,66,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1040,66,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1041,66,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1042,66,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1043,66,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1044,66,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1045,66,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1046,66,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1047,66,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1048,66,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1049,66,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1050,66,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1051,66,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1052,66,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1053,66,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1054,66,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1055,66,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1056,66,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1057,66,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1058,66,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1059,66,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1060,66,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1061,67,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1062,67,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1063,67,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1064,67,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1065,67,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1066,67,'Texto_Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1067,67,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(1068,67,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1069,67,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1070,67,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1071,67,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1072,67,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1073,67,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1074,67,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1075,67,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1076,67,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1077,67,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1078,67,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1079,67,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1080,67,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1081,67,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1082,67,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1083,67,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1084,67,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1085,67,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1086,67,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1087,67,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1088,67,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1089,67,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1090,67,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1091,67,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1092,67,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1093,67,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1094,67,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1095,67,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1096,67,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1097,67,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1098,67,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1099,68,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1100,68,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1101,68,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1102,68,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1103,68,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1104,68,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1105,68,'Texto_Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(1106,68,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1107,68,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1108,68,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1109,68,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1110,68,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1111,68,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1112,68,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1113,68,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1114,68,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1115,68,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1116,68,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1117,68,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1118,68,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1119,68,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1120,68,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1121,68,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1122,68,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1123,68,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1124,68,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1125,68,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1126,68,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1127,68,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1128,68,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1129,68,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1130,68,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1131,68,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1132,68,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1133,68,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1134,68,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1135,68,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1136,68,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1137,69,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1138,69,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1139,69,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1140,69,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1141,69,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1142,69,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1143,69,'Ementa','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 3.14in\''),(1144,69,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1145,69,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1146,69,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1147,69,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1148,69,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1149,69,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1150,69,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1151,69,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1152,69,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1153,69,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1154,69,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1155,69,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1156,69,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1157,69,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1158,69,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1159,69,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1160,69,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1161,69,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1162,69,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1163,69,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1164,69,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1165,69,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1166,69,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1167,69,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1168,69,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1169,69,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1170,69,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1171,69,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1172,69,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1173,69,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1174,69,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1175,70,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1176,70,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1177,70,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1178,70,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1179,70,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1180,70,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1181,70,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1182,70,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1183,70,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1184,70,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1185,70,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1186,70,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1187,70,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1188,70,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1189,70,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1190,70,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1191,70,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1192,70,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1193,70,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1194,70,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1195,70,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1196,70,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1197,70,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1198,70,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1199,70,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1200,70,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1201,70,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1202,70,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1203,70,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1204,70,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1205,70,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1206,70,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1207,70,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1208,70,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1209,70,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1210,70,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1211,70,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1212,71,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1213,71,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1214,71,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1215,71,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1216,71,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1217,71,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1218,71,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1219,71,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1220,71,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1221,71,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1222,71,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1223,71,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1224,71,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1225,71,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1226,71,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1227,71,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1228,71,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1229,71,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1230,71,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1231,71,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1232,71,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1233,71,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1234,71,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1235,71,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1236,71,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1237,71,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1238,71,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1239,71,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1240,71,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1241,71,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1242,71,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1243,71,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1244,71,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1245,71,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1246,71,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1247,71,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1248,71,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1249,72,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1250,72,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1251,72,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1252,72,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1253,72,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1254,72,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1255,72,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1256,72,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1257,72,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1258,72,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1259,72,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1260,72,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1261,72,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1262,72,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1263,72,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1264,72,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1265,72,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1266,72,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1267,72,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1268,72,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1269,72,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1270,72,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1271,72,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1272,72,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1273,72,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1274,72,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1275,72,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1276,72,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1277,72,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1278,72,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1279,72,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1280,72,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1281,72,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1282,72,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1283,72,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1284,72,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1285,72,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1286,73,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1287,73,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1288,73,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1289,73,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1290,73,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1291,73,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1292,73,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1293,73,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1294,73,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1295,73,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1296,73,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1297,73,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1298,73,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1299,73,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1300,73,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1301,73,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1302,73,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1303,73,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1304,73,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1305,73,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1306,73,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1307,73,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1308,73,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1309,73,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1310,73,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1311,73,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1312,73,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1313,73,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1314,73,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1315,73,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1316,73,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1317,73,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1318,73,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1319,73,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1320,73,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1321,73,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1322,73,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1323,73,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1324,74,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1325,74,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1326,74,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1327,74,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1328,74,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1329,74,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1330,74,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1331,74,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1332,74,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1333,74,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1334,74,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1335,74,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1336,74,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1337,74,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1338,74,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1339,74,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1340,74,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1341,74,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1342,74,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1343,74,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1344,74,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1345,74,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1346,74,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1347,74,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1348,74,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1349,74,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1350,74,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1351,74,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1352,74,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1353,74,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1354,74,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1355,74,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1356,74,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1357,74,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1358,74,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1359,74,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1360,74,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1361,74,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1362,74,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1363,75,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1364,75,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1365,75,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1366,75,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1367,75,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1368,75,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1369,75,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1370,75,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1371,75,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1372,75,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1373,75,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1374,75,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1375,75,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1376,75,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1377,75,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1378,75,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1379,75,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1380,75,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1381,75,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1382,75,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 romano_maiusculo letra_minuscula\''),(1383,75,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1384,75,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1385,75,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1386,75,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1387,75,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1388,75,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1389,75,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1390,75,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1391,75,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1392,75,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1393,75,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1394,75,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1395,75,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1396,75,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1397,75,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1398,75,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1399,75,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1400,75,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1401,75,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1402,75,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1403,76,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1404,76,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1405,76,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1406,76,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1407,76,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1408,76,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1409,76,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1410,76,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1411,76,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1412,76,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1413,76,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1414,76,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1415,76,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1416,76,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1417,76,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1418,76,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1419,76,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1420,76,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1421,76,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1422,76,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1423,76,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1424,76,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1425,76,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1426,76,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1427,76,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1428,76,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 romano_maiusculo letra_minuscula\''),(1429,76,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1430,76,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1431,76,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1432,76,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1433,76,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1434,76,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1435,76,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1436,76,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1437,76,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1438,76,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1439,76,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1440,76,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1441,76,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1442,76,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1443,77,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1444,77,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1445,77,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1446,77,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1447,77,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1448,77,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1449,77,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1450,77,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1451,77,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1452,77,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1453,77,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1454,77,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1455,77,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1456,77,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1457,77,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1458,77,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1459,77,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1460,77,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1461,77,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1462,77,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1463,77,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1464,77,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1465,77,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1466,77,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1467,77,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1468,77,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1469,77,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1470,77,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1471,77,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1472,77,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1473,77,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1474,77,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1475,77,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1476,77,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1477,77,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1478,77,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1479,77,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1480,77,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1481,77,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1482,77,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1483,78,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1484,78,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1485,78,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1486,78,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1487,78,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1488,78,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1489,78,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1490,78,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1491,78,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1492,78,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1493,78,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1494,78,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1495,78,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1496,78,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1497,78,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1498,78,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1499,78,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1500,78,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1501,78,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1502,78,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1503,78,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1504,78,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1505,78,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1506,78,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1507,78,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1508,78,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1509,78,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1510,78,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1511,78,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1512,78,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1513,78,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1514,78,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'paragrafo-n4 romano_maiusculo letra_minuscula\''),(1515,78,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1516,78,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1517,78,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1518,78,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1519,78,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1520,78,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1521,78,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1522,78,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1523,79,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1524,79,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1525,79,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1526,79,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1527,79,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1528,79,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1529,79,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1530,79,'Texto_Mono_Espacado','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'white-space\':\'pre\',\'word-wrap\':\'normal\',\'margin\':\'2pt\''),(1531,79,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1532,79,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1533,79,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1534,79,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1535,79,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1536,79,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1537,79,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1538,79,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1539,79,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1540,79,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1541,79,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1542,79,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1543,79,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1544,79,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1545,79,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1546,79,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1547,79,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1548,79,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1549,79,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1550,79,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1551,79,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1552,79,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1553,79,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1554,79,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'paragrafo-n4 romano_maiusculo letra_minuscula\''),(1555,79,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1556,79,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1557,79,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1558,79,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1559,79,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1560,79,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1561,79,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1562,79,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1563,79,'Texto_Justificado_Recuo_Primeira_Linha_Esp_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'0 0 0 6pt\''),(1564,80,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1565,80,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1566,80,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1567,80,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1568,80,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1569,80,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1570,80,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1571,80,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1572,80,'Tachado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-indent\':\'1.18in\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-decoration\':\'line-through\''),(1573,80,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1574,80,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1575,80,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1576,80,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1577,80,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1578,80,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1579,80,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1580,80,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1581,80,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1582,80,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1583,80,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1584,80,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1585,80,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1586,80,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1587,80,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1588,80,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1589,80,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1590,80,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1591,80,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1592,80,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1593,80,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1594,80,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'paragrafo-n4 romano_maiusculo letra_minuscula\''),(1595,80,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1596,80,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1597,80,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1598,80,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1599,80,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1600,80,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1601,80,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1602,80,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1603,80,'Texto_Justificado_Recuo_Primeira_Linha_Esp_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'0 0 0 6pt\''),(1604,81,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1605,81,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1606,81,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1607,81,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1608,81,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1609,81,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(1610,81,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1611,81,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1612,81,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1613,81,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1614,81,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(1615,81,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(1616,81,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(1617,81,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(1618,81,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(1619,81,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1620,81,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(1621,81,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1622,81,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1623,81,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1624,81,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1625,81,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(1626,81,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1627,81,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(1628,81,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1629,81,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(1630,81,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1631,81,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1632,81,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1633,81,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'paragrafo-n4 romano_maiusculo letra_minuscula\''),(1634,81,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1635,81,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(1636,81,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(1637,81,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(1638,81,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(1639,81,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(1640,81,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(1641,81,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(1642,81,'Texto_Justificado_Recuo_Primeira_Linha_Esp_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'0 0 0 6pt\''); +/*!40000 ALTER TABLE `conjunto_estilos_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `contato` +-- + +DROP TABLE IF EXISTS `contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `contato` ( + `id_contato` int(11) NOT NULL, + `id_cargo` int(11) DEFAULT NULL, + `nome` varchar(250) NOT NULL, + `matricula_oab` varchar(10) DEFAULT NULL, + `cpf` bigint(20) DEFAULT NULL, + `matricula` varchar(10) DEFAULT NULL, + `email` varchar(100) DEFAULT NULL, + `sitio_internet` varchar(50) DEFAULT NULL, + `endereco` varchar(130) DEFAULT NULL, + `bairro` varchar(70) DEFAULT NULL, + `cep` varchar(15) DEFAULT NULL, + `observacao` varchar(250) DEFAULT NULL, + `idx_contato` varchar(1000) DEFAULT NULL, + `dta_nascimento` datetime DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `cnpj` bigint(20) DEFAULT NULL, + `sigla` varchar(100) DEFAULT NULL, + `id_unidade_cadastro` int(11) DEFAULT NULL, + `id_usuario_cadastro` int(11) DEFAULT NULL, + `dth_cadastro` datetime DEFAULT NULL, + `rg` bigint(20) DEFAULT NULL, + `orgao_expedidor` varchar(50) DEFAULT NULL, + `complemento` varchar(130) DEFAULT NULL, + `sta_natureza` char(1) NOT NULL, + `sin_endereco_associado` char(1) NOT NULL, + `telefone_celular` varchar(25) DEFAULT NULL, + `id_cidade` int(11) DEFAULT NULL, + `id_uf` int(11) DEFAULT NULL, + `id_pais` int(11) DEFAULT NULL, + `id_contato_associado` int(11) NOT NULL, + `sta_genero` char(1) DEFAULT NULL, + `id_tipo_contato` int(11) NOT NULL, + `numero_passaporte` varchar(15) DEFAULT NULL, + `id_pais_passaporte` int(11) DEFAULT NULL, + `id_titulo` int(11) DEFAULT NULL, + `telefone_comercial` varchar(50) DEFAULT NULL, + `telefone_residencial` varchar(50) DEFAULT NULL, + `conjuge` varchar(100) DEFAULT NULL, + `funcao` varchar(100) DEFAULT NULL, + `nome_registro_civil` varchar(250) DEFAULT NULL, + `nome_social` varchar(250) DEFAULT NULL, + `id_categoria` int(11) DEFAULT NULL, + PRIMARY KEY (`id_contato`), + KEY `i11_contato` (`nome`,`sin_ativo`,`sigla`), + KEY `fk_contato_cargo` (`id_cargo`), + KEY `fk_contato_cidade` (`id_cidade`), + KEY `fk_contato_uf` (`id_uf`), + KEY `fk_contato_pais` (`id_pais`), + KEY `i01_contato` (`id_tipo_contato`,`sigla`,`nome`,`sin_ativo`), + KEY `fk_contato_tipo_contato` (`id_tipo_contato`), + KEY `fk_contato_unidade_cadastro` (`id_unidade_cadastro`), + KEY `fk_contato_usuario_cadastro` (`id_usuario_cadastro`), + KEY `fk_contato_pais_passaporte` (`id_pais_passaporte`), + KEY `fk_contato_titulo` (`id_titulo`), + KEY `fk_contato_categoria` (`id_categoria`), + CONSTRAINT `fk_contato_cargo` FOREIGN KEY (`id_cargo`) REFERENCES `cargo` (`id_cargo`), + CONSTRAINT `fk_contato_categoria` FOREIGN KEY (`id_categoria`) REFERENCES `categoria` (`id_categoria`), + CONSTRAINT `fk_contato_cidade` FOREIGN KEY (`id_cidade`) REFERENCES `cidade` (`id_cidade`), + CONSTRAINT `fk_contato_pais` FOREIGN KEY (`id_pais`) REFERENCES `pais` (`id_pais`), + CONSTRAINT `fk_contato_pais_passaporte` FOREIGN KEY (`id_pais_passaporte`) REFERENCES `pais` (`id_pais`), + CONSTRAINT `fk_contato_tipo_contato` FOREIGN KEY (`id_tipo_contato`) REFERENCES `tipo_contato` (`id_tipo_contato`), + CONSTRAINT `fk_contato_titulo` FOREIGN KEY (`id_titulo`) REFERENCES `titulo` (`id_titulo`), + CONSTRAINT `fk_contato_uf` FOREIGN KEY (`id_uf`) REFERENCES `uf` (`id_uf`), + CONSTRAINT `fk_contato_unidade_cadastro` FOREIGN KEY (`id_unidade_cadastro`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_contato_usuario_cadastro` FOREIGN KEY (`id_usuario_cadastro`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `contato` +-- + +LOCK TABLES `contato` WRITE; +/*!40000 ALTER TABLE `contato` DISABLE KEYS */; +INSERT INTO `contato` VALUES (100000002,NULL,'Sistema Eletrônico de Informações',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei sistema eletronico de informacoes',NULL,'S',NULL,'SEI',NULL,NULL,'2013-11-08 17:20:00',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,76,100000002,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000003,NULL,'Sistema de Permissões',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sip sistema de permissoes',NULL,'S',NULL,'SIP',NULL,NULL,'2013-11-08 17:20:00',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,76,100000003,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000004,NULL,'INTRANET',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'intranet intranet',NULL,'S',NULL,'INTRANET',NULL,NULL,'2013-11-08 17:20:00',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,76,100000004,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000005,NULL,'INTERNET',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'internet internet',NULL,'S',NULL,'INTERNET',NULL,NULL,'2013-11-08 17:20:00',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,76,100000005,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000006,NULL,'Unidade de Testes 1',NULL,NULL,NULL,NULL,'http://www.dominio.gov.br','Rua ABC, Número 1','Bairro do órgão','00000-000',NULL,'teste unidade de testes 1',NULL,'S',NULL,'TESTE',110000001,2,'2013-11-08 00:00:00',NULL,NULL,NULL,'J','N',NULL,5564,27,76,100000010,NULL,5,NULL,NULL,NULL,'(61) 2222-9999',NULL,NULL,NULL,NULL,NULL,NULL),(100000007,NULL,'Unidade de Testes 1.1',NULL,NULL,NULL,NULL,'http://www.dominio.gov.br','Rua ABC, Número 1','Bairro do órgão','00000-000',NULL,'teste_1_1 unidade de testes 1.1',NULL,'S',NULL,'TESTE_1_1',110000001,2,'2014-11-27 20:44:26',NULL,NULL,NULL,'J','N',NULL,5564,27,76,100000010,NULL,5,NULL,NULL,NULL,'(61) 2222-9999',NULL,NULL,NULL,NULL,NULL,NULL),(100000008,NULL,'Unidade de Testes 1.2',NULL,NULL,NULL,NULL,'http://www.dominio.gov.br','Rua ABC, Número 1','Bairro do órgão','00000-000',NULL,'teste_1_2 unidade de testes 1.2',NULL,'S',NULL,'TESTE_1_2',110000001,2,'2014-11-27 20:44:44',NULL,NULL,NULL,'J','N',NULL,5564,27,76,100000010,NULL,5,NULL,NULL,NULL,'(61) 2222-9999',NULL,NULL,NULL,NULL,NULL,NULL),(100000009,NULL,'Usuário de Testes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'teste usuario de testes',NULL,'S',NULL,'teste',110000001,2,'2016-11-28 08:27:37',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,76,100000010,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuário de Testes',NULL,NULL),(100000010,NULL,'ORGAO ABC',NULL,NULL,NULL,'email@dominio.gov.br','http://www.dominio.gov.br','Endereço completo órgão','Bairro do órgão','00000-000',NULL,'abc orgao abc',NULL,'S',NULL,'ABC',NULL,NULL,'2016-11-30 14:13:08',NULL,NULL,NULL,'J','N',NULL,5564,27,76,100000010,NULL,6,NULL,NULL,NULL,'(61) 2222-9999',NULL,NULL,NULL,NULL,NULL,NULL),(100000011,NULL,'Unidade 2022-06-1014-34-29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-34-29 unidade 2022-06-1014-34-29',NULL,'S',NULL,'Un-2022-06-10-14-34-29',110000001,2,'2022-06-10 11:34:34',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000012,NULL,'Unidade 2022-06-1014-34-37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-34-37 unidade 2022-06-1014-34-37',NULL,'S',NULL,'Un-2022-06-10-14-34-37',110000001,2,'2022-06-10 11:34:41',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000013,NULL,'Unidade 2022-06-1014-34-45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-34-45 unidade 2022-06-1014-34-45',NULL,'S',NULL,'Un-2022-06-10-14-34-45',110000001,2,'2022-06-10 11:34:49',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000014,NULL,'Unidade 2022-06-1014-34-52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-34-52 unidade 2022-06-1014-34-52',NULL,'S',NULL,'Un-2022-06-10-14-34-52',110000001,2,'2022-06-10 11:34:56',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000015,NULL,'Unidade 2022-06-1014-34-58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-34-58 unidade 2022-06-1014-34-58',NULL,'S',NULL,'Un-2022-06-10-14-34-58',110000001,2,'2022-06-10 11:35:02',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000016,NULL,'Unidade 2022-06-1014-35-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-4 unidade 2022-06-1014-35-4',NULL,'S',NULL,'Un-2022-06-10-14-35-4',110000001,2,'2022-06-10 11:35:08',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000017,NULL,'Unidade 2022-06-1014-35-11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-11 unidade 2022-06-1014-35-11',NULL,'S',NULL,'Un-2022-06-10-14-35-11',110000001,2,'2022-06-10 11:35:14',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000018,NULL,'Unidade 2022-06-1014-35-17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-17 unidade 2022-06-1014-35-17',NULL,'S',NULL,'Un-2022-06-10-14-35-17',110000001,2,'2022-06-10 11:35:22',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000019,NULL,'Unidade 2022-06-1014-35-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-25 unidade 2022-06-1014-35-25',NULL,'S',NULL,'Un-2022-06-10-14-35-25',110000001,2,'2022-06-10 11:35:28',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000020,NULL,'Unidade 2022-06-1014-35-31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-31 unidade 2022-06-1014-35-31',NULL,'S',NULL,'Un-2022-06-10-14-35-31',110000001,2,'2022-06-10 11:35:35',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000021,NULL,'Unidade 2022-06-1014-35-37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-37 unidade 2022-06-1014-35-37',NULL,'S',NULL,'Un-2022-06-10-14-35-37',110000001,2,'2022-06-10 11:35:42',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000022,NULL,'Unidade 2022-06-1014-35-45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-45 unidade 2022-06-1014-35-45',NULL,'S',NULL,'Un-2022-06-10-14-35-45',110000001,2,'2022-06-10 11:35:48',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000023,NULL,'Unidade 2022-06-1014-35-51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-51 unidade 2022-06-1014-35-51',NULL,'S',NULL,'Un-2022-06-10-14-35-51',110000001,2,'2022-06-10 11:35:54',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000024,NULL,'Unidade 2022-06-1014-35-57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-35-57 unidade 2022-06-1014-35-57',NULL,'S',NULL,'Un-2022-06-10-14-35-57',110000001,2,'2022-06-10 11:36:02',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000025,NULL,'Unidade 2022-06-1014-36-4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-4 unidade 2022-06-1014-36-4',NULL,'S',NULL,'Un-2022-06-10-14-36-4',110000001,2,'2022-06-10 11:36:08',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000026,NULL,'Unidade 2022-06-1014-36-10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-10 unidade 2022-06-1014-36-10',NULL,'S',NULL,'Un-2022-06-10-14-36-10',110000001,2,'2022-06-10 11:36:14',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000027,NULL,'Unidade 2022-06-1014-36-17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-17 unidade 2022-06-1014-36-17',NULL,'S',NULL,'Un-2022-06-10-14-36-17',110000001,2,'2022-06-10 11:36:22',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000028,NULL,'Unidade 2022-06-1014-36-25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-25 unidade 2022-06-1014-36-25',NULL,'S',NULL,'Un-2022-06-10-14-36-25',110000001,2,'2022-06-10 11:36:28',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000029,NULL,'Usuario de Teste 3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario3 usuario de teste 3',NULL,'S',NULL,'usuario3',110000001,2,'2022-06-10 11:36:28',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 3',NULL,NULL),(100000030,NULL,'Unidade 2022-06-1014-36-30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-30 unidade 2022-06-1014-36-30',NULL,'S',NULL,'Un-2022-06-10-14-36-30',110000001,2,'2022-06-10 11:36:34',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000031,NULL,'Usuario de Teste 4',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario4 usuario de teste 4',NULL,'S',NULL,'usuario4',110000001,2,'2022-06-10 11:36:35',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 4',NULL,NULL),(100000032,NULL,'Usuario de Teste 5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario5 usuario de teste 5',NULL,'S',NULL,'usuario5',110000001,2,'2022-06-10 11:36:40',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 5',NULL,NULL),(100000033,NULL,'Unidade 2022-06-1014-36-37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-37 unidade 2022-06-1014-36-37',NULL,'S',NULL,'Un-2022-06-10-14-36-37',110000001,2,'2022-06-10 11:36:41',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000034,NULL,'Usuario de Teste 6',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario6 usuario de teste 6',NULL,'S',NULL,'usuario6',110000001,2,'2022-06-10 11:36:46',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 6',NULL,NULL),(100000035,NULL,'Unidade 2022-06-1014-36-43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-43 unidade 2022-06-1014-36-43',NULL,'S',NULL,'Un-2022-06-10-14-36-43',110000001,2,'2022-06-10 11:36:47',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000036,NULL,'Usuario de Teste 7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario7 usuario de teste 7',NULL,'S',NULL,'usuario7',110000001,2,'2022-06-10 11:36:52',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 7',NULL,NULL),(100000037,NULL,'Unidade 2022-06-1014-36-50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-50 unidade 2022-06-1014-36-50',NULL,'S',NULL,'Un-2022-06-10-14-36-50',110000001,2,'2022-06-10 11:36:53',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000038,NULL,'Usuario de Teste 8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario8 usuario de teste 8',NULL,'S',NULL,'usuario8',110000001,2,'2022-06-10 11:36:57',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 8',NULL,NULL),(100000039,NULL,'Unidade 2022-06-1014-36-55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-36-55 unidade 2022-06-1014-36-55',NULL,'S',NULL,'Un-2022-06-10-14-36-55',110000001,2,'2022-06-10 11:36:59',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000040,NULL,'Usuario de Teste 9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario9 usuario de teste 9',NULL,'S',NULL,'usuario9',110000001,2,'2022-06-10 11:37:02',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 9',NULL,NULL),(100000041,NULL,'Unidade 2022-06-1014-37-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-1 unidade 2022-06-1014-37-1',NULL,'S',NULL,'Un-2022-06-10-14-37-1',110000001,2,'2022-06-10 11:37:04',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000042,NULL,'Usuario de Teste 10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario10 usuario de teste 10',NULL,'S',NULL,'usuario10',110000001,2,'2022-06-10 11:37:07',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 10',NULL,NULL),(100000043,NULL,'Unidade 2022-06-1014-37-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-8 unidade 2022-06-1014-37-8',NULL,'S',NULL,'Un-2022-06-10-14-37-8',110000001,2,'2022-06-10 11:37:11',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000044,NULL,'Usuario de Teste 11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario11 usuario de teste 11',NULL,'S',NULL,'usuario11',110000001,2,'2022-06-10 11:37:13',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 11',NULL,NULL),(100000045,NULL,'Unidade 2022-06-1014-37-13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-13 unidade 2022-06-1014-37-13',NULL,'S',NULL,'Un-2022-06-10-14-37-13',110000001,2,'2022-06-10 11:37:16',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000046,NULL,'Usuario de Teste 12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario12 usuario de teste 12',NULL,'S',NULL,'usuario12',110000001,2,'2022-06-10 11:37:19',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 12',NULL,NULL),(100000047,NULL,'Unidade 2022-06-1014-37-18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-18 unidade 2022-06-1014-37-18',NULL,'S',NULL,'Un-2022-06-10-14-37-18',110000001,2,'2022-06-10 11:37:22',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000048,NULL,'Usuario de Teste 13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario13 usuario de teste 13',NULL,'S',NULL,'usuario13',110000001,2,'2022-06-10 11:37:24',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 13',NULL,NULL),(100000049,NULL,'Unidade 2022-06-1014-37-24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-24 unidade 2022-06-1014-37-24',NULL,'S',NULL,'Un-2022-06-10-14-37-24',110000001,2,'2022-06-10 11:37:27',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000050,NULL,'Usuario de Teste 14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario14 usuario de teste 14',NULL,'S',NULL,'usuario14',110000001,2,'2022-06-10 11:37:29',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 14',NULL,NULL),(100000051,NULL,'Unidade 2022-06-1014-37-29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-29 unidade 2022-06-1014-37-29',NULL,'S',NULL,'Un-2022-06-10-14-37-29',110000001,2,'2022-06-10 11:37:33',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000052,NULL,'Usuario de Teste 15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario15 usuario de teste 15',NULL,'S',NULL,'usuario15',110000001,2,'2022-06-10 11:37:35',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 15',NULL,NULL),(100000053,NULL,'Unidade 2022-06-1014-37-36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-36 unidade 2022-06-1014-37-36',NULL,'S',NULL,'Un-2022-06-10-14-37-36',110000001,2,'2022-06-10 11:37:39',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000054,NULL,'Usuario de Teste 16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario16 usuario de teste 16',NULL,'S',NULL,'usuario16',110000001,2,'2022-06-10 11:37:40',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 16',NULL,NULL),(100000055,NULL,'Unidade 2022-06-1014-37-42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-42 unidade 2022-06-1014-37-42',NULL,'S',NULL,'Un-2022-06-10-14-37-42',110000001,2,'2022-06-10 11:37:45',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000056,NULL,'Usuario de Teste 17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario17 usuario de teste 17',NULL,'S',NULL,'usuario17',110000001,2,'2022-06-10 11:37:46',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 17',NULL,NULL),(100000057,NULL,'Unidade 2022-06-1014-37-47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-47 unidade 2022-06-1014-37-47',NULL,'S',NULL,'Un-2022-06-10-14-37-47',110000001,2,'2022-06-10 11:37:50',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000058,NULL,'Usuario de Teste 18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario18 usuario de teste 18',NULL,'S',NULL,'usuario18',110000001,2,'2022-06-10 11:37:51',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 18',NULL,NULL),(100000059,NULL,'Unidade 2022-06-1014-37-52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-52 unidade 2022-06-1014-37-52',NULL,'S',NULL,'Un-2022-06-10-14-37-52',110000001,2,'2022-06-10 11:37:55',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000060,NULL,'Usuario de Teste 19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario19 usuario de teste 19',NULL,'S',NULL,'usuario19',110000001,2,'2022-06-10 11:37:56',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 19',NULL,NULL),(100000061,NULL,'Unidade 2022-06-1014-37-57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-37-57 unidade 2022-06-1014-37-57',NULL,'S',NULL,'Un-2022-06-10-14-37-57',110000001,2,'2022-06-10 11:38:00',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000062,NULL,'Usuario de Teste 20',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario20 usuario de teste 20',NULL,'S',NULL,'usuario20',110000001,2,'2022-06-10 11:38:01',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 20',NULL,NULL),(100000063,NULL,'Unidade 2022-06-1014-38-2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-2 unidade 2022-06-1014-38-2',NULL,'S',NULL,'Un-2022-06-10-14-38-2',110000001,2,'2022-06-10 11:38:05',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000064,NULL,'Usuario de Teste 21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario21 usuario de teste 21',NULL,'S',NULL,'usuario21',110000001,2,'2022-06-10 11:38:05',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 21',NULL,NULL),(100000065,NULL,'Usuario de Teste 22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario22 usuario de teste 22',NULL,'S',NULL,'usuario22',110000001,2,'2022-06-10 11:38:10',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 22',NULL,NULL),(100000066,NULL,'Unidade 2022-06-1014-38-8',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-8 unidade 2022-06-1014-38-8',NULL,'S',NULL,'Un-2022-06-10-14-38-8',110000001,2,'2022-06-10 11:38:11',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000067,NULL,'Usuario de Teste 23',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario23 usuario de teste 23',NULL,'S',NULL,'usuario23',110000001,2,'2022-06-10 11:38:15',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 23',NULL,NULL),(100000068,NULL,'Unidade 2022-06-1014-38-13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-13 unidade 2022-06-1014-38-13',NULL,'S',NULL,'Un-2022-06-10-14-38-13',110000001,2,'2022-06-10 11:38:16',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000069,NULL,'Usuario de Teste 24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario24 usuario de teste 24',NULL,'S',NULL,'usuario24',110000001,2,'2022-06-10 11:38:21',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 24',NULL,NULL),(100000070,NULL,'Unidade 2022-06-1014-38-18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-18 unidade 2022-06-1014-38-18',NULL,'S',NULL,'Un-2022-06-10-14-38-18',110000001,2,'2022-06-10 11:38:21',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000071,NULL,'Usuario de Teste 25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario25 usuario de teste 25',NULL,'S',NULL,'usuario25',110000001,2,'2022-06-10 11:38:25',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 25',NULL,NULL),(100000072,NULL,'Unidade 2022-06-1014-38-24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-24 unidade 2022-06-1014-38-24',NULL,'S',NULL,'Un-2022-06-10-14-38-24',110000001,2,'2022-06-10 11:38:26',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000073,NULL,'Usuario de Teste 26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario26 usuario de teste 26',NULL,'S',NULL,'usuario26',110000001,2,'2022-06-10 11:38:31',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 26',NULL,NULL),(100000074,NULL,'Unidade 2022-06-1014-38-29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'un-2022-06-10-14-38-29 unidade 2022-06-1014-38-29',NULL,'S',NULL,'Un-2022-06-10-14-38-29',110000001,2,'2022-06-10 11:38:32',NULL,NULL,NULL,'J','N',NULL,NULL,NULL,NULL,100000010,NULL,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(100000075,NULL,'Usuario de Teste 27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario27 usuario de teste 27',NULL,'S',NULL,'usuario27',110000001,2,'2022-06-10 11:38:36',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 27',NULL,NULL),(100000076,NULL,'Usuario de Teste 28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario28 usuario de teste 28',NULL,'S',NULL,'usuario28',110000001,2,'2022-06-10 11:38:41',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 28',NULL,NULL),(100000077,NULL,'Usuario de Teste 1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario1 usuario de teste 1',NULL,'S',NULL,'usuario1',110000001,2,'2022-06-10 11:38:42',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 1',NULL,NULL),(100000078,NULL,'Usuario de Teste 29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario29 usuario de teste 29',NULL,'S',NULL,'usuario29',110000001,2,'2022-06-10 11:38:46',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 29',NULL,NULL),(100000079,NULL,'Usuario de Teste 30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario30 usuario de teste 30',NULL,'S',NULL,'usuario30',110000001,2,'2022-06-10 11:38:51',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 30',NULL,NULL),(100000080,NULL,'Usuario de Teste 31',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario31 usuario de teste 31',NULL,'S',NULL,'usuario31',110000001,2,'2022-06-10 11:38:57',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 31',NULL,NULL),(100000081,NULL,'Usuario de Teste 2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario2 usuario de teste 2',NULL,'S',NULL,'usuario2',110000001,2,'2022-06-10 11:38:59',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 2',NULL,NULL),(100000082,NULL,'Usuario de Teste 32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario32 usuario de teste 32',NULL,'S',NULL,'usuario32',110000001,2,'2022-06-10 11:39:02',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 32',NULL,NULL),(100000083,NULL,'Usuario de Teste 33',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario33 usuario de teste 33',NULL,'S',NULL,'usuario33',110000001,2,'2022-06-10 11:39:07',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 33',NULL,NULL),(100000084,NULL,'Usuario de Teste 34',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario34 usuario de teste 34',NULL,'S',NULL,'usuario34',110000001,2,'2022-06-10 11:39:12',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 34',NULL,NULL),(100000085,NULL,'Usuario de Teste 35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario35 usuario de teste 35',NULL,'S',NULL,'usuario35',110000001,2,'2022-06-10 11:39:17',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 35',NULL,NULL),(100000086,NULL,'Usuario de Teste 36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario36 usuario de teste 36',NULL,'S',NULL,'usuario36',110000001,2,'2022-06-10 11:39:22',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 36',NULL,NULL),(100000087,NULL,'Usuario de Teste 37',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario37 usuario de teste 37',NULL,'S',NULL,'usuario37',110000001,2,'2022-06-10 11:39:26',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 37',NULL,NULL),(100000088,NULL,'Usuario de Teste 38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario38 usuario de teste 38',NULL,'S',NULL,'usuario38',110000001,2,'2022-06-10 11:39:31',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 38',NULL,NULL),(100000089,NULL,'Usuario de Teste 39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario39 usuario de teste 39',NULL,'S',NULL,'usuario39',110000001,2,'2022-06-10 11:39:36',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 39',NULL,NULL),(100000090,NULL,'Usuario de Teste 40',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario40 usuario de teste 40',NULL,'S',NULL,'usuario40',110000001,2,'2022-06-10 11:39:42',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 40',NULL,NULL),(100000091,NULL,'Usuario de Teste 41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario41 usuario de teste 41',NULL,'S',NULL,'usuario41',110000001,2,'2022-06-10 11:39:47',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 41',NULL,NULL),(100000092,NULL,'Usuario de Teste 42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario42 usuario de teste 42',NULL,'S',NULL,'usuario42',110000001,2,'2022-06-10 11:39:51',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 42',NULL,NULL),(100000093,NULL,'Usuario de Teste 43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario43 usuario de teste 43',NULL,'S',NULL,'usuario43',110000001,2,'2022-06-10 11:39:56',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 43',NULL,NULL),(100000094,NULL,'Usuario de Teste 44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario44 usuario de teste 44',NULL,'S',NULL,'usuario44',110000001,2,'2022-06-10 11:40:01',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 44',NULL,NULL),(100000095,NULL,'Usuario de Teste 45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario45 usuario de teste 45',NULL,'S',NULL,'usuario45',110000001,2,'2022-06-10 11:40:06',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 45',NULL,NULL),(100000096,NULL,'Usuario de Teste 46',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario46 usuario de teste 46',NULL,'S',NULL,'usuario46',110000001,2,'2022-06-10 11:40:10',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 46',NULL,NULL),(100000097,NULL,'Usuario de Teste 47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario47 usuario de teste 47',NULL,'S',NULL,'usuario47',110000001,2,'2022-06-10 11:40:15',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 47',NULL,NULL),(100000098,NULL,'Usuario de Teste 48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario48 usuario de teste 48',NULL,'S',NULL,'usuario48',110000001,2,'2022-06-10 11:40:20',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 48',NULL,NULL),(100000099,NULL,'Usuario de Teste 49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario49 usuario de teste 49',NULL,'S',NULL,'usuario49',110000001,2,'2022-06-10 11:40:24',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 49',NULL,NULL),(100000100,NULL,'Usuario de Teste 50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario50 usuario de teste 50',NULL,'S',NULL,'usuario50',110000001,2,'2022-06-10 11:40:29',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 50',NULL,NULL),(100000101,NULL,'Usuario de Teste 51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario51 usuario de teste 51',NULL,'S',NULL,'usuario51',110000001,2,'2022-06-10 11:40:35',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 51',NULL,NULL),(100000102,NULL,'Usuario de Teste 52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'usuario52 usuario de teste 52',NULL,'S',NULL,'usuario52',110000001,2,'2022-06-10 11:40:39',NULL,NULL,NULL,'F','S',NULL,NULL,NULL,NULL,100000010,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Usuario de Teste 52',NULL,NULL); +/*!40000 ALTER TABLE `contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `controle_interno` +-- + +DROP TABLE IF EXISTS `controle_interno`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `controle_interno` ( + `id_controle_interno` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_controle_interno`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `controle_interno` +-- + +LOCK TABLES `controle_interno` WRITE; +/*!40000 ALTER TABLE `controle_interno` DISABLE KEYS */; +/*!40000 ALTER TABLE `controle_interno` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `controle_prazo` +-- + +DROP TABLE IF EXISTS `controle_prazo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `controle_prazo` ( + `id_controle_prazo` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `dta_prazo` datetime NOT NULL, + `dta_conclusao` datetime DEFAULT NULL, + PRIMARY KEY (`id_controle_prazo`), + KEY `fk_controle_prazo_protocolo` (`id_protocolo`), + KEY `fk_controle_prazo_unidade` (`id_unidade`), + KEY `fk_controle_prazo_usuario` (`id_usuario`), + KEY `i01_controle_prazo` (`id_unidade`,`dta_prazo`,`dta_conclusao`), + KEY `i02_controle_prazo` (`id_unidade`,`dta_prazo`), + KEY `i03_controle_prazo` (`id_unidade`,`dta_conclusao`), + CONSTRAINT `fk_controle_prazo_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_controle_prazo_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_controle_prazo_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `controle_prazo` +-- + +LOCK TABLES `controle_prazo` WRITE; +/*!40000 ALTER TABLE `controle_prazo` DISABLE KEYS */; +/*!40000 ALTER TABLE `controle_prazo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `controle_unidade` +-- + +DROP TABLE IF EXISTS `controle_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `controle_unidade` ( + `id_controle_unidade` bigint(20) NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `id_situacao` int(11) NOT NULL, + `dth_snapshot` datetime NOT NULL, + `id_usuario` int(11) NOT NULL, + `dth_execucao` datetime NOT NULL, + PRIMARY KEY (`id_controle_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `controle_unidade` +-- + +LOCK TABLES `controle_unidade` WRITE; +/*!40000 ALTER TABLE `controle_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `controle_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `documento` +-- + +DROP TABLE IF EXISTS `documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `documento` ( + `id_documento` bigint(20) NOT NULL, + `numero` varchar(50) DEFAULT NULL, + `id_unidade_responsavel` int(11) NOT NULL, + `id_documento_edoc` bigint(20) DEFAULT NULL, + `id_serie` int(11) NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `sin_bloqueado` char(1) NOT NULL, + `id_conjunto_estilos` int(11) DEFAULT NULL, + `id_tipo_conferencia` int(11) DEFAULT NULL, + `id_tipo_formulario` int(11) DEFAULT NULL, + `sta_documento` char(1) NOT NULL, + `nome_arvore` varchar(50) DEFAULT NULL, + `sin_arquivamento` char(1) NOT NULL, + PRIMARY KEY (`id_documento`), + UNIQUE KEY `ak_documento` (`id_documento`,`id_procedimento`), + KEY `if5_documento` (`id_serie`,`id_documento`,`id_procedimento`), + KEY `fk_documento_conjunto_estilos` (`id_conjunto_estilos`), + KEY `fk_documento_tipo_conferencia` (`id_tipo_conferencia`), + KEY `fk_documento_tipo_formulario` (`id_tipo_formulario`), + KEY `i02_documento` (`id_documento`,`id_documento_edoc`), + KEY `i03_documento` (`id_documento`,`id_serie`,`id_tipo_formulario`,`sta_documento`), + KEY `fk_documento_procedimento` (`id_procedimento`), + KEY `fk_documento_serie` (`id_serie`), + KEY `fk_documento_unidade_responsav` (`id_unidade_responsavel`), + KEY `i04_documento` (`numero`,`id_serie`), + KEY `i06_documento` (`id_documento`,`sin_arquivamento`), + CONSTRAINT `fk_documento_conjunto_estilos` FOREIGN KEY (`id_conjunto_estilos`) REFERENCES `conjunto_estilos` (`id_conjunto_estilos`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_documento_procedimento` FOREIGN KEY (`id_procedimento`) REFERENCES `procedimento` (`id_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_documento_protocolo` FOREIGN KEY (`id_documento`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_documento_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_documento_tipo_conferencia` FOREIGN KEY (`id_tipo_conferencia`) REFERENCES `tipo_conferencia` (`id_tipo_conferencia`), + CONSTRAINT `fk_documento_tipo_formulario` FOREIGN KEY (`id_tipo_formulario`) REFERENCES `tipo_formulario` (`id_tipo_formulario`), + CONSTRAINT `fk_documento_unidade_responsav` FOREIGN KEY (`id_unidade_responsavel`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `documento` +-- + +LOCK TABLES `documento` WRITE; +/*!40000 ALTER TABLE `documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `documento_conteudo` +-- + +DROP TABLE IF EXISTS `documento_conteudo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `documento_conteudo` ( + `id_documento` bigint(20) NOT NULL, + `conteudo` longtext, + `conteudo_assinatura` longtext, + `crc_assinatura` char(8) DEFAULT NULL, + `qr_code_assinatura` longtext, + PRIMARY KEY (`id_documento`), + CONSTRAINT `fk_doc_conteudo_documento` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `documento_conteudo` +-- + +LOCK TABLES `documento_conteudo` WRITE; +/*!40000 ALTER TABLE `documento_conteudo` DISABLE KEYS */; +/*!40000 ALTER TABLE `documento_conteudo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dominio` +-- + +DROP TABLE IF EXISTS `dominio`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `dominio` ( + `id_dominio` int(11) NOT NULL, + `id_atributo` int(11) NOT NULL, + `valor` varchar(50) NOT NULL, + `rotulo` varchar(100) NOT NULL, + `ordem` int(11) NOT NULL, + `sin_padrao` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_dominio`), + KEY `fk_dominio_atributo` (`id_atributo`), + CONSTRAINT `fk_dominio_atributo` FOREIGN KEY (`id_atributo`) REFERENCES `atributo` (`id_atributo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dominio` +-- + +LOCK TABLES `dominio` WRITE; +/*!40000 ALTER TABLE `dominio` DISABLE KEYS */; +/*!40000 ALTER TABLE `dominio` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_grupo_email` +-- + +DROP TABLE IF EXISTS `email_grupo_email`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_grupo_email` ( + `id_email_grupo_email` int(11) NOT NULL, + `id_grupo_email` int(11) NOT NULL, + `email` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `idx_email_grupo_email` varchar(500) DEFAULT NULL, + PRIMARY KEY (`id_email_grupo_email`), + KEY `fk_email_grupo_email_grupo_em` (`id_grupo_email`), + CONSTRAINT `fk_email_grupo_email_grupo_em` FOREIGN KEY (`id_grupo_email`) REFERENCES `grupo_email` (`id_grupo_email`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_grupo_email` +-- + +LOCK TABLES `email_grupo_email` WRITE; +/*!40000 ALTER TABLE `email_grupo_email` DISABLE KEYS */; +/*!40000 ALTER TABLE `email_grupo_email` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_sistema` +-- + +DROP TABLE IF EXISTS `email_sistema`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_sistema` ( + `id_email_sistema` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `de` varchar(250) NOT NULL, + `para` varchar(250) NOT NULL, + `assunto` varchar(250) NOT NULL, + `conteudo` longtext NOT NULL, + `sin_ativo` char(1) NOT NULL, + `id_email_sistema_modulo` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_email_sistema`), + UNIQUE KEY `i01_email_sistema` (`id_email_sistema_modulo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_sistema` +-- + +LOCK TABLES `email_sistema` WRITE; +/*!40000 ALTER TABLE `email_sistema` DISABLE KEYS */; +INSERT INTO `email_sistema` VALUES (1,'Envio de processo para unidade','@sigla_sistema@ <@email_sistema@>','@emails_unidade@','SEI - Processo nº @processo@ enviado para esta Unidade',' :: Este é um e-mail automático ::\r\n\r\nO Processo nº @processo@ (@tipo_processo@) foi enviado pela unidade @sigla_unidade_remetente@ para a unidade @sigla_unidade_destinataria@.','S',NULL),(2,'Concessão de credencial em processo sigiloso','@sigla_sistema@ <@email_sistema@>','@emails_unidade@','SEI - Concessão de Credencial de Acesso em Processo Sigiloso',' :: Este é um e-mail automático ::\r\n\r\nO usuário @sigla_usuario_credencial@ recebeu credencial de acesso em processo sigiloso nesta Unidade (@sigla_unidade_credencial@/@sigla_orgao_unidade_credencial@).\r\n\r\nFavor verificar o Controle de Processos no @sigla_sistema@.','S',NULL),(3,'Concessão de credencial de assinatura em processo sigiloso','@sigla_sistema@ <@email_sistema@>','@emails_unidade@','SEI - Concessão de Credencial de Assinatura em Processo Sigiloso',' :: Este é um e-mail automático ::\r\n\r\nO usuário @sigla_usuario_credencial@ recebeu credencial de assinatura de documento em processo sigiloso na unidade @sigla_unidade_credencial@/@sigla_orgao_unidade_credencial@.\r\n\r\nFavor verificar o Controle de Processos no @sigla_sistema@.','S',NULL),(4,'Disponibilização de acesso externo','@email_unidade@','@email_destinatario@','SEI - Acesso Externo ao Processo nº @processo@',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_destinatario@,\r\n\r\nEste e-mail informa que foi concedido acesso externo ao Processo nº @processo@ no SEI-@sigla_orgao@, para o usuário @nome_destinatario@.\r\n\r\nO referido acesso externo será válido até @data_validade@ e poderá ser realizado por meio do link a seguir: @link_acesso_externo@\r\n\r\n@sigla_unidade@/@sigla_orgao@\r\n@descricao_orgao@\r\n@sitio_internet_orgao@\r\n\r\n\r\nATENÇÃO: As informações contidas neste e-mail, incluindo seus anexos, podem ser restritas apenas à pessoa ou entidade para a qual foi endereçada. Se você não é o destinatário ou a pessoa responsável por encaminhar esta mensagem ao destinatário, você está, por meio desta, notificado que não deverá rever, retransmitir, imprimir, copiar, usar ou distribuir esta mensagem ou quaisquer anexos. Caso você tenha recebido esta mensagem por engano, por favor, contate o remetente imediatamente e em seguida apague esta mensagem.','S',NULL),(5,'Disponibilização de acesso externo em processo para usuário externo','@email_unidade@','@email_usuario_externo@','SEI - Acesso Externo ao Processo nº @processo@',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_usuario_externo@,\r\n\r\nEste e-mail informa que foi concedido acesso externo ao Processo nº @processo@ no SEI-@sigla_orgao@, para o Usuário Externo @nome_usuario_externo@ (@email_usuario_externo@).\r\n\r\nPara o referido acesso externo, poderá acesse a área destinada aos Usuários Externos no SEI-@sigla_orgao@ ou acesse o link a seguir: @link_login_usuario_externo@\r\n\r\n@sigla_unidade@/@sigla_orgao@\r\n@descricao_orgao@\r\n@sitio_internet_orgao@\r\n\r\n\r\nATENÇÃO: As informações contidas neste e-mail, incluindo seus anexos, podem ser restritas apenas à pessoa ou entidade para a qual foi endereçada. Se você não é o destinatário ou a pessoa responsável por encaminhar esta mensagem ao destinatário, você está, por meio desta, notificado que não deverá rever, retransmitir, imprimir, copiar, usar ou distribuir esta mensagem ou quaisquer anexos. Caso você tenha recebido esta mensagem por engano, por favor, contate o remetente imediatamente e em seguida apague esta mensagem.','S',NULL),(6,'Disponibilização para assinatura externa em documento para usuário externo','@email_unidade@','@email_usuario_externo@','SEI - Liberação para Assinatura Externa de Documento no Processo nº @processo@',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_usuario_externo@,\r\n\r\nEste e-mail informa a liberação para Assinatura Externa do documento nº @documento@ (@tipo_documento@) pelo usuário @nome_usuario_externo@ (@email_usuario_externo@) no SEI-@sigla_orgao@, no âmbito do Processo nº @processo@.\r\n\r\nPara assinar eletronicamente o referido documento, acesse a área destinada aos Usuários Externos no SEI-@sigla_orgao@ ou acesse o link a seguir: @link_login_usuario_externo@\r\n\r\n@sigla_unidade@/@sigla_orgao@\r\n@descricao_orgao@\r\n@sitio_internet_orgao@\r\n\r\n\r\nATENÇÃO: As informações contidas neste e-mail, incluindo seus anexos, podem ser restritas apenas à pessoa ou entidade para a qual foi endereçada. Se você não é o destinatário ou a pessoa responsável por encaminhar esta mensagem ao destinatário, você está, por meio desta, notificado que não deverá rever, retransmitir, imprimir, copiar, usar ou distribuir esta mensagem ou quaisquer anexos. Caso você tenha recebido esta mensagem por engano, por favor, contate o remetente imediatamente e em seguida apague esta mensagem.','S',NULL),(7,'Cadastro de usuário externo','@sigla_sistema@ <@email_sistema@>','@email_usuario_externo@','SEI - Cadastro de Usuário Externo',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_usuario_externo@,\r\n\r\nSua solicitação de cadastro como Usuário Externo no SEI-@sigla_orgao@ foi recebida com sucesso.\r\n\r\nPara aprovação de seu cadastro é necessário apresentar em uma das unidades do @sigla_orgao@ os seguintes documentos:\r\n\r\n - Cópia de Comprovante de Residência [juntamente com o original para fins de autenticação administrativa]\r\n - Cópias de RG e CPF ou de outro documento de identidade no qual conste CPF [juntamente com o original para fins de autenticação administrativa]\r\n - Termo de Declaração de Concordância e Veracidade preenchido e assinado (incluir aqui o link para o PDF do Termo a ser entregue)\r\n\r\nAtenção: Alternativamente, poderão ser enviados por correios as cópias autenticadas dos documentos acima indicados e o presente Termo com reconhecimento de firma em cartório. A correspondência deve ser endereçada ao Protocolo Sede do @sigla_orgao@ (indicar aqui o endereço do Protocolo da Sede).\r\n\r\nPara obter mais informações, envie e-mail para [indicar aqui o e-mail]\r\n\r\n\r\n@descricao_orgao@ - @sigla_orgao@\r\n@sitio_internet_orgao@\r\n\r\nATENÇÃO: As informações contidas neste e-mail, incluindo seus anexos, podem ser restritas apenas à pessoa ou entidade para a qual foi endereçada. Se você não é o destinatário ou a pessoa responsável por encaminhar esta mensagem ao destinatário, você está, por meio desta, notificado que não deverá rever, retransmitir, imprimir, copiar, usar ou distribuir esta mensagem ou quaisquer anexos. Caso você tenha recebido esta mensagem por engano, por favor, contate o remetente imediatamente e em seguida apague esta mensagem.','S',NULL),(8,'Geração de senha para usuário externo','@sigla_sistema@ <@email_sistema@>','@email_usuario_externo@','SEI - Geração de Senha para Usuário Externo',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_usuario_externo@,\r\n\r\nSua solicitação para geração de nova senha de acesso externo ao SEI-@sigla_orgao@ foi processada com sucesso.\r\n\r\n - Sua nova senha é: @nova_senha_usuario_externo@\r\n\r\nPara alterá-la novamente, acesse a área destinada aos Usuários Externos no SEI-@sigla_orgao@ ou acesse o link a seguir: @link_login_usuario_externo@\r\n\r\n@descricao_orgao@ - @sigla_orgao@\r\n@sitio_internet_orgao@\r\n\r\n\r\nATENÇÃO: As informações contidas neste e-mail, incluindo seus anexos, podem ser restritas apenas à pessoa ou entidade para a qual foi endereçada. Se você não é o destinatário ou a pessoa responsável por encaminhar esta mensagem ao destinatário, você está, por meio desta, notificado que não deverá rever, retransmitir, imprimir, copiar, usar ou distribuir esta mensagem ou quaisquer anexos. Caso você tenha recebido esta mensagem por engano, por favor, contate o remetente imediatamente e em seguida apague esta mensagem.','S',NULL),(9,'Contato com Ouvidoria','Ouvidoria @sigla_orgao@ ','@nome_contato@ <@email_contato@>','Contato - Ouvidoria @sigla_orgao@',' :: Este é um e-mail automático ::\r\n\r\nPrezado(a) @nome_contato@,\r\n\r\nSeu contato foi recebido com sucesso pela Ouvidoria @sigla_orgao@ e registrado por meio do Processo nº @processo@ (@tipo_processo@).\r\n\r\nA resposta será encaminhada, com a maior brevidade possível, para este endereço de e-mail (@email_contato@).\r\n\r\nOuvidoria @sigla_orgao@\r\n@descricao_orgao@\r\n@sitio_internet_orgao@\r\n\r\n\r\n:: Abaixo, segue o conteúdo integral de sua demanda:\r\n\r\n@conteudo_formulario_ouvidoria@','S',NULL),(10,'Correção de encaminhamento de Ouvidoria','@sigla_orgao_origem@ ','@nome_contato@ <@email_contato@>','Contato com OUVIDORIA/@sigla_orgao_origem@ - Correção de Encaminhamento','\r\nEste é um e-mail automático.\r\n\r\nA demanda abaixo, registrada na ouvidoria do órgão @sigla_orgao_origem@, deveria ter sido protocolada no órgão @sigla_orgao_destino@, motivo pelo qual foi realizada a correção de encaminhamento e o novo número do seu processo é @processo_destino@.\r\n\r\n@conteudo_formulario_ouvidoria@\r\n\r\n','S',NULL); +/*!40000 ALTER TABLE `email_sistema` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_unidade` +-- + +DROP TABLE IF EXISTS `email_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_unidade` ( + `id_email_unidade` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `email` varchar(50) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_email_unidade`), + KEY `fk_email_unidade_unidade` (`id_unidade`), + CONSTRAINT `fk_email_unidade_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_unidade` +-- + +LOCK TABLES `email_unidade` WRITE; +/*!40000 ALTER TABLE `email_unidade` DISABLE KEYS */; +INSERT INTO `email_unidade` VALUES (726,110000001,'teste@dominio.gov.br','E-mail da Unidade'),(727,110000002,'teste_1_1@dominio.gov.br','E-mail da Unidade'),(728,110000003,'teste_1_2@dominio.gov.br','E-mail da Unidade'); +/*!40000 ALTER TABLE `email_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_utilizado` +-- + +DROP TABLE IF EXISTS `email_utilizado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_utilizado` ( + `id_email_utilizado` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `email` varchar(300) NOT NULL, + PRIMARY KEY (`id_email_utilizado`), + KEY `fk_email_utilizado_unidade` (`id_unidade`), + CONSTRAINT `fk_email_utilizado_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_utilizado` +-- + +LOCK TABLES `email_utilizado` WRITE; +/*!40000 ALTER TABLE `email_utilizado` DISABLE KEYS */; +/*!40000 ALTER TABLE `email_utilizado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `estatisticas` +-- + +DROP TABLE IF EXISTS `estatisticas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `estatisticas` ( + `id_estatisticas` bigint(20) NOT NULL, + `id_procedimento` bigint(20) DEFAULT NULL, + `id_documento` bigint(20) DEFAULT NULL, + `id_unidade` int(11) DEFAULT NULL, + `id_usuario` int(11) NOT NULL, + `ano` int(11) DEFAULT NULL, + `mes` int(11) DEFAULT NULL, + `tempo_aberto` bigint(20) DEFAULT NULL, + `dth_snapshot` datetime NOT NULL, + `dth_abertura` datetime DEFAULT NULL, + `dth_conclusao` datetime DEFAULT NULL, + `id_tipo_procedimento` int(11) DEFAULT NULL, + `quantidade` bigint(20) DEFAULT NULL, + KEY `i01_estatisticas` (`id_estatisticas`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `estatisticas` +-- + +LOCK TABLES `estatisticas` WRITE; +/*!40000 ALTER TABLE `estatisticas` DISABLE KEYS */; +/*!40000 ALTER TABLE `estatisticas` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `estilo` +-- + +DROP TABLE IF EXISTS `estilo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `estilo` ( + `id_estilo` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `formatacao` longtext NOT NULL, + PRIMARY KEY (`id_estilo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `estilo` +-- + +LOCK TABLES `estilo` WRITE; +/*!40000 ALTER TABLE `estilo` DISABLE KEYS */; +INSERT INTO `estilo` VALUES (10,'Texto_Alinhado_Esquerda','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(11,'Texto_Alinhado_Direita','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(12,'Texto_Centralizado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(13,'Texto_Justificado','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(14,'Texto_Justificado_Recuo_Primeira_Linha','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(15,'Citacao','\'font-size\':\'10pt\',\'font-family\':\'Calibri\',\'word-wrap\':\'normal\',\'margin\':\'4pt 0 4pt 160px\',\'text-align\':\'justify\''),(24,'Texto_Centralizado_Maiusculas','\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(27,'Tabela_Texto_8','\'font-size\':\'8pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(29,'Texto_Alinhado_Esquerda_Espacamento_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(30,'Tabela_Texto_Alinhado_Direita','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'right\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(31,'Tabela_Texto_Alinhado_Esquerda','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0 3pt\''),(32,'Tabela_Texto_Centralizado','\'font-size\':\'11pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'word-wrap\':\'normal\',\'margin\':\'0 3pt 0\''),(33,'Texto_Alinhado_Esquerda_Espacamento_Simples_Maiusc','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'left\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\',\'margin\':\'0\''),(34,'Texto_Centralizado_Maiusculas_Negrito','\'font-weight\':\'bold\',\'font-size\':\'13pt\',\'font-family\':\'Calibri\',\'text-align\':\'center\',\'text-transform\':\'uppercase\',\'word-wrap\':\'normal\''),(35,'Texto_Espaco_Duplo_Recuo_Primeira_Linha','\'letter-spacing\':\'0.2em\',\'font-weight\':\'bold\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\''),(36,'Texto_Fundo_Cinza_Maiusculas_Negrito','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(37,'Texto_Fundo_Cinza_Negrito','\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\''),(38,'Paragrafo_Numerado_Nivel1','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n1\',\'counter-reset\':\'paragrafo-n2 paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(39,'Paragrafo_Numerado_Nivel1:before','\'content\':\'counter(paragrafo-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(40,'Item_Nivel1','\'text-transform\':\'uppercase\',\'font-weight\':\'bold\',\'background-color\':\'#e6e6e6\',\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'counter-increment\':\'item-n1\',\'counter-reset\':\'item-n2 item-n3 item-n4 romano_maiusculo letra_minuscula\''),(41,'Item_Nivel1:before','\'content\':\'counter(item-n1) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(42,'Item_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n2\',\'counter-reset\':\'item-n3 item-n4 romano_maiusculo letra_minuscula\''),(43,'Item_Nivel2:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(44,'Paragrafo_Numerado_Nivel2','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n2\',\'counter-reset\':\'paragrafo-n3 paragrafo-n4 romano_maiusculo letra_minuscula\''),(45,'Paragrafo_Numerado_Nivel2:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(46,'Item_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n3\',\'counter-reset\':\'item-n4 romano_maiusculo letra_minuscula\''),(47,'Item_Nivel3:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(48,'Item_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'item-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(49,'Item_Nivel4:before','\'content\':\'counter(item-n1) \".\" counter(item-n2) \".\" counter(item-n3) \".\" counter(item-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(50,'Paragrafo_Numerado_Nivel3','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n3\',\'counter-reset\':\'paragrafo-n4 romano_maiusculo letra_minuscula\''),(51,'Paragrafo_Numerado_Nivel3:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(52,'Item_Inciso_Romano','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0mm\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'romano_maiusculo\',\'counter-reset\':\'letra_minuscula\''),(53,'Item_Inciso_Romano:before','\'content\':\'counter(romano_maiusculo, upper-roman) \" - \"\',\'display\':\'inline-block\',\'width\':\'15mm\',\'font-weight\':\'normal\''),(54,'Item_Alinea_Letra','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt 6pt 6pt 120px\',\'counter-increment\':\'letra_minuscula\''),(55,'Item_Alinea_Letra:before','\'content\':\'counter(letra_minuscula, lower-latin) \") \"\',\'display\':\'inline-block\',\'width\':\'5mm\',\'font-weight\':\'normal\''),(56,'Texto_Justificado_Maiusculas','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'text-indent\':\'0\',\'margin\':\'6pt\',\'text-transform\':\'uppercase\''),(57,'Paragrafo_Numerado_Nivel4','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'0mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'6pt\',\'counter-increment\':\'paragrafo-n4\',\'counter-reset\':\'romano_maiusculo letra_minuscula\''),(58,'Paragrafo_Numerado_Nivel4:before','\'content\':\'counter(paragrafo-n1) \".\" counter(paragrafo-n2) \".\" counter(paragrafo-n3) \".\" counter(paragrafo-n4) \".\"\',\'display\':\'inline-block\',\'width\':\'25mm\',\'font-weight\':\'normal\''),(59,'Texto_Justificado_Recuo_Primeira_Linha_Esp_Simples','\'font-size\':\'12pt\',\'font-family\':\'Calibri\',\'text-indent\':\'25mm\',\'text-align\':\'justify\',\'word-wrap\':\'normal\',\'margin\':\'0 0 0 6pt\''); +/*!40000 ALTER TABLE `estilo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `feed` +-- + +DROP TABLE IF EXISTS `feed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `feed` ( + `id_feed` int(11) NOT NULL, + `conteudo` longtext, + PRIMARY KEY (`id_feed`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `feed` +-- + +LOCK TABLES `feed` WRITE; +/*!40000 ALTER TABLE `feed` DISABLE KEYS */; +/*!40000 ALTER TABLE `feed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `feriado` +-- + +DROP TABLE IF EXISTS `feriado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `feriado` ( + `id_feriado` int(11) NOT NULL, + `id_orgao` int(11) DEFAULT NULL, + `descricao` varchar(100) NOT NULL, + `dta_feriado` datetime NOT NULL, + PRIMARY KEY (`id_feriado`), + KEY `fk_feriado_orgao` (`id_orgao`), + CONSTRAINT `fk_feriado_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `feriado` +-- + +LOCK TABLES `feriado` WRITE; +/*!40000 ALTER TABLE `feriado` DISABLE KEYS */; +INSERT INTO `feriado` VALUES (1,NULL,'Confraternização Universal','2017-01-01 00:00:00'),(2,NULL,'Segunda-feira de Carnaval','2017-02-27 00:00:00'),(3,NULL,'Terça-feira de Carnaval','2017-02-28 00:00:00'),(4,NULL,'Sexta-Feira da Paixão','2017-04-14 00:00:00'),(5,NULL,'Tiradentes','2017-04-21 00:00:00'),(6,NULL,'Dia Mundial do Trabalho','2017-05-01 00:00:00'),(7,NULL,'Corpus Christi','2017-06-15 00:00:00'),(8,NULL,'Independência do Brasil','2017-09-07 00:00:00'),(9,NULL,'Nossa Senhora Aparecida, Padroeira do Brasil','2017-10-12 00:00:00'),(10,NULL,'Finados','2017-11-02 00:00:00'),(11,NULL,'Proclamação da República','2017-11-15 00:00:00'),(12,NULL,'Natal','2017-12-25 00:00:00'); +/*!40000 ALTER TABLE `feriado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_acompanhamento` +-- + +DROP TABLE IF EXISTS `grupo_acompanhamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_acompanhamento` ( + `id_grupo_acompanhamento` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_grupo_acompanhamento`), + KEY `fk_grupo_acompanhamento_unidad` (`id_unidade`), + CONSTRAINT `fk_grupo_acompanhamento_unidad` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_acompanhamento` +-- + +LOCK TABLES `grupo_acompanhamento` WRITE; +/*!40000 ALTER TABLE `grupo_acompanhamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_acompanhamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_bloco` +-- + +DROP TABLE IF EXISTS `grupo_bloco`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_bloco` ( + `id_grupo_bloco` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_grupo_bloco`), + KEY `fk_grupo_bloco_unidade` (`id_unidade`), + CONSTRAINT `fk_grupo_bloco_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_bloco` +-- + +LOCK TABLES `grupo_bloco` WRITE; +/*!40000 ALTER TABLE `grupo_bloco` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_bloco` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_contato` +-- + +DROP TABLE IF EXISTS `grupo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_contato` ( + `id_grupo_contato` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `sta_tipo` char(1) NOT NULL, + PRIMARY KEY (`id_grupo_contato`), + KEY `fk_grupo_contato_unidade` (`id_unidade`), + CONSTRAINT `fk_grupo_contato_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_contato` +-- + +LOCK TABLES `grupo_contato` WRITE; +/*!40000 ALTER TABLE `grupo_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_email` +-- + +DROP TABLE IF EXISTS `grupo_email`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_email` ( + `id_grupo_email` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `sta_tipo` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_grupo_email`), + KEY `fk_grupo_email_unidade` (`id_unidade`), + CONSTRAINT `fk_grupo_email_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_email` +-- + +LOCK TABLES `grupo_email` WRITE; +/*!40000 ALTER TABLE `grupo_email` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_email` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_federacao` +-- + +DROP TABLE IF EXISTS `grupo_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_federacao` ( + `id_grupo_federacao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_grupo_federacao`), + KEY `fk_grupo_federacao_unidade` (`id_unidade`), + CONSTRAINT `fk_grupo_federacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_federacao` +-- + +LOCK TABLES `grupo_federacao` WRITE; +/*!40000 ALTER TABLE `grupo_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_protocolo_modelo` +-- + +DROP TABLE IF EXISTS `grupo_protocolo_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_protocolo_modelo` ( + `id_grupo_protocolo_modelo` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_grupo_protocolo_modelo`), + KEY `fk_grupo_protocolo_modelo_unid` (`id_unidade`), + CONSTRAINT `fk_grupo_protocolo_modelo_unid` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_protocolo_modelo` +-- + +LOCK TABLES `grupo_protocolo_modelo` WRITE; +/*!40000 ALTER TABLE `grupo_protocolo_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_protocolo_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_serie` +-- + +DROP TABLE IF EXISTS `grupo_serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_serie` ( + `id_grupo_serie` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_grupo_serie`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_serie` +-- + +LOCK TABLES `grupo_serie` WRITE; +/*!40000 ALTER TABLE `grupo_serie` DISABLE KEYS */; +INSERT INTO `grupo_serie` VALUES (1,'Internos (com modelo)','S','Tipos de Documentos internos, com formatação definida'),(2,'Externos (sem modelo)','S','Tipos de Documentos externos, sem modelo de formatação pré definido, ou seja, para anexação como Documento Externo'); +/*!40000 ALTER TABLE `grupo_serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `grupo_unidade` +-- + +DROP TABLE IF EXISTS `grupo_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `grupo_unidade` ( + `id_grupo_unidade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_grupo_unidade`), + KEY `fk_grupo_unidade_unidade` (`id_unidade`), + CONSTRAINT `fk_grupo_unidade_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `grupo_unidade` +-- + +LOCK TABLES `grupo_unidade` WRITE; +/*!40000 ALTER TABLE `grupo_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `grupo_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `hipotese_legal` +-- + +DROP TABLE IF EXISTS `hipotese_legal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `hipotese_legal` ( + `id_hipotese_legal` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `base_legal` varchar(50) NOT NULL, + `descricao` varchar(500) DEFAULT NULL, + `sta_nivel_acesso` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_hipotese_legal`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `hipotese_legal` +-- + +LOCK TABLES `hipotese_legal` WRITE; +/*!40000 ALTER TABLE `hipotese_legal` DISABLE KEYS */; +INSERT INTO `hipotese_legal` VALUES (1,'Controle Interno','Art. 26, § 3º, da Lei nº 10.180/2001','Nenhum documento ou informação poderá ser sonegado aos servidores dos Sistemas de Contabilidade Federal e de Controle Interno, no exercício das atribuições inerentes às atividades de registros contábeis, de auditoria, fiscalização e avaliação de gestão. - Deverá guardar sigilo sobre dados e informações pertinentes a que tiver acesso em decorrência do exercício de suas funções, utilizando-os, exclusivamente, para a elaboração de pareceres e relatórios destinados à autoridade competente.','1','S'),(2,'Direito Autoral','Art. 24, III, da Lei nº 9.610/1998','Art. 24. São direitos morais do autor: (...) III - o de conservar a obra inédita;','1','S'),(3,'Documento Preparatório','Art. 7º, § 3º, da Lei nº 12.527/2011','Art. 7º O acesso à informação de que trata esta Lei compreende, entre outros, os direitos de obter: [...]\r\n§ 3º O direito de acesso aos documentos ou às informações neles contidas utilizados como fundamento da tomada de decisão e do ato administrativo será assegurado com a edição do ato decisório respectivo.','1','S'),(4,'Informação Pessoal','Art. 31 da Lei nº 12.527/2011','O tratamento das informações pessoais deve ser feito de forma transparente e com respeito à intimidade, vida privada, honra e imagem das pessoas, bem como às liberdades e garantias individuais.\r\n\r\nAs informações pessoais terão seu acesso restrito, independentemente de classificação de sigilo e pelo prazo máximo de 100 anos a contar da sua data de produção, a agentes públicos legalmente autorizados e à pessoa a que elas se referirem.','1','S'),(5,'Informações Privilegiadas de Sociedades Anônimas','Art. 155, § 2º, da Lei nº 6.404/1976','Art. 155. O administrador deve servir com lealdade à companhia e manter reserva sobre os seus negócios, sendo-lhe vedado: § 2º O administrador deve zelar para que a violação do disposto no § 1º não possa ocorrer através de subordinados ou terceiros de sua confiança.','1','S'),(6,'Interceptação de Comunicações Telefônicas','Art. 8º, caput, da Lei nº 9.296/1996','Art. 8º A interceptação de comunicação telefônica, de qualquer natureza, ocorrerá em autos apartados, apensados aos autos do inquérito policial ou do processo criminal, preservando-se o sigilo das diligências, gravações e transcrições respectivas.','1','S'),(7,'Investigação de Responsabilidade de Servidor','Art. 150 da Lei nº 8.112/1990','Art. 150. A Comissão exercerá suas atividades com independência e imparcialidade, assegurado o sigilo necessário à elucidação do fato ou exigido pelo interesse da administração.\r\nParágrafo único. As reuniões e as audiências das comissões terão caráter reservado.','1','S'),(8,'Livros e Registros Contábeis Empresariais','Art. 1.190 do Código Civil','Art. 1.190. Ressalvados os casos previstos em lei, nenhuma autoridade, juiz ou tribunal, sob qualquer pretexto, poderá fazer ou ordenar diligência para verificar se o empresário ou a sociedade empresária observam, ou não, em seus livros e fichas, as formalidades prescritas em lei.','1','S'),(9,'Operações Bancárias','Art. 1º da Lei Complementar nº 105/2001','Art. 1º As instituições financeiras conservarão sigilo em suas operações ativas e passivas e serviços prestados.','1','S'),(10,'Proteção da Propriedade Intelectual de Software','Art. 2º da Lei nº 9.609/1998','Art. 2º O regime de proteção à propriedade intelectual de programa de computador é o conferido às obras literárias pela legislação de direitos autorais e conexos vigentes no País, observado o disposto nesta Lei.','1','S'),(11,'Protocolo -Pendente Análise de Restrição de Acesso','Art. 6º, III, da Lei nº 12.527/2011','Art. 6º Cabe aos órgãos e entidades do poder público, observadas as normas e procedimentos específicos aplicáveis, assegurar a: [...]\r\nIII - proteção da informação sigilosa e da informação pessoal, observada a sua disponibilidade, autenticidade, integridade e eventual restrição de acesso.','1','S'),(12,'Segredo de Justiça no Processo Civil','Art. 189 do Código de Processo Civil','Art. 189. ... tramitam em segredo de justiça os processos: em que o exija o interesse público ou social; versem sobre casamento, separação de corpos, divórcio, separação, união estável, filiação, alimentos e guarda de crianças e adolescentes; em que constem dados protegidos pelo direito constitucional à intimidade; que versem sobre arbitragem, inclusive sobre cumprimento de carta arbitral, desde que a confidencialidade estipulada na arbitragem seja comprovada perante o juízo.','1','S'),(13,'Segredo de Justiça no Processo Penal','Art. 201, § 6º, do Código de Processo Penal','Art. 201. ... § 6º O juiz tomará as providências necessárias à preservação da intimidade, vida privada, honra e imagem do ofendido, podendo, inclusive, determinar o segredo de justiça em relação aos dados, depoimentos e outras informações constantes dos autos a seu respeito para evitar sua exposição aos meios de comunicação.','1','S'),(14,'Segredo Industrial','Art. 195, XIV, Lei nº 9.279/1996','Art. 195. Comete crime de concorrência desleal quem: (...) XIV - divulga, explora ou utiliza-se, sem autorização, de resultados de testes ou outros dados não divulgados, cuja elaboração envolva esforço considerável e que tenham sido apresentados a entidades governamentais como condição para aprovar a comercialização de produtos.','1','S'),(15,'Sigilo das Comunicações','Art. 3º, V, da Lei nº 9.472/1997','Art. 3º O usuário de serviços de telecomunicações tem direito: (...) V - à inviolabilidade e ao segredo de sua comunicação, salvo nas hipóteses e condições constitucional e legalmente previstas.','1','S'),(16,'Sigilo de Empresa em Situação Falimentar','Art. 169 da Lei nº 11.101/2005','Art. 169. Violar, explorar ou divulgar, sem justa causa, sigilo empresarial ou dados confidenciais sobre operações ou serviços, contribuindo para a condução do devedor a estado de inviabilidade econômica ou financeira: Pena - reclusão, de 2 (dois) a 4 (quatro) anos, e multa.','1','S'),(17,'Sigilo do Inquérito Policial','Art. 20 do Código de Processo Penal','Art. 20. A autoridade assegurará no inquérito o sigilo necessário à elucidação do fato ou exigido pelo interesse da sociedade.','1','S'),(18,'Situação Econômico-Financeira de Sujeito Passivo','Art. 198, caput, da Lei nº 5.172/1966 - CTN','Art. 198. Sem prejuízo do disposto na legislação criminal, é vedada a divulgação, por parte da Fazenda Pública ou de seus servidores, de informação obtida em razão do ofício sobre a situação econômica ou financeira do sujeito passivo ou de terceiros e sobre a natureza e o estado de seus negócios ou atividades.','1','S'); +/*!40000 ALTER TABLE `hipotese_legal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `imagem_formato` +-- + +DROP TABLE IF EXISTS `imagem_formato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `imagem_formato` ( + `id_imagem_formato` int(11) NOT NULL, + `formato` varchar(10) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_imagem_formato`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `imagem_formato` +-- + +LOCK TABLES `imagem_formato` WRITE; +/*!40000 ALTER TABLE `imagem_formato` DISABLE KEYS */; +INSERT INTO `imagem_formato` VALUES (1,'png','Arquivo de imagem digital tradicionalmente utilizado em páginas web e que suporta transparência.','S'),(2,'jpg','Arquivo de imagem digital tradicionalmente utilizado em câmaras digitais.','S'),(3,'jpeg','Arquivo de imagem digital tradicionalmente utilizado em câmaras digitais.','S'); +/*!40000 ALTER TABLE `imagem_formato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_agendamento_tarefa` +-- + +DROP TABLE IF EXISTS `infra_agendamento_tarefa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_agendamento_tarefa` ( + `id_infra_agendamento_tarefa` int(11) NOT NULL, + `descricao` varchar(500) NOT NULL, + `comando` varchar(255) NOT NULL, + `sta_periodicidade_execucao` char(1) NOT NULL, + `periodicidade_complemento` varchar(200) DEFAULT NULL, + `dth_ultima_execucao` datetime DEFAULT NULL, + `dth_ultima_conclusao` datetime DEFAULT NULL, + `sin_sucesso` char(1) NOT NULL, + `parametro` varchar(250) DEFAULT NULL, + `email_erro` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_agendamento_tarefa`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_agendamento_tarefa` +-- + +LOCK TABLES `infra_agendamento_tarefa` WRITE; +/*!40000 ALTER TABLE `infra_agendamento_tarefa` DISABLE KEYS */; +INSERT INTO `infra_agendamento_tarefa` VALUES (1,'Remove registros temporários de estatísticas.','AgendamentoRN::removerDadosTemporariosEstatisticas','D','3','2014-11-26 03:00:01','2014-11-26 03:00:01','S',NULL,NULL,'S'),(2,'Remove arquivos externos excluídos..','AgendamentoRN::removerAquivosExternosExcluidos','D','4','2014-11-26 04:00:01','2014-11-26 04:00:01','S',NULL,NULL,'S'),(3,'Otimização de índices do Solr..','AgendamentoRN::otimizarIndicesSolr','D','2','2014-11-26 02:00:01','2014-11-26 02:00:07','S',NULL,NULL,'S'),(4,'Remove registros temporários de auditoria.','AgendamentoRN::removerDadosTemporariosAuditoria','D','3','2014-11-26 03:00:01','2014-11-26 03:00:01','S',NULL,NULL,'S'),(5,'Confirmar Publicações Internas.','AgendamentoRN::confirmarPublicacaoInterna','D','0','2014-11-25 00:00:01','2014-11-25 00:00:01','S','idOrgao=0',NULL,'S'),(6,'Teste de agendamento SEI','AgendamentoRN::testarAgendamento','N','0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55','2014-11-17 18:00:01','2014-11-17 18:00:01','S',NULL,NULL,'N'),(7,'Remove arquivos com mais de 24 horas criados pelo serviço adicionarArquivo e que ainda não foram utilizados.','AgendamentoRN::removerAquivosNaoUtilizados','D','5',NULL,NULL,'N',NULL,NULL,'S'),(8,'Agendamento para notificacao de atividades.','MdWsSeiAgendamentoRN::notificacaoAtividades','D','0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23',NULL,NULL,'S',NULL,NULL,'S'),(9,'Processa replicações de sinalizações em processos e envia e-mails de aviso sobre solicitações do SEI Federação.','AgendamentoRN::processarFederacao','N','0, 10, 20, 30, 40, 50',NULL,NULL,'N',NULL,NULL,'S'); +/*!40000 ALTER TABLE `infra_agendamento_tarefa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_auditoria` +-- + +DROP TABLE IF EXISTS `infra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_auditoria` ( + `id_infra_auditoria` bigint(20) NOT NULL, + `recurso` varchar(50) NOT NULL, + `dth_acesso` datetime NOT NULL, + `ip` varchar(39) DEFAULT NULL, + `id_usuario` int(11) DEFAULT NULL, + `sigla_usuario` varchar(100) DEFAULT NULL, + `nome_usuario` varchar(100) DEFAULT NULL, + `id_orgao_usuario` int(11) DEFAULT NULL, + `sigla_orgao_usuario` varchar(30) DEFAULT NULL, + `id_usuario_emulador` int(11) DEFAULT NULL, + `sigla_usuario_emulador` varchar(100) DEFAULT NULL, + `nome_usuario_emulador` varchar(100) DEFAULT NULL, + `id_orgao_usuario_emulador` int(11) DEFAULT NULL, + `sigla_orgao_usuario_emulador` varchar(30) DEFAULT NULL, + `id_unidade` int(11) DEFAULT NULL, + `sigla_unidade` varchar(30) DEFAULT NULL, + `descricao_unidade` varchar(250) DEFAULT NULL, + `id_orgao_unidade` int(11) DEFAULT NULL, + `sigla_orgao_unidade` varchar(30) DEFAULT NULL, + `servidor` varchar(250) DEFAULT NULL, + `user_agent` longtext, + `requisicao` longtext, + `operacao` longtext, + PRIMARY KEY (`id_infra_auditoria`), + KEY `i01_infra_auditoria` (`recurso`), + KEY `i02_infra_auditoria` (`dth_acesso`), + KEY `i03_infra_auditoria` (`sigla_usuario`), + KEY `i04_infra_auditoria` (`sigla_unidade`), + KEY `i05_infra_auditoria` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_auditoria` +-- + +LOCK TABLES `infra_auditoria` WRITE; +/*!40000 ALTER TABLE `infra_auditoria` DISABLE KEYS */; +INSERT INTO `infra_auditoria` VALUES (1,'assinante_cadastrar','2022-06-10 11:34:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 1\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 1\nObjRelAssinanteUnidadeDTO = {})'),(2,'assinante_cadastrar','2022-06-10 11:34:23','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 2\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 2\nObjRelAssinanteUnidadeDTO = {})'),(3,'assinante_cadastrar','2022-06-10 11:34:27','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 3\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 3\nObjRelAssinanteUnidadeDTO = {})'),(4,'assinante_cadastrar','2022-06-10 11:34:32','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 4\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 4\nObjRelAssinanteUnidadeDTO = {})'),(5,'unidade_cadastrar','2022-06-10 11:34:34','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000004\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-34-29\nDescricao = Unidade 2022-06-1014-34-29\nSinAtivo = S)'),(6,'tipo_contato_cadastrar','2022-06-10 11:34:34','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','TipoContatoRN::cadastrarRN0334Controlado(\n TipoContatoDTO:\nSinAtivo = S\nIdTipoContato = [null]\nNome = Unidades ME\nDescricao = Unidades ME\nStaAcesso = C\nSinSistema = S)'),(7,'contato_cadastrar','2022-06-10 11:34:34','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-34-29\nNome = Unidade 2022-06-1014-34-29\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(8,'assinante_cadastrar','2022-06-10 11:34:37','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 5\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 5\nObjRelAssinanteUnidadeDTO = {})'),(9,'unidade_cadastrar','2022-06-10 11:34:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000005\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-34-37\nDescricao = Unidade 2022-06-1014-34-37\nSinAtivo = S)'),(10,'contato_cadastrar','2022-06-10 11:34:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-34-37\nNome = Unidade 2022-06-1014-34-37\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(11,'assinante_cadastrar','2022-06-10 11:34:42','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 6\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 6\nObjRelAssinanteUnidadeDTO = {})'),(12,'assinante_cadastrar','2022-06-10 11:34:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 7\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 7\nObjRelAssinanteUnidadeDTO = {})'),(13,'unidade_cadastrar','2022-06-10 11:34:49','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000006\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-34-45\nDescricao = Unidade 2022-06-1014-34-45\nSinAtivo = S)'),(14,'contato_cadastrar','2022-06-10 11:34:49','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-34-45\nNome = Unidade 2022-06-1014-34-45\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(15,'assinante_cadastrar','2022-06-10 11:34:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 8\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 8\nObjRelAssinanteUnidadeDTO = {})'),(16,'assinante_cadastrar','2022-06-10 11:34:55','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 9\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 9\nObjRelAssinanteUnidadeDTO = {})'),(17,'unidade_cadastrar','2022-06-10 11:34:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000007\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-34-52\nDescricao = Unidade 2022-06-1014-34-52\nSinAtivo = S)'),(18,'contato_cadastrar','2022-06-10 11:34:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-34-52\nNome = Unidade 2022-06-1014-34-52\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(19,'assinante_cadastrar','2022-06-10 11:34:58','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 10\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 10\nObjRelAssinanteUnidadeDTO = {})'),(20,'unidade_cadastrar','2022-06-10 11:35:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000008\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-34-58\nDescricao = Unidade 2022-06-1014-34-58\nSinAtivo = S)'),(21,'contato_cadastrar','2022-06-10 11:35:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-34-58\nNome = Unidade 2022-06-1014-34-58\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(22,'assinante_cadastrar','2022-06-10 11:35:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 11\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 11\nObjRelAssinanteUnidadeDTO = {})'),(23,'assinante_cadastrar','2022-06-10 11:35:06','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 12\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 12\nObjRelAssinanteUnidadeDTO = {})'),(24,'unidade_cadastrar','2022-06-10 11:35:08','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000009\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-4\nDescricao = Unidade 2022-06-1014-35-4\nSinAtivo = S)'),(25,'contato_cadastrar','2022-06-10 11:35:08','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-4\nNome = Unidade 2022-06-1014-35-4\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(26,'assinante_cadastrar','2022-06-10 11:35:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 13\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 13\nObjRelAssinanteUnidadeDTO = {})'),(27,'unidade_cadastrar','2022-06-10 11:35:14','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000010\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-11\nDescricao = Unidade 2022-06-1014-35-11\nSinAtivo = S)'),(28,'contato_cadastrar','2022-06-10 11:35:14','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-11\nNome = Unidade 2022-06-1014-35-11\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(29,'assinante_cadastrar','2022-06-10 11:35:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 14\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 14\nObjRelAssinanteUnidadeDTO = {})'),(30,'assinante_cadastrar','2022-06-10 11:35:18','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 15\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 15\nObjRelAssinanteUnidadeDTO = {})'),(31,'unidade_cadastrar','2022-06-10 11:35:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000011\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-17\nDescricao = Unidade 2022-06-1014-35-17\nSinAtivo = S)'),(32,'contato_cadastrar','2022-06-10 11:35:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-17\nNome = Unidade 2022-06-1014-35-17\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(33,'assinante_cadastrar','2022-06-10 11:35:23','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 16\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 16\nObjRelAssinanteUnidadeDTO = {})'),(34,'assinante_cadastrar','2022-06-10 11:35:27','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 17\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 17\nObjRelAssinanteUnidadeDTO = {})'),(35,'unidade_cadastrar','2022-06-10 11:35:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000012\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-25\nDescricao = Unidade 2022-06-1014-35-25\nSinAtivo = S)'),(36,'contato_cadastrar','2022-06-10 11:35:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-25\nNome = Unidade 2022-06-1014-35-25\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(37,'assinante_cadastrar','2022-06-10 11:35:30','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 18\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 18\nObjRelAssinanteUnidadeDTO = {})'),(38,'assinante_cadastrar','2022-06-10 11:35:34','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 19\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 19\nObjRelAssinanteUnidadeDTO = {})'),(39,'unidade_cadastrar','2022-06-10 11:35:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000013\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-31\nDescricao = Unidade 2022-06-1014-35-31\nSinAtivo = S)'),(40,'contato_cadastrar','2022-06-10 11:35:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-31\nNome = Unidade 2022-06-1014-35-31\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(41,'assinante_cadastrar','2022-06-10 11:35:37','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 20\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 20\nObjRelAssinanteUnidadeDTO = {})'),(42,'assinante_cadastrar','2022-06-10 11:35:41','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 21\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 21\nObjRelAssinanteUnidadeDTO = {})'),(43,'unidade_cadastrar','2022-06-10 11:35:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000014\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-37\nDescricao = Unidade 2022-06-1014-35-37\nSinAtivo = S)'),(44,'contato_cadastrar','2022-06-10 11:35:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-37\nNome = Unidade 2022-06-1014-35-37\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(45,'assinante_cadastrar','2022-06-10 11:35:45','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 22\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 22\nObjRelAssinanteUnidadeDTO = {})'),(46,'unidade_cadastrar','2022-06-10 11:35:48','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000015\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-45\nDescricao = Unidade 2022-06-1014-35-45\nSinAtivo = S)'),(47,'contato_cadastrar','2022-06-10 11:35:48','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-45\nNome = Unidade 2022-06-1014-35-45\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(48,'assinante_cadastrar','2022-06-10 11:35:49','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 23\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 23\nObjRelAssinanteUnidadeDTO = {})'),(49,'assinante_cadastrar','2022-06-10 11:35:52','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 24\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 24\nObjRelAssinanteUnidadeDTO = {})'),(50,'unidade_cadastrar','2022-06-10 11:35:54','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000016\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-51\nDescricao = Unidade 2022-06-1014-35-51\nSinAtivo = S)'),(51,'contato_cadastrar','2022-06-10 11:35:54','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-51\nNome = Unidade 2022-06-1014-35-51\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(52,'assinante_cadastrar','2022-06-10 11:35:55','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 25\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 25\nObjRelAssinanteUnidadeDTO = {})'),(53,'assinante_cadastrar','2022-06-10 11:36:00','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 26\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 26\nObjRelAssinanteUnidadeDTO = {})'),(54,'unidade_cadastrar','2022-06-10 11:36:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000017\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-35-57\nDescricao = Unidade 2022-06-1014-35-57\nSinAtivo = S)'),(55,'contato_cadastrar','2022-06-10 11:36:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-35-57\nNome = Unidade 2022-06-1014-35-57\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(56,'assinante_cadastrar','2022-06-10 11:36:03','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 27\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 27\nObjRelAssinanteUnidadeDTO = {})'),(57,'assinante_cadastrar','2022-06-10 11:36:07','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 28\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 28\nObjRelAssinanteUnidadeDTO = {})'),(58,'unidade_cadastrar','2022-06-10 11:36:08','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000018\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-4\nDescricao = Unidade 2022-06-1014-36-4\nSinAtivo = S)'),(59,'contato_cadastrar','2022-06-10 11:36:08','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-4\nNome = Unidade 2022-06-1014-36-4\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(60,'assinante_cadastrar','2022-06-10 11:36:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 29\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 29\nObjRelAssinanteUnidadeDTO = {})'),(61,'unidade_cadastrar','2022-06-10 11:36:14','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000019\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-10\nDescricao = Unidade 2022-06-1014-36-10\nSinAtivo = S)'),(62,'contato_cadastrar','2022-06-10 11:36:14','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-10\nNome = Unidade 2022-06-1014-36-10\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(63,'assinante_cadastrar','2022-06-10 11:36:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 30\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 30\nObjRelAssinanteUnidadeDTO = {})'),(64,'assinante_cadastrar','2022-06-10 11:36:18','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 31\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 31\nObjRelAssinanteUnidadeDTO = {})'),(65,'unidade_cadastrar','2022-06-10 11:36:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000020\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-17\nDescricao = Unidade 2022-06-1014-36-17\nSinAtivo = S)'),(66,'contato_cadastrar','2022-06-10 11:36:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-17\nNome = Unidade 2022-06-1014-36-17\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(67,'assinante_cadastrar','2022-06-10 11:36:22','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 32\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 32\nObjRelAssinanteUnidadeDTO = {})'),(68,'assinante_cadastrar','2022-06-10 11:36:26','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 33\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 33\nObjRelAssinanteUnidadeDTO = {})'),(69,'unidade_cadastrar','2022-06-10 11:36:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000021\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-25\nDescricao = Unidade 2022-06-1014-36-25\nSinAtivo = S)'),(70,'contato_cadastrar','2022-06-10 11:36:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-25\nNome = Unidade 2022-06-1014-36-25\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(71,'usuario_cadastrar','2022-06-10 11:36:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000002\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario3\nNome = Usuario de Teste 3\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(72,'tipo_contato_cadastrar','2022-06-10 11:36:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','TipoContatoRN::cadastrarRN0334Controlado(\n TipoContatoDTO:\nSinAtivo = S\nIdTipoContato = [null]\nNome = Usuários ME\nDescricao = Usuários ME\nStaAcesso = R\nSinSistema = S)'),(73,'contato_cadastrar','2022-06-10 11:36:28','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario3\nNome = Usuario de Teste 3\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(74,'assinante_cadastrar','2022-06-10 11:36:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 34\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 34\nObjRelAssinanteUnidadeDTO = {})'),(75,'assinante_cadastrar','2022-06-10 11:36:32','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 35\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 35\nObjRelAssinanteUnidadeDTO = {})'),(76,'unidade_cadastrar','2022-06-10 11:36:34','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000022\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-30\nDescricao = Unidade 2022-06-1014-36-30\nSinAtivo = S)'),(77,'contato_cadastrar','2022-06-10 11:36:34','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-30\nNome = Unidade 2022-06-1014-36-30\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(78,'usuario_cadastrar','2022-06-10 11:36:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000003\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario4\nNome = Usuario de Teste 4\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(79,'contato_cadastrar','2022-06-10 11:36:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario4\nNome = Usuario de Teste 4\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(80,'assinante_cadastrar','2022-06-10 11:36:36','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 36\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 36\nObjRelAssinanteUnidadeDTO = {})'),(81,'assinante_cadastrar','2022-06-10 11:36:40','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 37\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 37\nObjRelAssinanteUnidadeDTO = {})'),(82,'usuario_cadastrar','2022-06-10 11:36:40','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000005\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario5\nNome = Usuario de Teste 5\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(83,'contato_cadastrar','2022-06-10 11:36:40','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario5\nNome = Usuario de Teste 5\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(84,'unidade_cadastrar','2022-06-10 11:36:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000023\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-37\nDescricao = Unidade 2022-06-1014-36-37\nSinAtivo = S)'),(85,'contato_cadastrar','2022-06-10 11:36:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-37\nNome = Unidade 2022-06-1014-36-37\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(86,'assinante_cadastrar','2022-06-10 11:36:43','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 38\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 38\nObjRelAssinanteUnidadeDTO = {})'),(87,'usuario_cadastrar','2022-06-10 11:36:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000007\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario6\nNome = Usuario de Teste 6\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(88,'contato_cadastrar','2022-06-10 11:36:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario6\nNome = Usuario de Teste 6\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(89,'assinante_cadastrar','2022-06-10 11:36:47','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 39\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 39\nObjRelAssinanteUnidadeDTO = {})'),(90,'unidade_cadastrar','2022-06-10 11:36:47','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000024\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-43\nDescricao = Unidade 2022-06-1014-36-43\nSinAtivo = S)'),(91,'contato_cadastrar','2022-06-10 11:36:47','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-43\nNome = Unidade 2022-06-1014-36-43\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(92,'assinante_cadastrar','2022-06-10 11:36:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => assinante_cadastrar\n [acao_origem] => assinante_cadastrar\n [infra_sistema] => 100000100\n [infra_unidade_atual] => 110000001\n [infra_hash] => 76e2bae4f2819f150dd6cf00038e336940df96705f9a6de542c77db0e06eb9cb\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarAssinante] => Salvar\n [txtCargoFuncao] => Cargo 40\n [txtUnidade] => \n [hdnIdUnidade] => \n [hdnIdAssinante] => \n [hdnUnidades] => \n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nCargoFuncao = Cargo 40\nObjRelAssinanteUnidadeDTO = {})'),(93,'usuario_cadastrar','2022-06-10 11:36:52','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000008\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario7\nNome = Usuario de Teste 7\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(94,'contato_cadastrar','2022-06-10 11:36:52','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario7\nNome = Usuario de Teste 7\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(95,'unidade_cadastrar','2022-06-10 11:36:53','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000025\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-50\nDescricao = Unidade 2022-06-1014-36-50\nSinAtivo = S)'),(96,'contato_cadastrar','2022-06-10 11:36:53','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-50\nNome = Unidade 2022-06-1014-36-50\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(97,'usuario_cadastrar','2022-06-10 11:36:57','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000009\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario8\nNome = Usuario de Teste 8\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(98,'contato_cadastrar','2022-06-10 11:36:57','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario8\nNome = Usuario de Teste 8\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(99,'unidade_cadastrar','2022-06-10 11:36:59','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000026\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-36-55\nDescricao = Unidade 2022-06-1014-36-55\nSinAtivo = S)'),(100,'contato_cadastrar','2022-06-10 11:36:59','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-36-55\nNome = Unidade 2022-06-1014-36-55\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(101,'usuario_cadastrar','2022-06-10 11:37:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000010\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario9\nNome = Usuario de Teste 9\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(102,'contato_cadastrar','2022-06-10 11:37:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario9\nNome = Usuario de Teste 9\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(103,'unidade_cadastrar','2022-06-10 11:37:04','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000027\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-1\nDescricao = Unidade 2022-06-1014-37-1\nSinAtivo = S)'),(104,'contato_cadastrar','2022-06-10 11:37:04','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-1\nNome = Unidade 2022-06-1014-37-1\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(105,'usuario_cadastrar','2022-06-10 11:37:07','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000011\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario10\nNome = Usuario de Teste 10\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(106,'contato_cadastrar','2022-06-10 11:37:07','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario10\nNome = Usuario de Teste 10\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(107,'unidade_cadastrar','2022-06-10 11:37:11','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000028\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-8\nDescricao = Unidade 2022-06-1014-37-8\nSinAtivo = S)'),(108,'contato_cadastrar','2022-06-10 11:37:11','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-8\nNome = Unidade 2022-06-1014-37-8\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(109,'usuario_cadastrar','2022-06-10 11:37:13','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000012\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario11\nNome = Usuario de Teste 11\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(110,'contato_cadastrar','2022-06-10 11:37:13','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario11\nNome = Usuario de Teste 11\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(111,'unidade_cadastrar','2022-06-10 11:37:16','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000029\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-13\nDescricao = Unidade 2022-06-1014-37-13\nSinAtivo = S)'),(112,'contato_cadastrar','2022-06-10 11:37:16','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-13\nNome = Unidade 2022-06-1014-37-13\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(113,'usuario_cadastrar','2022-06-10 11:37:19','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000013\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario12\nNome = Usuario de Teste 12\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(114,'contato_cadastrar','2022-06-10 11:37:19','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario12\nNome = Usuario de Teste 12\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(115,'unidade_cadastrar','2022-06-10 11:37:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000030\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-18\nDescricao = Unidade 2022-06-1014-37-18\nSinAtivo = S)'),(116,'contato_cadastrar','2022-06-10 11:37:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-18\nNome = Unidade 2022-06-1014-37-18\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(117,'usuario_cadastrar','2022-06-10 11:37:24','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000014\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario13\nNome = Usuario de Teste 13\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(118,'contato_cadastrar','2022-06-10 11:37:24','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario13\nNome = Usuario de Teste 13\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(119,'unidade_cadastrar','2022-06-10 11:37:27','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000031\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-24\nDescricao = Unidade 2022-06-1014-37-24\nSinAtivo = S)'),(120,'contato_cadastrar','2022-06-10 11:37:27','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-24\nNome = Unidade 2022-06-1014-37-24\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(121,'usuario_cadastrar','2022-06-10 11:37:29','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000015\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario14\nNome = Usuario de Teste 14\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(122,'contato_cadastrar','2022-06-10 11:37:29','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario14\nNome = Usuario de Teste 14\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(123,'unidade_cadastrar','2022-06-10 11:37:33','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000032\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-29\nDescricao = Unidade 2022-06-1014-37-29\nSinAtivo = S)'),(124,'contato_cadastrar','2022-06-10 11:37:33','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-29\nNome = Unidade 2022-06-1014-37-29\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(125,'usuario_cadastrar','2022-06-10 11:37:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000016\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario15\nNome = Usuario de Teste 15\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(126,'contato_cadastrar','2022-06-10 11:37:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario15\nNome = Usuario de Teste 15\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(127,'unidade_cadastrar','2022-06-10 11:37:39','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000033\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-36\nDescricao = Unidade 2022-06-1014-37-36\nSinAtivo = S)'),(128,'contato_cadastrar','2022-06-10 11:37:39','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-36\nNome = Unidade 2022-06-1014-37-36\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(129,'usuario_cadastrar','2022-06-10 11:37:40','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000017\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario16\nNome = Usuario de Teste 16\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(130,'contato_cadastrar','2022-06-10 11:37:40','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario16\nNome = Usuario de Teste 16\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(131,'unidade_cadastrar','2022-06-10 11:37:45','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000034\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-42\nDescricao = Unidade 2022-06-1014-37-42\nSinAtivo = S)'),(132,'contato_cadastrar','2022-06-10 11:37:45','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-42\nNome = Unidade 2022-06-1014-37-42\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(133,'usuario_cadastrar','2022-06-10 11:37:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000018\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario17\nNome = Usuario de Teste 17\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(134,'contato_cadastrar','2022-06-10 11:37:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario17\nNome = Usuario de Teste 17\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(135,'unidade_cadastrar','2022-06-10 11:37:50','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000035\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-47\nDescricao = Unidade 2022-06-1014-37-47\nSinAtivo = S)'),(136,'contato_cadastrar','2022-06-10 11:37:50','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-47\nNome = Unidade 2022-06-1014-37-47\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(137,'usuario_cadastrar','2022-06-10 11:37:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000019\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario18\nNome = Usuario de Teste 18\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(138,'contato_cadastrar','2022-06-10 11:37:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario18\nNome = Usuario de Teste 18\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(139,'unidade_cadastrar','2022-06-10 11:37:55','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000036\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-52\nDescricao = Unidade 2022-06-1014-37-52\nSinAtivo = S)'),(140,'contato_cadastrar','2022-06-10 11:37:55','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-52\nNome = Unidade 2022-06-1014-37-52\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(141,'usuario_cadastrar','2022-06-10 11:37:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000020\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario19\nNome = Usuario de Teste 19\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(142,'contato_cadastrar','2022-06-10 11:37:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario19\nNome = Usuario de Teste 19\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(143,'unidade_cadastrar','2022-06-10 11:38:00','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000037\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-37-57\nDescricao = Unidade 2022-06-1014-37-57\nSinAtivo = S)'),(144,'contato_cadastrar','2022-06-10 11:38:00','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-37-57\nNome = Unidade 2022-06-1014-37-57\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(145,'usuario_cadastrar','2022-06-10 11:38:01','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000021\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario20\nNome = Usuario de Teste 20\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(146,'contato_cadastrar','2022-06-10 11:38:01','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario20\nNome = Usuario de Teste 20\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(147,'unidade_cadastrar','2022-06-10 11:38:05','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000038\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-2\nDescricao = Unidade 2022-06-1014-38-2\nSinAtivo = S)'),(148,'contato_cadastrar','2022-06-10 11:38:05','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-2\nNome = Unidade 2022-06-1014-38-2\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(149,'usuario_cadastrar','2022-06-10 11:38:05','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000022\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario21\nNome = Usuario de Teste 21\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(150,'contato_cadastrar','2022-06-10 11:38:05','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario21\nNome = Usuario de Teste 21\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(151,'usuario_cadastrar','2022-06-10 11:38:10','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000023\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario22\nNome = Usuario de Teste 22\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(152,'contato_cadastrar','2022-06-10 11:38:10','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario22\nNome = Usuario de Teste 22\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(153,'unidade_cadastrar','2022-06-10 11:38:11','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000039\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-8\nDescricao = Unidade 2022-06-1014-38-8\nSinAtivo = S)'),(154,'contato_cadastrar','2022-06-10 11:38:11','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-8\nNome = Unidade 2022-06-1014-38-8\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(155,'usuario_cadastrar','2022-06-10 11:38:15','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000024\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario23\nNome = Usuario de Teste 23\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(156,'contato_cadastrar','2022-06-10 11:38:15','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario23\nNome = Usuario de Teste 23\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(157,'unidade_cadastrar','2022-06-10 11:38:16','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000040\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-13\nDescricao = Unidade 2022-06-1014-38-13\nSinAtivo = S)'),(158,'contato_cadastrar','2022-06-10 11:38:16','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-13\nNome = Unidade 2022-06-1014-38-13\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(159,'usuario_cadastrar','2022-06-10 11:38:21','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000025\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario24\nNome = Usuario de Teste 24\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(160,'contato_cadastrar','2022-06-10 11:38:21','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario24\nNome = Usuario de Teste 24\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(161,'unidade_cadastrar','2022-06-10 11:38:21','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000041\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-18\nDescricao = Unidade 2022-06-1014-38-18\nSinAtivo = S)'),(162,'contato_cadastrar','2022-06-10 11:38:21','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-18\nNome = Unidade 2022-06-1014-38-18\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(163,'usuario_cadastrar','2022-06-10 11:38:25','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000026\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario25\nNome = Usuario de Teste 25\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(164,'contato_cadastrar','2022-06-10 11:38:25','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario25\nNome = Usuario de Teste 25\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(165,'unidade_cadastrar','2022-06-10 11:38:26','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000042\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-24\nDescricao = Unidade 2022-06-1014-38-24\nSinAtivo = S)'),(166,'contato_cadastrar','2022-06-10 11:38:26','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-24\nNome = Unidade 2022-06-1014-38-24\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(167,'usuario_cadastrar','2022-06-10 11:38:31','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000027\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario26\nNome = Usuario de Teste 26\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(168,'contato_cadastrar','2022-06-10 11:38:31','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario26\nNome = Usuario de Teste 26\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(169,'unidade_cadastrar','2022-06-10 11:38:32','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UnidadeRN::cadastrarRN0078Controlado(\n UnidadeDTO:\nIdUnidade = 110000043\nIdOrigem = [null]\nIdOrgao = 0\nSigla = Un-2022-06-10-14-38-29\nDescricao = Unidade 2022-06-1014-38-29\nSinAtivo = S)'),(170,'contato_cadastrar','2022-06-10 11:38:32','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 7\nIdContatoAssociado = 100000010\nStaNatureza = J\nCnpj = [null]\nIdCargo = [null]\nSigla = Un-2022-06-10-14-38-29\nNome = Unidade 2022-06-1014-38-29\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinEnderecoAssociado = N\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(171,'usuario_cadastrar','2022-06-10 11:38:36','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000028\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario27\nNome = Usuario de Teste 27\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(172,'contato_cadastrar','2022-06-10 11:38:36','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario27\nNome = Usuario de Teste 27\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(173,'usuario_cadastrar','2022-06-10 11:38:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000029\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario28\nNome = Usuario de Teste 28\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(174,'contato_cadastrar','2022-06-10 11:38:41','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario28\nNome = Usuario de Teste 28\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(175,'usuario_cadastrar','2022-06-10 11:38:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000004\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario1\nNome = Usuario de Teste 1\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(176,'contato_cadastrar','2022-06-10 11:38:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario1\nNome = Usuario de Teste 1\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(177,'usuario_cadastrar','2022-06-10 11:38:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000030\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario29\nNome = Usuario de Teste 29\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(178,'contato_cadastrar','2022-06-10 11:38:46','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario29\nNome = Usuario de Teste 29\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(179,'usuario_cadastrar','2022-06-10 11:38:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000031\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario30\nNome = Usuario de Teste 30\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(180,'contato_cadastrar','2022-06-10 11:38:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario30\nNome = Usuario de Teste 30\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(181,'usuario_cadastrar','2022-06-10 11:38:57','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000032\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario31\nNome = Usuario de Teste 31\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(182,'contato_cadastrar','2022-06-10 11:38:57','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario31\nNome = Usuario de Teste 31\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(183,'usuario_cadastrar','2022-06-10 11:38:59','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000006\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario2\nNome = Usuario de Teste 2\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(184,'contato_cadastrar','2022-06-10 11:38:59','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario2\nNome = Usuario de Teste 2\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(185,'usuario_cadastrar','2022-06-10 11:39:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000033\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario32\nNome = Usuario de Teste 32\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(186,'contato_cadastrar','2022-06-10 11:39:02','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario32\nNome = Usuario de Teste 32\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(187,'usuario_cadastrar','2022-06-10 11:39:07','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000034\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario33\nNome = Usuario de Teste 33\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(188,'contato_cadastrar','2022-06-10 11:39:07','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario33\nNome = Usuario de Teste 33\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(189,'usuario_cadastrar','2022-06-10 11:39:12','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000035\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario34\nNome = Usuario de Teste 34\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(190,'contato_cadastrar','2022-06-10 11:39:12','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario34\nNome = Usuario de Teste 34\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(191,'usuario_cadastrar','2022-06-10 11:39:17','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000036\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario35\nNome = Usuario de Teste 35\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(192,'contato_cadastrar','2022-06-10 11:39:17','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario35\nNome = Usuario de Teste 35\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(193,'usuario_cadastrar','2022-06-10 11:39:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000037\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario36\nNome = Usuario de Teste 36\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(194,'contato_cadastrar','2022-06-10 11:39:22','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario36\nNome = Usuario de Teste 36\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(195,'usuario_cadastrar','2022-06-10 11:39:26','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000038\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario37\nNome = Usuario de Teste 37\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(196,'contato_cadastrar','2022-06-10 11:39:26','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario37\nNome = Usuario de Teste 37\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(197,'usuario_cadastrar','2022-06-10 11:39:31','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000039\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario38\nNome = Usuario de Teste 38\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(198,'contato_cadastrar','2022-06-10 11:39:31','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario38\nNome = Usuario de Teste 38\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(199,'usuario_cadastrar','2022-06-10 11:39:36','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000040\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario39\nNome = Usuario de Teste 39\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(200,'contato_cadastrar','2022-06-10 11:39:36','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario39\nNome = Usuario de Teste 39\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(201,'usuario_cadastrar','2022-06-10 11:39:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000041\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario40\nNome = Usuario de Teste 40\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(202,'contato_cadastrar','2022-06-10 11:39:42','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario40\nNome = Usuario de Teste 40\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(203,'usuario_cadastrar','2022-06-10 11:39:47','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000042\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario41\nNome = Usuario de Teste 41\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(204,'contato_cadastrar','2022-06-10 11:39:47','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario41\nNome = Usuario de Teste 41\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(205,'usuario_cadastrar','2022-06-10 11:39:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000043\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario42\nNome = Usuario de Teste 42\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(206,'contato_cadastrar','2022-06-10 11:39:51','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario42\nNome = Usuario de Teste 42\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(207,'usuario_cadastrar','2022-06-10 11:39:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000044\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario43\nNome = Usuario de Teste 43\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(208,'contato_cadastrar','2022-06-10 11:39:56','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario43\nNome = Usuario de Teste 43\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(209,'usuario_cadastrar','2022-06-10 11:40:01','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000045\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario44\nNome = Usuario de Teste 44\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(210,'contato_cadastrar','2022-06-10 11:40:01','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario44\nNome = Usuario de Teste 44\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(211,'usuario_cadastrar','2022-06-10 11:40:06','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000046\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario45\nNome = Usuario de Teste 45\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(212,'contato_cadastrar','2022-06-10 11:40:06','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario45\nNome = Usuario de Teste 45\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(213,'usuario_cadastrar','2022-06-10 11:40:10','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000047\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario46\nNome = Usuario de Teste 46\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(214,'contato_cadastrar','2022-06-10 11:40:10','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario46\nNome = Usuario de Teste 46\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(215,'usuario_cadastrar','2022-06-10 11:40:15','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000048\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario47\nNome = Usuario de Teste 47\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(216,'contato_cadastrar','2022-06-10 11:40:15','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario47\nNome = Usuario de Teste 47\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(217,'usuario_cadastrar','2022-06-10 11:40:20','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000049\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario48\nNome = Usuario de Teste 48\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(218,'contato_cadastrar','2022-06-10 11:40:20','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario48\nNome = Usuario de Teste 48\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(219,'usuario_cadastrar','2022-06-10 11:40:24','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000050\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario49\nNome = Usuario de Teste 49\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(220,'contato_cadastrar','2022-06-10 11:40:24','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario49\nNome = Usuario de Teste 49\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(221,'usuario_cadastrar','2022-06-10 11:40:29','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000051\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario50\nNome = Usuario de Teste 50\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(222,'contato_cadastrar','2022-06-10 11:40:29','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario50\nNome = Usuario de Teste 50\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(223,'usuario_cadastrar','2022-06-10 11:40:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000052\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario51\nNome = Usuario de Teste 51\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(224,'contato_cadastrar','2022-06-10 11:40:35','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario51\nNome = Usuario de Teste 51\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(225,'usuario_cadastrar','2022-06-10 11:40:39','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','UsuarioRN::cadastrarRN0487Controlado(\n UsuarioDTO:\nIdUsuario = 100000053\nIdOrgao = 0\nIdOrigem = [null]\nSigla = usuario52\nNome = Usuario de Teste 52\nStaTipo = 0\nSinAcessibilidade = N\nSinAtivo = S)'),(226,'contato_cadastrar','2022-06-10 11:40:39','127.0.0.1',2,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE',NULL,0,'ME','sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ContatoRN::cadastrarRN0322Controlado(\n ContatoDTO:\nIdContato = [null]\nIdTipoContato = 8\nIdContatoAssociado = 100000010\nSinEnderecoAssociado = S\nStaNatureza = F\nCnpj = [null]\nIdCargo = [null]\nSigla = usuario52\nNome = Usuario de Teste 52\nNascimento = [null]\nStaGenero = [null]\nCpf = [null]\nRg = [null]\nOrgaoExpedidor = [null]\nMatricula = [null]\nMatriculaOab = [null]\nEndereco = [null]\nComplemento = [null]\nEmail = [null]\nSitioInternet = [null]\nTelefoneFixo = [null]\nTelefoneCelular = [null]\nBairro = [null]\nIdUf = [null]\nIdCidade = [null]\nIdPais = [null]\nCep = [null]\nObservacao = [null]\nSinAtivo = S\nStaOperacao = REPLICACAO\nIdPaisPassaporte = [null]\nNumeroPassaporte = [null])'),(227,'tipo_procedimento_cadastrar','2022-06-10 13:25:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','TipoProcedimentoRN::cadastrarRN0265Controlado(\n TipoProcedimentoDTO:\nSinAtivo = S\nIdTipoProcedimento = [null]\nNome = SEI Federação\nDescricao = Aplicado automaticamente em processos recebidos pelo SEI Federação.\nStaGrauSigiloSugestao = 0\nIdHipoteseLegalSugestao = [null]\nSinInterno = S\nSinOuvidoria = N\nSinIndividual = N\nObjRelTipoProcedimentoAssuntoDTO = {}\nObjTipoProcedRestricaoDTO = {}\nObjNivelAcessoPermitidoDTO = {\n [0] => NivelAcessoPermitidoDTO:\nStaNivelAcesso = 1,\n [1] => NivelAcessoPermitidoDTO:\nStaNivelAcesso = 0}\nStaNivelAcessoSugestao = 1)'),(228,'nivel_acesso_permitido_cadastrar','2022-06-10 13:25:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','NivelAcessoPermitidoRN::cadastrarControlado(\n NivelAcessoPermitidoDTO:\nStaNivelAcesso = 1\nIdTipoProcedimento = 100000501)'),(229,'nivel_acesso_permitido_cadastrar','2022-06-10 13:25:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','NivelAcessoPermitidoRN::cadastrarControlado(\n NivelAcessoPermitidoDTO:\nStaNivelAcesso = 0\nIdTipoProcedimento = 100000501)'),(230,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Presidente, Substituto\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Presidente, Substituto,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Presidente, Substituto,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Presidente, Substituto})'),(231,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Assessor(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Assessor(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Assessor(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Assessor(a)})'),(232,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Presidente\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Presidente,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Presidente,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Presidente})'),(233,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Chefe de Gabinete da Presidência\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência})'),(234,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Chefe de Gabinete da Presidência, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Chefe de Gabinete da Presidência, Substituto(a)})'),(235,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Corregedor\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Corregedor,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Corregedor,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Corregedor})'),(236,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Corregedor, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Corregedor, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Corregedor, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Corregedor, Substituto(a)})'),(237,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Agente Fiscalizador de Contrato\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato})'),(238,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Agente Fiscalizador de Contrato, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Agente Fiscalizador de Contrato, Substituto(a)})'),(239,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Gestor de Contrato\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Gestor de Contrato,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Gestor de Contrato,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Gestor de Contrato})'),(240,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Gestor de Contrato, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Gestor de Contrato, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Gestor de Contrato, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Gestor de Contrato, Substituto(a)})'),(241,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Gestor Financeiro\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Gestor Financeiro,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Gestor Financeiro,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Gestor Financeiro})'),(242,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Gestor Financeiro, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Gestor Financeiro, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Gestor Financeiro, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Gestor Financeiro, Substituto(a)})'),(243,'assinante_cadastrar','2022-06-10 13:25:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Ordenador de Despesa\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Ordenador de Despesa,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Ordenador de Despesa,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Ordenador de Despesa})'),(244,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Ordenador de Despesa, Substituto(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Ordenador de Despesa, Substituto(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Ordenador de Despesa, Substituto(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Ordenador de Despesa, Substituto(a)})'),(245,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Ouvidor\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Ouvidor,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Ouvidor,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Ouvidor})'),(246,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Pregoeiro(a)\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Pregoeiro(a),\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Pregoeiro(a),\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Pregoeiro(a)})'),(247,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Corregedor Auxiliar\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Corregedor Auxiliar,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Corregedor Auxiliar,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Corregedor Auxiliar})'),(248,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Fiscal de Contrato - Requisitante\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Fiscal de Contrato - Requisitante,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Fiscal de Contrato - Requisitante,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Fiscal de Contrato - Requisitante})'),(249,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Fiscal de Contrato - Técnico\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Fiscal de Contrato - Técnico,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Fiscal de Contrato - Técnico,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Fiscal de Contrato - Técnico})'),(250,'assinante_cadastrar','2022-06-10 13:25:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','AssinanteRN::cadastrarRN1335Controlado(\n AssinanteDTO:\nIdAssinante = [null]\nIdOrgao = 0\nCargoFuncao = Fiscal de Contrato - Administrativo\nObjRelAssinanteUnidadeDTO = {\n [0] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000001\nCargoFuncaoAssinante = Fiscal de Contrato - Administrativo,\n [1] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000002\nCargoFuncaoAssinante = Fiscal de Contrato - Administrativo,\n [2] => RelAssinanteUnidadeDTO:\nIdUnidade = 110000003\nCargoFuncaoAssinante = Fiscal de Contrato - Administrativo})'); +/*!40000 ALTER TABLE `infra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_dado_usuario` +-- + +DROP TABLE IF EXISTS `infra_dado_usuario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_dado_usuario` ( + `id_usuario` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `valor` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_usuario`,`nome`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_dado_usuario` +-- + +LOCK TABLES `infra_dado_usuario` WRITE; +/*!40000 ALTER TABLE `infra_dado_usuario` DISABLE KEYS */; +INSERT INTO `infra_dado_usuario` VALUES (100000001,'INFRA_UNIDADE_ATUAL','110000001'); +/*!40000 ALTER TABLE `infra_dado_usuario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_log` +-- + +DROP TABLE IF EXISTS `infra_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_log` ( + `id_infra_log` bigint(20) NOT NULL, + `dth_log` datetime DEFAULT NULL, + `texto_log` longtext NOT NULL, + `ip` varchar(39) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_log`), + KEY `i01_infra_log` (`sta_tipo`,`dth_log`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_log` +-- + +LOCK TABLES `infra_log` WRITE; +/*!40000 ALTER TABLE `infra_log` DISABLE KEYS */; +INSERT INTO `infra_log` VALUES (1,'2022-06-10 13:33:49','Descrição:\nULTIMA VERSAO 4.0.3.3 JA ESTA INSTALADA\n\nMensagem:\nULTIMA VERSAO 4.0.3.3 JA ESTA INSTALADA\n\nTrilha de Processamento:\n#0 /opt/infra/infra_php/InfraScriptVersao.php(233): InfraScript->processarErro(\'ERRO ATUALIZAND...\', Object(InfraException))\n#1 /opt/sei/scripts/atualizar_versao_sei.php(2017): InfraScriptVersao->atualizarVersao()\n#2 {main}\n\nTrilha de Processamento Original:\n\\n0 /opt/infra/infra_php/InfraScriptVersao.php(348): InfraScript->processarErro(\'ULTIMA VERSAO 4...\')\n\\n1 /opt/infra/infra_php/InfraRN.php(140): InfraScriptVersao->atualizarVersaoInternoConectado(Object(BancoSEI))\n\\n2 /opt/infra/infra_php/InfraScriptVersao.php(231): InfraRN->__call(\'atualizarVersao...\', Array)\n\\n3 /opt/sei/scripts/atualizar_versao_sei.php(2017): InfraScriptVersao->atualizarVersao()\n\\n4 {main}',NULL,'E'); +/*!40000 ALTER TABLE `infra_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_navegador` +-- + +DROP TABLE IF EXISTS `infra_navegador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_navegador` ( + `id_infra_navegador` bigint(20) NOT NULL, + `identificacao` varchar(50) NOT NULL, + `versao` varchar(20) DEFAULT NULL, + `user_agent` varchar(4000) NOT NULL, + `ip` varchar(39) DEFAULT NULL, + `dth_acesso` datetime NOT NULL, + PRIMARY KEY (`id_infra_navegador`), + KEY `i01_infra_navegador` (`dth_acesso`,`identificacao`,`versao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_navegador` +-- + +LOCK TABLES `infra_navegador` WRITE; +/*!40000 ALTER TABLE `infra_navegador` DISABLE KEYS */; +INSERT INTO `infra_navegador` VALUES (1,'Chrome','98.0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','10.209.42.147','2022-06-10 11:34:15'),(2,'Chrome','102.0','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36','172.21.0.1','2022-06-10 13:33:41'); +/*!40000 ALTER TABLE `infra_navegador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_parametro` +-- + +DROP TABLE IF EXISTS `infra_parametro`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_parametro` ( + `nome` varchar(100) NOT NULL, + `valor` longtext, + PRIMARY KEY (`nome`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_parametro` +-- + +LOCK TABLES `infra_parametro` WRITE; +/*!40000 ALTER TABLE `infra_parametro` DISABLE KEYS */; +INSERT INTO `infra_parametro` VALUES ('ABC_ID_TIPO_CONTATO_UNIDADES','5'),('ABC_ID_TIPO_CONTATO_USUARIOS','1'),('ID_MODELO_INTERNO_BASE_CONHECIMENTO','40'),('ID_SERIE_EMAIL','30'),('ID_SERIE_OUVIDORIA','86'),('ID_TIPO_CONTATO_ORGAOS','6'),('ID_TIPO_CONTATO_SISTEMAS','2'),('ID_TIPO_CONTATO_TEMPORARIO','4'),('ID_TIPO_CONTATO_USUARIOS_EXTERNOS','3'),('ID_UNIDADE_TESTE','110000001'),('ID_USUARIO_EDOC','5'),('ID_USUARIO_INTERNET','4'),('ID_USUARIO_INTRANET','3'),('ID_USUARIO_SEI','1'),('ID_USUARIO_SIP','2'),('ME_ID_TIPO_CONTATO_UNIDADES','7'),('ME_ID_TIPO_CONTATO_USUARIOS','8'),('SEI_ACESSO_FORMULARIO_OUVIDORIA','0'),('SEI_ALTERACAO_NIVEL_ACESSO_DOCUMENTO','0'),('SEI_EMAIL_ADMINISTRADOR','teste@dominio.gov.br'),('SEI_EMAIL_CONVERTER_ANEXO_HTML_PARA_PDF','0'),('SEI_EMAIL_SISTEMA','naoresponda@dominio.gov.br'),('SEI_EXIBIR_ARVORE_RESTRITO_SEM_ACESSO','0'),('SEI_FEDERACAO_NUMERO_PROCESSO','1'),('SEI_HABILITAR_ACESSO_EXTERNO_INCLUSAO_DOCUMENTO','1'),('SEI_HABILITAR_AUTENTICACAO_DOCUMENTO_EXTERNO','1'),('SEI_HABILITAR_GRAU_SIGILO','0'),('SEI_HABILITAR_HIPOTESE_LEGAL','2'),('SEI_HABILITAR_MOVER_DOCUMENTO','1'),('SEI_HABILITAR_NUMERO_PROCESSO_INFORMADO','1'),('SEI_HABILITAR_VALIDACAO_CPF_CERTIFICADO_DIGITAL','0'),('SEI_HABILITAR_VALIDACAO_EXTENSAO_ARQUIVOS','1'),('SEI_HABILITAR_VERIFICACAO_REPOSITORIO','0'),('SEI_ID_SISTEMA','100000100'),('SEI_ID_TIPO_PROCEDIMENTO_FEDERACAO','100000501'),('SEI_MASCARA_ASSUNTO',NULL),('SEI_MASCARA_NUMERO_PROCESSO_INFORMADO','#####.######/####-##'),('SEI_MAX_TAM_MENSAGEM_OUVIDORIA','4000'),('SEI_MSG_AVISO_CADASTRO_USUARIO_EXTERNO','ATENÇÃO! Cadastro destinado a pessoas físicas que estejam com demandas em PROCESSOS ADMINISTRATIVOS na instituição.'),('SEI_MSG_FORMULARIO_OUVIDORIA',''),('SEI_NUM_FATOR_DOWNLOAD_AUTOMATICO',''),('SEI_NUM_MAX_DOCS_PASTA','20'),('SEI_NUM_PAGINACAO_CONTROLE_PROCESSOS','100'),('SEI_SINALIZACAO_PROCESSO','0'),('SEI_SUFIXO_EMAIL','.gov.br'),('SEI_TAM_MB_CORRETOR_DESABILITADO','2'),('SEI_TAM_MB_DOC_EXTERNO','200'),('SEI_TIPO_ASSINATURA_INTERNA','1'),('SEI_TIPO_AUTENTICACAO_INTERNA','1'),('SEI_TXT_DISTRIBUIDO','Ministério da Gestão e da Inovação em Serviços Públicos - MGI'),('SEI_TXT_DISTRIBUIDO_MINIFICADO','MGI'),('SEI_VERSAO','4.0.12'),('SEI_WS_NUM_MAX_DOCS','5'),('VERSAO_MODULO_WSSEI','1.0.4'); +/*!40000 ALTER TABLE `infra_parametro` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_regra_auditoria` +-- + +DROP TABLE IF EXISTS `infra_regra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_regra_auditoria` ( + `id_infra_regra_auditoria` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_regra_auditoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_regra_auditoria` +-- + +LOCK TABLES `infra_regra_auditoria` WRITE; +/*!40000 ALTER TABLE `infra_regra_auditoria` DISABLE KEYS */; +INSERT INTO `infra_regra_auditoria` VALUES (2,'Geral','S'),(3,'Acessos e Usuários Externos','S'),(4,'Visualização de Processos','S'),(5,'Visualização de Documentos','S'); +/*!40000 ALTER TABLE `infra_regra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_regra_auditoria_recurso` +-- + +DROP TABLE IF EXISTS `infra_regra_auditoria_recurso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_regra_auditoria_recurso` ( + `id_infra_regra_auditoria` int(11) NOT NULL, + `recurso` varchar(50) NOT NULL, + PRIMARY KEY (`id_infra_regra_auditoria`,`recurso`), + KEY `fk_inf_reg_aud_rec_inf_reg_aud` (`id_infra_regra_auditoria`), + CONSTRAINT `fk_inf_reg_aud_rec_inf_reg_aud` FOREIGN KEY (`id_infra_regra_auditoria`) REFERENCES `infra_regra_auditoria` (`id_infra_regra_auditoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_regra_auditoria_recurso` +-- + +LOCK TABLES `infra_regra_auditoria_recurso` WRITE; +/*!40000 ALTER TABLE `infra_regra_auditoria_recurso` DISABLE KEYS */; +INSERT INTO `infra_regra_auditoria_recurso` VALUES (2,'acesso_externo_cadastrar'),(2,'acesso_externo_excluir'),(2,'acompanhamento_alterar'),(2,'acompanhamento_cadastrar'),(2,'acompanhamento_detalhar_ouvidoria'),(2,'acompanhamento_excluir'),(2,'acompanhamento_gerar_grafico_ouvidoria'),(2,'acompanhamento_listar_ouvidoria'),(2,'anotacao_excluir'),(2,'anotacao_registrar'),(2,'arquivamento_migrar_localizador'),(2,'arquivo_extensao_alterar'),(2,'arquivo_extensao_cadastrar'),(2,'arquivo_extensao_desativar'),(2,'arquivo_extensao_excluir'),(2,'arquivo_extensao_reativar'),(2,'arvore_ordenar'),(2,'assinante_alterar'),(2,'assinante_cadastrar'),(2,'assinante_excluir'),(2,'assinatura_download_p7s'),(2,'assinatura_verificar'),(2,'assunto_alterar'),(2,'assunto_cadastrar'),(2,'assunto_desativar'),(2,'assunto_excluir'),(2,'assunto_reativar'),(2,'atributo_alterar'),(2,'atributo_cadastrar'),(2,'atributo_desativar'),(2,'atributo_excluir'),(2,'atributo_reativar'),(2,'base_conhecimento_alterar'),(2,'base_conhecimento_cadastrar'),(2,'base_conhecimento_cancelar_liberacao'),(2,'base_conhecimento_excluir'),(2,'base_conhecimento_liberar'),(2,'base_conhecimento_nova_versao'),(2,'bloco_alterar'),(2,'bloco_cadastrar'),(2,'bloco_desativar'),(2,'bloco_excluir'),(2,'bloco_reativar'),(2,'cargo_alterar'),(2,'cargo_cadastrar'),(2,'cargo_desativar'),(2,'cargo_excluir'),(2,'cargo_reativar'),(2,'cidade_alterar'),(2,'cidade_cadastrar'),(2,'cidade_excluir'),(2,'contato_alterar'),(2,'contato_cadastrar'),(2,'contato_desativar'),(2,'contato_excluir'),(2,'contato_reativar'),(2,'contato_substituir_temporario'),(2,'controle_interno_alterar'),(2,'controle_interno_cadastrar'),(2,'controle_interno_excluir'),(2,'documento_alterar'),(2,'documento_alterar_recebido'),(2,'documento_assinar'),(2,'documento_cancelar'),(2,'documento_excluir'),(2,'documento_gerar'),(2,'documento_gerar_circular'),(2,'documento_imprimir_web'),(2,'documento_imprimir_word'),(2,'documento_receber'),(2,'documento_visualizar_conteudo_assinatura'),(2,'dominio_alterar'),(2,'dominio_cadastrar'),(2,'dominio_desativar'),(2,'dominio_excluir'),(2,'dominio_reativar'),(2,'email_sistema_alterar'),(2,'email_sistema_desativar'),(2,'email_sistema_reativar'),(2,'email_unidade_alterar'),(2,'email_unidade_cadastrar'),(2,'email_unidade_excluir'),(2,'email_utilizado_cadastrar'),(2,'email_utilizado_excluir'),(2,'estilo_alterar'),(2,'estilo_cadastrar'),(2,'estilo_excluir'),(2,'feriado_alterar'),(2,'feriado_cadastrar'),(2,'feriado_excluir'),(2,'formulario_alterar'),(2,'formulario_gerar'),(2,'gerar_estatisticas_desempenho_processos'),(2,'gerar_estatisticas_ouvidoria'),(2,'gerar_estatisticas_unidade'),(2,'grupo_acompanhamento_alterar'),(2,'grupo_acompanhamento_cadastrar'),(2,'grupo_acompanhamento_excluir'),(2,'grupo_contato_alterar'),(2,'grupo_contato_cadastrar'),(2,'grupo_contato_excluir'),(2,'grupo_contato_institucional_alterar'),(2,'grupo_contato_institucional_cadastrar'),(2,'grupo_contato_institucional_desativar'),(2,'grupo_contato_institucional_excluir'),(2,'grupo_contato_institucional_reativar'),(2,'grupo_email_alterar'),(2,'grupo_email_cadastrar'),(2,'grupo_email_excluir'),(2,'grupo_protocolo_modelo_alterar'),(2,'grupo_protocolo_modelo_cadastrar'),(2,'grupo_protocolo_modelo_excluir'),(2,'grupo_serie_alterar'),(2,'grupo_serie_cadastrar'),(2,'grupo_serie_desativar'),(2,'grupo_serie_excluir'),(2,'grupo_serie_reativar'),(2,'grupo_unidade_alterar'),(2,'grupo_unidade_cadastrar'),(2,'grupo_unidade_excluir'),(2,'grupo_unidade_institucional_alterar'),(2,'grupo_unidade_institucional_cadastrar'),(2,'grupo_unidade_institucional_desativar'),(2,'grupo_unidade_institucional_excluir'),(2,'grupo_unidade_institucional_reativar'),(2,'hipotese_legal_alterar'),(2,'hipotese_legal_cadastrar'),(2,'hipotese_legal_desativar'),(2,'hipotese_legal_excluir'),(2,'hipotese_legal_reativar'),(2,'imagem_formato_alterar'),(2,'imagem_formato_cadastrar'),(2,'imagem_formato_desativar'),(2,'imagem_formato_excluir'),(2,'imagem_formato_reativar'),(2,'infra_atributo_sessao_alterar'),(2,'infra_atributo_sessao_cadastrar'),(2,'infra_atributo_sessao_excluir'),(2,'infra_atributo_sessao_reativar'),(2,'infra_log_excluir'),(2,'infra_parametro_alterar'),(2,'infra_parametro_cadastrar'),(2,'infra_parametro_excluir'),(2,'infra_sequencia_alterar'),(2,'infra_sequencia_cadastrar'),(2,'infra_sequencia_excluir'),(2,'inspecao_administrativa_gerar'),(2,'localizador_alterar'),(2,'localizador_cadastrar'),(2,'localizador_excluir'),(2,'lugar_localizador_alterar'),(2,'lugar_localizador_cadastrar'),(2,'lugar_localizador_desativar'),(2,'lugar_localizador_excluir'),(2,'lugar_localizador_reativar'),(2,'mapeamento_assunto_cadastrar'),(2,'mapeamento_assunto_excluir'),(2,'mapeamento_assunto_gerenciar'),(2,'marcador_alterar'),(2,'marcador_cadastrar'),(2,'marcador_desativar'),(2,'marcador_excluir'),(2,'marcador_reativar'),(2,'modelo_alterar'),(2,'modelo_cadastrar'),(2,'modelo_clonar'),(2,'modelo_desativar'),(2,'modelo_excluir'),(2,'modelo_reativar'),(2,'monitoramento_servico_excluir'),(2,'nivel_acesso_permitido_cadastrar'),(2,'nivel_acesso_permitido_excluir'),(2,'novidade_alterar'),(2,'novidade_cadastrar'),(2,'novidade_cancelar_liberacao'),(2,'novidade_excluir'),(2,'novidade_liberar'),(2,'numeracao_ajustar'),(2,'numeracao_alterar'),(2,'numeracao_cadastrar'),(2,'numeracao_excluir'),(2,'operacao_servico_alterar'),(2,'operacao_servico_cadastrar'),(2,'operacao_servico_excluir'),(2,'ordenador_despesa_alterar'),(2,'ordenador_despesa_cadastrar'),(2,'ordenador_despesa_excluir'),(2,'orgao_alterar'),(2,'pais_alterar'),(2,'pais_cadastrar'),(2,'pais_excluir'),(2,'procedimento_alterar'),(2,'procedimento_bloquear'),(2,'procedimento_credencial_ativar'),(2,'procedimento_credencial_cancelar'),(2,'procedimento_desbloquear'),(2,'procedimento_duplicar'),(2,'procedimento_excluir'),(2,'procedimento_excluir_relacionamento'),(2,'procedimento_finalizar_ouvidoria'),(2,'procedimento_gerar'),(2,'procedimento_gerar_pdf'),(2,'procedimento_gerar_zip'),(2,'procedimento_reencaminhar_ouvidoria'),(2,'procedimento_relacionar'),(2,'protocolo_modelo_alterar'),(2,'protocolo_modelo_cadastrar'),(2,'protocolo_modelo_excluir'),(2,'publicacao_agendar'),(2,'publicacao_alterar_agendamento'),(2,'publicacao_cancelar_agendamento'),(2,'retorno_programado_alterar'),(2,'retorno_programado_cadastrar'),(2,'retorno_programado_excluir'),(2,'secao_imprensa_nacional_alterar'),(2,'secao_imprensa_nacional_cadastrar'),(2,'secao_imprensa_nacional_excluir'),(2,'secao_modelo_alterar'),(2,'secao_modelo_cadastrar'),(2,'secao_modelo_desativar'),(2,'secao_modelo_excluir'),(2,'secao_modelo_reativar'),(2,'serie_alterar'),(2,'serie_cadastrar'),(2,'serie_desativar'),(2,'serie_excluir'),(2,'serie_reativar'),(2,'servico_alterar'),(2,'servico_cadastrar'),(2,'servico_desativar'),(2,'servico_excluir'),(2,'servico_reativar'),(2,'situacao_alterar'),(2,'situacao_cadastrar'),(2,'situacao_desativar'),(2,'situacao_excluir'),(2,'situacao_reativar'),(2,'tabela_assuntos_alterar'),(2,'tabela_assuntos_ativar'),(2,'tabela_assuntos_cadastrar'),(2,'tabela_assuntos_excluir'),(2,'tarefa_configurar_historico'),(2,'tarja_assinatura_alterar'),(2,'texto_padrao_interno_alterar'),(2,'texto_padrao_interno_cadastrar'),(2,'texto_padrao_interno_excluir'),(2,'tipo_conferencia_alterar'),(2,'tipo_conferencia_cadastrar'),(2,'tipo_conferencia_desativar'),(2,'tipo_conferencia_excluir'),(2,'tipo_conferencia_reativar'),(2,'tipo_contato_alterar'),(2,'tipo_contato_cadastrar'),(2,'tipo_contato_desativar'),(2,'tipo_contato_excluir'),(2,'tipo_contato_reativar'),(2,'tipo_formulario_alterar'),(2,'tipo_formulario_cadastrar'),(2,'tipo_formulario_clonar'),(2,'tipo_formulario_desativar'),(2,'tipo_formulario_excluir'),(2,'tipo_formulario_reativar'),(2,'tipo_localizador_alterar'),(2,'tipo_localizador_cadastrar'),(2,'tipo_localizador_desativar'),(2,'tipo_localizador_excluir'),(2,'tipo_localizador_reativar'),(2,'tipo_procedimento_alterar'),(2,'tipo_procedimento_cadastrar'),(2,'tipo_procedimento_desativar'),(2,'tipo_procedimento_excluir'),(2,'tipo_procedimento_reativar'),(2,'tipo_suporte_alterar'),(2,'tipo_suporte_cadastrar'),(2,'tipo_suporte_desativar'),(2,'tipo_suporte_excluir'),(2,'tipo_suporte_reativar'),(2,'tratamento_alterar'),(2,'tratamento_cadastrar'),(2,'tratamento_desativar'),(2,'tratamento_excluir'),(2,'tratamento_reativar'),(2,'uf_alterar'),(2,'uf_cadastrar'),(2,'uf_excluir'),(2,'unidade_alterar'),(2,'unidade_cadastrar'),(2,'unidade_desativar'),(2,'unidade_excluir'),(2,'unidade_migrar'),(2,'unidade_reativar'),(2,'usuario_alterar'),(2,'usuario_cadastrar'),(2,'usuario_desativar'),(2,'usuario_excluir'),(2,'usuario_reativar'),(2,'usuario_validar_acesso'),(2,'veiculo_imprensa_nacional_alterar'),(2,'veiculo_imprensa_nacional_cadastrar'),(2,'veiculo_imprensa_nacional_excluir'),(2,'veiculo_publicacao_alterar'),(2,'veiculo_publicacao_cadastrar'),(2,'veiculo_publicacao_desativar'),(2,'veiculo_publicacao_excluir'),(2,'veiculo_publicacao_reativar'),(2,'velocidade_transferencia_excluir'),(2,'vocativo_alterar'),(2,'vocativo_cadastrar'),(2,'vocativo_desativar'),(2,'vocativo_excluir'),(2,'vocativo_reativar'),(3,'documento_consulta_externa'),(3,'processo_consulta_externa'),(3,'usuario_externo_alterar_senha'),(3,'usuario_externo_enviar_cadastro'),(3,'usuario_externo_gerar_senha'),(3,'usuario_externo_logar'),(3,'usuario_externo_sair'),(4,'procedimento_visualizar'),(5,'documento_download_anexo'),(5,'documento_visualizar'); +/*!40000 ALTER TABLE `infra_regra_auditoria_recurso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_sequencia` +-- + +DROP TABLE IF EXISTS `infra_sequencia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_sequencia` ( + `nome_tabela` varchar(30) NOT NULL, + `qtd_incremento` bigint(20) NOT NULL, + `num_atual` bigint(20) NOT NULL, + `num_maximo` bigint(20) NOT NULL, + PRIMARY KEY (`nome_tabela`), + KEY `i01_infra_sequencia` (`nome_tabela`,`num_atual`,`qtd_incremento`,`num_maximo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_sequencia` +-- + +LOCK TABLES `infra_sequencia` WRITE; +/*!40000 ALTER TABLE `infra_sequencia` DISABLE KEYS */; +INSERT INTO `infra_sequencia` VALUES ('infra_agendamento_tarefa',1,9,999999999),('usuario_externo',1,1000000,1999999),('usuario_sistema',1,7,999999); +/*!40000 ALTER TABLE `infra_sequencia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `instalacao_federacao` +-- + +DROP TABLE IF EXISTS `instalacao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `instalacao_federacao` ( + `id_instalacao_federacao` varchar(26) NOT NULL, + `cnpj` bigint(20) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(100) NOT NULL, + `endereco` varchar(250) NOT NULL, + `chave_publica_local` varchar(1024) DEFAULT NULL, + `chave_publica_remota` varchar(1024) DEFAULT NULL, + `chave_privada` varchar(1024) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `sta_estado` char(1) NOT NULL, + `sta_agendamento` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_instalacao_federacao`), + UNIQUE KEY `ak_cnjp` (`cnpj`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `instalacao_federacao` +-- + +LOCK TABLES `instalacao_federacao` WRITE; +/*!40000 ALTER TABLE `instalacao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `instalacao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lembrete` +-- + +DROP TABLE IF EXISTS `lembrete`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `lembrete` ( + `id_lembrete` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `posicao_x` int(11) NOT NULL, + `posicao_y` int(11) NOT NULL, + `largura` int(11) NOT NULL, + `altura` int(11) NOT NULL, + `cor` char(7) NOT NULL, + `cor_texto` char(7) NOT NULL, + `dth_lembrete` datetime NOT NULL, + `conteudo` longtext NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_lembrete`), + KEY `i01_lembrete` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lembrete` +-- + +LOCK TABLES `lembrete` WRITE; +/*!40000 ALTER TABLE `lembrete` DISABLE KEYS */; +/*!40000 ALTER TABLE `lembrete` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `localizador` +-- + +DROP TABLE IF EXISTS `localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `localizador` ( + `id_localizador` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_tipo_suporte` int(11) NOT NULL, + `complemento` varchar(50) DEFAULT NULL, + `sta_estado` char(1) NOT NULL, + `seq_localizador` int(11) NOT NULL, + `id_tipo_localizador` int(11) NOT NULL, + `id_lugar_localizador` int(11) NOT NULL, + PRIMARY KEY (`id_localizador`), + UNIQUE KEY `ak1_localizador` (`id_unidade`,`seq_localizador`,`id_tipo_localizador`), + KEY `fk_localizador_tipo_suporte` (`id_tipo_suporte`), + KEY `fk_localizador_lugar_localizad` (`id_lugar_localizador`), + KEY `fk_localizador_tipo_localizado` (`id_tipo_localizador`), + KEY `fk_localizador_unidade` (`id_unidade`), + CONSTRAINT `fk_localizador_lugar_localizad` FOREIGN KEY (`id_lugar_localizador`) REFERENCES `lugar_localizador` (`id_lugar_localizador`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_localizador_tipo_localizado` FOREIGN KEY (`id_tipo_localizador`) REFERENCES `tipo_localizador` (`id_tipo_localizador`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_localizador_tipo_suporte` FOREIGN KEY (`id_tipo_suporte`) REFERENCES `tipo_suporte` (`id_tipo_suporte`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_localizador_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `localizador` +-- + +LOCK TABLES `localizador` WRITE; +/*!40000 ALTER TABLE `localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lugar_localizador` +-- + +DROP TABLE IF EXISTS `lugar_localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `lugar_localizador` ( + `id_lugar_localizador` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_lugar_localizador`), + UNIQUE KEY `ak1_lugar_localizador` (`nome`,`id_unidade`), + KEY `fk_lugar_localizador_unidade` (`id_unidade`), + CONSTRAINT `fk_lugar_localizador_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lugar_localizador` +-- + +LOCK TABLES `lugar_localizador` WRITE; +/*!40000 ALTER TABLE `lugar_localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `lugar_localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mapeamento_assunto` +-- + +DROP TABLE IF EXISTS `mapeamento_assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mapeamento_assunto` ( + `id_assunto_origem` int(11) NOT NULL, + `id_assunto_destino` int(11) NOT NULL, + PRIMARY KEY (`id_assunto_origem`,`id_assunto_destino`), + KEY `fk_assunto_map_assunto_destino` (`id_assunto_destino`), + KEY `fk_assunto_map_assunto_origem` (`id_assunto_origem`), + CONSTRAINT `fk_assunto_map_assunto_destino` FOREIGN KEY (`id_assunto_destino`) REFERENCES `assunto` (`id_assunto`), + CONSTRAINT `fk_assunto_map_assunto_origem` FOREIGN KEY (`id_assunto_origem`) REFERENCES `assunto` (`id_assunto`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mapeamento_assunto` +-- + +LOCK TABLES `mapeamento_assunto` WRITE; +/*!40000 ALTER TABLE `mapeamento_assunto` DISABLE KEYS */; +/*!40000 ALTER TABLE `mapeamento_assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `marcador` +-- + +DROP TABLE IF EXISTS `marcador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `marcador` ( + `id_marcador` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) DEFAULT NULL, + `sta_icone` varchar(2) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_marcador`), + KEY `fk_marcador_unidade` (`id_unidade`), + CONSTRAINT `fk_marcador_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `marcador` +-- + +LOCK TABLES `marcador` WRITE; +/*!40000 ALTER TABLE `marcador` DISABLE KEYS */; +/*!40000 ALTER TABLE `marcador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `md_wssei_notificacao_ativ` +-- + +DROP TABLE IF EXISTS `md_wssei_notificacao_ativ`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `md_wssei_notificacao_ativ` ( + `id_notificacao_atividade` int(11) NOT NULL, + `id_atividade` int(11) NOT NULL, + `titulo` char(150) NOT NULL, + `mensagem` longtext NOT NULL, + `dth_notificacao` datetime NOT NULL, + KEY `i01_md_wssei_notificacao_ativ` (`id_notificacao_atividade`), + KEY `i02_md_wssei_notificacao_ativ` (`id_atividade`), + KEY `i03_md_wssei_notificacao_ativ` (`id_notificacao_atividade`,`id_atividade`), + CONSTRAINT `fk_md_wssei_not_ativ_id_ativ` FOREIGN KEY (`id_atividade`) REFERENCES `atividade` (`id_atividade`) ON DELETE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `md_wssei_notificacao_ativ` +-- + +LOCK TABLES `md_wssei_notificacao_ativ` WRITE; +/*!40000 ALTER TABLE `md_wssei_notificacao_ativ` DISABLE KEYS */; +/*!40000 ALTER TABLE `md_wssei_notificacao_ativ` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `modelo` +-- + +DROP TABLE IF EXISTS `modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `modelo` ( + `id_modelo` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_modelo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `modelo` +-- + +LOCK TABLES `modelo` WRITE; +/*!40000 ALTER TABLE `modelo` DISABLE KEYS */; +INSERT INTO `modelo` VALUES (27,'Geral_s-Num_s-Unid_s-Data_c-Int_c-End','S'),(28,'Ato','S'),(30,'Termo_de_Encerramento_de_Tramite_Fisico','S'),(34,'Geral_c-Num_s-Unid_c-Logo_s-Int','S'),(36,'Analise','S'),(37,'Voto','S'),(39,'Geral_s-Num_s-Unid_s-Data_c-Int','S'),(40,'Base_de_Conhecimento','S'),(43,'Acordao','S'),(48,'Geral_c-Num_c-Unid_s-Data_c-Int','S'),(50,'AGU_Cota','S'),(51,'Memorando','S'),(53,'Memorando-Circular','S'),(55,'AGU_Parecer','S'),(56,'Resolucao','S'),(57,'Portaria','S'),(58,'Oficio','S'),(60,'Sumula','S'),(61,'AGU_Nota','S'),(62,'AGU_Informacao','S'),(63,'AGU_Despacho','S'),(64,'Nota_Tecnica','S'),(69,'Aviso_de_Audiencia_Publica','S'),(70,'Licitacao_Edital','S'),(71,'Licitacao_Contrato','S'),(72,'Licitacao_Termo_de_Referencia','S'),(73,'Licitacao_TI_DOD','S'),(74,'Licitacao_TI_Indicacao_de_Integrante_Tecnico','S'),(75,'Licitacao_TI_Instituicao_Equipe_Planej_Contratacao','S'),(76,'Licitacao_TI_Estudo_Tecnico_Preliminar','S'),(77,'Licitacao_TI_Analise_de_Riscos','S'),(79,'Licitacao_TI_Plano_de_Insercao','S'),(80,'Licitacao_TI_Plano_de_Fiscalizacao_de_Contrato','S'),(81,'Licitacao_Ordem_Servico_Fornecimento_Bens','S'),(82,'Licitacao_Termo_Compromisso_Manutencao_Sigilo','S'),(83,'Licitacao_Termo_Ciencia_Manutencao_Sigilo','S'),(84,'Licitacao_Termo_Recebimento_Provisorio','S'),(85,'Licitacao_Termo_Recebimento_Definitivo','S'),(86,'Licitacao_Termo_Encerramento_Contrato','S'),(87,'Reuniao_Ata','S'),(88,'Reuniao_Registro','S'),(89,'Acordo_de_Cooperacao_e_Convenio','S'),(90,'Parecer','S'),(93,'Portaria_Minuta','S'),(94,'Aviso','S'),(95,'Exposicao_de_Motivos','S'),(96,'Mensagem','S'),(97,'Resolucao_Minuta','S'),(98,'Suprimento_de_Fundos_Relatorio_de_Concessao','S'),(99,'Projetos_PGP','S'),(100,'Projetos_TAP','S'),(101,'Boletim_de_Concessao_de_Diarias','S'),(102,'Licitacao_Projeto_Basico','S'),(103,'Licitacao_Contrato_Termo_Aditivo','S'),(104,'Licitacao_Contrato_Termo_de_Apostilamento','S'),(105,'Licitacao_Contrato_Termo_de_Rescisao_Amigavel','S'),(106,'Licitacao_Contrato_Termo_de_Rescisao_Unilateral','S'),(107,'Acordo_de_Cooperacao_e_Convenio_Minuta','S'),(108,'Licitacao_Contrato_Minuta','S'),(109,'Licitacao_Edital_Minuta','S'),(110,'Suprimento_de_Fundos_Proposta_de_Concessao','S'),(111,'Suprimento_de_Fundos_Solicitacao_de_Despesas','S'),(112,'Suprimento_de_Fundos_Prestacao_de_Contas','S'),(113,'Licitacao_Ata_de_Registro_de_Precos','S'),(114,'Licitacao_Ata_de_Registro_de_Precos_Minuta','S'),(115,'Licitacao_Reconhecimento_Ratificacao_Inexigibilid','S'),(116,'Licitacao_Reconhecimento_Ratificacao_Dispensa','S'),(117,'Licitacao_Abertura_Procedimento_Licitatorio','S'),(118,'Relatorio_de_Viagem_a_Servico','S'); +/*!40000 ALTER TABLE `modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `monitoramento_servico` +-- + +DROP TABLE IF EXISTS `monitoramento_servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `monitoramento_servico` ( + `id_monitoramento_servico` bigint(20) NOT NULL, + `id_servico` int(11) NOT NULL, + `operacao` varchar(100) NOT NULL, + `tempo_execucao` bigint(20) NOT NULL, + `ip_acesso` varchar(39) DEFAULT NULL, + `dth_acesso` datetime NOT NULL, + `servidor` varchar(250) DEFAULT NULL, + `user_agent` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id_monitoramento_servico`), + KEY `fk_monitoram_servico_servico` (`id_servico`), + KEY `i01_monitoramento_servico` (`dth_acesso`), + KEY `i02_monitoramento_servico` (`operacao`), + CONSTRAINT `fk_monitoram_servico_servico` FOREIGN KEY (`id_servico`) REFERENCES `servico` (`id_servico`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `monitoramento_servico` +-- + +LOCK TABLES `monitoramento_servico` WRITE; +/*!40000 ALTER TABLE `monitoramento_servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `monitoramento_servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `nivel_acesso_permitido` +-- + +DROP TABLE IF EXISTS `nivel_acesso_permitido`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `nivel_acesso_permitido` ( + `id_nivel_acesso_permitido` int(11) NOT NULL, + `id_tipo_procedimento` int(11) NOT NULL, + `sta_nivel_acesso` char(1) NOT NULL, + PRIMARY KEY (`id_nivel_acesso_permitido`), + KEY `fk_nivel_acesso_perm_tipo_proc` (`id_tipo_procedimento`), + CONSTRAINT `fk_nivel_acesso_perm_tipo_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `nivel_acesso_permitido` +-- + +LOCK TABLES `nivel_acesso_permitido` WRITE; +/*!40000 ALTER TABLE `nivel_acesso_permitido` DISABLE KEYS */; +INSERT INTO `nivel_acesso_permitido` VALUES (924,100000107,'1'),(925,100000107,'0'),(926,100000108,'1'),(927,100000108,'0'),(928,100000109,'1'),(929,100000109,'0'),(930,100000110,'1'),(931,100000110,'0'),(932,100000111,'1'),(933,100000111,'0'),(934,100000112,'1'),(935,100000112,'0'),(936,100000113,'1'),(937,100000113,'0'),(938,100000114,'1'),(939,100000114,'0'),(948,100000119,'1'),(949,100000119,'0'),(950,100000120,'1'),(951,100000120,'0'),(952,100000121,'1'),(953,100000121,'0'),(954,100000122,'1'),(955,100000122,'0'),(956,100000123,'1'),(957,100000123,'0'),(965,100000127,'1'),(966,100000127,'0'),(967,100000128,'1'),(968,100000128,'0'),(969,100000129,'1'),(970,100000129,'0'),(971,100000130,'1'),(972,100000130,'0'),(973,100000131,'1'),(974,100000131,'0'),(975,100000132,'1'),(976,100000132,'0'),(977,100000133,'1'),(978,100000133,'0'),(979,100000134,'1'),(980,100000134,'0'),(981,100000135,'1'),(982,100000135,'0'),(983,100000136,'1'),(984,100000136,'0'),(985,100000137,'1'),(986,100000137,'0'),(987,100000138,'1'),(988,100000138,'0'),(989,100000139,'1'),(990,100000139,'0'),(991,100000140,'1'),(992,100000140,'0'),(995,100000142,'1'),(996,100000142,'0'),(997,100000143,'1'),(998,100000143,'0'),(999,100000144,'1'),(1000,100000144,'0'),(1009,100000149,'1'),(1010,100000149,'0'),(1011,100000150,'1'),(1012,100000150,'0'),(1021,100000154,'1'),(1022,100000154,'0'),(1023,100000155,'1'),(1024,100000155,'0'),(1025,100000156,'1'),(1026,100000156,'0'),(1027,100000157,'1'),(1028,100000157,'0'),(1037,100000162,'1'),(1038,100000162,'0'),(1039,100000163,'1'),(1040,100000163,'0'),(1041,100000164,'1'),(1042,100000164,'0'),(1043,100000165,'1'),(1044,100000165,'0'),(1045,100000166,'1'),(1046,100000166,'0'),(1047,100000167,'1'),(1048,100000167,'0'),(1051,100000169,'1'),(1052,100000169,'0'),(1059,100000173,'1'),(1060,100000173,'0'),(1061,100000174,'1'),(1062,100000174,'0'),(1063,100000175,'1'),(1064,100000175,'0'),(1065,100000176,'1'),(1066,100000176,'0'),(1067,100000177,'1'),(1068,100000177,'0'),(1069,100000178,'1'),(1070,100000178,'0'),(1071,100000179,'1'),(1072,100000179,'0'),(1075,100000181,'1'),(1076,100000181,'0'),(1077,100000182,'1'),(1078,100000182,'0'),(1079,100000183,'1'),(1080,100000183,'0'),(1081,100000184,'1'),(1082,100000184,'0'),(1083,100000185,'1'),(1084,100000185,'0'),(1085,100000186,'1'),(1086,100000186,'0'),(1087,100000187,'1'),(1088,100000187,'0'),(1089,100000188,'1'),(1090,100000188,'0'),(1093,100000190,'1'),(1094,100000190,'0'),(1095,100000191,'1'),(1096,100000191,'0'),(1097,100000192,'1'),(1098,100000192,'0'),(1099,100000193,'1'),(1100,100000193,'0'),(1101,100000194,'1'),(1102,100000194,'0'),(1103,100000195,'1'),(1104,100000195,'0'),(1105,100000196,'1'),(1106,100000196,'0'),(1114,100000200,'1'),(1115,100000200,'0'),(1116,100000198,'1'),(1117,100000198,'0'),(1118,100000199,'1'),(1119,100000199,'0'),(1126,100000201,'1'),(1127,100000201,'0'),(1128,100000202,'1'),(1129,100000202,'0'),(1130,100000203,'1'),(1131,100000203,'0'),(1132,100000204,'1'),(1133,100000204,'0'),(1134,100000205,'1'),(1135,100000205,'0'),(1136,100000206,'1'),(1137,100000206,'0'),(1138,100000207,'1'),(1139,100000207,'0'),(1140,100000208,'1'),(1141,100000208,'0'),(1142,100000209,'1'),(1143,100000209,'0'),(1148,100000212,'1'),(1149,100000212,'0'),(1150,100000213,'1'),(1151,100000213,'0'),(1152,100000214,'1'),(1153,100000214,'0'),(1154,100000215,'1'),(1155,100000215,'0'),(1160,100000218,'1'),(1161,100000218,'0'),(1162,100000219,'1'),(1163,100000219,'0'),(1164,100000220,'1'),(1165,100000220,'0'),(1166,100000221,'1'),(1167,100000221,'0'),(1168,100000222,'1'),(1169,100000222,'0'),(1170,100000223,'1'),(1171,100000223,'0'),(1172,100000224,'1'),(1173,100000224,'0'),(1174,100000225,'1'),(1175,100000225,'0'),(1176,100000226,'1'),(1177,100000226,'0'),(1178,100000227,'1'),(1179,100000227,'0'),(1180,100000228,'1'),(1181,100000228,'0'),(1182,100000229,'1'),(1183,100000229,'0'),(1184,100000230,'1'),(1185,100000230,'0'),(1186,100000231,'1'),(1187,100000231,'0'),(1188,100000232,'1'),(1189,100000232,'0'),(1190,100000233,'1'),(1191,100000233,'0'),(1192,100000234,'1'),(1193,100000234,'0'),(1196,100000236,'1'),(1197,100000236,'0'),(1198,100000237,'1'),(1199,100000237,'0'),(1200,100000238,'1'),(1201,100000238,'0'),(1202,100000239,'1'),(1203,100000239,'0'),(1204,100000240,'1'),(1205,100000240,'0'),(1208,100000242,'1'),(1209,100000242,'0'),(1210,100000243,'1'),(1211,100000243,'0'),(1212,100000244,'1'),(1213,100000244,'0'),(1214,100000245,'1'),(1215,100000245,'0'),(1216,100000246,'1'),(1217,100000246,'0'),(1218,100000247,'1'),(1219,100000247,'0'),(1220,100000248,'1'),(1221,100000248,'0'),(1222,100000249,'1'),(1223,100000249,'0'),(1224,100000250,'1'),(1225,100000250,'0'),(1226,100000251,'1'),(1227,100000251,'0'),(1228,100000252,'1'),(1229,100000252,'0'),(1230,100000253,'1'),(1231,100000253,'0'),(1232,100000254,'1'),(1233,100000254,'0'),(1770,100000217,'1'),(1771,100000217,'0'),(1772,100000256,'1'),(1773,100000256,'0'),(1774,100000257,'1'),(1775,100000257,'0'),(1778,100000259,'1'),(1779,100000259,'0'),(1780,100000260,'1'),(1781,100000260,'0'),(1782,100000261,'1'),(1783,100000261,'0'),(1784,100000262,'1'),(1785,100000262,'0'),(1790,100000265,'1'),(1791,100000265,'0'),(1794,100000267,'1'),(1795,100000267,'0'),(1798,100000269,'1'),(1799,100000269,'0'),(1806,100000273,'1'),(1807,100000273,'0'),(1808,100000274,'1'),(1809,100000274,'0'),(1810,100000275,'1'),(1811,100000275,'0'),(1812,100000276,'1'),(1813,100000276,'0'),(1814,100000277,'1'),(1815,100000277,'0'),(1818,100000279,'1'),(1819,100000279,'0'),(1822,100000281,'1'),(1823,100000281,'0'),(1824,100000282,'1'),(1825,100000282,'0'),(1826,100000283,'1'),(1827,100000283,'0'),(1828,100000284,'1'),(1829,100000284,'0'),(2045,100000145,'1'),(2046,100000145,'0'),(2049,100000189,'1'),(2050,100000189,'0'),(2051,100000147,'1'),(2052,100000147,'0'),(2053,100000159,'1'),(2054,100000159,'0'),(2055,100000160,'1'),(2056,100000160,'0'),(2057,100000210,'1'),(2058,100000210,'0'),(2059,100000148,'1'),(2060,100000148,'0'),(2095,100000102,'1'),(2096,100000102,'0'),(2097,100000103,'1'),(2098,100000103,'0'),(2099,100000104,'1'),(2100,100000104,'0'),(2101,100000105,'1'),(2102,100000105,'0'),(2103,100000106,'1'),(2104,100000106,'0'),(2111,100000289,'1'),(2112,100000289,'0'),(2135,100000255,'1'),(2136,100000255,'0'),(2137,100000264,'1'),(2138,100000264,'0'),(2161,100000263,'1'),(2162,100000263,'0'),(2163,100000266,'1'),(2164,100000266,'0'),(2165,100000270,'1'),(2166,100000270,'0'),(2167,100000271,'1'),(2168,100000271,'0'),(2169,100000272,'1'),(2170,100000272,'0'),(2171,100000278,'1'),(2172,100000278,'0'),(2173,100000280,'1'),(2174,100000280,'0'),(2175,100000153,'1'),(2176,100000153,'0'),(2225,100000141,'1'),(2226,100000141,'0'),(2227,100000288,'1'),(2228,100000288,'0'),(2238,100000290,'1'),(2239,100000290,'0'),(2246,100000294,'1'),(2247,100000294,'0'),(2248,100000295,'1'),(2249,100000295,'0'),(2250,100000296,'1'),(2251,100000296,'0'),(2258,100000300,'1'),(2259,100000300,'0'),(2266,100000304,'1'),(2267,100000304,'0'),(2272,100000307,'1'),(2273,100000307,'0'),(2276,100000309,'1'),(2277,100000309,'0'),(2280,100000311,'1'),(2281,100000311,'0'),(2282,100000312,'1'),(2283,100000312,'0'),(2284,100000313,'1'),(2285,100000313,'0'),(2290,100000316,'1'),(2291,100000316,'0'),(2292,100000317,'1'),(2293,100000317,'0'),(2294,100000318,'1'),(2295,100000318,'0'),(2296,100000319,'1'),(2297,100000319,'0'),(2298,100000320,'1'),(2299,100000320,'0'),(2300,100000321,'1'),(2301,100000321,'0'),(2302,100000322,'1'),(2303,100000322,'0'),(2304,100000323,'1'),(2305,100000323,'0'),(2306,100000324,'1'),(2307,100000324,'0'),(2308,100000325,'1'),(2309,100000325,'0'),(2310,100000326,'1'),(2311,100000326,'0'),(2314,100000328,'1'),(2315,100000328,'0'),(2316,100000329,'1'),(2317,100000329,'0'),(2318,100000330,'1'),(2319,100000330,'0'),(2320,100000331,'1'),(2321,100000331,'0'),(2322,100000332,'1'),(2323,100000332,'0'),(2366,100000338,'1'),(2367,100000338,'0'),(2384,100000152,'1'),(2385,100000152,'0'),(2430,100000341,'1'),(2431,100000341,'0'),(2432,100000342,'1'),(2433,100000342,'0'),(2434,100000343,'1'),(2435,100000343,'0'),(2436,100000344,'1'),(2437,100000344,'0'),(2438,100000345,'1'),(2439,100000345,'0'),(2459,100000351,'1'),(2460,100000351,'0'),(2461,100000352,'1'),(2462,100000352,'0'),(2463,100000353,'1'),(2464,100000353,'0'),(2467,100000355,'1'),(2468,100000355,'0'),(2469,100000356,'1'),(2470,100000356,'0'),(2471,100000357,'1'),(2472,100000357,'0'),(2481,100000172,'1'),(2482,100000172,'0'),(2495,100000347,'1'),(2496,100000347,'0'),(2497,100000348,'1'),(2498,100000348,'0'),(2499,100000349,'1'),(2500,100000349,'0'),(2501,100000350,'1'),(2502,100000350,'0'),(2503,100000346,'1'),(2504,100000346,'0'),(2505,100000303,'1'),(2506,100000303,'0'),(2511,100000360,'1'),(2512,100000360,'0'),(2513,100000361,'1'),(2514,100000361,'0'),(2515,100000362,'1'),(2516,100000362,'0'),(2517,100000363,'1'),(2518,100000363,'0'),(2519,100000364,'1'),(2520,100000364,'0'),(2553,100000365,'1'),(2554,100000365,'0'),(2555,100000366,'1'),(2556,100000366,'0'),(2567,100000369,'1'),(2568,100000369,'0'),(2571,100000371,'1'),(2572,100000371,'0'),(2573,100000327,'1'),(2574,100000327,'0'),(2575,100000359,'1'),(2576,100000359,'0'),(2577,100000372,'1'),(2578,100000372,'0'),(2579,100000373,'1'),(2580,100000373,'0'),(2581,100000370,'1'),(2582,100000370,'0'),(2583,100000374,'1'),(2584,100000374,'0'),(2585,100000375,'1'),(2586,100000375,'0'),(2589,100000339,'1'),(2590,100000339,'0'),(2591,100000340,'1'),(2592,100000340,'0'),(2593,100000333,'1'),(2594,100000333,'0'),(2595,100000334,'1'),(2596,100000334,'0'),(2597,100000335,'1'),(2598,100000335,'0'),(2599,100000336,'1'),(2600,100000336,'0'),(2601,100000337,'1'),(2602,100000337,'0'),(2613,100000381,'1'),(2614,100000381,'0'),(2615,100000305,'1'),(2616,100000305,'0'),(2617,100000379,'1'),(2618,100000379,'0'),(2619,100000306,'1'),(2620,100000306,'0'),(2621,100000380,'1'),(2622,100000380,'0'),(2623,100000377,'1'),(2624,100000377,'0'),(2625,100000376,'1'),(2626,100000376,'0'),(2627,100000378,'1'),(2628,100000378,'0'),(2629,100000297,'1'),(2630,100000297,'0'),(2718,100000424,'1'),(2719,100000424,'0'),(2720,100000425,'1'),(2721,100000425,'0'),(2722,100000426,'1'),(2723,100000426,'0'),(2724,100000427,'1'),(2725,100000427,'0'),(2726,100000428,'1'),(2727,100000428,'0'),(2728,100000429,'1'),(2729,100000429,'0'),(2730,100000430,'1'),(2731,100000430,'0'),(2732,100000431,'1'),(2733,100000431,'0'),(2734,100000432,'1'),(2735,100000432,'0'),(2736,100000433,'1'),(2737,100000433,'0'),(2738,100000434,'1'),(2739,100000434,'0'),(2740,100000435,'1'),(2741,100000435,'0'),(2742,100000436,'1'),(2743,100000436,'0'),(2744,100000437,'1'),(2745,100000437,'0'),(2746,100000438,'1'),(2747,100000438,'0'),(2748,100000439,'1'),(2749,100000439,'0'),(2750,100000440,'1'),(2751,100000440,'0'),(2752,100000441,'1'),(2753,100000441,'0'),(2754,100000442,'1'),(2755,100000442,'0'),(2756,100000443,'1'),(2757,100000443,'0'),(2758,100000444,'1'),(2759,100000444,'0'),(2760,100000445,'1'),(2761,100000445,'0'),(2762,100000446,'1'),(2763,100000446,'0'),(2764,100000447,'1'),(2765,100000447,'0'),(2766,100000448,'1'),(2767,100000448,'0'),(2768,100000449,'1'),(2769,100000449,'0'),(2770,100000450,'1'),(2771,100000450,'0'),(2772,100000451,'1'),(2773,100000451,'0'),(2774,100000452,'1'),(2775,100000452,'0'),(2776,100000453,'1'),(2777,100000453,'0'),(2778,100000454,'1'),(2779,100000454,'0'),(2780,100000455,'1'),(2781,100000455,'0'),(2782,100000456,'1'),(2783,100000456,'0'),(2784,100000457,'1'),(2785,100000457,'0'),(2786,100000458,'1'),(2787,100000458,'0'),(2788,100000459,'1'),(2789,100000459,'0'),(2790,100000460,'1'),(2791,100000460,'0'),(2792,100000461,'1'),(2793,100000461,'0'),(2794,100000462,'1'),(2795,100000462,'0'),(2796,100000463,'1'),(2797,100000463,'0'),(2798,100000464,'1'),(2799,100000464,'0'),(2800,100000465,'1'),(2801,100000465,'0'),(2802,100000466,'1'),(2803,100000466,'0'),(2804,100000467,'1'),(2805,100000467,'0'),(2806,100000468,'1'),(2807,100000468,'0'),(2808,100000469,'1'),(2809,100000469,'0'),(2810,100000470,'1'),(2811,100000470,'0'),(2812,100000471,'1'),(2813,100000471,'0'),(2814,100000472,'1'),(2815,100000472,'0'),(2816,100000473,'1'),(2817,100000473,'0'),(2818,100000474,'1'),(2819,100000474,'0'),(2820,100000475,'1'),(2821,100000475,'0'),(2822,100000476,'1'),(2823,100000476,'0'),(2824,100000477,'1'),(2825,100000477,'0'),(2826,100000478,'1'),(2827,100000478,'0'),(2828,100000479,'1'),(2829,100000479,'0'),(2830,100000480,'1'),(2831,100000480,'0'),(2832,100000481,'1'),(2833,100000481,'0'),(2834,100000482,'1'),(2835,100000482,'0'),(2836,100000483,'1'),(2837,100000483,'0'),(2838,100000484,'1'),(2839,100000484,'0'),(2840,100000485,'1'),(2841,100000485,'0'),(2842,100000486,'1'),(2843,100000486,'0'),(2844,100000487,'1'),(2845,100000487,'0'),(2846,100000488,'1'),(2847,100000488,'0'),(2848,100000489,'1'),(2849,100000489,'0'),(2850,100000490,'1'),(2851,100000490,'0'),(2852,100000491,'1'),(2853,100000491,'0'),(2854,100000492,'1'),(2855,100000492,'0'),(2856,100000493,'1'),(2857,100000493,'0'),(2858,100000494,'1'),(2859,100000494,'0'),(2860,100000495,'1'),(2861,100000495,'0'),(2862,100000496,'1'),(2863,100000496,'0'),(2864,100000497,'1'),(2865,100000497,'0'),(2866,100000498,'1'),(2867,100000498,'0'),(2868,100000499,'1'),(2869,100000499,'0'),(2870,100000500,'1'),(2871,100000500,'0'),(2872,100000101,'1'),(2873,100000101,'0'),(2874,100000285,'1'),(2875,100000285,'0'),(2876,100000286,'1'),(2877,100000286,'0'),(2878,100000287,'1'),(2879,100000287,'0'),(2880,100000116,'1'),(2881,100000116,'0'),(2882,100000118,'1'),(2883,100000118,'0'),(2886,100000124,'1'),(2887,100000124,'0'),(2888,100000125,'1'),(2889,100000125,'0'),(2890,100000126,'1'),(2891,100000126,'0'),(2892,100000151,'1'),(2893,100000151,'0'),(2894,100000158,'1'),(2895,100000158,'0'),(2896,100000170,'1'),(2897,100000170,'0'),(2898,100000211,'1'),(2899,100000211,'0'),(2900,100000235,'1'),(2901,100000235,'0'),(2902,100000241,'1'),(2903,100000241,'0'),(2904,100000258,'1'),(2905,100000258,'0'),(2906,100000268,'1'),(2907,100000268,'0'),(2908,100000291,'1'),(2909,100000291,'0'),(2910,100000292,'1'),(2911,100000292,'0'),(2912,100000293,'1'),(2913,100000293,'0'),(2914,100000298,'1'),(2915,100000298,'0'),(2916,100000299,'1'),(2917,100000299,'0'),(2918,100000308,'1'),(2919,100000308,'0'),(2920,100000310,'1'),(2921,100000310,'0'),(2922,100000314,'1'),(2923,100000314,'0'),(2924,100000315,'1'),(2925,100000315,'0'),(2926,100000354,'1'),(2927,100000354,'0'),(2928,100000358,'1'),(2929,100000358,'0'),(2930,100000367,'1'),(2931,100000367,'0'),(2932,100000368,'1'),(2933,100000368,'0'),(2934,100000302,'1'),(2935,100000302,'0'),(2936,100000301,'1'),(2937,100000301,'0'),(2938,100000161,'1'),(2939,100000161,'0'),(2940,100000146,'1'),(2941,100000146,'0'),(2942,100000383,'1'),(2943,100000383,'0'),(2944,100000384,'1'),(2945,100000384,'0'),(2946,100000390,'1'),(2947,100000390,'0'),(2948,100000391,'1'),(2949,100000391,'0'),(2950,100000392,'1'),(2951,100000392,'0'),(2952,100000393,'1'),(2953,100000393,'0'),(2954,100000394,'1'),(2955,100000394,'0'),(2956,100000395,'1'),(2957,100000395,'0'),(2958,100000396,'1'),(2959,100000396,'0'),(2960,100000397,'1'),(2961,100000397,'0'),(2962,100000398,'1'),(2963,100000398,'0'),(2964,100000399,'1'),(2965,100000399,'0'),(2966,100000400,'1'),(2967,100000400,'0'),(2968,100000401,'1'),(2969,100000401,'0'),(2970,100000402,'1'),(2971,100000402,'0'),(2972,100000403,'1'),(2973,100000403,'0'),(2974,100000404,'1'),(2975,100000404,'0'),(2976,100000405,'1'),(2977,100000405,'0'),(2978,100000406,'1'),(2979,100000406,'0'),(2980,100000407,'1'),(2981,100000407,'0'),(2982,100000408,'1'),(2983,100000408,'0'),(2984,100000409,'1'),(2985,100000409,'0'),(2986,100000410,'1'),(2987,100000410,'0'),(2988,100000411,'1'),(2989,100000411,'0'),(2990,100000412,'1'),(2991,100000412,'0'),(2992,100000413,'1'),(2993,100000413,'0'),(2994,100000382,'1'),(2995,100000382,'0'),(2996,100000385,'1'),(2997,100000385,'0'),(2998,100000386,'1'),(2999,100000386,'0'),(3000,100000387,'1'),(3001,100000387,'0'),(3002,100000388,'1'),(3003,100000388,'0'),(3004,100000389,'1'),(3005,100000389,'0'),(3006,100000414,'1'),(3007,100000414,'0'),(3008,100000415,'1'),(3009,100000415,'0'),(3010,100000416,'1'),(3011,100000416,'0'),(3012,100000417,'1'),(3013,100000417,'0'),(3014,100000418,'1'),(3015,100000418,'0'),(3016,100000419,'1'),(3017,100000419,'0'),(3018,100000420,'1'),(3019,100000420,'0'),(3020,100000421,'1'),(3021,100000421,'0'),(3022,100000422,'1'),(3023,100000422,'0'),(3024,100000423,'1'),(3025,100000423,'0'),(3026,100000197,'1'),(3027,100000197,'0'),(3028,100000501,'1'),(3029,100000501,'0'); +/*!40000 ALTER TABLE `nivel_acesso_permitido` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `notificacao` +-- + +DROP TABLE IF EXISTS `notificacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `notificacao` ( + `id_notificacao` int(11) NOT NULL, + `id_procedimento` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `dth_geracao` datetime NOT NULL, + `id_atividade_confirmacao` int(11) DEFAULT NULL, + PRIMARY KEY (`id_notificacao`), + KEY `fk_notificacao_unidade` (`id_unidade`), + KEY `fk_notificacao_usuario` (`id_usuario`), + KEY `fk_notificacao_procedimento` (`id_procedimento`), + KEY `fk_notificacao_atividade_confi` (`id_atividade_confirmacao`), + CONSTRAINT `fk_notificacao_atividade_confi` FOREIGN KEY (`id_atividade_confirmacao`) REFERENCES `atividade` (`id_atividade`), + CONSTRAINT `fk_notificacao_procedimento` FOREIGN KEY (`id_procedimento`) REFERENCES `procedimento` (`id_procedimento`), + CONSTRAINT `fk_notificacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_notificacao_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `notificacao` +-- + +LOCK TABLES `notificacao` WRITE; +/*!40000 ALTER TABLE `notificacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `notificacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `novidade` +-- + +DROP TABLE IF EXISTS `novidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `novidade` ( + `id_novidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `titulo` varchar(50) NOT NULL, + `descricao` longtext NOT NULL, + `dth_liberacao` datetime DEFAULT NULL, + PRIMARY KEY (`id_novidade`), + KEY `fk_novidade_usuario` (`id_usuario`), + CONSTRAINT `fk_novidade_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `novidade` +-- + +LOCK TABLES `novidade` WRITE; +/*!40000 ALTER TABLE `novidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `novidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `numeracao` +-- + +DROP TABLE IF EXISTS `numeracao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `numeracao` ( + `id_numeracao` int(11) NOT NULL, + `sequencial` int(11) NOT NULL, + `ano` int(11) DEFAULT NULL, + `id_serie` int(11) NOT NULL, + `id_orgao` int(11) DEFAULT NULL, + `id_unidade` int(11) DEFAULT NULL, + PRIMARY KEY (`id_numeracao`), + UNIQUE KEY `ak_numeracao` (`ano`,`id_serie`,`id_orgao`,`id_unidade`), + KEY `fk_numeracao_serie` (`id_serie`), + KEY `fk_numeracao_orgao` (`id_orgao`), + KEY `fk_numeracao_unidade` (`id_unidade`), + CONSTRAINT `fk_numeracao_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_numeracao_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_numeracao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `numeracao` +-- + +LOCK TABLES `numeracao` WRITE; +/*!40000 ALTER TABLE `numeracao` DISABLE KEYS */; +/*!40000 ALTER TABLE `numeracao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `observacao` +-- + +DROP TABLE IF EXISTS `observacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `observacao` ( + `id_observacao` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `descricao` longtext NOT NULL, + `idx_observacao` longtext, + PRIMARY KEY (`id_observacao`), + UNIQUE KEY `ak1_observacao` (`id_unidade`,`id_protocolo`), + KEY `fk_observacao_protocolo` (`id_protocolo`), + KEY `fk_observacao_unidade` (`id_unidade`), + CONSTRAINT `fk_observacao_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_observacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `observacao` +-- + +LOCK TABLES `observacao` WRITE; +/*!40000 ALTER TABLE `observacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `observacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `operacao_servico` +-- + +DROP TABLE IF EXISTS `operacao_servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `operacao_servico` ( + `id_operacao_servico` int(11) NOT NULL, + `sta_operacao_servico` int(11) NOT NULL, + `id_tipo_procedimento` int(11) DEFAULT NULL, + `id_serie` int(11) DEFAULT NULL, + `id_unidade` int(11) DEFAULT NULL, + `id_servico` int(11) DEFAULT NULL, + PRIMARY KEY (`id_operacao_servico`), + KEY `fk_oper_serv_serie` (`id_serie`), + KEY `fk_oper_serv_servico` (`id_servico`), + KEY `fk_oper_serv_tipo_proc` (`id_tipo_procedimento`), + KEY `fk_oper_serv_unidade` (`id_unidade`), + CONSTRAINT `fk_oper_serv_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_oper_serv_servico` FOREIGN KEY (`id_servico`) REFERENCES `servico` (`id_servico`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_oper_serv_tipo_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_oper_serv_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `operacao_servico` +-- + +LOCK TABLES `operacao_servico` WRITE; +/*!40000 ALTER TABLE `operacao_servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `operacao_servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ordenador_despesa` +-- + +DROP TABLE IF EXISTS `ordenador_despesa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ordenador_despesa` ( + `id_ordenador_despesa` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `sin_padrao` char(1) NOT NULL, + PRIMARY KEY (`id_ordenador_despesa`), + KEY `fk_ordenador_despesa_orgao` (`id_orgao`), + KEY `fk_ordenador_despesa_unidade` (`id_unidade`), + KEY `fk_ordenador_despesa_usuario` (`id_usuario`), + CONSTRAINT `fk_ordenador_despesa_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ordenador_despesa_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ordenador_despesa_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ordenador_despesa` +-- + +LOCK TABLES `ordenador_despesa` WRITE; +/*!40000 ALTER TABLE `ordenador_despesa` DISABLE KEYS */; +/*!40000 ALTER TABLE `ordenador_despesa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `orgao` +-- + +DROP TABLE IF EXISTS `orgao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orgao` ( + `id_orgao` int(11) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `timbre` longtext, + `sin_envio_processo` char(1) NOT NULL, + `numeracao` varchar(250) DEFAULT NULL, + `servidor_corretor_ortografico` varchar(250) DEFAULT NULL, + `sta_corretor_ortografico` char(1) NOT NULL, + `sin_publicacao` char(1) NOT NULL, + `codigo_sei` varchar(10) DEFAULT NULL, + `idx_orgao` varchar(500) DEFAULT NULL, + `id_contato` int(11) NOT NULL, + `sin_federacao_envio` char(1) NOT NULL, + `sin_federacao_recebimento` char(1) NOT NULL, + `id_unidade` int(11) DEFAULT NULL, + `id_orgao_federacao` varchar(26) DEFAULT NULL, + PRIMARY KEY (`id_orgao`), + KEY `fk_orgao_contato` (`id_contato`), + KEY `fk_orgao_unidade` (`id_unidade`), + KEY `fk_orgao_orgao_federacao` (`id_orgao_federacao`), + CONSTRAINT `fk_orgao_contato` FOREIGN KEY (`id_contato`) REFERENCES `contato` (`id_contato`), + CONSTRAINT `fk_orgao_orgao_federacao` FOREIGN KEY (`id_orgao_federacao`) REFERENCES `orgao_federacao` (`id_orgao_federacao`), + CONSTRAINT `fk_orgao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orgao` +-- + +LOCK TABLES `orgao` WRITE; +/*!40000 ALTER TABLE `orgao` DISABLE KEYS */; +INSERT INTO `orgao` VALUES (0,'ABC','ABC','S','iVBORw0KGgoAAAANSUhEUgAAAFcAAABWCAIAAAA19p2eAAAABnRSTlMA/wD/AP83WBt9AAAACXBIWXMAAC4jAAAuIwF4pT92AAAgAElEQVR4nO18Z5gVVdburlx1cg7dp3Nuco6iSFIQFIw4ihnToGNGHXMcZ8QwjoOOYcSIIEgQFFCC5NB003TuPp27T86Vw74/dBS1Acfhm/s9z73r36mnaq93vWftvddea1UhEELw/7yg/7cB/K+Q/zYLzUdXJ2KBU9zQ07qnv7P6v4bnO/mvspBMJmDXA721r9RVbQHg5zNRUZSaQ5u55j8k299m2cx/E9h/jwVB4A9vWITqy0nYkz5+bU3VXkkSAQCKogAAouHuo7v+zrCrEdEfiBNt+x78rwEDZ5wFWZZPstzC5uN7DdrBjJILhTabwxdp/7xlz33t/qYDW26KRsMtX05R+Y5YhrEZ0oqsMlisrnrHgCpURTmzmMEZZ6Gt6s2ja8+pr94a7G088Xp7Sy3at9TqGRZNAiD4ESoHaAoJe+t2LsyzfnR4xzJZCJv1YobVJAWxGqRQxis03qxp6k8GadxetX9L/drCvp7WMwsbP7PDxVhrhXnfUf83avv6FuLSrNwyjR5sMur6W9ZQ6U6RHI9A3kjFenkTgEoy2ppn7zn+qNVx95cqZ8JhFABjWs420h1xttzpHPrNqjsnzf1TLBqMt77el8zxKi9jhrP1OiTD8mcW9plkIRGPIYGXe60XZFHfaMAjSSrf9iQwjDsWN3upXYRrbGcMuC28JOOJjIbhIk21Zj5nCjsJrrUtZigyckEA6X5uGBKpcedkR/ji7pbPWnaGEnKFTf7Uazovw19QgLzbotxKHb8XlH11BpGfyRkRDrSZrI6oUGDDj/Wygz30IQQ39qd9XkPj6oPca99GjTpRzrSKaBGAKpA7FA5h9jAHcch9ZHB42C/3YSqc1sGeZ7L5EPbo/mPyoMFPNbRbult2Cbp5cnQrjqbTco6ZaNWYUZFQ3xlEfiZZkHtejimjLOr6HvnCbP0RkYuGlcmEVL1oXdeLffQXAb6xtfbjXXEJLQZQdpr2sJ/pqkx4y21AF0dBddBuTY9haB2JH2gtY9mM1UKVYKQ794JCRzMvAIk5Jwtb2y3MQsQOBumK9Ww7g8jPGAupZDyqjLLLH0j02WnBbEKORaQRmtB6y5etdV4rHpdCELlrfzpslYMxDFeblChqqaFeHWtzFyvSbEFeZSjObVnf9OJHWzc8d+xIKzfGqa2+buPbH3z+ot4x6vDxdFNrNMCWv7+nNQzPJ8QDDR1qR1fHmQL/W9aFQE+dIrEcx+v1epZNG42WdCqWTkVs4jscPeP9XfWoGrhi4lyPoeXpTalOu5Hs5aUcPUQBl6Mbjnk1Tc1yNEVfNdfaiJoyIwAw/5ZUz5curEoT9LFnb3i25tD+x3asn15YNMFWXYOSX+wvXmSviJUPWr9n08eGw7bDHy+YfOOxg4+8WDvxg0VPCIka0jxETtbgpuFK8qi3ZK7BaPp3LfotvpDo2UK1TY107UpVL4j2HkhWXRDrr6LDT6SRMa+tP/oOy/dLOgjlZKR+a0rG47JqwoluVjPgpS1hn90G5BaxE7f5ib+Os0EEAABcPkW7iAcbdMNLAwfrjhUOGWGLoR929i5LZ2+KWXIsrXsdzl2NDUPc3wANLpecG7Z+BJSxB9DeLesfUPtfD9f9he35KF7/R2P4Vp7nfoNFv4UFlRrWwc0twl+IEtea2Dej5PUm/r00Pn1TTe0qUgMqFBTfc7sbL/3KK1kIRINA0bjxDroh1cHon93brTN0sh8btjipxiLDv4aEBTelAYKgO3Ejte744aU3T5vzxoSb1K4U76Je7YP+6qX7ej6wZY11BjksJv4V6N7obMIS0p/rWptDhRRsl1RdFvVNm7pU07T/EguYWEtjET87t4h4NYZfZhLXxuBZSqb+ZQ6DBApJdBse2p7BJEEiIqJGIHhCITpZ2aefiKEPjk7pulFrAH9tvPU7R/hO7G4ZuZQjv9blGQ4ihN1rUjKJxMJCba6EdeLaC4pvT5+AKgGflVBMBFBgzKlTdVgvpXuq5lha9vqYbW3ynVZhOYoiJwd+RlmA9GAWFhuwTn/mgkLyrRgyQw+r1zeaVF6lWzMAAkgggECxjAJUCEnMjmlnG8FzHurusY7CgozwiX6dl/bn6382bPH1aYmG0kamJN9/vH1zWthb6nDq+MSQaEYLC93jnJ/UyAruVqwkQACAQDUSKoM1cRBJbW8Tb7aI7yf1d6iqOiDmM88CItZb0KoUMsGANralzyugPkqqQ7vFY3hCFgsMGK8SYQnlFLbSJObqfIT4yjjn3UNzS7LdohxAjiSMSezv422/PGyYbQp+ZcZ4gNbLYVU/4fIZDxzsEwYZLTcNtb841HJdb/zTZNrPBvC0AlAEyyiAQAGEEEebEjMtyvokvcjCvoRhv8Wi38QCU5kA51jVdWl8JirVP7QxVwp/FVVKsYwCECjbSXaoGRE1PKNgvLrIaLYaVVmWVSma42rV1uhX5zDdPmbAkUuvybAmjVulnzi0prWtrcxUdFZxz7pO5YsA9CGePzCcISaKuTo8IWl6nGpn8ZQsOclezt8Qn0mmVyUMd6vqf2VdgBCqfJdR2vDS/kq2592lu2zrRVl4UUntr1dMOBGR8IRsPBDjKkwaAvCw+EafFg83SpKgYryyiyIF9I3xtpMNbjCq1KKMvZ7UhQ4eaHh1RFGwL2HvUzObaHlZX+BJwITdOrKPl20kERNFH4NKEAHgzZi0omH98oYsY+ZNNpP+DSxgjz/++K+8tautKtD2Rc2hLXRy+WdNw5dzXV/W0T24oAeIuYVdxIPdqpbOYiCBQBKleniAIZqXuUyHFTq8BBLLdTTCN00r8/RfjbQCABAIcE7WCfIEMpmjFxEEoSgAADCXKx1rdVIzkTUno0OACB0TnUxtCwg7ECIkiAUGpjEFUJRpyygOSrZTZEDM6LGuNNEJpHm545XuF9qDFj6wAVIler0BgF+1WCKnzr5qmtrZVptKRdWOh3jqPDN6BFV725Izbvt6UxLBNQbD4xJiJhbtDDg4kIdhLw4mAhYjpDEb0IabiPM9FpcFChJGUy3WfSlyF7PwQseEoZmpWckSmgeA5jGzohEUKlBy3GaQCAICADo3Mtlv6zO/TzapxTqdgySZQKDzsTASwQiyT0A0KNtJLK2gnCLm6xFJgziCSprK4DdRzFXjhxjEz+PkNWa8MRDmfSMe0jFMbtHI/4iFULBXOlLCaQW98lwncTCRUhXdpDXVG99UdGRAkB0kKkAxh3m4Uxds76g1IxNybFcMj4dSbojqMEIv8gkEwXg2UpZVH/6n0bmISxSYN3TP3No3uVGoVPQOCBCMT6mMCdVUhusZZamZ7dsxzbUL3a31baWt16uR6HAApVAkzCmeDUm+OiEKBgRPyKoOQzSgkQgRFmUXjagQQIiZ8M+G5+rNPh2/Lk1dZCDCPuKzPvnCIeev/I9YAAB8u+0jm7rOhawLCiN/9xU5z970Xq+nb5CJbs8gvApQBCAgT5D8Lr1qxBf2R4c6vJKSqMyzQoAAlFZkQdQCg4d3+GHxszW3HIbTIYpXyt1hEYkDegjN3VBCvNAAgxI2Vp/eLzlkxoKLyfm21fcMeofMpI7sLzbp6H29huUMb4lwLE3CjIwKKkAQLCljrCIU6DUG44sNpgNRycM8RIdnjJkMECKPWpWWvQFtfs7ga/MLK05t4+lXR6cpBbnaBu7325sMTU7plX5P2EUyLWmUUzU9LvkYjcH8Th3EESwpr1F0D6HSGxwlcFFRTujoVgG2lI4LLK1/cEH1Z3G2xMCFjdG2lybbq68pNRDoOT761vMn6BF5ikPd/vtpd7lDhlSfTuZ2R2ZP2b3p48j8IZO6NSI6ztdaoSTlqAQFha80qQZCtpGyi1L1OBEVUVEDkiY5KABhiCr1El9Z0X0NmRsEbJiO/cRqdZ3WxtP7gigI29b9Kd/WdO+Wo/u7sMwoK+3PqDSm2im6LSO5aVTWqG7OY1Erc+QhDq7cJNg1xSUgSieWKFLEct81+/8aJgv1UvLzaUYbJo35Gluo73aZjctbVDehAARENTIX4y4rNb3flNEAevz2MU9sqnmhxwoxYgz46h+T/hjcpLohULPUEAqDgKzWTA3tRBVjZUOa7KaZ5oxKIpDEZA91FicuHTLKbejUxABLzSFNg8dMWXhaFk5/pqRo2kMfBpnmRtkm5GuQQIiQSDvwMjw1tISrzJXzKME5VNXHUMmPS/tJtVNnl1EMgPAcLlJYtmj/myUwMYzo3RMRNzfzehI3ssI+oX+WYe2rY+t8uiCJShlV70/l7A8NiylTsgjy86q2rztSZWrGbWIa00Pm7XznsxmLuUdQRzuOA6A3aGWFPFmYJL3BqE+NMVRDvq7tgHqEtrdw6JGIygB/kB/mMzN48m19/t9Oa+Cv8gUAwPHqXc21mz6u+6QsR6p0SU5JdAsAdmOin5D8BBVCzQCRAYhRGl6gkkUyWaz04agy2HvxgQ8l0vRMQfyeGUMmv767WjRPNO64f8g/JEh+0TX1QHRkF+cVNcKIccWmzrPch2Znfd2SLnjh8DVtukl/zI0+Pn/ilNe/3Q19BUr16vE3PvRPryGFlsTkkqhUlJLdEEEAjGAa4lOJQoUqlBSPFqYQApo8hlhP6qyUPPLcuffa7I4zwEKHv47vOEft5aUqUvQTSgdu5VEMgCihoXkqWaSQRTJVrBiKZI9PwzAVABAIkIGkccb2lVEi3x5vs+jIBW7x7S75hTHPUbjyaPXd7eTom4j6d7lCmWAQAOG/dnVElc4mNz4+8rU1bVP/2XbVLQXqu706RJXDBt9Z+Ib7hj590aHBKo4CAFAFmmJiUVQuiUklUak4JhWlFQcALICsVSMLFapQNp8j9PEjRkzfptPp/lMWWJb98v0LSxz7hOcsWgrdN0I795KUtULy5qkErv2yxKRpSGsbfevex3ays96pjFtd3qt2sgat5+Oz7/hr7cLPuBsgguFipvlSW2uMz3Dc4u3RiDn/xBFIKfVU0R/tdPK2Yy+VkPzqC3x/3d7wd6HsuZy7GpMN/0xmD2AGAKikWWNSeS93QVtiXhBGKyXyWo0jH5k04xaCIE9t42n2iEO7PvR/NWpwWW6vOJt5IIHpNblfN6up/PHq3K9qjLwwwOPtHVRVrHK7cjGiqWkVzQiSQer75Jw7Hjx072p+MUSwkkxL1UXmglzfjOElIQH8jAIAgESalna9XBfNf2XIvSkJRlMcrwIIkKdbH7ilIqYT5V8qJXllmiH69JT2V65qnyqqsSKZX8T/o2aUR/vntyuGdXeepn5xUl+IxyL9VfdjONYXM0NNzrJGOjuOeOke5XnLZjvz2DyvRqAWTpjtiS3Ij8ysTBn0KgAAQqS1jZr/zev1+NmDMw21hgpTouvvE+5b6T9vvXjdDypHaD27bhxN03RdR9/I9UmVGMBjEU19uei2mmj5p71XcIy1Qumvowv+4HxGUHcuj/q+u4fh5XOt8QX5kbkVCadNDvipzhvtql5Vbk5fvTlP0PAV58/IcYuYcDQoTZl0wdMYhv0bLHS17Ex2rwtFEQBkt5VDxaatB0Od6EiP8O15FQn1ecs6j+6puV4N/34+mzhxljO+ID8yyMT1CL4LqjYu0Tc9dOHEaz86gNKH5+V9fUvzOxBBTtCqrR0SvvuwiONEr0SwuoEXMEaKbDtr/oKv/3ZLnv62maMuent3A2r4fNL8C7ZXTnclLi6IzK5I2izfu0aok2y/wQ4xAJckr9pREGB0RDf7zFhHee4gCAiXTSNBxD74Waen4JeKBt4ppUwXldlQSPY4LGo0iUtYSTuV9Wa8bZDfuNfIPHF34KIXgbKx/7m5Xg1DAAApHbWK9ayu89xu7eSR2RqKN3Hk1429++L42plvXbn3dUj95FQDEXThfsAbcgeEQHBxWWcFAPCk46Xj1y6pXLG7d0l2TXenokuY8gNiyYHzairLhROXpHA36b/JgUCI3pFctC2v36ADKEAg8s9geNuot8IJShPyVaqcZswD2jvwulA84qq07VHOeN2R8I2t3KKu9OimjAwgbPAZth+n3mgwIEtSl/Xw934RQNUfoUAApuamvuo7C4HweBr73VFdsamxnc3rpyp/qYI3uAdUDQC4o1CeivU42V4jH/08duk0955vEuTN9UYUQADAlr6zaAqeSEGkj2hbbEdFiN2XWvxFVqfZiIiqaiJkFxWDppr4dYrlMg7mMEVPGc0DH+pPtjoiZcPmCjDbbqPzvLIQ/TYDRMnDoBn5juqUbS1af4RQbkld3cXeuTmAaN8DwhToQpR+tORKqnXnospZsHlO4d41XbNOZu0AWiEsUwOXDvVuXTzx0KJSFcMVynQoPny0/uAD5ubNl5eNkvwHwsNPmFsgFiBabrLjKQS/P3XTobxmh1XMYTQzwRxPSm5qGGFr6+299rPdaWZRfmH5yfSedI8wGC22nGmJtnei7etur9Y1hxGMVVQ9/s4IcxmC+r+h9/fgwrXpG9u5278KfkcEw4sc7lYpQ5eq6winQgo52nF8f3jEr2cBFTPnZ6MlbiuG4bU9UZ4wAgD2hUaN8TbGZDSWTB2XTX4uT1a+hx0PE02L7WQEw+9L3rXH2wAMqKgSYVE14JigMi2ZmtqW2ztDIl0y/uyLT6H3VBF0Qel4gO2J+9/TkG2CKFKdEkCRcLnpz0mly0libfLtruicKzK3fQJkNPTmTLeDVCOiHQBwKCTN+BZD0GyzEohjA2zvJ8pwrTcEdQGFhKROpY0vB4ylR7swqIZ4zZoKxsx5bZmcsc6ae/ry3tsSl3Ea4EwyCSBEUzGscbGd7seQ+xNLgoVVkJSyGMzPYmlZIVG+xEi3ZSJWBmhwQsUIgiBOxf6pIR5obnxj8zqSwACAYg4DcYQMCi3lBiBqqh5f3uoJ5DkS8zJ/aM5cty3EoCqvkgCA+bnEqxVpR7oLqgokdAAAkk+Y5OQvxzdKySUj7EeuzH+2MP5DYv7lA4FbjtGP+M0xcx4AICMb9AQ3EXZ9PNXkkqIAJyQZJKJU3c12pgtD7k4+1Oo52kogkgYAwKOSlMWgaVnyMkKeDk/IWEbRiwNvkL+WhXAmvoKxhkSZKzZgrCpl06gMAQCKjQSKJqDYnz6XDg4mozO5+xrTF++KUahMsLGpuYa5FS6cIACGAkUEAJRQwtrpxoW2WKnQeeL4LkwssOk8TnscM/6QHWvWF0Lsx79Oh/G8wrhpMLXcN9UmIbKIIaD+NovBj4ElqX82G7dYslBWUc0EERZlJ6nSmOxm6Na0xmCorMke2uvynNrMU80IjsvkpHfgCZnu4FQrSfVwrMmk6jFDTTI9zgYQIOQbmoL8w7XuFSOaIM/POEBxVEzW2x4/Gri/OpAmPRzhMsl9BQBbfkHx2LL8Mleo9IOfVNzbMNeyvV0P7+gO8ypCm+BAacJ8Q0836/2c89S+ebgVzyPkiFFBYDMm3ZYKUs6J2QVrd/VFvQyQNUzSIIYgAOBJCU/KCAB8iYFKSuVKFYQQQU6agzyVL3S0HHbY3Z4kJnlpiIH0KCsRkzQcUawkogFEhlRnRrZSiKgK8XzjRbwwXLLIAVSRwiK4Mls+C+89GqscYzt2DPV+cqxfURQKx1zYz9tQvuA9+2B2K507IAUAgHHO6sPhQRfTXSP0vEbQeXS3EkSE69MJC44Dp9Ugji0wIoKKKFBlMFTUyH4eFTWNwfCohGjwVmsBjlvbWptOYelJWWisWhM7NN8or79mkJ4bZtHVpalOTnbTGKuqFkIjUERQhSIjRMEwXjYZ9EcbxhoWkGZGckrNw/Hony8cdkWZabN/woV5W1SC2ditXPXB/uy3/BHp5xoheip/xGRuov1gfbDk0fOGPDS9wpLuGeM8BrPUbqsnkBwryBgEwIppioWU3TSkUFTWUAniUUmxkkKBfgQ033AWyDPsCOyd29XeeDItA7OQiPbFg0dthQt1lrJLKnunh/pSUxyYoGJxCQAAFAhpVHZSTEsakOgleUYNUA67qb2juLebnObdc1hXfvVb39xRpe2TZw631FnFjlbMtTKTJentGZ3zFDb/UqbrNxyKDY+YSxZ81nLdps6kMXtm1u7qow6gZllM5OZGtboL0VKACIlESsaTMkQQ2U0pNpLs41FZuyq/BqZ3Iyjmzh2f7v5EFIV/g4XO2vec4qu4WKWgzn7p3N8PPmd6IMSXGlFelW0kokGmndW1s4iiTVFsbVEeJ2hZEqwGqbHOc2neJgDQ9bxnlkOeywT+1nDV0tJlJ652vxRM+L6Ugmg/6eIj5PSDw95Y1nTz9XSTi1CPYjk6ITDSVMOzWRShyLIaI9E14fTksjw6IuNhEUDAVRipLg5LyXyZKa9DIpjLusQFPDoUKmE0vjLUO7A7DFyV8eRPFoy/C7RvFyM7HEbOZPMMtpYMDYXUvv5Ys/zYseSIVnYwqxqyoabF1tG6QSK5t603y2gqzE1kWbu2dI1No94N87JGunVPHrQvrvikJ6jvAicN3WYbotflKvM9ykF/kKMt/7oMH85+tC5eHIoMff/aszBV+SJCL3K+PZY+wqUcJGFAUbQhyO1Jyrp0m12HdLGoZiQwVjXVJM7xcIkjUs8Ey3iMHpvTng7sDMlnjbpwndU+cPBystoUYjSZaec5Ya7IgDZy4V0uK/R4h+eayyfayXRVrxEBoqDZErpVJSZEhpKsblcRJgMnlMXbP0RHT2v/sn/GtqbAt92pZjJnb2vxG2c/sberPILkDKAJwvNs3DPzx5U7dMuqEwKhBwAgAFzJvHa27+ijR+/vMpe01x79oEOTFf5vI/8Y+QhD8xhFoTVNea9dZkWpxmNfgDGH4xIiayObA7PGjt3VKwQrdbME9LqiAzJwWEauHDlpEY6f1B9PtUc4nFljzrpCtN/Jm26EEMD4xnCq7rGujhiJNarQg4K1XlwxYBqNHkjwiqh10KospXx7qHHc0SHMgWNEbkMSvDGUv7y86MbtT7wz8YEp6Oe/1GLJ9LpNTCyZauqPzTfHEaihirjE9tSlJV/fte/pf5xjvcva8ZmQ06vPvbPgb+o61eAnrPoAQ8jbqqOtZRSiQsWIRwi7M6jILvrIMN8rnnCc5Zg+7voC7dvY71d1TCAoI4afag0+TdREUtSQ0fMOdUtv7fcytlF8vCWeo//rxd5tE2wdE3yRAgJjFaqLF7MZRFBbelWN1SwI2l9LvDr+ab0USlHWcS6ywqlvxsdfsvXl+4a8/ee8JTax/UQVcaPv4TbzkxsOz/gi+q5UWq7uXTvqMq8+cuXu1yTaWe4yF1lIjTIMh9tn5Gz6Yr9NCWI4hYsqEbCRZD8v+nR4VPoq1R0YbxTydBABdEs6M9KiEvii/dyD3Zs7FM7j8Z7azF/V3cXYK5fX71i/gi9zTUC1Dl1dyj/D/daxhMoDqdJEt3OooKlGPENCi4KiAOZPEFSMf3PEndcdfHXEZtQj9A820NcP8y3Z88p497Z1k6+uS5Sv655xKDIkgXo1nEQldn26Z67vy4vzNiNAe6rqVgQMemk49my9MHu1P4xbXETL61Meunp30ViXOK9bkDUJQXUWIaEZaKJfwFNyIJtR9DjZJ+AxiS81oqKKRUWxQF+Mu99Z8meaps8ACyMcAh0RogLYYunCk2pyqovs4kQriSpQV59WzYRmwPCElI/xWggRAbDnKe4sRWuofWnog3c0/bXPUnKdL3LLrFEv1u3+Jnrh1h1zyuiD5xXsv73iA6MWQlQFkkxAztofGnH/3rsx4GnWFd/sjt143ujlTbuqzYUOuX3lpMVLD7r8mMFl1owICKZ4FKPO8WIfxDS6g02c6yJCIp5SUAXKdpII8kRUlt00hPCeylkMM3CvxL/HgiLLfOzgSE/OTlsKD0tkgAcIQFkVEqiqQzEAIAoghgANZleichPGkVqlV0MRWFYqALB/BXX94upXPmwRP3hpb4IVnpmonzc4b/IK8e3msR+hMKLgUcZdKHRmU3CPaF9oD7166dibPtq3sYPZvGxPVNOVoIffnXzXY4etu1Q7AKDDQqAAWFU0xPXFVSeeCEpZDKJAqpvjKk1Q0BAIiagEMVQx4UWiodzzqxp8Tl+njATqnXTjjUUxqk8gYpJiIWUnxZcaIQYggkjZjGoiiIikMVgpl1QCOJajoagGAMBxWFEuDDHWfjX5Yjvd0En7Eo7SnT38psagKMmLCrH6u87ykApEkCtKTVtunjyOiPTzYGdT79cxuluf24U7L3SvXDH+plv3ub5Rvk9MRqxEGgAYRmiSXdOblpwU0CDVwwt5Oo3GMEHFo6KYzQglhnzN9FhpQsevSadTp7Xx9L7Q31UTl6czuqPFQkvNuCyqk2ea0mI2ozhpujWTGa3DkpJsxPGM6suH8gaMqlR+SIehKFzVYf+4171s1MN93CfP192+hitaxZmBzbS8sdO0Ya+gAgRRtnSkybW7DisOiTbv2MtDxjEZXf/Hsa/n63toWpNVFP4LpqLDewkkux+DXnd3fwgjKdWAq2ZCzGLwlIzFJdlD0x1sOeCWTogWF00NCxW6vjZj2WkyPadhQVUVEPmwp+3AHf4C2W4x7o1J2TTGqnQnJ2YxqgFHeRWPSECDYr4hT+WRsJ7M+zH+21Fner47Xyawi44Mns6EXx+7mFdzV3XO/iYwKaIvfqBV1ig9AOAQyDvSxyOIWiLtP9+3Y0HO5ixDlMC1/DwJALhiWvOUrcMEEgcAAAR0mAlXALcb+5xZSD+nYmlF0+NMWwYV1MwoK9OS1gz4oSE5VzVZp/bWLrDvVBSp6D9kgc2kGUuZLWfSmKYVB+IGxUVRHVxmmJnqE/TVCanIYPo2InlpKipZo1HjTNmioci/WIgkiGu+LZUJDACgYcgWybm1ylGsZK5wfPBw5WsZE5bAvRHJIqu4DhecZMwkhkAEGAo1k1nJ8ko/YBhTzD7l99/fVQoRAAHotBAjAjiF9I8yjz7eExKKDNrMGFYAABIxSURBVAiETCOnmgjrVwHZRSs2QteQJkLi9ixLrZy7NLtgxqmNPC0LJrPVdParxbJcNmzOS+s+XtG1XcrTYbyKsYpYasQiguKkNCM+5nB8Ska2zkQIANA8GQAAIXLLxoIu4idNjRSnjqkSpx5HMMWcKpWpi3vc5qEZdYgR2aB1hTKrjFlRLOJWpeszjvkKSf7QrQbvmh78+n3Ll4oLANBuJWA7gLihGFOYdk5jMMlJZ4aZ6S5eYzAAISpA0UNrdvqJoivu+N0tJHma8hz4lT1uOEGUVIx6felfNly9bEb2aENIVYwE0CCOIqWKbeSG/qEJWZzCkyk0A6A1TwUAvLnLuYb/MVahWeXKXZHNK7oerE5QFSL7UIL8HR3XLp6x4JPho648d8HepmSO7t4Ue1tSQyD9nPnwXPexlUbpX8dwDNXentPmkXgAQIeZtKqYzEbX13dnRls1GlPsJJ6UNQZNTbADCNC4RMQlIiLOGDnl11AA/t2e+KkTzp464exD29/oD4RN7Jua+QI2dmzTXm3tOHuBTVjQH8kYoM2mHe/U31tXDKnv7V9wJHFTXcqmQHaMIJ4v8Gh2a2+x1y6bjKbvsmwoipGUKxnDoqjJd3tdJqppa3TUc+bD7xgM12fK57MkqWU5pH+Mb7nowOAuC0ECQEvY3hI7RFA8KujrkhBDUUGhEETTYyhErimauWTG1RXlp2nkOQ0L3+4/eNb4sSd7xps72Ji4PGq61iiu5+gxB+fFAhI51RiX2zEiVxVEcPWW4gxF/GC/RYXCJF47j0+Lvq9bRrbTJQLEz08cKrX9UJiBGKIoqGF1Zo7Czi5hty+4vZONBLS1OuI58+G3DYbrM+UL2AtGJJZ0dr2m5iQA0KdBdncyAkluqAVImkYglqBmT8V9+SOWnnPDjEnn/hK2KElHjzeMHzns17Lw5vGUO7u/NGfg8DvSX8/rlpgzb8WJBU7wLs1aEADzXaq8DydLlAc25Tbxht8didxUlzJCTZkqKOdIaY6uDpz/QuyyDseo7wqWkJOKkB/Kk4jVanq95/yN9jkAAMRwxc6GTQuxPZNv2sYn43CdHnv+e794fHbvrpXmbhotCuC+HNgr01iA93DCkryymWd3p7D5ntLLC0uGDgj76c01U3JPWaFTFOVwTS381z5vt9uv2dguSdKAzzg8lWb29QR1RRH1psBMZ5MIERELcE7tx3b1UPHPmM0ruv5Qn9DNyghPJt4uM0zfW/z8odJ7M3e2O0b/ULNVCH2K/3HSKhrVqX0f6kIEOWSaswwuXr+DntNfuXsOKj4aR3wK8ry57hLn/fH+fgKRA1iBTaZ6eCIuXWzRLhpWm9AmWJQ1VvvAhb9ddf4XWsl8C/XdT5Zlaxt+zER+n19AUfTTqvYndnSX6GWfw9rYF3k7ZON7W2dW+n45or/h69rw0O2NO1GkMsvYU+4augtELimOmzdTBUF0dFqkL8jwC7l/tlHv7PVsYxyaBvo0GaYbcVB0IbF3lvh5OAOr8UklWGbqyEGJeNxqtSz51H/INbMg3TQDbOtjKZGyKu2rD3L9LEkc3Iuujtlsg7nCi1Iwhno209mCJtMwOkTdC+xP+pwzhhQ0hdFv2mSPcwptzP8lEcFYfPbnPWlBfn56kaKqf99Rd9v6upsnlRj1up+wAAAYU+h9+3DPY43k0YZWmxzfwVkPJPByGBqc8/NOuZ6ItGhl3TZlwhfdtiEGamz20XJkqBs9Dqpo/NJM+hL+7x3Gx9pyrbJ87ahh/fGeAEoRQUEo1UZ2fLl0aKbSHMPVjm+JObkWZsHgrEQ8brFaf38ISDrbUvq9udaDF9Ff1O/rDvoO0H4WT0iKjUoVGPcGDB8pWRZzvPSytApBrI1gxvOjVe+USm9HjL/q8Ky9bFF3X+rqGefqdIYT0cqyfPFH1Ueh261EbYC7YkP3JxHTsvH6ieX5P9zz406JYdi784rNGr+OdT/R7wMAaDh14z75cEvXiYOmWfa2vXK0fC4h8RnCdn9NTis73uYsLytX+LsTT6dM83aVrkG8KoHuIuwH+5uGiQUIBEKxkWlOVeWSu5vioZTuI/HqAf12XSCPoXEFL+/QduMxSfFQAEE0A043p1EZwpr0qy2eGQfKPhxhsNyXGOZRhg25VYHUvYdGaAiOmXzb869/7uvWnzUZ3bPm0DbJCwAIUJ7Fx40dhPtKa2ThpEEn3vOTeKEwy/3GRApVJA3/fsZmSNP8TcH2/tB3PyGEiz6uOgSyVJ0V5IwmIZLEbPdUDXEXjPOnHtnvn70V86CCptgo1UIqZuKNPMcKLAQUjexiAYYCCNYFOo7Hc/rogfewGnKkgpjfr48qJKbRKJJRuUEmIV8nuym+xKCYCSmLVmPqih2G2fsqVh4cGlTxl1unBYENyR4uZw+BCLos4HrlqyM/EPHSl0deC36/BkOcBACUaeG/zR+K/LT28fOo6dLxg+7yJU680oPZZ69u74/EAADVze3reA8AwCAFPxx+zfRBfZg515+S79/sHz7p3vkT6RddWfnpNJaWUFamuni6LaMRCJZRrEWEkVD11YlWjvGhm/8gLhuS2QMTwUw6zbFsJp2mMqFBiW9fyfpLRwD/WoxgrFKWTAIniQoq08YCFDVUxVUDLrsZ0ceIhYYF3ilPPLK7JUau7ZDonLJbHS/ppRAAAGL4A7VYLJ4AALy3q/a+BubEeodRSn56QbbZ+JMpAwbs6JEVed67B78Uv98mKS78TMH9H3fct/G6ibwgln4a0VB8eckNpJQwqUE/MebJhnuFYN/VOdrNI1VC2JdIK3uOffnXgybeQck+HSJoqKheOTSxdFigLYofOk6IAB9kGaV1tOetzSAA9FPQKyIJigr/Ts0rzNnR0uy0S4NdUkWxPPqJ3DhBCgV6zUhgSRlPyhqDWRV5vqPs7qse2Vrbt+SwUuaJXK5bbsKTBpfhkWMPhMlChya03T7is8Ot1x0C8gkdU5gsrJwILh43QEvJABE0gRMfXz50GBIEACCaenv2K63JnAuyl1+24ksExZ6tkIvF/ce63JKoufPorfWlj7vuOqss+B5X/G4NqcS/8Yd1H4rOdJlRtZJkD49lZFWHIYL6ZP3iy+pXbTM9mMieF3CqKRy3IoCzqYVPJwkEWEShy1OxViw9aP/9C+m/T/Xv3N1dophwTU/QbSzdksE4FRFUgCJxE83I/DOHuCXNNtpAPl38qD/mJvWUv4t+dsgzXimweo73vb2N1x5CTqQA0dTny7kBKQAni5osJuMXl5ae/UmbR9uR4shQyliCHSfxtsmflq6d7cq3jnt+j2YjE/XHBjmZRHa2toT/c5k6eXdz/kb+H2zvB6JMoFDjy4x4WkZECHHUxEohMxY3lHwDSr5JA5AGI5NbXBMenfaXhEGvtOfL+xfbH439SaX0AADwL/DDjCaoL9mN14sF+qwa7vJiNFdn+Lg77xXv9bbuwJWWjdPcu95suWKyZy9QlSZt1Oqmi764rPiT6p5nO83aCT2OCNTuyYrce/74AY09KQsAgGyXfcslyvRPpyASuajw/RS070pcVIoevebTow+ePW7FxefdsMZdQqw5r3Dfio7LZhnXY5j2wKRVHUTrMupuJM6OTh+4xJHvrbRbGGNlaUV3/VN/6wAAAJxPZMO2En37IOJQ+T6qvwkrGanE1ukK48hVujd71NwmtrAfL1UpPUDA41c9PXrcjHa/PxKNaLOIv335jzfwq01F/ffanxuZ5f+kbgqhZBYPXtPSZ/k8fjlFTv3igvz7tnWszXggfmI/HbzdGXzh4gmneG/mNL2v7f2h81a2WPHqKmnyg77HipDamvTwV5JPXedOPjOz5IWdbW81xNLGwhX58+KqnZTiNKn2Jm2HpbO3J87lUMcMh7yw1DhncE6sc1ld10pN0ZxagKEsigBbj4ypXH0wOF0g63AxWzMfIjJPj6TwXoe+IcJRfXjBEHsn4/na6SnZdKzj/ab01gAiMpY55PvX5K/si+hGFIbq+z12A7ui7rxq6dx7R+WO9lmu3RZuQX9SB0U09S5P5C+XjkOQU52eT98B3B+Jzfu0sScTebn0TkHBKVw9Ehv2IvdiRabhlfNL9BRx9WeNE9ybjGpkcna1lJE5yvlcyz1/Kn/4WKSkX8v7KHETKXMj6OZB2t6CzLFZo7wGHZEOHQjRT9M9MafDgSBIJBxG9RjuCRvJoJ5973jqxp6+PT2WQXvFKw+zJjfZCSXxkYplQcn9dOfj2ybNbYl4gcht7Z+yLzIaaJ6PrhyxpimxrAUVGOuJyDFFfKo4s3TO6FN0Lnwnpz9Zex22b64Zdt3K6mf8D13m+liLBHsMRTnysUeK77x7073Dsoa/Mc15w0clMfO5qs5McqEpuXV2LJJmcacTZjq773M+yqv0K6knrcaOL+WpTx6yuhnolMYNLaugLKzPaiVQJArihMHs7+kKpXs7+Um9kl1PnVuUbmWpkB1LPjfsOSmegrjBiSU0CLYEz83Smp9qeaovYy3lW2+a4rjyy0CxYdd7JW/d2/FKNz74O9gGKfWP8cQVE8ec1kDwK98MAABomvanzVVvNfgnO/Z9kFi8vPCaWEvIkW/4o//5NJo9FWn/prZBMbhwk+uCkgPDxK80kunnnG1C8cX2T1uM095qufTvI++v6sge6uvv61Yws2lPcPSIvL6mLpPVSbztv/z27NcDMXKQs1NMCi6biKKgX3DrKPmB0Fvv5V3EYTaci2I65s9tf2jXKrRoCCZ78XQ4r6iyF1AvV96TZjGrSSVNzMLjKyGGl2rhlXOyhxcNcAgaUH7tm4QIgpxVmjXSzLzaUGCSm5xCw6yh/kQKm5f9VaI7ug1Olh0liJDS4t2NAftObvZxMGWsrzUfHHe5QD03CAXaRHeNwGuyoOptTH/KPN5eVd/vmZjbaJP80SR966BP1rWd7ctFcnXdQaJcl2wnHPbRnqb1XdMGOTp1Qt8zHY8cjI5oi1hhbwNgI8CcTWfn3Zj32kLPRwpCmRlxR0NhsS2wsXfa79zcmisG53v+jUaJX+sLP0gynXl4c90qf3istuHy8h2sxpCZMIKABnzy3/uWsJgFC7UgqX4gZqDRhdIWk5UgSTiEPhqU3DeUf7arpfi87F0sMEGe3RMZP63oGCKkDwfLFw3f9Y/D04aXpAxK4K2mSx6ueG1nZPzB3tKQrrKdL4DpGOBiSLxHs2ZDS47qyM9n9/1t7CMrGmZfnL2hL2kuzMr8tfGa9vSoF6YVXzi2HPl1r1H+dhYAAADA/Y2dd33dQyEHxJTwx+HLu1J2Fx0PxsgU6tkQm8eQalWgMCOggI0gbBQaHICxANpkRlPZ5oSLjloYlhfQseZDgSgd0jx6NdnIljoMGY02BWVvLT9cz3axwAiEJMLGkXQIWnM0gxMxOqcbN/KICcWQ7dJF11pfi8bQq4vX1SQHvdtyxcJBRX+cWWE2Gv99c34jCwAAoGnayn31T+0P9yvqve7HoyG1PC+D4UCHcaJK1oV825MzGpAJEqCRdBjwSSCxQxjxzetmtSWlnowa5NSeaBJjDIoGeY51mg1mCnMxmE+PpYM9d37VrFJ6QJug3q5afRBBAQCL9c9ONW8VFTwWR+5n1xCQu93y3PL+JRfm0I+dW1RykszY/ywL34ksy6sONC07EmnLcDPITweZm216DkdVCnBZOXhnm8qhpnuSq77rX7vMEll51Y/pzI729rz8fARB2v3+gsLCH64HgkHfh2GV/PlLE0u9j2fxNQBqXkvmjqZXE4hvYZZ8z4SsyvxfuwqeTP7T7zURBHHl5MELJ8Fva1vfqL3ttY5odqJ1gXMNCpQNxyacZ9tMkyhMfj9LS8w/Uef2eGqqq10uVzL5k1Os2+UySy2xX7Cwqnvubfb6TyKL5C7n70fmXDfa53We/s2wXyNn5qtVCIJMGVoyZSiIJ5KfH8tZ3Tpmb19SoKweMtis/ZgLLTH9pBO3u6urrLwMQRCcwEPBoMvt/mG0Mgu276efa0M0VVKz2nVvLJtumjioEEVP09T77+H/H/rWZzKV2t7Qu7Wb29knNEl6hTZ5xdChq4qy3T9uYOl0uu54rdvjCfT3j58w8cQI7+WtR++poyFGGLjQeAd6bjYzM984vDQfRf9HPkL4P8XCiRKORJv7I4NyPRbzzxPhfn8bAMCgN/zgCD9Ic0c3K0qDCnJ+ZX3pP5H/Bgv/++X/f/cVAAD+D33CphLk977FAAAAAElFTkSuQmCC','S','@cod_orgao_sei_03d@@cod_unidade_sei_02d@.@seq_anual_cod_unidade_sei_06d@/@ano_4d@-@dv_mod11_executivo_federal_2d@',NULL,'B','S','999','abc abc',100000010,'N','N',NULL,NULL); +/*!40000 ALTER TABLE `orgao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `orgao_federacao` +-- + +DROP TABLE IF EXISTS `orgao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orgao_federacao` ( + `id_orgao_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_orgao_federacao`), + KEY `fk_orgao_fed_instalacao_fed` (`id_instalacao_federacao`), + CONSTRAINT `fk_orgao_fed_instalacao_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orgao_federacao` +-- + +LOCK TABLES `orgao_federacao` WRITE; +/*!40000 ALTER TABLE `orgao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `orgao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `orgao_historico` +-- + +DROP TABLE IF EXISTS `orgao_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orgao_historico` ( + `id_orgao_historico` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `dta_inicio` datetime NOT NULL, + `dta_fim` datetime DEFAULT NULL, + PRIMARY KEY (`id_orgao_historico`), + UNIQUE KEY `i02_orgao_historico` (`dta_inicio`,`dta_fim`,`id_orgao`), + KEY `fk_orgao_historico_orgao` (`id_orgao`), + CONSTRAINT `fk_orgao_historico_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orgao_historico` +-- + +LOCK TABLES `orgao_historico` WRITE; +/*!40000 ALTER TABLE `orgao_historico` DISABLE KEYS */; +INSERT INTO `orgao_historico` VALUES (1,0,'ABC','ABC','2022-06-10 00:00:00',NULL); +/*!40000 ALTER TABLE `orgao_historico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pais` +-- + +DROP TABLE IF EXISTS `pais`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pais` ( + `id_pais` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + PRIMARY KEY (`id_pais`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pais` +-- + +LOCK TABLES `pais` WRITE; +/*!40000 ALTER TABLE `pais` DISABLE KEYS */; +INSERT INTO `pais` VALUES (4,'Afeganistão'),(8,'Albânia'),(12,'Argélia'),(20,'Andorra'),(24,'Angola'),(28,'Antígua e Barbuda'),(31,'Azerbaijão'),(32,'Argentina'),(36,'Austrália'),(40,'Áustria'),(44,'Bahamas'),(48,'Bahrain'),(50,'Bangladesh'),(51,'Armênia'),(52,'Barbados'),(56,'Bélgica'),(64,'Butão'),(68,'Bolívia'),(70,'Bósnia e Herzegovina'),(72,'Botswana'),(76,'Brasil'),(84,'Belize'),(90,'Salomão, Ilhas'),(96,'Brunei'),(100,'Bulgária'),(104,'Myanmar (antiga Birmânia)'),(108,'Burundi'),(112,'Bielorrússia'),(116,'Cambodja'),(120,'Camarões'),(124,'Canadá'),(132,'Cabo Verde'),(140,'Centro-Africana, República'),(144,'Sri Lanka'),(148,'Chade'),(152,'Chile'),(156,'China'),(158,'Taiwan'),(170,'Colômbia'),(174,'Comores'),(178,'Congo, República do'),(180,'Congo, República Democrática do (antigo Zaire)'),(188,'Costa Rica'),(191,'Croácia'),(192,'Cuba'),(196,'Chipre'),(203,'Checa, República'),(204,'Benim'),(208,'Dinamarca'),(212,'Dominica'),(214,'Dominicana, República'),(218,'Equador'),(222,'El Salvador'),(226,'Guiné Equatorial'),(231,'Etiópia'),(232,'Eritreia'),(233,'Estónia'),(242,'Fiji'),(246,'Finlândia'),(250,'França'),(254,'Guiana Francesa'),(258,'Polinésia Francesa'),(262,'Djibouti'),(266,'Gabão'),(268,'Geórgia'),(270,'Gâmbia'),(275,'Palestina'),(276,'Alemanha'),(288,'Gana'),(296,'Kiribati'),(300,'Grécia'),(308,'Grenada'),(320,'Guatemala'),(324,'Guiné-Conacri'),(328,'Guiana'),(332,'Haiti'),(336,'Vaticano'),(340,'Honduras'),(344,'Hong Kong'),(348,'Hungria'),(352,'Islândia'),(356,'Índia'),(360,'Indonésia'),(364,'Irã'),(368,'Iraque'),(372,'Irlanda'),(376,'Israel'),(380,'Itália'),(384,'Costa do Marfim'),(388,'Jamaica'),(392,'Japão'),(398,'Cazaquistão'),(400,'Jordânia'),(404,'Quênia'),(408,'Coreia, República Democrática da (Coreia do Norte)'),(410,'Coréia do Sul'),(414,'Kuwait'),(417,'Quirguistão'),(418,'Laos'),(422,'Líbano'),(426,'Lesoto'),(428,'Letônia'),(430,'Libéria'),(434,'Líbia'),(438,'Liechtenstein'),(440,'Lituânia'),(442,'Luxemburgo'),(446,'Macau'),(450,'Madagáscar'),(454,'Malawi'),(458,'Malásia'),(462,'Maldivas'),(466,'Mali'),(470,'Malta'),(478,'Mauritânia'),(480,'Maurícia'),(484,'México'),(492,'Mônaco'),(496,'Mongólia'),(498,'Moldávia'),(499,'Montenegro'),(504,'Marrocos'),(508,'Moçambique'),(512,'Oman'),(516,'Namíbia'),(520,'Nauru'),(524,'Nepal'),(528,'Países Baixos (Holanda)'),(540,'Nova Caledônia'),(548,'Vanuatu'),(554,'Nova Zelândia (Aotearoa)'),(558,'Nicarágua'),(562,'Níger'),(566,'Nigéria'),(570,'Niue'),(578,'Noruega'),(580,'Marianas Setentrionais'),(583,'Micronésia, Estados Federados da'),(584,'Marshall, Ilhas'),(585,'Palau'),(586,'Paquistão'),(591,'Panamá'),(598,'Papua-Nova Guiné'),(600,'Paraguai'),(604,'Peru'),(608,'Filipinas'),(616,'Polônia'),(620,'Portugal'),(624,'Guiné-Bissau'),(626,'Timor-Leste'),(630,'Porto Rico'),(634,'Qatar'),(642,'Romênia'),(643,'Rússia'),(646,'Ruanda'),(659,'São Cristóvão e Névis (Saint Kitts e Nevis)'),(662,'Santa Lúcia'),(670,'São Vicente e Granadinas'),(674,'San Marino'),(678,'São Tomé e Príncipe'),(682,'Arábia Saudita'),(686,'Senegal'),(688,'Sérvia'),(690,'Seychelles'),(694,'Serra Leoa'),(702,'Singapura'),(703,'Eslováquia'),(704,'Vietnam'),(705,'Eslovênia'),(706,'Somália'),(710,'África do Sul'),(716,'Zimbabwe'),(724,'Espanha'),(732,'Saara Ocidental'),(736,'Sudão'),(740,'Suriname'),(748,'Suazilândia'),(752,'Suécia'),(756,'Suíça'),(760,'Síria'),(762,'Tajiquistão'),(764,'Tailândia'),(768,'Togo'),(776,'Tonga'),(780,'Trindade e Tobago'),(784,'Emirados Árabes Unidos'),(788,'Tunísia'),(792,'Turquia'),(795,'Turquemenistão'),(798,'Tuvalu'),(800,'Uganda'),(804,'Ucrânia'),(807,'Macedônia, República da'),(818,'Egito'),(826,'Reino Unido da Grã-Bretanha e Irlanda do Norte'),(834,'Tanzânia'),(840,'Estados Unidos da América'),(854,'Burkina Faso'),(858,'Uruguai'),(860,'Usbequistão'),(862,'Venezuela'),(882,'Samoa (Samoa Ocidental)'),(887,'Iémen'),(894,'Zâmbia'); +/*!40000 ALTER TABLE `pais` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `parametro_acao_federacao` +-- + +DROP TABLE IF EXISTS `parametro_acao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `parametro_acao_federacao` ( + `id_acao_federacao` varchar(26) NOT NULL, + `nome` varchar(50) NOT NULL, + `valor` longtext NOT NULL, + PRIMARY KEY (`id_acao_federacao`,`nome`), + KEY `fk_param_acao_fed_acao_fed` (`id_acao_federacao`), + CONSTRAINT `fk_param_acao_fed_acao_fed` FOREIGN KEY (`id_acao_federacao`) REFERENCES `acao_federacao` (`id_acao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `parametro_acao_federacao` +-- + +LOCK TABLES `parametro_acao_federacao` WRITE; +/*!40000 ALTER TABLE `parametro_acao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `parametro_acao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `participante` +-- + +DROP TABLE IF EXISTS `participante`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `participante` ( + `id_participante` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `id_contato` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `sta_participacao` char(1) NOT NULL, + `sequencia` int(11) NOT NULL, + PRIMARY KEY (`id_participante`), + UNIQUE KEY `ak1_participante` (`id_contato`,`id_protocolo`,`sta_participacao`), + KEY `i01_participante` (`id_protocolo`,`sta_participacao`), + KEY `fk_participante_unidade` (`id_unidade`), + KEY `fk_participante_contato` (`id_contato`), + KEY `fk_participante_protocolo` (`id_protocolo`), + CONSTRAINT `fk_participante_contato` FOREIGN KEY (`id_contato`) REFERENCES `contato` (`id_contato`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_participante_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_participante_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `participante` +-- + +LOCK TABLES `participante` WRITE; +/*!40000 ALTER TABLE `participante` DISABLE KEYS */; +/*!40000 ALTER TABLE `participante` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pesquisa` +-- + +DROP TABLE IF EXISTS `pesquisa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pesquisa` ( + `id_pesquisa` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) DEFAULT NULL, + PRIMARY KEY (`id_pesquisa`), + KEY `fk_pesquisa_usuario` (`id_usuario`), + KEY `fk_pesquisa_unidade` (`id_unidade`), + CONSTRAINT `fk_pesquisa_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_pesquisa_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pesquisa` +-- + +LOCK TABLES `pesquisa` WRITE; +/*!40000 ALTER TABLE `pesquisa` DISABLE KEYS */; +/*!40000 ALTER TABLE `pesquisa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `procedimento` +-- + +DROP TABLE IF EXISTS `procedimento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `procedimento` ( + `id_procedimento` bigint(20) NOT NULL, + `id_tipo_procedimento` int(11) DEFAULT NULL, + `sta_ouvidoria` char(1) NOT NULL, + `sin_ciencia` char(1) NOT NULL, + PRIMARY KEY (`id_procedimento`), + KEY `fk_procedimento_tipo_procedime` (`id_tipo_procedimento`), + CONSTRAINT `fk_procedimento_protocolo` FOREIGN KEY (`id_procedimento`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_procedimento_tipo_procedime` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `procedimento` +-- + +LOCK TABLES `procedimento` WRITE; +/*!40000 ALTER TABLE `procedimento` DISABLE KEYS */; +/*!40000 ALTER TABLE `procedimento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `protocolo` +-- + +DROP TABLE IF EXISTS `protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `protocolo` ( + `id_protocolo` bigint(20) NOT NULL, + `id_unidade_geradora` int(11) NOT NULL, + `id_usuario_gerador` int(11) NOT NULL, + `protocolo_formatado` varchar(50) NOT NULL, + `sta_protocolo` char(1) NOT NULL, + `id_protocolo_agrupador` bigint(20) NOT NULL, + `dta_geracao` datetime NOT NULL, + `sta_estado` char(1) NOT NULL, + `descricao` longtext, + `sta_nivel_acesso_local` char(1) NOT NULL, + `sta_nivel_acesso_global` char(1) NOT NULL, + `protocolo_formatado_pesquisa` varchar(50) NOT NULL, + `codigo_barras` longtext, + `id_hipotese_legal` int(11) DEFAULT NULL, + `sta_grau_sigilo` char(1) DEFAULT NULL, + `sta_nivel_acesso_original` char(1) DEFAULT NULL, + `protocolo_formatado_pesq_inv` varchar(50) NOT NULL, + `dta_inclusao` datetime NOT NULL, + `id_protocolo_federacao` varchar(26) DEFAULT NULL, + PRIMARY KEY (`id_protocolo`), + UNIQUE KEY `ak1_protocolo` (`id_protocolo`,`sta_protocolo`), + UNIQUE KEY `ak2_protocolo` (`protocolo_formatado`), + KEY `if4_protocolo` (`id_protocolo_agrupador`), + KEY `ie1_protocolo` (`id_protocolo`,`sta_protocolo`,`sta_estado`,`dta_geracao`,`id_unidade_geradora`), + KEY `i02_protocolo` (`id_unidade_geradora`,`sta_protocolo`,`dta_geracao`,`id_protocolo`), + KEY `i06_protocolo` (`sta_protocolo`,`dta_geracao`,`id_protocolo`), + KEY `fk_protocolo_usuario` (`id_usuario_gerador`), + KEY `fk_protocolo_hipotese_legal` (`id_hipotese_legal`), + KEY `i03_protocolo` (`sta_nivel_acesso_global`,`id_protocolo`,`id_unidade_geradora`,`sta_protocolo`,`sta_estado`), + KEY `fk_protocolo_unidade` (`id_unidade_geradora`), + KEY `i10_protocolo` (`protocolo_formatado_pesquisa`,`sta_nivel_acesso_global`,`id_protocolo`), + KEY `i11_protocolo` (`sta_protocolo`,`sta_nivel_acesso_global`,`id_protocolo`), + KEY `i12_protocolo` (`sta_estado`,`sta_protocolo`,`sta_nivel_acesso_global`,`id_protocolo`), + KEY `i13_protocolo` (`id_protocolo`,`sta_protocolo`,`id_usuario_gerador`,`id_unidade_geradora`,`dta_geracao`), + KEY `i14_protocolo` (`id_protocolo`,`id_hipotese_legal`,`id_unidade_geradora`), + KEY `i07_protocolo` (`dta_inclusao`,`sta_protocolo`,`id_unidade_geradora`), + KEY `i15_protocolo` (`protocolo_formatado_pesquisa`), + KEY `i16_protocolo` (`protocolo_formatado_pesq_inv`), + KEY `fk_protocolo_protocolo_fed` (`id_protocolo_federacao`), + CONSTRAINT `fk_protocolo_hipotese_legal` FOREIGN KEY (`id_hipotese_legal`) REFERENCES `hipotese_legal` (`id_hipotese_legal`), + CONSTRAINT `fk_protocolo_protocolo_fed` FOREIGN KEY (`id_protocolo_federacao`) REFERENCES `protocolo_federacao` (`id_protocolo_federacao`), + CONSTRAINT `fk_protocolo_unidade` FOREIGN KEY (`id_unidade_geradora`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_protocolo_usuario` FOREIGN KEY (`id_usuario_gerador`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `protocolo` +-- + +LOCK TABLES `protocolo` WRITE; +/*!40000 ALTER TABLE `protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `protocolo_federacao` +-- + +DROP TABLE IF EXISTS `protocolo_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `protocolo_federacao` ( + `id_protocolo_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `protocolo_formatado` varchar(50) NOT NULL, + `protocolo_formatado_pesquisa` varchar(50) NOT NULL, + `protocolo_formatado_pesq_inv` varchar(50) NOT NULL, + PRIMARY KEY (`id_protocolo_federacao`), + KEY `fk_protocolo_fed_inst_fed` (`id_instalacao_federacao`), + KEY `i01_protocolo_federacao` (`protocolo_formatado`), + KEY `i02_protocolo_federacao` (`protocolo_formatado_pesquisa`), + KEY `i03_protocolo_federacao` (`protocolo_formatado_pesq_inv`), + CONSTRAINT `fk_protocolo_fed_inst_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `protocolo_federacao` +-- + +LOCK TABLES `protocolo_federacao` WRITE; +/*!40000 ALTER TABLE `protocolo_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `protocolo_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `protocolo_modelo` +-- + +DROP TABLE IF EXISTS `protocolo_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `protocolo_modelo` ( + `id_protocolo_modelo` int(11) NOT NULL, + `id_grupo_protocolo_modelo` int(11) DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + `descricao` varchar(1000) DEFAULT NULL, + `dth_alteracao` datetime NOT NULL, + `idx_protocolo_modelo` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_protocolo_modelo`), + KEY `fk_prot_mod_grupo_prot_mod` (`id_grupo_protocolo_modelo`), + KEY `fk_protocolo_modelo_unidade` (`id_unidade`), + KEY `fk_protocolo_modelo_usuario` (`id_usuario`), + KEY `fk_protocolo_modelo_protocolo` (`id_protocolo`), + CONSTRAINT `fk_prot_mod_grupo_prot_mod` FOREIGN KEY (`id_grupo_protocolo_modelo`) REFERENCES `grupo_protocolo_modelo` (`id_grupo_protocolo_modelo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_protocolo_modelo_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_protocolo_modelo_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_protocolo_modelo_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `protocolo_modelo` +-- + +LOCK TABLES `protocolo_modelo` WRITE; +/*!40000 ALTER TABLE `protocolo_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `protocolo_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `publicacao` +-- + +DROP TABLE IF EXISTS `publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `publicacao` ( + `id_publicacao` int(11) NOT NULL, + `dth_agendamento` datetime NOT NULL, + `sta_motivo` char(1) NOT NULL, + `dta_disponibilizacao` datetime NOT NULL, + `dta_publicacao_io` datetime DEFAULT NULL, + `pagina_io` varchar(50) DEFAULT NULL, + `resumo` longtext, + `dta_publicacao` datetime DEFAULT NULL, + `id_unidade` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_documento` bigint(20) DEFAULT NULL, + `id_atividade` int(11) NOT NULL, + `numero` int(11) DEFAULT NULL, + `id_veiculo_publicacao` int(11) NOT NULL, + `id_veiculo_io` int(11) DEFAULT NULL, + `id_secao_io` int(11) DEFAULT NULL, + PRIMARY KEY (`id_publicacao`), + KEY `i01_publicacao` (`dta_publicacao`), + KEY `fk_publicacao_atividade` (`id_atividade`), + KEY `i03_publicacao` (`id_unidade`,`dta_publicacao`), + KEY `fk_publicacao_veiculo_in` (`id_veiculo_io`), + KEY `fk_publicacao_secao_in` (`id_secao_io`), + KEY `fk_publicacao_veiculo_public` (`id_veiculo_publicacao`), + KEY `fk_publicacao_documento` (`id_documento`), + KEY `fk_publicacao_unidade` (`id_unidade`), + KEY `fk_publicacao_usuario` (`id_usuario`), + CONSTRAINT `fk_publicacao_atividade` FOREIGN KEY (`id_atividade`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_publicacao_documento` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_publicacao_secao_in` FOREIGN KEY (`id_secao_io`) REFERENCES `secao_imprensa_nacional` (`id_secao_imprensa_nacional`), + CONSTRAINT `fk_publicacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_publicacao_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_publicacao_veiculo_in` FOREIGN KEY (`id_veiculo_io`) REFERENCES `veiculo_imprensa_nacional` (`id_veiculo_imprensa_nacional`), + CONSTRAINT `fk_publicacao_veiculo_public` FOREIGN KEY (`id_veiculo_publicacao`) REFERENCES `veiculo_publicacao` (`id_veiculo_publicacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `publicacao` +-- + +LOCK TABLES `publicacao` WRITE; +/*!40000 ALTER TABLE `publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `publicacao_legado` +-- + +DROP TABLE IF EXISTS `publicacao_legado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `publicacao_legado` ( + `id_publicacao_legado` int(11) NOT NULL, + `id_publicacao_legado_agrupador` int(11) NOT NULL, + `id_documento` varchar(20) NOT NULL, + `id_serie` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `dta_publicacao_io` datetime DEFAULT NULL, + `pagina_io` varchar(20) DEFAULT NULL, + `dta_publicacao` datetime NOT NULL, + `numero` varchar(30) DEFAULT NULL, + `resumo` longtext, + `conteudo_documento` longtext NOT NULL, + `dta_geracao` datetime NOT NULL, + `id_orgao` int(11) NOT NULL, + `protocolo_formatado` varchar(50) NOT NULL, + `id_secao_io` int(11) DEFAULT NULL, + `id_veiculo_io` int(11) DEFAULT NULL, + `id_veiculo_publicacao` int(11) NOT NULL, + PRIMARY KEY (`id_publicacao_legado`), + KEY `fk_publicacao_legado_serie` (`id_serie`), + KEY `fk_publicacao_legado_unidade` (`id_unidade`), + KEY `fk_public_legado_secao_imp_nac` (`id_secao_io`), + KEY `fk_public_legado_veicu_imp_nac` (`id_veiculo_io`), + KEY `fk_public_legado_veic_public` (`id_veiculo_publicacao`), + KEY `i01_publicacao_legado` (`id_publicacao_legado_agrupador`), + KEY `i02_publicacao_legado` (`id_orgao`,`id_unidade`), + KEY `i03_publicacao_legado` (`id_orgao`,`id_serie`), + CONSTRAINT `fk_public_legado_secao_imp_nac` FOREIGN KEY (`id_secao_io`) REFERENCES `secao_imprensa_nacional` (`id_secao_imprensa_nacional`), + CONSTRAINT `fk_public_legado_veic_public` FOREIGN KEY (`id_veiculo_publicacao`) REFERENCES `veiculo_publicacao` (`id_veiculo_publicacao`), + CONSTRAINT `fk_public_legado_veicu_imp_nac` FOREIGN KEY (`id_veiculo_io`) REFERENCES `veiculo_imprensa_nacional` (`id_veiculo_imprensa_nacional`), + CONSTRAINT `fk_publicacao_legado_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`), + CONSTRAINT `fk_publicacao_legado_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `publicacao_legado` +-- + +LOCK TABLES `publicacao_legado` WRITE; +/*!40000 ALTER TABLE `publicacao_legado` DISABLE KEYS */; +/*!40000 ALTER TABLE `publicacao_legado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_acesso_ext_protocolo` +-- + +DROP TABLE IF EXISTS `rel_acesso_ext_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_acesso_ext_protocolo` ( + `id_acesso_externo` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + PRIMARY KEY (`id_acesso_externo`,`id_protocolo`), + KEY `fk_rel_aces_ext_prot_protocolo` (`id_protocolo`), + KEY `fk_rel_aces_ext_prot_aces_ext` (`id_acesso_externo`), + CONSTRAINT `fk_rel_aces_ext_prot_aces_ext` FOREIGN KEY (`id_acesso_externo`) REFERENCES `acesso_externo` (`id_acesso_externo`), + CONSTRAINT `fk_rel_aces_ext_prot_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_acesso_ext_protocolo` +-- + +LOCK TABLES `rel_acesso_ext_protocolo` WRITE; +/*!40000 ALTER TABLE `rel_acesso_ext_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_acesso_ext_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_acesso_ext_serie` +-- + +DROP TABLE IF EXISTS `rel_acesso_ext_serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_acesso_ext_serie` ( + `id_acesso_externo` int(11) NOT NULL, + `id_serie` int(11) NOT NULL, + PRIMARY KEY (`id_acesso_externo`,`id_serie`), + KEY `fk_rel_aces_ext_serie_aces_ext` (`id_acesso_externo`), + KEY `fk_rel_aces_ext_serie_serie` (`id_serie`), + CONSTRAINT `fk_rel_aces_ext_serie_aces_ext` FOREIGN KEY (`id_acesso_externo`) REFERENCES `acesso_externo` (`id_acesso_externo`), + CONSTRAINT `fk_rel_aces_ext_serie_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_acesso_ext_serie` +-- + +LOCK TABLES `rel_acesso_ext_serie` WRITE; +/*!40000 ALTER TABLE `rel_acesso_ext_serie` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_acesso_ext_serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_assinante_unidade` +-- + +DROP TABLE IF EXISTS `rel_assinante_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_assinante_unidade` ( + `id_unidade` int(11) NOT NULL, + `id_assinante` int(11) NOT NULL, + PRIMARY KEY (`id_unidade`,`id_assinante`), + KEY `fk_rel_assinante_uni_assinante` (`id_assinante`), + KEY `fk_rel_assinante_uni_unidade` (`id_unidade`), + CONSTRAINT `fk_rel_assinante_uni_assinante` FOREIGN KEY (`id_assinante`) REFERENCES `assinante` (`id_assinante`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_assinante_uni_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_assinante_unidade` +-- + +LOCK TABLES `rel_assinante_unidade` WRITE; +/*!40000 ALTER TABLE `rel_assinante_unidade` DISABLE KEYS */; +INSERT INTO `rel_assinante_unidade` VALUES (110000001,233),(110000002,233),(110000003,233),(110000001,234),(110000002,234),(110000003,234),(110000001,235),(110000002,235),(110000003,235),(110000001,236),(110000002,236),(110000003,236),(110000001,237),(110000002,237),(110000003,237),(110000001,238),(110000002,238),(110000003,238),(110000001,239),(110000002,239),(110000003,239),(110000001,240),(110000002,240),(110000003,240),(110000001,241),(110000002,241),(110000003,241),(110000001,242),(110000002,242),(110000003,242),(110000001,243),(110000002,243),(110000003,243),(110000001,244),(110000002,244),(110000003,244),(110000001,245),(110000002,245),(110000003,245),(110000001,246),(110000002,246),(110000003,246),(110000001,247),(110000002,247),(110000003,247),(110000001,248),(110000002,248),(110000003,248),(110000001,249),(110000002,249),(110000003,249),(110000001,250),(110000002,250),(110000003,250),(110000001,251),(110000002,251),(110000003,251),(110000001,252),(110000002,252),(110000003,252),(110000001,253),(110000002,253),(110000003,253); +/*!40000 ALTER TABLE `rel_assinante_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_base_conhec_tipo_proced` +-- + +DROP TABLE IF EXISTS `rel_base_conhec_tipo_proced`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_base_conhec_tipo_proced` ( + `id_tipo_procedimento` int(11) NOT NULL, + `id_base_conhecimento` int(11) NOT NULL, + PRIMARY KEY (`id_tipo_procedimento`,`id_base_conhecimento`), + KEY `fk_rel_bc_tp_base_conhecimento` (`id_base_conhecimento`), + KEY `fk_rel_bc_tp_tipo_procedimento` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_bc_tp_base_conhecimento` FOREIGN KEY (`id_base_conhecimento`) REFERENCES `base_conhecimento` (`id_base_conhecimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_bc_tp_tipo_procedimento` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_base_conhec_tipo_proced` +-- + +LOCK TABLES `rel_base_conhec_tipo_proced` WRITE; +/*!40000 ALTER TABLE `rel_base_conhec_tipo_proced` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_base_conhec_tipo_proced` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_bloco_protocolo` +-- + +DROP TABLE IF EXISTS `rel_bloco_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_bloco_protocolo` ( + `id_protocolo` bigint(20) NOT NULL, + `id_bloco` int(11) NOT NULL, + `anotacao` longtext, + `sequencia` int(11) NOT NULL, + `idx_rel_bloco_protocolo` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_protocolo`,`id_bloco`), + KEY `fk_rel_bloco_protocolo_bloco` (`id_bloco`), + KEY `fk_rel_bloco_protocolo_protoco` (`id_protocolo`), + CONSTRAINT `fk_rel_bloco_protocolo_bloco` FOREIGN KEY (`id_bloco`) REFERENCES `bloco` (`id_bloco`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_bloco_protocolo_protoco` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_bloco_protocolo` +-- + +LOCK TABLES `rel_bloco_protocolo` WRITE; +/*!40000 ALTER TABLE `rel_bloco_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_bloco_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_bloco_unidade` +-- + +DROP TABLE IF EXISTS `rel_bloco_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_bloco_unidade` ( + `id_unidade` int(11) NOT NULL, + `id_bloco` int(11) NOT NULL, + `sin_retornado` char(1) NOT NULL, + `id_usuario_atribuicao` int(11) DEFAULT NULL, + `id_usuario_revisao` int(11) DEFAULT NULL, + `id_usuario_prioridade` int(11) DEFAULT NULL, + `id_usuario_comentario` int(11) DEFAULT NULL, + `sin_revisao` char(1) NOT NULL, + `sin_prioridade` char(1) NOT NULL, + `sin_comentario` char(1) NOT NULL, + `texto_comentario` varchar(4000) DEFAULT NULL, + `dth_revisao` datetime DEFAULT NULL, + `dth_prioridade` datetime DEFAULT NULL, + `dth_comentario` datetime DEFAULT NULL, + `id_grupo_bloco` int(11) DEFAULT NULL, + PRIMARY KEY (`id_unidade`,`id_bloco`), + KEY `if3_rel_bloco_unidade` (`id_bloco`,`sin_retornado`), + KEY `if4_rel_bloco_unidade` (`id_unidade`,`sin_retornado`), + KEY `fk_rel_bloco_unidade_bloco` (`id_bloco`), + KEY `fk_rel_bloco_unidade_unidade` (`id_unidade`), + KEY `fk_rel_blo_uni_usu_atribuicao` (`id_usuario_atribuicao`), + KEY `fk_rel_blo_uni_usu_revisao` (`id_usuario_revisao`), + KEY `fk_rel_blo_uni_usu_prioridade` (`id_usuario_prioridade`), + KEY `fk_rel_blo_uni_usu_comentario` (`id_usuario_comentario`), + KEY `i05_rel_bloco_unidade` (`id_bloco`,`id_unidade`,`id_usuario_atribuicao`), + KEY `i06_rel_bloco_unidade` (`id_bloco`,`id_unidade`,`sin_prioridade`,`sin_revisao`,`sin_comentario`), + KEY `i07_rel_bloco_unidade` (`id_bloco`,`id_unidade`,`id_usuario_atribuicao`,`sin_prioridade`,`sin_revisao`,`sin_comentario`), + KEY `fk_rel_blo_uni_grupo_bloco` (`id_grupo_bloco`), + CONSTRAINT `fk_rel_blo_uni_grupo_bloco` FOREIGN KEY (`id_grupo_bloco`) REFERENCES `grupo_bloco` (`id_grupo_bloco`), + CONSTRAINT `fk_rel_blo_uni_usu_atribuicao` FOREIGN KEY (`id_usuario_atribuicao`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_rel_blo_uni_usu_comentario` FOREIGN KEY (`id_usuario_comentario`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_rel_blo_uni_usu_prioridade` FOREIGN KEY (`id_usuario_prioridade`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_rel_blo_uni_usu_revisao` FOREIGN KEY (`id_usuario_revisao`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_rel_bloco_unidade_bloco` FOREIGN KEY (`id_bloco`) REFERENCES `bloco` (`id_bloco`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_bloco_unidade_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_bloco_unidade` +-- + +LOCK TABLES `rel_bloco_unidade` WRITE; +/*!40000 ALTER TABLE `rel_bloco_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_bloco_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_controle_interno_orgao` +-- + +DROP TABLE IF EXISTS `rel_controle_interno_orgao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_controle_interno_orgao` ( + `id_controle_interno` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + PRIMARY KEY (`id_controle_interno`,`id_orgao`), + KEY `fk_rel_controle_interno_orgao` (`id_orgao`), + KEY `fk_rel_controle_interno_org_id` (`id_controle_interno`), + CONSTRAINT `fk_rel_controle_interno_org_id` FOREIGN KEY (`id_controle_interno`) REFERENCES `controle_interno` (`id_controle_interno`), + CONSTRAINT `fk_rel_controle_interno_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_controle_interno_orgao` +-- + +LOCK TABLES `rel_controle_interno_orgao` WRITE; +/*!40000 ALTER TABLE `rel_controle_interno_orgao` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_controle_interno_orgao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_controle_interno_serie` +-- + +DROP TABLE IF EXISTS `rel_controle_interno_serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_controle_interno_serie` ( + `id_serie` int(11) NOT NULL, + `id_controle_interno` int(11) NOT NULL, + PRIMARY KEY (`id_serie`,`id_controle_interno`), + KEY `fk_rel_controle_interno_se_ci` (`id_controle_interno`), + KEY `fk_rel_controle_interno_se_se` (`id_serie`), + CONSTRAINT `fk_rel_controle_interno_se_ci` FOREIGN KEY (`id_controle_interno`) REFERENCES `controle_interno` (`id_controle_interno`), + CONSTRAINT `fk_rel_controle_interno_se_se` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_controle_interno_serie` +-- + +LOCK TABLES `rel_controle_interno_serie` WRITE; +/*!40000 ALTER TABLE `rel_controle_interno_serie` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_controle_interno_serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_controle_interno_tipo_proc` +-- + +DROP TABLE IF EXISTS `rel_controle_interno_tipo_proc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_controle_interno_tipo_proc` ( + `id_tipo_procedimento` int(11) NOT NULL, + `id_controle_interno` int(11) NOT NULL, + PRIMARY KEY (`id_tipo_procedimento`,`id_controle_interno`), + KEY `fk_rel_contr_int_tipo_proc_ci` (`id_controle_interno`), + KEY `fk_rel_contr_int_t_tipo_proc` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_contr_int_t_tipo_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_contr_int_tipo_proc_ci` FOREIGN KEY (`id_controle_interno`) REFERENCES `controle_interno` (`id_controle_interno`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_controle_interno_tipo_proc` +-- + +LOCK TABLES `rel_controle_interno_tipo_proc` WRITE; +/*!40000 ALTER TABLE `rel_controle_interno_tipo_proc` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_controle_interno_tipo_proc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_controle_interno_unidade` +-- + +DROP TABLE IF EXISTS `rel_controle_interno_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_controle_interno_unidade` ( + `id_controle_interno` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_controle_interno`,`id_unidade`), + KEY `fk_rel_controle_int_unid_ci` (`id_controle_interno`), + KEY `fk_rel_controle_int_unid_unid` (`id_unidade`), + CONSTRAINT `fk_rel_controle_int_unid_ci` FOREIGN KEY (`id_controle_interno`) REFERENCES `controle_interno` (`id_controle_interno`), + CONSTRAINT `fk_rel_controle_int_unid_unid` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_controle_interno_unidade` +-- + +LOCK TABLES `rel_controle_interno_unidade` WRITE; +/*!40000 ALTER TABLE `rel_controle_interno_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_controle_interno_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_grupo_contato` +-- + +DROP TABLE IF EXISTS `rel_grupo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_grupo_contato` ( + `id_contato` int(11) NOT NULL, + `id_grupo_contato` int(11) NOT NULL, + PRIMARY KEY (`id_contato`,`id_grupo_contato`), + KEY `fk_rel_grupo_contato_grupo_con` (`id_grupo_contato`), + KEY `fk_rel_grupo_contato_contato` (`id_contato`), + CONSTRAINT `fk_rel_grupo_contato_contato` FOREIGN KEY (`id_contato`) REFERENCES `contato` (`id_contato`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_grupo_contato_grupo_con` FOREIGN KEY (`id_grupo_contato`) REFERENCES `grupo_contato` (`id_grupo_contato`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_grupo_contato` +-- + +LOCK TABLES `rel_grupo_contato` WRITE; +/*!40000 ALTER TABLE `rel_grupo_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_grupo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_grupo_fed_orgao_fed` +-- + +DROP TABLE IF EXISTS `rel_grupo_fed_orgao_fed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_grupo_fed_orgao_fed` ( + `id_grupo_federacao` int(11) NOT NULL, + `id_orgao_federacao` varchar(26) NOT NULL, + PRIMARY KEY (`id_grupo_federacao`,`id_orgao_federacao`), + KEY `fk_rel_grp_fed_org_fed_grp_fed` (`id_grupo_federacao`), + KEY `fk_rel_grp_fed_org_fed_org_fed` (`id_orgao_federacao`), + CONSTRAINT `fk_rel_grp_fed_org_fed_grp_fed` FOREIGN KEY (`id_grupo_federacao`) REFERENCES `grupo_federacao` (`id_grupo_federacao`), + CONSTRAINT `fk_rel_grp_fed_org_fed_org_fed` FOREIGN KEY (`id_orgao_federacao`) REFERENCES `orgao_federacao` (`id_orgao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_grupo_fed_orgao_fed` +-- + +LOCK TABLES `rel_grupo_fed_orgao_fed` WRITE; +/*!40000 ALTER TABLE `rel_grupo_fed_orgao_fed` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_grupo_fed_orgao_fed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_grupo_unidade_unidade` +-- + +DROP TABLE IF EXISTS `rel_grupo_unidade_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_grupo_unidade_unidade` ( + `id_unidade` int(11) NOT NULL, + `id_grupo_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_unidade`,`id_grupo_unidade`), + KEY `fk_rel_grupo_unid_grupo_unid` (`id_grupo_unidade`), + KEY `fk_rel_grupo_unid_unidade` (`id_unidade`), + CONSTRAINT `fk_rel_grupo_unid_grupo_unid` FOREIGN KEY (`id_grupo_unidade`) REFERENCES `grupo_unidade` (`id_grupo_unidade`), + CONSTRAINT `fk_rel_grupo_unid_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_grupo_unidade_unidade` +-- + +LOCK TABLES `rel_grupo_unidade_unidade` WRITE; +/*!40000 ALTER TABLE `rel_grupo_unidade_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_grupo_unidade_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_notificacao_documento` +-- + +DROP TABLE IF EXISTS `rel_notificacao_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_notificacao_documento` ( + `id_documento` bigint(20) NOT NULL, + `id_notificacao` int(11) NOT NULL, + `sin_processada` char(1) NOT NULL, + PRIMARY KEY (`id_documento`,`id_notificacao`), + KEY `i03_rel_notificacao_documento` (`id_documento`,`sin_processada`), + KEY `fk_rel_notif_doc_documento` (`id_notificacao`), + KEY `fk_rel_notif_doc_notificacao` (`id_documento`), + CONSTRAINT `fk_rel_notif_doc_documento` FOREIGN KEY (`id_notificacao`) REFERENCES `notificacao` (`id_notificacao`), + CONSTRAINT `fk_rel_notif_doc_notificacao` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_notificacao_documento` +-- + +LOCK TABLES `rel_notificacao_documento` WRITE; +/*!40000 ALTER TABLE `rel_notificacao_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_notificacao_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_protocolo_assunto` +-- + +DROP TABLE IF EXISTS `rel_protocolo_assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_protocolo_assunto` ( + `id_protocolo` bigint(20) NOT NULL, + `id_unidade` int(11) NOT NULL, + `sequencia` int(11) NOT NULL, + `id_assunto_proxy` int(11) NOT NULL, + PRIMARY KEY (`id_protocolo`,`id_assunto_proxy`), + KEY `fk_rel_prot_assunto_assunto` (`id_assunto_proxy`), + KEY `fk_rel_protocolo_assunto_uni` (`id_unidade`), + KEY `fk_rel_prot_assunto_protocolo` (`id_protocolo`), + CONSTRAINT `fk_rel_prot_assunto_assunto` FOREIGN KEY (`id_assunto_proxy`) REFERENCES `assunto_proxy` (`id_assunto_proxy`), + CONSTRAINT `fk_rel_prot_assunto_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_rel_protocolo_assunto_uni` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_protocolo_assunto` +-- + +LOCK TABLES `rel_protocolo_assunto` WRITE; +/*!40000 ALTER TABLE `rel_protocolo_assunto` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_protocolo_assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_protocolo_atributo` +-- + +DROP TABLE IF EXISTS `rel_protocolo_atributo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_protocolo_atributo` ( + `id_protocolo` bigint(20) NOT NULL, + `id_atributo` int(11) NOT NULL, + `valor` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_protocolo`,`id_atributo`), + KEY `fk_rel_prot_atributo_atributo` (`id_atributo`), + KEY `fk_rel_prot_atributo_protocolo` (`id_protocolo`), + CONSTRAINT `fk_rel_prot_atributo_atributo` FOREIGN KEY (`id_atributo`) REFERENCES `atributo` (`id_atributo`), + CONSTRAINT `fk_rel_prot_atributo_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_protocolo_atributo` +-- + +LOCK TABLES `rel_protocolo_atributo` WRITE; +/*!40000 ALTER TABLE `rel_protocolo_atributo` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_protocolo_atributo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_protocolo_protocolo` +-- + +DROP TABLE IF EXISTS `rel_protocolo_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_protocolo_protocolo` ( + `id_protocolo_1` bigint(20) NOT NULL, + `id_protocolo_2` bigint(20) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `sta_associacao` char(1) NOT NULL, + `dth_associacao` datetime NOT NULL, + `sequencia` int(11) NOT NULL, + `sin_ciencia` char(1) NOT NULL, + `id_rel_protocolo_protocolo` bigint(20) NOT NULL, + PRIMARY KEY (`id_rel_protocolo_protocolo`), + KEY `i01_rel_protocolo_protocolo` (`id_protocolo_2`,`id_protocolo_1`,`sta_associacao`), + KEY `fk_protocolo_protocolo_1` (`id_protocolo_1`), + KEY `fk_protocolo_protocolo_2` (`id_protocolo_2`), + KEY `fk_rel_proc_doc_usuario` (`id_usuario`), + KEY `fk_rel_protocolo_protocolo_uni` (`id_unidade`), + CONSTRAINT `fk_protocolo_protocolo_1` FOREIGN KEY (`id_protocolo_1`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_protocolo_protocolo_2` FOREIGN KEY (`id_protocolo_2`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_rel_proc_doc_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_protocolo_protocolo_uni` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_protocolo_protocolo` +-- + +LOCK TABLES `rel_protocolo_protocolo` WRITE; +/*!40000 ALTER TABLE `rel_protocolo_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_protocolo_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_secao_mod_cj_estilos_item` +-- + +DROP TABLE IF EXISTS `rel_secao_mod_cj_estilos_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_secao_mod_cj_estilos_item` ( + `id_secao_modelo` int(11) NOT NULL, + `id_conjunto_estilos_item` int(11) NOT NULL, + `sin_padrao` char(1) NOT NULL, + PRIMARY KEY (`id_secao_modelo`,`id_conjunto_estilos_item`), + KEY `fk_re_secmod_cj_est_i_cj_est_i` (`id_conjunto_estilos_item`), + KEY `fk_rel_secmod_cj_est_it_secmod` (`id_secao_modelo`), + CONSTRAINT `fk_re_secmod_cj_est_i_cj_est_i` FOREIGN KEY (`id_conjunto_estilos_item`) REFERENCES `conjunto_estilos_item` (`id_conjunto_estilos_item`), + CONSTRAINT `fk_rel_secmod_cj_est_it_secmod` FOREIGN KEY (`id_secao_modelo`) REFERENCES `secao_modelo` (`id_secao_modelo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_secao_mod_cj_estilos_item` +-- + +LOCK TABLES `rel_secao_mod_cj_estilos_item` WRITE; +/*!40000 ALTER TABLE `rel_secao_mod_cj_estilos_item` DISABLE KEYS */; +INSERT INTO `rel_secao_mod_cj_estilos_item` VALUES (162,8,'S'),(162,23,'S'),(162,38,'S'),(162,53,'S'),(162,68,'S'),(162,83,'S'),(162,98,'S'),(162,113,'S'),(162,128,'S'),(162,143,'S'),(162,158,'S'),(162,173,'S'),(162,188,'S'),(162,203,'S'),(162,218,'S'),(162,233,'S'),(162,248,'S'),(162,263,'S'),(162,278,'S'),(162,294,'S'),(162,310,'S'),(162,326,'S'),(162,342,'S'),(162,359,'S'),(162,376,'S'),(162,393,'S'),(162,410,'S'),(162,427,'S'),(162,444,'S'),(162,462,'S'),(162,481,'S'),(162,501,'S'),(162,521,'S'),(162,538,'S'),(162,559,'S'),(162,581,'S'),(162,604,'S'),(162,628,'S'),(162,653,'S'),(162,679,'S'),(162,706,'S'),(162,734,'S'),(162,763,'S'),(162,793,'S'),(162,824,'S'),(162,856,'S'),(162,889,'S'),(162,923,'S'),(162,958,'S'),(162,994,'S'),(162,1031,'S'),(162,1068,'S'),(162,1106,'S'),(162,1144,'S'),(162,1181,'S'),(162,1218,'S'),(162,1255,'S'),(162,1292,'S'),(162,1330,'S'),(162,1369,'S'),(162,1409,'S'),(162,1449,'S'),(162,1489,'S'),(162,1529,'S'),(162,1570,'S'),(162,1610,'S'),(163,5,'S'),(163,20,'S'),(163,35,'S'),(163,50,'S'),(163,65,'S'),(163,80,'S'),(163,95,'S'),(163,110,'S'),(163,125,'S'),(163,140,'S'),(163,155,'S'),(163,170,'S'),(163,185,'S'),(163,200,'S'),(163,215,'S'),(163,230,'S'),(163,245,'S'),(163,260,'S'),(163,275,'S'),(163,291,'S'),(163,307,'S'),(163,323,'S'),(163,339,'S'),(163,356,'S'),(163,373,'S'),(163,390,'S'),(163,407,'S'),(163,424,'S'),(163,441,'S'),(163,459,'S'),(163,478,'S'),(163,498,'S'),(163,518,'S'),(163,535,'S'),(163,556,'S'),(163,578,'S'),(163,601,'S'),(163,625,'S'),(163,650,'S'),(163,676,'S'),(163,703,'S'),(163,731,'S'),(163,760,'S'),(163,790,'S'),(163,821,'S'),(163,853,'S'),(163,886,'S'),(163,920,'S'),(163,955,'S'),(163,991,'S'),(163,1028,'S'),(163,1065,'S'),(163,1103,'S'),(163,1141,'S'),(163,1179,'S'),(163,1216,'S'),(163,1253,'S'),(163,1290,'S'),(163,1328,'S'),(163,1367,'S'),(163,1407,'S'),(163,1447,'S'),(163,1487,'S'),(163,1527,'S'),(163,1568,'S'),(163,1608,'S'),(164,1,'N'),(164,2,'N'),(164,3,'N'),(164,4,'N'),(164,5,'S'),(164,8,'N'),(164,9,'N'),(164,10,'N'),(164,11,'N'),(164,12,'N'),(164,13,'N'),(164,14,'N'),(164,15,'N'),(164,16,'N'),(164,17,'N'),(164,18,'N'),(164,19,'N'),(164,20,'S'),(164,23,'N'),(164,24,'N'),(164,25,'N'),(164,26,'N'),(164,27,'N'),(164,28,'N'),(164,29,'N'),(164,30,'N'),(164,31,'N'),(164,32,'N'),(164,33,'N'),(164,34,'N'),(164,35,'S'),(164,38,'N'),(164,39,'N'),(164,40,'N'),(164,41,'N'),(164,42,'N'),(164,43,'N'),(164,44,'N'),(164,45,'N'),(164,46,'N'),(164,47,'N'),(164,48,'N'),(164,49,'N'),(164,50,'S'),(164,53,'N'),(164,54,'N'),(164,55,'N'),(164,56,'N'),(164,57,'N'),(164,58,'N'),(164,59,'N'),(164,60,'N'),(164,61,'N'),(164,62,'N'),(164,63,'N'),(164,64,'N'),(164,65,'S'),(164,68,'N'),(164,69,'N'),(164,70,'N'),(164,71,'N'),(164,72,'N'),(164,73,'N'),(164,74,'N'),(164,75,'N'),(164,76,'N'),(164,77,'N'),(164,78,'N'),(164,79,'N'),(164,80,'S'),(164,83,'N'),(164,84,'N'),(164,85,'N'),(164,86,'N'),(164,87,'N'),(164,88,'N'),(164,89,'N'),(164,90,'N'),(164,91,'N'),(164,92,'N'),(164,93,'N'),(164,94,'N'),(164,95,'S'),(164,98,'N'),(164,99,'N'),(164,100,'N'),(164,101,'N'),(164,102,'N'),(164,103,'N'),(164,104,'N'),(164,105,'N'),(164,106,'N'),(164,107,'N'),(164,108,'N'),(164,109,'N'),(164,110,'S'),(164,113,'N'),(164,114,'N'),(164,115,'N'),(164,116,'N'),(164,117,'N'),(164,118,'N'),(164,119,'N'),(164,120,'N'),(164,121,'N'),(164,122,'N'),(164,123,'N'),(164,124,'N'),(164,125,'S'),(164,128,'N'),(164,129,'N'),(164,130,'N'),(164,131,'N'),(164,132,'N'),(164,133,'N'),(164,134,'N'),(164,135,'N'),(164,136,'N'),(164,137,'N'),(164,138,'N'),(164,139,'N'),(164,140,'S'),(164,143,'N'),(164,144,'N'),(164,145,'N'),(164,146,'N'),(164,147,'N'),(164,148,'N'),(164,149,'N'),(164,150,'N'),(164,151,'N'),(164,152,'N'),(164,153,'N'),(164,154,'N'),(164,155,'S'),(164,158,'N'),(164,159,'N'),(164,160,'N'),(164,161,'N'),(164,162,'N'),(164,163,'N'),(164,164,'N'),(164,165,'N'),(164,166,'N'),(164,167,'N'),(164,168,'N'),(164,169,'N'),(164,170,'S'),(164,173,'N'),(164,174,'N'),(164,175,'N'),(164,176,'N'),(164,177,'N'),(164,178,'N'),(164,179,'N'),(164,180,'N'),(164,181,'N'),(164,182,'N'),(164,183,'N'),(164,184,'N'),(164,185,'S'),(164,188,'N'),(164,189,'N'),(164,190,'N'),(164,191,'N'),(164,192,'N'),(164,193,'N'),(164,194,'N'),(164,195,'N'),(164,196,'N'),(164,197,'N'),(164,198,'N'),(164,199,'N'),(164,200,'S'),(164,203,'N'),(164,204,'N'),(164,205,'N'),(164,206,'N'),(164,207,'N'),(164,208,'N'),(164,209,'N'),(164,210,'N'),(164,211,'N'),(164,212,'N'),(164,213,'N'),(164,214,'N'),(164,215,'S'),(164,218,'N'),(164,219,'N'),(164,220,'N'),(164,221,'N'),(164,222,'N'),(164,223,'N'),(164,224,'N'),(164,225,'N'),(164,226,'N'),(164,227,'N'),(164,228,'N'),(164,229,'N'),(164,230,'S'),(164,233,'N'),(164,234,'N'),(164,235,'N'),(164,236,'N'),(164,237,'N'),(164,238,'N'),(164,239,'N'),(164,240,'N'),(164,241,'N'),(164,242,'N'),(164,243,'N'),(164,244,'N'),(164,245,'S'),(164,248,'N'),(164,249,'N'),(164,250,'N'),(164,251,'N'),(164,252,'N'),(164,253,'N'),(164,254,'N'),(164,255,'N'),(164,256,'N'),(164,257,'N'),(164,258,'N'),(164,259,'N'),(164,260,'S'),(164,263,'N'),(164,264,'N'),(164,265,'N'),(164,266,'N'),(164,267,'N'),(164,268,'N'),(164,269,'N'),(164,270,'N'),(164,271,'N'),(164,272,'N'),(164,273,'N'),(164,274,'N'),(164,275,'S'),(164,278,'N'),(164,279,'N'),(164,280,'N'),(164,281,'N'),(164,282,'N'),(164,283,'N'),(164,284,'N'),(164,285,'N'),(164,286,'N'),(164,287,'N'),(164,288,'N'),(164,289,'N'),(164,290,'N'),(164,291,'S'),(164,294,'N'),(164,295,'N'),(164,296,'N'),(164,297,'N'),(164,298,'N'),(164,299,'N'),(164,300,'N'),(164,301,'N'),(164,303,'N'),(164,304,'N'),(164,305,'N'),(164,306,'N'),(164,307,'S'),(164,310,'N'),(164,311,'N'),(164,312,'N'),(164,313,'N'),(164,314,'N'),(164,315,'N'),(164,316,'N'),(164,317,'N'),(164,318,'N'),(164,319,'N'),(164,320,'N'),(164,321,'N'),(164,322,'N'),(164,323,'S'),(164,326,'N'),(164,327,'N'),(164,328,'N'),(164,329,'N'),(164,330,'N'),(164,331,'N'),(164,332,'N'),(164,333,'N'),(164,334,'N'),(164,335,'N'),(164,336,'N'),(164,337,'N'),(164,338,'N'),(164,339,'S'),(164,342,'N'),(164,343,'N'),(164,344,'N'),(164,345,'N'),(164,346,'N'),(164,347,'N'),(164,348,'N'),(164,349,'N'),(164,350,'N'),(164,352,'N'),(164,353,'N'),(164,354,'N'),(164,355,'N'),(164,356,'S'),(164,359,'N'),(164,360,'N'),(164,361,'N'),(164,362,'N'),(164,363,'N'),(164,364,'N'),(164,365,'N'),(164,366,'N'),(164,367,'N'),(164,369,'N'),(164,370,'N'),(164,371,'N'),(164,372,'N'),(164,373,'S'),(164,376,'N'),(164,377,'N'),(164,378,'N'),(164,379,'N'),(164,380,'N'),(164,381,'N'),(164,382,'N'),(164,383,'N'),(164,384,'N'),(164,386,'N'),(164,387,'N'),(164,388,'N'),(164,389,'N'),(164,390,'S'),(164,393,'N'),(164,394,'N'),(164,395,'N'),(164,396,'N'),(164,397,'N'),(164,398,'N'),(164,399,'N'),(164,400,'N'),(164,401,'N'),(164,403,'N'),(164,404,'N'),(164,405,'N'),(164,406,'N'),(164,407,'S'),(164,410,'N'),(164,411,'N'),(164,412,'N'),(164,413,'N'),(164,414,'N'),(164,415,'N'),(164,416,'N'),(164,417,'N'),(164,418,'N'),(164,420,'N'),(164,421,'N'),(164,422,'N'),(164,423,'N'),(164,424,'S'),(164,427,'N'),(164,428,'N'),(164,429,'N'),(164,430,'N'),(164,431,'N'),(164,432,'N'),(164,433,'N'),(164,434,'N'),(164,435,'N'),(164,437,'N'),(164,438,'N'),(164,439,'N'),(164,440,'N'),(164,441,'S'),(164,444,'N'),(164,445,'N'),(164,446,'N'),(164,447,'N'),(164,448,'N'),(164,449,'N'),(164,450,'N'),(164,451,'N'),(164,452,'N'),(164,453,'N'),(164,454,'N'),(164,455,'N'),(164,456,'N'),(164,457,'N'),(164,458,'N'),(164,459,'S'),(164,462,'N'),(164,463,'N'),(164,464,'N'),(164,465,'N'),(164,466,'N'),(164,467,'N'),(164,468,'N'),(164,469,'N'),(164,470,'N'),(164,471,'N'),(164,472,'N'),(164,474,'N'),(164,475,'N'),(164,476,'N'),(164,477,'N'),(164,478,'S'),(164,481,'N'),(164,482,'N'),(164,483,'N'),(164,484,'N'),(164,485,'N'),(164,486,'N'),(164,487,'N'),(164,488,'N'),(164,489,'N'),(164,490,'N'),(164,491,'N'),(164,494,'N'),(164,495,'N'),(164,496,'N'),(164,497,'N'),(164,498,'S'),(164,501,'N'),(164,502,'N'),(164,503,'N'),(164,504,'N'),(164,505,'N'),(164,506,'N'),(164,507,'N'),(164,508,'N'),(164,509,'N'),(164,510,'N'),(164,511,'N'),(164,514,'N'),(164,515,'N'),(164,516,'N'),(164,517,'N'),(164,518,'S'),(164,521,'N'),(164,522,'N'),(164,523,'N'),(164,524,'N'),(164,525,'N'),(164,526,'N'),(164,527,'N'),(164,528,'N'),(164,529,'N'),(164,530,'N'),(164,531,'N'),(164,532,'N'),(164,533,'N'),(164,534,'N'),(164,535,'S'),(164,538,'N'),(164,539,'N'),(164,540,'N'),(164,541,'N'),(164,542,'N'),(164,543,'N'),(164,544,'N'),(164,545,'N'),(164,546,'N'),(164,547,'N'),(164,548,'N'),(164,552,'N'),(164,553,'N'),(164,554,'N'),(164,555,'N'),(164,556,'S'),(164,559,'N'),(164,560,'N'),(164,561,'N'),(164,562,'N'),(164,563,'N'),(164,564,'N'),(164,565,'N'),(164,566,'N'),(164,567,'N'),(164,568,'N'),(164,569,'N'),(164,574,'N'),(164,575,'N'),(164,576,'N'),(164,577,'N'),(164,578,'S'),(164,581,'N'),(164,582,'N'),(164,583,'N'),(164,584,'N'),(164,585,'N'),(164,586,'N'),(164,587,'N'),(164,588,'N'),(164,589,'N'),(164,590,'N'),(164,591,'N'),(164,597,'N'),(164,598,'N'),(164,599,'N'),(164,600,'N'),(164,601,'S'),(164,604,'N'),(164,605,'N'),(164,606,'N'),(164,607,'N'),(164,608,'N'),(164,609,'N'),(164,610,'N'),(164,611,'N'),(164,612,'N'),(164,613,'N'),(164,614,'N'),(164,621,'N'),(164,622,'N'),(164,623,'N'),(164,624,'N'),(164,625,'S'),(164,628,'N'),(164,629,'N'),(164,630,'N'),(164,631,'N'),(164,632,'N'),(164,633,'N'),(164,634,'N'),(164,635,'N'),(164,636,'N'),(164,637,'N'),(164,638,'N'),(164,646,'N'),(164,647,'N'),(164,648,'N'),(164,649,'N'),(164,650,'S'),(164,653,'N'),(164,654,'N'),(164,655,'N'),(164,656,'N'),(164,657,'N'),(164,658,'N'),(164,659,'N'),(164,660,'N'),(164,661,'N'),(164,662,'N'),(164,663,'N'),(164,672,'N'),(164,673,'N'),(164,674,'N'),(164,675,'N'),(164,676,'S'),(164,679,'N'),(164,680,'N'),(164,681,'N'),(164,682,'N'),(164,683,'N'),(164,684,'N'),(164,685,'N'),(164,686,'N'),(164,687,'N'),(164,688,'N'),(164,689,'N'),(164,699,'N'),(164,700,'N'),(164,701,'N'),(164,702,'N'),(164,703,'S'),(164,706,'N'),(164,707,'N'),(164,708,'N'),(164,709,'N'),(164,710,'N'),(164,711,'N'),(164,712,'N'),(164,713,'N'),(164,714,'N'),(164,715,'N'),(164,716,'N'),(164,727,'N'),(164,728,'N'),(164,729,'N'),(164,730,'N'),(164,731,'S'),(164,734,'N'),(164,735,'N'),(164,736,'N'),(164,737,'N'),(164,738,'N'),(164,739,'N'),(164,740,'N'),(164,741,'N'),(164,742,'N'),(164,743,'N'),(164,744,'N'),(164,756,'N'),(164,757,'N'),(164,758,'N'),(164,759,'N'),(164,760,'S'),(164,763,'N'),(164,764,'N'),(164,765,'N'),(164,766,'N'),(164,767,'N'),(164,768,'N'),(164,769,'N'),(164,770,'N'),(164,771,'N'),(164,772,'N'),(164,773,'N'),(164,786,'N'),(164,787,'N'),(164,788,'N'),(164,789,'N'),(164,790,'S'),(164,793,'N'),(164,794,'N'),(164,795,'N'),(164,796,'N'),(164,797,'N'),(164,798,'N'),(164,799,'N'),(164,800,'N'),(164,801,'N'),(164,802,'N'),(164,803,'N'),(164,817,'N'),(164,818,'N'),(164,819,'N'),(164,820,'N'),(164,821,'S'),(164,824,'N'),(164,825,'N'),(164,826,'N'),(164,827,'N'),(164,828,'N'),(164,829,'N'),(164,830,'N'),(164,831,'N'),(164,832,'N'),(164,833,'N'),(164,834,'N'),(164,849,'N'),(164,850,'N'),(164,851,'N'),(164,852,'N'),(164,853,'S'),(164,856,'N'),(164,857,'N'),(164,858,'N'),(164,859,'N'),(164,860,'N'),(164,861,'N'),(164,862,'N'),(164,863,'N'),(164,864,'N'),(164,865,'N'),(164,866,'N'),(164,882,'N'),(164,883,'N'),(164,884,'N'),(164,885,'N'),(164,886,'S'),(164,889,'N'),(164,890,'N'),(164,891,'N'),(164,892,'N'),(164,893,'N'),(164,894,'N'),(164,895,'N'),(164,896,'N'),(164,897,'N'),(164,898,'N'),(164,899,'N'),(164,916,'N'),(164,917,'N'),(164,918,'N'),(164,919,'N'),(164,920,'S'),(164,923,'N'),(164,924,'N'),(164,925,'N'),(164,926,'N'),(164,927,'N'),(164,928,'N'),(164,929,'N'),(164,930,'N'),(164,931,'N'),(164,932,'N'),(164,933,'N'),(164,951,'N'),(164,952,'N'),(164,953,'N'),(164,954,'N'),(164,955,'S'),(164,958,'N'),(164,959,'N'),(164,960,'N'),(164,961,'N'),(164,962,'N'),(164,963,'N'),(164,964,'N'),(164,965,'N'),(164,966,'N'),(164,967,'N'),(164,968,'N'),(164,987,'N'),(164,988,'N'),(164,989,'N'),(164,990,'N'),(164,991,'S'),(164,994,'N'),(164,995,'N'),(164,996,'N'),(164,997,'N'),(164,998,'N'),(164,999,'N'),(164,1000,'N'),(164,1001,'N'),(164,1002,'N'),(164,1003,'N'),(164,1004,'N'),(164,1024,'N'),(164,1025,'N'),(164,1026,'N'),(164,1027,'N'),(164,1028,'S'),(164,1031,'N'),(164,1032,'N'),(164,1033,'N'),(164,1034,'N'),(164,1035,'N'),(164,1036,'N'),(164,1037,'N'),(164,1038,'N'),(164,1039,'N'),(164,1040,'N'),(164,1041,'N'),(164,1061,'N'),(164,1062,'N'),(164,1063,'N'),(164,1064,'N'),(164,1065,'S'),(164,1068,'N'),(164,1069,'N'),(164,1070,'N'),(164,1071,'N'),(164,1072,'N'),(164,1073,'N'),(164,1074,'N'),(164,1075,'N'),(164,1076,'N'),(164,1077,'N'),(164,1078,'N'),(164,1099,'N'),(164,1100,'N'),(164,1101,'N'),(164,1102,'N'),(164,1103,'S'),(164,1104,'N'),(164,1106,'N'),(164,1107,'N'),(164,1108,'N'),(164,1109,'N'),(164,1110,'N'),(164,1111,'N'),(164,1112,'N'),(164,1113,'N'),(164,1114,'N'),(164,1115,'N'),(164,1116,'N'),(164,1137,'N'),(164,1138,'N'),(164,1139,'N'),(164,1140,'N'),(164,1141,'S'),(164,1142,'N'),(164,1144,'N'),(164,1145,'N'),(164,1146,'N'),(164,1147,'N'),(164,1148,'N'),(164,1149,'N'),(164,1150,'N'),(164,1151,'N'),(164,1152,'N'),(164,1153,'N'),(164,1154,'N'),(164,1175,'N'),(164,1176,'N'),(164,1177,'N'),(164,1178,'N'),(164,1179,'S'),(164,1180,'N'),(164,1181,'N'),(164,1182,'N'),(164,1183,'N'),(164,1184,'N'),(164,1185,'N'),(164,1186,'N'),(164,1187,'N'),(164,1188,'N'),(164,1189,'N'),(164,1190,'N'),(164,1191,'N'),(164,1212,'N'),(164,1213,'N'),(164,1214,'N'),(164,1215,'N'),(164,1216,'S'),(164,1217,'N'),(164,1218,'N'),(164,1219,'N'),(164,1220,'N'),(164,1221,'N'),(164,1222,'N'),(164,1223,'N'),(164,1224,'N'),(164,1225,'N'),(164,1226,'N'),(164,1227,'N'),(164,1228,'N'),(164,1249,'N'),(164,1250,'N'),(164,1251,'N'),(164,1252,'N'),(164,1253,'S'),(164,1254,'N'),(164,1255,'N'),(164,1256,'N'),(164,1257,'N'),(164,1258,'N'),(164,1259,'N'),(164,1260,'N'),(164,1261,'N'),(164,1262,'N'),(164,1263,'N'),(164,1264,'N'),(164,1265,'N'),(164,1286,'N'),(164,1287,'N'),(164,1288,'N'),(164,1289,'N'),(164,1290,'S'),(164,1291,'N'),(164,1292,'N'),(164,1293,'N'),(164,1294,'N'),(164,1295,'N'),(164,1296,'N'),(164,1297,'N'),(164,1298,'N'),(164,1299,'N'),(164,1300,'N'),(164,1301,'N'),(164,1302,'N'),(164,1324,'N'),(164,1325,'N'),(164,1326,'N'),(164,1327,'N'),(164,1328,'S'),(164,1329,'N'),(164,1330,'N'),(164,1331,'N'),(164,1332,'N'),(164,1333,'N'),(164,1334,'N'),(164,1335,'N'),(164,1336,'N'),(164,1337,'N'),(164,1338,'N'),(164,1339,'N'),(164,1340,'N'),(164,1363,'N'),(164,1364,'N'),(164,1365,'N'),(164,1366,'N'),(164,1367,'S'),(164,1368,'N'),(164,1369,'N'),(164,1370,'N'),(164,1371,'N'),(164,1372,'N'),(164,1373,'N'),(164,1374,'N'),(164,1375,'N'),(164,1376,'N'),(164,1377,'N'),(164,1378,'N'),(164,1379,'N'),(164,1403,'N'),(164,1404,'N'),(164,1405,'N'),(164,1406,'N'),(164,1407,'S'),(164,1408,'N'),(164,1409,'N'),(164,1410,'N'),(164,1411,'N'),(164,1412,'N'),(164,1413,'N'),(164,1414,'N'),(164,1415,'N'),(164,1416,'N'),(164,1417,'N'),(164,1418,'N'),(164,1419,'N'),(164,1443,'N'),(164,1444,'N'),(164,1445,'N'),(164,1446,'N'),(164,1447,'S'),(164,1448,'N'),(164,1449,'N'),(164,1450,'N'),(164,1451,'N'),(164,1452,'N'),(164,1453,'N'),(164,1454,'N'),(164,1455,'N'),(164,1456,'N'),(164,1457,'N'),(164,1458,'N'),(164,1459,'N'),(164,1483,'N'),(164,1484,'N'),(164,1485,'N'),(164,1486,'N'),(164,1487,'S'),(164,1488,'N'),(164,1489,'N'),(164,1490,'N'),(164,1491,'N'),(164,1492,'N'),(164,1493,'N'),(164,1494,'N'),(164,1495,'N'),(164,1496,'N'),(164,1497,'N'),(164,1498,'N'),(164,1499,'N'),(164,1523,'N'),(164,1524,'N'),(164,1525,'N'),(164,1526,'N'),(164,1527,'S'),(164,1528,'N'),(164,1529,'N'),(164,1531,'N'),(164,1533,'N'),(164,1534,'N'),(164,1535,'N'),(164,1536,'N'),(164,1537,'N'),(164,1538,'N'),(164,1539,'N'),(164,1564,'N'),(164,1565,'N'),(164,1566,'N'),(164,1567,'N'),(164,1568,'S'),(164,1569,'N'),(164,1570,'N'),(164,1571,'N'),(164,1573,'N'),(164,1574,'N'),(164,1575,'N'),(164,1576,'N'),(164,1577,'N'),(164,1578,'N'),(164,1579,'N'),(164,1604,'N'),(164,1605,'N'),(164,1606,'N'),(164,1607,'N'),(164,1608,'S'),(164,1609,'N'),(164,1610,'N'),(164,1611,'N'),(164,1612,'N'),(164,1613,'N'),(164,1614,'N'),(164,1615,'N'),(164,1616,'N'),(164,1617,'N'),(164,1618,'N'),(166,8,'S'),(166,23,'S'),(166,38,'S'),(166,53,'S'),(166,68,'S'),(166,83,'S'),(166,98,'S'),(166,113,'S'),(166,128,'S'),(166,143,'S'),(166,158,'S'),(166,173,'S'),(166,188,'S'),(166,203,'S'),(166,218,'S'),(166,233,'S'),(166,248,'S'),(166,263,'S'),(166,278,'S'),(166,294,'S'),(166,310,'S'),(166,326,'S'),(166,342,'S'),(166,359,'S'),(166,376,'S'),(166,393,'S'),(166,410,'S'),(166,427,'S'),(166,444,'S'),(166,462,'S'),(166,481,'S'),(166,501,'S'),(166,521,'S'),(166,538,'S'),(166,559,'S'),(166,581,'S'),(166,604,'S'),(166,628,'S'),(166,653,'S'),(166,679,'S'),(166,706,'S'),(166,734,'S'),(166,763,'S'),(166,793,'S'),(166,824,'S'),(166,856,'S'),(166,889,'S'),(166,923,'S'),(166,958,'S'),(166,994,'S'),(166,1031,'S'),(166,1068,'S'),(166,1106,'S'),(166,1144,'S'),(166,1181,'S'),(166,1218,'S'),(166,1255,'S'),(166,1292,'S'),(166,1330,'S'),(166,1369,'S'),(166,1409,'S'),(166,1449,'S'),(166,1489,'S'),(166,1529,'S'),(166,1570,'S'),(166,1610,'S'),(167,1,'N'),(167,2,'N'),(167,3,'N'),(167,4,'N'),(167,5,'S'),(167,8,'N'),(167,9,'N'),(167,10,'N'),(167,11,'N'),(167,12,'N'),(167,13,'N'),(167,14,'N'),(167,15,'N'),(167,16,'N'),(167,17,'N'),(167,18,'N'),(167,19,'N'),(167,20,'S'),(167,23,'N'),(167,24,'N'),(167,25,'N'),(167,26,'N'),(167,27,'N'),(167,28,'N'),(167,29,'N'),(167,30,'N'),(167,31,'N'),(167,32,'N'),(167,33,'N'),(167,34,'N'),(167,35,'S'),(167,38,'N'),(167,39,'N'),(167,40,'N'),(167,41,'N'),(167,42,'N'),(167,43,'N'),(167,44,'N'),(167,45,'N'),(167,46,'N'),(167,47,'N'),(167,48,'N'),(167,49,'N'),(167,50,'S'),(167,53,'N'),(167,54,'N'),(167,55,'N'),(167,56,'N'),(167,57,'N'),(167,58,'N'),(167,59,'N'),(167,60,'N'),(167,61,'N'),(167,62,'N'),(167,63,'N'),(167,64,'N'),(167,65,'S'),(167,68,'N'),(167,69,'N'),(167,70,'N'),(167,71,'N'),(167,72,'N'),(167,73,'N'),(167,74,'N'),(167,75,'N'),(167,76,'N'),(167,77,'N'),(167,78,'N'),(167,79,'N'),(167,80,'S'),(167,83,'N'),(167,84,'N'),(167,85,'N'),(167,86,'N'),(167,87,'N'),(167,88,'N'),(167,89,'N'),(167,90,'N'),(167,91,'N'),(167,92,'N'),(167,93,'N'),(167,94,'N'),(167,95,'S'),(167,98,'N'),(167,99,'N'),(167,100,'N'),(167,101,'N'),(167,102,'N'),(167,103,'N'),(167,104,'N'),(167,105,'N'),(167,106,'N'),(167,107,'N'),(167,108,'N'),(167,109,'N'),(167,110,'S'),(167,113,'N'),(167,114,'N'),(167,115,'N'),(167,116,'N'),(167,117,'N'),(167,118,'N'),(167,119,'N'),(167,120,'N'),(167,121,'N'),(167,122,'N'),(167,123,'N'),(167,124,'N'),(167,125,'S'),(167,128,'N'),(167,129,'N'),(167,130,'N'),(167,131,'N'),(167,132,'N'),(167,133,'N'),(167,134,'N'),(167,135,'N'),(167,136,'N'),(167,137,'N'),(167,138,'N'),(167,139,'N'),(167,140,'S'),(167,143,'N'),(167,144,'N'),(167,145,'N'),(167,146,'N'),(167,147,'N'),(167,148,'N'),(167,149,'N'),(167,150,'N'),(167,151,'N'),(167,152,'N'),(167,153,'N'),(167,154,'N'),(167,155,'S'),(167,158,'N'),(167,159,'N'),(167,160,'N'),(167,161,'N'),(167,162,'N'),(167,163,'N'),(167,164,'N'),(167,165,'N'),(167,166,'N'),(167,167,'N'),(167,168,'N'),(167,169,'N'),(167,170,'S'),(167,173,'N'),(167,174,'N'),(167,175,'N'),(167,176,'N'),(167,177,'N'),(167,178,'N'),(167,179,'N'),(167,180,'N'),(167,181,'N'),(167,182,'N'),(167,183,'N'),(167,184,'N'),(167,185,'S'),(167,188,'N'),(167,189,'N'),(167,190,'N'),(167,191,'N'),(167,192,'N'),(167,193,'N'),(167,194,'N'),(167,195,'N'),(167,196,'N'),(167,197,'N'),(167,198,'N'),(167,199,'N'),(167,200,'S'),(167,203,'N'),(167,204,'N'),(167,205,'N'),(167,206,'N'),(167,207,'N'),(167,208,'N'),(167,209,'N'),(167,210,'N'),(167,211,'N'),(167,212,'N'),(167,213,'N'),(167,214,'N'),(167,215,'S'),(167,218,'N'),(167,219,'N'),(167,220,'N'),(167,221,'N'),(167,222,'N'),(167,223,'N'),(167,224,'N'),(167,225,'N'),(167,226,'N'),(167,227,'N'),(167,228,'N'),(167,229,'N'),(167,230,'S'),(167,233,'N'),(167,234,'N'),(167,235,'N'),(167,236,'N'),(167,237,'N'),(167,238,'N'),(167,239,'N'),(167,240,'N'),(167,241,'N'),(167,242,'N'),(167,243,'N'),(167,244,'N'),(167,245,'S'),(167,248,'N'),(167,249,'N'),(167,250,'N'),(167,251,'N'),(167,252,'N'),(167,253,'N'),(167,254,'N'),(167,255,'N'),(167,256,'N'),(167,257,'N'),(167,258,'N'),(167,259,'N'),(167,260,'S'),(167,263,'N'),(167,264,'N'),(167,265,'N'),(167,266,'N'),(167,267,'N'),(167,268,'N'),(167,269,'N'),(167,270,'N'),(167,271,'N'),(167,272,'N'),(167,273,'N'),(167,274,'N'),(167,275,'S'),(167,278,'N'),(167,279,'N'),(167,280,'N'),(167,281,'N'),(167,282,'N'),(167,283,'N'),(167,284,'N'),(167,285,'N'),(167,286,'N'),(167,287,'N'),(167,288,'N'),(167,289,'N'),(167,290,'N'),(167,291,'S'),(167,294,'N'),(167,295,'N'),(167,296,'N'),(167,297,'N'),(167,298,'N'),(167,299,'N'),(167,300,'N'),(167,301,'N'),(167,303,'N'),(167,304,'N'),(167,305,'N'),(167,306,'N'),(167,307,'S'),(167,310,'N'),(167,311,'N'),(167,312,'N'),(167,313,'N'),(167,314,'N'),(167,315,'N'),(167,316,'N'),(167,317,'N'),(167,318,'N'),(167,319,'N'),(167,320,'N'),(167,321,'N'),(167,322,'N'),(167,323,'S'),(167,326,'N'),(167,327,'N'),(167,328,'N'),(167,329,'N'),(167,330,'N'),(167,331,'N'),(167,332,'N'),(167,333,'N'),(167,334,'N'),(167,335,'N'),(167,336,'N'),(167,337,'N'),(167,338,'N'),(167,339,'S'),(167,342,'N'),(167,343,'N'),(167,344,'N'),(167,345,'N'),(167,346,'N'),(167,347,'N'),(167,348,'N'),(167,349,'N'),(167,350,'N'),(167,352,'N'),(167,353,'N'),(167,354,'N'),(167,355,'N'),(167,356,'S'),(167,359,'N'),(167,360,'N'),(167,361,'N'),(167,362,'N'),(167,363,'N'),(167,364,'N'),(167,365,'N'),(167,366,'N'),(167,367,'N'),(167,369,'N'),(167,370,'N'),(167,371,'N'),(167,372,'N'),(167,373,'S'),(167,376,'N'),(167,377,'N'),(167,378,'N'),(167,379,'N'),(167,380,'N'),(167,381,'N'),(167,382,'N'),(167,383,'N'),(167,384,'N'),(167,386,'N'),(167,387,'N'),(167,388,'N'),(167,389,'N'),(167,390,'S'),(167,393,'N'),(167,394,'N'),(167,395,'N'),(167,396,'N'),(167,397,'N'),(167,398,'N'),(167,399,'N'),(167,400,'N'),(167,401,'N'),(167,403,'N'),(167,404,'N'),(167,405,'N'),(167,406,'N'),(167,407,'S'),(167,410,'N'),(167,411,'N'),(167,412,'N'),(167,413,'N'),(167,414,'N'),(167,415,'N'),(167,416,'N'),(167,417,'N'),(167,418,'N'),(167,420,'N'),(167,421,'N'),(167,422,'N'),(167,423,'N'),(167,424,'S'),(167,427,'N'),(167,428,'N'),(167,429,'N'),(167,430,'N'),(167,431,'N'),(167,432,'N'),(167,433,'N'),(167,434,'N'),(167,435,'N'),(167,437,'N'),(167,438,'N'),(167,439,'N'),(167,440,'N'),(167,441,'S'),(167,444,'N'),(167,445,'N'),(167,446,'N'),(167,447,'N'),(167,448,'N'),(167,449,'N'),(167,450,'N'),(167,451,'N'),(167,452,'N'),(167,453,'N'),(167,454,'N'),(167,455,'N'),(167,456,'N'),(167,457,'N'),(167,458,'N'),(167,459,'S'),(167,462,'N'),(167,463,'N'),(167,464,'N'),(167,465,'N'),(167,466,'N'),(167,467,'N'),(167,468,'N'),(167,469,'N'),(167,470,'N'),(167,471,'N'),(167,472,'N'),(167,474,'N'),(167,475,'N'),(167,476,'N'),(167,477,'N'),(167,478,'S'),(167,481,'N'),(167,482,'N'),(167,483,'N'),(167,484,'N'),(167,485,'N'),(167,486,'N'),(167,487,'N'),(167,488,'N'),(167,489,'N'),(167,490,'N'),(167,491,'N'),(167,494,'N'),(167,495,'N'),(167,496,'N'),(167,497,'N'),(167,498,'S'),(167,501,'N'),(167,502,'N'),(167,503,'N'),(167,504,'N'),(167,505,'N'),(167,506,'N'),(167,507,'N'),(167,508,'N'),(167,509,'N'),(167,510,'N'),(167,511,'N'),(167,514,'N'),(167,515,'N'),(167,516,'N'),(167,517,'N'),(167,518,'S'),(167,521,'N'),(167,522,'N'),(167,523,'N'),(167,524,'N'),(167,525,'N'),(167,526,'N'),(167,527,'N'),(167,528,'N'),(167,529,'N'),(167,530,'N'),(167,531,'N'),(167,532,'N'),(167,533,'N'),(167,534,'N'),(167,535,'S'),(167,538,'N'),(167,539,'N'),(167,540,'N'),(167,541,'N'),(167,542,'N'),(167,543,'N'),(167,544,'N'),(167,545,'N'),(167,546,'N'),(167,547,'N'),(167,548,'N'),(167,552,'N'),(167,553,'N'),(167,554,'N'),(167,555,'N'),(167,556,'S'),(167,559,'N'),(167,560,'N'),(167,561,'N'),(167,562,'N'),(167,563,'N'),(167,564,'N'),(167,565,'N'),(167,566,'N'),(167,567,'N'),(167,568,'N'),(167,569,'N'),(167,574,'N'),(167,575,'N'),(167,576,'N'),(167,577,'N'),(167,578,'S'),(167,581,'N'),(167,582,'N'),(167,583,'N'),(167,584,'N'),(167,585,'N'),(167,586,'N'),(167,587,'N'),(167,588,'N'),(167,589,'N'),(167,590,'N'),(167,591,'N'),(167,597,'N'),(167,598,'N'),(167,599,'N'),(167,600,'N'),(167,601,'S'),(167,604,'N'),(167,605,'N'),(167,606,'N'),(167,607,'N'),(167,608,'N'),(167,609,'N'),(167,610,'N'),(167,611,'N'),(167,612,'N'),(167,613,'N'),(167,614,'N'),(167,621,'N'),(167,622,'N'),(167,623,'N'),(167,624,'N'),(167,625,'S'),(167,628,'N'),(167,629,'N'),(167,630,'N'),(167,631,'N'),(167,632,'N'),(167,633,'N'),(167,634,'N'),(167,635,'N'),(167,636,'N'),(167,637,'N'),(167,638,'N'),(167,646,'N'),(167,647,'N'),(167,648,'N'),(167,649,'N'),(167,650,'S'),(167,653,'N'),(167,654,'N'),(167,655,'N'),(167,656,'N'),(167,657,'N'),(167,658,'N'),(167,659,'N'),(167,660,'N'),(167,661,'N'),(167,662,'N'),(167,663,'N'),(167,672,'N'),(167,673,'N'),(167,674,'N'),(167,675,'N'),(167,676,'S'),(167,679,'N'),(167,680,'N'),(167,681,'N'),(167,682,'N'),(167,683,'N'),(167,684,'N'),(167,685,'N'),(167,686,'N'),(167,687,'N'),(167,688,'N'),(167,689,'N'),(167,699,'N'),(167,700,'N'),(167,701,'N'),(167,702,'N'),(167,703,'S'),(167,706,'N'),(167,707,'N'),(167,708,'N'),(167,709,'N'),(167,710,'N'),(167,711,'N'),(167,712,'N'),(167,713,'N'),(167,714,'N'),(167,715,'N'),(167,716,'N'),(167,727,'N'),(167,728,'N'),(167,729,'N'),(167,730,'N'),(167,731,'S'),(167,734,'N'),(167,735,'N'),(167,736,'N'),(167,737,'N'),(167,738,'N'),(167,739,'N'),(167,740,'N'),(167,741,'N'),(167,742,'N'),(167,743,'N'),(167,744,'N'),(167,756,'N'),(167,757,'N'),(167,758,'N'),(167,759,'N'),(167,760,'S'),(167,763,'N'),(167,764,'N'),(167,765,'N'),(167,766,'N'),(167,767,'N'),(167,768,'N'),(167,769,'N'),(167,770,'N'),(167,771,'N'),(167,772,'N'),(167,773,'N'),(167,786,'N'),(167,787,'N'),(167,788,'N'),(167,789,'N'),(167,790,'S'),(167,793,'N'),(167,794,'N'),(167,795,'N'),(167,796,'N'),(167,797,'N'),(167,798,'N'),(167,799,'N'),(167,800,'N'),(167,801,'N'),(167,802,'N'),(167,803,'N'),(167,817,'N'),(167,818,'N'),(167,819,'N'),(167,820,'N'),(167,821,'S'),(167,824,'N'),(167,825,'N'),(167,826,'N'),(167,827,'N'),(167,828,'N'),(167,829,'N'),(167,830,'N'),(167,831,'N'),(167,832,'N'),(167,833,'N'),(167,834,'N'),(167,849,'N'),(167,850,'N'),(167,851,'N'),(167,852,'N'),(167,853,'S'),(167,856,'N'),(167,857,'N'),(167,858,'N'),(167,859,'N'),(167,860,'N'),(167,861,'N'),(167,862,'N'),(167,863,'N'),(167,864,'N'),(167,865,'N'),(167,866,'N'),(167,882,'N'),(167,883,'N'),(167,884,'N'),(167,885,'N'),(167,886,'S'),(167,889,'N'),(167,890,'N'),(167,891,'N'),(167,892,'N'),(167,893,'N'),(167,894,'N'),(167,895,'N'),(167,896,'N'),(167,897,'N'),(167,898,'N'),(167,899,'N'),(167,916,'N'),(167,917,'N'),(167,918,'N'),(167,919,'N'),(167,920,'S'),(167,923,'N'),(167,924,'N'),(167,925,'N'),(167,926,'N'),(167,927,'N'),(167,928,'N'),(167,929,'N'),(167,930,'N'),(167,931,'N'),(167,932,'N'),(167,933,'N'),(167,951,'N'),(167,952,'N'),(167,953,'N'),(167,954,'N'),(167,955,'S'),(167,958,'N'),(167,959,'N'),(167,960,'N'),(167,961,'N'),(167,962,'N'),(167,963,'N'),(167,964,'N'),(167,965,'N'),(167,966,'N'),(167,967,'N'),(167,968,'N'),(167,987,'N'),(167,988,'N'),(167,989,'N'),(167,990,'N'),(167,991,'S'),(167,994,'N'),(167,995,'N'),(167,996,'N'),(167,997,'N'),(167,998,'N'),(167,999,'N'),(167,1000,'N'),(167,1001,'N'),(167,1002,'N'),(167,1003,'N'),(167,1004,'N'),(167,1024,'N'),(167,1025,'N'),(167,1026,'N'),(167,1027,'N'),(167,1028,'S'),(167,1031,'N'),(167,1032,'N'),(167,1033,'N'),(167,1034,'N'),(167,1035,'N'),(167,1036,'N'),(167,1037,'N'),(167,1038,'N'),(167,1039,'N'),(167,1040,'N'),(167,1041,'N'),(167,1061,'N'),(167,1062,'N'),(167,1063,'N'),(167,1064,'N'),(167,1065,'S'),(167,1068,'N'),(167,1069,'N'),(167,1070,'N'),(167,1071,'N'),(167,1072,'N'),(167,1073,'N'),(167,1074,'N'),(167,1075,'N'),(167,1076,'N'),(167,1077,'N'),(167,1078,'N'),(167,1099,'N'),(167,1100,'N'),(167,1101,'N'),(167,1102,'N'),(167,1103,'S'),(167,1106,'N'),(167,1107,'N'),(167,1108,'N'),(167,1109,'N'),(167,1110,'N'),(167,1111,'N'),(167,1112,'N'),(167,1113,'N'),(167,1114,'N'),(167,1115,'N'),(167,1116,'N'),(167,1137,'N'),(167,1138,'N'),(167,1139,'N'),(167,1140,'N'),(167,1141,'S'),(167,1144,'N'),(167,1145,'N'),(167,1146,'N'),(167,1147,'N'),(167,1148,'N'),(167,1149,'N'),(167,1150,'N'),(167,1151,'N'),(167,1152,'N'),(167,1153,'N'),(167,1154,'N'),(167,1175,'N'),(167,1176,'N'),(167,1177,'N'),(167,1178,'N'),(167,1179,'S'),(167,1181,'N'),(167,1182,'N'),(167,1183,'N'),(167,1184,'N'),(167,1185,'N'),(167,1186,'N'),(167,1187,'N'),(167,1188,'N'),(167,1189,'N'),(167,1190,'N'),(167,1191,'N'),(167,1212,'N'),(167,1213,'N'),(167,1214,'N'),(167,1215,'N'),(167,1216,'S'),(167,1218,'N'),(167,1219,'N'),(167,1220,'N'),(167,1221,'N'),(167,1222,'N'),(167,1223,'N'),(167,1224,'N'),(167,1225,'N'),(167,1226,'N'),(167,1227,'N'),(167,1228,'N'),(167,1249,'N'),(167,1250,'N'),(167,1251,'N'),(167,1252,'N'),(167,1253,'S'),(167,1255,'N'),(167,1256,'N'),(167,1257,'N'),(167,1258,'N'),(167,1259,'N'),(167,1260,'N'),(167,1261,'N'),(167,1262,'N'),(167,1263,'N'),(167,1264,'N'),(167,1265,'N'),(167,1286,'N'),(167,1287,'N'),(167,1288,'N'),(167,1289,'N'),(167,1290,'S'),(167,1292,'N'),(167,1293,'N'),(167,1294,'N'),(167,1295,'N'),(167,1296,'N'),(167,1297,'N'),(167,1298,'N'),(167,1299,'N'),(167,1300,'N'),(167,1301,'N'),(167,1302,'N'),(167,1324,'N'),(167,1325,'N'),(167,1326,'N'),(167,1327,'N'),(167,1328,'S'),(167,1330,'N'),(167,1331,'N'),(167,1332,'N'),(167,1333,'N'),(167,1334,'N'),(167,1335,'N'),(167,1336,'N'),(167,1337,'N'),(167,1338,'N'),(167,1339,'N'),(167,1340,'N'),(167,1363,'N'),(167,1364,'N'),(167,1365,'N'),(167,1366,'N'),(167,1367,'S'),(167,1369,'N'),(167,1370,'N'),(167,1371,'N'),(167,1372,'N'),(167,1373,'N'),(167,1374,'N'),(167,1375,'N'),(167,1376,'N'),(167,1377,'N'),(167,1378,'N'),(167,1379,'N'),(167,1403,'N'),(167,1404,'N'),(167,1405,'N'),(167,1406,'N'),(167,1407,'S'),(167,1409,'N'),(167,1410,'N'),(167,1411,'N'),(167,1412,'N'),(167,1413,'N'),(167,1414,'N'),(167,1415,'N'),(167,1416,'N'),(167,1417,'N'),(167,1418,'N'),(167,1419,'N'),(167,1443,'N'),(167,1444,'N'),(167,1445,'N'),(167,1446,'N'),(167,1447,'S'),(167,1449,'N'),(167,1450,'N'),(167,1451,'N'),(167,1452,'N'),(167,1453,'N'),(167,1454,'N'),(167,1455,'N'),(167,1456,'N'),(167,1457,'N'),(167,1458,'N'),(167,1459,'N'),(167,1483,'N'),(167,1484,'N'),(167,1485,'N'),(167,1486,'N'),(167,1487,'S'),(167,1489,'N'),(167,1491,'N'),(167,1493,'N'),(167,1494,'N'),(167,1495,'N'),(167,1496,'N'),(167,1497,'N'),(167,1498,'N'),(167,1499,'N'),(167,1523,'N'),(167,1524,'N'),(167,1525,'N'),(167,1526,'N'),(167,1527,'S'),(167,1529,'N'),(167,1531,'N'),(167,1533,'N'),(167,1534,'N'),(167,1535,'N'),(167,1536,'N'),(167,1537,'N'),(167,1538,'N'),(167,1539,'N'),(167,1564,'N'),(167,1565,'N'),(167,1566,'N'),(167,1567,'N'),(167,1568,'S'),(167,1570,'N'),(167,1571,'N'),(167,1573,'N'),(167,1574,'N'),(167,1575,'N'),(167,1576,'N'),(167,1577,'N'),(167,1578,'N'),(167,1579,'N'),(167,1604,'N'),(167,1605,'N'),(167,1606,'N'),(167,1607,'N'),(167,1608,'S'),(167,1610,'N'),(167,1611,'N'),(167,1612,'N'),(167,1613,'N'),(167,1614,'N'),(167,1615,'N'),(167,1616,'N'),(167,1617,'N'),(167,1618,'N'),(173,8,'S'),(173,23,'S'),(173,38,'S'),(173,53,'S'),(173,68,'S'),(173,83,'S'),(173,98,'S'),(173,113,'S'),(173,128,'S'),(173,143,'S'),(173,158,'S'),(173,173,'S'),(173,188,'S'),(173,203,'S'),(173,218,'S'),(173,233,'S'),(173,248,'S'),(173,263,'S'),(173,278,'S'),(173,294,'S'),(173,310,'S'),(173,326,'S'),(173,342,'S'),(173,359,'S'),(173,376,'S'),(173,393,'S'),(173,410,'S'),(173,427,'S'),(173,444,'S'),(173,462,'S'),(173,481,'S'),(173,501,'S'),(173,521,'S'),(173,538,'S'),(173,559,'S'),(173,581,'S'),(173,604,'S'),(173,628,'S'),(173,653,'S'),(173,679,'S'),(173,706,'S'),(173,734,'S'),(173,763,'S'),(173,793,'S'),(173,824,'S'),(173,856,'S'),(173,889,'S'),(173,923,'S'),(173,958,'S'),(173,994,'S'),(173,1031,'S'),(173,1068,'S'),(173,1106,'S'),(173,1144,'S'),(173,1181,'S'),(173,1218,'S'),(173,1255,'S'),(173,1292,'S'),(173,1330,'S'),(173,1369,'S'),(173,1409,'S'),(173,1449,'S'),(173,1489,'S'),(173,1529,'S'),(173,1570,'S'),(173,1610,'S'),(174,1,'N'),(174,2,'N'),(174,3,'N'),(174,4,'N'),(174,5,'S'),(174,8,'N'),(174,9,'N'),(174,10,'N'),(174,11,'N'),(174,12,'N'),(174,13,'N'),(174,14,'N'),(174,15,'N'),(174,16,'N'),(174,17,'N'),(174,18,'N'),(174,19,'N'),(174,20,'S'),(174,23,'N'),(174,24,'N'),(174,25,'N'),(174,26,'N'),(174,27,'N'),(174,28,'N'),(174,29,'N'),(174,30,'N'),(174,31,'N'),(174,32,'N'),(174,33,'N'),(174,34,'N'),(174,35,'S'),(174,38,'N'),(174,39,'N'),(174,40,'N'),(174,41,'N'),(174,42,'N'),(174,43,'N'),(174,44,'N'),(174,45,'N'),(174,46,'N'),(174,47,'N'),(174,48,'N'),(174,49,'N'),(174,50,'S'),(174,53,'N'),(174,54,'N'),(174,55,'N'),(174,56,'N'),(174,57,'N'),(174,58,'N'),(174,59,'N'),(174,60,'N'),(174,61,'N'),(174,62,'N'),(174,63,'N'),(174,64,'N'),(174,65,'S'),(174,68,'N'),(174,69,'N'),(174,70,'N'),(174,71,'N'),(174,72,'N'),(174,73,'N'),(174,74,'N'),(174,75,'N'),(174,76,'N'),(174,77,'N'),(174,78,'N'),(174,79,'N'),(174,80,'S'),(174,83,'N'),(174,84,'N'),(174,85,'N'),(174,86,'N'),(174,87,'N'),(174,88,'N'),(174,89,'N'),(174,90,'N'),(174,91,'N'),(174,92,'N'),(174,93,'N'),(174,94,'N'),(174,95,'S'),(174,98,'N'),(174,99,'N'),(174,100,'N'),(174,101,'N'),(174,102,'N'),(174,103,'N'),(174,104,'N'),(174,105,'N'),(174,106,'N'),(174,107,'N'),(174,108,'N'),(174,109,'N'),(174,110,'S'),(174,113,'N'),(174,114,'N'),(174,115,'N'),(174,116,'N'),(174,117,'N'),(174,118,'N'),(174,119,'N'),(174,120,'N'),(174,121,'N'),(174,122,'N'),(174,123,'N'),(174,124,'N'),(174,125,'S'),(174,128,'N'),(174,129,'N'),(174,130,'N'),(174,131,'N'),(174,132,'N'),(174,133,'N'),(174,134,'N'),(174,135,'N'),(174,136,'N'),(174,137,'N'),(174,138,'N'),(174,139,'N'),(174,140,'S'),(174,143,'N'),(174,144,'N'),(174,145,'N'),(174,146,'N'),(174,147,'N'),(174,148,'N'),(174,149,'N'),(174,150,'N'),(174,151,'N'),(174,152,'N'),(174,153,'N'),(174,154,'N'),(174,155,'S'),(174,158,'N'),(174,159,'N'),(174,160,'N'),(174,161,'N'),(174,162,'N'),(174,163,'N'),(174,164,'N'),(174,165,'N'),(174,166,'N'),(174,167,'N'),(174,168,'N'),(174,169,'N'),(174,170,'S'),(174,173,'N'),(174,174,'N'),(174,175,'N'),(174,176,'N'),(174,177,'N'),(174,178,'N'),(174,179,'N'),(174,180,'N'),(174,181,'N'),(174,182,'N'),(174,183,'N'),(174,184,'N'),(174,185,'S'),(174,188,'N'),(174,189,'N'),(174,190,'N'),(174,191,'N'),(174,192,'N'),(174,193,'N'),(174,194,'N'),(174,195,'N'),(174,196,'N'),(174,197,'N'),(174,198,'N'),(174,199,'N'),(174,200,'S'),(174,203,'N'),(174,204,'N'),(174,205,'N'),(174,206,'N'),(174,207,'N'),(174,208,'N'),(174,209,'N'),(174,210,'N'),(174,211,'N'),(174,212,'N'),(174,213,'N'),(174,214,'N'),(174,215,'S'),(174,218,'N'),(174,219,'N'),(174,220,'N'),(174,221,'N'),(174,222,'N'),(174,223,'N'),(174,224,'N'),(174,225,'N'),(174,226,'N'),(174,227,'N'),(174,228,'N'),(174,229,'N'),(174,230,'S'),(174,233,'N'),(174,234,'N'),(174,235,'N'),(174,236,'N'),(174,237,'N'),(174,238,'N'),(174,239,'N'),(174,240,'N'),(174,241,'N'),(174,242,'N'),(174,243,'N'),(174,244,'N'),(174,245,'S'),(174,248,'N'),(174,249,'N'),(174,250,'N'),(174,251,'N'),(174,252,'N'),(174,253,'N'),(174,254,'N'),(174,255,'N'),(174,256,'N'),(174,257,'N'),(174,258,'N'),(174,259,'N'),(174,260,'S'),(174,263,'N'),(174,264,'N'),(174,265,'N'),(174,266,'N'),(174,267,'N'),(174,268,'N'),(174,269,'N'),(174,270,'N'),(174,271,'N'),(174,272,'N'),(174,273,'N'),(174,274,'N'),(174,275,'S'),(174,278,'N'),(174,279,'N'),(174,280,'N'),(174,281,'N'),(174,282,'N'),(174,283,'N'),(174,284,'N'),(174,285,'N'),(174,286,'N'),(174,287,'N'),(174,288,'N'),(174,289,'N'),(174,290,'N'),(174,291,'S'),(174,294,'N'),(174,295,'N'),(174,296,'N'),(174,297,'N'),(174,298,'N'),(174,299,'N'),(174,300,'N'),(174,301,'N'),(174,303,'N'),(174,304,'N'),(174,305,'N'),(174,306,'N'),(174,307,'S'),(174,310,'N'),(174,311,'N'),(174,312,'N'),(174,313,'N'),(174,314,'N'),(174,315,'N'),(174,316,'N'),(174,317,'N'),(174,318,'N'),(174,319,'N'),(174,320,'N'),(174,321,'N'),(174,322,'N'),(174,323,'S'),(174,326,'N'),(174,327,'N'),(174,328,'N'),(174,329,'N'),(174,330,'N'),(174,331,'N'),(174,332,'N'),(174,333,'N'),(174,334,'N'),(174,335,'N'),(174,336,'N'),(174,337,'N'),(174,338,'N'),(174,339,'S'),(174,342,'N'),(174,343,'N'),(174,344,'N'),(174,345,'N'),(174,346,'N'),(174,347,'N'),(174,348,'N'),(174,349,'N'),(174,350,'N'),(174,352,'N'),(174,353,'N'),(174,354,'N'),(174,355,'N'),(174,356,'S'),(174,359,'N'),(174,360,'N'),(174,361,'N'),(174,362,'N'),(174,363,'N'),(174,364,'N'),(174,365,'N'),(174,366,'N'),(174,367,'N'),(174,369,'N'),(174,370,'N'),(174,371,'N'),(174,372,'N'),(174,373,'S'),(174,376,'N'),(174,377,'N'),(174,378,'N'),(174,379,'N'),(174,380,'N'),(174,381,'N'),(174,382,'N'),(174,383,'N'),(174,384,'N'),(174,386,'N'),(174,387,'N'),(174,388,'N'),(174,389,'N'),(174,390,'S'),(174,393,'N'),(174,394,'N'),(174,395,'N'),(174,396,'N'),(174,397,'N'),(174,398,'N'),(174,399,'N'),(174,400,'N'),(174,401,'N'),(174,403,'N'),(174,404,'N'),(174,405,'N'),(174,406,'N'),(174,407,'S'),(174,410,'N'),(174,411,'N'),(174,412,'N'),(174,413,'N'),(174,414,'N'),(174,415,'N'),(174,416,'N'),(174,417,'N'),(174,418,'N'),(174,420,'N'),(174,421,'N'),(174,422,'N'),(174,423,'N'),(174,424,'S'),(174,427,'N'),(174,428,'N'),(174,429,'N'),(174,430,'N'),(174,431,'N'),(174,432,'N'),(174,433,'N'),(174,434,'N'),(174,435,'N'),(174,437,'N'),(174,438,'N'),(174,439,'N'),(174,440,'N'),(174,441,'S'),(174,444,'N'),(174,445,'N'),(174,446,'N'),(174,447,'N'),(174,448,'N'),(174,449,'N'),(174,450,'N'),(174,451,'N'),(174,452,'N'),(174,454,'N'),(174,455,'N'),(174,456,'N'),(174,457,'N'),(174,458,'N'),(174,459,'S'),(174,462,'N'),(174,463,'N'),(174,464,'N'),(174,465,'N'),(174,466,'N'),(174,467,'N'),(174,468,'N'),(174,469,'N'),(174,470,'N'),(174,472,'N'),(174,474,'N'),(174,475,'N'),(174,476,'N'),(174,477,'N'),(174,478,'S'),(174,481,'N'),(174,482,'N'),(174,483,'N'),(174,484,'N'),(174,485,'N'),(174,486,'N'),(174,487,'N'),(174,488,'N'),(174,489,'N'),(174,491,'N'),(174,494,'N'),(174,495,'N'),(174,496,'N'),(174,497,'N'),(174,498,'S'),(174,501,'N'),(174,502,'N'),(174,503,'N'),(174,504,'N'),(174,505,'N'),(174,506,'N'),(174,507,'N'),(174,508,'N'),(174,509,'N'),(174,511,'N'),(174,514,'N'),(174,515,'N'),(174,516,'N'),(174,517,'N'),(174,518,'S'),(174,521,'N'),(174,522,'N'),(174,523,'N'),(174,524,'N'),(174,525,'N'),(174,526,'N'),(174,527,'N'),(174,528,'N'),(174,529,'N'),(174,531,'N'),(174,532,'N'),(174,533,'N'),(174,534,'N'),(174,535,'S'),(174,538,'N'),(174,539,'N'),(174,540,'N'),(174,541,'N'),(174,542,'N'),(174,543,'N'),(174,544,'N'),(174,545,'N'),(174,546,'N'),(174,548,'N'),(174,552,'N'),(174,553,'N'),(174,554,'N'),(174,555,'N'),(174,556,'S'),(174,559,'N'),(174,560,'N'),(174,561,'N'),(174,562,'N'),(174,563,'N'),(174,564,'N'),(174,565,'N'),(174,566,'N'),(174,567,'N'),(174,569,'N'),(174,574,'N'),(174,575,'N'),(174,576,'N'),(174,577,'N'),(174,578,'S'),(174,581,'N'),(174,582,'N'),(174,583,'N'),(174,584,'N'),(174,585,'N'),(174,586,'N'),(174,587,'N'),(174,588,'N'),(174,589,'N'),(174,591,'N'),(174,597,'N'),(174,598,'N'),(174,599,'N'),(174,600,'N'),(174,601,'S'),(174,604,'N'),(174,605,'N'),(174,606,'N'),(174,607,'N'),(174,608,'N'),(174,609,'N'),(174,610,'N'),(174,611,'N'),(174,612,'N'),(174,614,'N'),(174,621,'N'),(174,622,'N'),(174,623,'N'),(174,624,'N'),(174,625,'S'),(174,628,'N'),(174,629,'N'),(174,630,'N'),(174,631,'N'),(174,632,'N'),(174,633,'N'),(174,634,'N'),(174,635,'N'),(174,636,'N'),(174,638,'N'),(174,646,'N'),(174,647,'N'),(174,648,'N'),(174,649,'N'),(174,650,'S'),(174,653,'N'),(174,654,'N'),(174,655,'N'),(174,656,'N'),(174,657,'N'),(174,658,'N'),(174,659,'N'),(174,660,'N'),(174,661,'N'),(174,663,'N'),(174,672,'N'),(174,673,'N'),(174,674,'N'),(174,675,'N'),(174,676,'S'),(174,679,'N'),(174,680,'N'),(174,681,'N'),(174,682,'N'),(174,683,'N'),(174,684,'N'),(174,685,'N'),(174,686,'N'),(174,687,'N'),(174,689,'N'),(174,699,'N'),(174,700,'N'),(174,701,'N'),(174,702,'N'),(174,703,'S'),(174,706,'N'),(174,707,'N'),(174,708,'N'),(174,709,'N'),(174,710,'N'),(174,711,'N'),(174,712,'N'),(174,713,'N'),(174,714,'N'),(174,716,'N'),(174,727,'N'),(174,728,'N'),(174,729,'N'),(174,730,'N'),(174,731,'S'),(174,734,'N'),(174,735,'N'),(174,736,'N'),(174,737,'N'),(174,738,'N'),(174,739,'N'),(174,740,'N'),(174,741,'N'),(174,742,'N'),(174,744,'N'),(174,756,'N'),(174,757,'N'),(174,758,'N'),(174,759,'N'),(174,760,'S'),(174,763,'N'),(174,764,'N'),(174,765,'N'),(174,766,'N'),(174,767,'N'),(174,768,'N'),(174,769,'N'),(174,770,'N'),(174,771,'N'),(174,773,'N'),(174,786,'N'),(174,787,'N'),(174,788,'N'),(174,789,'N'),(174,790,'S'),(174,793,'N'),(174,794,'N'),(174,795,'N'),(174,796,'N'),(174,797,'N'),(174,798,'N'),(174,799,'N'),(174,800,'N'),(174,801,'N'),(174,803,'N'),(174,817,'N'),(174,818,'N'),(174,819,'N'),(174,820,'N'),(174,821,'S'),(174,824,'N'),(174,825,'N'),(174,826,'N'),(174,827,'N'),(174,828,'N'),(174,829,'N'),(174,830,'N'),(174,831,'N'),(174,832,'N'),(174,834,'N'),(174,849,'N'),(174,850,'N'),(174,851,'N'),(174,852,'N'),(174,853,'S'),(174,856,'N'),(174,857,'N'),(174,858,'N'),(174,859,'N'),(174,860,'N'),(174,861,'N'),(174,862,'N'),(174,863,'N'),(174,864,'N'),(174,866,'N'),(174,882,'N'),(174,883,'N'),(174,884,'N'),(174,885,'N'),(174,886,'S'),(174,889,'N'),(174,890,'N'),(174,891,'N'),(174,892,'N'),(174,893,'N'),(174,894,'N'),(174,895,'N'),(174,896,'N'),(174,897,'N'),(174,899,'N'),(174,916,'N'),(174,917,'N'),(174,918,'N'),(174,919,'N'),(174,920,'S'),(174,923,'N'),(174,924,'N'),(174,925,'N'),(174,926,'N'),(174,927,'N'),(174,928,'N'),(174,929,'N'),(174,930,'N'),(174,931,'N'),(174,933,'N'),(174,951,'N'),(174,952,'N'),(174,953,'N'),(174,954,'N'),(174,955,'S'),(174,958,'N'),(174,959,'N'),(174,960,'N'),(174,961,'N'),(174,962,'N'),(174,963,'N'),(174,964,'N'),(174,965,'N'),(174,966,'N'),(174,968,'N'),(174,987,'N'),(174,988,'N'),(174,989,'N'),(174,990,'N'),(174,991,'S'),(174,994,'N'),(174,995,'N'),(174,996,'N'),(174,997,'N'),(174,998,'N'),(174,999,'N'),(174,1000,'N'),(174,1001,'N'),(174,1002,'N'),(174,1004,'N'),(174,1024,'N'),(174,1025,'N'),(174,1026,'N'),(174,1027,'N'),(174,1028,'S'),(174,1031,'N'),(174,1032,'N'),(174,1033,'N'),(174,1034,'N'),(174,1035,'N'),(174,1036,'N'),(174,1037,'N'),(174,1038,'N'),(174,1039,'N'),(174,1041,'N'),(174,1061,'N'),(174,1062,'N'),(174,1063,'N'),(174,1064,'N'),(174,1065,'S'),(174,1068,'N'),(174,1069,'N'),(174,1070,'N'),(174,1071,'N'),(174,1072,'N'),(174,1073,'N'),(174,1074,'N'),(174,1075,'N'),(174,1076,'N'),(174,1078,'N'),(174,1099,'N'),(174,1100,'N'),(174,1101,'N'),(174,1102,'N'),(174,1103,'S'),(174,1104,'N'),(174,1106,'N'),(174,1107,'N'),(174,1108,'N'),(174,1109,'N'),(174,1110,'N'),(174,1111,'N'),(174,1112,'N'),(174,1113,'N'),(174,1114,'N'),(174,1116,'N'),(174,1137,'N'),(174,1138,'N'),(174,1139,'N'),(174,1140,'N'),(174,1141,'S'),(174,1142,'N'),(174,1144,'N'),(174,1145,'N'),(174,1146,'N'),(174,1147,'N'),(174,1148,'N'),(174,1149,'N'),(174,1150,'N'),(174,1151,'N'),(174,1152,'N'),(174,1154,'N'),(174,1175,'N'),(174,1176,'N'),(174,1177,'N'),(174,1178,'N'),(174,1179,'S'),(174,1180,'N'),(174,1181,'N'),(174,1182,'N'),(174,1183,'N'),(174,1184,'N'),(174,1185,'N'),(174,1186,'N'),(174,1187,'N'),(174,1188,'N'),(174,1189,'N'),(174,1191,'N'),(174,1212,'N'),(174,1213,'N'),(174,1214,'N'),(174,1215,'N'),(174,1216,'S'),(174,1217,'N'),(174,1218,'N'),(174,1219,'N'),(174,1220,'N'),(174,1221,'N'),(174,1222,'N'),(174,1223,'N'),(174,1224,'N'),(174,1225,'N'),(174,1226,'N'),(174,1228,'N'),(174,1252,'N'),(174,1253,'N'),(174,1254,'N'),(174,1268,'N'),(174,1269,'N'),(174,1274,'N'),(174,1275,'N'),(174,1280,'N'),(174,1281,'N'),(174,1282,'N'),(174,1283,'N'),(174,1284,'N'),(174,1285,'N'),(174,1289,'N'),(174,1290,'N'),(174,1291,'N'),(174,1305,'N'),(174,1306,'N'),(174,1311,'N'),(174,1312,'N'),(174,1317,'N'),(174,1318,'N'),(174,1319,'N'),(174,1320,'N'),(174,1321,'N'),(174,1322,'N'),(174,1327,'N'),(174,1328,'N'),(174,1329,'N'),(174,1343,'N'),(174,1344,'N'),(174,1349,'N'),(174,1350,'N'),(174,1355,'N'),(174,1356,'N'),(174,1357,'N'),(174,1358,'N'),(174,1359,'N'),(174,1360,'N'),(174,1366,'N'),(174,1367,'N'),(174,1368,'N'),(174,1382,'N'),(174,1383,'N'),(174,1388,'N'),(174,1389,'N'),(174,1394,'N'),(174,1395,'N'),(174,1396,'N'),(174,1397,'N'),(174,1398,'N'),(174,1399,'N'),(174,1406,'N'),(174,1407,'N'),(174,1408,'N'),(174,1422,'N'),(174,1423,'N'),(174,1428,'N'),(174,1429,'N'),(174,1434,'N'),(174,1435,'N'),(174,1436,'N'),(174,1437,'N'),(174,1438,'N'),(174,1439,'N'),(174,1446,'N'),(174,1447,'N'),(174,1448,'N'),(174,1462,'N'),(174,1463,'N'),(174,1468,'N'),(174,1469,'N'),(174,1474,'N'),(174,1475,'N'),(174,1476,'N'),(174,1477,'N'),(174,1478,'N'),(174,1479,'N'),(174,1486,'N'),(174,1487,'N'),(174,1488,'N'),(174,1502,'S'),(174,1503,'N'),(174,1508,'N'),(174,1509,'N'),(174,1514,'N'),(174,1515,'N'),(174,1516,'N'),(174,1517,'N'),(174,1518,'N'),(174,1519,'N'),(174,1521,'N'),(174,1522,'N'),(174,1526,'N'),(174,1527,'N'),(174,1528,'N'),(174,1542,'S'),(174,1543,'N'),(174,1548,'N'),(174,1549,'N'),(174,1554,'N'),(174,1555,'N'),(174,1556,'N'),(174,1557,'N'),(174,1558,'N'),(174,1559,'N'),(174,1561,'N'),(174,1562,'N'),(174,1567,'N'),(174,1568,'N'),(174,1569,'N'),(174,1582,'S'),(174,1583,'N'),(174,1588,'N'),(174,1589,'N'),(174,1594,'N'),(174,1595,'N'),(174,1596,'N'),(174,1597,'N'),(174,1598,'N'),(174,1599,'N'),(174,1601,'N'),(174,1602,'N'),(174,1607,'N'),(174,1608,'N'),(174,1609,'N'),(174,1621,'S'),(174,1622,'N'),(174,1627,'N'),(174,1628,'N'),(174,1633,'N'),(174,1634,'N'),(174,1635,'N'),(174,1636,'N'),(174,1637,'N'),(174,1638,'N'),(174,1640,'N'),(174,1641,'N'),(189,8,'S'),(189,23,'S'),(189,38,'S'),(189,53,'S'),(189,68,'S'),(189,83,'S'),(189,98,'S'),(189,113,'S'),(189,128,'S'),(189,143,'S'),(189,158,'S'),(189,173,'S'),(189,188,'S'),(189,203,'S'),(189,218,'S'),(189,233,'S'),(189,248,'S'),(189,263,'S'),(189,278,'S'),(189,294,'S'),(189,310,'S'),(189,326,'S'),(189,342,'S'),(189,359,'S'),(189,376,'S'),(189,393,'S'),(189,410,'S'),(189,427,'S'),(189,444,'S'),(189,462,'S'),(189,481,'S'),(189,501,'S'),(189,521,'S'),(189,538,'S'),(189,559,'S'),(189,581,'S'),(189,604,'S'),(189,628,'S'),(189,653,'S'),(189,679,'S'),(189,706,'S'),(189,734,'S'),(189,763,'S'),(189,793,'S'),(189,824,'S'),(189,856,'S'),(189,889,'S'),(189,923,'S'),(189,958,'S'),(189,994,'S'),(189,1031,'S'),(189,1068,'S'),(189,1106,'S'),(189,1144,'S'),(189,1181,'S'),(189,1218,'S'),(189,1255,'S'),(189,1292,'S'),(189,1330,'S'),(189,1369,'S'),(189,1409,'S'),(189,1449,'S'),(189,1489,'S'),(189,1529,'S'),(189,1570,'S'),(189,1610,'S'),(193,1,'N'),(193,2,'N'),(193,3,'N'),(193,4,'N'),(193,5,'S'),(193,8,'N'),(193,9,'N'),(193,10,'N'),(193,11,'N'),(193,12,'N'),(193,13,'N'),(193,14,'N'),(193,15,'N'),(193,16,'N'),(193,17,'N'),(193,18,'N'),(193,19,'N'),(193,20,'S'),(193,23,'N'),(193,24,'N'),(193,25,'N'),(193,26,'N'),(193,27,'N'),(193,28,'N'),(193,29,'N'),(193,30,'N'),(193,31,'N'),(193,32,'N'),(193,33,'N'),(193,34,'N'),(193,35,'S'),(193,38,'N'),(193,39,'N'),(193,40,'N'),(193,41,'N'),(193,42,'N'),(193,43,'N'),(193,44,'N'),(193,45,'N'),(193,46,'N'),(193,47,'N'),(193,48,'N'),(193,49,'N'),(193,50,'S'),(193,53,'N'),(193,54,'N'),(193,55,'N'),(193,56,'N'),(193,57,'N'),(193,58,'N'),(193,59,'N'),(193,60,'N'),(193,61,'N'),(193,62,'N'),(193,63,'N'),(193,64,'N'),(193,65,'S'),(193,68,'N'),(193,69,'N'),(193,70,'N'),(193,71,'N'),(193,72,'N'),(193,73,'N'),(193,74,'N'),(193,75,'N'),(193,76,'N'),(193,77,'N'),(193,78,'N'),(193,79,'N'),(193,80,'S'),(193,83,'N'),(193,84,'N'),(193,85,'N'),(193,86,'N'),(193,87,'N'),(193,88,'N'),(193,89,'N'),(193,90,'N'),(193,91,'N'),(193,92,'N'),(193,93,'N'),(193,94,'N'),(193,95,'S'),(193,98,'N'),(193,99,'N'),(193,100,'N'),(193,101,'N'),(193,102,'N'),(193,103,'N'),(193,104,'N'),(193,105,'N'),(193,106,'N'),(193,107,'N'),(193,108,'N'),(193,109,'N'),(193,110,'S'),(193,113,'N'),(193,114,'N'),(193,115,'N'),(193,116,'N'),(193,117,'N'),(193,118,'N'),(193,119,'N'),(193,120,'N'),(193,121,'N'),(193,122,'N'),(193,123,'N'),(193,124,'N'),(193,125,'S'),(193,128,'N'),(193,129,'N'),(193,130,'N'),(193,131,'N'),(193,132,'N'),(193,133,'N'),(193,134,'N'),(193,135,'N'),(193,136,'N'),(193,137,'N'),(193,138,'N'),(193,139,'N'),(193,140,'S'),(193,143,'N'),(193,144,'N'),(193,145,'N'),(193,146,'N'),(193,147,'N'),(193,148,'N'),(193,149,'N'),(193,150,'N'),(193,151,'N'),(193,152,'N'),(193,153,'N'),(193,154,'N'),(193,155,'S'),(193,158,'N'),(193,159,'N'),(193,160,'N'),(193,161,'N'),(193,162,'N'),(193,163,'N'),(193,164,'N'),(193,165,'N'),(193,166,'N'),(193,167,'N'),(193,168,'N'),(193,169,'N'),(193,170,'S'),(193,173,'N'),(193,174,'N'),(193,175,'N'),(193,176,'N'),(193,177,'N'),(193,178,'N'),(193,179,'N'),(193,180,'N'),(193,181,'N'),(193,182,'N'),(193,183,'N'),(193,184,'N'),(193,185,'S'),(193,188,'N'),(193,189,'N'),(193,190,'N'),(193,191,'N'),(193,192,'N'),(193,193,'N'),(193,194,'N'),(193,195,'N'),(193,196,'N'),(193,197,'N'),(193,198,'N'),(193,199,'N'),(193,200,'S'),(193,203,'N'),(193,204,'N'),(193,205,'N'),(193,206,'N'),(193,207,'N'),(193,208,'N'),(193,209,'N'),(193,210,'N'),(193,211,'N'),(193,212,'N'),(193,213,'N'),(193,214,'N'),(193,215,'S'),(193,218,'N'),(193,219,'N'),(193,220,'N'),(193,221,'N'),(193,222,'N'),(193,223,'N'),(193,224,'N'),(193,225,'N'),(193,226,'N'),(193,227,'N'),(193,228,'N'),(193,229,'N'),(193,230,'S'),(193,233,'N'),(193,234,'N'),(193,235,'N'),(193,236,'N'),(193,237,'N'),(193,238,'N'),(193,239,'N'),(193,240,'N'),(193,241,'N'),(193,242,'N'),(193,243,'N'),(193,244,'N'),(193,245,'S'),(193,248,'N'),(193,249,'N'),(193,250,'N'),(193,251,'N'),(193,252,'N'),(193,253,'N'),(193,254,'N'),(193,255,'N'),(193,256,'N'),(193,257,'N'),(193,258,'N'),(193,259,'N'),(193,260,'S'),(193,263,'N'),(193,264,'N'),(193,265,'N'),(193,266,'N'),(193,267,'N'),(193,268,'N'),(193,269,'N'),(193,270,'N'),(193,271,'N'),(193,272,'N'),(193,273,'N'),(193,274,'N'),(193,275,'S'),(193,278,'N'),(193,279,'N'),(193,280,'N'),(193,281,'N'),(193,282,'N'),(193,283,'N'),(193,284,'N'),(193,285,'N'),(193,286,'N'),(193,287,'N'),(193,288,'N'),(193,289,'N'),(193,290,'N'),(193,291,'S'),(193,294,'N'),(193,295,'N'),(193,296,'N'),(193,297,'N'),(193,298,'N'),(193,299,'N'),(193,300,'N'),(193,301,'N'),(193,303,'N'),(193,304,'N'),(193,305,'N'),(193,306,'N'),(193,307,'S'),(193,310,'N'),(193,311,'N'),(193,312,'N'),(193,313,'N'),(193,314,'N'),(193,315,'N'),(193,316,'N'),(193,317,'N'),(193,318,'N'),(193,319,'N'),(193,320,'N'),(193,321,'N'),(193,322,'N'),(193,323,'S'),(193,326,'N'),(193,327,'N'),(193,328,'N'),(193,329,'N'),(193,330,'N'),(193,331,'N'),(193,332,'N'),(193,333,'N'),(193,334,'N'),(193,335,'N'),(193,336,'N'),(193,337,'N'),(193,338,'N'),(193,339,'S'),(193,342,'N'),(193,343,'N'),(193,344,'N'),(193,345,'N'),(193,346,'N'),(193,347,'N'),(193,348,'N'),(193,349,'N'),(193,350,'N'),(193,352,'N'),(193,353,'N'),(193,354,'N'),(193,355,'N'),(193,356,'S'),(193,359,'N'),(193,360,'N'),(193,361,'N'),(193,362,'N'),(193,363,'N'),(193,364,'N'),(193,365,'N'),(193,366,'N'),(193,367,'N'),(193,369,'N'),(193,370,'N'),(193,371,'N'),(193,372,'N'),(193,373,'S'),(193,376,'N'),(193,377,'N'),(193,378,'N'),(193,379,'N'),(193,380,'N'),(193,381,'N'),(193,382,'N'),(193,383,'N'),(193,384,'N'),(193,386,'N'),(193,387,'N'),(193,388,'N'),(193,389,'N'),(193,390,'S'),(193,393,'N'),(193,394,'N'),(193,395,'N'),(193,396,'N'),(193,397,'N'),(193,398,'N'),(193,399,'N'),(193,400,'N'),(193,401,'N'),(193,403,'N'),(193,404,'N'),(193,405,'N'),(193,406,'N'),(193,407,'S'),(193,410,'N'),(193,411,'N'),(193,412,'N'),(193,413,'N'),(193,414,'N'),(193,415,'N'),(193,416,'N'),(193,417,'N'),(193,418,'N'),(193,420,'N'),(193,421,'N'),(193,422,'N'),(193,423,'N'),(193,424,'S'),(193,427,'N'),(193,428,'N'),(193,429,'N'),(193,430,'N'),(193,431,'N'),(193,432,'N'),(193,433,'N'),(193,434,'N'),(193,435,'N'),(193,437,'N'),(193,438,'N'),(193,439,'N'),(193,440,'N'),(193,441,'S'),(193,444,'N'),(193,445,'N'),(193,446,'N'),(193,447,'N'),(193,448,'N'),(193,449,'N'),(193,450,'N'),(193,451,'N'),(193,452,'N'),(193,453,'N'),(193,454,'N'),(193,455,'N'),(193,456,'N'),(193,457,'N'),(193,458,'N'),(193,459,'S'),(193,462,'N'),(193,463,'N'),(193,464,'N'),(193,465,'N'),(193,466,'N'),(193,467,'N'),(193,468,'N'),(193,469,'N'),(193,470,'N'),(193,471,'N'),(193,472,'N'),(193,474,'N'),(193,475,'N'),(193,476,'N'),(193,477,'N'),(193,478,'S'),(193,481,'N'),(193,482,'N'),(193,483,'N'),(193,484,'N'),(193,485,'N'),(193,486,'N'),(193,487,'N'),(193,488,'N'),(193,489,'N'),(193,490,'N'),(193,491,'N'),(193,494,'N'),(193,495,'N'),(193,496,'N'),(193,497,'N'),(193,498,'S'),(193,501,'N'),(193,502,'N'),(193,503,'N'),(193,504,'N'),(193,505,'N'),(193,506,'N'),(193,507,'N'),(193,508,'N'),(193,509,'N'),(193,510,'N'),(193,511,'N'),(193,514,'N'),(193,515,'N'),(193,516,'N'),(193,517,'N'),(193,518,'S'),(193,521,'N'),(193,522,'N'),(193,523,'N'),(193,524,'N'),(193,525,'N'),(193,526,'N'),(193,527,'N'),(193,528,'N'),(193,529,'N'),(193,530,'N'),(193,531,'N'),(193,532,'N'),(193,533,'N'),(193,534,'N'),(193,535,'S'),(193,538,'N'),(193,539,'N'),(193,540,'N'),(193,541,'N'),(193,542,'N'),(193,543,'N'),(193,544,'N'),(193,545,'N'),(193,546,'N'),(193,547,'N'),(193,548,'N'),(193,552,'N'),(193,553,'N'),(193,554,'N'),(193,555,'N'),(193,556,'S'),(193,559,'N'),(193,560,'N'),(193,561,'N'),(193,562,'N'),(193,563,'N'),(193,564,'N'),(193,565,'N'),(193,566,'N'),(193,567,'N'),(193,568,'N'),(193,569,'N'),(193,574,'N'),(193,575,'N'),(193,576,'N'),(193,577,'N'),(193,578,'S'),(193,581,'N'),(193,582,'N'),(193,583,'N'),(193,584,'N'),(193,585,'N'),(193,586,'N'),(193,587,'N'),(193,588,'N'),(193,589,'N'),(193,590,'N'),(193,591,'N'),(193,597,'N'),(193,598,'N'),(193,599,'N'),(193,600,'N'),(193,601,'S'),(193,604,'N'),(193,605,'N'),(193,606,'N'),(193,607,'N'),(193,608,'N'),(193,609,'N'),(193,610,'N'),(193,611,'N'),(193,612,'N'),(193,613,'N'),(193,614,'N'),(193,621,'N'),(193,622,'N'),(193,623,'N'),(193,624,'N'),(193,625,'S'),(193,628,'N'),(193,629,'N'),(193,630,'N'),(193,631,'N'),(193,632,'N'),(193,633,'N'),(193,634,'N'),(193,635,'N'),(193,636,'N'),(193,637,'N'),(193,638,'N'),(193,646,'N'),(193,647,'N'),(193,648,'N'),(193,649,'N'),(193,650,'S'),(193,653,'N'),(193,654,'N'),(193,655,'N'),(193,656,'N'),(193,657,'N'),(193,658,'N'),(193,659,'N'),(193,660,'N'),(193,661,'N'),(193,662,'N'),(193,663,'N'),(193,672,'N'),(193,673,'N'),(193,674,'N'),(193,675,'N'),(193,676,'S'),(193,679,'N'),(193,680,'N'),(193,681,'N'),(193,682,'N'),(193,683,'N'),(193,684,'N'),(193,685,'N'),(193,686,'N'),(193,687,'N'),(193,688,'N'),(193,689,'N'),(193,699,'N'),(193,700,'N'),(193,701,'N'),(193,702,'N'),(193,703,'S'),(193,706,'N'),(193,707,'N'),(193,708,'N'),(193,709,'N'),(193,710,'N'),(193,711,'N'),(193,712,'N'),(193,713,'N'),(193,714,'N'),(193,715,'N'),(193,716,'N'),(193,727,'N'),(193,728,'N'),(193,729,'N'),(193,730,'N'),(193,731,'S'),(193,734,'N'),(193,735,'N'),(193,736,'N'),(193,737,'N'),(193,738,'N'),(193,739,'N'),(193,740,'N'),(193,741,'N'),(193,742,'N'),(193,743,'N'),(193,744,'N'),(193,756,'N'),(193,757,'N'),(193,758,'N'),(193,759,'N'),(193,760,'S'),(193,763,'N'),(193,764,'N'),(193,765,'N'),(193,766,'N'),(193,767,'N'),(193,768,'N'),(193,769,'N'),(193,770,'N'),(193,771,'N'),(193,772,'N'),(193,773,'N'),(193,786,'N'),(193,787,'N'),(193,788,'N'),(193,789,'N'),(193,790,'S'),(193,793,'N'),(193,794,'N'),(193,795,'N'),(193,796,'N'),(193,797,'N'),(193,798,'N'),(193,799,'N'),(193,800,'N'),(193,801,'N'),(193,802,'N'),(193,803,'N'),(193,817,'N'),(193,818,'N'),(193,819,'N'),(193,820,'N'),(193,821,'S'),(193,824,'N'),(193,825,'N'),(193,826,'N'),(193,827,'N'),(193,828,'N'),(193,829,'N'),(193,830,'N'),(193,831,'N'),(193,832,'N'),(193,833,'N'),(193,834,'N'),(193,849,'N'),(193,850,'N'),(193,851,'N'),(193,852,'N'),(193,853,'S'),(193,856,'N'),(193,857,'N'),(193,858,'N'),(193,859,'N'),(193,860,'N'),(193,861,'N'),(193,862,'N'),(193,863,'N'),(193,864,'N'),(193,865,'N'),(193,866,'N'),(193,882,'N'),(193,883,'N'),(193,884,'N'),(193,885,'N'),(193,886,'S'),(193,889,'N'),(193,890,'N'),(193,891,'N'),(193,892,'N'),(193,893,'N'),(193,894,'N'),(193,895,'N'),(193,896,'N'),(193,897,'N'),(193,898,'N'),(193,899,'N'),(193,916,'N'),(193,917,'N'),(193,918,'N'),(193,919,'N'),(193,920,'S'),(193,923,'N'),(193,924,'N'),(193,925,'N'),(193,926,'N'),(193,927,'N'),(193,928,'N'),(193,929,'N'),(193,930,'N'),(193,931,'N'),(193,932,'N'),(193,933,'N'),(193,951,'N'),(193,952,'N'),(193,953,'N'),(193,954,'N'),(193,955,'S'),(193,958,'N'),(193,959,'N'),(193,960,'N'),(193,961,'N'),(193,962,'N'),(193,963,'N'),(193,964,'N'),(193,965,'N'),(193,966,'N'),(193,967,'N'),(193,968,'N'),(193,987,'N'),(193,988,'N'),(193,989,'N'),(193,990,'N'),(193,991,'S'),(193,994,'N'),(193,995,'N'),(193,996,'N'),(193,997,'N'),(193,998,'N'),(193,999,'N'),(193,1000,'N'),(193,1001,'N'),(193,1002,'N'),(193,1003,'N'),(193,1004,'N'),(193,1024,'N'),(193,1025,'N'),(193,1026,'N'),(193,1027,'N'),(193,1028,'S'),(193,1031,'N'),(193,1032,'N'),(193,1033,'N'),(193,1034,'N'),(193,1035,'N'),(193,1036,'N'),(193,1037,'N'),(193,1038,'N'),(193,1039,'N'),(193,1040,'N'),(193,1041,'N'),(193,1061,'N'),(193,1062,'N'),(193,1063,'N'),(193,1064,'N'),(193,1065,'S'),(193,1068,'N'),(193,1069,'N'),(193,1070,'N'),(193,1071,'N'),(193,1072,'N'),(193,1073,'N'),(193,1074,'N'),(193,1075,'N'),(193,1076,'N'),(193,1077,'N'),(193,1078,'N'),(193,1099,'N'),(193,1100,'N'),(193,1101,'N'),(193,1102,'N'),(193,1103,'S'),(193,1104,'N'),(193,1106,'N'),(193,1107,'N'),(193,1108,'N'),(193,1109,'N'),(193,1110,'N'),(193,1111,'N'),(193,1112,'N'),(193,1113,'N'),(193,1114,'N'),(193,1115,'N'),(193,1116,'N'),(193,1137,'N'),(193,1138,'N'),(193,1139,'N'),(193,1140,'N'),(193,1141,'S'),(193,1142,'N'),(193,1144,'N'),(193,1145,'N'),(193,1146,'N'),(193,1147,'N'),(193,1148,'N'),(193,1149,'N'),(193,1150,'N'),(193,1151,'N'),(193,1152,'N'),(193,1153,'N'),(193,1154,'N'),(193,1175,'N'),(193,1176,'N'),(193,1177,'N'),(193,1178,'N'),(193,1179,'S'),(193,1180,'N'),(193,1181,'N'),(193,1182,'N'),(193,1183,'N'),(193,1184,'N'),(193,1185,'N'),(193,1186,'N'),(193,1187,'N'),(193,1188,'N'),(193,1189,'N'),(193,1190,'N'),(193,1191,'N'),(193,1212,'N'),(193,1213,'N'),(193,1214,'N'),(193,1215,'N'),(193,1216,'S'),(193,1217,'N'),(193,1218,'N'),(193,1219,'N'),(193,1220,'N'),(193,1221,'N'),(193,1222,'N'),(193,1223,'N'),(193,1224,'N'),(193,1225,'N'),(193,1226,'N'),(193,1227,'N'),(193,1228,'N'),(193,1249,'N'),(193,1250,'N'),(193,1251,'N'),(193,1252,'N'),(193,1253,'S'),(193,1254,'N'),(193,1255,'N'),(193,1256,'N'),(193,1257,'N'),(193,1258,'N'),(193,1259,'N'),(193,1260,'N'),(193,1261,'N'),(193,1262,'N'),(193,1263,'N'),(193,1264,'N'),(193,1265,'N'),(193,1286,'N'),(193,1287,'N'),(193,1288,'N'),(193,1289,'N'),(193,1290,'S'),(193,1291,'N'),(193,1292,'N'),(193,1293,'N'),(193,1294,'N'),(193,1295,'N'),(193,1296,'N'),(193,1297,'N'),(193,1298,'N'),(193,1299,'N'),(193,1300,'N'),(193,1301,'N'),(193,1302,'N'),(193,1324,'N'),(193,1325,'N'),(193,1326,'N'),(193,1327,'N'),(193,1328,'S'),(193,1329,'N'),(193,1330,'N'),(193,1331,'N'),(193,1332,'N'),(193,1333,'N'),(193,1334,'N'),(193,1335,'N'),(193,1336,'N'),(193,1337,'N'),(193,1338,'N'),(193,1339,'N'),(193,1340,'N'),(193,1363,'N'),(193,1364,'N'),(193,1365,'N'),(193,1366,'N'),(193,1367,'S'),(193,1368,'N'),(193,1369,'N'),(193,1370,'N'),(193,1371,'N'),(193,1372,'N'),(193,1373,'N'),(193,1374,'N'),(193,1375,'N'),(193,1376,'N'),(193,1377,'N'),(193,1378,'N'),(193,1379,'N'),(193,1403,'N'),(193,1404,'N'),(193,1405,'N'),(193,1406,'N'),(193,1407,'S'),(193,1408,'N'),(193,1409,'N'),(193,1410,'N'),(193,1411,'N'),(193,1412,'N'),(193,1413,'N'),(193,1414,'N'),(193,1415,'N'),(193,1416,'N'),(193,1417,'N'),(193,1418,'N'),(193,1419,'N'),(193,1443,'N'),(193,1444,'N'),(193,1445,'N'),(193,1446,'N'),(193,1447,'S'),(193,1448,'N'),(193,1449,'N'),(193,1450,'N'),(193,1451,'N'),(193,1452,'N'),(193,1453,'N'),(193,1454,'N'),(193,1455,'N'),(193,1456,'N'),(193,1457,'N'),(193,1458,'N'),(193,1459,'N'),(193,1483,'N'),(193,1484,'N'),(193,1485,'N'),(193,1486,'N'),(193,1487,'S'),(193,1488,'N'),(193,1489,'N'),(193,1490,'N'),(193,1491,'N'),(193,1492,'N'),(193,1493,'N'),(193,1494,'N'),(193,1495,'N'),(193,1496,'N'),(193,1497,'N'),(193,1498,'N'),(193,1499,'N'),(193,1523,'N'),(193,1524,'N'),(193,1525,'N'),(193,1526,'N'),(193,1527,'S'),(193,1528,'N'),(193,1529,'N'),(193,1531,'N'),(193,1533,'N'),(193,1534,'N'),(193,1535,'N'),(193,1536,'N'),(193,1537,'N'),(193,1538,'N'),(193,1539,'N'),(193,1564,'N'),(193,1565,'N'),(193,1566,'N'),(193,1567,'N'),(193,1568,'S'),(193,1569,'N'),(193,1570,'N'),(193,1571,'N'),(193,1573,'N'),(193,1574,'N'),(193,1575,'N'),(193,1576,'N'),(193,1577,'N'),(193,1578,'N'),(193,1579,'N'),(193,1604,'N'),(193,1605,'N'),(193,1606,'N'),(193,1607,'N'),(193,1608,'S'),(193,1609,'N'),(193,1610,'N'),(193,1611,'N'),(193,1612,'N'),(193,1613,'N'),(193,1614,'N'),(193,1615,'N'),(193,1616,'N'),(193,1617,'N'),(193,1618,'N'),(200,8,'S'),(200,23,'S'),(200,38,'S'),(200,53,'S'),(200,68,'S'),(200,83,'S'),(200,98,'S'),(200,113,'S'),(200,128,'S'),(200,143,'S'),(200,158,'S'),(200,173,'S'),(200,188,'S'),(200,203,'S'),(200,218,'S'),(200,233,'S'),(200,248,'S'),(200,263,'S'),(200,278,'S'),(200,294,'S'),(200,310,'S'),(200,326,'S'),(200,342,'S'),(200,359,'S'),(200,376,'S'),(200,393,'S'),(200,410,'S'),(200,427,'S'),(200,444,'S'),(200,462,'S'),(200,481,'S'),(200,501,'S'),(200,521,'S'),(200,538,'S'),(200,559,'S'),(200,581,'S'),(200,604,'S'),(200,628,'S'),(200,653,'S'),(200,679,'S'),(200,706,'S'),(200,734,'S'),(200,763,'S'),(200,793,'S'),(200,824,'S'),(200,856,'S'),(200,889,'S'),(200,923,'S'),(200,958,'S'),(200,994,'S'),(200,1031,'S'),(200,1068,'S'),(200,1106,'S'),(200,1144,'S'),(200,1181,'S'),(200,1218,'S'),(200,1255,'S'),(200,1292,'S'),(200,1330,'S'),(200,1369,'S'),(200,1409,'S'),(200,1449,'S'),(200,1489,'S'),(200,1529,'S'),(200,1570,'S'),(200,1610,'S'),(201,473,'S'),(201,492,'S'),(201,512,'S'),(201,549,'S'),(201,570,'S'),(201,592,'S'),(201,615,'S'),(201,639,'S'),(201,664,'S'),(201,690,'S'),(201,717,'S'),(201,745,'S'),(201,774,'S'),(201,804,'S'),(201,835,'S'),(201,867,'S'),(201,900,'S'),(201,934,'S'),(201,969,'S'),(201,1005,'S'),(201,1042,'S'),(201,1079,'S'),(201,1117,'S'),(201,1155,'S'),(201,1192,'S'),(201,1229,'S'),(201,1266,'S'),(201,1303,'S'),(201,1341,'S'),(201,1380,'S'),(201,1420,'S'),(201,1460,'S'),(201,1500,'S'),(201,1540,'S'),(201,1580,'S'),(201,1619,'S'),(203,473,'S'),(203,492,'S'),(203,512,'S'),(203,549,'S'),(203,570,'S'),(203,592,'S'),(203,615,'S'),(203,639,'S'),(203,664,'S'),(203,690,'S'),(203,717,'S'),(203,745,'S'),(203,774,'S'),(203,804,'S'),(203,835,'S'),(203,867,'S'),(203,900,'S'),(203,934,'S'),(203,969,'S'),(203,1005,'S'),(203,1042,'S'),(203,1079,'S'),(203,1117,'S'),(203,1155,'S'),(203,1192,'S'),(203,1229,'S'),(203,1266,'S'),(203,1303,'S'),(203,1341,'S'),(203,1380,'S'),(203,1420,'S'),(203,1460,'S'),(203,1500,'S'),(203,1540,'S'),(203,1580,'S'),(203,1619,'S'),(207,1,'N'),(207,2,'N'),(207,3,'N'),(207,4,'N'),(207,5,'S'),(207,8,'N'),(207,9,'N'),(207,10,'N'),(207,11,'N'),(207,12,'N'),(207,13,'N'),(207,14,'N'),(207,15,'N'),(207,16,'N'),(207,17,'N'),(207,18,'N'),(207,19,'N'),(207,20,'S'),(207,23,'N'),(207,24,'N'),(207,25,'N'),(207,26,'N'),(207,27,'N'),(207,28,'N'),(207,29,'N'),(207,30,'N'),(207,31,'N'),(207,32,'N'),(207,33,'N'),(207,34,'N'),(207,35,'S'),(207,38,'N'),(207,39,'N'),(207,40,'N'),(207,41,'N'),(207,42,'N'),(207,43,'N'),(207,44,'N'),(207,45,'N'),(207,46,'N'),(207,47,'N'),(207,48,'N'),(207,49,'N'),(207,50,'S'),(207,53,'N'),(207,54,'N'),(207,55,'N'),(207,56,'N'),(207,57,'N'),(207,58,'N'),(207,59,'N'),(207,60,'N'),(207,61,'N'),(207,62,'N'),(207,63,'N'),(207,64,'N'),(207,65,'S'),(207,68,'N'),(207,69,'N'),(207,70,'N'),(207,71,'N'),(207,72,'N'),(207,73,'N'),(207,74,'N'),(207,75,'N'),(207,76,'N'),(207,77,'N'),(207,78,'N'),(207,79,'N'),(207,80,'S'),(207,83,'N'),(207,84,'N'),(207,85,'N'),(207,86,'N'),(207,87,'N'),(207,88,'N'),(207,89,'N'),(207,90,'N'),(207,91,'N'),(207,92,'N'),(207,93,'N'),(207,94,'N'),(207,95,'S'),(207,98,'N'),(207,99,'N'),(207,100,'N'),(207,101,'N'),(207,102,'N'),(207,103,'N'),(207,104,'N'),(207,105,'N'),(207,106,'N'),(207,107,'N'),(207,108,'N'),(207,109,'N'),(207,110,'S'),(207,113,'N'),(207,114,'N'),(207,115,'N'),(207,116,'N'),(207,117,'N'),(207,118,'N'),(207,119,'N'),(207,120,'N'),(207,121,'N'),(207,122,'N'),(207,123,'N'),(207,124,'N'),(207,125,'S'),(207,128,'N'),(207,129,'N'),(207,130,'N'),(207,131,'N'),(207,132,'N'),(207,133,'N'),(207,134,'N'),(207,135,'N'),(207,136,'N'),(207,137,'N'),(207,138,'N'),(207,139,'N'),(207,140,'S'),(207,143,'N'),(207,144,'N'),(207,145,'N'),(207,146,'N'),(207,147,'N'),(207,148,'N'),(207,149,'N'),(207,150,'N'),(207,151,'N'),(207,152,'N'),(207,153,'N'),(207,154,'N'),(207,155,'S'),(207,158,'N'),(207,159,'N'),(207,160,'N'),(207,161,'N'),(207,162,'N'),(207,163,'N'),(207,164,'N'),(207,165,'N'),(207,166,'N'),(207,167,'N'),(207,168,'N'),(207,169,'N'),(207,170,'S'),(207,173,'N'),(207,174,'N'),(207,175,'N'),(207,176,'N'),(207,177,'N'),(207,178,'N'),(207,179,'N'),(207,180,'N'),(207,181,'N'),(207,182,'N'),(207,183,'N'),(207,184,'N'),(207,185,'S'),(207,188,'N'),(207,189,'N'),(207,190,'N'),(207,191,'N'),(207,192,'N'),(207,193,'N'),(207,194,'N'),(207,195,'N'),(207,196,'N'),(207,197,'N'),(207,198,'N'),(207,199,'N'),(207,200,'S'),(207,203,'N'),(207,204,'N'),(207,205,'N'),(207,206,'N'),(207,207,'N'),(207,208,'N'),(207,209,'N'),(207,210,'N'),(207,211,'N'),(207,212,'N'),(207,213,'N'),(207,214,'N'),(207,215,'S'),(207,218,'N'),(207,219,'N'),(207,220,'N'),(207,221,'N'),(207,222,'N'),(207,223,'N'),(207,224,'N'),(207,225,'N'),(207,226,'N'),(207,227,'N'),(207,228,'N'),(207,229,'N'),(207,230,'S'),(207,233,'N'),(207,234,'N'),(207,235,'N'),(207,236,'N'),(207,237,'N'),(207,238,'N'),(207,239,'N'),(207,240,'N'),(207,241,'N'),(207,242,'N'),(207,243,'N'),(207,244,'N'),(207,245,'S'),(207,248,'N'),(207,249,'N'),(207,250,'N'),(207,251,'N'),(207,252,'N'),(207,253,'N'),(207,254,'N'),(207,255,'N'),(207,256,'N'),(207,257,'N'),(207,258,'N'),(207,259,'N'),(207,260,'S'),(207,263,'N'),(207,264,'N'),(207,265,'N'),(207,266,'N'),(207,267,'N'),(207,268,'N'),(207,269,'N'),(207,270,'N'),(207,271,'N'),(207,272,'N'),(207,273,'N'),(207,274,'N'),(207,275,'S'),(207,278,'N'),(207,279,'N'),(207,280,'N'),(207,281,'N'),(207,282,'N'),(207,283,'N'),(207,284,'N'),(207,285,'N'),(207,286,'N'),(207,287,'N'),(207,288,'N'),(207,289,'N'),(207,290,'N'),(207,291,'S'),(207,294,'N'),(207,295,'N'),(207,296,'N'),(207,297,'N'),(207,298,'N'),(207,299,'N'),(207,300,'N'),(207,301,'N'),(207,303,'N'),(207,304,'N'),(207,305,'N'),(207,306,'N'),(207,307,'S'),(207,310,'N'),(207,311,'N'),(207,312,'N'),(207,313,'N'),(207,314,'N'),(207,315,'N'),(207,316,'N'),(207,317,'N'),(207,318,'N'),(207,319,'N'),(207,320,'N'),(207,321,'N'),(207,322,'N'),(207,323,'S'),(207,326,'N'),(207,327,'N'),(207,328,'N'),(207,329,'N'),(207,330,'N'),(207,331,'N'),(207,332,'N'),(207,333,'N'),(207,334,'N'),(207,335,'N'),(207,336,'N'),(207,337,'N'),(207,338,'N'),(207,339,'S'),(207,342,'N'),(207,343,'N'),(207,344,'N'),(207,345,'N'),(207,346,'N'),(207,347,'N'),(207,348,'N'),(207,349,'N'),(207,350,'N'),(207,352,'N'),(207,353,'N'),(207,354,'N'),(207,355,'N'),(207,356,'S'),(207,359,'N'),(207,360,'N'),(207,361,'N'),(207,362,'N'),(207,363,'N'),(207,364,'N'),(207,365,'N'),(207,366,'N'),(207,367,'N'),(207,369,'N'),(207,370,'N'),(207,371,'N'),(207,372,'N'),(207,373,'S'),(207,376,'N'),(207,377,'N'),(207,378,'N'),(207,379,'N'),(207,380,'N'),(207,381,'N'),(207,382,'N'),(207,383,'N'),(207,384,'N'),(207,386,'N'),(207,387,'N'),(207,388,'N'),(207,389,'N'),(207,390,'S'),(207,393,'N'),(207,394,'N'),(207,395,'N'),(207,396,'N'),(207,397,'N'),(207,398,'N'),(207,399,'N'),(207,400,'N'),(207,401,'N'),(207,403,'N'),(207,404,'N'),(207,405,'N'),(207,406,'N'),(207,407,'S'),(207,410,'N'),(207,411,'N'),(207,412,'N'),(207,413,'N'),(207,414,'N'),(207,415,'N'),(207,416,'N'),(207,417,'N'),(207,418,'N'),(207,420,'N'),(207,421,'N'),(207,422,'N'),(207,423,'N'),(207,424,'S'),(207,427,'N'),(207,428,'N'),(207,429,'N'),(207,430,'N'),(207,431,'N'),(207,432,'N'),(207,433,'N'),(207,434,'N'),(207,435,'N'),(207,437,'N'),(207,438,'N'),(207,439,'N'),(207,440,'N'),(207,441,'S'),(207,444,'N'),(207,445,'N'),(207,446,'N'),(207,447,'N'),(207,448,'N'),(207,449,'N'),(207,450,'N'),(207,451,'N'),(207,452,'N'),(207,453,'N'),(207,455,'N'),(207,456,'N'),(207,457,'N'),(207,458,'N'),(207,459,'S'),(207,462,'N'),(207,463,'N'),(207,464,'N'),(207,465,'N'),(207,466,'N'),(207,467,'N'),(207,468,'N'),(207,469,'N'),(207,470,'N'),(207,471,'N'),(207,473,'N'),(207,474,'N'),(207,475,'N'),(207,476,'N'),(207,477,'N'),(207,478,'S'),(207,481,'N'),(207,482,'N'),(207,483,'N'),(207,484,'N'),(207,485,'N'),(207,486,'N'),(207,487,'N'),(207,488,'N'),(207,489,'N'),(207,490,'N'),(207,492,'N'),(207,493,'N'),(207,494,'N'),(207,495,'N'),(207,496,'N'),(207,497,'N'),(207,498,'S'),(207,501,'N'),(207,502,'N'),(207,503,'N'),(207,504,'N'),(207,505,'N'),(207,506,'N'),(207,507,'N'),(207,508,'N'),(207,509,'N'),(207,510,'N'),(207,512,'N'),(207,513,'N'),(207,514,'N'),(207,515,'N'),(207,516,'N'),(207,517,'N'),(207,518,'S'),(207,521,'N'),(207,522,'N'),(207,523,'N'),(207,524,'N'),(207,525,'N'),(207,526,'N'),(207,527,'N'),(207,528,'N'),(207,529,'N'),(207,530,'N'),(207,531,'N'),(207,532,'N'),(207,533,'N'),(207,534,'N'),(207,535,'S'),(207,538,'N'),(207,539,'N'),(207,540,'N'),(207,541,'N'),(207,542,'N'),(207,543,'N'),(207,544,'N'),(207,545,'N'),(207,546,'N'),(207,547,'N'),(207,549,'N'),(207,550,'N'),(207,552,'N'),(207,553,'N'),(207,554,'N'),(207,555,'N'),(207,556,'S'),(207,559,'N'),(207,560,'N'),(207,561,'N'),(207,562,'N'),(207,563,'N'),(207,564,'N'),(207,565,'N'),(207,566,'N'),(207,567,'N'),(207,568,'N'),(207,570,'N'),(207,571,'N'),(207,574,'N'),(207,575,'N'),(207,576,'N'),(207,577,'N'),(207,578,'S'),(207,581,'N'),(207,582,'N'),(207,583,'N'),(207,584,'N'),(207,585,'N'),(207,586,'N'),(207,587,'N'),(207,588,'N'),(207,589,'N'),(207,590,'N'),(207,592,'N'),(207,593,'N'),(207,597,'N'),(207,598,'N'),(207,599,'N'),(207,600,'N'),(207,601,'S'),(207,604,'N'),(207,605,'N'),(207,606,'N'),(207,607,'N'),(207,608,'N'),(207,609,'N'),(207,610,'N'),(207,611,'N'),(207,612,'N'),(207,613,'N'),(207,615,'N'),(207,616,'N'),(207,621,'N'),(207,622,'N'),(207,623,'N'),(207,624,'N'),(207,625,'S'),(207,628,'N'),(207,629,'N'),(207,630,'N'),(207,631,'N'),(207,632,'N'),(207,633,'N'),(207,634,'N'),(207,635,'N'),(207,636,'N'),(207,637,'N'),(207,639,'N'),(207,640,'N'),(207,646,'N'),(207,647,'N'),(207,648,'N'),(207,649,'N'),(207,650,'S'),(207,653,'N'),(207,654,'N'),(207,655,'N'),(207,656,'N'),(207,657,'N'),(207,658,'N'),(207,659,'N'),(207,660,'N'),(207,661,'N'),(207,662,'N'),(207,664,'N'),(207,665,'N'),(207,672,'N'),(207,673,'N'),(207,674,'N'),(207,675,'N'),(207,676,'S'),(207,679,'N'),(207,680,'N'),(207,681,'N'),(207,682,'N'),(207,683,'N'),(207,684,'N'),(207,685,'N'),(207,686,'N'),(207,687,'N'),(207,688,'N'),(207,690,'N'),(207,691,'N'),(207,699,'N'),(207,700,'N'),(207,701,'N'),(207,702,'N'),(207,703,'S'),(207,706,'N'),(207,707,'N'),(207,708,'N'),(207,709,'N'),(207,710,'N'),(207,711,'N'),(207,712,'N'),(207,713,'N'),(207,714,'N'),(207,715,'N'),(207,717,'N'),(207,718,'N'),(207,727,'N'),(207,728,'N'),(207,729,'N'),(207,730,'N'),(207,731,'S'),(207,734,'N'),(207,735,'N'),(207,736,'N'),(207,737,'N'),(207,738,'N'),(207,739,'N'),(207,740,'N'),(207,741,'N'),(207,742,'N'),(207,743,'N'),(207,745,'N'),(207,746,'N'),(207,756,'N'),(207,757,'N'),(207,758,'N'),(207,759,'N'),(207,760,'S'),(207,763,'N'),(207,764,'N'),(207,765,'N'),(207,766,'N'),(207,767,'N'),(207,768,'N'),(207,769,'N'),(207,770,'N'),(207,771,'N'),(207,772,'N'),(207,774,'N'),(207,775,'N'),(207,786,'N'),(207,787,'N'),(207,788,'N'),(207,789,'N'),(207,790,'S'),(207,793,'N'),(207,794,'N'),(207,795,'N'),(207,796,'N'),(207,797,'N'),(207,798,'N'),(207,799,'N'),(207,800,'N'),(207,801,'N'),(207,802,'N'),(207,804,'N'),(207,805,'N'),(207,817,'N'),(207,818,'N'),(207,819,'N'),(207,820,'N'),(207,821,'S'),(207,824,'N'),(207,825,'N'),(207,826,'N'),(207,827,'N'),(207,828,'N'),(207,829,'N'),(207,830,'N'),(207,831,'N'),(207,832,'N'),(207,833,'N'),(207,835,'N'),(207,836,'N'),(207,849,'N'),(207,850,'N'),(207,851,'N'),(207,852,'N'),(207,853,'S'),(207,856,'N'),(207,857,'N'),(207,858,'N'),(207,859,'N'),(207,860,'N'),(207,861,'N'),(207,862,'N'),(207,863,'N'),(207,864,'N'),(207,865,'N'),(207,867,'N'),(207,868,'N'),(207,882,'N'),(207,883,'N'),(207,884,'N'),(207,885,'N'),(207,886,'S'),(207,889,'N'),(207,890,'N'),(207,891,'N'),(207,892,'N'),(207,893,'N'),(207,894,'N'),(207,895,'N'),(207,896,'N'),(207,897,'N'),(207,898,'N'),(207,900,'N'),(207,901,'N'),(207,916,'N'),(207,917,'N'),(207,918,'N'),(207,919,'N'),(207,920,'S'),(207,923,'N'),(207,924,'N'),(207,925,'N'),(207,926,'N'),(207,927,'N'),(207,928,'N'),(207,929,'N'),(207,930,'N'),(207,931,'N'),(207,932,'N'),(207,934,'N'),(207,935,'N'),(207,951,'N'),(207,952,'N'),(207,953,'N'),(207,954,'N'),(207,955,'S'),(207,958,'N'),(207,959,'N'),(207,960,'N'),(207,961,'N'),(207,962,'N'),(207,963,'N'),(207,964,'N'),(207,965,'N'),(207,966,'N'),(207,967,'N'),(207,969,'N'),(207,970,'N'),(207,987,'N'),(207,988,'N'),(207,989,'N'),(207,990,'N'),(207,991,'S'),(207,994,'N'),(207,995,'N'),(207,996,'N'),(207,997,'N'),(207,998,'N'),(207,999,'N'),(207,1000,'N'),(207,1001,'N'),(207,1002,'N'),(207,1003,'N'),(207,1005,'N'),(207,1006,'N'),(207,1024,'N'),(207,1025,'N'),(207,1026,'N'),(207,1027,'N'),(207,1028,'S'),(207,1031,'N'),(207,1032,'N'),(207,1033,'N'),(207,1034,'N'),(207,1035,'N'),(207,1036,'N'),(207,1037,'N'),(207,1038,'N'),(207,1039,'N'),(207,1040,'N'),(207,1042,'N'),(207,1043,'N'),(207,1061,'N'),(207,1062,'N'),(207,1063,'N'),(207,1064,'N'),(207,1065,'S'),(207,1068,'N'),(207,1069,'N'),(207,1070,'N'),(207,1071,'N'),(207,1072,'N'),(207,1073,'N'),(207,1074,'N'),(207,1075,'N'),(207,1076,'N'),(207,1077,'N'),(207,1079,'N'),(207,1080,'N'),(207,1099,'N'),(207,1100,'N'),(207,1101,'N'),(207,1102,'N'),(207,1103,'S'),(207,1104,'N'),(207,1106,'N'),(207,1107,'N'),(207,1108,'N'),(207,1109,'N'),(207,1110,'N'),(207,1111,'N'),(207,1112,'N'),(207,1113,'N'),(207,1114,'N'),(207,1115,'N'),(207,1117,'N'),(207,1118,'N'),(207,1137,'N'),(207,1138,'N'),(207,1139,'N'),(207,1140,'N'),(207,1141,'S'),(207,1142,'N'),(207,1144,'N'),(207,1145,'N'),(207,1146,'N'),(207,1147,'N'),(207,1148,'N'),(207,1149,'N'),(207,1150,'N'),(207,1151,'N'),(207,1152,'N'),(207,1153,'N'),(207,1155,'N'),(207,1156,'N'),(207,1177,'N'),(207,1178,'N'),(207,1179,'N'),(207,1180,'N'),(207,1181,'N'),(207,1183,'N'),(207,1184,'N'),(207,1186,'N'),(207,1187,'N'),(207,1188,'N'),(207,1190,'N'),(207,1192,'N'),(207,1196,'N'),(207,1197,'N'),(207,1198,'S'),(207,1199,'N'),(207,1202,'N'),(207,1203,'N'),(207,1204,'N'),(207,1205,'N'),(207,1208,'N'),(207,1209,'N'),(207,1210,'N'),(207,1211,'N'),(207,1214,'N'),(207,1215,'N'),(207,1216,'N'),(207,1217,'N'),(207,1218,'N'),(207,1220,'N'),(207,1221,'N'),(207,1223,'N'),(207,1224,'N'),(207,1225,'N'),(207,1227,'N'),(207,1229,'N'),(207,1233,'N'),(207,1234,'N'),(207,1235,'S'),(207,1236,'N'),(207,1239,'N'),(207,1240,'N'),(207,1241,'N'),(207,1242,'N'),(207,1245,'N'),(207,1246,'N'),(207,1247,'N'),(207,1248,'N'),(207,1251,'N'),(207,1252,'N'),(207,1253,'N'),(207,1254,'N'),(207,1255,'N'),(207,1257,'N'),(207,1258,'N'),(207,1260,'N'),(207,1261,'N'),(207,1262,'N'),(207,1264,'N'),(207,1266,'N'),(207,1270,'N'),(207,1271,'N'),(207,1272,'S'),(207,1273,'N'),(207,1276,'N'),(207,1277,'N'),(207,1278,'N'),(207,1279,'N'),(207,1282,'N'),(207,1283,'N'),(207,1284,'N'),(207,1285,'N'),(207,1288,'N'),(207,1289,'N'),(207,1290,'N'),(207,1291,'N'),(207,1292,'N'),(207,1294,'N'),(207,1295,'N'),(207,1297,'N'),(207,1298,'N'),(207,1299,'N'),(207,1301,'N'),(207,1303,'N'),(207,1307,'N'),(207,1308,'N'),(207,1309,'S'),(207,1310,'N'),(207,1313,'N'),(207,1314,'N'),(207,1315,'N'),(207,1316,'N'),(207,1319,'N'),(207,1320,'N'),(207,1321,'N'),(207,1322,'N'),(207,1326,'N'),(207,1327,'N'),(207,1328,'N'),(207,1329,'N'),(207,1330,'N'),(207,1332,'N'),(207,1333,'N'),(207,1335,'N'),(207,1336,'N'),(207,1337,'N'),(207,1339,'N'),(207,1341,'N'),(207,1345,'N'),(207,1346,'N'),(207,1347,'S'),(207,1348,'N'),(207,1351,'N'),(207,1352,'N'),(207,1353,'N'),(207,1354,'N'),(207,1357,'N'),(207,1358,'N'),(207,1359,'N'),(207,1360,'N'),(207,1365,'N'),(207,1366,'N'),(207,1367,'N'),(207,1368,'N'),(207,1369,'N'),(207,1371,'N'),(207,1372,'N'),(207,1374,'N'),(207,1375,'N'),(207,1376,'N'),(207,1378,'N'),(207,1380,'N'),(207,1384,'N'),(207,1385,'N'),(207,1386,'S'),(207,1387,'N'),(207,1390,'N'),(207,1391,'N'),(207,1392,'N'),(207,1393,'N'),(207,1396,'N'),(207,1397,'N'),(207,1398,'N'),(207,1399,'N'),(207,1405,'N'),(207,1406,'N'),(207,1407,'N'),(207,1408,'N'),(207,1409,'N'),(207,1411,'N'),(207,1412,'N'),(207,1414,'N'),(207,1415,'N'),(207,1416,'N'),(207,1418,'N'),(207,1420,'N'),(207,1424,'N'),(207,1425,'N'),(207,1426,'S'),(207,1427,'N'),(207,1430,'N'),(207,1431,'N'),(207,1432,'N'),(207,1433,'N'),(207,1436,'N'),(207,1437,'N'),(207,1438,'N'),(207,1439,'N'),(207,1445,'N'),(207,1446,'N'),(207,1447,'N'),(207,1448,'N'),(207,1449,'N'),(207,1451,'N'),(207,1452,'N'),(207,1454,'N'),(207,1455,'N'),(207,1456,'N'),(207,1458,'N'),(207,1460,'N'),(207,1464,'N'),(207,1465,'N'),(207,1466,'S'),(207,1467,'N'),(207,1470,'N'),(207,1471,'N'),(207,1472,'N'),(207,1473,'N'),(207,1476,'N'),(207,1477,'N'),(207,1478,'N'),(207,1479,'N'),(207,1485,'N'),(207,1486,'N'),(207,1487,'N'),(207,1488,'N'),(207,1489,'N'),(207,1491,'N'),(207,1494,'N'),(207,1495,'N'),(207,1496,'N'),(207,1498,'N'),(207,1500,'N'),(207,1504,'N'),(207,1505,'N'),(207,1506,'S'),(207,1507,'N'),(207,1510,'N'),(207,1511,'N'),(207,1512,'N'),(207,1513,'N'),(207,1516,'N'),(207,1517,'N'),(207,1518,'N'),(207,1519,'N'),(207,1525,'N'),(207,1526,'N'),(207,1527,'N'),(207,1528,'N'),(207,1529,'N'),(207,1531,'N'),(207,1534,'N'),(207,1535,'N'),(207,1536,'N'),(207,1538,'N'),(207,1540,'N'),(207,1544,'N'),(207,1545,'N'),(207,1546,'S'),(207,1547,'N'),(207,1550,'N'),(207,1551,'N'),(207,1552,'N'),(207,1553,'N'),(207,1556,'N'),(207,1557,'N'),(207,1558,'N'),(207,1559,'N'),(207,1566,'N'),(207,1567,'N'),(207,1568,'N'),(207,1569,'N'),(207,1570,'N'),(207,1571,'N'),(207,1574,'N'),(207,1575,'N'),(207,1576,'N'),(207,1578,'N'),(207,1580,'N'),(207,1584,'N'),(207,1585,'N'),(207,1586,'S'),(207,1587,'N'),(207,1590,'N'),(207,1591,'N'),(207,1592,'N'),(207,1593,'N'),(207,1596,'N'),(207,1597,'N'),(207,1598,'N'),(207,1599,'N'),(207,1606,'N'),(207,1607,'N'),(207,1608,'N'),(207,1609,'N'),(207,1610,'N'),(207,1611,'N'),(207,1613,'N'),(207,1614,'N'),(207,1615,'N'),(207,1617,'N'),(207,1619,'N'),(207,1623,'N'),(207,1624,'N'),(207,1625,'S'),(207,1626,'N'),(207,1629,'N'),(207,1630,'N'),(207,1631,'N'),(207,1632,'N'),(207,1635,'N'),(207,1636,'N'),(207,1637,'N'),(207,1638,'N'),(208,8,'S'),(208,23,'S'),(208,38,'S'),(208,53,'S'),(208,68,'S'),(208,83,'S'),(208,98,'S'),(208,113,'S'),(208,128,'S'),(208,143,'S'),(208,158,'S'),(208,173,'S'),(208,188,'S'),(208,203,'S'),(208,218,'S'),(208,233,'S'),(208,248,'S'),(208,263,'S'),(208,278,'S'),(208,294,'S'),(208,310,'S'),(208,326,'S'),(208,342,'S'),(208,359,'S'),(208,376,'S'),(208,393,'S'),(208,410,'S'),(208,427,'S'),(208,444,'S'),(208,462,'S'),(208,481,'S'),(208,501,'S'),(208,521,'S'),(208,538,'S'),(208,559,'S'),(208,581,'S'),(208,604,'S'),(208,628,'S'),(208,653,'S'),(208,679,'S'),(208,706,'S'),(208,734,'S'),(208,763,'S'),(208,793,'S'),(208,824,'S'),(208,856,'S'),(208,889,'S'),(208,923,'S'),(208,958,'S'),(208,994,'S'),(208,1031,'S'),(208,1068,'S'),(208,1106,'S'),(208,1144,'S'),(208,1181,'S'),(208,1218,'S'),(208,1255,'S'),(208,1292,'S'),(208,1330,'S'),(208,1369,'S'),(208,1409,'S'),(208,1449,'S'),(208,1489,'S'),(208,1529,'S'),(208,1570,'S'),(208,1610,'S'),(209,1,'N'),(209,2,'N'),(209,3,'N'),(209,4,'N'),(209,5,'S'),(209,8,'N'),(209,9,'N'),(209,10,'N'),(209,11,'N'),(209,12,'N'),(209,13,'N'),(209,14,'N'),(209,15,'N'),(209,16,'N'),(209,17,'N'),(209,18,'N'),(209,19,'N'),(209,20,'S'),(209,23,'N'),(209,24,'N'),(209,25,'N'),(209,26,'N'),(209,27,'N'),(209,28,'N'),(209,29,'N'),(209,30,'N'),(209,31,'N'),(209,32,'N'),(209,33,'N'),(209,34,'N'),(209,35,'S'),(209,38,'N'),(209,39,'N'),(209,40,'N'),(209,41,'N'),(209,42,'N'),(209,43,'N'),(209,44,'N'),(209,45,'N'),(209,46,'N'),(209,47,'N'),(209,48,'N'),(209,49,'N'),(209,50,'S'),(209,53,'N'),(209,54,'N'),(209,55,'N'),(209,56,'N'),(209,57,'N'),(209,58,'N'),(209,59,'N'),(209,60,'N'),(209,61,'N'),(209,62,'N'),(209,63,'N'),(209,64,'N'),(209,65,'S'),(209,68,'N'),(209,69,'N'),(209,70,'N'),(209,71,'N'),(209,72,'N'),(209,73,'N'),(209,74,'N'),(209,75,'N'),(209,76,'N'),(209,77,'N'),(209,78,'N'),(209,79,'N'),(209,80,'S'),(209,83,'N'),(209,84,'N'),(209,85,'N'),(209,86,'N'),(209,87,'N'),(209,88,'N'),(209,89,'N'),(209,90,'N'),(209,91,'N'),(209,92,'N'),(209,93,'N'),(209,94,'N'),(209,95,'S'),(209,98,'N'),(209,99,'N'),(209,100,'N'),(209,101,'N'),(209,102,'N'),(209,103,'N'),(209,104,'N'),(209,105,'N'),(209,106,'N'),(209,107,'N'),(209,108,'N'),(209,109,'N'),(209,110,'S'),(209,113,'N'),(209,114,'N'),(209,115,'N'),(209,116,'N'),(209,117,'N'),(209,118,'N'),(209,119,'N'),(209,120,'N'),(209,121,'N'),(209,122,'N'),(209,123,'N'),(209,124,'N'),(209,125,'S'),(209,128,'N'),(209,129,'N'),(209,130,'N'),(209,131,'N'),(209,132,'N'),(209,133,'N'),(209,134,'N'),(209,135,'N'),(209,136,'N'),(209,137,'N'),(209,138,'N'),(209,139,'N'),(209,140,'S'),(209,143,'N'),(209,144,'N'),(209,145,'N'),(209,146,'N'),(209,147,'N'),(209,148,'N'),(209,149,'N'),(209,150,'N'),(209,151,'N'),(209,152,'N'),(209,153,'N'),(209,154,'N'),(209,155,'S'),(209,158,'N'),(209,159,'N'),(209,160,'N'),(209,161,'N'),(209,162,'N'),(209,163,'N'),(209,164,'N'),(209,165,'N'),(209,166,'N'),(209,167,'N'),(209,168,'N'),(209,169,'N'),(209,170,'S'),(209,173,'N'),(209,174,'N'),(209,175,'N'),(209,176,'N'),(209,177,'N'),(209,178,'N'),(209,179,'N'),(209,180,'N'),(209,181,'N'),(209,182,'N'),(209,183,'N'),(209,184,'N'),(209,185,'S'),(209,188,'N'),(209,189,'N'),(209,190,'N'),(209,191,'N'),(209,192,'N'),(209,193,'N'),(209,194,'N'),(209,195,'N'),(209,196,'N'),(209,197,'N'),(209,198,'N'),(209,199,'N'),(209,200,'S'),(209,203,'N'),(209,204,'N'),(209,205,'N'),(209,206,'N'),(209,207,'N'),(209,208,'N'),(209,209,'N'),(209,210,'N'),(209,211,'N'),(209,212,'N'),(209,213,'N'),(209,214,'N'),(209,215,'S'),(209,218,'N'),(209,219,'N'),(209,220,'N'),(209,221,'N'),(209,222,'N'),(209,223,'N'),(209,224,'N'),(209,225,'N'),(209,226,'N'),(209,227,'N'),(209,228,'N'),(209,229,'N'),(209,230,'S'),(209,233,'N'),(209,234,'N'),(209,235,'N'),(209,236,'N'),(209,237,'N'),(209,238,'N'),(209,239,'N'),(209,240,'N'),(209,241,'N'),(209,242,'N'),(209,243,'N'),(209,244,'N'),(209,245,'S'),(209,248,'N'),(209,249,'N'),(209,250,'N'),(209,251,'N'),(209,252,'N'),(209,253,'N'),(209,254,'N'),(209,255,'N'),(209,256,'N'),(209,257,'N'),(209,258,'N'),(209,259,'N'),(209,260,'S'),(209,263,'N'),(209,264,'N'),(209,265,'N'),(209,266,'N'),(209,267,'N'),(209,268,'N'),(209,269,'N'),(209,270,'N'),(209,271,'N'),(209,272,'N'),(209,273,'N'),(209,274,'N'),(209,275,'S'),(209,278,'N'),(209,279,'N'),(209,280,'N'),(209,281,'N'),(209,282,'N'),(209,283,'N'),(209,284,'N'),(209,285,'N'),(209,286,'N'),(209,287,'N'),(209,288,'N'),(209,289,'N'),(209,290,'N'),(209,291,'S'),(209,294,'N'),(209,295,'N'),(209,296,'N'),(209,297,'N'),(209,298,'N'),(209,299,'N'),(209,300,'N'),(209,301,'N'),(209,303,'N'),(209,304,'N'),(209,305,'N'),(209,306,'N'),(209,307,'S'),(209,310,'N'),(209,311,'N'),(209,312,'N'),(209,313,'N'),(209,314,'N'),(209,315,'N'),(209,316,'N'),(209,317,'N'),(209,318,'N'),(209,319,'N'),(209,320,'N'),(209,321,'N'),(209,322,'N'),(209,323,'S'),(209,326,'N'),(209,327,'N'),(209,328,'N'),(209,329,'N'),(209,330,'N'),(209,331,'N'),(209,332,'N'),(209,333,'N'),(209,334,'N'),(209,335,'N'),(209,336,'N'),(209,337,'N'),(209,338,'N'),(209,339,'S'),(209,342,'N'),(209,343,'N'),(209,344,'N'),(209,345,'N'),(209,346,'N'),(209,347,'N'),(209,348,'N'),(209,349,'N'),(209,350,'N'),(209,352,'N'),(209,353,'N'),(209,354,'N'),(209,355,'N'),(209,356,'S'),(209,359,'N'),(209,360,'N'),(209,361,'N'),(209,362,'N'),(209,363,'N'),(209,364,'N'),(209,365,'N'),(209,366,'N'),(209,367,'N'),(209,369,'N'),(209,370,'N'),(209,371,'N'),(209,372,'N'),(209,373,'S'),(209,376,'N'),(209,377,'N'),(209,378,'N'),(209,379,'N'),(209,380,'N'),(209,381,'N'),(209,382,'N'),(209,383,'N'),(209,384,'N'),(209,386,'N'),(209,387,'N'),(209,388,'N'),(209,389,'N'),(209,390,'S'),(209,393,'N'),(209,394,'N'),(209,395,'N'),(209,396,'N'),(209,397,'N'),(209,398,'N'),(209,399,'N'),(209,400,'N'),(209,401,'N'),(209,403,'N'),(209,404,'N'),(209,405,'N'),(209,406,'N'),(209,407,'S'),(209,410,'N'),(209,411,'N'),(209,412,'N'),(209,413,'N'),(209,414,'N'),(209,415,'N'),(209,416,'N'),(209,417,'N'),(209,418,'N'),(209,420,'N'),(209,421,'N'),(209,422,'N'),(209,423,'N'),(209,424,'S'),(209,427,'N'),(209,428,'N'),(209,429,'N'),(209,430,'N'),(209,431,'N'),(209,432,'N'),(209,433,'N'),(209,434,'N'),(209,435,'N'),(209,437,'N'),(209,438,'N'),(209,439,'N'),(209,440,'N'),(209,441,'S'),(209,444,'N'),(209,445,'N'),(209,446,'N'),(209,447,'N'),(209,448,'N'),(209,449,'N'),(209,450,'N'),(209,451,'N'),(209,452,'N'),(209,453,'N'),(209,455,'N'),(209,456,'N'),(209,457,'N'),(209,458,'N'),(209,459,'S'),(209,462,'N'),(209,463,'N'),(209,464,'N'),(209,465,'N'),(209,466,'N'),(209,467,'N'),(209,468,'N'),(209,469,'N'),(209,470,'N'),(209,471,'N'),(209,473,'N'),(209,474,'N'),(209,475,'N'),(209,476,'N'),(209,477,'N'),(209,478,'S'),(209,481,'N'),(209,482,'N'),(209,483,'N'),(209,484,'N'),(209,485,'N'),(209,486,'N'),(209,487,'N'),(209,488,'N'),(209,489,'N'),(209,490,'N'),(209,492,'N'),(209,493,'N'),(209,494,'N'),(209,495,'N'),(209,496,'N'),(209,497,'N'),(209,498,'S'),(209,501,'N'),(209,502,'N'),(209,503,'N'),(209,504,'N'),(209,505,'N'),(209,506,'N'),(209,507,'N'),(209,508,'N'),(209,509,'N'),(209,510,'N'),(209,512,'N'),(209,513,'N'),(209,514,'N'),(209,515,'N'),(209,516,'N'),(209,517,'N'),(209,518,'S'),(209,521,'N'),(209,522,'N'),(209,523,'N'),(209,524,'N'),(209,525,'N'),(209,526,'N'),(209,527,'N'),(209,528,'N'),(209,529,'N'),(209,530,'N'),(209,531,'N'),(209,532,'N'),(209,533,'N'),(209,534,'N'),(209,535,'S'),(209,538,'N'),(209,539,'N'),(209,540,'N'),(209,541,'N'),(209,542,'N'),(209,543,'N'),(209,544,'N'),(209,545,'N'),(209,546,'N'),(209,547,'N'),(209,549,'N'),(209,550,'N'),(209,552,'N'),(209,553,'N'),(209,554,'N'),(209,555,'N'),(209,556,'S'),(209,559,'N'),(209,560,'N'),(209,561,'N'),(209,562,'N'),(209,563,'N'),(209,564,'N'),(209,565,'N'),(209,566,'N'),(209,567,'N'),(209,568,'N'),(209,570,'N'),(209,571,'N'),(209,574,'N'),(209,575,'N'),(209,576,'N'),(209,577,'N'),(209,578,'S'),(209,581,'N'),(209,582,'N'),(209,583,'N'),(209,584,'N'),(209,585,'N'),(209,586,'N'),(209,587,'N'),(209,588,'N'),(209,589,'N'),(209,590,'N'),(209,592,'N'),(209,593,'N'),(209,597,'N'),(209,598,'N'),(209,599,'N'),(209,600,'N'),(209,601,'S'),(209,604,'N'),(209,605,'N'),(209,606,'N'),(209,607,'N'),(209,608,'N'),(209,609,'N'),(209,610,'N'),(209,611,'N'),(209,612,'N'),(209,613,'N'),(209,615,'N'),(209,616,'N'),(209,621,'N'),(209,622,'N'),(209,623,'N'),(209,624,'N'),(209,625,'S'),(209,628,'N'),(209,629,'N'),(209,630,'N'),(209,631,'N'),(209,632,'N'),(209,633,'N'),(209,634,'N'),(209,635,'N'),(209,636,'N'),(209,637,'N'),(209,639,'N'),(209,640,'N'),(209,646,'N'),(209,647,'N'),(209,648,'N'),(209,649,'N'),(209,650,'S'),(209,653,'N'),(209,654,'N'),(209,655,'N'),(209,656,'N'),(209,657,'N'),(209,658,'N'),(209,659,'N'),(209,660,'N'),(209,661,'N'),(209,662,'N'),(209,664,'N'),(209,665,'N'),(209,672,'N'),(209,673,'N'),(209,674,'N'),(209,675,'N'),(209,676,'S'),(209,679,'N'),(209,680,'N'),(209,681,'N'),(209,682,'N'),(209,683,'N'),(209,684,'N'),(209,685,'N'),(209,686,'N'),(209,687,'N'),(209,688,'N'),(209,690,'N'),(209,691,'N'),(209,699,'N'),(209,700,'N'),(209,701,'N'),(209,702,'N'),(209,703,'S'),(209,706,'N'),(209,707,'N'),(209,708,'N'),(209,709,'N'),(209,710,'N'),(209,711,'N'),(209,712,'N'),(209,713,'N'),(209,714,'N'),(209,715,'N'),(209,717,'N'),(209,718,'N'),(209,727,'N'),(209,728,'N'),(209,729,'N'),(209,730,'N'),(209,731,'S'),(209,734,'N'),(209,735,'N'),(209,736,'N'),(209,737,'N'),(209,738,'N'),(209,739,'N'),(209,740,'N'),(209,741,'N'),(209,742,'N'),(209,743,'N'),(209,745,'N'),(209,746,'N'),(209,756,'N'),(209,757,'N'),(209,758,'N'),(209,759,'N'),(209,760,'S'),(209,763,'N'),(209,764,'N'),(209,765,'N'),(209,766,'N'),(209,767,'N'),(209,768,'N'),(209,769,'N'),(209,770,'N'),(209,771,'N'),(209,772,'N'),(209,774,'N'),(209,775,'N'),(209,786,'N'),(209,787,'N'),(209,788,'N'),(209,789,'N'),(209,790,'S'),(209,793,'N'),(209,794,'N'),(209,795,'N'),(209,796,'N'),(209,797,'N'),(209,798,'N'),(209,799,'N'),(209,800,'N'),(209,801,'N'),(209,802,'N'),(209,804,'N'),(209,805,'N'),(209,817,'N'),(209,818,'N'),(209,819,'N'),(209,820,'N'),(209,821,'S'),(209,824,'N'),(209,825,'N'),(209,826,'N'),(209,827,'N'),(209,828,'N'),(209,829,'N'),(209,830,'N'),(209,831,'N'),(209,832,'N'),(209,833,'N'),(209,835,'N'),(209,836,'N'),(209,849,'N'),(209,850,'N'),(209,851,'N'),(209,852,'N'),(209,853,'S'),(209,856,'N'),(209,857,'N'),(209,858,'N'),(209,859,'N'),(209,860,'N'),(209,861,'N'),(209,862,'N'),(209,863,'N'),(209,864,'N'),(209,865,'N'),(209,867,'N'),(209,868,'N'),(209,882,'N'),(209,883,'N'),(209,884,'N'),(209,885,'N'),(209,886,'S'),(209,889,'N'),(209,890,'N'),(209,891,'N'),(209,892,'N'),(209,893,'N'),(209,894,'N'),(209,895,'N'),(209,896,'N'),(209,897,'N'),(209,898,'N'),(209,900,'N'),(209,901,'N'),(209,916,'N'),(209,917,'N'),(209,918,'N'),(209,919,'N'),(209,920,'S'),(209,923,'N'),(209,924,'N'),(209,925,'N'),(209,926,'N'),(209,927,'N'),(209,928,'N'),(209,929,'N'),(209,930,'N'),(209,931,'N'),(209,932,'N'),(209,934,'N'),(209,935,'N'),(209,951,'N'),(209,952,'N'),(209,953,'N'),(209,954,'N'),(209,955,'S'),(209,958,'N'),(209,959,'N'),(209,960,'N'),(209,961,'N'),(209,962,'N'),(209,963,'N'),(209,964,'N'),(209,965,'N'),(209,966,'N'),(209,967,'N'),(209,969,'N'),(209,970,'N'),(209,987,'N'),(209,988,'N'),(209,989,'N'),(209,990,'N'),(209,991,'S'),(209,994,'N'),(209,995,'N'),(209,996,'N'),(209,997,'N'),(209,998,'N'),(209,999,'N'),(209,1000,'N'),(209,1001,'N'),(209,1002,'N'),(209,1003,'N'),(209,1005,'N'),(209,1006,'N'),(209,1024,'N'),(209,1025,'N'),(209,1026,'N'),(209,1027,'N'),(209,1028,'S'),(209,1031,'N'),(209,1032,'N'),(209,1033,'N'),(209,1034,'N'),(209,1035,'N'),(209,1036,'N'),(209,1037,'N'),(209,1038,'N'),(209,1039,'N'),(209,1040,'N'),(209,1042,'N'),(209,1043,'N'),(209,1061,'N'),(209,1062,'N'),(209,1063,'N'),(209,1064,'N'),(209,1065,'S'),(209,1068,'N'),(209,1069,'N'),(209,1070,'N'),(209,1071,'N'),(209,1072,'N'),(209,1073,'N'),(209,1074,'N'),(209,1075,'N'),(209,1076,'N'),(209,1077,'N'),(209,1079,'N'),(209,1080,'N'),(209,1099,'N'),(209,1100,'N'),(209,1101,'N'),(209,1102,'N'),(209,1103,'S'),(209,1104,'N'),(209,1106,'N'),(209,1107,'N'),(209,1108,'N'),(209,1109,'N'),(209,1110,'N'),(209,1111,'N'),(209,1112,'N'),(209,1113,'N'),(209,1114,'N'),(209,1115,'N'),(209,1117,'N'),(209,1118,'N'),(209,1137,'N'),(209,1138,'N'),(209,1139,'N'),(209,1140,'N'),(209,1141,'S'),(209,1142,'N'),(209,1144,'N'),(209,1145,'N'),(209,1146,'N'),(209,1147,'N'),(209,1148,'N'),(209,1149,'N'),(209,1150,'N'),(209,1151,'N'),(209,1152,'N'),(209,1153,'N'),(209,1155,'N'),(209,1156,'N'),(209,1175,'N'),(209,1176,'N'),(209,1177,'N'),(209,1178,'N'),(209,1179,'S'),(209,1180,'N'),(209,1181,'N'),(209,1182,'N'),(209,1183,'N'),(209,1184,'N'),(209,1185,'N'),(209,1186,'N'),(209,1187,'N'),(209,1188,'N'),(209,1189,'N'),(209,1190,'N'),(209,1192,'N'),(209,1193,'N'),(209,1212,'N'),(209,1213,'N'),(209,1214,'N'),(209,1215,'N'),(209,1216,'S'),(209,1217,'N'),(209,1218,'N'),(209,1219,'N'),(209,1220,'N'),(209,1221,'N'),(209,1222,'N'),(209,1223,'N'),(209,1224,'N'),(209,1225,'N'),(209,1226,'N'),(209,1227,'N'),(209,1229,'N'),(209,1230,'N'),(209,1251,'N'),(209,1252,'N'),(209,1253,'S'),(209,1254,'N'),(209,1255,'N'),(209,1257,'N'),(209,1258,'N'),(209,1260,'N'),(209,1261,'N'),(209,1262,'N'),(209,1264,'N'),(209,1266,'N'),(209,1270,'N'),(209,1271,'N'),(209,1272,'N'),(209,1273,'N'),(209,1276,'N'),(209,1277,'N'),(209,1278,'N'),(209,1279,'N'),(209,1282,'N'),(209,1283,'N'),(209,1284,'N'),(209,1285,'N'),(209,1288,'N'),(209,1289,'N'),(209,1290,'S'),(209,1291,'N'),(209,1292,'N'),(209,1294,'N'),(209,1295,'N'),(209,1297,'N'),(209,1298,'N'),(209,1299,'N'),(209,1301,'N'),(209,1303,'N'),(209,1307,'N'),(209,1308,'N'),(209,1309,'N'),(209,1310,'N'),(209,1313,'N'),(209,1314,'N'),(209,1315,'N'),(209,1316,'N'),(209,1319,'N'),(209,1320,'N'),(209,1321,'N'),(209,1322,'N'),(209,1326,'N'),(209,1327,'N'),(209,1328,'S'),(209,1329,'N'),(209,1330,'N'),(209,1332,'N'),(209,1333,'N'),(209,1335,'N'),(209,1336,'N'),(209,1337,'N'),(209,1339,'N'),(209,1341,'N'),(209,1345,'N'),(209,1346,'N'),(209,1347,'N'),(209,1348,'N'),(209,1351,'N'),(209,1352,'N'),(209,1353,'N'),(209,1354,'N'),(209,1357,'N'),(209,1358,'N'),(209,1359,'N'),(209,1360,'N'),(209,1365,'N'),(209,1366,'N'),(209,1367,'S'),(209,1368,'N'),(209,1369,'N'),(209,1371,'N'),(209,1372,'N'),(209,1374,'N'),(209,1375,'N'),(209,1376,'N'),(209,1378,'N'),(209,1380,'N'),(209,1384,'N'),(209,1385,'N'),(209,1386,'N'),(209,1387,'N'),(209,1390,'N'),(209,1391,'N'),(209,1392,'N'),(209,1393,'N'),(209,1396,'N'),(209,1397,'N'),(209,1398,'N'),(209,1399,'N'),(209,1405,'N'),(209,1406,'N'),(209,1407,'S'),(209,1408,'N'),(209,1409,'N'),(209,1411,'N'),(209,1412,'N'),(209,1414,'N'),(209,1415,'N'),(209,1416,'N'),(209,1418,'N'),(209,1420,'N'),(209,1424,'N'),(209,1425,'N'),(209,1426,'N'),(209,1427,'N'),(209,1430,'N'),(209,1431,'N'),(209,1432,'N'),(209,1433,'N'),(209,1436,'N'),(209,1437,'N'),(209,1438,'N'),(209,1439,'N'),(209,1445,'N'),(209,1446,'N'),(209,1447,'S'),(209,1448,'N'),(209,1449,'N'),(209,1451,'N'),(209,1452,'N'),(209,1454,'N'),(209,1455,'N'),(209,1456,'N'),(209,1458,'N'),(209,1460,'N'),(209,1464,'N'),(209,1465,'N'),(209,1466,'N'),(209,1467,'N'),(209,1470,'N'),(209,1471,'N'),(209,1472,'N'),(209,1473,'N'),(209,1476,'N'),(209,1477,'N'),(209,1478,'N'),(209,1479,'N'),(209,1485,'N'),(209,1486,'N'),(209,1487,'S'),(209,1488,'N'),(209,1489,'N'),(209,1491,'N'),(209,1492,'N'),(209,1494,'N'),(209,1495,'N'),(209,1496,'N'),(209,1498,'N'),(209,1500,'N'),(209,1504,'N'),(209,1505,'N'),(209,1506,'N'),(209,1507,'N'),(209,1510,'N'),(209,1511,'N'),(209,1512,'N'),(209,1513,'N'),(209,1516,'N'),(209,1517,'N'),(209,1518,'N'),(209,1519,'N'),(209,1525,'N'),(209,1526,'N'),(209,1527,'S'),(209,1528,'N'),(209,1529,'N'),(209,1531,'N'),(209,1534,'N'),(209,1535,'N'),(209,1536,'N'),(209,1538,'N'),(209,1540,'N'),(209,1544,'N'),(209,1545,'N'),(209,1546,'N'),(209,1547,'N'),(209,1550,'N'),(209,1551,'N'),(209,1552,'N'),(209,1553,'N'),(209,1556,'N'),(209,1557,'N'),(209,1558,'N'),(209,1559,'N'),(209,1566,'N'),(209,1567,'N'),(209,1568,'S'),(209,1569,'N'),(209,1570,'N'),(209,1571,'N'),(209,1574,'N'),(209,1575,'N'),(209,1576,'N'),(209,1578,'N'),(209,1580,'N'),(209,1584,'N'),(209,1585,'N'),(209,1586,'N'),(209,1587,'N'),(209,1590,'N'),(209,1591,'N'),(209,1592,'N'),(209,1593,'N'),(209,1596,'N'),(209,1597,'N'),(209,1598,'N'),(209,1599,'N'),(209,1606,'N'),(209,1607,'N'),(209,1608,'S'),(209,1609,'N'),(209,1610,'N'),(209,1611,'N'),(209,1613,'N'),(209,1614,'N'),(209,1615,'N'),(209,1617,'N'),(209,1619,'N'),(209,1623,'N'),(209,1624,'N'),(209,1625,'N'),(209,1626,'N'),(209,1629,'N'),(209,1630,'N'),(209,1631,'N'),(209,1632,'N'),(209,1635,'N'),(209,1636,'N'),(209,1637,'N'),(209,1638,'N'),(214,8,'S'),(214,23,'S'),(214,38,'S'),(214,53,'S'),(214,68,'S'),(214,83,'S'),(214,98,'S'),(214,113,'S'),(214,128,'S'),(214,143,'S'),(214,158,'S'),(214,173,'S'),(214,188,'S'),(214,203,'S'),(214,218,'S'),(214,233,'S'),(214,248,'S'),(214,263,'S'),(214,278,'S'),(214,294,'S'),(214,310,'S'),(214,326,'S'),(214,342,'S'),(214,359,'S'),(214,376,'S'),(214,393,'S'),(214,410,'S'),(214,427,'S'),(214,444,'S'),(214,462,'S'),(214,481,'S'),(214,501,'S'),(214,521,'S'),(214,538,'S'),(214,559,'S'),(214,581,'S'),(214,604,'S'),(214,628,'S'),(214,653,'S'),(214,679,'S'),(214,706,'S'),(214,734,'S'),(214,763,'S'),(214,793,'S'),(214,824,'S'),(214,856,'S'),(214,889,'S'),(214,923,'S'),(214,958,'S'),(214,994,'S'),(214,1031,'S'),(214,1068,'S'),(214,1106,'S'),(214,1144,'S'),(214,1181,'S'),(214,1218,'S'),(214,1255,'S'),(214,1292,'S'),(214,1330,'S'),(214,1369,'S'),(214,1409,'S'),(214,1449,'S'),(214,1489,'S'),(214,1529,'S'),(214,1570,'S'),(214,1610,'S'),(217,5,'S'),(217,20,'S'),(217,35,'S'),(217,50,'S'),(217,65,'S'),(217,80,'S'),(217,95,'S'),(217,110,'S'),(217,125,'S'),(217,140,'S'),(217,155,'S'),(217,170,'S'),(217,185,'S'),(217,200,'S'),(217,215,'S'),(217,230,'S'),(217,245,'S'),(217,260,'S'),(217,275,'S'),(217,291,'S'),(217,307,'S'),(217,323,'S'),(217,339,'S'),(217,356,'S'),(217,373,'S'),(217,390,'S'),(217,407,'S'),(217,424,'S'),(217,441,'S'),(217,459,'S'),(217,478,'S'),(217,498,'S'),(217,518,'S'),(217,535,'S'),(217,556,'S'),(217,578,'S'),(217,601,'S'),(217,625,'S'),(217,650,'S'),(217,676,'S'),(217,703,'S'),(217,731,'S'),(217,760,'S'),(217,790,'S'),(217,821,'S'),(217,853,'S'),(217,886,'S'),(217,920,'S'),(217,955,'S'),(217,991,'S'),(217,1028,'S'),(217,1065,'S'),(217,1103,'S'),(217,1141,'S'),(217,1179,'S'),(217,1216,'S'),(217,1253,'S'),(217,1290,'S'),(217,1328,'S'),(217,1367,'S'),(217,1407,'S'),(217,1447,'S'),(217,1487,'S'),(217,1527,'S'),(217,1568,'S'),(217,1608,'S'),(220,1,'N'),(220,2,'N'),(220,3,'N'),(220,4,'N'),(220,5,'S'),(220,8,'N'),(220,9,'N'),(220,10,'N'),(220,11,'N'),(220,12,'N'),(220,13,'N'),(220,14,'N'),(220,15,'N'),(220,16,'N'),(220,17,'N'),(220,18,'N'),(220,19,'N'),(220,20,'S'),(220,23,'N'),(220,24,'N'),(220,25,'N'),(220,26,'N'),(220,27,'N'),(220,28,'N'),(220,29,'N'),(220,30,'N'),(220,31,'N'),(220,32,'N'),(220,33,'N'),(220,34,'N'),(220,35,'S'),(220,38,'N'),(220,39,'N'),(220,40,'N'),(220,41,'N'),(220,42,'N'),(220,43,'N'),(220,44,'N'),(220,45,'N'),(220,46,'N'),(220,47,'N'),(220,48,'N'),(220,49,'N'),(220,50,'S'),(220,53,'N'),(220,54,'N'),(220,55,'N'),(220,56,'N'),(220,57,'N'),(220,58,'N'),(220,59,'N'),(220,60,'N'),(220,61,'N'),(220,62,'N'),(220,63,'N'),(220,64,'N'),(220,65,'S'),(220,68,'N'),(220,69,'N'),(220,70,'N'),(220,71,'N'),(220,72,'N'),(220,73,'N'),(220,74,'N'),(220,75,'N'),(220,76,'N'),(220,77,'N'),(220,78,'N'),(220,79,'N'),(220,80,'S'),(220,83,'N'),(220,84,'N'),(220,85,'N'),(220,86,'N'),(220,87,'N'),(220,88,'N'),(220,89,'N'),(220,90,'N'),(220,91,'N'),(220,92,'N'),(220,93,'N'),(220,94,'N'),(220,95,'S'),(220,98,'N'),(220,99,'N'),(220,100,'N'),(220,101,'N'),(220,102,'N'),(220,103,'N'),(220,104,'N'),(220,105,'N'),(220,106,'N'),(220,107,'N'),(220,108,'N'),(220,109,'N'),(220,110,'S'),(220,113,'N'),(220,114,'N'),(220,115,'N'),(220,116,'N'),(220,117,'N'),(220,118,'N'),(220,119,'N'),(220,120,'N'),(220,121,'N'),(220,122,'N'),(220,123,'N'),(220,124,'N'),(220,125,'S'),(220,128,'N'),(220,129,'N'),(220,130,'N'),(220,131,'N'),(220,132,'N'),(220,133,'N'),(220,134,'N'),(220,135,'N'),(220,136,'N'),(220,137,'N'),(220,138,'N'),(220,139,'N'),(220,140,'S'),(220,143,'N'),(220,144,'N'),(220,145,'N'),(220,146,'N'),(220,147,'N'),(220,148,'N'),(220,149,'N'),(220,150,'N'),(220,151,'N'),(220,152,'N'),(220,153,'N'),(220,154,'N'),(220,155,'S'),(220,158,'N'),(220,159,'N'),(220,160,'N'),(220,161,'N'),(220,162,'N'),(220,163,'N'),(220,164,'N'),(220,165,'N'),(220,166,'N'),(220,167,'N'),(220,168,'N'),(220,169,'N'),(220,170,'S'),(220,173,'N'),(220,174,'N'),(220,175,'N'),(220,176,'N'),(220,177,'N'),(220,178,'N'),(220,179,'N'),(220,180,'N'),(220,181,'N'),(220,182,'N'),(220,183,'N'),(220,184,'N'),(220,185,'S'),(220,188,'N'),(220,189,'N'),(220,190,'N'),(220,191,'N'),(220,192,'N'),(220,193,'N'),(220,194,'N'),(220,195,'N'),(220,196,'N'),(220,197,'N'),(220,198,'N'),(220,199,'N'),(220,200,'S'),(220,203,'N'),(220,204,'N'),(220,205,'N'),(220,206,'N'),(220,207,'N'),(220,208,'N'),(220,209,'N'),(220,210,'N'),(220,211,'N'),(220,212,'N'),(220,213,'N'),(220,214,'N'),(220,215,'S'),(220,218,'N'),(220,219,'N'),(220,220,'N'),(220,221,'N'),(220,222,'N'),(220,223,'N'),(220,224,'N'),(220,225,'N'),(220,226,'N'),(220,227,'N'),(220,228,'N'),(220,229,'N'),(220,230,'S'),(220,233,'N'),(220,234,'N'),(220,235,'N'),(220,236,'N'),(220,237,'N'),(220,238,'N'),(220,239,'N'),(220,240,'N'),(220,241,'N'),(220,242,'N'),(220,243,'N'),(220,244,'N'),(220,245,'S'),(220,248,'N'),(220,249,'N'),(220,250,'N'),(220,251,'N'),(220,252,'N'),(220,253,'N'),(220,254,'N'),(220,255,'N'),(220,256,'N'),(220,257,'N'),(220,258,'N'),(220,259,'N'),(220,260,'S'),(220,263,'N'),(220,264,'N'),(220,265,'N'),(220,266,'N'),(220,267,'N'),(220,268,'N'),(220,269,'N'),(220,270,'N'),(220,271,'N'),(220,272,'N'),(220,273,'N'),(220,274,'N'),(220,275,'S'),(220,278,'N'),(220,279,'N'),(220,280,'N'),(220,281,'N'),(220,282,'N'),(220,283,'N'),(220,284,'N'),(220,285,'N'),(220,286,'N'),(220,287,'N'),(220,288,'N'),(220,289,'N'),(220,290,'N'),(220,291,'S'),(220,294,'N'),(220,295,'N'),(220,296,'N'),(220,297,'N'),(220,298,'N'),(220,299,'N'),(220,300,'N'),(220,301,'N'),(220,303,'N'),(220,304,'N'),(220,305,'N'),(220,306,'N'),(220,307,'S'),(220,310,'N'),(220,311,'N'),(220,312,'N'),(220,313,'N'),(220,314,'N'),(220,315,'N'),(220,316,'N'),(220,317,'N'),(220,318,'N'),(220,319,'N'),(220,320,'N'),(220,321,'N'),(220,322,'N'),(220,323,'S'),(220,326,'N'),(220,327,'N'),(220,328,'N'),(220,329,'N'),(220,330,'N'),(220,331,'N'),(220,332,'N'),(220,333,'N'),(220,334,'N'),(220,335,'N'),(220,336,'N'),(220,337,'N'),(220,338,'N'),(220,339,'S'),(220,342,'N'),(220,343,'N'),(220,344,'N'),(220,345,'N'),(220,346,'N'),(220,347,'N'),(220,348,'N'),(220,349,'N'),(220,350,'N'),(220,352,'N'),(220,353,'N'),(220,354,'N'),(220,355,'N'),(220,356,'S'),(220,359,'N'),(220,360,'N'),(220,361,'N'),(220,362,'N'),(220,363,'N'),(220,364,'N'),(220,365,'N'),(220,366,'N'),(220,367,'N'),(220,369,'N'),(220,370,'N'),(220,371,'N'),(220,372,'N'),(220,373,'S'),(220,376,'N'),(220,377,'N'),(220,378,'N'),(220,379,'N'),(220,380,'N'),(220,381,'N'),(220,382,'N'),(220,383,'N'),(220,384,'N'),(220,386,'N'),(220,387,'N'),(220,388,'N'),(220,389,'N'),(220,390,'S'),(220,393,'N'),(220,394,'N'),(220,395,'N'),(220,396,'N'),(220,397,'N'),(220,398,'N'),(220,399,'N'),(220,400,'N'),(220,401,'N'),(220,403,'N'),(220,404,'N'),(220,405,'N'),(220,406,'N'),(220,407,'S'),(220,410,'N'),(220,411,'N'),(220,412,'N'),(220,413,'N'),(220,414,'N'),(220,415,'N'),(220,416,'N'),(220,417,'N'),(220,418,'N'),(220,420,'N'),(220,421,'N'),(220,422,'N'),(220,423,'N'),(220,424,'S'),(220,427,'N'),(220,428,'N'),(220,429,'N'),(220,430,'N'),(220,431,'N'),(220,432,'N'),(220,433,'N'),(220,434,'N'),(220,435,'N'),(220,437,'N'),(220,438,'N'),(220,439,'N'),(220,440,'N'),(220,441,'S'),(220,444,'N'),(220,445,'N'),(220,446,'N'),(220,447,'N'),(220,448,'N'),(220,449,'N'),(220,450,'N'),(220,451,'N'),(220,452,'N'),(220,453,'N'),(220,454,'N'),(220,455,'N'),(220,456,'N'),(220,457,'N'),(220,458,'N'),(220,459,'S'),(220,462,'N'),(220,463,'N'),(220,464,'N'),(220,465,'N'),(220,466,'N'),(220,467,'N'),(220,468,'N'),(220,469,'N'),(220,470,'N'),(220,471,'N'),(220,472,'N'),(220,474,'N'),(220,475,'N'),(220,476,'N'),(220,477,'N'),(220,478,'S'),(220,481,'N'),(220,482,'N'),(220,483,'N'),(220,484,'N'),(220,485,'N'),(220,486,'N'),(220,487,'N'),(220,488,'N'),(220,489,'N'),(220,490,'N'),(220,491,'N'),(220,494,'N'),(220,495,'N'),(220,496,'N'),(220,497,'N'),(220,498,'S'),(220,501,'N'),(220,502,'N'),(220,503,'N'),(220,504,'N'),(220,505,'N'),(220,506,'N'),(220,507,'N'),(220,508,'N'),(220,509,'N'),(220,510,'N'),(220,511,'N'),(220,514,'N'),(220,515,'N'),(220,516,'N'),(220,517,'N'),(220,518,'S'),(220,521,'N'),(220,522,'N'),(220,523,'N'),(220,524,'N'),(220,525,'N'),(220,526,'N'),(220,527,'N'),(220,528,'N'),(220,529,'N'),(220,530,'N'),(220,531,'N'),(220,532,'N'),(220,533,'N'),(220,534,'N'),(220,535,'S'),(220,538,'N'),(220,539,'N'),(220,540,'N'),(220,541,'N'),(220,542,'N'),(220,543,'N'),(220,544,'N'),(220,545,'N'),(220,546,'N'),(220,547,'N'),(220,548,'N'),(220,552,'N'),(220,553,'N'),(220,554,'N'),(220,555,'N'),(220,556,'S'),(220,559,'N'),(220,560,'N'),(220,561,'N'),(220,562,'N'),(220,563,'N'),(220,564,'N'),(220,565,'N'),(220,566,'N'),(220,567,'N'),(220,568,'N'),(220,569,'N'),(220,574,'N'),(220,575,'N'),(220,576,'N'),(220,577,'N'),(220,578,'S'),(220,581,'N'),(220,582,'N'),(220,583,'N'),(220,584,'N'),(220,585,'N'),(220,586,'N'),(220,587,'N'),(220,588,'N'),(220,589,'N'),(220,590,'N'),(220,591,'N'),(220,597,'N'),(220,598,'N'),(220,599,'N'),(220,600,'N'),(220,601,'S'),(220,604,'N'),(220,605,'N'),(220,606,'N'),(220,607,'N'),(220,608,'N'),(220,609,'N'),(220,610,'N'),(220,611,'N'),(220,612,'N'),(220,613,'N'),(220,614,'N'),(220,621,'N'),(220,622,'N'),(220,623,'N'),(220,624,'N'),(220,625,'S'),(220,628,'N'),(220,629,'N'),(220,630,'N'),(220,631,'N'),(220,632,'N'),(220,633,'N'),(220,634,'N'),(220,635,'N'),(220,636,'N'),(220,637,'N'),(220,638,'N'),(220,646,'N'),(220,647,'N'),(220,648,'N'),(220,649,'N'),(220,650,'S'),(220,653,'N'),(220,654,'N'),(220,655,'N'),(220,656,'N'),(220,657,'N'),(220,658,'N'),(220,659,'N'),(220,660,'N'),(220,661,'N'),(220,662,'N'),(220,663,'N'),(220,672,'N'),(220,673,'N'),(220,674,'N'),(220,675,'N'),(220,676,'S'),(220,679,'N'),(220,680,'N'),(220,681,'N'),(220,682,'N'),(220,683,'N'),(220,684,'N'),(220,685,'N'),(220,686,'N'),(220,687,'N'),(220,688,'N'),(220,689,'N'),(220,699,'N'),(220,700,'N'),(220,701,'N'),(220,702,'N'),(220,703,'S'),(220,706,'N'),(220,707,'N'),(220,708,'N'),(220,709,'N'),(220,710,'N'),(220,711,'N'),(220,712,'N'),(220,713,'N'),(220,714,'N'),(220,715,'N'),(220,716,'N'),(220,727,'N'),(220,728,'N'),(220,729,'N'),(220,730,'N'),(220,731,'S'),(220,734,'N'),(220,735,'N'),(220,736,'N'),(220,737,'N'),(220,738,'N'),(220,739,'N'),(220,740,'N'),(220,741,'N'),(220,742,'N'),(220,743,'N'),(220,744,'N'),(220,756,'N'),(220,757,'N'),(220,758,'N'),(220,759,'N'),(220,760,'S'),(220,763,'N'),(220,764,'N'),(220,765,'N'),(220,766,'N'),(220,767,'N'),(220,768,'N'),(220,769,'N'),(220,770,'N'),(220,771,'N'),(220,772,'N'),(220,773,'N'),(220,786,'N'),(220,787,'N'),(220,788,'N'),(220,789,'N'),(220,790,'S'),(220,793,'N'),(220,794,'N'),(220,795,'N'),(220,796,'N'),(220,797,'N'),(220,798,'N'),(220,799,'N'),(220,800,'N'),(220,801,'N'),(220,802,'N'),(220,803,'N'),(220,817,'N'),(220,818,'N'),(220,819,'N'),(220,820,'N'),(220,821,'S'),(220,824,'N'),(220,825,'N'),(220,826,'N'),(220,827,'N'),(220,828,'N'),(220,829,'N'),(220,830,'N'),(220,831,'N'),(220,832,'N'),(220,833,'N'),(220,834,'N'),(220,849,'N'),(220,850,'N'),(220,851,'N'),(220,852,'N'),(220,853,'S'),(220,856,'N'),(220,857,'N'),(220,858,'N'),(220,859,'N'),(220,860,'N'),(220,861,'N'),(220,862,'N'),(220,863,'N'),(220,864,'N'),(220,865,'N'),(220,866,'N'),(220,882,'N'),(220,883,'N'),(220,884,'N'),(220,885,'N'),(220,886,'S'),(220,889,'N'),(220,890,'N'),(220,891,'N'),(220,892,'N'),(220,893,'N'),(220,894,'N'),(220,895,'N'),(220,896,'N'),(220,897,'N'),(220,898,'N'),(220,899,'N'),(220,916,'N'),(220,917,'N'),(220,918,'N'),(220,919,'N'),(220,920,'S'),(220,923,'N'),(220,924,'N'),(220,925,'N'),(220,926,'N'),(220,927,'N'),(220,928,'N'),(220,929,'N'),(220,930,'N'),(220,931,'N'),(220,932,'N'),(220,933,'N'),(220,951,'N'),(220,952,'N'),(220,953,'N'),(220,954,'N'),(220,955,'S'),(220,958,'N'),(220,959,'N'),(220,960,'N'),(220,961,'N'),(220,962,'N'),(220,963,'N'),(220,964,'N'),(220,965,'N'),(220,966,'N'),(220,967,'N'),(220,968,'N'),(220,987,'N'),(220,988,'N'),(220,989,'N'),(220,990,'N'),(220,991,'S'),(220,994,'N'),(220,995,'N'),(220,996,'N'),(220,997,'N'),(220,998,'N'),(220,999,'N'),(220,1000,'N'),(220,1001,'N'),(220,1002,'N'),(220,1003,'N'),(220,1004,'N'),(220,1024,'N'),(220,1025,'N'),(220,1026,'N'),(220,1027,'N'),(220,1028,'S'),(220,1031,'N'),(220,1032,'N'),(220,1033,'N'),(220,1034,'N'),(220,1035,'N'),(220,1036,'N'),(220,1037,'N'),(220,1038,'N'),(220,1039,'N'),(220,1040,'N'),(220,1041,'N'),(220,1061,'N'),(220,1062,'N'),(220,1063,'N'),(220,1064,'N'),(220,1065,'S'),(220,1068,'N'),(220,1069,'N'),(220,1070,'N'),(220,1071,'N'),(220,1072,'N'),(220,1073,'N'),(220,1074,'N'),(220,1075,'N'),(220,1076,'N'),(220,1077,'N'),(220,1078,'N'),(220,1099,'N'),(220,1100,'N'),(220,1101,'N'),(220,1102,'N'),(220,1103,'S'),(220,1104,'N'),(220,1106,'N'),(220,1107,'N'),(220,1108,'N'),(220,1109,'N'),(220,1110,'N'),(220,1111,'N'),(220,1112,'N'),(220,1113,'N'),(220,1114,'N'),(220,1115,'N'),(220,1116,'N'),(220,1137,'N'),(220,1138,'N'),(220,1139,'N'),(220,1140,'N'),(220,1141,'S'),(220,1142,'N'),(220,1144,'N'),(220,1145,'N'),(220,1146,'N'),(220,1147,'N'),(220,1148,'N'),(220,1149,'N'),(220,1150,'N'),(220,1151,'N'),(220,1152,'N'),(220,1153,'N'),(220,1154,'N'),(220,1175,'N'),(220,1176,'N'),(220,1177,'N'),(220,1178,'N'),(220,1179,'S'),(220,1180,'N'),(220,1181,'N'),(220,1182,'N'),(220,1183,'N'),(220,1184,'N'),(220,1185,'N'),(220,1186,'N'),(220,1187,'N'),(220,1188,'N'),(220,1189,'N'),(220,1190,'N'),(220,1191,'N'),(220,1212,'N'),(220,1213,'N'),(220,1214,'N'),(220,1215,'N'),(220,1216,'S'),(220,1217,'N'),(220,1218,'N'),(220,1219,'N'),(220,1220,'N'),(220,1221,'N'),(220,1222,'N'),(220,1223,'N'),(220,1224,'N'),(220,1225,'N'),(220,1226,'N'),(220,1227,'N'),(220,1228,'N'),(220,1249,'N'),(220,1250,'N'),(220,1251,'N'),(220,1252,'N'),(220,1253,'S'),(220,1254,'N'),(220,1255,'N'),(220,1256,'N'),(220,1257,'N'),(220,1258,'N'),(220,1259,'N'),(220,1260,'N'),(220,1261,'N'),(220,1262,'N'),(220,1263,'N'),(220,1264,'N'),(220,1265,'N'),(220,1286,'N'),(220,1287,'N'),(220,1288,'N'),(220,1289,'N'),(220,1290,'S'),(220,1291,'N'),(220,1292,'N'),(220,1293,'N'),(220,1294,'N'),(220,1295,'N'),(220,1296,'N'),(220,1297,'N'),(220,1298,'N'),(220,1299,'N'),(220,1300,'N'),(220,1301,'N'),(220,1302,'N'),(220,1324,'N'),(220,1325,'N'),(220,1326,'N'),(220,1327,'N'),(220,1328,'S'),(220,1329,'N'),(220,1330,'N'),(220,1331,'N'),(220,1332,'N'),(220,1333,'N'),(220,1334,'N'),(220,1335,'N'),(220,1336,'N'),(220,1337,'N'),(220,1338,'N'),(220,1339,'N'),(220,1340,'N'),(220,1363,'N'),(220,1364,'N'),(220,1365,'N'),(220,1366,'N'),(220,1367,'S'),(220,1368,'N'),(220,1369,'N'),(220,1370,'N'),(220,1371,'N'),(220,1372,'N'),(220,1373,'N'),(220,1374,'N'),(220,1375,'N'),(220,1376,'N'),(220,1377,'N'),(220,1378,'N'),(220,1379,'N'),(220,1403,'N'),(220,1404,'N'),(220,1405,'N'),(220,1406,'N'),(220,1407,'S'),(220,1408,'N'),(220,1409,'N'),(220,1410,'N'),(220,1411,'N'),(220,1412,'N'),(220,1413,'N'),(220,1414,'N'),(220,1415,'N'),(220,1416,'N'),(220,1417,'N'),(220,1418,'N'),(220,1419,'N'),(220,1443,'N'),(220,1444,'N'),(220,1445,'N'),(220,1446,'N'),(220,1447,'S'),(220,1448,'N'),(220,1449,'N'),(220,1450,'N'),(220,1451,'N'),(220,1452,'N'),(220,1453,'N'),(220,1454,'N'),(220,1455,'N'),(220,1456,'N'),(220,1457,'N'),(220,1458,'N'),(220,1459,'N'),(220,1483,'N'),(220,1484,'N'),(220,1485,'N'),(220,1486,'N'),(220,1487,'S'),(220,1488,'N'),(220,1489,'N'),(220,1490,'N'),(220,1491,'N'),(220,1492,'N'),(220,1493,'N'),(220,1494,'N'),(220,1495,'N'),(220,1496,'N'),(220,1497,'N'),(220,1498,'N'),(220,1499,'N'),(220,1523,'N'),(220,1524,'N'),(220,1525,'N'),(220,1526,'N'),(220,1527,'S'),(220,1528,'N'),(220,1529,'N'),(220,1531,'N'),(220,1533,'N'),(220,1534,'N'),(220,1535,'N'),(220,1536,'N'),(220,1537,'N'),(220,1538,'N'),(220,1539,'N'),(220,1564,'N'),(220,1565,'N'),(220,1566,'N'),(220,1567,'N'),(220,1568,'S'),(220,1569,'N'),(220,1570,'N'),(220,1571,'N'),(220,1573,'N'),(220,1574,'N'),(220,1575,'N'),(220,1576,'N'),(220,1577,'N'),(220,1578,'N'),(220,1579,'N'),(220,1604,'N'),(220,1605,'N'),(220,1606,'N'),(220,1607,'N'),(220,1608,'S'),(220,1609,'N'),(220,1610,'N'),(220,1611,'N'),(220,1612,'N'),(220,1613,'N'),(220,1614,'N'),(220,1615,'N'),(220,1616,'N'),(220,1617,'N'),(220,1618,'N'),(233,8,'S'),(233,23,'S'),(233,38,'S'),(233,53,'S'),(233,68,'S'),(233,83,'S'),(233,98,'S'),(233,113,'S'),(233,128,'S'),(233,143,'S'),(233,158,'S'),(233,173,'S'),(233,188,'S'),(233,203,'S'),(233,218,'S'),(233,233,'S'),(233,248,'S'),(233,263,'S'),(233,278,'S'),(233,294,'S'),(233,310,'S'),(233,326,'S'),(233,342,'S'),(233,359,'S'),(233,376,'S'),(233,393,'S'),(233,410,'S'),(233,427,'S'),(233,444,'S'),(233,462,'S'),(233,481,'S'),(233,501,'S'),(233,521,'S'),(233,538,'S'),(233,559,'S'),(233,581,'S'),(233,604,'S'),(233,628,'S'),(233,653,'S'),(233,679,'S'),(233,706,'S'),(233,734,'S'),(233,763,'S'),(233,793,'S'),(233,824,'S'),(233,856,'S'),(233,889,'S'),(233,923,'S'),(233,958,'S'),(233,994,'S'),(233,1031,'S'),(233,1068,'S'),(233,1106,'S'),(233,1144,'S'),(233,1181,'S'),(233,1218,'S'),(233,1255,'S'),(233,1292,'S'),(233,1330,'S'),(233,1369,'S'),(233,1409,'S'),(233,1449,'S'),(233,1489,'S'),(233,1529,'S'),(233,1570,'S'),(233,1610,'S'),(240,473,'S'),(240,492,'S'),(240,512,'S'),(240,549,'S'),(240,570,'S'),(240,592,'S'),(240,615,'S'),(240,639,'S'),(240,664,'S'),(240,690,'S'),(240,717,'S'),(240,745,'S'),(240,774,'S'),(240,804,'S'),(240,835,'S'),(240,867,'S'),(240,900,'S'),(240,934,'S'),(240,969,'S'),(240,1005,'S'),(240,1042,'S'),(240,1079,'S'),(240,1117,'S'),(240,1155,'S'),(240,1192,'S'),(240,1229,'S'),(240,1266,'S'),(240,1303,'S'),(240,1341,'S'),(240,1380,'S'),(240,1420,'S'),(240,1460,'S'),(240,1500,'S'),(240,1540,'S'),(240,1580,'S'),(240,1619,'S'),(241,1,'N'),(241,2,'N'),(241,3,'N'),(241,4,'S'),(241,8,'N'),(241,10,'N'),(241,12,'N'),(241,13,'N'),(241,14,'N'),(241,15,'N'),(241,16,'N'),(241,17,'N'),(241,18,'N'),(241,19,'S'),(241,23,'N'),(241,25,'N'),(241,27,'N'),(241,28,'N'),(241,29,'N'),(241,30,'N'),(241,31,'N'),(241,32,'N'),(241,33,'N'),(241,34,'S'),(241,38,'N'),(241,40,'N'),(241,42,'N'),(241,43,'N'),(241,44,'N'),(241,45,'N'),(241,46,'N'),(241,47,'N'),(241,48,'N'),(241,49,'S'),(241,53,'N'),(241,55,'N'),(241,57,'N'),(241,58,'N'),(241,59,'N'),(241,60,'N'),(241,61,'N'),(241,62,'N'),(241,63,'N'),(241,64,'S'),(241,68,'N'),(241,70,'N'),(241,72,'N'),(241,73,'N'),(241,74,'N'),(241,75,'N'),(241,76,'N'),(241,77,'N'),(241,78,'N'),(241,79,'S'),(241,83,'N'),(241,85,'N'),(241,87,'N'),(241,88,'N'),(241,89,'N'),(241,90,'N'),(241,91,'N'),(241,92,'N'),(241,93,'N'),(241,94,'S'),(241,98,'N'),(241,100,'N'),(241,102,'N'),(241,103,'N'),(241,104,'N'),(241,105,'N'),(241,106,'N'),(241,107,'N'),(241,108,'N'),(241,109,'S'),(241,113,'N'),(241,115,'N'),(241,117,'N'),(241,118,'N'),(241,119,'N'),(241,120,'N'),(241,121,'N'),(241,122,'N'),(241,123,'N'),(241,124,'S'),(241,128,'N'),(241,130,'N'),(241,132,'N'),(241,133,'N'),(241,134,'N'),(241,135,'N'),(241,136,'N'),(241,137,'N'),(241,138,'N'),(241,139,'S'),(241,143,'N'),(241,145,'N'),(241,147,'N'),(241,148,'N'),(241,149,'N'),(241,150,'N'),(241,151,'N'),(241,152,'N'),(241,153,'N'),(241,154,'S'),(241,158,'N'),(241,160,'N'),(241,162,'N'),(241,163,'N'),(241,164,'N'),(241,165,'N'),(241,166,'N'),(241,167,'N'),(241,168,'N'),(241,169,'S'),(241,173,'N'),(241,175,'N'),(241,177,'N'),(241,178,'N'),(241,179,'N'),(241,180,'N'),(241,181,'N'),(241,182,'N'),(241,183,'N'),(241,184,'S'),(241,188,'N'),(241,190,'N'),(241,192,'N'),(241,193,'N'),(241,194,'N'),(241,195,'N'),(241,196,'N'),(241,197,'N'),(241,198,'N'),(241,199,'S'),(241,203,'N'),(241,205,'N'),(241,207,'N'),(241,208,'N'),(241,209,'N'),(241,210,'N'),(241,211,'N'),(241,212,'N'),(241,213,'N'),(241,214,'S'),(241,218,'N'),(241,220,'N'),(241,222,'N'),(241,223,'N'),(241,224,'N'),(241,225,'N'),(241,226,'N'),(241,227,'N'),(241,228,'N'),(241,229,'S'),(241,233,'N'),(241,235,'N'),(241,237,'N'),(241,238,'N'),(241,239,'N'),(241,240,'N'),(241,241,'N'),(241,242,'N'),(241,243,'N'),(241,244,'S'),(241,248,'N'),(241,250,'N'),(241,252,'N'),(241,253,'N'),(241,254,'N'),(241,255,'N'),(241,256,'N'),(241,257,'N'),(241,258,'N'),(241,259,'S'),(241,263,'N'),(241,265,'N'),(241,267,'N'),(241,268,'N'),(241,269,'N'),(241,270,'N'),(241,271,'N'),(241,272,'N'),(241,273,'N'),(241,274,'S'),(241,278,'N'),(241,280,'N'),(241,282,'N'),(241,283,'N'),(241,284,'N'),(241,285,'N'),(241,286,'N'),(241,287,'N'),(241,288,'N'),(241,289,'N'),(241,290,'S'),(241,294,'N'),(241,296,'N'),(241,298,'N'),(241,299,'N'),(241,300,'N'),(241,301,'N'),(241,303,'N'),(241,304,'N'),(241,305,'N'),(241,306,'S'),(241,310,'N'),(241,312,'N'),(241,314,'N'),(241,315,'N'),(241,316,'N'),(241,317,'N'),(241,318,'N'),(241,319,'N'),(241,320,'N'),(241,321,'N'),(241,322,'S'),(241,326,'N'),(241,328,'N'),(241,330,'N'),(241,331,'N'),(241,332,'N'),(241,333,'N'),(241,334,'N'),(241,335,'N'),(241,336,'N'),(241,337,'N'),(241,338,'S'),(241,342,'N'),(241,344,'N'),(241,346,'N'),(241,347,'N'),(241,348,'N'),(241,349,'N'),(241,350,'N'),(241,352,'N'),(241,353,'N'),(241,354,'N'),(241,355,'S'),(241,359,'N'),(241,361,'N'),(241,363,'N'),(241,364,'N'),(241,365,'N'),(241,366,'N'),(241,367,'N'),(241,369,'N'),(241,370,'N'),(241,371,'N'),(241,372,'S'),(241,376,'N'),(241,378,'N'),(241,380,'N'),(241,381,'N'),(241,382,'N'),(241,383,'N'),(241,384,'N'),(241,386,'N'),(241,387,'N'),(241,388,'N'),(241,389,'S'),(241,393,'N'),(241,395,'N'),(241,397,'N'),(241,398,'N'),(241,399,'N'),(241,400,'N'),(241,401,'N'),(241,403,'N'),(241,404,'N'),(241,405,'N'),(241,406,'S'),(241,410,'N'),(241,412,'N'),(241,414,'N'),(241,415,'N'),(241,416,'N'),(241,417,'N'),(241,418,'N'),(241,420,'N'),(241,421,'N'),(241,422,'N'),(241,423,'S'),(241,427,'N'),(241,429,'N'),(241,431,'N'),(241,432,'N'),(241,433,'N'),(241,434,'N'),(241,435,'N'),(241,437,'N'),(241,438,'N'),(241,439,'N'),(241,440,'S'),(241,444,'N'),(241,446,'N'),(241,448,'N'),(241,449,'N'),(241,450,'N'),(241,451,'N'),(241,452,'N'),(241,453,'N'),(241,455,'N'),(241,456,'N'),(241,457,'N'),(241,458,'S'),(241,462,'N'),(241,464,'N'),(241,466,'N'),(241,467,'N'),(241,468,'N'),(241,469,'N'),(241,470,'N'),(241,471,'N'),(241,474,'N'),(241,475,'N'),(241,476,'N'),(241,477,'S'),(241,481,'N'),(241,483,'N'),(241,485,'N'),(241,486,'N'),(241,487,'N'),(241,488,'N'),(241,489,'N'),(241,490,'N'),(241,494,'N'),(241,495,'N'),(241,496,'N'),(241,497,'S'),(241,501,'N'),(241,503,'N'),(241,505,'N'),(241,506,'N'),(241,507,'N'),(241,508,'N'),(241,509,'N'),(241,510,'N'),(241,514,'N'),(241,515,'N'),(241,516,'N'),(241,517,'S'),(241,521,'N'),(241,523,'N'),(241,525,'N'),(241,526,'N'),(241,527,'N'),(241,528,'N'),(241,529,'N'),(241,530,'N'),(241,531,'N'),(241,532,'N'),(241,533,'N'),(241,534,'S'),(241,538,'N'),(241,540,'N'),(241,542,'N'),(241,543,'N'),(241,544,'N'),(241,545,'N'),(241,546,'N'),(241,547,'N'),(241,552,'N'),(241,553,'N'),(241,554,'N'),(241,555,'S'),(241,559,'N'),(241,561,'N'),(241,563,'N'),(241,564,'N'),(241,565,'N'),(241,566,'N'),(241,567,'N'),(241,568,'N'),(241,574,'N'),(241,575,'N'),(241,576,'N'),(241,577,'S'),(241,581,'N'),(241,583,'N'),(241,585,'N'),(241,586,'N'),(241,587,'N'),(241,588,'N'),(241,589,'N'),(241,590,'N'),(241,596,'N'),(241,597,'N'),(241,598,'N'),(241,599,'N'),(241,600,'S'),(241,604,'N'),(241,606,'N'),(241,608,'N'),(241,609,'N'),(241,610,'N'),(241,611,'N'),(241,612,'N'),(241,613,'N'),(241,619,'N'),(241,620,'N'),(241,621,'N'),(241,622,'N'),(241,623,'N'),(241,624,'S'),(241,628,'N'),(241,630,'N'),(241,632,'N'),(241,633,'N'),(241,634,'N'),(241,635,'N'),(241,636,'N'),(241,637,'N'),(241,643,'N'),(241,644,'N'),(241,645,'N'),(241,646,'N'),(241,647,'N'),(241,648,'N'),(241,649,'S'),(241,653,'N'),(241,655,'N'),(241,657,'N'),(241,658,'N'),(241,659,'N'),(241,660,'N'),(241,661,'N'),(241,662,'N'),(241,668,'N'),(241,669,'N'),(241,670,'N'),(241,671,'N'),(241,672,'N'),(241,673,'N'),(241,674,'N'),(241,675,'S'),(241,679,'N'),(241,681,'N'),(241,683,'N'),(241,684,'N'),(241,685,'N'),(241,686,'N'),(241,687,'N'),(241,688,'N'),(241,694,'N'),(241,695,'N'),(241,696,'N'),(241,697,'N'),(241,699,'N'),(241,700,'N'),(241,701,'N'),(241,702,'S'),(241,706,'N'),(241,708,'N'),(241,710,'N'),(241,711,'N'),(241,712,'N'),(241,713,'N'),(241,714,'N'),(241,715,'N'),(241,721,'N'),(241,722,'N'),(241,723,'N'),(241,724,'N'),(241,727,'N'),(241,728,'N'),(241,729,'N'),(241,730,'S'),(241,734,'N'),(241,736,'N'),(241,738,'N'),(241,739,'N'),(241,740,'N'),(241,741,'N'),(241,742,'N'),(241,743,'N'),(241,749,'N'),(241,750,'N'),(241,751,'N'),(241,752,'N'),(241,755,'N'),(241,756,'N'),(241,757,'N'),(241,758,'N'),(241,759,'S'),(241,763,'N'),(241,765,'N'),(241,767,'N'),(241,768,'N'),(241,769,'N'),(241,770,'N'),(241,771,'N'),(241,772,'N'),(241,778,'N'),(241,779,'N'),(241,780,'N'),(241,781,'N'),(241,784,'N'),(241,785,'N'),(241,786,'N'),(241,787,'N'),(241,788,'N'),(241,789,'S'),(241,793,'N'),(241,795,'N'),(241,797,'N'),(241,798,'N'),(241,799,'N'),(241,800,'N'),(241,801,'N'),(241,802,'N'),(241,808,'N'),(241,809,'N'),(241,810,'N'),(241,811,'N'),(241,814,'N'),(241,815,'N'),(241,816,'N'),(241,817,'N'),(241,818,'N'),(241,819,'N'),(241,820,'S'),(241,824,'N'),(241,826,'N'),(241,828,'N'),(241,829,'N'),(241,830,'N'),(241,831,'N'),(241,832,'N'),(241,833,'N'),(241,839,'N'),(241,840,'N'),(241,841,'N'),(241,842,'N'),(241,845,'N'),(241,846,'N'),(241,847,'N'),(241,848,'N'),(241,849,'N'),(241,850,'N'),(241,851,'N'),(241,852,'S'),(241,856,'N'),(241,858,'N'),(241,860,'N'),(241,861,'N'),(241,862,'N'),(241,863,'N'),(241,864,'N'),(241,865,'N'),(241,871,'N'),(241,872,'N'),(241,873,'N'),(241,874,'N'),(241,877,'N'),(241,878,'N'),(241,879,'N'),(241,880,'N'),(241,882,'N'),(241,883,'N'),(241,884,'N'),(241,885,'S'),(241,889,'N'),(241,891,'N'),(241,893,'N'),(241,894,'N'),(241,895,'N'),(241,896,'N'),(241,897,'N'),(241,898,'N'),(241,904,'N'),(241,905,'N'),(241,906,'N'),(241,907,'N'),(241,910,'N'),(241,911,'N'),(241,912,'N'),(241,913,'N'),(241,916,'N'),(241,917,'N'),(241,918,'N'),(241,919,'S'),(241,923,'N'),(241,925,'N'),(241,927,'N'),(241,928,'N'),(241,929,'N'),(241,930,'N'),(241,931,'N'),(241,932,'N'),(241,938,'N'),(241,939,'N'),(241,940,'N'),(241,941,'N'),(241,944,'N'),(241,945,'N'),(241,946,'N'),(241,947,'N'),(241,950,'N'),(241,951,'N'),(241,952,'N'),(241,953,'N'),(241,954,'S'),(241,958,'N'),(241,960,'N'),(241,962,'N'),(241,963,'N'),(241,964,'N'),(241,965,'N'),(241,966,'N'),(241,967,'N'),(241,973,'N'),(241,974,'N'),(241,975,'N'),(241,976,'N'),(241,979,'N'),(241,980,'N'),(241,981,'N'),(241,982,'N'),(241,985,'N'),(241,986,'N'),(241,987,'N'),(241,988,'N'),(241,989,'N'),(241,990,'S'),(241,994,'N'),(241,996,'N'),(241,998,'N'),(241,999,'N'),(241,1000,'N'),(241,1001,'N'),(241,1002,'N'),(241,1003,'N'),(241,1009,'N'),(241,1010,'N'),(241,1011,'N'),(241,1012,'N'),(241,1015,'N'),(241,1016,'N'),(241,1017,'N'),(241,1018,'N'),(241,1021,'N'),(241,1022,'N'),(241,1023,'N'),(241,1024,'N'),(241,1025,'N'),(241,1026,'N'),(241,1027,'S'),(241,1031,'N'),(241,1033,'N'),(241,1035,'N'),(241,1036,'N'),(241,1037,'N'),(241,1038,'N'),(241,1039,'N'),(241,1040,'N'),(241,1046,'N'),(241,1047,'N'),(241,1048,'N'),(241,1049,'N'),(241,1052,'N'),(241,1053,'N'),(241,1054,'N'),(241,1055,'N'),(241,1058,'N'),(241,1059,'N'),(241,1060,'N'),(241,1061,'N'),(241,1062,'N'),(241,1063,'N'),(241,1064,'S'),(241,1068,'N'),(241,1070,'N'),(241,1072,'N'),(241,1073,'N'),(241,1074,'N'),(241,1075,'N'),(241,1076,'N'),(241,1077,'N'),(241,1083,'N'),(241,1084,'N'),(241,1085,'N'),(241,1086,'N'),(241,1089,'N'),(241,1090,'N'),(241,1091,'N'),(241,1092,'N'),(241,1095,'N'),(241,1096,'N'),(241,1097,'N'),(241,1098,'N'),(241,1099,'N'),(241,1100,'N'),(241,1101,'N'),(241,1102,'S'),(241,1104,'N'),(241,1106,'N'),(241,1108,'N'),(241,1110,'N'),(241,1111,'N'),(241,1112,'N'),(241,1113,'N'),(241,1114,'N'),(241,1115,'N'),(241,1121,'N'),(241,1122,'N'),(241,1123,'N'),(241,1124,'N'),(241,1127,'N'),(241,1128,'N'),(241,1129,'N'),(241,1130,'N'),(241,1133,'N'),(241,1134,'N'),(241,1135,'N'),(241,1136,'N'),(241,1137,'N'),(241,1138,'N'),(241,1139,'N'),(241,1140,'S'),(241,1142,'N'),(241,1144,'N'),(241,1146,'N'),(241,1148,'N'),(241,1149,'N'),(241,1150,'N'),(241,1151,'N'),(241,1152,'N'),(241,1153,'N'),(241,1159,'N'),(241,1160,'N'),(241,1161,'N'),(241,1162,'N'),(241,1165,'N'),(241,1166,'N'),(241,1167,'N'),(241,1168,'N'),(241,1171,'N'),(241,1172,'N'),(241,1173,'N'),(241,1174,'N'),(241,1175,'N'),(241,1176,'N'),(241,1177,'N'),(241,1178,'S'),(241,1180,'N'),(241,1181,'N'),(241,1183,'N'),(241,1185,'N'),(241,1186,'N'),(241,1187,'N'),(241,1188,'N'),(241,1189,'N'),(241,1190,'N'),(241,1196,'N'),(241,1197,'N'),(241,1198,'N'),(241,1199,'N'),(241,1202,'N'),(241,1203,'N'),(241,1204,'N'),(241,1205,'N'),(241,1208,'N'),(241,1209,'N'),(241,1210,'N'),(241,1211,'N'),(241,1212,'N'),(241,1213,'N'),(241,1214,'N'),(241,1215,'S'),(241,1217,'N'),(241,1218,'N'),(241,1220,'N'),(241,1222,'N'),(241,1223,'N'),(241,1224,'N'),(241,1225,'N'),(241,1226,'N'),(241,1227,'N'),(241,1233,'N'),(241,1234,'N'),(241,1235,'N'),(241,1236,'N'),(241,1239,'N'),(241,1240,'N'),(241,1241,'N'),(241,1242,'N'),(241,1245,'N'),(241,1246,'N'),(241,1247,'N'),(241,1248,'N'),(241,1249,'N'),(241,1250,'N'),(241,1251,'N'),(241,1252,'S'),(241,1254,'N'),(241,1255,'N'),(241,1257,'N'),(241,1259,'N'),(241,1260,'N'),(241,1261,'N'),(241,1262,'N'),(241,1263,'N'),(241,1264,'N'),(241,1270,'N'),(241,1271,'N'),(241,1272,'N'),(241,1273,'N'),(241,1276,'N'),(241,1277,'N'),(241,1278,'N'),(241,1279,'N'),(241,1282,'N'),(241,1283,'N'),(241,1284,'N'),(241,1285,'N'),(241,1286,'N'),(241,1287,'N'),(241,1288,'N'),(241,1289,'S'),(241,1291,'N'),(241,1292,'N'),(241,1294,'N'),(241,1296,'N'),(241,1297,'N'),(241,1298,'N'),(241,1299,'N'),(241,1300,'N'),(241,1301,'N'),(241,1307,'N'),(241,1308,'N'),(241,1309,'N'),(241,1310,'N'),(241,1313,'N'),(241,1314,'N'),(241,1315,'N'),(241,1316,'N'),(241,1319,'N'),(241,1320,'N'),(241,1321,'N'),(241,1322,'N'),(241,1324,'N'),(241,1325,'N'),(241,1326,'N'),(241,1327,'S'),(241,1329,'N'),(241,1330,'N'),(241,1332,'N'),(241,1334,'N'),(241,1335,'N'),(241,1336,'N'),(241,1337,'N'),(241,1338,'N'),(241,1339,'N'),(241,1345,'N'),(241,1346,'N'),(241,1347,'N'),(241,1348,'N'),(241,1351,'N'),(241,1352,'N'),(241,1353,'N'),(241,1354,'N'),(241,1357,'N'),(241,1358,'N'),(241,1359,'N'),(241,1360,'N'),(241,1363,'N'),(241,1364,'N'),(241,1365,'N'),(241,1366,'S'),(241,1368,'N'),(241,1369,'N'),(241,1371,'N'),(241,1373,'N'),(241,1374,'N'),(241,1375,'N'),(241,1376,'N'),(241,1377,'N'),(241,1378,'N'),(241,1384,'N'),(241,1385,'N'),(241,1386,'N'),(241,1387,'N'),(241,1390,'N'),(241,1391,'N'),(241,1392,'N'),(241,1393,'N'),(241,1396,'N'),(241,1397,'N'),(241,1398,'N'),(241,1399,'N'),(241,1403,'N'),(241,1404,'N'),(241,1405,'N'),(241,1406,'S'),(241,1408,'N'),(241,1409,'N'),(241,1411,'N'),(241,1413,'N'),(241,1414,'N'),(241,1415,'N'),(241,1416,'N'),(241,1417,'N'),(241,1418,'N'),(241,1424,'N'),(241,1425,'N'),(241,1426,'N'),(241,1427,'N'),(241,1430,'N'),(241,1431,'N'),(241,1432,'N'),(241,1433,'N'),(241,1436,'N'),(241,1437,'N'),(241,1438,'N'),(241,1439,'N'),(241,1443,'N'),(241,1444,'N'),(241,1445,'N'),(241,1446,'S'),(241,1448,'N'),(241,1449,'N'),(241,1451,'N'),(241,1453,'N'),(241,1454,'N'),(241,1455,'N'),(241,1456,'N'),(241,1457,'N'),(241,1458,'N'),(241,1464,'N'),(241,1465,'N'),(241,1466,'N'),(241,1467,'N'),(241,1470,'N'),(241,1471,'N'),(241,1472,'N'),(241,1473,'N'),(241,1476,'N'),(241,1477,'N'),(241,1478,'N'),(241,1479,'N'),(241,1483,'N'),(241,1484,'N'),(241,1485,'N'),(241,1486,'S'),(241,1488,'N'),(241,1489,'N'),(241,1491,'N'),(241,1493,'N'),(241,1494,'N'),(241,1495,'N'),(241,1496,'N'),(241,1497,'N'),(241,1498,'N'),(241,1502,'N'),(241,1503,'N'),(241,1504,'N'),(241,1505,'N'),(241,1506,'N'),(241,1507,'N'),(241,1508,'N'),(241,1509,'N'),(241,1510,'N'),(241,1511,'N'),(241,1512,'N'),(241,1513,'N'),(241,1514,'N'),(241,1515,'N'),(241,1516,'N'),(241,1517,'N'),(241,1518,'N'),(241,1519,'N'),(241,1521,'N'),(241,1522,'N'),(241,1523,'N'),(241,1524,'N'),(241,1525,'N'),(241,1526,'S'),(241,1528,'N'),(241,1529,'N'),(241,1531,'N'),(241,1533,'N'),(241,1534,'N'),(241,1535,'N'),(241,1536,'N'),(241,1537,'N'),(241,1538,'N'),(241,1542,'N'),(241,1543,'N'),(241,1544,'N'),(241,1545,'N'),(241,1546,'N'),(241,1547,'N'),(241,1548,'N'),(241,1549,'N'),(241,1550,'N'),(241,1551,'N'),(241,1552,'N'),(241,1553,'N'),(241,1554,'N'),(241,1555,'N'),(241,1556,'N'),(241,1557,'N'),(241,1558,'N'),(241,1559,'N'),(241,1561,'N'),(241,1562,'N'),(241,1564,'N'),(241,1565,'N'),(241,1566,'N'),(241,1567,'S'),(241,1569,'N'),(241,1570,'N'),(241,1571,'N'),(241,1573,'N'),(241,1574,'N'),(241,1575,'N'),(241,1576,'N'),(241,1577,'N'),(241,1578,'N'),(241,1582,'N'),(241,1583,'N'),(241,1584,'N'),(241,1585,'N'),(241,1586,'N'),(241,1587,'N'),(241,1588,'N'),(241,1589,'N'),(241,1590,'N'),(241,1591,'N'),(241,1592,'N'),(241,1593,'N'),(241,1594,'N'),(241,1595,'N'),(241,1596,'N'),(241,1597,'N'),(241,1598,'N'),(241,1599,'N'),(241,1601,'N'),(241,1602,'N'),(241,1604,'N'),(241,1605,'N'),(241,1606,'N'),(241,1607,'S'),(241,1609,'N'),(241,1610,'N'),(241,1611,'N'),(241,1612,'N'),(241,1613,'N'),(241,1614,'N'),(241,1615,'N'),(241,1616,'N'),(241,1617,'N'),(241,1621,'N'),(241,1622,'N'),(241,1623,'N'),(241,1624,'N'),(241,1625,'N'),(241,1626,'N'),(241,1627,'N'),(241,1628,'N'),(241,1629,'N'),(241,1630,'N'),(241,1631,'N'),(241,1632,'N'),(241,1633,'N'),(241,1634,'N'),(241,1635,'N'),(241,1636,'N'),(241,1637,'N'),(241,1638,'N'),(241,1640,'N'),(241,1641,'N'),(242,473,'S'),(242,492,'S'),(242,512,'S'),(242,549,'S'),(242,570,'S'),(242,592,'S'),(242,615,'S'),(242,639,'S'),(242,664,'S'),(242,690,'S'),(242,717,'S'),(242,745,'S'),(242,774,'S'),(242,804,'S'),(242,835,'S'),(242,867,'S'),(242,900,'S'),(242,934,'S'),(242,969,'S'),(242,1005,'S'),(242,1042,'S'),(242,1079,'S'),(242,1117,'S'),(242,1155,'S'),(242,1192,'S'),(242,1229,'S'),(242,1266,'S'),(242,1303,'S'),(242,1341,'S'),(242,1380,'S'),(242,1420,'S'),(242,1460,'S'),(242,1500,'S'),(242,1540,'S'),(242,1580,'S'),(242,1619,'S'),(243,1,'N'),(243,2,'N'),(243,3,'N'),(243,4,'S'),(243,8,'N'),(243,10,'N'),(243,12,'N'),(243,13,'N'),(243,14,'N'),(243,15,'N'),(243,16,'N'),(243,17,'N'),(243,18,'N'),(243,19,'S'),(243,23,'N'),(243,25,'N'),(243,27,'N'),(243,28,'N'),(243,29,'N'),(243,30,'N'),(243,31,'N'),(243,32,'N'),(243,33,'N'),(243,34,'S'),(243,38,'N'),(243,40,'N'),(243,42,'N'),(243,43,'N'),(243,44,'N'),(243,45,'N'),(243,46,'N'),(243,47,'N'),(243,48,'N'),(243,49,'S'),(243,53,'N'),(243,55,'N'),(243,57,'N'),(243,58,'N'),(243,59,'N'),(243,60,'N'),(243,61,'N'),(243,62,'N'),(243,63,'N'),(243,64,'S'),(243,68,'N'),(243,70,'N'),(243,72,'N'),(243,73,'N'),(243,74,'N'),(243,75,'N'),(243,76,'N'),(243,77,'N'),(243,78,'N'),(243,79,'S'),(243,83,'N'),(243,85,'N'),(243,87,'N'),(243,88,'N'),(243,89,'N'),(243,90,'N'),(243,91,'N'),(243,92,'N'),(243,93,'N'),(243,94,'S'),(243,98,'N'),(243,100,'N'),(243,102,'N'),(243,103,'N'),(243,104,'N'),(243,105,'N'),(243,106,'N'),(243,107,'N'),(243,108,'N'),(243,109,'S'),(243,113,'N'),(243,115,'N'),(243,117,'N'),(243,118,'N'),(243,119,'N'),(243,120,'N'),(243,121,'N'),(243,122,'N'),(243,123,'N'),(243,124,'S'),(243,128,'N'),(243,130,'N'),(243,132,'N'),(243,133,'N'),(243,134,'N'),(243,135,'N'),(243,136,'N'),(243,137,'N'),(243,138,'N'),(243,139,'S'),(243,143,'N'),(243,145,'N'),(243,147,'N'),(243,148,'N'),(243,149,'N'),(243,150,'N'),(243,151,'N'),(243,152,'N'),(243,153,'N'),(243,154,'S'),(243,158,'N'),(243,160,'N'),(243,162,'N'),(243,163,'N'),(243,164,'N'),(243,165,'N'),(243,166,'N'),(243,167,'N'),(243,168,'N'),(243,169,'S'),(243,173,'N'),(243,175,'N'),(243,177,'N'),(243,178,'N'),(243,179,'N'),(243,180,'N'),(243,181,'N'),(243,182,'N'),(243,183,'N'),(243,184,'S'),(243,188,'N'),(243,190,'N'),(243,192,'N'),(243,193,'N'),(243,194,'N'),(243,195,'N'),(243,196,'N'),(243,197,'N'),(243,198,'N'),(243,199,'S'),(243,203,'N'),(243,205,'N'),(243,207,'N'),(243,208,'N'),(243,209,'N'),(243,210,'N'),(243,211,'N'),(243,212,'N'),(243,213,'N'),(243,214,'S'),(243,218,'N'),(243,220,'N'),(243,222,'N'),(243,223,'N'),(243,224,'N'),(243,225,'N'),(243,226,'N'),(243,227,'N'),(243,228,'N'),(243,229,'S'),(243,233,'N'),(243,235,'N'),(243,237,'N'),(243,238,'N'),(243,239,'N'),(243,240,'N'),(243,241,'N'),(243,242,'N'),(243,243,'N'),(243,244,'S'),(243,248,'N'),(243,250,'N'),(243,252,'N'),(243,253,'N'),(243,254,'N'),(243,255,'N'),(243,256,'N'),(243,257,'N'),(243,258,'N'),(243,259,'S'),(243,263,'N'),(243,265,'N'),(243,267,'N'),(243,268,'N'),(243,269,'N'),(243,270,'N'),(243,271,'N'),(243,272,'N'),(243,273,'N'),(243,274,'S'),(243,278,'N'),(243,280,'N'),(243,282,'N'),(243,283,'N'),(243,284,'N'),(243,285,'N'),(243,286,'N'),(243,287,'N'),(243,288,'N'),(243,289,'N'),(243,290,'S'),(243,294,'N'),(243,296,'N'),(243,298,'N'),(243,299,'N'),(243,300,'N'),(243,301,'N'),(243,303,'N'),(243,304,'N'),(243,305,'N'),(243,306,'S'),(243,310,'N'),(243,312,'N'),(243,314,'N'),(243,315,'N'),(243,316,'N'),(243,317,'N'),(243,318,'N'),(243,319,'N'),(243,320,'N'),(243,321,'N'),(243,322,'S'),(243,326,'N'),(243,328,'N'),(243,330,'N'),(243,331,'N'),(243,332,'N'),(243,333,'N'),(243,334,'N'),(243,335,'N'),(243,336,'N'),(243,337,'N'),(243,338,'S'),(243,342,'N'),(243,344,'N'),(243,346,'N'),(243,347,'N'),(243,348,'N'),(243,349,'N'),(243,350,'N'),(243,352,'N'),(243,353,'N'),(243,354,'N'),(243,355,'S'),(243,359,'N'),(243,361,'N'),(243,363,'N'),(243,364,'N'),(243,365,'N'),(243,366,'N'),(243,367,'N'),(243,369,'N'),(243,370,'N'),(243,371,'N'),(243,372,'S'),(243,376,'N'),(243,378,'N'),(243,380,'N'),(243,381,'N'),(243,382,'N'),(243,383,'N'),(243,384,'N'),(243,386,'N'),(243,387,'N'),(243,388,'N'),(243,389,'S'),(243,393,'N'),(243,395,'N'),(243,397,'N'),(243,398,'N'),(243,399,'N'),(243,400,'N'),(243,401,'N'),(243,403,'N'),(243,404,'N'),(243,405,'N'),(243,406,'S'),(243,410,'N'),(243,412,'N'),(243,414,'N'),(243,415,'N'),(243,416,'N'),(243,417,'N'),(243,418,'N'),(243,420,'N'),(243,421,'N'),(243,422,'N'),(243,423,'S'),(243,427,'N'),(243,429,'N'),(243,431,'N'),(243,432,'N'),(243,433,'N'),(243,434,'N'),(243,435,'N'),(243,437,'N'),(243,438,'N'),(243,439,'N'),(243,440,'S'),(243,444,'N'),(243,446,'N'),(243,448,'N'),(243,449,'N'),(243,450,'N'),(243,451,'N'),(243,452,'N'),(243,453,'N'),(243,455,'N'),(243,456,'N'),(243,457,'N'),(243,458,'S'),(243,462,'N'),(243,464,'N'),(243,466,'N'),(243,467,'N'),(243,468,'N'),(243,469,'N'),(243,470,'N'),(243,471,'N'),(243,474,'N'),(243,475,'N'),(243,476,'N'),(243,477,'S'),(243,481,'N'),(243,483,'N'),(243,485,'N'),(243,486,'N'),(243,487,'N'),(243,488,'N'),(243,489,'N'),(243,490,'N'),(243,494,'N'),(243,495,'N'),(243,496,'N'),(243,497,'S'),(243,501,'N'),(243,503,'N'),(243,505,'N'),(243,506,'N'),(243,507,'N'),(243,508,'N'),(243,509,'N'),(243,510,'N'),(243,514,'N'),(243,515,'N'),(243,516,'N'),(243,517,'S'),(243,521,'N'),(243,523,'N'),(243,525,'N'),(243,526,'N'),(243,527,'N'),(243,528,'N'),(243,529,'N'),(243,530,'N'),(243,531,'N'),(243,532,'N'),(243,533,'N'),(243,534,'S'),(243,538,'N'),(243,540,'N'),(243,542,'N'),(243,543,'N'),(243,544,'N'),(243,545,'N'),(243,546,'N'),(243,547,'N'),(243,552,'N'),(243,553,'N'),(243,554,'N'),(243,555,'S'),(243,559,'N'),(243,561,'N'),(243,563,'N'),(243,564,'N'),(243,565,'N'),(243,566,'N'),(243,567,'N'),(243,568,'N'),(243,574,'N'),(243,575,'N'),(243,576,'N'),(243,577,'S'),(243,581,'N'),(243,583,'N'),(243,585,'N'),(243,586,'N'),(243,587,'N'),(243,588,'N'),(243,589,'N'),(243,590,'N'),(243,596,'N'),(243,597,'N'),(243,598,'N'),(243,599,'N'),(243,600,'S'),(243,604,'N'),(243,606,'N'),(243,608,'N'),(243,609,'N'),(243,610,'N'),(243,611,'N'),(243,612,'N'),(243,613,'N'),(243,619,'N'),(243,620,'N'),(243,621,'N'),(243,622,'N'),(243,623,'N'),(243,624,'S'),(243,628,'N'),(243,630,'N'),(243,632,'N'),(243,633,'N'),(243,634,'N'),(243,635,'N'),(243,636,'N'),(243,637,'N'),(243,643,'N'),(243,644,'N'),(243,645,'N'),(243,646,'N'),(243,647,'N'),(243,648,'N'),(243,649,'S'),(243,653,'N'),(243,655,'N'),(243,657,'N'),(243,658,'N'),(243,659,'N'),(243,660,'N'),(243,661,'N'),(243,662,'N'),(243,668,'N'),(243,669,'N'),(243,670,'N'),(243,671,'N'),(243,672,'N'),(243,673,'N'),(243,674,'N'),(243,675,'S'),(243,679,'N'),(243,681,'N'),(243,683,'N'),(243,684,'N'),(243,685,'N'),(243,686,'N'),(243,687,'N'),(243,688,'N'),(243,694,'N'),(243,695,'N'),(243,696,'N'),(243,697,'N'),(243,699,'N'),(243,700,'N'),(243,701,'N'),(243,702,'S'),(243,706,'N'),(243,708,'N'),(243,710,'N'),(243,711,'N'),(243,712,'N'),(243,713,'N'),(243,714,'N'),(243,715,'N'),(243,721,'N'),(243,722,'N'),(243,723,'N'),(243,724,'N'),(243,727,'N'),(243,728,'N'),(243,729,'N'),(243,730,'S'),(243,734,'N'),(243,736,'N'),(243,738,'N'),(243,739,'N'),(243,740,'N'),(243,741,'N'),(243,742,'N'),(243,743,'N'),(243,749,'N'),(243,750,'N'),(243,751,'N'),(243,752,'N'),(243,755,'N'),(243,756,'N'),(243,757,'N'),(243,758,'N'),(243,759,'S'),(243,763,'N'),(243,765,'N'),(243,767,'N'),(243,768,'N'),(243,769,'N'),(243,770,'N'),(243,771,'N'),(243,772,'N'),(243,778,'N'),(243,779,'N'),(243,780,'N'),(243,781,'N'),(243,784,'N'),(243,785,'N'),(243,786,'N'),(243,787,'N'),(243,788,'N'),(243,789,'S'),(243,793,'N'),(243,795,'N'),(243,797,'N'),(243,798,'N'),(243,799,'N'),(243,800,'N'),(243,801,'N'),(243,802,'N'),(243,808,'N'),(243,809,'N'),(243,810,'N'),(243,811,'N'),(243,814,'N'),(243,815,'N'),(243,816,'N'),(243,817,'N'),(243,818,'N'),(243,819,'N'),(243,820,'S'),(243,824,'N'),(243,826,'N'),(243,828,'N'),(243,829,'N'),(243,830,'N'),(243,831,'N'),(243,832,'N'),(243,833,'N'),(243,839,'N'),(243,840,'N'),(243,841,'N'),(243,842,'N'),(243,845,'N'),(243,846,'N'),(243,847,'N'),(243,848,'N'),(243,849,'N'),(243,850,'N'),(243,851,'N'),(243,852,'S'),(243,856,'N'),(243,858,'N'),(243,860,'N'),(243,861,'N'),(243,862,'N'),(243,863,'N'),(243,864,'N'),(243,865,'N'),(243,871,'N'),(243,872,'N'),(243,873,'N'),(243,874,'N'),(243,877,'N'),(243,878,'N'),(243,879,'N'),(243,880,'N'),(243,882,'N'),(243,883,'N'),(243,884,'N'),(243,885,'S'),(243,889,'N'),(243,891,'N'),(243,893,'N'),(243,894,'N'),(243,895,'N'),(243,896,'N'),(243,897,'N'),(243,898,'N'),(243,904,'N'),(243,905,'N'),(243,906,'N'),(243,907,'N'),(243,910,'N'),(243,911,'N'),(243,912,'N'),(243,913,'N'),(243,916,'N'),(243,917,'N'),(243,918,'N'),(243,919,'S'),(243,923,'N'),(243,925,'N'),(243,927,'N'),(243,928,'N'),(243,929,'N'),(243,930,'N'),(243,931,'N'),(243,932,'N'),(243,938,'N'),(243,939,'N'),(243,940,'N'),(243,941,'N'),(243,944,'N'),(243,945,'N'),(243,946,'N'),(243,947,'N'),(243,950,'N'),(243,951,'N'),(243,952,'N'),(243,953,'N'),(243,954,'S'),(243,958,'N'),(243,960,'N'),(243,962,'N'),(243,963,'N'),(243,964,'N'),(243,965,'N'),(243,966,'N'),(243,967,'N'),(243,973,'N'),(243,974,'N'),(243,975,'N'),(243,976,'N'),(243,979,'N'),(243,980,'N'),(243,981,'N'),(243,982,'N'),(243,985,'N'),(243,986,'N'),(243,987,'N'),(243,988,'N'),(243,989,'N'),(243,990,'S'),(243,994,'N'),(243,996,'N'),(243,998,'N'),(243,999,'N'),(243,1000,'N'),(243,1001,'N'),(243,1002,'N'),(243,1003,'N'),(243,1009,'N'),(243,1010,'N'),(243,1011,'N'),(243,1012,'N'),(243,1015,'N'),(243,1016,'N'),(243,1017,'N'),(243,1018,'N'),(243,1021,'N'),(243,1022,'N'),(243,1023,'N'),(243,1024,'N'),(243,1025,'N'),(243,1026,'N'),(243,1027,'S'),(243,1031,'N'),(243,1033,'N'),(243,1035,'N'),(243,1036,'N'),(243,1037,'N'),(243,1038,'N'),(243,1039,'N'),(243,1040,'N'),(243,1046,'N'),(243,1047,'N'),(243,1048,'N'),(243,1049,'N'),(243,1052,'N'),(243,1053,'N'),(243,1054,'N'),(243,1055,'N'),(243,1058,'N'),(243,1059,'N'),(243,1060,'N'),(243,1061,'N'),(243,1062,'N'),(243,1063,'N'),(243,1064,'S'),(243,1068,'N'),(243,1070,'N'),(243,1072,'N'),(243,1073,'N'),(243,1074,'N'),(243,1075,'N'),(243,1076,'N'),(243,1077,'N'),(243,1083,'N'),(243,1084,'N'),(243,1085,'N'),(243,1086,'N'),(243,1089,'N'),(243,1090,'N'),(243,1091,'N'),(243,1092,'N'),(243,1095,'N'),(243,1096,'N'),(243,1097,'N'),(243,1098,'N'),(243,1099,'N'),(243,1100,'N'),(243,1101,'N'),(243,1102,'S'),(243,1104,'N'),(243,1106,'N'),(243,1108,'N'),(243,1110,'N'),(243,1111,'N'),(243,1112,'N'),(243,1113,'N'),(243,1114,'N'),(243,1115,'N'),(243,1121,'N'),(243,1122,'N'),(243,1123,'N'),(243,1124,'N'),(243,1127,'N'),(243,1128,'N'),(243,1129,'N'),(243,1130,'N'),(243,1133,'N'),(243,1134,'N'),(243,1135,'N'),(243,1136,'N'),(243,1137,'N'),(243,1138,'N'),(243,1139,'N'),(243,1140,'S'),(243,1142,'N'),(243,1144,'N'),(243,1146,'N'),(243,1148,'N'),(243,1149,'N'),(243,1150,'N'),(243,1151,'N'),(243,1152,'N'),(243,1153,'N'),(243,1159,'N'),(243,1160,'N'),(243,1161,'N'),(243,1162,'N'),(243,1165,'N'),(243,1166,'N'),(243,1167,'N'),(243,1168,'N'),(243,1171,'N'),(243,1172,'N'),(243,1173,'N'),(243,1174,'N'),(243,1175,'N'),(243,1176,'N'),(243,1177,'N'),(243,1178,'S'),(243,1180,'N'),(243,1181,'N'),(243,1183,'N'),(243,1185,'N'),(243,1186,'N'),(243,1187,'N'),(243,1188,'N'),(243,1189,'N'),(243,1190,'N'),(243,1196,'N'),(243,1197,'N'),(243,1198,'N'),(243,1199,'N'),(243,1202,'N'),(243,1203,'N'),(243,1204,'N'),(243,1205,'N'),(243,1208,'N'),(243,1209,'N'),(243,1210,'N'),(243,1211,'N'),(243,1212,'N'),(243,1213,'N'),(243,1214,'N'),(243,1215,'S'),(243,1217,'N'),(243,1218,'N'),(243,1220,'N'),(243,1222,'N'),(243,1223,'N'),(243,1224,'N'),(243,1225,'N'),(243,1226,'N'),(243,1227,'N'),(243,1233,'N'),(243,1234,'N'),(243,1235,'N'),(243,1236,'N'),(243,1239,'N'),(243,1240,'N'),(243,1241,'N'),(243,1242,'N'),(243,1245,'N'),(243,1246,'N'),(243,1247,'N'),(243,1248,'N'),(243,1249,'N'),(243,1250,'N'),(243,1251,'N'),(243,1252,'S'),(243,1254,'N'),(243,1255,'N'),(243,1257,'N'),(243,1259,'N'),(243,1260,'N'),(243,1261,'N'),(243,1262,'N'),(243,1263,'N'),(243,1264,'N'),(243,1270,'N'),(243,1271,'N'),(243,1272,'N'),(243,1273,'N'),(243,1276,'N'),(243,1277,'N'),(243,1278,'N'),(243,1279,'N'),(243,1282,'N'),(243,1283,'N'),(243,1284,'N'),(243,1285,'N'),(243,1286,'N'),(243,1287,'N'),(243,1288,'N'),(243,1289,'S'),(243,1291,'N'),(243,1292,'N'),(243,1294,'N'),(243,1296,'N'),(243,1297,'N'),(243,1298,'N'),(243,1299,'N'),(243,1300,'N'),(243,1301,'N'),(243,1307,'N'),(243,1308,'N'),(243,1309,'N'),(243,1310,'N'),(243,1313,'N'),(243,1314,'N'),(243,1315,'N'),(243,1316,'N'),(243,1319,'N'),(243,1320,'N'),(243,1321,'N'),(243,1322,'N'),(243,1324,'N'),(243,1325,'N'),(243,1326,'N'),(243,1327,'S'),(243,1329,'N'),(243,1330,'N'),(243,1332,'N'),(243,1334,'N'),(243,1335,'N'),(243,1336,'N'),(243,1337,'N'),(243,1338,'N'),(243,1339,'N'),(243,1345,'N'),(243,1346,'N'),(243,1347,'N'),(243,1348,'N'),(243,1351,'N'),(243,1352,'N'),(243,1353,'N'),(243,1354,'N'),(243,1357,'N'),(243,1358,'N'),(243,1359,'N'),(243,1360,'N'),(243,1363,'N'),(243,1364,'N'),(243,1365,'N'),(243,1366,'S'),(243,1368,'N'),(243,1369,'N'),(243,1371,'N'),(243,1373,'N'),(243,1374,'N'),(243,1375,'N'),(243,1376,'N'),(243,1377,'N'),(243,1378,'N'),(243,1384,'N'),(243,1385,'N'),(243,1386,'N'),(243,1387,'N'),(243,1390,'N'),(243,1391,'N'),(243,1392,'N'),(243,1393,'N'),(243,1396,'N'),(243,1397,'N'),(243,1398,'N'),(243,1399,'N'),(243,1403,'N'),(243,1404,'N'),(243,1405,'N'),(243,1406,'S'),(243,1408,'N'),(243,1409,'N'),(243,1411,'N'),(243,1413,'N'),(243,1414,'N'),(243,1415,'N'),(243,1416,'N'),(243,1417,'N'),(243,1418,'N'),(243,1424,'N'),(243,1425,'N'),(243,1426,'N'),(243,1427,'N'),(243,1430,'N'),(243,1431,'N'),(243,1432,'N'),(243,1433,'N'),(243,1436,'N'),(243,1437,'N'),(243,1438,'N'),(243,1439,'N'),(243,1443,'N'),(243,1444,'N'),(243,1445,'N'),(243,1446,'S'),(243,1448,'N'),(243,1449,'N'),(243,1451,'N'),(243,1453,'N'),(243,1454,'N'),(243,1455,'N'),(243,1456,'N'),(243,1457,'N'),(243,1458,'N'),(243,1464,'N'),(243,1465,'N'),(243,1466,'N'),(243,1467,'N'),(243,1470,'N'),(243,1471,'N'),(243,1472,'N'),(243,1473,'N'),(243,1476,'N'),(243,1477,'N'),(243,1478,'N'),(243,1479,'N'),(243,1483,'N'),(243,1484,'N'),(243,1485,'N'),(243,1486,'S'),(243,1488,'N'),(243,1489,'N'),(243,1491,'N'),(243,1493,'N'),(243,1494,'N'),(243,1495,'N'),(243,1496,'N'),(243,1497,'N'),(243,1498,'N'),(243,1504,'N'),(243,1505,'N'),(243,1506,'N'),(243,1507,'N'),(243,1510,'N'),(243,1511,'N'),(243,1512,'N'),(243,1513,'N'),(243,1516,'N'),(243,1517,'N'),(243,1518,'N'),(243,1519,'N'),(243,1523,'N'),(243,1524,'N'),(243,1525,'N'),(243,1526,'S'),(243,1528,'N'),(243,1529,'N'),(243,1531,'N'),(243,1533,'N'),(243,1534,'N'),(243,1535,'N'),(243,1536,'N'),(243,1537,'N'),(243,1538,'N'),(243,1542,'N'),(243,1543,'N'),(243,1544,'N'),(243,1545,'N'),(243,1546,'N'),(243,1547,'N'),(243,1548,'N'),(243,1549,'N'),(243,1550,'N'),(243,1551,'N'),(243,1552,'N'),(243,1553,'N'),(243,1554,'N'),(243,1555,'N'),(243,1556,'N'),(243,1557,'N'),(243,1558,'N'),(243,1559,'N'),(243,1561,'N'),(243,1562,'N'),(243,1564,'N'),(243,1565,'N'),(243,1566,'N'),(243,1567,'S'),(243,1569,'N'),(243,1570,'N'),(243,1571,'N'),(243,1573,'N'),(243,1574,'N'),(243,1575,'N'),(243,1576,'N'),(243,1577,'N'),(243,1578,'N'),(243,1582,'N'),(243,1583,'N'),(243,1584,'N'),(243,1585,'N'),(243,1586,'N'),(243,1587,'N'),(243,1588,'N'),(243,1589,'N'),(243,1590,'N'),(243,1591,'N'),(243,1592,'N'),(243,1593,'N'),(243,1594,'N'),(243,1595,'N'),(243,1596,'N'),(243,1597,'N'),(243,1598,'N'),(243,1599,'N'),(243,1601,'N'),(243,1602,'N'),(243,1604,'N'),(243,1605,'N'),(243,1606,'N'),(243,1607,'S'),(243,1609,'N'),(243,1610,'N'),(243,1611,'N'),(243,1612,'N'),(243,1613,'N'),(243,1614,'N'),(243,1615,'N'),(243,1616,'N'),(243,1617,'N'),(243,1621,'N'),(243,1622,'N'),(243,1623,'N'),(243,1624,'N'),(243,1625,'N'),(243,1626,'N'),(243,1627,'N'),(243,1628,'N'),(243,1629,'N'),(243,1630,'N'),(243,1631,'N'),(243,1632,'N'),(243,1633,'N'),(243,1634,'N'),(243,1635,'N'),(243,1636,'N'),(243,1637,'N'),(243,1638,'N'),(243,1640,'N'),(243,1641,'N'),(244,473,'S'),(244,492,'S'),(244,512,'S'),(244,549,'S'),(244,570,'S'),(244,592,'S'),(244,615,'S'),(244,639,'S'),(244,664,'S'),(244,690,'S'),(244,717,'S'),(244,745,'S'),(244,774,'S'),(244,804,'S'),(244,835,'S'),(244,867,'S'),(244,900,'S'),(244,934,'S'),(244,969,'S'),(244,1005,'S'),(244,1042,'S'),(244,1079,'S'),(244,1117,'S'),(244,1155,'S'),(244,1192,'S'),(244,1229,'S'),(244,1266,'S'),(244,1303,'S'),(244,1341,'S'),(244,1380,'S'),(244,1420,'S'),(244,1460,'S'),(244,1500,'S'),(244,1540,'S'),(244,1580,'S'),(244,1619,'S'),(245,1,'N'),(245,2,'N'),(245,3,'N'),(245,4,'S'),(245,8,'N'),(245,10,'N'),(245,12,'N'),(245,13,'N'),(245,14,'N'),(245,15,'N'),(245,16,'N'),(245,17,'N'),(245,18,'N'),(245,19,'S'),(245,23,'N'),(245,25,'N'),(245,27,'N'),(245,28,'N'),(245,29,'N'),(245,30,'N'),(245,31,'N'),(245,32,'N'),(245,33,'N'),(245,34,'S'),(245,38,'N'),(245,40,'N'),(245,42,'N'),(245,43,'N'),(245,44,'N'),(245,45,'N'),(245,46,'N'),(245,47,'N'),(245,48,'N'),(245,49,'S'),(245,53,'N'),(245,55,'N'),(245,57,'N'),(245,58,'N'),(245,59,'N'),(245,60,'N'),(245,61,'N'),(245,62,'N'),(245,63,'N'),(245,64,'S'),(245,68,'N'),(245,70,'N'),(245,72,'N'),(245,73,'N'),(245,74,'N'),(245,75,'N'),(245,76,'N'),(245,77,'N'),(245,78,'N'),(245,79,'S'),(245,83,'N'),(245,85,'N'),(245,87,'N'),(245,88,'N'),(245,89,'N'),(245,90,'N'),(245,91,'N'),(245,92,'N'),(245,93,'N'),(245,94,'S'),(245,98,'N'),(245,100,'N'),(245,102,'N'),(245,103,'N'),(245,104,'N'),(245,105,'N'),(245,106,'N'),(245,107,'N'),(245,108,'N'),(245,109,'S'),(245,113,'N'),(245,115,'N'),(245,117,'N'),(245,118,'N'),(245,119,'N'),(245,120,'N'),(245,121,'N'),(245,122,'N'),(245,123,'N'),(245,124,'S'),(245,128,'N'),(245,130,'N'),(245,132,'N'),(245,133,'N'),(245,134,'N'),(245,135,'N'),(245,136,'N'),(245,137,'N'),(245,138,'N'),(245,139,'S'),(245,143,'N'),(245,145,'N'),(245,147,'N'),(245,148,'N'),(245,149,'N'),(245,150,'N'),(245,151,'N'),(245,152,'N'),(245,153,'N'),(245,154,'S'),(245,158,'N'),(245,160,'N'),(245,162,'N'),(245,163,'N'),(245,164,'N'),(245,165,'N'),(245,166,'N'),(245,167,'N'),(245,168,'N'),(245,169,'S'),(245,173,'N'),(245,175,'N'),(245,177,'N'),(245,178,'N'),(245,179,'N'),(245,180,'N'),(245,181,'N'),(245,182,'N'),(245,183,'N'),(245,184,'S'),(245,188,'N'),(245,190,'N'),(245,192,'N'),(245,193,'N'),(245,194,'N'),(245,195,'N'),(245,196,'N'),(245,197,'N'),(245,198,'N'),(245,199,'S'),(245,203,'N'),(245,205,'N'),(245,207,'N'),(245,208,'N'),(245,209,'N'),(245,210,'N'),(245,211,'N'),(245,212,'N'),(245,213,'N'),(245,214,'S'),(245,218,'N'),(245,220,'N'),(245,222,'N'),(245,223,'N'),(245,224,'N'),(245,225,'N'),(245,226,'N'),(245,227,'N'),(245,228,'N'),(245,229,'S'),(245,233,'N'),(245,235,'N'),(245,237,'N'),(245,238,'N'),(245,239,'N'),(245,240,'N'),(245,241,'N'),(245,242,'N'),(245,243,'N'),(245,244,'S'),(245,248,'N'),(245,250,'N'),(245,252,'N'),(245,253,'N'),(245,254,'N'),(245,255,'N'),(245,256,'N'),(245,257,'N'),(245,258,'N'),(245,259,'S'),(245,263,'N'),(245,265,'N'),(245,267,'N'),(245,268,'N'),(245,269,'N'),(245,270,'N'),(245,271,'N'),(245,272,'N'),(245,273,'N'),(245,274,'S'),(245,278,'N'),(245,280,'N'),(245,282,'N'),(245,283,'N'),(245,284,'N'),(245,285,'N'),(245,286,'N'),(245,287,'N'),(245,288,'N'),(245,289,'N'),(245,290,'S'),(245,294,'N'),(245,296,'N'),(245,298,'N'),(245,299,'N'),(245,300,'N'),(245,301,'N'),(245,303,'N'),(245,304,'N'),(245,305,'N'),(245,306,'S'),(245,310,'N'),(245,312,'N'),(245,314,'N'),(245,315,'N'),(245,316,'N'),(245,317,'N'),(245,318,'N'),(245,319,'N'),(245,320,'N'),(245,321,'N'),(245,322,'S'),(245,326,'N'),(245,328,'N'),(245,330,'N'),(245,331,'N'),(245,332,'N'),(245,333,'N'),(245,334,'N'),(245,335,'N'),(245,336,'N'),(245,337,'N'),(245,338,'S'),(245,342,'N'),(245,344,'N'),(245,346,'N'),(245,347,'N'),(245,348,'N'),(245,349,'N'),(245,350,'N'),(245,352,'N'),(245,353,'N'),(245,354,'N'),(245,355,'S'),(245,359,'N'),(245,361,'N'),(245,363,'N'),(245,364,'N'),(245,365,'N'),(245,366,'N'),(245,367,'N'),(245,369,'N'),(245,370,'N'),(245,371,'N'),(245,372,'S'),(245,376,'N'),(245,378,'N'),(245,380,'N'),(245,381,'N'),(245,382,'N'),(245,383,'N'),(245,384,'N'),(245,386,'N'),(245,387,'N'),(245,388,'N'),(245,389,'S'),(245,393,'N'),(245,395,'N'),(245,397,'N'),(245,398,'N'),(245,399,'N'),(245,400,'N'),(245,401,'N'),(245,403,'N'),(245,404,'N'),(245,405,'N'),(245,406,'S'),(245,410,'N'),(245,412,'N'),(245,414,'N'),(245,415,'N'),(245,416,'N'),(245,417,'N'),(245,418,'N'),(245,420,'N'),(245,421,'N'),(245,422,'N'),(245,423,'S'),(245,427,'N'),(245,429,'N'),(245,431,'N'),(245,432,'N'),(245,433,'N'),(245,434,'N'),(245,435,'N'),(245,437,'N'),(245,438,'N'),(245,439,'N'),(245,440,'S'),(245,444,'N'),(245,446,'N'),(245,448,'N'),(245,449,'N'),(245,450,'N'),(245,451,'N'),(245,452,'N'),(245,453,'N'),(245,455,'N'),(245,456,'N'),(245,457,'N'),(245,458,'S'),(245,462,'N'),(245,464,'N'),(245,466,'N'),(245,467,'N'),(245,468,'N'),(245,469,'N'),(245,470,'N'),(245,471,'N'),(245,474,'N'),(245,475,'N'),(245,476,'N'),(245,477,'S'),(245,481,'N'),(245,483,'N'),(245,485,'N'),(245,486,'N'),(245,487,'N'),(245,488,'N'),(245,489,'N'),(245,490,'N'),(245,494,'N'),(245,495,'N'),(245,496,'N'),(245,497,'S'),(245,501,'N'),(245,503,'N'),(245,505,'N'),(245,506,'N'),(245,507,'N'),(245,508,'N'),(245,509,'N'),(245,510,'N'),(245,514,'N'),(245,515,'N'),(245,516,'N'),(245,517,'S'),(245,521,'N'),(245,523,'N'),(245,525,'N'),(245,526,'N'),(245,527,'N'),(245,528,'N'),(245,529,'N'),(245,530,'N'),(245,531,'N'),(245,532,'N'),(245,533,'N'),(245,534,'S'),(245,538,'N'),(245,540,'N'),(245,542,'N'),(245,543,'N'),(245,544,'N'),(245,545,'N'),(245,546,'N'),(245,547,'N'),(245,552,'N'),(245,553,'N'),(245,554,'N'),(245,555,'S'),(245,559,'N'),(245,561,'N'),(245,563,'N'),(245,564,'N'),(245,565,'N'),(245,566,'N'),(245,567,'N'),(245,568,'N'),(245,574,'N'),(245,575,'N'),(245,576,'N'),(245,577,'S'),(245,581,'N'),(245,583,'N'),(245,585,'N'),(245,586,'N'),(245,587,'N'),(245,588,'N'),(245,589,'N'),(245,590,'N'),(245,596,'N'),(245,597,'N'),(245,598,'N'),(245,599,'N'),(245,600,'S'),(245,604,'N'),(245,606,'N'),(245,608,'N'),(245,609,'N'),(245,610,'N'),(245,611,'N'),(245,612,'N'),(245,613,'N'),(245,619,'N'),(245,620,'N'),(245,621,'N'),(245,622,'N'),(245,623,'N'),(245,624,'S'),(245,628,'N'),(245,630,'N'),(245,632,'N'),(245,633,'N'),(245,634,'N'),(245,635,'N'),(245,636,'N'),(245,637,'N'),(245,643,'N'),(245,644,'N'),(245,645,'N'),(245,646,'N'),(245,647,'N'),(245,648,'N'),(245,649,'S'),(245,653,'N'),(245,655,'N'),(245,657,'N'),(245,658,'N'),(245,659,'N'),(245,660,'N'),(245,661,'N'),(245,662,'N'),(245,668,'N'),(245,669,'N'),(245,670,'N'),(245,671,'N'),(245,672,'N'),(245,673,'N'),(245,674,'N'),(245,675,'S'),(245,679,'N'),(245,681,'N'),(245,683,'N'),(245,684,'N'),(245,685,'N'),(245,686,'N'),(245,687,'N'),(245,688,'N'),(245,694,'N'),(245,695,'N'),(245,696,'N'),(245,697,'N'),(245,699,'N'),(245,700,'N'),(245,701,'N'),(245,702,'S'),(245,706,'N'),(245,708,'N'),(245,710,'N'),(245,711,'N'),(245,712,'N'),(245,713,'N'),(245,714,'N'),(245,715,'N'),(245,721,'N'),(245,722,'N'),(245,723,'N'),(245,724,'N'),(245,727,'N'),(245,728,'N'),(245,729,'N'),(245,730,'S'),(245,734,'N'),(245,736,'N'),(245,738,'N'),(245,739,'N'),(245,740,'N'),(245,741,'N'),(245,742,'N'),(245,743,'N'),(245,749,'N'),(245,750,'N'),(245,751,'N'),(245,752,'N'),(245,755,'N'),(245,756,'N'),(245,757,'N'),(245,758,'N'),(245,759,'S'),(245,763,'N'),(245,765,'N'),(245,767,'N'),(245,768,'N'),(245,769,'N'),(245,770,'N'),(245,771,'N'),(245,772,'N'),(245,778,'N'),(245,779,'N'),(245,780,'N'),(245,781,'N'),(245,784,'N'),(245,785,'N'),(245,786,'N'),(245,787,'N'),(245,788,'N'),(245,789,'S'),(245,793,'N'),(245,795,'N'),(245,797,'N'),(245,798,'N'),(245,799,'N'),(245,800,'N'),(245,801,'N'),(245,802,'N'),(245,808,'N'),(245,809,'N'),(245,810,'N'),(245,811,'N'),(245,814,'N'),(245,815,'N'),(245,816,'N'),(245,817,'N'),(245,818,'N'),(245,819,'N'),(245,820,'S'),(245,824,'N'),(245,826,'N'),(245,828,'N'),(245,829,'N'),(245,830,'N'),(245,831,'N'),(245,832,'N'),(245,833,'N'),(245,839,'N'),(245,840,'N'),(245,841,'N'),(245,842,'N'),(245,845,'N'),(245,846,'N'),(245,847,'N'),(245,848,'N'),(245,849,'N'),(245,850,'N'),(245,851,'N'),(245,852,'S'),(245,856,'N'),(245,858,'N'),(245,860,'N'),(245,861,'N'),(245,862,'N'),(245,863,'N'),(245,864,'N'),(245,865,'N'),(245,871,'N'),(245,872,'N'),(245,873,'N'),(245,874,'N'),(245,877,'N'),(245,878,'N'),(245,879,'N'),(245,880,'N'),(245,882,'N'),(245,883,'N'),(245,884,'N'),(245,885,'S'),(245,889,'N'),(245,891,'N'),(245,893,'N'),(245,894,'N'),(245,895,'N'),(245,896,'N'),(245,897,'N'),(245,898,'N'),(245,904,'N'),(245,905,'N'),(245,906,'N'),(245,907,'N'),(245,910,'N'),(245,911,'N'),(245,912,'N'),(245,913,'N'),(245,916,'N'),(245,917,'N'),(245,918,'N'),(245,919,'S'),(245,923,'N'),(245,925,'N'),(245,927,'N'),(245,928,'N'),(245,929,'N'),(245,930,'N'),(245,931,'N'),(245,932,'N'),(245,938,'N'),(245,939,'N'),(245,940,'N'),(245,941,'N'),(245,944,'N'),(245,945,'N'),(245,946,'N'),(245,947,'N'),(245,950,'N'),(245,951,'N'),(245,952,'N'),(245,953,'N'),(245,954,'S'),(245,958,'N'),(245,960,'N'),(245,962,'N'),(245,963,'N'),(245,964,'N'),(245,965,'N'),(245,966,'N'),(245,967,'N'),(245,973,'N'),(245,974,'N'),(245,975,'N'),(245,976,'N'),(245,979,'N'),(245,980,'N'),(245,981,'N'),(245,982,'N'),(245,985,'N'),(245,986,'N'),(245,987,'N'),(245,988,'N'),(245,989,'N'),(245,990,'S'),(245,994,'N'),(245,996,'N'),(245,998,'N'),(245,999,'N'),(245,1000,'N'),(245,1001,'N'),(245,1002,'N'),(245,1003,'N'),(245,1009,'N'),(245,1010,'N'),(245,1011,'N'),(245,1012,'N'),(245,1015,'N'),(245,1016,'N'),(245,1017,'N'),(245,1018,'N'),(245,1021,'N'),(245,1022,'N'),(245,1023,'N'),(245,1024,'N'),(245,1025,'N'),(245,1026,'N'),(245,1027,'S'),(245,1031,'N'),(245,1033,'N'),(245,1035,'N'),(245,1036,'N'),(245,1037,'N'),(245,1038,'N'),(245,1039,'N'),(245,1040,'N'),(245,1046,'N'),(245,1047,'N'),(245,1048,'N'),(245,1049,'N'),(245,1052,'N'),(245,1053,'N'),(245,1054,'N'),(245,1055,'N'),(245,1058,'N'),(245,1059,'N'),(245,1060,'N'),(245,1061,'N'),(245,1062,'N'),(245,1063,'N'),(245,1064,'S'),(245,1068,'N'),(245,1070,'N'),(245,1072,'N'),(245,1073,'N'),(245,1074,'N'),(245,1075,'N'),(245,1076,'N'),(245,1077,'N'),(245,1083,'N'),(245,1084,'N'),(245,1085,'N'),(245,1086,'N'),(245,1089,'N'),(245,1090,'N'),(245,1091,'N'),(245,1092,'N'),(245,1095,'N'),(245,1096,'N'),(245,1097,'N'),(245,1098,'N'),(245,1099,'N'),(245,1100,'N'),(245,1101,'N'),(245,1102,'S'),(245,1104,'N'),(245,1106,'N'),(245,1108,'N'),(245,1110,'N'),(245,1111,'N'),(245,1112,'N'),(245,1113,'N'),(245,1114,'N'),(245,1115,'N'),(245,1121,'N'),(245,1122,'N'),(245,1123,'N'),(245,1124,'N'),(245,1127,'N'),(245,1128,'N'),(245,1129,'N'),(245,1130,'N'),(245,1133,'N'),(245,1134,'N'),(245,1135,'N'),(245,1136,'N'),(245,1137,'N'),(245,1138,'N'),(245,1139,'N'),(245,1140,'S'),(245,1142,'N'),(245,1144,'N'),(245,1146,'N'),(245,1148,'N'),(245,1149,'N'),(245,1150,'N'),(245,1151,'N'),(245,1152,'N'),(245,1153,'N'),(245,1159,'N'),(245,1160,'N'),(245,1161,'N'),(245,1162,'N'),(245,1165,'N'),(245,1166,'N'),(245,1167,'N'),(245,1168,'N'),(245,1171,'N'),(245,1172,'N'),(245,1173,'N'),(245,1174,'N'),(245,1175,'N'),(245,1176,'N'),(245,1177,'N'),(245,1178,'S'),(245,1180,'N'),(245,1181,'N'),(245,1183,'N'),(245,1185,'N'),(245,1186,'N'),(245,1187,'N'),(245,1188,'N'),(245,1189,'N'),(245,1190,'N'),(245,1196,'N'),(245,1197,'N'),(245,1198,'N'),(245,1199,'N'),(245,1202,'N'),(245,1203,'N'),(245,1204,'N'),(245,1205,'N'),(245,1208,'N'),(245,1209,'N'),(245,1210,'N'),(245,1211,'N'),(245,1212,'N'),(245,1213,'N'),(245,1214,'N'),(245,1215,'S'),(245,1217,'N'),(245,1218,'N'),(245,1220,'N'),(245,1222,'N'),(245,1223,'N'),(245,1224,'N'),(245,1225,'N'),(245,1226,'N'),(245,1227,'N'),(245,1233,'N'),(245,1234,'N'),(245,1235,'N'),(245,1236,'N'),(245,1239,'N'),(245,1240,'N'),(245,1241,'N'),(245,1242,'N'),(245,1245,'N'),(245,1246,'N'),(245,1247,'N'),(245,1248,'N'),(245,1249,'N'),(245,1250,'N'),(245,1251,'N'),(245,1252,'S'),(245,1254,'N'),(245,1255,'N'),(245,1257,'N'),(245,1259,'N'),(245,1260,'N'),(245,1261,'N'),(245,1262,'N'),(245,1263,'N'),(245,1264,'N'),(245,1270,'N'),(245,1271,'N'),(245,1272,'N'),(245,1273,'N'),(245,1276,'N'),(245,1277,'N'),(245,1278,'N'),(245,1279,'N'),(245,1282,'N'),(245,1283,'N'),(245,1284,'N'),(245,1285,'N'),(245,1286,'N'),(245,1287,'N'),(245,1288,'N'),(245,1289,'S'),(245,1291,'N'),(245,1292,'N'),(245,1294,'N'),(245,1296,'N'),(245,1297,'N'),(245,1298,'N'),(245,1299,'N'),(245,1300,'N'),(245,1301,'N'),(245,1307,'N'),(245,1308,'N'),(245,1309,'N'),(245,1310,'N'),(245,1313,'N'),(245,1314,'N'),(245,1315,'N'),(245,1316,'N'),(245,1319,'N'),(245,1320,'N'),(245,1321,'N'),(245,1322,'N'),(245,1324,'N'),(245,1325,'N'),(245,1326,'N'),(245,1327,'S'),(245,1329,'N'),(245,1330,'N'),(245,1332,'N'),(245,1334,'N'),(245,1335,'N'),(245,1336,'N'),(245,1337,'N'),(245,1338,'N'),(245,1339,'N'),(245,1345,'N'),(245,1346,'N'),(245,1347,'N'),(245,1348,'N'),(245,1351,'N'),(245,1352,'N'),(245,1353,'N'),(245,1354,'N'),(245,1357,'N'),(245,1358,'N'),(245,1359,'N'),(245,1360,'N'),(245,1363,'N'),(245,1364,'N'),(245,1365,'N'),(245,1366,'S'),(245,1368,'N'),(245,1369,'N'),(245,1371,'N'),(245,1373,'N'),(245,1374,'N'),(245,1375,'N'),(245,1376,'N'),(245,1377,'N'),(245,1378,'N'),(245,1384,'N'),(245,1385,'N'),(245,1386,'N'),(245,1387,'N'),(245,1390,'N'),(245,1391,'N'),(245,1392,'N'),(245,1393,'N'),(245,1396,'N'),(245,1397,'N'),(245,1398,'N'),(245,1399,'N'),(245,1403,'N'),(245,1404,'N'),(245,1405,'N'),(245,1406,'S'),(245,1408,'N'),(245,1409,'N'),(245,1411,'N'),(245,1413,'N'),(245,1414,'N'),(245,1415,'N'),(245,1416,'N'),(245,1417,'N'),(245,1418,'N'),(245,1424,'N'),(245,1425,'N'),(245,1426,'N'),(245,1427,'N'),(245,1430,'N'),(245,1431,'N'),(245,1432,'N'),(245,1433,'N'),(245,1436,'N'),(245,1437,'N'),(245,1438,'N'),(245,1439,'N'),(245,1443,'N'),(245,1444,'N'),(245,1445,'N'),(245,1446,'S'),(245,1448,'N'),(245,1449,'N'),(245,1451,'N'),(245,1453,'N'),(245,1454,'N'),(245,1455,'N'),(245,1456,'N'),(245,1457,'N'),(245,1458,'N'),(245,1464,'N'),(245,1465,'N'),(245,1466,'N'),(245,1467,'N'),(245,1470,'N'),(245,1471,'N'),(245,1472,'N'),(245,1473,'N'),(245,1476,'N'),(245,1477,'N'),(245,1478,'N'),(245,1479,'N'),(245,1483,'N'),(245,1484,'N'),(245,1485,'N'),(245,1486,'S'),(245,1488,'N'),(245,1489,'N'),(245,1491,'N'),(245,1493,'N'),(245,1494,'N'),(245,1495,'N'),(245,1496,'N'),(245,1497,'N'),(245,1498,'N'),(245,1504,'N'),(245,1505,'N'),(245,1506,'N'),(245,1507,'N'),(245,1510,'N'),(245,1511,'N'),(245,1512,'N'),(245,1513,'N'),(245,1516,'N'),(245,1517,'N'),(245,1518,'N'),(245,1519,'N'),(245,1523,'N'),(245,1524,'N'),(245,1525,'N'),(245,1526,'S'),(245,1528,'N'),(245,1529,'N'),(245,1531,'N'),(245,1533,'N'),(245,1534,'N'),(245,1535,'N'),(245,1536,'N'),(245,1537,'N'),(245,1538,'N'),(245,1542,'N'),(245,1543,'N'),(245,1544,'N'),(245,1545,'N'),(245,1546,'N'),(245,1547,'N'),(245,1548,'N'),(245,1549,'N'),(245,1550,'N'),(245,1551,'N'),(245,1552,'N'),(245,1553,'N'),(245,1554,'N'),(245,1555,'N'),(245,1556,'N'),(245,1557,'N'),(245,1558,'N'),(245,1559,'N'),(245,1561,'N'),(245,1562,'N'),(245,1564,'N'),(245,1565,'N'),(245,1566,'N'),(245,1567,'S'),(245,1569,'N'),(245,1570,'N'),(245,1571,'N'),(245,1573,'N'),(245,1574,'N'),(245,1575,'N'),(245,1576,'N'),(245,1577,'N'),(245,1578,'N'),(245,1582,'N'),(245,1583,'N'),(245,1584,'N'),(245,1585,'N'),(245,1586,'N'),(245,1587,'N'),(245,1588,'N'),(245,1589,'N'),(245,1590,'N'),(245,1591,'N'),(245,1592,'N'),(245,1593,'N'),(245,1594,'N'),(245,1595,'N'),(245,1596,'N'),(245,1597,'N'),(245,1598,'N'),(245,1599,'N'),(245,1601,'N'),(245,1602,'N'),(245,1604,'N'),(245,1605,'N'),(245,1606,'N'),(245,1607,'S'),(245,1609,'N'),(245,1610,'N'),(245,1611,'N'),(245,1612,'N'),(245,1613,'N'),(245,1614,'N'),(245,1615,'N'),(245,1616,'N'),(245,1617,'N'),(245,1621,'N'),(245,1622,'N'),(245,1623,'N'),(245,1624,'N'),(245,1625,'N'),(245,1626,'N'),(245,1627,'N'),(245,1628,'N'),(245,1629,'N'),(245,1630,'N'),(245,1631,'N'),(245,1632,'N'),(245,1633,'N'),(245,1634,'N'),(245,1635,'N'),(245,1636,'N'),(245,1637,'N'),(245,1638,'N'),(245,1640,'N'),(245,1641,'N'),(246,473,'S'),(246,492,'S'),(246,512,'S'),(246,549,'S'),(246,570,'S'),(246,592,'S'),(246,615,'S'),(246,639,'S'),(246,664,'S'),(246,690,'S'),(246,717,'S'),(246,745,'S'),(246,774,'S'),(246,804,'S'),(246,835,'S'),(246,867,'S'),(246,900,'S'),(246,934,'S'),(246,969,'S'),(246,1005,'S'),(246,1042,'S'),(246,1079,'S'),(246,1117,'S'),(246,1155,'S'),(246,1192,'S'),(246,1229,'S'),(246,1266,'S'),(246,1303,'S'),(246,1341,'S'),(246,1380,'S'),(246,1420,'S'),(246,1460,'S'),(246,1500,'S'),(246,1540,'S'),(246,1580,'S'),(246,1619,'S'),(247,1,'N'),(247,2,'N'),(247,3,'N'),(247,4,'S'),(247,8,'N'),(247,10,'N'),(247,12,'N'),(247,13,'N'),(247,14,'N'),(247,15,'N'),(247,16,'N'),(247,17,'N'),(247,18,'N'),(247,19,'S'),(247,23,'N'),(247,25,'N'),(247,27,'N'),(247,28,'N'),(247,29,'N'),(247,30,'N'),(247,31,'N'),(247,32,'N'),(247,33,'N'),(247,34,'S'),(247,38,'N'),(247,40,'N'),(247,42,'N'),(247,43,'N'),(247,44,'N'),(247,45,'N'),(247,46,'N'),(247,47,'N'),(247,48,'N'),(247,49,'S'),(247,53,'N'),(247,55,'N'),(247,57,'N'),(247,58,'N'),(247,59,'N'),(247,60,'N'),(247,61,'N'),(247,62,'N'),(247,63,'N'),(247,64,'S'),(247,68,'N'),(247,70,'N'),(247,72,'N'),(247,73,'N'),(247,74,'N'),(247,75,'N'),(247,76,'N'),(247,77,'N'),(247,78,'N'),(247,79,'S'),(247,83,'N'),(247,85,'N'),(247,87,'N'),(247,88,'N'),(247,89,'N'),(247,90,'N'),(247,91,'N'),(247,92,'N'),(247,93,'N'),(247,94,'S'),(247,98,'N'),(247,100,'N'),(247,102,'N'),(247,103,'N'),(247,104,'N'),(247,105,'N'),(247,106,'N'),(247,107,'N'),(247,108,'N'),(247,109,'S'),(247,113,'N'),(247,115,'N'),(247,117,'N'),(247,118,'N'),(247,119,'N'),(247,120,'N'),(247,121,'N'),(247,122,'N'),(247,123,'N'),(247,124,'S'),(247,128,'N'),(247,130,'N'),(247,132,'N'),(247,133,'N'),(247,134,'N'),(247,135,'N'),(247,136,'N'),(247,137,'N'),(247,138,'N'),(247,139,'S'),(247,143,'N'),(247,145,'N'),(247,147,'N'),(247,148,'N'),(247,149,'N'),(247,150,'N'),(247,151,'N'),(247,152,'N'),(247,153,'N'),(247,154,'S'),(247,158,'N'),(247,160,'N'),(247,162,'N'),(247,163,'N'),(247,164,'N'),(247,165,'N'),(247,166,'N'),(247,167,'N'),(247,168,'N'),(247,169,'S'),(247,173,'N'),(247,175,'N'),(247,177,'N'),(247,178,'N'),(247,179,'N'),(247,180,'N'),(247,181,'N'),(247,182,'N'),(247,183,'N'),(247,184,'S'),(247,188,'N'),(247,190,'N'),(247,192,'N'),(247,193,'N'),(247,194,'N'),(247,195,'N'),(247,196,'N'),(247,197,'N'),(247,198,'N'),(247,199,'S'),(247,203,'N'),(247,205,'N'),(247,207,'N'),(247,208,'N'),(247,209,'N'),(247,210,'N'),(247,211,'N'),(247,212,'N'),(247,213,'N'),(247,214,'S'),(247,218,'N'),(247,220,'N'),(247,222,'N'),(247,223,'N'),(247,224,'N'),(247,225,'N'),(247,226,'N'),(247,227,'N'),(247,228,'N'),(247,229,'S'),(247,233,'N'),(247,235,'N'),(247,237,'N'),(247,238,'N'),(247,239,'N'),(247,240,'N'),(247,241,'N'),(247,242,'N'),(247,243,'N'),(247,244,'S'),(247,248,'N'),(247,250,'N'),(247,252,'N'),(247,253,'N'),(247,254,'N'),(247,255,'N'),(247,256,'N'),(247,257,'N'),(247,258,'N'),(247,259,'S'),(247,263,'N'),(247,265,'N'),(247,267,'N'),(247,268,'N'),(247,269,'N'),(247,270,'N'),(247,271,'N'),(247,272,'N'),(247,273,'N'),(247,274,'S'),(247,278,'N'),(247,280,'N'),(247,282,'N'),(247,283,'N'),(247,284,'N'),(247,285,'N'),(247,286,'N'),(247,287,'N'),(247,288,'N'),(247,289,'N'),(247,290,'S'),(247,294,'N'),(247,296,'N'),(247,298,'N'),(247,299,'N'),(247,300,'N'),(247,301,'N'),(247,303,'N'),(247,304,'N'),(247,305,'N'),(247,306,'S'),(247,310,'N'),(247,312,'N'),(247,314,'N'),(247,315,'N'),(247,316,'N'),(247,317,'N'),(247,318,'N'),(247,319,'N'),(247,320,'N'),(247,321,'N'),(247,322,'S'),(247,326,'N'),(247,328,'N'),(247,330,'N'),(247,331,'N'),(247,332,'N'),(247,333,'N'),(247,334,'N'),(247,335,'N'),(247,336,'N'),(247,337,'N'),(247,338,'S'),(247,342,'N'),(247,344,'N'),(247,346,'N'),(247,347,'N'),(247,348,'N'),(247,349,'N'),(247,350,'N'),(247,352,'N'),(247,353,'N'),(247,354,'N'),(247,355,'S'),(247,359,'N'),(247,361,'N'),(247,363,'N'),(247,364,'N'),(247,365,'N'),(247,366,'N'),(247,367,'N'),(247,369,'N'),(247,370,'N'),(247,371,'N'),(247,372,'S'),(247,376,'N'),(247,378,'N'),(247,380,'N'),(247,381,'N'),(247,382,'N'),(247,383,'N'),(247,384,'N'),(247,386,'N'),(247,387,'N'),(247,388,'N'),(247,389,'S'),(247,393,'N'),(247,395,'N'),(247,397,'N'),(247,398,'N'),(247,399,'N'),(247,400,'N'),(247,401,'N'),(247,403,'N'),(247,404,'N'),(247,405,'N'),(247,406,'S'),(247,410,'N'),(247,412,'N'),(247,414,'N'),(247,415,'N'),(247,416,'N'),(247,417,'N'),(247,418,'N'),(247,420,'N'),(247,421,'N'),(247,422,'N'),(247,423,'S'),(247,427,'N'),(247,429,'N'),(247,431,'N'),(247,432,'N'),(247,433,'N'),(247,434,'N'),(247,435,'N'),(247,437,'N'),(247,438,'N'),(247,439,'N'),(247,440,'S'),(247,444,'N'),(247,446,'N'),(247,448,'N'),(247,449,'N'),(247,450,'N'),(247,451,'N'),(247,452,'N'),(247,453,'N'),(247,455,'N'),(247,456,'N'),(247,457,'N'),(247,458,'S'),(247,462,'N'),(247,464,'N'),(247,466,'N'),(247,467,'N'),(247,468,'N'),(247,469,'N'),(247,470,'N'),(247,471,'N'),(247,474,'N'),(247,475,'N'),(247,476,'N'),(247,477,'S'),(247,481,'N'),(247,483,'N'),(247,485,'N'),(247,486,'N'),(247,487,'N'),(247,488,'N'),(247,489,'N'),(247,490,'N'),(247,494,'N'),(247,495,'N'),(247,496,'N'),(247,497,'S'),(247,501,'N'),(247,503,'N'),(247,505,'N'),(247,506,'N'),(247,507,'N'),(247,508,'N'),(247,509,'N'),(247,510,'N'),(247,514,'N'),(247,515,'N'),(247,516,'N'),(247,517,'S'),(247,521,'N'),(247,523,'N'),(247,525,'N'),(247,526,'N'),(247,527,'N'),(247,528,'N'),(247,529,'N'),(247,530,'N'),(247,531,'N'),(247,532,'N'),(247,533,'N'),(247,534,'S'),(247,538,'N'),(247,540,'N'),(247,542,'N'),(247,543,'N'),(247,544,'N'),(247,545,'N'),(247,546,'N'),(247,547,'N'),(247,552,'N'),(247,553,'N'),(247,554,'N'),(247,555,'S'),(247,559,'N'),(247,561,'N'),(247,563,'N'),(247,564,'N'),(247,565,'N'),(247,566,'N'),(247,567,'N'),(247,568,'N'),(247,574,'N'),(247,575,'N'),(247,576,'N'),(247,577,'S'),(247,581,'N'),(247,583,'N'),(247,585,'N'),(247,586,'N'),(247,587,'N'),(247,588,'N'),(247,589,'N'),(247,590,'N'),(247,596,'N'),(247,597,'N'),(247,598,'N'),(247,599,'N'),(247,600,'S'),(247,604,'N'),(247,606,'N'),(247,608,'N'),(247,609,'N'),(247,610,'N'),(247,611,'N'),(247,612,'N'),(247,613,'N'),(247,619,'N'),(247,620,'N'),(247,621,'N'),(247,622,'N'),(247,623,'N'),(247,624,'S'),(247,628,'N'),(247,630,'N'),(247,632,'N'),(247,633,'N'),(247,634,'N'),(247,635,'N'),(247,636,'N'),(247,637,'N'),(247,643,'N'),(247,644,'N'),(247,645,'N'),(247,646,'N'),(247,647,'N'),(247,648,'N'),(247,649,'S'),(247,653,'N'),(247,655,'N'),(247,657,'N'),(247,658,'N'),(247,659,'N'),(247,660,'N'),(247,661,'N'),(247,662,'N'),(247,668,'N'),(247,669,'N'),(247,670,'N'),(247,671,'N'),(247,672,'N'),(247,673,'N'),(247,674,'N'),(247,675,'S'),(247,679,'N'),(247,681,'N'),(247,683,'N'),(247,684,'N'),(247,685,'N'),(247,686,'N'),(247,687,'N'),(247,688,'N'),(247,694,'N'),(247,695,'N'),(247,696,'N'),(247,697,'N'),(247,699,'N'),(247,700,'N'),(247,701,'N'),(247,702,'S'),(247,706,'N'),(247,708,'N'),(247,710,'N'),(247,711,'N'),(247,712,'N'),(247,713,'N'),(247,714,'N'),(247,715,'N'),(247,721,'N'),(247,722,'N'),(247,723,'N'),(247,724,'N'),(247,727,'N'),(247,728,'N'),(247,729,'N'),(247,730,'S'),(247,734,'N'),(247,736,'N'),(247,738,'N'),(247,739,'N'),(247,740,'N'),(247,741,'N'),(247,742,'N'),(247,743,'N'),(247,749,'N'),(247,750,'N'),(247,751,'N'),(247,752,'N'),(247,755,'N'),(247,756,'N'),(247,757,'N'),(247,758,'N'),(247,759,'S'),(247,763,'N'),(247,765,'N'),(247,767,'N'),(247,768,'N'),(247,769,'N'),(247,770,'N'),(247,771,'N'),(247,772,'N'),(247,778,'N'),(247,779,'N'),(247,780,'N'),(247,781,'N'),(247,784,'N'),(247,785,'N'),(247,786,'N'),(247,787,'N'),(247,788,'N'),(247,789,'S'),(247,793,'N'),(247,795,'N'),(247,797,'N'),(247,798,'N'),(247,799,'N'),(247,800,'N'),(247,801,'N'),(247,802,'N'),(247,808,'N'),(247,809,'N'),(247,810,'N'),(247,811,'N'),(247,814,'N'),(247,815,'N'),(247,816,'N'),(247,817,'N'),(247,818,'N'),(247,819,'N'),(247,820,'S'),(247,824,'N'),(247,826,'N'),(247,828,'N'),(247,829,'N'),(247,830,'N'),(247,831,'N'),(247,832,'N'),(247,833,'N'),(247,839,'N'),(247,840,'N'),(247,841,'N'),(247,842,'N'),(247,845,'N'),(247,846,'N'),(247,847,'N'),(247,848,'N'),(247,849,'N'),(247,850,'N'),(247,851,'N'),(247,852,'S'),(247,856,'N'),(247,858,'N'),(247,860,'N'),(247,861,'N'),(247,862,'N'),(247,863,'N'),(247,864,'N'),(247,865,'N'),(247,871,'N'),(247,872,'N'),(247,873,'N'),(247,874,'N'),(247,877,'N'),(247,878,'N'),(247,879,'N'),(247,880,'N'),(247,882,'N'),(247,883,'N'),(247,884,'N'),(247,885,'S'),(247,889,'N'),(247,891,'N'),(247,893,'N'),(247,894,'N'),(247,895,'N'),(247,896,'N'),(247,897,'N'),(247,898,'N'),(247,904,'N'),(247,905,'N'),(247,906,'N'),(247,907,'N'),(247,910,'N'),(247,911,'N'),(247,912,'N'),(247,913,'N'),(247,916,'N'),(247,917,'N'),(247,918,'N'),(247,919,'S'),(247,923,'N'),(247,925,'N'),(247,927,'N'),(247,928,'N'),(247,929,'N'),(247,930,'N'),(247,931,'N'),(247,932,'N'),(247,938,'N'),(247,939,'N'),(247,940,'N'),(247,941,'N'),(247,944,'N'),(247,945,'N'),(247,946,'N'),(247,947,'N'),(247,950,'N'),(247,951,'N'),(247,952,'N'),(247,953,'N'),(247,954,'S'),(247,958,'N'),(247,960,'N'),(247,962,'N'),(247,963,'N'),(247,964,'N'),(247,965,'N'),(247,966,'N'),(247,967,'N'),(247,973,'N'),(247,974,'N'),(247,975,'N'),(247,976,'N'),(247,979,'N'),(247,980,'N'),(247,981,'N'),(247,982,'N'),(247,985,'N'),(247,986,'N'),(247,987,'N'),(247,988,'N'),(247,989,'N'),(247,990,'S'),(247,994,'N'),(247,996,'N'),(247,998,'N'),(247,999,'N'),(247,1000,'N'),(247,1001,'N'),(247,1002,'N'),(247,1003,'N'),(247,1009,'N'),(247,1010,'N'),(247,1011,'N'),(247,1012,'N'),(247,1015,'N'),(247,1016,'N'),(247,1017,'N'),(247,1018,'N'),(247,1021,'N'),(247,1022,'N'),(247,1023,'N'),(247,1024,'N'),(247,1025,'N'),(247,1026,'N'),(247,1027,'S'),(247,1031,'N'),(247,1033,'N'),(247,1035,'N'),(247,1036,'N'),(247,1037,'N'),(247,1038,'N'),(247,1039,'N'),(247,1040,'N'),(247,1046,'N'),(247,1047,'N'),(247,1048,'N'),(247,1049,'N'),(247,1052,'N'),(247,1053,'N'),(247,1054,'N'),(247,1055,'N'),(247,1058,'N'),(247,1059,'N'),(247,1060,'N'),(247,1061,'N'),(247,1062,'N'),(247,1063,'N'),(247,1064,'S'),(247,1068,'N'),(247,1070,'N'),(247,1072,'N'),(247,1073,'N'),(247,1074,'N'),(247,1075,'N'),(247,1076,'N'),(247,1077,'N'),(247,1083,'N'),(247,1084,'N'),(247,1085,'N'),(247,1086,'N'),(247,1089,'N'),(247,1090,'N'),(247,1091,'N'),(247,1092,'N'),(247,1095,'N'),(247,1096,'N'),(247,1097,'N'),(247,1098,'N'),(247,1099,'N'),(247,1100,'N'),(247,1101,'N'),(247,1102,'S'),(247,1104,'N'),(247,1106,'N'),(247,1108,'N'),(247,1110,'N'),(247,1111,'N'),(247,1112,'N'),(247,1113,'N'),(247,1114,'N'),(247,1115,'N'),(247,1121,'N'),(247,1122,'N'),(247,1123,'N'),(247,1124,'N'),(247,1127,'N'),(247,1128,'N'),(247,1129,'N'),(247,1130,'N'),(247,1133,'N'),(247,1134,'N'),(247,1135,'N'),(247,1136,'N'),(247,1137,'N'),(247,1138,'N'),(247,1139,'N'),(247,1140,'S'),(247,1142,'N'),(247,1144,'N'),(247,1146,'N'),(247,1148,'N'),(247,1149,'N'),(247,1150,'N'),(247,1151,'N'),(247,1152,'N'),(247,1153,'N'),(247,1159,'N'),(247,1160,'N'),(247,1161,'N'),(247,1162,'N'),(247,1165,'N'),(247,1166,'N'),(247,1167,'N'),(247,1168,'N'),(247,1171,'N'),(247,1172,'N'),(247,1173,'N'),(247,1174,'N'),(247,1175,'N'),(247,1176,'N'),(247,1177,'N'),(247,1178,'S'),(247,1180,'N'),(247,1181,'N'),(247,1183,'N'),(247,1185,'N'),(247,1186,'N'),(247,1187,'N'),(247,1188,'N'),(247,1189,'N'),(247,1190,'N'),(247,1196,'N'),(247,1197,'N'),(247,1198,'N'),(247,1199,'N'),(247,1202,'N'),(247,1203,'N'),(247,1204,'N'),(247,1205,'N'),(247,1208,'N'),(247,1209,'N'),(247,1210,'N'),(247,1211,'N'),(247,1212,'N'),(247,1213,'N'),(247,1214,'N'),(247,1215,'S'),(247,1217,'N'),(247,1218,'N'),(247,1220,'N'),(247,1222,'N'),(247,1223,'N'),(247,1224,'N'),(247,1225,'N'),(247,1226,'N'),(247,1227,'N'),(247,1233,'N'),(247,1234,'N'),(247,1235,'N'),(247,1236,'N'),(247,1239,'N'),(247,1240,'N'),(247,1241,'N'),(247,1242,'N'),(247,1245,'N'),(247,1246,'N'),(247,1247,'N'),(247,1248,'N'),(247,1249,'N'),(247,1250,'N'),(247,1251,'N'),(247,1252,'S'),(247,1254,'N'),(247,1255,'N'),(247,1257,'N'),(247,1259,'N'),(247,1260,'N'),(247,1261,'N'),(247,1262,'N'),(247,1263,'N'),(247,1264,'N'),(247,1270,'N'),(247,1271,'N'),(247,1272,'N'),(247,1273,'N'),(247,1276,'N'),(247,1277,'N'),(247,1278,'N'),(247,1279,'N'),(247,1282,'N'),(247,1283,'N'),(247,1284,'N'),(247,1285,'N'),(247,1286,'N'),(247,1287,'N'),(247,1288,'N'),(247,1289,'S'),(247,1291,'N'),(247,1292,'N'),(247,1294,'N'),(247,1296,'N'),(247,1297,'N'),(247,1298,'N'),(247,1299,'N'),(247,1300,'N'),(247,1301,'N'),(247,1307,'N'),(247,1308,'N'),(247,1309,'N'),(247,1310,'N'),(247,1313,'N'),(247,1314,'N'),(247,1315,'N'),(247,1316,'N'),(247,1319,'N'),(247,1320,'N'),(247,1321,'N'),(247,1322,'N'),(247,1324,'N'),(247,1325,'N'),(247,1326,'N'),(247,1327,'S'),(247,1329,'N'),(247,1330,'N'),(247,1332,'N'),(247,1334,'N'),(247,1335,'N'),(247,1336,'N'),(247,1337,'N'),(247,1338,'N'),(247,1339,'N'),(247,1345,'N'),(247,1346,'N'),(247,1347,'N'),(247,1348,'N'),(247,1351,'N'),(247,1352,'N'),(247,1353,'N'),(247,1354,'N'),(247,1357,'N'),(247,1358,'N'),(247,1359,'N'),(247,1360,'N'),(247,1363,'N'),(247,1364,'N'),(247,1365,'N'),(247,1366,'S'),(247,1368,'N'),(247,1369,'N'),(247,1371,'N'),(247,1373,'N'),(247,1374,'N'),(247,1375,'N'),(247,1376,'N'),(247,1377,'N'),(247,1378,'N'),(247,1384,'N'),(247,1385,'N'),(247,1386,'N'),(247,1387,'N'),(247,1390,'N'),(247,1391,'N'),(247,1392,'N'),(247,1393,'N'),(247,1396,'N'),(247,1397,'N'),(247,1398,'N'),(247,1399,'N'),(247,1403,'N'),(247,1404,'N'),(247,1405,'N'),(247,1406,'S'),(247,1408,'N'),(247,1409,'N'),(247,1411,'N'),(247,1413,'N'),(247,1414,'N'),(247,1415,'N'),(247,1416,'N'),(247,1417,'N'),(247,1418,'N'),(247,1424,'N'),(247,1425,'N'),(247,1426,'N'),(247,1427,'N'),(247,1430,'N'),(247,1431,'N'),(247,1432,'N'),(247,1433,'N'),(247,1436,'N'),(247,1437,'N'),(247,1438,'N'),(247,1439,'N'),(247,1443,'N'),(247,1444,'N'),(247,1445,'N'),(247,1446,'S'),(247,1448,'N'),(247,1449,'N'),(247,1451,'N'),(247,1453,'N'),(247,1454,'N'),(247,1455,'N'),(247,1456,'N'),(247,1457,'N'),(247,1458,'N'),(247,1464,'N'),(247,1465,'N'),(247,1466,'N'),(247,1467,'N'),(247,1470,'N'),(247,1471,'N'),(247,1472,'N'),(247,1473,'N'),(247,1476,'N'),(247,1477,'N'),(247,1478,'N'),(247,1479,'N'),(247,1483,'N'),(247,1484,'N'),(247,1485,'N'),(247,1486,'S'),(247,1488,'N'),(247,1489,'N'),(247,1491,'N'),(247,1493,'N'),(247,1494,'N'),(247,1495,'N'),(247,1496,'N'),(247,1497,'N'),(247,1498,'N'),(247,1504,'N'),(247,1505,'N'),(247,1506,'N'),(247,1507,'N'),(247,1510,'N'),(247,1511,'N'),(247,1512,'N'),(247,1513,'N'),(247,1516,'N'),(247,1517,'N'),(247,1518,'N'),(247,1519,'N'),(247,1523,'N'),(247,1524,'N'),(247,1525,'N'),(247,1526,'S'),(247,1528,'N'),(247,1529,'N'),(247,1531,'N'),(247,1533,'N'),(247,1534,'N'),(247,1535,'N'),(247,1536,'N'),(247,1537,'N'),(247,1538,'N'),(247,1542,'N'),(247,1543,'N'),(247,1544,'N'),(247,1545,'N'),(247,1546,'N'),(247,1547,'N'),(247,1548,'N'),(247,1549,'N'),(247,1550,'N'),(247,1551,'N'),(247,1552,'N'),(247,1553,'N'),(247,1554,'N'),(247,1555,'N'),(247,1556,'N'),(247,1557,'N'),(247,1558,'N'),(247,1559,'N'),(247,1561,'N'),(247,1562,'N'),(247,1564,'N'),(247,1565,'N'),(247,1566,'N'),(247,1567,'S'),(247,1569,'N'),(247,1570,'N'),(247,1571,'N'),(247,1573,'N'),(247,1574,'N'),(247,1575,'N'),(247,1576,'N'),(247,1577,'N'),(247,1578,'N'),(247,1582,'N'),(247,1583,'N'),(247,1584,'N'),(247,1585,'N'),(247,1586,'N'),(247,1587,'N'),(247,1588,'N'),(247,1589,'N'),(247,1590,'N'),(247,1591,'N'),(247,1592,'N'),(247,1593,'N'),(247,1594,'N'),(247,1595,'N'),(247,1596,'N'),(247,1597,'N'),(247,1598,'N'),(247,1599,'N'),(247,1601,'N'),(247,1602,'N'),(247,1604,'N'),(247,1605,'N'),(247,1606,'N'),(247,1607,'S'),(247,1609,'N'),(247,1610,'N'),(247,1611,'N'),(247,1612,'N'),(247,1613,'N'),(247,1614,'N'),(247,1615,'N'),(247,1616,'N'),(247,1617,'N'),(247,1621,'N'),(247,1622,'N'),(247,1623,'N'),(247,1624,'N'),(247,1625,'N'),(247,1626,'N'),(247,1627,'N'),(247,1628,'N'),(247,1629,'N'),(247,1630,'N'),(247,1631,'N'),(247,1632,'N'),(247,1633,'N'),(247,1634,'N'),(247,1635,'N'),(247,1636,'N'),(247,1637,'N'),(247,1638,'N'),(247,1640,'N'),(247,1641,'N'),(248,473,'S'),(248,492,'S'),(248,512,'S'),(248,549,'S'),(248,570,'S'),(248,592,'S'),(248,615,'S'),(248,639,'S'),(248,664,'S'),(248,690,'S'),(248,717,'S'),(248,745,'S'),(248,774,'S'),(248,804,'S'),(248,835,'S'),(248,867,'S'),(248,900,'S'),(248,934,'S'),(248,969,'S'),(248,1005,'S'),(248,1042,'S'),(248,1079,'S'),(248,1117,'S'),(248,1155,'S'),(248,1192,'S'),(248,1229,'S'),(248,1266,'S'),(248,1303,'S'),(248,1341,'S'),(248,1380,'S'),(248,1420,'S'),(248,1460,'S'),(248,1500,'S'),(248,1540,'S'),(248,1580,'S'),(248,1619,'S'),(249,1,'N'),(249,2,'N'),(249,3,'N'),(249,4,'S'),(249,8,'N'),(249,10,'N'),(249,12,'N'),(249,13,'N'),(249,14,'N'),(249,15,'N'),(249,16,'N'),(249,17,'N'),(249,18,'N'),(249,19,'S'),(249,23,'N'),(249,25,'N'),(249,27,'N'),(249,28,'N'),(249,29,'N'),(249,30,'N'),(249,31,'N'),(249,32,'N'),(249,33,'N'),(249,34,'S'),(249,38,'N'),(249,40,'N'),(249,42,'N'),(249,43,'N'),(249,44,'N'),(249,45,'N'),(249,46,'N'),(249,47,'N'),(249,48,'N'),(249,49,'S'),(249,53,'N'),(249,55,'N'),(249,57,'N'),(249,58,'N'),(249,59,'N'),(249,60,'N'),(249,61,'N'),(249,62,'N'),(249,63,'N'),(249,64,'S'),(249,68,'N'),(249,70,'N'),(249,72,'N'),(249,73,'N'),(249,74,'N'),(249,75,'N'),(249,76,'N'),(249,77,'N'),(249,78,'N'),(249,79,'S'),(249,83,'N'),(249,85,'N'),(249,87,'N'),(249,88,'N'),(249,89,'N'),(249,90,'N'),(249,91,'N'),(249,92,'N'),(249,93,'N'),(249,94,'S'),(249,98,'N'),(249,100,'N'),(249,102,'N'),(249,103,'N'),(249,104,'N'),(249,105,'N'),(249,106,'N'),(249,107,'N'),(249,108,'N'),(249,109,'S'),(249,113,'N'),(249,115,'N'),(249,117,'N'),(249,118,'N'),(249,119,'N'),(249,120,'N'),(249,121,'N'),(249,122,'N'),(249,123,'N'),(249,124,'S'),(249,128,'N'),(249,130,'N'),(249,132,'N'),(249,133,'N'),(249,134,'N'),(249,135,'N'),(249,136,'N'),(249,137,'N'),(249,138,'N'),(249,139,'S'),(249,143,'N'),(249,145,'N'),(249,147,'N'),(249,148,'N'),(249,149,'N'),(249,150,'N'),(249,151,'N'),(249,152,'N'),(249,153,'N'),(249,154,'S'),(249,158,'N'),(249,160,'N'),(249,162,'N'),(249,163,'N'),(249,164,'N'),(249,165,'N'),(249,166,'N'),(249,167,'N'),(249,168,'N'),(249,169,'S'),(249,173,'N'),(249,175,'N'),(249,177,'N'),(249,178,'N'),(249,179,'N'),(249,180,'N'),(249,181,'N'),(249,182,'N'),(249,183,'N'),(249,184,'S'),(249,188,'N'),(249,190,'N'),(249,192,'N'),(249,193,'N'),(249,194,'N'),(249,195,'N'),(249,196,'N'),(249,197,'N'),(249,198,'N'),(249,199,'S'),(249,203,'N'),(249,205,'N'),(249,207,'N'),(249,208,'N'),(249,209,'N'),(249,210,'N'),(249,211,'N'),(249,212,'N'),(249,213,'N'),(249,214,'S'),(249,218,'N'),(249,220,'N'),(249,222,'N'),(249,223,'N'),(249,224,'N'),(249,225,'N'),(249,226,'N'),(249,227,'N'),(249,228,'N'),(249,229,'S'),(249,233,'N'),(249,235,'N'),(249,237,'N'),(249,238,'N'),(249,239,'N'),(249,240,'N'),(249,241,'N'),(249,242,'N'),(249,243,'N'),(249,244,'S'),(249,248,'N'),(249,250,'N'),(249,252,'N'),(249,253,'N'),(249,254,'N'),(249,255,'N'),(249,256,'N'),(249,257,'N'),(249,258,'N'),(249,259,'S'),(249,263,'N'),(249,265,'N'),(249,267,'N'),(249,268,'N'),(249,269,'N'),(249,270,'N'),(249,271,'N'),(249,272,'N'),(249,273,'N'),(249,274,'S'),(249,278,'N'),(249,280,'N'),(249,282,'N'),(249,283,'N'),(249,284,'N'),(249,285,'N'),(249,286,'N'),(249,287,'N'),(249,288,'N'),(249,289,'N'),(249,290,'S'),(249,294,'N'),(249,296,'N'),(249,298,'N'),(249,299,'N'),(249,300,'N'),(249,301,'N'),(249,303,'N'),(249,304,'N'),(249,305,'N'),(249,306,'S'),(249,310,'N'),(249,312,'N'),(249,314,'N'),(249,315,'N'),(249,316,'N'),(249,317,'N'),(249,318,'N'),(249,319,'N'),(249,320,'N'),(249,321,'N'),(249,322,'S'),(249,326,'N'),(249,328,'N'),(249,330,'N'),(249,331,'N'),(249,332,'N'),(249,333,'N'),(249,334,'N'),(249,335,'N'),(249,336,'N'),(249,337,'N'),(249,338,'S'),(249,342,'N'),(249,344,'N'),(249,346,'N'),(249,347,'N'),(249,348,'N'),(249,349,'N'),(249,350,'N'),(249,352,'N'),(249,353,'N'),(249,354,'N'),(249,355,'S'),(249,359,'N'),(249,361,'N'),(249,363,'N'),(249,364,'N'),(249,365,'N'),(249,366,'N'),(249,367,'N'),(249,369,'N'),(249,370,'N'),(249,371,'N'),(249,372,'S'),(249,376,'N'),(249,378,'N'),(249,380,'N'),(249,381,'N'),(249,382,'N'),(249,383,'N'),(249,384,'N'),(249,386,'N'),(249,387,'N'),(249,388,'N'),(249,389,'S'),(249,393,'N'),(249,395,'N'),(249,397,'N'),(249,398,'N'),(249,399,'N'),(249,400,'N'),(249,401,'N'),(249,403,'N'),(249,404,'N'),(249,405,'N'),(249,406,'S'),(249,410,'N'),(249,412,'N'),(249,414,'N'),(249,415,'N'),(249,416,'N'),(249,417,'N'),(249,418,'N'),(249,420,'N'),(249,421,'N'),(249,422,'N'),(249,423,'S'),(249,427,'N'),(249,429,'N'),(249,431,'N'),(249,432,'N'),(249,433,'N'),(249,434,'N'),(249,435,'N'),(249,437,'N'),(249,438,'N'),(249,439,'N'),(249,440,'S'),(249,444,'N'),(249,446,'N'),(249,448,'N'),(249,449,'N'),(249,450,'N'),(249,451,'N'),(249,452,'N'),(249,453,'N'),(249,455,'N'),(249,456,'N'),(249,457,'N'),(249,458,'S'),(249,462,'N'),(249,464,'N'),(249,466,'N'),(249,467,'N'),(249,468,'N'),(249,469,'N'),(249,470,'N'),(249,471,'N'),(249,474,'N'),(249,475,'N'),(249,476,'N'),(249,477,'S'),(249,481,'N'),(249,483,'N'),(249,485,'N'),(249,486,'N'),(249,487,'N'),(249,488,'N'),(249,489,'N'),(249,490,'N'),(249,494,'N'),(249,495,'N'),(249,496,'N'),(249,497,'S'),(249,501,'N'),(249,503,'N'),(249,505,'N'),(249,506,'N'),(249,507,'N'),(249,508,'N'),(249,509,'N'),(249,510,'N'),(249,514,'N'),(249,515,'N'),(249,516,'N'),(249,517,'S'),(249,521,'N'),(249,523,'N'),(249,525,'N'),(249,526,'N'),(249,527,'N'),(249,528,'N'),(249,529,'N'),(249,530,'N'),(249,531,'N'),(249,532,'N'),(249,533,'N'),(249,534,'S'),(249,538,'N'),(249,540,'N'),(249,542,'N'),(249,543,'N'),(249,544,'N'),(249,545,'N'),(249,546,'N'),(249,547,'N'),(249,552,'N'),(249,553,'N'),(249,554,'N'),(249,555,'S'),(249,559,'N'),(249,561,'N'),(249,563,'N'),(249,564,'N'),(249,565,'N'),(249,566,'N'),(249,567,'N'),(249,568,'N'),(249,574,'N'),(249,575,'N'),(249,576,'N'),(249,577,'S'),(249,581,'N'),(249,583,'N'),(249,585,'N'),(249,586,'N'),(249,587,'N'),(249,588,'N'),(249,589,'N'),(249,590,'N'),(249,596,'N'),(249,597,'N'),(249,598,'N'),(249,599,'N'),(249,600,'S'),(249,604,'N'),(249,606,'N'),(249,608,'N'),(249,609,'N'),(249,610,'N'),(249,611,'N'),(249,612,'N'),(249,613,'N'),(249,619,'N'),(249,620,'N'),(249,621,'N'),(249,622,'N'),(249,623,'N'),(249,624,'S'),(249,628,'N'),(249,630,'N'),(249,632,'N'),(249,633,'N'),(249,634,'N'),(249,635,'N'),(249,636,'N'),(249,637,'N'),(249,643,'N'),(249,644,'N'),(249,645,'N'),(249,646,'N'),(249,647,'N'),(249,648,'N'),(249,649,'S'),(249,653,'N'),(249,655,'N'),(249,657,'N'),(249,658,'N'),(249,659,'N'),(249,660,'N'),(249,661,'N'),(249,662,'N'),(249,668,'N'),(249,669,'N'),(249,670,'N'),(249,671,'N'),(249,672,'N'),(249,673,'N'),(249,674,'N'),(249,675,'S'),(249,679,'N'),(249,681,'N'),(249,683,'N'),(249,684,'N'),(249,685,'N'),(249,686,'N'),(249,687,'N'),(249,688,'N'),(249,694,'N'),(249,695,'N'),(249,696,'N'),(249,697,'N'),(249,699,'N'),(249,700,'N'),(249,701,'N'),(249,702,'S'),(249,706,'N'),(249,708,'N'),(249,710,'N'),(249,711,'N'),(249,712,'N'),(249,713,'N'),(249,714,'N'),(249,715,'N'),(249,721,'N'),(249,722,'N'),(249,723,'N'),(249,724,'N'),(249,727,'N'),(249,728,'N'),(249,729,'N'),(249,730,'S'),(249,734,'N'),(249,736,'N'),(249,738,'N'),(249,739,'N'),(249,740,'N'),(249,741,'N'),(249,742,'N'),(249,743,'N'),(249,749,'N'),(249,750,'N'),(249,751,'N'),(249,752,'N'),(249,755,'N'),(249,756,'N'),(249,757,'N'),(249,758,'N'),(249,759,'S'),(249,763,'N'),(249,765,'N'),(249,767,'N'),(249,768,'N'),(249,769,'N'),(249,770,'N'),(249,771,'N'),(249,772,'N'),(249,778,'N'),(249,779,'N'),(249,780,'N'),(249,781,'N'),(249,784,'N'),(249,785,'N'),(249,786,'N'),(249,787,'N'),(249,788,'N'),(249,789,'S'),(249,793,'N'),(249,795,'N'),(249,797,'N'),(249,798,'N'),(249,799,'N'),(249,800,'N'),(249,801,'N'),(249,802,'N'),(249,808,'N'),(249,809,'N'),(249,810,'N'),(249,811,'N'),(249,814,'N'),(249,815,'N'),(249,816,'N'),(249,817,'N'),(249,818,'N'),(249,819,'N'),(249,820,'S'),(249,824,'N'),(249,826,'N'),(249,828,'N'),(249,829,'N'),(249,830,'N'),(249,831,'N'),(249,832,'N'),(249,833,'N'),(249,839,'N'),(249,840,'N'),(249,841,'N'),(249,842,'N'),(249,845,'N'),(249,846,'N'),(249,847,'N'),(249,848,'N'),(249,849,'N'),(249,850,'N'),(249,851,'N'),(249,852,'S'),(249,856,'N'),(249,858,'N'),(249,860,'N'),(249,861,'N'),(249,862,'N'),(249,863,'N'),(249,864,'N'),(249,865,'N'),(249,871,'N'),(249,872,'N'),(249,873,'N'),(249,874,'N'),(249,877,'N'),(249,878,'N'),(249,879,'N'),(249,880,'N'),(249,882,'N'),(249,883,'N'),(249,884,'N'),(249,885,'S'),(249,889,'N'),(249,891,'N'),(249,893,'N'),(249,894,'N'),(249,895,'N'),(249,896,'N'),(249,897,'N'),(249,898,'N'),(249,904,'N'),(249,905,'N'),(249,906,'N'),(249,907,'N'),(249,910,'N'),(249,911,'N'),(249,912,'N'),(249,913,'N'),(249,916,'N'),(249,917,'N'),(249,918,'N'),(249,919,'S'),(249,923,'N'),(249,925,'N'),(249,927,'N'),(249,928,'N'),(249,929,'N'),(249,930,'N'),(249,931,'N'),(249,932,'N'),(249,938,'N'),(249,939,'N'),(249,940,'N'),(249,941,'N'),(249,944,'N'),(249,945,'N'),(249,946,'N'),(249,947,'N'),(249,950,'N'),(249,951,'N'),(249,952,'N'),(249,953,'N'),(249,954,'S'),(249,958,'N'),(249,960,'N'),(249,962,'N'),(249,963,'N'),(249,964,'N'),(249,965,'N'),(249,966,'N'),(249,967,'N'),(249,973,'N'),(249,974,'N'),(249,975,'N'),(249,976,'N'),(249,979,'N'),(249,980,'N'),(249,981,'N'),(249,982,'N'),(249,985,'N'),(249,986,'N'),(249,987,'N'),(249,988,'N'),(249,989,'N'),(249,990,'S'),(249,994,'N'),(249,996,'N'),(249,998,'N'),(249,999,'N'),(249,1000,'N'),(249,1001,'N'),(249,1002,'N'),(249,1003,'N'),(249,1009,'N'),(249,1010,'N'),(249,1011,'N'),(249,1012,'N'),(249,1015,'N'),(249,1016,'N'),(249,1017,'N'),(249,1018,'N'),(249,1021,'N'),(249,1022,'N'),(249,1023,'N'),(249,1024,'N'),(249,1025,'N'),(249,1026,'N'),(249,1027,'S'),(249,1031,'N'),(249,1033,'N'),(249,1035,'N'),(249,1036,'N'),(249,1037,'N'),(249,1038,'N'),(249,1039,'N'),(249,1040,'N'),(249,1046,'N'),(249,1047,'N'),(249,1048,'N'),(249,1049,'N'),(249,1052,'N'),(249,1053,'N'),(249,1054,'N'),(249,1055,'N'),(249,1058,'N'),(249,1059,'N'),(249,1060,'N'),(249,1061,'N'),(249,1062,'N'),(249,1063,'N'),(249,1064,'S'),(249,1068,'N'),(249,1070,'N'),(249,1072,'N'),(249,1073,'N'),(249,1074,'N'),(249,1075,'N'),(249,1076,'N'),(249,1077,'N'),(249,1083,'N'),(249,1084,'N'),(249,1085,'N'),(249,1086,'N'),(249,1089,'N'),(249,1090,'N'),(249,1091,'N'),(249,1092,'N'),(249,1095,'N'),(249,1096,'N'),(249,1097,'N'),(249,1098,'N'),(249,1099,'N'),(249,1100,'N'),(249,1101,'N'),(249,1102,'S'),(249,1104,'N'),(249,1106,'N'),(249,1108,'N'),(249,1110,'N'),(249,1111,'N'),(249,1112,'N'),(249,1113,'N'),(249,1114,'N'),(249,1115,'N'),(249,1121,'N'),(249,1122,'N'),(249,1123,'N'),(249,1124,'N'),(249,1127,'N'),(249,1128,'N'),(249,1129,'N'),(249,1130,'N'),(249,1133,'N'),(249,1134,'N'),(249,1135,'N'),(249,1136,'N'),(249,1137,'N'),(249,1138,'N'),(249,1139,'N'),(249,1140,'S'),(249,1142,'N'),(249,1144,'N'),(249,1146,'N'),(249,1148,'N'),(249,1149,'N'),(249,1150,'N'),(249,1151,'N'),(249,1152,'N'),(249,1153,'N'),(249,1159,'N'),(249,1160,'N'),(249,1161,'N'),(249,1162,'N'),(249,1165,'N'),(249,1166,'N'),(249,1167,'N'),(249,1168,'N'),(249,1171,'N'),(249,1172,'N'),(249,1173,'N'),(249,1174,'N'),(249,1175,'N'),(249,1176,'N'),(249,1177,'N'),(249,1178,'S'),(249,1180,'N'),(249,1181,'N'),(249,1183,'N'),(249,1185,'N'),(249,1186,'N'),(249,1187,'N'),(249,1188,'N'),(249,1189,'N'),(249,1190,'N'),(249,1196,'N'),(249,1197,'N'),(249,1198,'N'),(249,1199,'N'),(249,1202,'N'),(249,1203,'N'),(249,1204,'N'),(249,1205,'N'),(249,1208,'N'),(249,1209,'N'),(249,1210,'N'),(249,1211,'N'),(249,1212,'N'),(249,1213,'N'),(249,1214,'N'),(249,1215,'S'),(249,1217,'N'),(249,1218,'N'),(249,1220,'N'),(249,1222,'N'),(249,1223,'N'),(249,1224,'N'),(249,1225,'N'),(249,1226,'N'),(249,1227,'N'),(249,1233,'N'),(249,1234,'N'),(249,1235,'N'),(249,1236,'N'),(249,1239,'N'),(249,1240,'N'),(249,1241,'N'),(249,1242,'N'),(249,1245,'N'),(249,1246,'N'),(249,1247,'N'),(249,1248,'N'),(249,1249,'N'),(249,1250,'N'),(249,1251,'N'),(249,1252,'S'),(249,1254,'N'),(249,1255,'N'),(249,1257,'N'),(249,1259,'N'),(249,1260,'N'),(249,1261,'N'),(249,1262,'N'),(249,1263,'N'),(249,1264,'N'),(249,1270,'N'),(249,1271,'N'),(249,1272,'N'),(249,1273,'N'),(249,1276,'N'),(249,1277,'N'),(249,1278,'N'),(249,1279,'N'),(249,1282,'N'),(249,1283,'N'),(249,1284,'N'),(249,1285,'N'),(249,1286,'N'),(249,1287,'N'),(249,1288,'N'),(249,1289,'S'),(249,1291,'N'),(249,1292,'N'),(249,1294,'N'),(249,1296,'N'),(249,1297,'N'),(249,1298,'N'),(249,1299,'N'),(249,1300,'N'),(249,1301,'N'),(249,1307,'N'),(249,1308,'N'),(249,1309,'N'),(249,1310,'N'),(249,1313,'N'),(249,1314,'N'),(249,1315,'N'),(249,1316,'N'),(249,1319,'N'),(249,1320,'N'),(249,1321,'N'),(249,1322,'N'),(249,1324,'N'),(249,1325,'N'),(249,1326,'N'),(249,1327,'S'),(249,1329,'N'),(249,1330,'N'),(249,1332,'N'),(249,1334,'N'),(249,1335,'N'),(249,1336,'N'),(249,1337,'N'),(249,1338,'N'),(249,1339,'N'),(249,1345,'N'),(249,1346,'N'),(249,1347,'N'),(249,1348,'N'),(249,1351,'N'),(249,1352,'N'),(249,1353,'N'),(249,1354,'N'),(249,1357,'N'),(249,1358,'N'),(249,1359,'N'),(249,1360,'N'),(249,1363,'N'),(249,1364,'N'),(249,1365,'N'),(249,1366,'S'),(249,1368,'N'),(249,1369,'N'),(249,1371,'N'),(249,1373,'N'),(249,1374,'N'),(249,1375,'N'),(249,1376,'N'),(249,1377,'N'),(249,1378,'N'),(249,1384,'N'),(249,1385,'N'),(249,1386,'N'),(249,1387,'N'),(249,1390,'N'),(249,1391,'N'),(249,1392,'N'),(249,1393,'N'),(249,1396,'N'),(249,1397,'N'),(249,1398,'N'),(249,1399,'N'),(249,1403,'N'),(249,1404,'N'),(249,1405,'N'),(249,1406,'S'),(249,1408,'N'),(249,1409,'N'),(249,1411,'N'),(249,1413,'N'),(249,1414,'N'),(249,1415,'N'),(249,1416,'N'),(249,1417,'N'),(249,1418,'N'),(249,1424,'N'),(249,1425,'N'),(249,1426,'N'),(249,1427,'N'),(249,1430,'N'),(249,1431,'N'),(249,1432,'N'),(249,1433,'N'),(249,1436,'N'),(249,1437,'N'),(249,1438,'N'),(249,1439,'N'),(249,1443,'N'),(249,1444,'N'),(249,1445,'N'),(249,1446,'S'),(249,1448,'N'),(249,1449,'N'),(249,1451,'N'),(249,1453,'N'),(249,1454,'N'),(249,1455,'N'),(249,1456,'N'),(249,1457,'N'),(249,1458,'N'),(249,1464,'N'),(249,1465,'N'),(249,1466,'N'),(249,1467,'N'),(249,1470,'N'),(249,1471,'N'),(249,1472,'N'),(249,1473,'N'),(249,1476,'N'),(249,1477,'N'),(249,1478,'N'),(249,1479,'N'),(249,1483,'N'),(249,1484,'N'),(249,1485,'N'),(249,1486,'S'),(249,1488,'N'),(249,1489,'N'),(249,1491,'N'),(249,1493,'N'),(249,1494,'N'),(249,1495,'N'),(249,1496,'N'),(249,1497,'N'),(249,1498,'N'),(249,1504,'N'),(249,1505,'N'),(249,1506,'N'),(249,1507,'N'),(249,1510,'N'),(249,1511,'N'),(249,1512,'N'),(249,1513,'N'),(249,1516,'N'),(249,1517,'N'),(249,1518,'N'),(249,1519,'N'),(249,1523,'N'),(249,1524,'N'),(249,1525,'N'),(249,1526,'S'),(249,1528,'N'),(249,1529,'N'),(249,1531,'N'),(249,1533,'N'),(249,1534,'N'),(249,1535,'N'),(249,1536,'N'),(249,1537,'N'),(249,1538,'N'),(249,1542,'N'),(249,1543,'N'),(249,1544,'N'),(249,1545,'N'),(249,1546,'N'),(249,1547,'N'),(249,1548,'N'),(249,1549,'N'),(249,1550,'N'),(249,1551,'N'),(249,1552,'N'),(249,1553,'N'),(249,1554,'N'),(249,1555,'N'),(249,1556,'N'),(249,1557,'N'),(249,1558,'N'),(249,1559,'N'),(249,1561,'N'),(249,1562,'N'),(249,1564,'N'),(249,1565,'N'),(249,1566,'N'),(249,1567,'S'),(249,1569,'N'),(249,1570,'N'),(249,1571,'N'),(249,1573,'N'),(249,1574,'N'),(249,1575,'N'),(249,1576,'N'),(249,1577,'N'),(249,1578,'N'),(249,1582,'N'),(249,1583,'N'),(249,1584,'N'),(249,1585,'N'),(249,1586,'N'),(249,1587,'N'),(249,1588,'N'),(249,1589,'N'),(249,1590,'N'),(249,1591,'N'),(249,1592,'N'),(249,1593,'N'),(249,1594,'N'),(249,1595,'N'),(249,1596,'N'),(249,1597,'N'),(249,1598,'N'),(249,1599,'N'),(249,1601,'N'),(249,1602,'N'),(249,1604,'N'),(249,1605,'N'),(249,1606,'N'),(249,1607,'S'),(249,1609,'N'),(249,1610,'N'),(249,1611,'N'),(249,1612,'N'),(249,1613,'N'),(249,1614,'N'),(249,1615,'N'),(249,1616,'N'),(249,1617,'N'),(249,1621,'N'),(249,1622,'N'),(249,1623,'N'),(249,1624,'N'),(249,1625,'N'),(249,1626,'N'),(249,1627,'N'),(249,1628,'N'),(249,1629,'N'),(249,1630,'N'),(249,1631,'N'),(249,1632,'N'),(249,1633,'N'),(249,1634,'N'),(249,1635,'N'),(249,1636,'N'),(249,1637,'N'),(249,1638,'N'),(249,1640,'N'),(249,1641,'N'),(250,473,'S'),(250,492,'S'),(250,512,'S'),(250,549,'S'),(250,570,'S'),(250,592,'S'),(250,615,'S'),(250,639,'S'),(250,664,'S'),(250,690,'S'),(250,717,'S'),(250,745,'S'),(250,774,'S'),(250,804,'S'),(250,835,'S'),(250,867,'S'),(250,900,'S'),(250,934,'S'),(250,969,'S'),(250,1005,'S'),(250,1042,'S'),(250,1079,'S'),(250,1117,'S'),(250,1155,'S'),(250,1192,'S'),(250,1229,'S'),(250,1266,'S'),(250,1303,'S'),(250,1341,'S'),(250,1380,'S'),(250,1420,'S'),(250,1460,'S'),(250,1500,'S'),(250,1540,'S'),(250,1580,'S'),(250,1619,'S'),(251,1,'N'),(251,2,'N'),(251,3,'N'),(251,4,'S'),(251,8,'N'),(251,10,'N'),(251,12,'N'),(251,13,'N'),(251,14,'N'),(251,15,'N'),(251,16,'N'),(251,17,'N'),(251,18,'N'),(251,19,'S'),(251,23,'N'),(251,25,'N'),(251,27,'N'),(251,28,'N'),(251,29,'N'),(251,30,'N'),(251,31,'N'),(251,32,'N'),(251,33,'N'),(251,34,'S'),(251,38,'N'),(251,40,'N'),(251,42,'N'),(251,43,'N'),(251,44,'N'),(251,45,'N'),(251,46,'N'),(251,47,'N'),(251,48,'N'),(251,49,'S'),(251,53,'N'),(251,55,'N'),(251,57,'N'),(251,58,'N'),(251,59,'N'),(251,60,'N'),(251,61,'N'),(251,62,'N'),(251,63,'N'),(251,64,'S'),(251,68,'N'),(251,70,'N'),(251,72,'N'),(251,73,'N'),(251,74,'N'),(251,75,'N'),(251,76,'N'),(251,77,'N'),(251,78,'N'),(251,79,'S'),(251,83,'N'),(251,85,'N'),(251,87,'N'),(251,88,'N'),(251,89,'N'),(251,90,'N'),(251,91,'N'),(251,92,'N'),(251,93,'N'),(251,94,'S'),(251,98,'N'),(251,100,'N'),(251,102,'N'),(251,103,'N'),(251,104,'N'),(251,105,'N'),(251,106,'N'),(251,107,'N'),(251,108,'N'),(251,109,'S'),(251,113,'N'),(251,115,'N'),(251,117,'N'),(251,118,'N'),(251,119,'N'),(251,120,'N'),(251,121,'N'),(251,122,'N'),(251,123,'N'),(251,124,'S'),(251,128,'N'),(251,130,'N'),(251,132,'N'),(251,133,'N'),(251,134,'N'),(251,135,'N'),(251,136,'N'),(251,137,'N'),(251,138,'N'),(251,139,'S'),(251,143,'N'),(251,145,'N'),(251,147,'N'),(251,148,'N'),(251,149,'N'),(251,150,'N'),(251,151,'N'),(251,152,'N'),(251,153,'N'),(251,154,'S'),(251,158,'N'),(251,160,'N'),(251,162,'N'),(251,163,'N'),(251,164,'N'),(251,165,'N'),(251,166,'N'),(251,167,'N'),(251,168,'N'),(251,169,'S'),(251,173,'N'),(251,175,'N'),(251,177,'N'),(251,178,'N'),(251,179,'N'),(251,180,'N'),(251,181,'N'),(251,182,'N'),(251,183,'N'),(251,184,'S'),(251,188,'N'),(251,190,'N'),(251,192,'N'),(251,193,'N'),(251,194,'N'),(251,195,'N'),(251,196,'N'),(251,197,'N'),(251,198,'N'),(251,199,'S'),(251,203,'N'),(251,205,'N'),(251,207,'N'),(251,208,'N'),(251,209,'N'),(251,210,'N'),(251,211,'N'),(251,212,'N'),(251,213,'N'),(251,214,'S'),(251,218,'N'),(251,220,'N'),(251,222,'N'),(251,223,'N'),(251,224,'N'),(251,225,'N'),(251,226,'N'),(251,227,'N'),(251,228,'N'),(251,229,'S'),(251,233,'N'),(251,235,'N'),(251,237,'N'),(251,238,'N'),(251,239,'N'),(251,240,'N'),(251,241,'N'),(251,242,'N'),(251,243,'N'),(251,244,'S'),(251,248,'N'),(251,250,'N'),(251,252,'N'),(251,253,'N'),(251,254,'N'),(251,255,'N'),(251,256,'N'),(251,257,'N'),(251,258,'N'),(251,259,'S'),(251,263,'N'),(251,265,'N'),(251,267,'N'),(251,268,'N'),(251,269,'N'),(251,270,'N'),(251,271,'N'),(251,272,'N'),(251,273,'N'),(251,274,'S'),(251,278,'N'),(251,280,'N'),(251,282,'N'),(251,283,'N'),(251,284,'N'),(251,285,'N'),(251,286,'N'),(251,287,'N'),(251,288,'N'),(251,289,'N'),(251,290,'S'),(251,294,'N'),(251,296,'N'),(251,298,'N'),(251,299,'N'),(251,300,'N'),(251,301,'N'),(251,303,'N'),(251,304,'N'),(251,305,'N'),(251,306,'S'),(251,310,'N'),(251,312,'N'),(251,314,'N'),(251,315,'N'),(251,316,'N'),(251,317,'N'),(251,318,'N'),(251,319,'N'),(251,320,'N'),(251,321,'N'),(251,322,'S'),(251,326,'N'),(251,328,'N'),(251,330,'N'),(251,331,'N'),(251,332,'N'),(251,333,'N'),(251,334,'N'),(251,335,'N'),(251,336,'N'),(251,337,'N'),(251,338,'S'),(251,342,'N'),(251,344,'N'),(251,346,'N'),(251,347,'N'),(251,348,'N'),(251,349,'N'),(251,350,'N'),(251,352,'N'),(251,353,'N'),(251,354,'N'),(251,355,'S'),(251,359,'N'),(251,361,'N'),(251,363,'N'),(251,364,'N'),(251,365,'N'),(251,366,'N'),(251,367,'N'),(251,369,'N'),(251,370,'N'),(251,371,'N'),(251,372,'S'),(251,376,'N'),(251,378,'N'),(251,380,'N'),(251,381,'N'),(251,382,'N'),(251,383,'N'),(251,384,'N'),(251,386,'N'),(251,387,'N'),(251,388,'N'),(251,389,'S'),(251,393,'N'),(251,395,'N'),(251,397,'N'),(251,398,'N'),(251,399,'N'),(251,400,'N'),(251,401,'N'),(251,403,'N'),(251,404,'N'),(251,405,'N'),(251,406,'S'),(251,410,'N'),(251,412,'N'),(251,414,'N'),(251,415,'N'),(251,416,'N'),(251,417,'N'),(251,418,'N'),(251,420,'N'),(251,421,'N'),(251,422,'N'),(251,423,'S'),(251,427,'N'),(251,429,'N'),(251,431,'N'),(251,432,'N'),(251,433,'N'),(251,434,'N'),(251,435,'N'),(251,437,'N'),(251,438,'N'),(251,439,'N'),(251,440,'S'),(251,444,'N'),(251,446,'N'),(251,448,'N'),(251,449,'N'),(251,450,'N'),(251,451,'N'),(251,452,'N'),(251,453,'N'),(251,455,'N'),(251,456,'N'),(251,457,'N'),(251,458,'S'),(251,462,'N'),(251,464,'N'),(251,466,'N'),(251,467,'N'),(251,468,'N'),(251,469,'N'),(251,470,'N'),(251,471,'N'),(251,474,'N'),(251,475,'N'),(251,476,'N'),(251,477,'S'),(251,481,'N'),(251,483,'N'),(251,485,'N'),(251,486,'N'),(251,487,'N'),(251,488,'N'),(251,489,'N'),(251,490,'N'),(251,494,'N'),(251,495,'N'),(251,496,'N'),(251,497,'S'),(251,501,'N'),(251,503,'N'),(251,505,'N'),(251,506,'N'),(251,507,'N'),(251,508,'N'),(251,509,'N'),(251,510,'N'),(251,514,'N'),(251,515,'N'),(251,516,'N'),(251,517,'S'),(251,521,'N'),(251,523,'N'),(251,525,'N'),(251,526,'N'),(251,527,'N'),(251,528,'N'),(251,529,'N'),(251,530,'N'),(251,531,'N'),(251,532,'N'),(251,533,'N'),(251,534,'S'),(251,538,'N'),(251,540,'N'),(251,542,'N'),(251,543,'N'),(251,544,'N'),(251,545,'N'),(251,546,'N'),(251,547,'N'),(251,552,'N'),(251,553,'N'),(251,554,'N'),(251,555,'S'),(251,559,'N'),(251,561,'N'),(251,563,'N'),(251,564,'N'),(251,565,'N'),(251,566,'N'),(251,567,'N'),(251,568,'N'),(251,574,'N'),(251,575,'N'),(251,576,'N'),(251,577,'S'),(251,581,'N'),(251,583,'N'),(251,585,'N'),(251,586,'N'),(251,587,'N'),(251,588,'N'),(251,589,'N'),(251,590,'N'),(251,596,'N'),(251,597,'N'),(251,598,'N'),(251,599,'N'),(251,600,'S'),(251,604,'N'),(251,606,'N'),(251,608,'N'),(251,609,'N'),(251,610,'N'),(251,611,'N'),(251,612,'N'),(251,613,'N'),(251,619,'N'),(251,620,'N'),(251,621,'N'),(251,622,'N'),(251,623,'N'),(251,624,'S'),(251,628,'N'),(251,630,'N'),(251,632,'N'),(251,633,'N'),(251,634,'N'),(251,635,'N'),(251,636,'N'),(251,637,'N'),(251,643,'N'),(251,644,'N'),(251,645,'N'),(251,646,'N'),(251,647,'N'),(251,648,'N'),(251,649,'S'),(251,653,'N'),(251,655,'N'),(251,657,'N'),(251,658,'N'),(251,659,'N'),(251,660,'N'),(251,661,'N'),(251,662,'N'),(251,668,'N'),(251,669,'N'),(251,670,'N'),(251,671,'N'),(251,672,'N'),(251,673,'N'),(251,674,'N'),(251,675,'S'),(251,679,'N'),(251,681,'N'),(251,683,'N'),(251,684,'N'),(251,685,'N'),(251,686,'N'),(251,687,'N'),(251,688,'N'),(251,694,'N'),(251,695,'N'),(251,696,'N'),(251,697,'N'),(251,699,'N'),(251,700,'N'),(251,701,'N'),(251,702,'S'),(251,706,'N'),(251,708,'N'),(251,710,'N'),(251,711,'N'),(251,712,'N'),(251,713,'N'),(251,714,'N'),(251,715,'N'),(251,721,'N'),(251,722,'N'),(251,723,'N'),(251,724,'N'),(251,727,'N'),(251,728,'N'),(251,729,'N'),(251,730,'S'),(251,734,'N'),(251,736,'N'),(251,738,'N'),(251,739,'N'),(251,740,'N'),(251,741,'N'),(251,742,'N'),(251,743,'N'),(251,749,'N'),(251,750,'N'),(251,751,'N'),(251,752,'N'),(251,755,'N'),(251,756,'N'),(251,757,'N'),(251,758,'N'),(251,759,'S'),(251,763,'N'),(251,765,'N'),(251,767,'N'),(251,768,'N'),(251,769,'N'),(251,770,'N'),(251,771,'N'),(251,772,'N'),(251,778,'N'),(251,779,'N'),(251,780,'N'),(251,781,'N'),(251,784,'N'),(251,785,'N'),(251,786,'N'),(251,787,'N'),(251,788,'N'),(251,789,'S'),(251,793,'N'),(251,795,'N'),(251,797,'N'),(251,798,'N'),(251,799,'N'),(251,800,'N'),(251,801,'N'),(251,802,'N'),(251,808,'N'),(251,809,'N'),(251,810,'N'),(251,811,'N'),(251,814,'N'),(251,815,'N'),(251,816,'N'),(251,817,'N'),(251,818,'N'),(251,819,'N'),(251,820,'S'),(251,824,'N'),(251,826,'N'),(251,828,'N'),(251,829,'N'),(251,830,'N'),(251,831,'N'),(251,832,'N'),(251,833,'N'),(251,839,'N'),(251,840,'N'),(251,841,'N'),(251,842,'N'),(251,845,'N'),(251,846,'N'),(251,847,'N'),(251,848,'N'),(251,849,'N'),(251,850,'N'),(251,851,'N'),(251,852,'S'),(251,856,'N'),(251,858,'N'),(251,860,'N'),(251,861,'N'),(251,862,'N'),(251,863,'N'),(251,864,'N'),(251,865,'N'),(251,871,'N'),(251,872,'N'),(251,873,'N'),(251,874,'N'),(251,877,'N'),(251,878,'N'),(251,879,'N'),(251,880,'N'),(251,882,'N'),(251,883,'N'),(251,884,'N'),(251,885,'S'),(251,889,'N'),(251,891,'N'),(251,893,'N'),(251,894,'N'),(251,895,'N'),(251,896,'N'),(251,897,'N'),(251,898,'N'),(251,904,'N'),(251,905,'N'),(251,906,'N'),(251,907,'N'),(251,910,'N'),(251,911,'N'),(251,912,'N'),(251,913,'N'),(251,916,'N'),(251,917,'N'),(251,918,'N'),(251,919,'S'),(251,923,'N'),(251,925,'N'),(251,927,'N'),(251,928,'N'),(251,929,'N'),(251,930,'N'),(251,931,'N'),(251,932,'N'),(251,938,'N'),(251,939,'N'),(251,940,'N'),(251,941,'N'),(251,944,'N'),(251,945,'N'),(251,946,'N'),(251,947,'N'),(251,950,'N'),(251,951,'N'),(251,952,'N'),(251,953,'N'),(251,954,'S'),(251,958,'N'),(251,960,'N'),(251,962,'N'),(251,963,'N'),(251,964,'N'),(251,965,'N'),(251,966,'N'),(251,967,'N'),(251,973,'N'),(251,974,'N'),(251,975,'N'),(251,976,'N'),(251,979,'N'),(251,980,'N'),(251,981,'N'),(251,982,'N'),(251,985,'N'),(251,986,'N'),(251,987,'N'),(251,988,'N'),(251,989,'N'),(251,990,'S'),(251,994,'N'),(251,996,'N'),(251,998,'N'),(251,999,'N'),(251,1000,'N'),(251,1001,'N'),(251,1002,'N'),(251,1003,'N'),(251,1009,'N'),(251,1010,'N'),(251,1011,'N'),(251,1012,'N'),(251,1015,'N'),(251,1016,'N'),(251,1017,'N'),(251,1018,'N'),(251,1021,'N'),(251,1022,'N'),(251,1023,'N'),(251,1024,'N'),(251,1025,'N'),(251,1026,'N'),(251,1027,'S'),(251,1031,'N'),(251,1033,'N'),(251,1035,'N'),(251,1036,'N'),(251,1037,'N'),(251,1038,'N'),(251,1039,'N'),(251,1040,'N'),(251,1046,'N'),(251,1047,'N'),(251,1048,'N'),(251,1049,'N'),(251,1052,'N'),(251,1053,'N'),(251,1054,'N'),(251,1055,'N'),(251,1058,'N'),(251,1059,'N'),(251,1060,'N'),(251,1061,'N'),(251,1062,'N'),(251,1063,'N'),(251,1064,'S'),(251,1068,'N'),(251,1070,'N'),(251,1072,'N'),(251,1073,'N'),(251,1074,'N'),(251,1075,'N'),(251,1076,'N'),(251,1077,'N'),(251,1083,'N'),(251,1084,'N'),(251,1085,'N'),(251,1086,'N'),(251,1089,'N'),(251,1090,'N'),(251,1091,'N'),(251,1092,'N'),(251,1095,'N'),(251,1096,'N'),(251,1097,'N'),(251,1098,'N'),(251,1099,'N'),(251,1100,'N'),(251,1101,'N'),(251,1102,'S'),(251,1104,'N'),(251,1106,'N'),(251,1108,'N'),(251,1110,'N'),(251,1111,'N'),(251,1112,'N'),(251,1113,'N'),(251,1114,'N'),(251,1115,'N'),(251,1121,'N'),(251,1122,'N'),(251,1123,'N'),(251,1124,'N'),(251,1127,'N'),(251,1128,'N'),(251,1129,'N'),(251,1130,'N'),(251,1133,'N'),(251,1134,'N'),(251,1135,'N'),(251,1136,'N'),(251,1137,'N'),(251,1138,'N'),(251,1139,'N'),(251,1140,'S'),(251,1142,'N'),(251,1144,'N'),(251,1146,'N'),(251,1148,'N'),(251,1149,'N'),(251,1150,'N'),(251,1151,'N'),(251,1152,'N'),(251,1153,'N'),(251,1159,'N'),(251,1160,'N'),(251,1161,'N'),(251,1162,'N'),(251,1165,'N'),(251,1166,'N'),(251,1167,'N'),(251,1168,'N'),(251,1171,'N'),(251,1172,'N'),(251,1173,'N'),(251,1174,'N'),(251,1175,'N'),(251,1176,'N'),(251,1177,'N'),(251,1178,'S'),(251,1180,'N'),(251,1181,'N'),(251,1183,'N'),(251,1185,'N'),(251,1186,'N'),(251,1187,'N'),(251,1188,'N'),(251,1189,'N'),(251,1190,'N'),(251,1196,'N'),(251,1197,'N'),(251,1198,'N'),(251,1199,'N'),(251,1202,'N'),(251,1203,'N'),(251,1204,'N'),(251,1205,'N'),(251,1208,'N'),(251,1209,'N'),(251,1210,'N'),(251,1211,'N'),(251,1212,'N'),(251,1213,'N'),(251,1214,'N'),(251,1215,'S'),(251,1217,'N'),(251,1218,'N'),(251,1220,'N'),(251,1222,'N'),(251,1223,'N'),(251,1224,'N'),(251,1225,'N'),(251,1226,'N'),(251,1227,'N'),(251,1233,'N'),(251,1234,'N'),(251,1235,'N'),(251,1236,'N'),(251,1239,'N'),(251,1240,'N'),(251,1241,'N'),(251,1242,'N'),(251,1245,'N'),(251,1246,'N'),(251,1247,'N'),(251,1248,'N'),(251,1249,'N'),(251,1250,'N'),(251,1251,'N'),(251,1252,'S'),(251,1254,'N'),(251,1255,'N'),(251,1257,'N'),(251,1259,'N'),(251,1260,'N'),(251,1261,'N'),(251,1262,'N'),(251,1263,'N'),(251,1264,'N'),(251,1270,'N'),(251,1271,'N'),(251,1272,'N'),(251,1273,'N'),(251,1276,'N'),(251,1277,'N'),(251,1278,'N'),(251,1279,'N'),(251,1282,'N'),(251,1283,'N'),(251,1284,'N'),(251,1285,'N'),(251,1286,'N'),(251,1287,'N'),(251,1288,'N'),(251,1289,'S'),(251,1291,'N'),(251,1292,'N'),(251,1294,'N'),(251,1296,'N'),(251,1297,'N'),(251,1298,'N'),(251,1299,'N'),(251,1300,'N'),(251,1301,'N'),(251,1307,'N'),(251,1308,'N'),(251,1309,'N'),(251,1310,'N'),(251,1313,'N'),(251,1314,'N'),(251,1315,'N'),(251,1316,'N'),(251,1319,'N'),(251,1320,'N'),(251,1321,'N'),(251,1322,'N'),(251,1324,'N'),(251,1325,'N'),(251,1326,'N'),(251,1327,'S'),(251,1329,'N'),(251,1330,'N'),(251,1332,'N'),(251,1334,'N'),(251,1335,'N'),(251,1336,'N'),(251,1337,'N'),(251,1338,'N'),(251,1339,'N'),(251,1345,'N'),(251,1346,'N'),(251,1347,'N'),(251,1348,'N'),(251,1351,'N'),(251,1352,'N'),(251,1353,'N'),(251,1354,'N'),(251,1357,'N'),(251,1358,'N'),(251,1359,'N'),(251,1360,'N'),(251,1363,'N'),(251,1364,'N'),(251,1365,'N'),(251,1366,'S'),(251,1368,'N'),(251,1369,'N'),(251,1371,'N'),(251,1373,'N'),(251,1374,'N'),(251,1375,'N'),(251,1376,'N'),(251,1377,'N'),(251,1378,'N'),(251,1384,'N'),(251,1385,'N'),(251,1386,'N'),(251,1387,'N'),(251,1390,'N'),(251,1391,'N'),(251,1392,'N'),(251,1393,'N'),(251,1396,'N'),(251,1397,'N'),(251,1398,'N'),(251,1399,'N'),(251,1403,'N'),(251,1404,'N'),(251,1405,'N'),(251,1406,'S'),(251,1408,'N'),(251,1409,'N'),(251,1411,'N'),(251,1413,'N'),(251,1414,'N'),(251,1415,'N'),(251,1416,'N'),(251,1417,'N'),(251,1418,'N'),(251,1424,'N'),(251,1425,'N'),(251,1426,'N'),(251,1427,'N'),(251,1430,'N'),(251,1431,'N'),(251,1432,'N'),(251,1433,'N'),(251,1436,'N'),(251,1437,'N'),(251,1438,'N'),(251,1439,'N'),(251,1443,'N'),(251,1444,'N'),(251,1445,'N'),(251,1446,'S'),(251,1448,'N'),(251,1449,'N'),(251,1451,'N'),(251,1453,'N'),(251,1454,'N'),(251,1455,'N'),(251,1456,'N'),(251,1457,'N'),(251,1458,'N'),(251,1464,'N'),(251,1465,'N'),(251,1466,'N'),(251,1467,'N'),(251,1470,'N'),(251,1471,'N'),(251,1472,'N'),(251,1473,'N'),(251,1476,'N'),(251,1477,'N'),(251,1478,'N'),(251,1479,'N'),(251,1483,'N'),(251,1484,'N'),(251,1485,'N'),(251,1486,'S'),(251,1488,'N'),(251,1489,'N'),(251,1491,'N'),(251,1493,'N'),(251,1494,'N'),(251,1495,'N'),(251,1496,'N'),(251,1497,'N'),(251,1498,'N'),(251,1504,'N'),(251,1505,'N'),(251,1506,'N'),(251,1507,'N'),(251,1510,'N'),(251,1511,'N'),(251,1512,'N'),(251,1513,'N'),(251,1516,'N'),(251,1517,'N'),(251,1518,'N'),(251,1519,'N'),(251,1523,'N'),(251,1524,'N'),(251,1525,'N'),(251,1526,'S'),(251,1528,'N'),(251,1529,'N'),(251,1531,'N'),(251,1533,'N'),(251,1534,'N'),(251,1535,'N'),(251,1536,'N'),(251,1537,'N'),(251,1538,'N'),(251,1542,'N'),(251,1543,'N'),(251,1544,'N'),(251,1545,'N'),(251,1546,'N'),(251,1547,'N'),(251,1548,'N'),(251,1549,'N'),(251,1550,'N'),(251,1551,'N'),(251,1552,'N'),(251,1553,'N'),(251,1554,'N'),(251,1555,'N'),(251,1556,'N'),(251,1557,'N'),(251,1558,'N'),(251,1559,'N'),(251,1561,'N'),(251,1562,'N'),(251,1564,'N'),(251,1565,'N'),(251,1566,'N'),(251,1567,'S'),(251,1569,'N'),(251,1570,'N'),(251,1571,'N'),(251,1573,'N'),(251,1574,'N'),(251,1575,'N'),(251,1576,'N'),(251,1577,'N'),(251,1578,'N'),(251,1582,'N'),(251,1583,'N'),(251,1584,'N'),(251,1585,'N'),(251,1586,'N'),(251,1587,'N'),(251,1588,'N'),(251,1589,'N'),(251,1590,'N'),(251,1591,'N'),(251,1592,'N'),(251,1593,'N'),(251,1594,'N'),(251,1595,'N'),(251,1596,'N'),(251,1597,'N'),(251,1598,'N'),(251,1599,'N'),(251,1601,'N'),(251,1602,'N'),(251,1604,'N'),(251,1605,'N'),(251,1606,'N'),(251,1607,'S'),(251,1609,'N'),(251,1610,'N'),(251,1611,'N'),(251,1612,'N'),(251,1613,'N'),(251,1614,'N'),(251,1615,'N'),(251,1616,'N'),(251,1617,'N'),(251,1621,'N'),(251,1622,'N'),(251,1623,'N'),(251,1624,'N'),(251,1625,'N'),(251,1626,'N'),(251,1627,'N'),(251,1628,'N'),(251,1629,'N'),(251,1630,'N'),(251,1631,'N'),(251,1632,'N'),(251,1633,'N'),(251,1634,'N'),(251,1635,'N'),(251,1636,'N'),(251,1637,'N'),(251,1638,'N'),(251,1640,'N'),(251,1641,'N'),(252,8,'S'),(252,23,'S'),(252,38,'S'),(252,53,'S'),(252,68,'S'),(252,83,'S'),(252,98,'S'),(252,113,'S'),(252,128,'S'),(252,143,'S'),(252,158,'S'),(252,173,'S'),(252,188,'S'),(252,203,'S'),(252,218,'S'),(252,233,'S'),(252,248,'S'),(252,263,'S'),(252,278,'S'),(252,294,'S'),(252,310,'S'),(252,326,'S'),(252,342,'S'),(252,359,'S'),(252,376,'S'),(252,393,'S'),(252,410,'S'),(252,427,'S'),(252,444,'S'),(252,462,'S'),(252,481,'S'),(252,501,'S'),(252,521,'S'),(252,538,'S'),(252,559,'S'),(252,581,'S'),(252,604,'S'),(252,628,'S'),(252,653,'S'),(252,679,'S'),(252,706,'S'),(252,734,'S'),(252,763,'S'),(252,793,'S'),(252,824,'S'),(252,856,'S'),(252,889,'S'),(252,923,'S'),(252,958,'S'),(252,994,'S'),(252,1031,'S'),(252,1068,'S'),(252,1106,'S'),(252,1144,'S'),(252,1181,'S'),(252,1218,'S'),(252,1255,'S'),(252,1292,'S'),(252,1330,'S'),(252,1369,'S'),(252,1409,'S'),(252,1449,'S'),(252,1489,'S'),(252,1529,'S'),(252,1570,'S'),(252,1610,'S'),(253,4,'S'),(253,19,'S'),(253,34,'S'),(253,49,'S'),(253,64,'S'),(253,79,'S'),(253,94,'S'),(253,109,'S'),(253,124,'S'),(253,139,'S'),(253,154,'S'),(253,169,'S'),(253,184,'S'),(253,199,'S'),(253,214,'S'),(253,229,'S'),(253,244,'S'),(253,259,'S'),(253,274,'S'),(253,290,'S'),(253,306,'S'),(253,322,'S'),(253,338,'S'),(253,355,'S'),(253,372,'S'),(253,389,'S'),(253,406,'S'),(253,423,'S'),(253,440,'S'),(253,458,'S'),(253,477,'S'),(253,497,'S'),(253,517,'S'),(253,534,'S'),(253,555,'S'),(253,577,'S'),(253,600,'S'),(253,624,'S'),(253,649,'S'),(253,675,'S'),(253,702,'S'),(253,730,'S'),(253,759,'S'),(253,789,'S'),(253,820,'S'),(253,852,'S'),(253,885,'S'),(253,919,'S'),(253,954,'S'),(253,990,'S'),(253,1027,'S'),(253,1064,'S'),(253,1102,'S'),(253,1140,'S'),(253,1178,'S'),(253,1215,'S'),(253,1252,'S'),(253,1289,'S'),(253,1327,'S'),(253,1366,'S'),(253,1406,'S'),(253,1446,'S'),(253,1486,'S'),(253,1526,'S'),(253,1567,'S'),(253,1607,'S'),(254,4,'S'),(254,19,'S'),(254,34,'S'),(254,49,'S'),(254,64,'S'),(254,79,'S'),(254,94,'S'),(254,109,'S'),(254,124,'S'),(254,139,'S'),(254,154,'S'),(254,169,'S'),(254,184,'S'),(254,199,'S'),(254,214,'S'),(254,229,'S'),(254,244,'S'),(254,259,'S'),(254,274,'S'),(254,290,'S'),(254,306,'S'),(254,322,'S'),(254,338,'S'),(254,355,'S'),(254,372,'S'),(254,389,'S'),(254,406,'S'),(254,423,'S'),(254,440,'S'),(254,458,'S'),(254,477,'S'),(254,497,'S'),(254,517,'S'),(254,534,'S'),(254,555,'S'),(254,577,'S'),(254,600,'S'),(254,624,'S'),(254,649,'S'),(254,675,'S'),(254,702,'S'),(254,730,'S'),(254,759,'S'),(254,789,'S'),(254,820,'S'),(254,852,'S'),(254,885,'S'),(254,919,'S'),(254,954,'S'),(254,990,'S'),(254,1027,'S'),(254,1064,'S'),(254,1102,'S'),(254,1140,'S'),(254,1178,'S'),(254,1215,'S'),(254,1252,'S'),(254,1289,'S'),(254,1327,'S'),(254,1366,'S'),(254,1406,'S'),(254,1446,'S'),(254,1486,'S'),(254,1526,'S'),(254,1567,'S'),(254,1607,'S'),(257,1,'N'),(257,2,'N'),(257,3,'N'),(257,4,'N'),(257,5,'S'),(257,8,'N'),(257,9,'N'),(257,10,'N'),(257,11,'N'),(257,12,'N'),(257,13,'N'),(257,14,'N'),(257,15,'N'),(257,16,'N'),(257,17,'N'),(257,18,'N'),(257,19,'N'),(257,20,'S'),(257,23,'N'),(257,24,'N'),(257,25,'N'),(257,26,'N'),(257,27,'N'),(257,28,'N'),(257,29,'N'),(257,30,'N'),(257,31,'N'),(257,32,'N'),(257,33,'N'),(257,34,'N'),(257,35,'S'),(257,38,'N'),(257,39,'N'),(257,40,'N'),(257,41,'N'),(257,42,'N'),(257,43,'N'),(257,44,'N'),(257,45,'N'),(257,46,'N'),(257,47,'N'),(257,48,'N'),(257,49,'N'),(257,50,'S'),(257,53,'N'),(257,54,'N'),(257,55,'N'),(257,56,'N'),(257,57,'N'),(257,58,'N'),(257,59,'N'),(257,60,'N'),(257,61,'N'),(257,62,'N'),(257,63,'N'),(257,64,'N'),(257,65,'S'),(257,68,'N'),(257,69,'N'),(257,70,'N'),(257,71,'N'),(257,72,'N'),(257,73,'N'),(257,74,'N'),(257,75,'N'),(257,76,'N'),(257,77,'N'),(257,78,'N'),(257,79,'N'),(257,80,'S'),(257,83,'N'),(257,84,'N'),(257,85,'N'),(257,86,'N'),(257,87,'N'),(257,88,'N'),(257,89,'N'),(257,90,'N'),(257,91,'N'),(257,92,'N'),(257,93,'N'),(257,94,'N'),(257,95,'S'),(257,98,'N'),(257,99,'N'),(257,100,'N'),(257,101,'N'),(257,102,'N'),(257,103,'N'),(257,104,'N'),(257,105,'N'),(257,106,'N'),(257,107,'N'),(257,108,'N'),(257,109,'N'),(257,110,'S'),(257,113,'N'),(257,114,'N'),(257,115,'N'),(257,116,'N'),(257,117,'N'),(257,118,'N'),(257,119,'N'),(257,120,'N'),(257,121,'N'),(257,122,'N'),(257,123,'N'),(257,124,'N'),(257,125,'S'),(257,128,'N'),(257,129,'N'),(257,130,'N'),(257,131,'N'),(257,132,'N'),(257,133,'N'),(257,134,'N'),(257,135,'N'),(257,136,'N'),(257,137,'N'),(257,138,'N'),(257,139,'N'),(257,140,'S'),(257,143,'N'),(257,144,'N'),(257,145,'N'),(257,146,'N'),(257,147,'N'),(257,148,'N'),(257,149,'N'),(257,150,'N'),(257,151,'N'),(257,152,'N'),(257,153,'N'),(257,154,'N'),(257,155,'S'),(257,158,'N'),(257,159,'N'),(257,160,'N'),(257,161,'N'),(257,162,'N'),(257,163,'N'),(257,164,'N'),(257,165,'N'),(257,166,'N'),(257,167,'N'),(257,168,'N'),(257,169,'N'),(257,170,'S'),(257,173,'N'),(257,174,'N'),(257,175,'N'),(257,176,'N'),(257,177,'N'),(257,178,'N'),(257,179,'N'),(257,180,'N'),(257,181,'N'),(257,182,'N'),(257,183,'N'),(257,184,'N'),(257,185,'S'),(257,188,'N'),(257,189,'N'),(257,190,'N'),(257,191,'N'),(257,192,'N'),(257,193,'N'),(257,194,'N'),(257,195,'N'),(257,196,'N'),(257,197,'N'),(257,198,'N'),(257,199,'N'),(257,200,'S'),(257,203,'N'),(257,204,'N'),(257,205,'N'),(257,206,'N'),(257,207,'N'),(257,208,'N'),(257,209,'N'),(257,210,'N'),(257,211,'N'),(257,212,'N'),(257,213,'N'),(257,214,'N'),(257,215,'S'),(257,218,'N'),(257,219,'N'),(257,220,'N'),(257,221,'N'),(257,222,'N'),(257,223,'N'),(257,224,'N'),(257,225,'N'),(257,226,'N'),(257,227,'N'),(257,228,'N'),(257,229,'N'),(257,230,'S'),(257,233,'N'),(257,234,'N'),(257,235,'N'),(257,236,'N'),(257,237,'N'),(257,238,'N'),(257,239,'N'),(257,240,'N'),(257,241,'N'),(257,242,'N'),(257,243,'N'),(257,244,'N'),(257,245,'S'),(257,248,'N'),(257,249,'N'),(257,250,'N'),(257,251,'N'),(257,252,'N'),(257,253,'N'),(257,254,'N'),(257,255,'N'),(257,256,'N'),(257,257,'N'),(257,258,'N'),(257,259,'N'),(257,260,'S'),(257,263,'N'),(257,264,'N'),(257,265,'N'),(257,266,'N'),(257,267,'N'),(257,268,'N'),(257,269,'N'),(257,270,'N'),(257,271,'N'),(257,272,'N'),(257,273,'N'),(257,274,'N'),(257,275,'S'),(257,278,'N'),(257,279,'N'),(257,280,'N'),(257,281,'N'),(257,282,'N'),(257,283,'N'),(257,284,'N'),(257,285,'N'),(257,286,'N'),(257,287,'N'),(257,288,'N'),(257,289,'N'),(257,290,'N'),(257,291,'S'),(257,294,'N'),(257,295,'N'),(257,296,'N'),(257,297,'N'),(257,298,'N'),(257,299,'N'),(257,300,'N'),(257,301,'N'),(257,303,'N'),(257,304,'N'),(257,305,'N'),(257,306,'N'),(257,307,'S'),(257,310,'N'),(257,311,'N'),(257,312,'N'),(257,313,'N'),(257,314,'N'),(257,315,'N'),(257,316,'N'),(257,317,'N'),(257,318,'N'),(257,319,'N'),(257,320,'N'),(257,321,'N'),(257,322,'N'),(257,323,'S'),(257,326,'N'),(257,327,'N'),(257,328,'N'),(257,329,'N'),(257,330,'N'),(257,331,'N'),(257,332,'N'),(257,333,'N'),(257,334,'N'),(257,335,'N'),(257,336,'N'),(257,337,'N'),(257,338,'N'),(257,339,'S'),(257,342,'N'),(257,343,'N'),(257,344,'N'),(257,345,'N'),(257,346,'N'),(257,347,'N'),(257,348,'N'),(257,349,'N'),(257,350,'N'),(257,352,'N'),(257,353,'N'),(257,354,'N'),(257,355,'N'),(257,356,'S'),(257,359,'N'),(257,360,'N'),(257,361,'N'),(257,362,'N'),(257,363,'N'),(257,364,'N'),(257,365,'N'),(257,366,'N'),(257,367,'N'),(257,369,'N'),(257,370,'N'),(257,371,'N'),(257,372,'N'),(257,373,'S'),(257,376,'N'),(257,377,'N'),(257,378,'N'),(257,379,'N'),(257,380,'N'),(257,381,'N'),(257,382,'N'),(257,383,'N'),(257,384,'N'),(257,386,'N'),(257,387,'N'),(257,388,'N'),(257,389,'N'),(257,390,'S'),(257,393,'N'),(257,394,'N'),(257,395,'N'),(257,396,'N'),(257,397,'N'),(257,398,'N'),(257,399,'N'),(257,400,'N'),(257,401,'N'),(257,403,'N'),(257,404,'N'),(257,405,'N'),(257,406,'N'),(257,407,'S'),(257,410,'N'),(257,411,'N'),(257,412,'N'),(257,413,'N'),(257,414,'N'),(257,415,'N'),(257,416,'N'),(257,417,'N'),(257,418,'N'),(257,420,'N'),(257,421,'N'),(257,422,'N'),(257,423,'N'),(257,424,'S'),(257,427,'N'),(257,428,'N'),(257,429,'N'),(257,430,'N'),(257,431,'N'),(257,432,'N'),(257,433,'N'),(257,434,'N'),(257,435,'N'),(257,437,'N'),(257,438,'N'),(257,439,'N'),(257,440,'N'),(257,441,'S'),(257,444,'N'),(257,445,'N'),(257,446,'N'),(257,447,'N'),(257,448,'N'),(257,449,'N'),(257,450,'N'),(257,451,'N'),(257,452,'N'),(257,453,'N'),(257,455,'N'),(257,456,'N'),(257,457,'N'),(257,458,'N'),(257,459,'S'),(257,462,'N'),(257,463,'N'),(257,464,'N'),(257,465,'N'),(257,466,'N'),(257,467,'N'),(257,468,'N'),(257,469,'N'),(257,470,'N'),(257,471,'N'),(257,473,'N'),(257,474,'N'),(257,475,'N'),(257,476,'N'),(257,477,'N'),(257,478,'S'),(257,481,'N'),(257,482,'N'),(257,483,'N'),(257,484,'N'),(257,485,'N'),(257,486,'N'),(257,487,'N'),(257,488,'N'),(257,489,'N'),(257,490,'N'),(257,492,'N'),(257,494,'N'),(257,495,'N'),(257,496,'N'),(257,497,'N'),(257,498,'S'),(257,501,'N'),(257,502,'N'),(257,503,'N'),(257,504,'N'),(257,505,'N'),(257,506,'N'),(257,507,'N'),(257,508,'N'),(257,509,'N'),(257,510,'N'),(257,512,'N'),(257,514,'N'),(257,515,'N'),(257,516,'N'),(257,517,'N'),(257,518,'S'),(257,521,'N'),(257,522,'N'),(257,523,'N'),(257,524,'N'),(257,525,'N'),(257,526,'N'),(257,527,'N'),(257,528,'N'),(257,529,'N'),(257,530,'N'),(257,531,'N'),(257,532,'N'),(257,533,'N'),(257,534,'N'),(257,535,'S'),(257,538,'N'),(257,539,'N'),(257,540,'N'),(257,541,'N'),(257,542,'N'),(257,543,'N'),(257,544,'N'),(257,545,'N'),(257,546,'N'),(257,547,'N'),(257,549,'N'),(257,552,'N'),(257,553,'N'),(257,554,'N'),(257,555,'N'),(257,556,'S'),(257,559,'N'),(257,560,'N'),(257,561,'N'),(257,562,'N'),(257,563,'N'),(257,564,'N'),(257,565,'N'),(257,566,'N'),(257,567,'N'),(257,568,'N'),(257,570,'N'),(257,574,'N'),(257,575,'N'),(257,576,'N'),(257,577,'N'),(257,578,'S'),(257,581,'N'),(257,582,'N'),(257,583,'N'),(257,584,'N'),(257,585,'N'),(257,586,'N'),(257,587,'N'),(257,588,'N'),(257,589,'N'),(257,590,'N'),(257,592,'N'),(257,597,'N'),(257,598,'N'),(257,599,'N'),(257,600,'N'),(257,601,'S'),(257,604,'N'),(257,605,'N'),(257,606,'N'),(257,607,'N'),(257,608,'N'),(257,609,'N'),(257,610,'N'),(257,611,'N'),(257,612,'N'),(257,613,'N'),(257,615,'N'),(257,621,'N'),(257,622,'N'),(257,623,'N'),(257,624,'N'),(257,625,'S'),(257,628,'N'),(257,629,'N'),(257,630,'N'),(257,631,'N'),(257,632,'N'),(257,633,'N'),(257,634,'N'),(257,635,'N'),(257,636,'N'),(257,637,'N'),(257,639,'N'),(257,646,'N'),(257,647,'N'),(257,648,'N'),(257,649,'N'),(257,650,'S'),(257,653,'N'),(257,654,'N'),(257,655,'N'),(257,656,'N'),(257,657,'N'),(257,658,'N'),(257,659,'N'),(257,660,'N'),(257,661,'N'),(257,662,'N'),(257,664,'N'),(257,672,'N'),(257,673,'N'),(257,674,'N'),(257,675,'N'),(257,676,'S'),(257,679,'N'),(257,680,'N'),(257,681,'N'),(257,682,'N'),(257,683,'N'),(257,684,'N'),(257,685,'N'),(257,686,'N'),(257,687,'N'),(257,688,'N'),(257,690,'N'),(257,699,'N'),(257,700,'N'),(257,701,'N'),(257,702,'N'),(257,703,'S'),(257,706,'N'),(257,707,'N'),(257,708,'N'),(257,709,'N'),(257,710,'N'),(257,711,'N'),(257,712,'N'),(257,713,'N'),(257,714,'N'),(257,715,'N'),(257,717,'N'),(257,727,'N'),(257,728,'N'),(257,729,'N'),(257,730,'N'),(257,731,'S'),(257,734,'N'),(257,735,'N'),(257,736,'N'),(257,737,'N'),(257,738,'N'),(257,739,'N'),(257,740,'N'),(257,741,'N'),(257,742,'N'),(257,743,'N'),(257,745,'N'),(257,756,'N'),(257,757,'N'),(257,758,'N'),(257,759,'N'),(257,760,'S'),(257,763,'N'),(257,764,'N'),(257,765,'N'),(257,766,'N'),(257,767,'N'),(257,768,'N'),(257,769,'N'),(257,770,'N'),(257,771,'N'),(257,772,'N'),(257,774,'N'),(257,786,'N'),(257,787,'N'),(257,788,'N'),(257,789,'N'),(257,790,'S'),(257,793,'N'),(257,794,'N'),(257,795,'N'),(257,796,'N'),(257,797,'N'),(257,798,'N'),(257,799,'N'),(257,800,'N'),(257,801,'N'),(257,802,'N'),(257,804,'N'),(257,817,'N'),(257,818,'N'),(257,819,'N'),(257,820,'N'),(257,821,'S'),(257,824,'N'),(257,825,'N'),(257,826,'N'),(257,827,'N'),(257,828,'N'),(257,829,'N'),(257,830,'N'),(257,831,'N'),(257,832,'N'),(257,833,'N'),(257,835,'N'),(257,849,'N'),(257,850,'N'),(257,851,'N'),(257,852,'N'),(257,853,'S'),(257,856,'N'),(257,857,'N'),(257,858,'N'),(257,859,'N'),(257,860,'N'),(257,861,'N'),(257,862,'N'),(257,863,'N'),(257,864,'N'),(257,865,'N'),(257,867,'N'),(257,882,'N'),(257,883,'N'),(257,884,'N'),(257,885,'N'),(257,886,'S'),(257,889,'N'),(257,890,'N'),(257,891,'N'),(257,892,'N'),(257,893,'N'),(257,894,'N'),(257,895,'N'),(257,896,'N'),(257,897,'N'),(257,898,'N'),(257,900,'N'),(257,916,'N'),(257,917,'N'),(257,918,'N'),(257,919,'N'),(257,920,'S'),(257,923,'N'),(257,924,'N'),(257,925,'N'),(257,926,'N'),(257,927,'N'),(257,928,'N'),(257,929,'N'),(257,930,'N'),(257,931,'N'),(257,932,'N'),(257,934,'N'),(257,951,'N'),(257,952,'N'),(257,953,'N'),(257,954,'N'),(257,955,'S'),(257,958,'N'),(257,959,'N'),(257,960,'N'),(257,961,'N'),(257,962,'N'),(257,963,'N'),(257,964,'N'),(257,965,'N'),(257,966,'N'),(257,967,'N'),(257,969,'N'),(257,987,'N'),(257,988,'N'),(257,989,'N'),(257,990,'N'),(257,991,'S'),(257,994,'N'),(257,995,'N'),(257,996,'N'),(257,997,'N'),(257,998,'N'),(257,999,'N'),(257,1000,'N'),(257,1001,'N'),(257,1002,'N'),(257,1003,'N'),(257,1005,'N'),(257,1024,'N'),(257,1025,'N'),(257,1026,'N'),(257,1027,'N'),(257,1028,'S'),(257,1031,'N'),(257,1032,'N'),(257,1033,'N'),(257,1034,'N'),(257,1035,'N'),(257,1036,'N'),(257,1037,'N'),(257,1038,'N'),(257,1039,'N'),(257,1040,'N'),(257,1042,'N'),(257,1061,'N'),(257,1062,'N'),(257,1063,'N'),(257,1064,'N'),(257,1065,'S'),(257,1068,'N'),(257,1069,'N'),(257,1070,'N'),(257,1071,'N'),(257,1072,'N'),(257,1073,'N'),(257,1074,'N'),(257,1075,'N'),(257,1076,'N'),(257,1077,'N'),(257,1079,'N'),(257,1099,'N'),(257,1100,'N'),(257,1101,'N'),(257,1102,'N'),(257,1103,'S'),(257,1104,'N'),(257,1106,'N'),(257,1107,'N'),(257,1108,'N'),(257,1109,'N'),(257,1110,'N'),(257,1111,'N'),(257,1112,'N'),(257,1113,'N'),(257,1114,'N'),(257,1115,'N'),(257,1117,'N'),(257,1137,'N'),(257,1138,'N'),(257,1139,'N'),(257,1140,'N'),(257,1141,'S'),(257,1142,'N'),(257,1144,'N'),(257,1145,'N'),(257,1146,'N'),(257,1147,'N'),(257,1148,'N'),(257,1149,'N'),(257,1150,'N'),(257,1151,'N'),(257,1152,'N'),(257,1153,'N'),(257,1155,'N'),(257,1175,'N'),(257,1176,'N'),(257,1177,'N'),(257,1178,'N'),(257,1179,'S'),(257,1180,'N'),(257,1181,'N'),(257,1182,'N'),(257,1183,'N'),(257,1184,'N'),(257,1185,'N'),(257,1186,'N'),(257,1187,'N'),(257,1188,'N'),(257,1189,'N'),(257,1190,'N'),(257,1192,'N'),(257,1212,'N'),(257,1213,'N'),(257,1214,'N'),(257,1215,'N'),(257,1216,'S'),(257,1217,'N'),(257,1218,'N'),(257,1219,'N'),(257,1220,'N'),(257,1221,'N'),(257,1222,'N'),(257,1223,'N'),(257,1224,'N'),(257,1225,'N'),(257,1226,'N'),(257,1227,'N'),(257,1229,'N'),(257,1251,'N'),(257,1252,'N'),(257,1253,'S'),(257,1254,'N'),(257,1255,'N'),(257,1257,'N'),(257,1258,'N'),(257,1260,'N'),(257,1261,'N'),(257,1262,'N'),(257,1264,'N'),(257,1268,'N'),(257,1269,'N'),(257,1274,'N'),(257,1275,'N'),(257,1280,'N'),(257,1281,'N'),(257,1282,'N'),(257,1283,'N'),(257,1284,'N'),(257,1285,'N'),(257,1288,'N'),(257,1289,'N'),(257,1290,'S'),(257,1291,'N'),(257,1292,'N'),(257,1294,'N'),(257,1295,'N'),(257,1297,'N'),(257,1298,'N'),(257,1299,'N'),(257,1301,'N'),(257,1305,'N'),(257,1306,'N'),(257,1311,'N'),(257,1312,'N'),(257,1317,'N'),(257,1318,'N'),(257,1319,'N'),(257,1320,'N'),(257,1321,'N'),(257,1322,'N'),(257,1326,'N'),(257,1327,'N'),(257,1328,'S'),(257,1329,'N'),(257,1330,'N'),(257,1332,'N'),(257,1333,'N'),(257,1335,'N'),(257,1336,'N'),(257,1337,'N'),(257,1339,'N'),(257,1343,'N'),(257,1344,'N'),(257,1349,'N'),(257,1350,'N'),(257,1355,'N'),(257,1356,'N'),(257,1357,'N'),(257,1358,'N'),(257,1359,'N'),(257,1360,'N'),(257,1365,'N'),(257,1366,'N'),(257,1367,'S'),(257,1368,'N'),(257,1369,'N'),(257,1371,'N'),(257,1372,'N'),(257,1374,'N'),(257,1375,'N'),(257,1376,'N'),(257,1378,'N'),(257,1382,'N'),(257,1383,'N'),(257,1388,'N'),(257,1389,'N'),(257,1394,'N'),(257,1395,'N'),(257,1396,'N'),(257,1397,'N'),(257,1398,'N'),(257,1399,'N'),(257,1405,'N'),(257,1406,'N'),(257,1407,'S'),(257,1408,'N'),(257,1409,'N'),(257,1411,'N'),(257,1412,'N'),(257,1414,'N'),(257,1415,'N'),(257,1416,'N'),(257,1418,'N'),(257,1422,'N'),(257,1423,'N'),(257,1428,'N'),(257,1429,'N'),(257,1434,'N'),(257,1435,'N'),(257,1436,'N'),(257,1437,'N'),(257,1438,'N'),(257,1439,'N'),(257,1445,'N'),(257,1446,'N'),(257,1447,'S'),(257,1448,'N'),(257,1449,'N'),(257,1451,'N'),(257,1452,'N'),(257,1454,'N'),(257,1455,'N'),(257,1456,'N'),(257,1458,'N'),(257,1462,'N'),(257,1463,'N'),(257,1468,'N'),(257,1469,'N'),(257,1474,'N'),(257,1475,'N'),(257,1476,'N'),(257,1477,'N'),(257,1478,'N'),(257,1479,'N'),(257,1485,'N'),(257,1486,'N'),(257,1487,'S'),(257,1488,'N'),(257,1489,'N'),(257,1491,'N'),(257,1494,'N'),(257,1495,'N'),(257,1496,'N'),(257,1498,'N'),(257,1502,'N'),(257,1503,'N'),(257,1508,'N'),(257,1509,'N'),(257,1514,'N'),(257,1515,'N'),(257,1516,'N'),(257,1517,'N'),(257,1518,'N'),(257,1519,'N'),(257,1525,'N'),(257,1526,'N'),(257,1527,'S'),(257,1528,'N'),(257,1529,'N'),(257,1531,'N'),(257,1534,'N'),(257,1535,'N'),(257,1536,'N'),(257,1538,'N'),(257,1542,'N'),(257,1543,'N'),(257,1548,'N'),(257,1549,'N'),(257,1554,'N'),(257,1555,'N'),(257,1556,'N'),(257,1557,'N'),(257,1558,'N'),(257,1559,'N'),(257,1566,'N'),(257,1567,'N'),(257,1568,'S'),(257,1569,'N'),(257,1570,'N'),(257,1571,'N'),(257,1574,'N'),(257,1575,'N'),(257,1576,'N'),(257,1578,'N'),(257,1582,'N'),(257,1583,'N'),(257,1588,'N'),(257,1589,'N'),(257,1594,'N'),(257,1595,'N'),(257,1596,'N'),(257,1597,'N'),(257,1598,'N'),(257,1599,'N'),(257,1606,'N'),(257,1607,'N'),(257,1608,'S'),(257,1609,'N'),(257,1610,'N'),(257,1611,'N'),(257,1613,'N'),(257,1614,'N'),(257,1615,'N'),(257,1617,'N'),(257,1621,'N'),(257,1622,'N'),(257,1627,'N'),(257,1628,'N'),(257,1633,'N'),(257,1634,'N'),(257,1635,'N'),(257,1636,'N'),(257,1637,'N'),(257,1638,'N'),(257,1640,'N'),(257,1641,'N'),(275,8,'S'),(275,23,'S'),(275,38,'S'),(275,53,'S'),(275,68,'S'),(275,83,'S'),(275,98,'S'),(275,113,'S'),(275,128,'S'),(275,143,'S'),(275,158,'S'),(275,173,'S'),(275,188,'S'),(275,203,'S'),(275,218,'S'),(275,233,'S'),(275,248,'S'),(275,263,'S'),(275,278,'S'),(275,294,'S'),(275,310,'S'),(275,326,'S'),(275,342,'S'),(275,359,'S'),(275,376,'S'),(275,393,'S'),(275,410,'S'),(275,427,'S'),(275,444,'S'),(275,462,'S'),(275,481,'S'),(275,501,'S'),(275,521,'S'),(275,538,'S'),(275,559,'S'),(275,581,'S'),(275,604,'S'),(275,628,'S'),(275,653,'S'),(275,679,'S'),(275,706,'S'),(275,734,'S'),(275,763,'S'),(275,793,'S'),(275,824,'S'),(275,856,'S'),(275,889,'S'),(275,923,'S'),(275,958,'S'),(275,994,'S'),(275,1031,'S'),(275,1068,'S'),(275,1106,'S'),(275,1144,'S'),(275,1181,'S'),(275,1218,'S'),(275,1255,'S'),(275,1292,'S'),(275,1330,'S'),(275,1369,'S'),(275,1409,'S'),(275,1449,'S'),(275,1489,'S'),(275,1529,'S'),(275,1570,'S'),(275,1610,'S'),(276,1,'N'),(276,2,'N'),(276,3,'N'),(276,4,'N'),(276,5,'S'),(276,8,'N'),(276,9,'N'),(276,10,'N'),(276,11,'N'),(276,12,'N'),(276,13,'N'),(276,14,'N'),(276,15,'N'),(276,16,'N'),(276,17,'N'),(276,18,'N'),(276,19,'N'),(276,20,'S'),(276,23,'N'),(276,24,'N'),(276,25,'N'),(276,26,'N'),(276,27,'N'),(276,28,'N'),(276,29,'N'),(276,30,'N'),(276,31,'N'),(276,32,'N'),(276,33,'N'),(276,34,'N'),(276,35,'S'),(276,38,'N'),(276,39,'N'),(276,40,'N'),(276,41,'N'),(276,42,'N'),(276,43,'N'),(276,44,'N'),(276,45,'N'),(276,46,'N'),(276,47,'N'),(276,48,'N'),(276,49,'N'),(276,50,'S'),(276,53,'N'),(276,54,'N'),(276,55,'N'),(276,56,'N'),(276,57,'N'),(276,58,'N'),(276,59,'N'),(276,60,'N'),(276,61,'N'),(276,62,'N'),(276,63,'N'),(276,64,'N'),(276,65,'S'),(276,68,'N'),(276,69,'N'),(276,70,'N'),(276,71,'N'),(276,72,'N'),(276,73,'N'),(276,74,'N'),(276,75,'N'),(276,76,'N'),(276,77,'N'),(276,78,'N'),(276,79,'N'),(276,80,'S'),(276,83,'N'),(276,84,'N'),(276,85,'N'),(276,86,'N'),(276,87,'N'),(276,88,'N'),(276,89,'N'),(276,90,'N'),(276,91,'N'),(276,92,'N'),(276,93,'N'),(276,94,'N'),(276,95,'S'),(276,98,'N'),(276,99,'N'),(276,100,'N'),(276,101,'N'),(276,102,'N'),(276,103,'N'),(276,104,'N'),(276,105,'N'),(276,106,'N'),(276,107,'N'),(276,108,'N'),(276,109,'N'),(276,110,'S'),(276,113,'N'),(276,114,'N'),(276,115,'N'),(276,116,'N'),(276,117,'N'),(276,118,'N'),(276,119,'N'),(276,120,'N'),(276,121,'N'),(276,122,'N'),(276,123,'N'),(276,124,'N'),(276,125,'S'),(276,128,'N'),(276,129,'N'),(276,130,'N'),(276,131,'N'),(276,132,'N'),(276,133,'N'),(276,134,'N'),(276,135,'N'),(276,136,'N'),(276,137,'N'),(276,138,'N'),(276,139,'N'),(276,140,'S'),(276,143,'N'),(276,144,'N'),(276,145,'N'),(276,146,'N'),(276,147,'N'),(276,148,'N'),(276,149,'N'),(276,150,'N'),(276,151,'N'),(276,152,'N'),(276,153,'N'),(276,154,'N'),(276,155,'S'),(276,158,'N'),(276,159,'N'),(276,160,'N'),(276,161,'N'),(276,162,'N'),(276,163,'N'),(276,164,'N'),(276,165,'N'),(276,166,'N'),(276,167,'N'),(276,168,'N'),(276,169,'N'),(276,170,'S'),(276,173,'N'),(276,174,'N'),(276,175,'N'),(276,176,'N'),(276,177,'N'),(276,178,'N'),(276,179,'N'),(276,180,'N'),(276,181,'N'),(276,182,'N'),(276,183,'N'),(276,184,'N'),(276,185,'S'),(276,188,'N'),(276,189,'N'),(276,190,'N'),(276,191,'N'),(276,192,'N'),(276,193,'N'),(276,194,'N'),(276,195,'N'),(276,196,'N'),(276,197,'N'),(276,198,'N'),(276,199,'N'),(276,200,'S'),(276,203,'N'),(276,204,'N'),(276,205,'N'),(276,206,'N'),(276,207,'N'),(276,208,'N'),(276,209,'N'),(276,210,'N'),(276,211,'N'),(276,212,'N'),(276,213,'N'),(276,214,'N'),(276,215,'S'),(276,218,'N'),(276,219,'N'),(276,220,'N'),(276,221,'N'),(276,222,'N'),(276,223,'N'),(276,224,'N'),(276,225,'N'),(276,226,'N'),(276,227,'N'),(276,228,'N'),(276,229,'N'),(276,230,'S'),(276,233,'N'),(276,234,'N'),(276,235,'N'),(276,236,'N'),(276,237,'N'),(276,238,'N'),(276,239,'N'),(276,240,'N'),(276,241,'N'),(276,242,'N'),(276,243,'N'),(276,244,'N'),(276,245,'S'),(276,248,'N'),(276,249,'N'),(276,250,'N'),(276,251,'N'),(276,252,'N'),(276,253,'N'),(276,254,'N'),(276,255,'N'),(276,256,'N'),(276,257,'N'),(276,258,'N'),(276,259,'N'),(276,260,'S'),(276,263,'N'),(276,264,'N'),(276,265,'N'),(276,266,'N'),(276,267,'N'),(276,268,'N'),(276,269,'N'),(276,270,'N'),(276,271,'N'),(276,272,'N'),(276,273,'N'),(276,274,'N'),(276,275,'S'),(276,278,'N'),(276,279,'N'),(276,280,'N'),(276,281,'N'),(276,282,'N'),(276,283,'N'),(276,284,'N'),(276,285,'N'),(276,286,'N'),(276,287,'N'),(276,288,'N'),(276,289,'N'),(276,290,'N'),(276,291,'S'),(276,294,'N'),(276,295,'N'),(276,296,'N'),(276,297,'N'),(276,298,'N'),(276,299,'N'),(276,300,'N'),(276,301,'N'),(276,303,'N'),(276,304,'N'),(276,305,'N'),(276,306,'N'),(276,307,'S'),(276,310,'N'),(276,311,'N'),(276,312,'N'),(276,313,'N'),(276,314,'N'),(276,315,'N'),(276,316,'N'),(276,317,'N'),(276,318,'N'),(276,319,'N'),(276,320,'N'),(276,321,'N'),(276,322,'N'),(276,323,'S'),(276,326,'N'),(276,327,'N'),(276,328,'N'),(276,329,'N'),(276,330,'N'),(276,331,'N'),(276,332,'N'),(276,333,'N'),(276,334,'N'),(276,335,'N'),(276,336,'N'),(276,337,'N'),(276,338,'N'),(276,339,'S'),(276,342,'N'),(276,343,'N'),(276,344,'N'),(276,345,'N'),(276,346,'N'),(276,347,'N'),(276,348,'N'),(276,349,'N'),(276,350,'N'),(276,352,'N'),(276,353,'N'),(276,354,'N'),(276,355,'N'),(276,356,'S'),(276,359,'N'),(276,360,'N'),(276,361,'N'),(276,362,'N'),(276,363,'N'),(276,364,'N'),(276,365,'N'),(276,366,'N'),(276,367,'N'),(276,369,'N'),(276,370,'N'),(276,371,'N'),(276,372,'N'),(276,373,'S'),(276,376,'N'),(276,377,'N'),(276,378,'N'),(276,379,'N'),(276,380,'N'),(276,381,'N'),(276,382,'N'),(276,383,'N'),(276,384,'N'),(276,386,'N'),(276,387,'N'),(276,388,'N'),(276,389,'N'),(276,390,'S'),(276,393,'N'),(276,394,'N'),(276,395,'N'),(276,396,'N'),(276,397,'N'),(276,398,'N'),(276,399,'N'),(276,400,'N'),(276,401,'N'),(276,403,'N'),(276,404,'N'),(276,405,'N'),(276,406,'N'),(276,407,'S'),(276,410,'N'),(276,411,'N'),(276,412,'N'),(276,413,'N'),(276,414,'N'),(276,415,'N'),(276,416,'N'),(276,417,'N'),(276,418,'N'),(276,420,'N'),(276,421,'N'),(276,422,'N'),(276,423,'N'),(276,424,'S'),(276,427,'N'),(276,428,'N'),(276,429,'N'),(276,430,'N'),(276,431,'N'),(276,432,'N'),(276,433,'N'),(276,434,'N'),(276,435,'N'),(276,437,'N'),(276,438,'N'),(276,439,'N'),(276,440,'N'),(276,441,'S'),(276,444,'N'),(276,445,'N'),(276,446,'N'),(276,447,'N'),(276,448,'N'),(276,449,'N'),(276,450,'N'),(276,451,'N'),(276,452,'N'),(276,453,'N'),(276,454,'N'),(276,455,'N'),(276,456,'N'),(276,457,'N'),(276,458,'N'),(276,459,'S'),(276,462,'N'),(276,463,'N'),(276,464,'N'),(276,465,'N'),(276,466,'N'),(276,467,'N'),(276,468,'N'),(276,469,'N'),(276,470,'N'),(276,471,'N'),(276,472,'N'),(276,474,'N'),(276,475,'N'),(276,476,'N'),(276,477,'N'),(276,478,'S'),(276,481,'N'),(276,482,'N'),(276,483,'N'),(276,484,'N'),(276,485,'N'),(276,486,'N'),(276,487,'N'),(276,488,'N'),(276,489,'N'),(276,490,'N'),(276,491,'N'),(276,494,'N'),(276,495,'N'),(276,496,'N'),(276,497,'N'),(276,498,'S'),(276,501,'N'),(276,502,'N'),(276,503,'N'),(276,504,'N'),(276,505,'N'),(276,506,'N'),(276,507,'N'),(276,508,'N'),(276,509,'N'),(276,510,'N'),(276,511,'N'),(276,514,'N'),(276,515,'N'),(276,516,'N'),(276,517,'N'),(276,518,'S'),(276,521,'N'),(276,522,'N'),(276,523,'N'),(276,524,'N'),(276,525,'N'),(276,526,'N'),(276,527,'N'),(276,528,'N'),(276,529,'N'),(276,530,'N'),(276,531,'N'),(276,532,'N'),(276,533,'N'),(276,534,'N'),(276,535,'S'),(276,538,'N'),(276,539,'N'),(276,540,'N'),(276,541,'N'),(276,542,'N'),(276,543,'N'),(276,544,'N'),(276,545,'N'),(276,546,'N'),(276,547,'N'),(276,548,'N'),(276,552,'N'),(276,553,'N'),(276,554,'N'),(276,555,'N'),(276,556,'S'),(276,559,'N'),(276,560,'N'),(276,561,'N'),(276,562,'N'),(276,563,'N'),(276,564,'N'),(276,565,'N'),(276,566,'N'),(276,567,'N'),(276,568,'N'),(276,569,'N'),(276,574,'N'),(276,575,'N'),(276,576,'N'),(276,577,'N'),(276,578,'S'),(276,581,'N'),(276,582,'N'),(276,583,'N'),(276,584,'N'),(276,585,'N'),(276,586,'N'),(276,587,'N'),(276,588,'N'),(276,589,'N'),(276,590,'N'),(276,591,'N'),(276,597,'N'),(276,598,'N'),(276,599,'N'),(276,600,'N'),(276,601,'S'),(276,604,'N'),(276,605,'N'),(276,606,'N'),(276,607,'N'),(276,608,'N'),(276,609,'N'),(276,610,'N'),(276,611,'N'),(276,612,'N'),(276,613,'N'),(276,614,'N'),(276,621,'N'),(276,622,'N'),(276,623,'N'),(276,624,'N'),(276,625,'S'),(276,628,'N'),(276,629,'N'),(276,630,'N'),(276,631,'N'),(276,632,'N'),(276,633,'N'),(276,634,'N'),(276,635,'N'),(276,636,'N'),(276,637,'N'),(276,638,'N'),(276,646,'N'),(276,647,'N'),(276,648,'N'),(276,649,'N'),(276,650,'S'),(276,653,'N'),(276,654,'N'),(276,655,'N'),(276,656,'N'),(276,657,'N'),(276,658,'N'),(276,659,'N'),(276,660,'N'),(276,661,'N'),(276,662,'N'),(276,663,'N'),(276,672,'N'),(276,673,'N'),(276,674,'N'),(276,675,'N'),(276,676,'S'),(276,679,'N'),(276,680,'N'),(276,681,'N'),(276,682,'N'),(276,683,'N'),(276,684,'N'),(276,685,'N'),(276,686,'N'),(276,687,'N'),(276,688,'N'),(276,689,'N'),(276,699,'N'),(276,700,'N'),(276,701,'N'),(276,702,'N'),(276,703,'S'),(276,706,'N'),(276,707,'N'),(276,708,'N'),(276,709,'N'),(276,710,'N'),(276,711,'N'),(276,712,'N'),(276,713,'N'),(276,714,'N'),(276,715,'N'),(276,716,'N'),(276,727,'N'),(276,728,'N'),(276,729,'N'),(276,730,'N'),(276,731,'S'),(276,734,'N'),(276,735,'N'),(276,736,'N'),(276,737,'N'),(276,738,'N'),(276,739,'N'),(276,740,'N'),(276,741,'N'),(276,742,'N'),(276,743,'N'),(276,744,'N'),(276,756,'N'),(276,757,'N'),(276,758,'N'),(276,759,'N'),(276,760,'S'),(276,763,'N'),(276,764,'N'),(276,765,'N'),(276,766,'N'),(276,767,'N'),(276,768,'N'),(276,769,'N'),(276,770,'N'),(276,771,'N'),(276,772,'N'),(276,773,'N'),(276,786,'N'),(276,787,'N'),(276,788,'N'),(276,789,'N'),(276,790,'S'),(276,793,'N'),(276,794,'N'),(276,795,'N'),(276,796,'N'),(276,797,'N'),(276,798,'N'),(276,799,'N'),(276,800,'N'),(276,801,'N'),(276,802,'N'),(276,803,'N'),(276,817,'N'),(276,818,'N'),(276,819,'N'),(276,820,'N'),(276,821,'S'),(276,824,'N'),(276,825,'N'),(276,826,'N'),(276,827,'N'),(276,828,'N'),(276,829,'N'),(276,830,'N'),(276,831,'N'),(276,832,'N'),(276,833,'N'),(276,834,'N'),(276,849,'N'),(276,850,'N'),(276,851,'N'),(276,852,'N'),(276,853,'S'),(276,856,'N'),(276,857,'N'),(276,858,'N'),(276,859,'N'),(276,860,'N'),(276,861,'N'),(276,862,'N'),(276,863,'N'),(276,864,'N'),(276,865,'N'),(276,866,'N'),(276,882,'N'),(276,883,'N'),(276,884,'N'),(276,885,'N'),(276,886,'S'),(276,889,'N'),(276,890,'N'),(276,891,'N'),(276,892,'N'),(276,893,'N'),(276,894,'N'),(276,895,'N'),(276,896,'N'),(276,897,'N'),(276,898,'N'),(276,899,'N'),(276,916,'N'),(276,917,'N'),(276,918,'N'),(276,919,'N'),(276,920,'S'),(276,923,'N'),(276,924,'N'),(276,925,'N'),(276,926,'N'),(276,927,'N'),(276,928,'N'),(276,929,'N'),(276,930,'N'),(276,931,'N'),(276,932,'N'),(276,933,'N'),(276,951,'N'),(276,952,'N'),(276,953,'N'),(276,954,'N'),(276,955,'S'),(276,958,'N'),(276,959,'N'),(276,960,'N'),(276,961,'N'),(276,962,'N'),(276,963,'N'),(276,964,'N'),(276,965,'N'),(276,966,'N'),(276,967,'N'),(276,968,'N'),(276,987,'N'),(276,988,'N'),(276,989,'N'),(276,990,'N'),(276,991,'S'),(276,994,'N'),(276,995,'N'),(276,996,'N'),(276,997,'N'),(276,998,'N'),(276,999,'N'),(276,1000,'N'),(276,1001,'N'),(276,1002,'N'),(276,1003,'N'),(276,1004,'N'),(276,1024,'N'),(276,1025,'N'),(276,1026,'N'),(276,1027,'N'),(276,1028,'S'),(276,1031,'N'),(276,1032,'N'),(276,1033,'N'),(276,1034,'N'),(276,1035,'N'),(276,1036,'N'),(276,1037,'N'),(276,1038,'N'),(276,1039,'N'),(276,1040,'N'),(276,1041,'N'),(276,1061,'N'),(276,1062,'N'),(276,1063,'N'),(276,1064,'N'),(276,1065,'S'),(276,1068,'N'),(276,1069,'N'),(276,1070,'N'),(276,1071,'N'),(276,1072,'N'),(276,1073,'N'),(276,1074,'N'),(276,1075,'N'),(276,1076,'N'),(276,1077,'N'),(276,1078,'N'),(276,1099,'N'),(276,1100,'N'),(276,1101,'N'),(276,1102,'N'),(276,1103,'S'),(276,1104,'N'),(276,1106,'N'),(276,1107,'N'),(276,1108,'N'),(276,1109,'N'),(276,1110,'N'),(276,1111,'N'),(276,1112,'N'),(276,1113,'N'),(276,1114,'N'),(276,1115,'N'),(276,1116,'N'),(276,1137,'N'),(276,1138,'N'),(276,1139,'N'),(276,1140,'N'),(276,1141,'S'),(276,1142,'N'),(276,1144,'N'),(276,1145,'N'),(276,1146,'N'),(276,1147,'N'),(276,1148,'N'),(276,1149,'N'),(276,1150,'N'),(276,1151,'N'),(276,1152,'N'),(276,1153,'N'),(276,1154,'N'),(276,1175,'N'),(276,1176,'N'),(276,1177,'N'),(276,1178,'N'),(276,1179,'S'),(276,1180,'N'),(276,1181,'N'),(276,1182,'N'),(276,1183,'N'),(276,1184,'N'),(276,1185,'N'),(276,1186,'N'),(276,1187,'N'),(276,1188,'N'),(276,1189,'N'),(276,1190,'N'),(276,1191,'N'),(276,1212,'N'),(276,1213,'N'),(276,1214,'N'),(276,1215,'N'),(276,1216,'S'),(276,1217,'N'),(276,1218,'N'),(276,1219,'N'),(276,1220,'N'),(276,1221,'N'),(276,1222,'N'),(276,1223,'N'),(276,1224,'N'),(276,1225,'N'),(276,1226,'N'),(276,1227,'N'),(276,1228,'N'),(276,1249,'N'),(276,1250,'N'),(276,1251,'N'),(276,1252,'N'),(276,1253,'S'),(276,1254,'N'),(276,1255,'N'),(276,1256,'N'),(276,1257,'N'),(276,1258,'N'),(276,1259,'N'),(276,1260,'N'),(276,1261,'N'),(276,1262,'N'),(276,1263,'N'),(276,1264,'N'),(276,1265,'N'),(276,1286,'N'),(276,1287,'N'),(276,1288,'N'),(276,1289,'N'),(276,1290,'S'),(276,1291,'N'),(276,1292,'N'),(276,1293,'N'),(276,1294,'N'),(276,1295,'N'),(276,1296,'N'),(276,1297,'N'),(276,1298,'N'),(276,1299,'N'),(276,1300,'N'),(276,1301,'N'),(276,1302,'N'),(276,1324,'N'),(276,1325,'N'),(276,1326,'N'),(276,1327,'N'),(276,1328,'S'),(276,1329,'N'),(276,1330,'N'),(276,1331,'N'),(276,1332,'N'),(276,1333,'N'),(276,1334,'N'),(276,1335,'N'),(276,1336,'N'),(276,1337,'N'),(276,1338,'N'),(276,1339,'N'),(276,1340,'N'),(276,1363,'N'),(276,1364,'N'),(276,1365,'N'),(276,1366,'N'),(276,1367,'S'),(276,1368,'N'),(276,1369,'N'),(276,1370,'N'),(276,1371,'N'),(276,1372,'N'),(276,1373,'N'),(276,1374,'N'),(276,1375,'N'),(276,1376,'N'),(276,1377,'N'),(276,1378,'N'),(276,1379,'N'),(276,1403,'N'),(276,1404,'N'),(276,1405,'N'),(276,1406,'N'),(276,1407,'S'),(276,1408,'N'),(276,1409,'N'),(276,1410,'N'),(276,1411,'N'),(276,1412,'N'),(276,1413,'N'),(276,1414,'N'),(276,1415,'N'),(276,1416,'N'),(276,1417,'N'),(276,1418,'N'),(276,1419,'N'),(276,1443,'N'),(276,1444,'N'),(276,1445,'N'),(276,1446,'N'),(276,1447,'S'),(276,1448,'N'),(276,1449,'N'),(276,1450,'N'),(276,1451,'N'),(276,1452,'N'),(276,1453,'N'),(276,1454,'N'),(276,1455,'N'),(276,1456,'N'),(276,1457,'N'),(276,1458,'N'),(276,1459,'N'),(276,1483,'N'),(276,1484,'N'),(276,1485,'N'),(276,1486,'N'),(276,1487,'S'),(276,1488,'N'),(276,1489,'N'),(276,1490,'N'),(276,1491,'N'),(276,1492,'N'),(276,1493,'N'),(276,1494,'N'),(276,1495,'N'),(276,1496,'N'),(276,1497,'N'),(276,1498,'N'),(276,1499,'N'),(276,1523,'N'),(276,1524,'N'),(276,1525,'N'),(276,1526,'N'),(276,1527,'S'),(276,1528,'N'),(276,1529,'N'),(276,1531,'N'),(276,1533,'N'),(276,1534,'N'),(276,1535,'N'),(276,1536,'N'),(276,1537,'N'),(276,1538,'N'),(276,1539,'N'),(276,1564,'N'),(276,1565,'N'),(276,1566,'N'),(276,1567,'N'),(276,1568,'S'),(276,1569,'N'),(276,1570,'N'),(276,1571,'N'),(276,1573,'N'),(276,1574,'N'),(276,1575,'N'),(276,1576,'N'),(276,1577,'N'),(276,1578,'N'),(276,1579,'N'),(276,1604,'N'),(276,1605,'N'),(276,1606,'N'),(276,1607,'N'),(276,1608,'S'),(276,1609,'N'),(276,1610,'N'),(276,1611,'N'),(276,1612,'N'),(276,1613,'N'),(276,1614,'N'),(276,1615,'N'),(276,1616,'N'),(276,1617,'N'),(276,1618,'N'),(277,5,'S'),(277,20,'S'),(277,35,'S'),(277,50,'S'),(277,65,'S'),(277,80,'S'),(277,95,'S'),(277,110,'S'),(277,125,'S'),(277,140,'S'),(277,155,'S'),(277,170,'S'),(277,185,'S'),(277,200,'S'),(277,215,'S'),(277,230,'S'),(277,245,'S'),(277,260,'S'),(277,275,'S'),(277,291,'S'),(277,307,'S'),(277,323,'S'),(277,339,'S'),(277,356,'S'),(277,373,'S'),(277,390,'S'),(277,407,'S'),(277,424,'S'),(277,441,'S'),(277,459,'S'),(277,478,'S'),(277,498,'S'),(277,518,'S'),(277,535,'S'),(277,556,'S'),(277,578,'S'),(277,601,'S'),(277,625,'S'),(277,650,'S'),(277,676,'S'),(277,703,'S'),(277,731,'S'),(277,760,'S'),(277,790,'S'),(277,821,'S'),(277,853,'S'),(277,886,'S'),(277,920,'S'),(277,955,'S'),(277,991,'S'),(277,1028,'S'),(277,1065,'S'),(277,1103,'S'),(277,1141,'S'),(277,1179,'S'),(277,1216,'S'),(277,1253,'S'),(277,1290,'S'),(277,1328,'S'),(277,1367,'S'),(277,1407,'S'),(277,1447,'S'),(277,1487,'S'),(277,1527,'S'),(277,1568,'S'),(277,1608,'S'),(282,286,'S'),(282,318,'S'),(282,334,'S'),(282,350,'S'),(282,367,'S'),(282,384,'S'),(282,401,'S'),(282,418,'S'),(282,435,'S'),(282,452,'S'),(282,470,'S'),(282,489,'S'),(282,509,'S'),(282,529,'S'),(282,546,'S'),(282,567,'S'),(282,589,'S'),(282,612,'S'),(282,636,'S'),(282,661,'S'),(282,687,'S'),(282,714,'S'),(282,742,'S'),(282,771,'S'),(282,801,'S'),(282,832,'S'),(282,864,'S'),(282,897,'S'),(282,931,'S'),(282,966,'S'),(282,1002,'S'),(282,1039,'S'),(282,1076,'S'),(282,1114,'S'),(282,1152,'S'),(282,1189,'S'),(282,1226,'S'),(282,1263,'S'),(282,1300,'S'),(282,1338,'S'),(282,1377,'S'),(282,1417,'S'),(282,1457,'S'),(282,1497,'S'),(282,1537,'S'),(282,1577,'S'),(282,1616,'S'),(283,1,'N'),(283,2,'N'),(283,3,'N'),(283,4,'N'),(283,5,'S'),(283,8,'N'),(283,9,'N'),(283,10,'N'),(283,11,'N'),(283,12,'N'),(283,13,'N'),(283,14,'N'),(283,15,'N'),(283,16,'N'),(283,17,'N'),(283,18,'N'),(283,19,'N'),(283,20,'S'),(283,23,'N'),(283,24,'N'),(283,25,'N'),(283,26,'N'),(283,27,'N'),(283,28,'N'),(283,29,'N'),(283,30,'N'),(283,31,'N'),(283,32,'N'),(283,33,'N'),(283,34,'N'),(283,35,'S'),(283,38,'N'),(283,39,'N'),(283,40,'N'),(283,41,'N'),(283,42,'N'),(283,43,'N'),(283,44,'N'),(283,45,'N'),(283,46,'N'),(283,47,'N'),(283,48,'N'),(283,49,'N'),(283,50,'S'),(283,53,'N'),(283,54,'N'),(283,55,'N'),(283,56,'N'),(283,57,'N'),(283,58,'N'),(283,59,'N'),(283,60,'N'),(283,61,'N'),(283,62,'N'),(283,63,'N'),(283,64,'N'),(283,65,'S'),(283,68,'N'),(283,69,'N'),(283,70,'N'),(283,71,'N'),(283,72,'N'),(283,73,'N'),(283,74,'N'),(283,75,'N'),(283,76,'N'),(283,77,'N'),(283,78,'N'),(283,79,'N'),(283,80,'S'),(283,83,'N'),(283,84,'N'),(283,85,'N'),(283,86,'N'),(283,87,'N'),(283,88,'N'),(283,89,'N'),(283,90,'N'),(283,91,'N'),(283,92,'N'),(283,93,'N'),(283,94,'N'),(283,95,'S'),(283,98,'N'),(283,99,'N'),(283,100,'N'),(283,101,'N'),(283,102,'N'),(283,103,'N'),(283,104,'N'),(283,105,'N'),(283,106,'N'),(283,107,'N'),(283,108,'N'),(283,109,'N'),(283,110,'S'),(283,113,'N'),(283,114,'N'),(283,115,'N'),(283,116,'N'),(283,117,'N'),(283,118,'N'),(283,119,'N'),(283,120,'N'),(283,121,'N'),(283,122,'N'),(283,123,'N'),(283,124,'N'),(283,125,'S'),(283,128,'N'),(283,129,'N'),(283,130,'N'),(283,131,'N'),(283,132,'N'),(283,133,'N'),(283,134,'N'),(283,135,'N'),(283,136,'N'),(283,137,'N'),(283,138,'N'),(283,139,'N'),(283,140,'S'),(283,143,'N'),(283,144,'N'),(283,145,'N'),(283,146,'N'),(283,147,'N'),(283,148,'N'),(283,149,'N'),(283,150,'N'),(283,151,'N'),(283,152,'N'),(283,153,'N'),(283,154,'N'),(283,155,'S'),(283,158,'N'),(283,159,'N'),(283,160,'N'),(283,161,'N'),(283,162,'N'),(283,163,'N'),(283,164,'N'),(283,165,'N'),(283,166,'N'),(283,167,'N'),(283,168,'N'),(283,169,'N'),(283,170,'S'),(283,173,'N'),(283,174,'N'),(283,175,'N'),(283,176,'N'),(283,177,'N'),(283,178,'N'),(283,179,'N'),(283,180,'N'),(283,181,'N'),(283,182,'N'),(283,183,'N'),(283,184,'N'),(283,185,'S'),(283,188,'N'),(283,189,'N'),(283,190,'N'),(283,191,'N'),(283,192,'N'),(283,193,'N'),(283,194,'N'),(283,195,'N'),(283,196,'N'),(283,197,'N'),(283,198,'N'),(283,199,'N'),(283,200,'S'),(283,203,'N'),(283,204,'N'),(283,205,'N'),(283,206,'N'),(283,207,'N'),(283,208,'N'),(283,209,'N'),(283,210,'N'),(283,211,'N'),(283,212,'N'),(283,213,'N'),(283,214,'N'),(283,215,'S'),(283,218,'N'),(283,219,'N'),(283,220,'N'),(283,221,'N'),(283,222,'N'),(283,223,'N'),(283,224,'N'),(283,225,'N'),(283,226,'N'),(283,227,'N'),(283,228,'N'),(283,229,'N'),(283,230,'S'),(283,233,'N'),(283,234,'N'),(283,235,'N'),(283,236,'N'),(283,237,'N'),(283,238,'N'),(283,239,'N'),(283,240,'N'),(283,241,'N'),(283,242,'N'),(283,243,'N'),(283,244,'N'),(283,245,'S'),(283,248,'N'),(283,249,'N'),(283,250,'N'),(283,251,'N'),(283,252,'N'),(283,253,'N'),(283,254,'N'),(283,255,'N'),(283,256,'N'),(283,257,'N'),(283,258,'N'),(283,259,'N'),(283,260,'S'),(283,263,'N'),(283,264,'N'),(283,265,'N'),(283,266,'N'),(283,267,'N'),(283,268,'N'),(283,269,'N'),(283,270,'N'),(283,271,'N'),(283,272,'N'),(283,273,'N'),(283,274,'N'),(283,275,'S'),(283,278,'N'),(283,279,'N'),(283,280,'N'),(283,281,'N'),(283,282,'N'),(283,283,'N'),(283,284,'N'),(283,285,'N'),(283,286,'N'),(283,287,'N'),(283,288,'N'),(283,289,'N'),(283,290,'N'),(283,291,'S'),(283,294,'N'),(283,295,'N'),(283,296,'N'),(283,297,'N'),(283,298,'N'),(283,299,'N'),(283,300,'N'),(283,301,'N'),(283,303,'N'),(283,304,'N'),(283,305,'N'),(283,306,'N'),(283,307,'S'),(283,310,'N'),(283,311,'N'),(283,312,'N'),(283,313,'N'),(283,314,'N'),(283,315,'N'),(283,316,'N'),(283,317,'N'),(283,318,'N'),(283,319,'N'),(283,320,'N'),(283,321,'N'),(283,322,'N'),(283,323,'S'),(283,326,'N'),(283,327,'N'),(283,328,'N'),(283,329,'N'),(283,330,'N'),(283,331,'N'),(283,332,'N'),(283,333,'N'),(283,334,'N'),(283,335,'N'),(283,336,'N'),(283,337,'N'),(283,338,'N'),(283,339,'S'),(283,342,'N'),(283,343,'N'),(283,344,'N'),(283,345,'N'),(283,346,'N'),(283,347,'N'),(283,348,'N'),(283,349,'N'),(283,350,'N'),(283,352,'N'),(283,353,'N'),(283,354,'N'),(283,355,'N'),(283,356,'S'),(283,359,'N'),(283,360,'N'),(283,361,'N'),(283,362,'N'),(283,363,'N'),(283,364,'N'),(283,365,'N'),(283,366,'N'),(283,367,'N'),(283,369,'N'),(283,370,'N'),(283,371,'N'),(283,372,'N'),(283,373,'S'),(283,376,'N'),(283,377,'N'),(283,378,'N'),(283,379,'N'),(283,380,'N'),(283,381,'N'),(283,382,'N'),(283,383,'N'),(283,384,'N'),(283,386,'N'),(283,387,'N'),(283,388,'N'),(283,389,'N'),(283,390,'S'),(283,393,'N'),(283,394,'N'),(283,395,'N'),(283,396,'N'),(283,397,'N'),(283,398,'N'),(283,399,'N'),(283,400,'N'),(283,401,'N'),(283,403,'N'),(283,404,'N'),(283,405,'N'),(283,406,'N'),(283,407,'S'),(283,410,'N'),(283,411,'N'),(283,412,'N'),(283,413,'N'),(283,414,'N'),(283,415,'N'),(283,416,'N'),(283,417,'N'),(283,418,'N'),(283,420,'N'),(283,421,'N'),(283,422,'N'),(283,423,'N'),(283,424,'S'),(283,427,'N'),(283,428,'N'),(283,429,'N'),(283,430,'N'),(283,431,'N'),(283,432,'N'),(283,433,'N'),(283,434,'N'),(283,435,'N'),(283,437,'N'),(283,438,'N'),(283,439,'N'),(283,440,'N'),(283,441,'S'),(283,444,'N'),(283,445,'N'),(283,446,'N'),(283,447,'N'),(283,448,'N'),(283,449,'N'),(283,450,'N'),(283,451,'N'),(283,452,'N'),(283,453,'N'),(283,455,'N'),(283,456,'N'),(283,457,'N'),(283,458,'N'),(283,459,'S'),(283,462,'N'),(283,463,'N'),(283,464,'N'),(283,465,'N'),(283,466,'N'),(283,467,'N'),(283,468,'N'),(283,469,'N'),(283,470,'N'),(283,471,'N'),(283,474,'N'),(283,475,'N'),(283,476,'N'),(283,477,'N'),(283,478,'S'),(283,481,'N'),(283,482,'N'),(283,483,'N'),(283,484,'N'),(283,485,'N'),(283,486,'N'),(283,487,'N'),(283,488,'N'),(283,489,'N'),(283,490,'N'),(283,494,'N'),(283,495,'N'),(283,496,'N'),(283,497,'N'),(283,498,'S'),(283,501,'N'),(283,502,'N'),(283,503,'N'),(283,504,'N'),(283,505,'N'),(283,506,'N'),(283,507,'N'),(283,508,'N'),(283,509,'N'),(283,510,'N'),(283,514,'N'),(283,515,'N'),(283,516,'N'),(283,517,'N'),(283,518,'S'),(283,521,'N'),(283,522,'N'),(283,523,'N'),(283,524,'N'),(283,525,'N'),(283,526,'N'),(283,527,'N'),(283,528,'N'),(283,529,'N'),(283,530,'N'),(283,531,'N'),(283,532,'N'),(283,533,'N'),(283,534,'N'),(283,535,'S'),(283,538,'N'),(283,539,'N'),(283,540,'N'),(283,541,'N'),(283,542,'N'),(283,543,'N'),(283,544,'N'),(283,545,'N'),(283,546,'N'),(283,547,'N'),(283,552,'N'),(283,553,'N'),(283,554,'N'),(283,555,'N'),(283,556,'S'),(283,559,'N'),(283,560,'N'),(283,561,'N'),(283,562,'N'),(283,563,'N'),(283,564,'N'),(283,565,'N'),(283,566,'N'),(283,567,'N'),(283,568,'N'),(283,574,'N'),(283,575,'N'),(283,576,'N'),(283,577,'N'),(283,578,'S'),(283,581,'N'),(283,582,'N'),(283,583,'N'),(283,584,'N'),(283,585,'N'),(283,586,'N'),(283,587,'N'),(283,588,'N'),(283,589,'N'),(283,590,'N'),(283,597,'N'),(283,598,'N'),(283,599,'N'),(283,600,'N'),(283,601,'S'),(283,604,'N'),(283,605,'N'),(283,606,'N'),(283,607,'N'),(283,608,'N'),(283,609,'N'),(283,610,'N'),(283,611,'N'),(283,612,'N'),(283,613,'N'),(283,621,'N'),(283,622,'N'),(283,623,'N'),(283,624,'N'),(283,625,'S'),(283,628,'N'),(283,629,'N'),(283,630,'N'),(283,631,'N'),(283,632,'N'),(283,633,'N'),(283,634,'N'),(283,635,'N'),(283,636,'N'),(283,637,'N'),(283,646,'N'),(283,647,'N'),(283,648,'N'),(283,649,'N'),(283,650,'S'),(283,653,'N'),(283,654,'N'),(283,655,'N'),(283,656,'N'),(283,657,'N'),(283,658,'N'),(283,659,'N'),(283,660,'N'),(283,661,'N'),(283,662,'N'),(283,672,'N'),(283,673,'N'),(283,674,'N'),(283,675,'N'),(283,676,'S'),(283,679,'N'),(283,680,'N'),(283,681,'N'),(283,682,'N'),(283,683,'N'),(283,684,'N'),(283,685,'N'),(283,686,'N'),(283,687,'N'),(283,688,'N'),(283,699,'N'),(283,700,'N'),(283,701,'N'),(283,702,'N'),(283,703,'S'),(283,706,'N'),(283,707,'N'),(283,708,'N'),(283,709,'N'),(283,710,'N'),(283,711,'N'),(283,712,'N'),(283,713,'N'),(283,714,'N'),(283,715,'N'),(283,727,'N'),(283,728,'N'),(283,729,'N'),(283,730,'N'),(283,731,'S'),(283,734,'N'),(283,735,'N'),(283,736,'N'),(283,737,'N'),(283,738,'N'),(283,739,'N'),(283,740,'N'),(283,741,'N'),(283,742,'N'),(283,743,'N'),(283,756,'N'),(283,757,'N'),(283,758,'N'),(283,759,'N'),(283,760,'S'),(283,763,'N'),(283,764,'N'),(283,765,'N'),(283,766,'N'),(283,767,'N'),(283,768,'N'),(283,769,'N'),(283,770,'N'),(283,771,'N'),(283,772,'N'),(283,786,'N'),(283,787,'N'),(283,788,'N'),(283,789,'N'),(283,790,'S'),(283,793,'N'),(283,794,'N'),(283,795,'N'),(283,796,'N'),(283,797,'N'),(283,798,'N'),(283,799,'N'),(283,800,'N'),(283,801,'N'),(283,802,'N'),(283,817,'N'),(283,818,'N'),(283,819,'N'),(283,820,'N'),(283,821,'S'),(283,824,'N'),(283,825,'N'),(283,826,'N'),(283,827,'N'),(283,828,'N'),(283,829,'N'),(283,830,'N'),(283,831,'N'),(283,832,'N'),(283,833,'N'),(283,849,'N'),(283,850,'N'),(283,851,'N'),(283,852,'N'),(283,853,'S'),(283,856,'N'),(283,857,'N'),(283,858,'N'),(283,859,'N'),(283,860,'N'),(283,861,'N'),(283,862,'N'),(283,863,'N'),(283,864,'N'),(283,865,'N'),(283,882,'N'),(283,883,'N'),(283,884,'N'),(283,885,'N'),(283,886,'S'),(283,889,'N'),(283,890,'N'),(283,891,'N'),(283,892,'N'),(283,893,'N'),(283,894,'N'),(283,895,'N'),(283,896,'N'),(283,897,'N'),(283,898,'N'),(283,916,'N'),(283,917,'N'),(283,918,'N'),(283,919,'N'),(283,920,'S'),(283,923,'N'),(283,924,'N'),(283,925,'N'),(283,926,'N'),(283,927,'N'),(283,928,'N'),(283,929,'N'),(283,930,'N'),(283,931,'N'),(283,932,'N'),(283,951,'N'),(283,952,'N'),(283,953,'N'),(283,954,'N'),(283,955,'S'),(283,958,'N'),(283,959,'N'),(283,960,'N'),(283,961,'N'),(283,962,'N'),(283,963,'N'),(283,964,'N'),(283,965,'N'),(283,966,'N'),(283,967,'N'),(283,987,'N'),(283,988,'N'),(283,989,'N'),(283,990,'N'),(283,991,'S'),(283,994,'N'),(283,995,'N'),(283,996,'N'),(283,997,'N'),(283,998,'N'),(283,999,'N'),(283,1000,'N'),(283,1001,'N'),(283,1002,'N'),(283,1003,'N'),(283,1024,'N'),(283,1025,'N'),(283,1026,'N'),(283,1027,'N'),(283,1028,'S'),(283,1031,'N'),(283,1032,'N'),(283,1033,'N'),(283,1034,'N'),(283,1035,'N'),(283,1036,'N'),(283,1037,'N'),(283,1038,'N'),(283,1039,'N'),(283,1040,'N'),(283,1061,'N'),(283,1062,'N'),(283,1063,'N'),(283,1064,'N'),(283,1065,'S'),(283,1068,'N'),(283,1069,'N'),(283,1070,'N'),(283,1071,'N'),(283,1072,'N'),(283,1073,'N'),(283,1074,'N'),(283,1075,'N'),(283,1076,'N'),(283,1077,'N'),(283,1099,'N'),(283,1100,'N'),(283,1101,'N'),(283,1102,'N'),(283,1103,'S'),(283,1104,'N'),(283,1106,'N'),(283,1107,'N'),(283,1108,'N'),(283,1109,'N'),(283,1110,'N'),(283,1111,'N'),(283,1112,'N'),(283,1113,'N'),(283,1114,'N'),(283,1115,'N'),(283,1137,'N'),(283,1138,'N'),(283,1139,'N'),(283,1140,'N'),(283,1141,'S'),(283,1142,'N'),(283,1144,'N'),(283,1145,'N'),(283,1146,'N'),(283,1147,'N'),(283,1148,'N'),(283,1149,'N'),(283,1150,'N'),(283,1151,'N'),(283,1152,'N'),(283,1153,'N'),(283,1175,'N'),(283,1176,'N'),(283,1177,'N'),(283,1178,'N'),(283,1179,'S'),(283,1180,'N'),(283,1181,'N'),(283,1182,'N'),(283,1183,'N'),(283,1184,'N'),(283,1185,'N'),(283,1186,'N'),(283,1187,'N'),(283,1188,'N'),(283,1189,'N'),(283,1190,'N'),(283,1212,'N'),(283,1213,'N'),(283,1214,'N'),(283,1215,'N'),(283,1216,'S'),(283,1217,'N'),(283,1218,'N'),(283,1219,'N'),(283,1220,'N'),(283,1221,'N'),(283,1222,'N'),(283,1223,'N'),(283,1224,'N'),(283,1225,'N'),(283,1226,'N'),(283,1227,'N'),(283,1251,'N'),(283,1252,'N'),(283,1253,'S'),(283,1254,'N'),(283,1255,'N'),(283,1257,'N'),(283,1258,'N'),(283,1259,'N'),(283,1260,'N'),(283,1261,'N'),(283,1262,'N'),(283,1263,'N'),(283,1264,'N'),(283,1268,'N'),(283,1269,'N'),(283,1274,'N'),(283,1275,'N'),(283,1280,'N'),(283,1281,'N'),(283,1282,'N'),(283,1283,'N'),(283,1284,'N'),(283,1285,'N'),(283,1288,'N'),(283,1289,'N'),(283,1290,'S'),(283,1291,'N'),(283,1292,'N'),(283,1294,'N'),(283,1295,'N'),(283,1296,'N'),(283,1297,'N'),(283,1298,'N'),(283,1299,'N'),(283,1300,'N'),(283,1301,'N'),(283,1305,'N'),(283,1306,'N'),(283,1311,'N'),(283,1312,'N'),(283,1317,'N'),(283,1318,'N'),(283,1319,'N'),(283,1320,'N'),(283,1321,'N'),(283,1322,'N'),(283,1326,'N'),(283,1327,'N'),(283,1328,'S'),(283,1329,'N'),(283,1330,'N'),(283,1332,'N'),(283,1333,'N'),(283,1334,'N'),(283,1335,'N'),(283,1336,'N'),(283,1337,'N'),(283,1338,'N'),(283,1339,'N'),(283,1343,'N'),(283,1344,'N'),(283,1349,'N'),(283,1350,'N'),(283,1355,'N'),(283,1356,'N'),(283,1357,'N'),(283,1358,'N'),(283,1359,'N'),(283,1360,'N'),(283,1365,'N'),(283,1366,'N'),(283,1367,'S'),(283,1368,'N'),(283,1369,'N'),(283,1371,'N'),(283,1372,'N'),(283,1373,'N'),(283,1374,'N'),(283,1375,'N'),(283,1376,'N'),(283,1377,'N'),(283,1378,'N'),(283,1382,'N'),(283,1383,'N'),(283,1388,'N'),(283,1389,'N'),(283,1394,'N'),(283,1395,'N'),(283,1396,'N'),(283,1397,'N'),(283,1398,'N'),(283,1399,'N'),(283,1405,'N'),(283,1406,'N'),(283,1407,'S'),(283,1408,'N'),(283,1409,'N'),(283,1411,'N'),(283,1412,'N'),(283,1413,'N'),(283,1414,'N'),(283,1415,'N'),(283,1416,'N'),(283,1417,'N'),(283,1418,'N'),(283,1422,'N'),(283,1423,'N'),(283,1428,'N'),(283,1429,'N'),(283,1434,'N'),(283,1435,'N'),(283,1436,'N'),(283,1437,'N'),(283,1438,'N'),(283,1439,'N'),(283,1445,'N'),(283,1446,'N'),(283,1447,'S'),(283,1448,'N'),(283,1449,'N'),(283,1451,'N'),(283,1452,'N'),(283,1453,'N'),(283,1454,'N'),(283,1455,'N'),(283,1456,'N'),(283,1457,'N'),(283,1458,'N'),(283,1462,'N'),(283,1463,'N'),(283,1468,'N'),(283,1469,'N'),(283,1474,'N'),(283,1475,'N'),(283,1476,'N'),(283,1477,'N'),(283,1478,'N'),(283,1479,'N'),(283,1485,'N'),(283,1486,'N'),(283,1487,'S'),(283,1488,'N'),(283,1489,'N'),(283,1491,'N'),(283,1493,'N'),(283,1494,'N'),(283,1495,'N'),(283,1496,'N'),(283,1497,'N'),(283,1498,'N'),(283,1502,'N'),(283,1503,'N'),(283,1508,'N'),(283,1509,'N'),(283,1514,'N'),(283,1515,'N'),(283,1516,'N'),(283,1517,'N'),(283,1518,'N'),(283,1519,'N'),(283,1525,'N'),(283,1526,'N'),(283,1527,'S'),(283,1528,'N'),(283,1529,'N'),(283,1531,'N'),(283,1533,'N'),(283,1534,'N'),(283,1535,'N'),(283,1536,'N'),(283,1537,'N'),(283,1538,'N'),(283,1542,'N'),(283,1543,'N'),(283,1548,'N'),(283,1549,'N'),(283,1554,'N'),(283,1555,'N'),(283,1556,'N'),(283,1557,'N'),(283,1558,'N'),(283,1559,'N'),(283,1566,'N'),(283,1567,'N'),(283,1568,'S'),(283,1569,'N'),(283,1570,'N'),(283,1571,'N'),(283,1573,'N'),(283,1574,'N'),(283,1575,'N'),(283,1576,'N'),(283,1577,'N'),(283,1578,'N'),(283,1582,'N'),(283,1583,'N'),(283,1588,'N'),(283,1589,'N'),(283,1594,'N'),(283,1595,'N'),(283,1596,'N'),(283,1597,'N'),(283,1598,'N'),(283,1599,'N'),(283,1606,'N'),(283,1607,'N'),(283,1608,'S'),(283,1609,'N'),(283,1610,'N'),(283,1611,'N'),(283,1612,'N'),(283,1613,'N'),(283,1614,'N'),(283,1615,'N'),(283,1616,'N'),(283,1617,'N'),(283,1621,'N'),(283,1622,'N'),(283,1627,'N'),(283,1628,'N'),(283,1633,'N'),(283,1634,'N'),(283,1635,'N'),(283,1636,'N'),(283,1637,'N'),(283,1638,'N'),(283,1640,'N'),(283,1641,'N'),(294,453,'S'),(294,471,'S'),(294,490,'S'),(294,510,'S'),(294,530,'S'),(294,547,'S'),(294,568,'S'),(294,590,'S'),(294,613,'S'),(294,637,'S'),(294,662,'S'),(294,688,'S'),(294,715,'S'),(294,743,'S'),(294,772,'S'),(294,802,'S'),(294,833,'S'),(294,865,'S'),(294,898,'S'),(294,932,'S'),(294,967,'S'),(294,1003,'S'),(294,1040,'S'),(294,1077,'S'),(294,1115,'S'),(294,1153,'S'),(294,1190,'S'),(294,1227,'S'),(294,1264,'S'),(294,1301,'S'),(294,1339,'S'),(294,1378,'S'),(294,1418,'S'),(294,1458,'S'),(294,1498,'S'),(294,1538,'S'),(294,1578,'S'),(294,1617,'S'),(298,453,'S'),(298,471,'S'),(298,490,'S'),(298,510,'S'),(298,530,'S'),(298,547,'S'),(298,568,'S'),(298,590,'S'),(298,613,'S'),(298,637,'S'),(298,662,'S'),(298,688,'S'),(298,715,'S'),(298,743,'S'),(298,772,'S'),(298,802,'S'),(298,833,'S'),(298,865,'S'),(298,898,'S'),(298,932,'S'),(298,967,'S'),(298,1003,'S'),(298,1040,'S'),(298,1077,'S'),(298,1115,'S'),(298,1153,'S'),(298,1190,'S'),(298,1227,'S'),(298,1264,'S'),(298,1301,'S'),(298,1339,'S'),(298,1378,'S'),(298,1418,'S'),(298,1458,'S'),(298,1498,'S'),(298,1538,'S'),(298,1578,'S'),(298,1617,'S'),(316,453,'S'),(316,471,'S'),(316,490,'S'),(316,510,'S'),(316,530,'S'),(316,547,'S'),(316,568,'S'),(316,590,'S'),(316,613,'S'),(316,637,'S'),(316,662,'S'),(316,688,'S'),(316,715,'S'),(316,743,'S'),(316,772,'S'),(316,802,'S'),(316,833,'S'),(316,865,'S'),(316,898,'S'),(316,932,'S'),(316,967,'S'),(316,1003,'S'),(316,1040,'S'),(316,1077,'S'),(316,1115,'S'),(316,1153,'S'),(316,1190,'S'),(316,1227,'S'),(316,1264,'S'),(316,1301,'S'),(316,1339,'S'),(316,1378,'S'),(316,1418,'S'),(316,1458,'S'),(316,1498,'S'),(316,1538,'S'),(316,1578,'S'),(316,1617,'S'),(323,453,'S'),(323,471,'S'),(323,490,'S'),(323,510,'S'),(323,530,'S'),(323,547,'S'),(323,568,'S'),(323,590,'S'),(323,613,'S'),(323,637,'S'),(323,662,'S'),(323,688,'S'),(323,715,'S'),(323,743,'S'),(323,772,'S'),(323,802,'S'),(323,833,'S'),(323,865,'S'),(323,898,'S'),(323,932,'S'),(323,967,'S'),(323,1003,'S'),(323,1040,'S'),(323,1077,'S'),(323,1115,'S'),(323,1153,'S'),(323,1190,'S'),(323,1227,'S'),(323,1264,'S'),(323,1301,'S'),(323,1339,'S'),(323,1378,'S'),(323,1418,'S'),(323,1458,'S'),(323,1498,'S'),(323,1538,'S'),(323,1578,'S'),(323,1617,'S'),(327,453,'S'),(327,471,'S'),(327,490,'S'),(327,510,'S'),(327,530,'S'),(327,547,'S'),(327,568,'S'),(327,590,'S'),(327,613,'S'),(327,637,'S'),(327,662,'S'),(327,688,'S'),(327,715,'S'),(327,743,'S'),(327,772,'S'),(327,802,'S'),(327,833,'S'),(327,865,'S'),(327,898,'S'),(327,932,'S'),(327,967,'S'),(327,1003,'S'),(327,1040,'S'),(327,1077,'S'),(327,1115,'S'),(327,1153,'S'),(327,1190,'S'),(327,1227,'S'),(327,1264,'S'),(327,1301,'S'),(327,1339,'S'),(327,1378,'S'),(327,1418,'S'),(327,1458,'S'),(327,1498,'S'),(327,1538,'S'),(327,1578,'S'),(327,1617,'S'),(331,453,'S'),(331,471,'S'),(331,490,'S'),(331,510,'S'),(331,530,'S'),(331,547,'S'),(331,568,'S'),(331,590,'S'),(331,613,'S'),(331,637,'S'),(331,662,'S'),(331,688,'S'),(331,715,'S'),(331,743,'S'),(331,772,'S'),(331,802,'S'),(331,833,'S'),(331,865,'S'),(331,898,'S'),(331,932,'S'),(331,967,'S'),(331,1003,'S'),(331,1040,'S'),(331,1077,'S'),(331,1115,'S'),(331,1153,'S'),(331,1190,'S'),(331,1227,'S'),(331,1264,'S'),(331,1301,'S'),(331,1339,'S'),(331,1378,'S'),(331,1418,'S'),(331,1458,'S'),(331,1498,'S'),(331,1538,'S'),(331,1578,'S'),(331,1617,'S'),(337,1,'S'),(337,16,'S'),(337,31,'S'),(337,46,'S'),(337,61,'S'),(337,76,'S'),(337,91,'S'),(337,106,'S'),(337,121,'S'),(337,136,'S'),(337,151,'S'),(337,166,'S'),(337,181,'S'),(337,196,'S'),(337,211,'S'),(337,226,'S'),(337,241,'S'),(337,256,'S'),(337,271,'S'),(337,287,'S'),(337,303,'S'),(337,319,'S'),(337,335,'S'),(337,352,'S'),(337,369,'S'),(337,386,'S'),(337,403,'S'),(337,420,'S'),(337,437,'S'),(337,455,'S'),(337,474,'S'),(337,494,'S'),(337,514,'S'),(337,531,'S'),(337,552,'S'),(337,574,'S'),(337,597,'S'),(337,621,'S'),(337,646,'S'),(337,672,'S'),(337,699,'S'),(337,727,'S'),(337,756,'S'),(337,786,'S'),(337,817,'S'),(337,849,'S'),(337,882,'S'),(337,916,'S'),(337,951,'S'),(337,987,'S'),(337,1024,'S'),(337,1061,'S'),(337,1099,'S'),(337,1137,'S'),(337,1175,'S'),(337,1212,'S'),(337,1249,'S'),(337,1286,'S'),(337,1324,'S'),(337,1363,'S'),(337,1403,'S'),(337,1443,'S'),(337,1483,'S'),(337,1523,'S'),(337,1564,'S'),(337,1604,'S'),(339,1,'S'),(339,16,'S'),(339,31,'S'),(339,46,'S'),(339,61,'S'),(339,76,'S'),(339,91,'S'),(339,106,'S'),(339,121,'S'),(339,136,'S'),(339,151,'S'),(339,166,'S'),(339,181,'S'),(339,196,'S'),(339,211,'S'),(339,226,'S'),(339,241,'S'),(339,256,'S'),(339,271,'S'),(339,287,'S'),(339,303,'S'),(339,319,'S'),(339,335,'S'),(339,352,'S'),(339,369,'S'),(339,386,'S'),(339,403,'S'),(339,420,'S'),(339,437,'S'),(339,455,'S'),(339,474,'S'),(339,494,'S'),(339,514,'S'),(339,531,'S'),(339,552,'S'),(339,574,'S'),(339,597,'S'),(339,621,'S'),(339,646,'S'),(339,672,'S'),(339,699,'S'),(339,727,'S'),(339,756,'S'),(339,786,'S'),(339,817,'S'),(339,849,'S'),(339,882,'S'),(339,916,'S'),(339,951,'S'),(339,987,'S'),(339,1024,'S'),(339,1061,'S'),(339,1099,'S'),(339,1137,'S'),(339,1175,'S'),(339,1212,'S'),(339,1249,'S'),(339,1286,'S'),(339,1324,'S'),(339,1363,'S'),(339,1403,'S'),(339,1443,'S'),(339,1483,'S'),(339,1523,'S'),(339,1564,'S'),(339,1604,'S'),(340,12,'S'),(340,27,'S'),(340,42,'S'),(340,57,'S'),(340,72,'S'),(340,87,'S'),(340,102,'S'),(340,117,'S'),(340,132,'S'),(340,147,'S'),(340,162,'S'),(340,177,'S'),(340,192,'S'),(340,207,'S'),(340,222,'S'),(340,237,'S'),(340,252,'S'),(340,267,'S'),(340,282,'S'),(340,298,'S'),(340,314,'S'),(340,330,'S'),(340,346,'S'),(340,363,'S'),(340,380,'S'),(340,397,'S'),(340,414,'S'),(340,431,'S'),(340,448,'S'),(340,466,'S'),(340,485,'S'),(340,505,'S'),(340,525,'S'),(340,542,'S'),(340,563,'S'),(340,585,'S'),(340,608,'S'),(340,632,'S'),(340,657,'S'),(340,683,'S'),(340,710,'S'),(340,738,'S'),(340,767,'S'),(340,797,'S'),(340,828,'S'),(340,860,'S'),(340,893,'S'),(340,927,'S'),(340,962,'S'),(340,998,'S'),(340,1035,'S'),(340,1072,'S'),(340,1110,'S'),(340,1148,'S'),(340,1185,'S'),(340,1222,'S'),(340,1259,'S'),(340,1296,'S'),(340,1334,'S'),(340,1373,'S'),(340,1413,'S'),(340,1453,'S'),(340,1493,'S'),(340,1533,'S'),(340,1573,'S'),(340,1612,'S'),(341,1,'N'),(341,2,'N'),(341,3,'N'),(341,4,'S'),(341,5,'N'),(341,8,'N'),(341,9,'N'),(341,10,'N'),(341,11,'N'),(341,12,'N'),(341,13,'N'),(341,14,'N'),(341,15,'N'),(341,16,'N'),(341,17,'N'),(341,18,'N'),(341,19,'S'),(341,20,'N'),(341,23,'N'),(341,24,'N'),(341,25,'N'),(341,26,'N'),(341,27,'N'),(341,28,'N'),(341,29,'N'),(341,30,'N'),(341,31,'N'),(341,32,'N'),(341,33,'N'),(341,34,'S'),(341,35,'N'),(341,38,'N'),(341,39,'N'),(341,40,'N'),(341,41,'N'),(341,42,'N'),(341,43,'N'),(341,44,'N'),(341,45,'N'),(341,46,'N'),(341,47,'N'),(341,48,'N'),(341,49,'S'),(341,50,'N'),(341,53,'N'),(341,54,'N'),(341,55,'N'),(341,56,'N'),(341,57,'N'),(341,58,'N'),(341,59,'N'),(341,60,'N'),(341,61,'N'),(341,62,'N'),(341,63,'N'),(341,64,'S'),(341,65,'N'),(341,68,'N'),(341,69,'N'),(341,70,'N'),(341,71,'N'),(341,72,'N'),(341,73,'N'),(341,74,'N'),(341,75,'N'),(341,76,'N'),(341,77,'N'),(341,78,'N'),(341,79,'S'),(341,80,'N'),(341,83,'N'),(341,84,'N'),(341,85,'N'),(341,86,'N'),(341,87,'N'),(341,88,'N'),(341,89,'N'),(341,90,'N'),(341,91,'N'),(341,92,'N'),(341,93,'N'),(341,94,'S'),(341,95,'N'),(341,98,'N'),(341,99,'N'),(341,100,'N'),(341,101,'N'),(341,102,'N'),(341,103,'N'),(341,104,'N'),(341,105,'N'),(341,106,'N'),(341,107,'N'),(341,108,'N'),(341,109,'S'),(341,110,'N'),(341,113,'N'),(341,114,'N'),(341,115,'N'),(341,116,'N'),(341,117,'N'),(341,118,'N'),(341,119,'N'),(341,120,'N'),(341,121,'N'),(341,122,'N'),(341,123,'N'),(341,124,'S'),(341,125,'N'),(341,128,'N'),(341,129,'N'),(341,130,'N'),(341,131,'N'),(341,132,'N'),(341,133,'N'),(341,134,'N'),(341,135,'N'),(341,136,'N'),(341,137,'N'),(341,138,'N'),(341,139,'S'),(341,140,'N'),(341,143,'N'),(341,144,'N'),(341,145,'N'),(341,146,'N'),(341,147,'N'),(341,148,'N'),(341,149,'N'),(341,150,'N'),(341,151,'N'),(341,152,'N'),(341,153,'N'),(341,154,'S'),(341,155,'N'),(341,158,'N'),(341,159,'N'),(341,160,'N'),(341,161,'N'),(341,162,'N'),(341,163,'N'),(341,164,'N'),(341,165,'N'),(341,166,'N'),(341,167,'N'),(341,168,'N'),(341,169,'S'),(341,170,'N'),(341,173,'N'),(341,174,'N'),(341,175,'N'),(341,176,'N'),(341,177,'N'),(341,178,'N'),(341,179,'N'),(341,180,'N'),(341,181,'N'),(341,182,'N'),(341,183,'N'),(341,184,'S'),(341,185,'N'),(341,188,'N'),(341,189,'N'),(341,190,'N'),(341,191,'N'),(341,192,'N'),(341,193,'N'),(341,194,'N'),(341,195,'N'),(341,196,'N'),(341,197,'N'),(341,198,'N'),(341,199,'S'),(341,200,'N'),(341,203,'N'),(341,204,'N'),(341,205,'N'),(341,206,'N'),(341,207,'N'),(341,208,'N'),(341,209,'N'),(341,210,'N'),(341,211,'N'),(341,212,'N'),(341,213,'N'),(341,214,'S'),(341,215,'N'),(341,218,'N'),(341,219,'N'),(341,220,'N'),(341,221,'N'),(341,222,'N'),(341,223,'N'),(341,224,'N'),(341,225,'N'),(341,226,'N'),(341,227,'N'),(341,228,'N'),(341,229,'S'),(341,230,'N'),(341,233,'N'),(341,234,'N'),(341,235,'N'),(341,236,'N'),(341,237,'N'),(341,238,'N'),(341,239,'N'),(341,240,'N'),(341,241,'N'),(341,242,'N'),(341,243,'N'),(341,244,'S'),(341,245,'N'),(341,248,'N'),(341,249,'N'),(341,250,'N'),(341,251,'N'),(341,252,'N'),(341,253,'N'),(341,254,'N'),(341,255,'N'),(341,256,'N'),(341,257,'N'),(341,258,'N'),(341,259,'S'),(341,260,'N'),(341,263,'N'),(341,264,'N'),(341,265,'N'),(341,266,'N'),(341,267,'N'),(341,268,'N'),(341,269,'N'),(341,270,'N'),(341,271,'N'),(341,272,'N'),(341,273,'N'),(341,274,'S'),(341,275,'N'),(341,278,'N'),(341,279,'N'),(341,280,'N'),(341,281,'N'),(341,282,'N'),(341,283,'N'),(341,284,'N'),(341,285,'N'),(341,286,'N'),(341,287,'N'),(341,288,'N'),(341,289,'N'),(341,290,'S'),(341,291,'N'),(341,294,'N'),(341,295,'N'),(341,296,'N'),(341,297,'N'),(341,298,'N'),(341,299,'N'),(341,300,'N'),(341,301,'N'),(341,303,'N'),(341,304,'N'),(341,305,'N'),(341,306,'S'),(341,307,'N'),(341,310,'N'),(341,311,'N'),(341,312,'N'),(341,313,'N'),(341,314,'N'),(341,315,'N'),(341,316,'N'),(341,317,'N'),(341,318,'N'),(341,319,'N'),(341,320,'N'),(341,321,'N'),(341,322,'S'),(341,323,'N'),(341,326,'N'),(341,327,'N'),(341,328,'N'),(341,329,'N'),(341,330,'N'),(341,331,'N'),(341,332,'N'),(341,333,'N'),(341,334,'N'),(341,335,'N'),(341,336,'N'),(341,337,'N'),(341,338,'S'),(341,339,'N'),(341,342,'N'),(341,343,'N'),(341,344,'N'),(341,345,'N'),(341,346,'N'),(341,347,'N'),(341,348,'N'),(341,349,'N'),(341,350,'N'),(341,352,'N'),(341,353,'N'),(341,354,'N'),(341,355,'S'),(341,356,'N'),(341,359,'N'),(341,360,'N'),(341,361,'N'),(341,362,'N'),(341,363,'N'),(341,364,'N'),(341,365,'N'),(341,366,'N'),(341,367,'N'),(341,369,'N'),(341,370,'N'),(341,371,'N'),(341,372,'S'),(341,373,'N'),(341,376,'N'),(341,377,'N'),(341,378,'N'),(341,379,'N'),(341,380,'N'),(341,381,'N'),(341,382,'N'),(341,383,'N'),(341,384,'N'),(341,386,'N'),(341,387,'N'),(341,388,'N'),(341,389,'S'),(341,390,'N'),(341,393,'N'),(341,394,'N'),(341,395,'N'),(341,396,'N'),(341,397,'N'),(341,398,'N'),(341,399,'N'),(341,400,'N'),(341,401,'N'),(341,403,'N'),(341,404,'N'),(341,405,'N'),(341,406,'S'),(341,407,'N'),(341,410,'N'),(341,411,'N'),(341,412,'N'),(341,413,'N'),(341,414,'N'),(341,415,'N'),(341,416,'N'),(341,417,'N'),(341,418,'N'),(341,420,'N'),(341,421,'N'),(341,422,'N'),(341,423,'S'),(341,424,'N'),(341,427,'N'),(341,428,'N'),(341,429,'N'),(341,430,'N'),(341,431,'N'),(341,432,'N'),(341,433,'N'),(341,434,'N'),(341,435,'N'),(341,437,'N'),(341,438,'N'),(341,439,'N'),(341,440,'S'),(341,441,'N'),(341,444,'N'),(341,445,'N'),(341,446,'N'),(341,447,'N'),(341,448,'N'),(341,449,'N'),(341,450,'N'),(341,451,'N'),(341,452,'N'),(341,453,'N'),(341,455,'N'),(341,456,'N'),(341,457,'N'),(341,458,'S'),(341,459,'N'),(341,462,'N'),(341,463,'N'),(341,464,'N'),(341,465,'N'),(341,466,'N'),(341,467,'N'),(341,468,'N'),(341,469,'N'),(341,470,'N'),(341,471,'N'),(341,474,'N'),(341,475,'N'),(341,476,'N'),(341,477,'S'),(341,478,'N'),(341,481,'N'),(341,482,'N'),(341,483,'N'),(341,484,'N'),(341,485,'N'),(341,486,'N'),(341,487,'N'),(341,488,'N'),(341,489,'N'),(341,490,'N'),(341,494,'N'),(341,495,'N'),(341,496,'N'),(341,497,'S'),(341,498,'N'),(341,501,'N'),(341,502,'N'),(341,503,'N'),(341,504,'N'),(341,505,'N'),(341,506,'N'),(341,507,'N'),(341,508,'N'),(341,509,'N'),(341,510,'N'),(341,514,'N'),(341,515,'N'),(341,516,'N'),(341,517,'S'),(341,518,'N'),(341,521,'N'),(341,522,'N'),(341,523,'N'),(341,524,'N'),(341,525,'N'),(341,526,'N'),(341,527,'N'),(341,528,'N'),(341,529,'N'),(341,530,'N'),(341,531,'N'),(341,532,'N'),(341,533,'N'),(341,534,'S'),(341,535,'N'),(341,538,'N'),(341,539,'N'),(341,540,'N'),(341,541,'N'),(341,542,'N'),(341,543,'N'),(341,544,'N'),(341,545,'N'),(341,546,'N'),(341,547,'N'),(341,551,'N'),(341,552,'N'),(341,553,'N'),(341,554,'N'),(341,555,'S'),(341,556,'N'),(341,559,'N'),(341,560,'N'),(341,561,'N'),(341,562,'N'),(341,563,'N'),(341,564,'N'),(341,565,'N'),(341,566,'N'),(341,567,'N'),(341,568,'N'),(341,572,'N'),(341,573,'N'),(341,574,'N'),(341,575,'N'),(341,576,'N'),(341,577,'S'),(341,578,'N'),(341,581,'N'),(341,582,'N'),(341,583,'N'),(341,584,'N'),(341,585,'N'),(341,586,'N'),(341,587,'N'),(341,588,'N'),(341,589,'N'),(341,590,'N'),(341,594,'N'),(341,595,'N'),(341,597,'N'),(341,598,'N'),(341,599,'N'),(341,600,'S'),(341,601,'N'),(341,604,'N'),(341,605,'N'),(341,606,'N'),(341,607,'N'),(341,608,'N'),(341,609,'N'),(341,610,'N'),(341,611,'N'),(341,612,'N'),(341,613,'N'),(341,617,'N'),(341,618,'N'),(341,621,'N'),(341,622,'N'),(341,623,'N'),(341,624,'S'),(341,625,'N'),(341,628,'N'),(341,629,'N'),(341,630,'N'),(341,631,'N'),(341,632,'N'),(341,633,'N'),(341,634,'N'),(341,635,'N'),(341,636,'N'),(341,637,'N'),(341,641,'N'),(341,642,'N'),(341,646,'N'),(341,647,'N'),(341,648,'N'),(341,649,'S'),(341,650,'N'),(341,653,'N'),(341,654,'N'),(341,655,'N'),(341,656,'N'),(341,657,'N'),(341,658,'N'),(341,659,'N'),(341,660,'N'),(341,661,'N'),(341,662,'N'),(341,666,'N'),(341,667,'N'),(341,672,'N'),(341,673,'N'),(341,674,'N'),(341,675,'S'),(341,676,'N'),(341,679,'N'),(341,680,'N'),(341,681,'N'),(341,682,'N'),(341,683,'N'),(341,684,'N'),(341,685,'N'),(341,686,'N'),(341,687,'N'),(341,688,'N'),(341,692,'N'),(341,693,'N'),(341,698,'N'),(341,699,'N'),(341,700,'N'),(341,701,'N'),(341,702,'S'),(341,703,'N'),(341,706,'N'),(341,707,'N'),(341,708,'N'),(341,709,'N'),(341,710,'N'),(341,711,'N'),(341,712,'N'),(341,713,'N'),(341,714,'N'),(341,715,'N'),(341,719,'N'),(341,720,'N'),(341,725,'N'),(341,726,'N'),(341,727,'N'),(341,728,'N'),(341,729,'N'),(341,730,'S'),(341,731,'N'),(341,734,'N'),(341,735,'N'),(341,736,'N'),(341,737,'N'),(341,738,'N'),(341,739,'N'),(341,740,'N'),(341,741,'N'),(341,742,'N'),(341,743,'N'),(341,747,'N'),(341,748,'N'),(341,753,'N'),(341,754,'N'),(341,756,'N'),(341,757,'N'),(341,758,'N'),(341,759,'S'),(341,760,'N'),(341,763,'N'),(341,764,'N'),(341,765,'N'),(341,766,'N'),(341,767,'N'),(341,768,'N'),(341,769,'N'),(341,770,'N'),(341,771,'N'),(341,772,'N'),(341,776,'N'),(341,777,'N'),(341,782,'N'),(341,783,'N'),(341,786,'N'),(341,787,'N'),(341,788,'N'),(341,789,'S'),(341,790,'N'),(341,793,'N'),(341,794,'N'),(341,795,'N'),(341,796,'N'),(341,797,'N'),(341,798,'N'),(341,799,'N'),(341,800,'N'),(341,801,'N'),(341,802,'N'),(341,806,'N'),(341,807,'N'),(341,812,'N'),(341,813,'N'),(341,817,'N'),(341,818,'N'),(341,819,'N'),(341,820,'S'),(341,821,'N'),(341,824,'N'),(341,825,'N'),(341,826,'N'),(341,827,'N'),(341,828,'N'),(341,829,'N'),(341,830,'N'),(341,831,'N'),(341,832,'N'),(341,833,'N'),(341,837,'N'),(341,838,'N'),(341,843,'N'),(341,844,'N'),(341,849,'N'),(341,850,'N'),(341,851,'N'),(341,852,'S'),(341,853,'N'),(341,856,'N'),(341,857,'N'),(341,858,'N'),(341,859,'N'),(341,860,'N'),(341,861,'N'),(341,862,'N'),(341,863,'N'),(341,864,'N'),(341,865,'N'),(341,869,'N'),(341,870,'N'),(341,875,'N'),(341,876,'N'),(341,881,'N'),(341,882,'N'),(341,883,'N'),(341,884,'N'),(341,885,'S'),(341,886,'N'),(341,889,'N'),(341,890,'N'),(341,891,'N'),(341,892,'N'),(341,893,'N'),(341,894,'N'),(341,895,'N'),(341,896,'N'),(341,897,'N'),(341,898,'N'),(341,902,'N'),(341,903,'N'),(341,908,'N'),(341,909,'N'),(341,914,'N'),(341,915,'N'),(341,916,'N'),(341,917,'N'),(341,918,'N'),(341,919,'S'),(341,920,'N'),(341,923,'N'),(341,924,'N'),(341,925,'N'),(341,926,'N'),(341,927,'N'),(341,928,'N'),(341,929,'N'),(341,930,'N'),(341,931,'N'),(341,932,'N'),(341,936,'N'),(341,937,'N'),(341,942,'N'),(341,943,'N'),(341,948,'N'),(341,949,'N'),(341,950,'N'),(341,951,'N'),(341,952,'N'),(341,953,'N'),(341,954,'S'),(341,955,'N'),(341,958,'N'),(341,959,'N'),(341,960,'N'),(341,961,'N'),(341,962,'N'),(341,963,'N'),(341,964,'N'),(341,965,'N'),(341,966,'N'),(341,967,'N'),(341,971,'N'),(341,972,'N'),(341,977,'N'),(341,978,'N'),(341,983,'N'),(341,984,'N'),(341,985,'N'),(341,986,'N'),(341,987,'N'),(341,988,'N'),(341,989,'N'),(341,990,'S'),(341,991,'N'),(341,994,'N'),(341,995,'N'),(341,996,'N'),(341,997,'N'),(341,998,'N'),(341,999,'N'),(341,1000,'N'),(341,1001,'N'),(341,1002,'N'),(341,1003,'N'),(341,1007,'N'),(341,1008,'N'),(341,1013,'N'),(341,1014,'N'),(341,1019,'N'),(341,1020,'N'),(341,1021,'N'),(341,1022,'N'),(341,1023,'N'),(341,1024,'N'),(341,1025,'N'),(341,1026,'N'),(341,1027,'S'),(341,1028,'N'),(341,1031,'N'),(341,1032,'N'),(341,1033,'N'),(341,1034,'N'),(341,1035,'N'),(341,1036,'N'),(341,1037,'N'),(341,1038,'N'),(341,1039,'N'),(341,1040,'N'),(341,1044,'N'),(341,1045,'N'),(341,1050,'N'),(341,1051,'N'),(341,1056,'N'),(341,1057,'N'),(341,1058,'N'),(341,1059,'N'),(341,1060,'N'),(341,1061,'N'),(341,1062,'N'),(341,1063,'N'),(341,1064,'S'),(341,1065,'N'),(341,1068,'N'),(341,1069,'N'),(341,1070,'N'),(341,1071,'N'),(341,1072,'N'),(341,1073,'N'),(341,1074,'N'),(341,1075,'N'),(341,1076,'N'),(341,1077,'N'),(341,1081,'N'),(341,1082,'N'),(341,1087,'N'),(341,1088,'N'),(341,1093,'N'),(341,1094,'N'),(341,1095,'N'),(341,1096,'N'),(341,1097,'N'),(341,1098,'N'),(341,1099,'N'),(341,1100,'N'),(341,1101,'N'),(341,1102,'S'),(341,1103,'N'),(341,1104,'N'),(341,1106,'N'),(341,1107,'N'),(341,1108,'N'),(341,1109,'N'),(341,1110,'N'),(341,1111,'N'),(341,1112,'N'),(341,1113,'N'),(341,1114,'N'),(341,1115,'N'),(341,1119,'N'),(341,1120,'N'),(341,1125,'N'),(341,1126,'N'),(341,1131,'N'),(341,1132,'N'),(341,1133,'N'),(341,1134,'N'),(341,1135,'N'),(341,1136,'N'),(341,1137,'N'),(341,1138,'N'),(341,1139,'N'),(341,1140,'S'),(341,1141,'N'),(341,1142,'N'),(341,1144,'N'),(341,1145,'N'),(341,1146,'N'),(341,1147,'N'),(341,1148,'N'),(341,1149,'N'),(341,1150,'N'),(341,1151,'N'),(341,1152,'N'),(341,1153,'N'),(341,1157,'N'),(341,1158,'N'),(341,1163,'N'),(341,1164,'N'),(341,1169,'N'),(341,1170,'N'),(341,1171,'N'),(341,1172,'N'),(341,1173,'N'),(341,1174,'N'),(341,1175,'N'),(341,1176,'N'),(341,1177,'N'),(341,1178,'S'),(341,1179,'N'),(341,1180,'N'),(341,1181,'N'),(341,1182,'N'),(341,1183,'N'),(341,1184,'N'),(341,1185,'N'),(341,1186,'N'),(341,1187,'N'),(341,1188,'N'),(341,1189,'N'),(341,1190,'N'),(341,1194,'N'),(341,1195,'N'),(341,1200,'N'),(341,1201,'N'),(341,1206,'N'),(341,1207,'N'),(341,1208,'N'),(341,1209,'N'),(341,1210,'N'),(341,1211,'N'),(341,1212,'N'),(341,1213,'N'),(341,1214,'N'),(341,1215,'S'),(341,1216,'N'),(341,1217,'N'),(341,1218,'N'),(341,1219,'N'),(341,1220,'N'),(341,1221,'N'),(341,1222,'N'),(341,1223,'N'),(341,1224,'N'),(341,1225,'N'),(341,1226,'N'),(341,1227,'N'),(341,1231,'N'),(341,1232,'N'),(341,1237,'N'),(341,1238,'N'),(341,1243,'N'),(341,1244,'N'),(341,1245,'N'),(341,1246,'N'),(341,1247,'N'),(341,1248,'N'),(341,1249,'N'),(341,1250,'N'),(341,1251,'N'),(341,1252,'S'),(341,1253,'N'),(341,1254,'N'),(341,1255,'N'),(341,1256,'N'),(341,1257,'N'),(341,1258,'N'),(341,1259,'N'),(341,1260,'N'),(341,1261,'N'),(341,1262,'N'),(341,1263,'N'),(341,1264,'N'),(341,1268,'N'),(341,1269,'N'),(341,1274,'N'),(341,1275,'N'),(341,1280,'N'),(341,1281,'N'),(341,1282,'N'),(341,1283,'N'),(341,1284,'N'),(341,1285,'N'),(341,1286,'N'),(341,1287,'N'),(341,1288,'N'),(341,1289,'S'),(341,1290,'N'),(341,1291,'N'),(341,1292,'N'),(341,1293,'N'),(341,1294,'N'),(341,1295,'N'),(341,1296,'N'),(341,1297,'N'),(341,1298,'N'),(341,1299,'N'),(341,1300,'N'),(341,1301,'N'),(341,1305,'N'),(341,1306,'N'),(341,1311,'N'),(341,1312,'N'),(341,1317,'N'),(341,1318,'N'),(341,1319,'N'),(341,1320,'N'),(341,1321,'N'),(341,1322,'N'),(341,1324,'N'),(341,1325,'N'),(341,1326,'N'),(341,1327,'S'),(341,1328,'N'),(341,1329,'N'),(341,1330,'N'),(341,1331,'N'),(341,1332,'N'),(341,1333,'N'),(341,1334,'N'),(341,1335,'N'),(341,1336,'N'),(341,1337,'N'),(341,1338,'N'),(341,1339,'N'),(341,1343,'N'),(341,1344,'N'),(341,1349,'N'),(341,1350,'N'),(341,1355,'N'),(341,1356,'N'),(341,1357,'N'),(341,1358,'N'),(341,1359,'N'),(341,1360,'N'),(341,1363,'N'),(341,1364,'N'),(341,1365,'N'),(341,1366,'S'),(341,1367,'N'),(341,1368,'N'),(341,1369,'N'),(341,1370,'N'),(341,1371,'N'),(341,1372,'N'),(341,1373,'N'),(341,1374,'N'),(341,1375,'N'),(341,1376,'N'),(341,1377,'N'),(341,1378,'N'),(341,1382,'N'),(341,1383,'N'),(341,1388,'N'),(341,1389,'N'),(341,1394,'N'),(341,1395,'N'),(341,1396,'N'),(341,1397,'N'),(341,1398,'N'),(341,1399,'N'),(341,1403,'N'),(341,1404,'N'),(341,1405,'N'),(341,1406,'S'),(341,1407,'N'),(341,1408,'N'),(341,1409,'N'),(341,1410,'N'),(341,1411,'N'),(341,1412,'N'),(341,1413,'N'),(341,1414,'N'),(341,1415,'N'),(341,1416,'N'),(341,1417,'N'),(341,1418,'N'),(341,1422,'N'),(341,1423,'N'),(341,1428,'N'),(341,1429,'N'),(341,1434,'N'),(341,1435,'N'),(341,1436,'N'),(341,1437,'N'),(341,1438,'N'),(341,1439,'N'),(341,1443,'N'),(341,1444,'N'),(341,1445,'N'),(341,1446,'S'),(341,1447,'N'),(341,1448,'N'),(341,1449,'N'),(341,1450,'N'),(341,1451,'N'),(341,1452,'N'),(341,1453,'N'),(341,1454,'N'),(341,1455,'N'),(341,1456,'N'),(341,1457,'N'),(341,1458,'N'),(341,1462,'N'),(341,1463,'N'),(341,1468,'N'),(341,1469,'N'),(341,1474,'N'),(341,1475,'N'),(341,1476,'N'),(341,1477,'N'),(341,1478,'N'),(341,1479,'N'),(341,1483,'N'),(341,1484,'N'),(341,1485,'N'),(341,1486,'S'),(341,1487,'N'),(341,1488,'N'),(341,1489,'N'),(341,1490,'N'),(341,1491,'N'),(341,1492,'N'),(341,1493,'N'),(341,1494,'N'),(341,1495,'N'),(341,1496,'N'),(341,1497,'N'),(341,1498,'N'),(341,1502,'N'),(341,1503,'N'),(341,1508,'N'),(341,1509,'N'),(341,1514,'N'),(341,1515,'N'),(341,1516,'N'),(341,1517,'N'),(341,1518,'N'),(341,1519,'N'),(341,1521,'N'),(341,1522,'N'),(341,1523,'N'),(341,1524,'N'),(341,1525,'N'),(341,1526,'S'),(341,1527,'N'),(341,1528,'N'),(341,1529,'N'),(341,1531,'N'),(341,1533,'N'),(341,1534,'N'),(341,1535,'N'),(341,1536,'N'),(341,1537,'N'),(341,1538,'N'),(341,1542,'N'),(341,1543,'N'),(341,1548,'N'),(341,1549,'N'),(341,1554,'N'),(341,1555,'N'),(341,1556,'N'),(341,1557,'N'),(341,1558,'N'),(341,1559,'N'),(341,1561,'N'),(341,1562,'N'),(341,1564,'N'),(341,1565,'N'),(341,1566,'N'),(341,1567,'S'),(341,1568,'N'),(341,1569,'N'),(341,1570,'N'),(341,1571,'N'),(341,1573,'N'),(341,1574,'N'),(341,1575,'N'),(341,1576,'N'),(341,1577,'N'),(341,1578,'N'),(341,1582,'N'),(341,1583,'N'),(341,1588,'N'),(341,1589,'N'),(341,1594,'N'),(341,1595,'N'),(341,1596,'N'),(341,1597,'N'),(341,1598,'N'),(341,1599,'N'),(341,1601,'N'),(341,1602,'N'),(341,1604,'N'),(341,1605,'N'),(341,1606,'N'),(341,1607,'S'),(341,1608,'N'),(341,1609,'N'),(341,1610,'N'),(341,1611,'N'),(341,1612,'N'),(341,1613,'N'),(341,1614,'N'),(341,1615,'N'),(341,1616,'N'),(341,1617,'N'),(341,1621,'N'),(341,1622,'N'),(341,1627,'N'),(341,1628,'N'),(341,1633,'N'),(341,1634,'N'),(341,1635,'N'),(341,1636,'N'),(341,1637,'N'),(341,1638,'N'),(341,1640,'N'),(341,1641,'N'),(366,1,'S'),(366,16,'S'),(366,31,'S'),(366,46,'S'),(366,61,'S'),(366,76,'S'),(366,91,'S'),(366,106,'S'),(366,121,'S'),(366,136,'S'),(366,151,'S'),(366,166,'S'),(366,181,'S'),(366,196,'S'),(366,211,'S'),(366,226,'S'),(366,241,'S'),(366,256,'S'),(366,271,'S'),(366,287,'S'),(366,303,'S'),(366,319,'S'),(366,335,'S'),(366,352,'S'),(366,369,'S'),(366,386,'S'),(366,403,'S'),(366,420,'S'),(366,437,'S'),(366,455,'S'),(366,474,'S'),(366,494,'S'),(366,514,'S'),(366,531,'S'),(366,552,'S'),(366,574,'S'),(366,597,'S'),(366,621,'S'),(366,646,'S'),(366,672,'S'),(366,699,'S'),(366,727,'S'),(366,756,'S'),(366,786,'S'),(366,817,'S'),(366,849,'S'),(366,882,'S'),(366,916,'S'),(366,951,'S'),(366,987,'S'),(366,1024,'S'),(366,1061,'S'),(366,1099,'S'),(366,1137,'S'),(366,1175,'S'),(366,1212,'S'),(366,1249,'S'),(366,1286,'S'),(366,1324,'S'),(366,1363,'S'),(366,1403,'S'),(366,1443,'S'),(366,1483,'S'),(366,1523,'S'),(366,1564,'S'),(366,1604,'S'),(368,12,'S'),(368,27,'S'),(368,42,'S'),(368,57,'S'),(368,72,'S'),(368,87,'S'),(368,102,'S'),(368,117,'S'),(368,132,'S'),(368,147,'S'),(368,162,'S'),(368,177,'S'),(368,192,'S'),(368,207,'S'),(368,222,'S'),(368,237,'S'),(368,252,'S'),(368,267,'S'),(368,282,'S'),(368,298,'S'),(368,314,'S'),(368,330,'S'),(368,346,'S'),(368,363,'S'),(368,380,'S'),(368,397,'S'),(368,414,'S'),(368,431,'S'),(368,448,'S'),(368,466,'S'),(368,485,'S'),(368,505,'S'),(368,525,'S'),(368,542,'S'),(368,563,'S'),(368,585,'S'),(368,608,'S'),(368,632,'S'),(368,657,'S'),(368,683,'S'),(368,710,'S'),(368,738,'S'),(368,767,'S'),(368,797,'S'),(368,828,'S'),(368,860,'S'),(368,893,'S'),(368,927,'S'),(368,962,'S'),(368,998,'S'),(368,1035,'S'),(368,1072,'S'),(368,1110,'S'),(368,1148,'S'),(368,1185,'S'),(368,1222,'S'),(368,1259,'S'),(368,1296,'S'),(368,1334,'S'),(368,1373,'S'),(368,1413,'S'),(368,1453,'S'),(368,1493,'S'),(368,1533,'S'),(368,1573,'S'),(368,1612,'S'),(369,12,'S'),(369,27,'S'),(369,42,'S'),(369,57,'S'),(369,72,'S'),(369,87,'S'),(369,102,'S'),(369,117,'S'),(369,132,'S'),(369,147,'S'),(369,162,'S'),(369,177,'S'),(369,192,'S'),(369,207,'S'),(369,222,'S'),(369,237,'S'),(369,252,'S'),(369,267,'S'),(369,282,'S'),(369,298,'S'),(369,314,'S'),(369,330,'S'),(369,346,'S'),(369,363,'S'),(369,380,'S'),(369,397,'S'),(369,414,'S'),(369,431,'S'),(369,448,'S'),(369,466,'S'),(369,485,'S'),(369,505,'S'),(369,525,'S'),(369,542,'S'),(369,563,'S'),(369,585,'S'),(369,608,'S'),(369,632,'S'),(369,657,'S'),(369,683,'S'),(369,710,'S'),(369,738,'S'),(369,767,'S'),(369,797,'S'),(369,828,'S'),(369,860,'S'),(369,893,'S'),(369,927,'S'),(369,962,'S'),(369,998,'S'),(369,1035,'S'),(369,1072,'S'),(369,1110,'S'),(369,1148,'S'),(369,1185,'S'),(369,1222,'S'),(369,1259,'S'),(369,1296,'S'),(369,1334,'S'),(369,1373,'S'),(369,1413,'S'),(369,1453,'S'),(369,1493,'S'),(369,1533,'S'),(369,1573,'S'),(369,1612,'S'),(370,1,'N'),(370,2,'N'),(370,3,'N'),(370,4,'S'),(370,5,'N'),(370,8,'N'),(370,9,'N'),(370,10,'N'),(370,11,'N'),(370,12,'N'),(370,13,'N'),(370,14,'N'),(370,15,'N'),(370,16,'N'),(370,17,'N'),(370,18,'N'),(370,19,'S'),(370,20,'N'),(370,23,'N'),(370,24,'N'),(370,25,'N'),(370,26,'N'),(370,27,'N'),(370,28,'N'),(370,29,'N'),(370,30,'N'),(370,31,'N'),(370,32,'N'),(370,33,'N'),(370,34,'S'),(370,35,'N'),(370,38,'N'),(370,39,'N'),(370,40,'N'),(370,41,'N'),(370,42,'N'),(370,43,'N'),(370,44,'N'),(370,45,'N'),(370,46,'N'),(370,47,'N'),(370,48,'N'),(370,49,'S'),(370,50,'N'),(370,53,'N'),(370,54,'N'),(370,55,'N'),(370,56,'N'),(370,57,'N'),(370,58,'N'),(370,59,'N'),(370,60,'N'),(370,61,'N'),(370,62,'N'),(370,63,'N'),(370,64,'S'),(370,65,'N'),(370,68,'N'),(370,69,'N'),(370,70,'N'),(370,71,'N'),(370,72,'N'),(370,73,'N'),(370,74,'N'),(370,75,'N'),(370,76,'N'),(370,77,'N'),(370,78,'N'),(370,79,'S'),(370,80,'N'),(370,83,'N'),(370,84,'N'),(370,85,'N'),(370,86,'N'),(370,87,'N'),(370,88,'N'),(370,89,'N'),(370,90,'N'),(370,91,'N'),(370,92,'N'),(370,93,'N'),(370,94,'S'),(370,95,'N'),(370,98,'N'),(370,99,'N'),(370,100,'N'),(370,101,'N'),(370,102,'N'),(370,103,'N'),(370,104,'N'),(370,105,'N'),(370,106,'N'),(370,107,'N'),(370,108,'N'),(370,109,'S'),(370,110,'N'),(370,113,'N'),(370,114,'N'),(370,115,'N'),(370,116,'N'),(370,117,'N'),(370,118,'N'),(370,119,'N'),(370,120,'N'),(370,121,'N'),(370,122,'N'),(370,123,'N'),(370,124,'S'),(370,125,'N'),(370,128,'N'),(370,129,'N'),(370,130,'N'),(370,131,'N'),(370,132,'N'),(370,133,'N'),(370,134,'N'),(370,135,'N'),(370,136,'N'),(370,137,'N'),(370,138,'N'),(370,139,'S'),(370,140,'N'),(370,143,'N'),(370,144,'N'),(370,145,'N'),(370,146,'N'),(370,147,'N'),(370,148,'N'),(370,149,'N'),(370,150,'N'),(370,151,'N'),(370,152,'N'),(370,153,'N'),(370,154,'S'),(370,155,'N'),(370,158,'N'),(370,159,'N'),(370,160,'N'),(370,161,'N'),(370,162,'N'),(370,163,'N'),(370,164,'N'),(370,165,'N'),(370,166,'N'),(370,167,'N'),(370,168,'N'),(370,169,'S'),(370,170,'N'),(370,173,'N'),(370,174,'N'),(370,175,'N'),(370,176,'N'),(370,177,'N'),(370,178,'N'),(370,179,'N'),(370,180,'N'),(370,181,'N'),(370,182,'N'),(370,183,'N'),(370,184,'S'),(370,185,'N'),(370,188,'N'),(370,189,'N'),(370,190,'N'),(370,191,'N'),(370,192,'N'),(370,193,'N'),(370,194,'N'),(370,195,'N'),(370,196,'N'),(370,197,'N'),(370,198,'N'),(370,199,'S'),(370,200,'N'),(370,203,'N'),(370,204,'N'),(370,205,'N'),(370,206,'N'),(370,207,'N'),(370,208,'N'),(370,209,'N'),(370,210,'N'),(370,211,'N'),(370,212,'N'),(370,213,'N'),(370,214,'S'),(370,215,'N'),(370,218,'N'),(370,219,'N'),(370,220,'N'),(370,221,'N'),(370,222,'N'),(370,223,'N'),(370,224,'N'),(370,225,'N'),(370,226,'N'),(370,227,'N'),(370,228,'N'),(370,229,'S'),(370,230,'N'),(370,233,'N'),(370,234,'N'),(370,235,'N'),(370,236,'N'),(370,237,'N'),(370,238,'N'),(370,239,'N'),(370,240,'N'),(370,241,'N'),(370,242,'N'),(370,243,'N'),(370,244,'S'),(370,245,'N'),(370,248,'N'),(370,249,'N'),(370,250,'N'),(370,251,'N'),(370,252,'N'),(370,253,'N'),(370,254,'N'),(370,255,'N'),(370,256,'N'),(370,257,'N'),(370,258,'N'),(370,259,'S'),(370,260,'N'),(370,263,'N'),(370,264,'N'),(370,265,'N'),(370,266,'N'),(370,267,'N'),(370,268,'N'),(370,269,'N'),(370,270,'N'),(370,271,'N'),(370,272,'N'),(370,273,'N'),(370,274,'S'),(370,275,'N'),(370,278,'N'),(370,279,'N'),(370,280,'N'),(370,281,'N'),(370,282,'N'),(370,283,'N'),(370,284,'N'),(370,285,'N'),(370,286,'N'),(370,287,'N'),(370,288,'N'),(370,289,'N'),(370,290,'S'),(370,291,'N'),(370,294,'N'),(370,295,'N'),(370,296,'N'),(370,297,'N'),(370,298,'N'),(370,299,'N'),(370,300,'N'),(370,301,'N'),(370,303,'N'),(370,304,'N'),(370,305,'N'),(370,306,'S'),(370,307,'N'),(370,310,'N'),(370,311,'N'),(370,312,'N'),(370,313,'N'),(370,314,'N'),(370,315,'N'),(370,316,'N'),(370,317,'N'),(370,318,'N'),(370,319,'N'),(370,320,'N'),(370,321,'N'),(370,322,'S'),(370,323,'N'),(370,326,'N'),(370,327,'N'),(370,328,'N'),(370,329,'N'),(370,330,'N'),(370,331,'N'),(370,332,'N'),(370,333,'N'),(370,334,'N'),(370,335,'N'),(370,336,'N'),(370,337,'N'),(370,338,'S'),(370,339,'N'),(370,342,'N'),(370,343,'N'),(370,344,'N'),(370,345,'N'),(370,346,'N'),(370,347,'N'),(370,348,'N'),(370,349,'N'),(370,350,'N'),(370,352,'N'),(370,353,'N'),(370,354,'N'),(370,355,'S'),(370,356,'N'),(370,359,'N'),(370,360,'N'),(370,361,'N'),(370,362,'N'),(370,363,'N'),(370,364,'N'),(370,365,'N'),(370,366,'N'),(370,367,'N'),(370,369,'N'),(370,370,'N'),(370,371,'N'),(370,372,'S'),(370,373,'N'),(370,376,'N'),(370,377,'N'),(370,378,'N'),(370,379,'N'),(370,380,'N'),(370,381,'N'),(370,382,'N'),(370,383,'N'),(370,384,'N'),(370,386,'N'),(370,387,'N'),(370,388,'N'),(370,389,'S'),(370,390,'N'),(370,393,'N'),(370,394,'N'),(370,395,'N'),(370,396,'N'),(370,397,'N'),(370,398,'N'),(370,399,'N'),(370,400,'N'),(370,401,'N'),(370,403,'N'),(370,404,'N'),(370,405,'N'),(370,406,'S'),(370,407,'N'),(370,410,'N'),(370,411,'N'),(370,412,'N'),(370,413,'N'),(370,414,'N'),(370,415,'N'),(370,416,'N'),(370,417,'N'),(370,418,'N'),(370,420,'N'),(370,421,'N'),(370,422,'N'),(370,423,'S'),(370,424,'N'),(370,427,'N'),(370,428,'N'),(370,429,'N'),(370,430,'N'),(370,431,'N'),(370,432,'N'),(370,433,'N'),(370,434,'N'),(370,435,'N'),(370,437,'N'),(370,438,'N'),(370,439,'N'),(370,440,'S'),(370,441,'N'),(370,444,'N'),(370,445,'N'),(370,446,'N'),(370,447,'N'),(370,448,'N'),(370,449,'N'),(370,450,'N'),(370,451,'N'),(370,452,'N'),(370,453,'N'),(370,455,'N'),(370,456,'N'),(370,457,'N'),(370,458,'S'),(370,459,'N'),(370,462,'N'),(370,463,'N'),(370,464,'N'),(370,465,'N'),(370,466,'N'),(370,467,'N'),(370,468,'N'),(370,469,'N'),(370,470,'N'),(370,471,'N'),(370,474,'N'),(370,475,'N'),(370,476,'N'),(370,477,'S'),(370,478,'N'),(370,481,'N'),(370,482,'N'),(370,483,'N'),(370,484,'N'),(370,485,'N'),(370,486,'N'),(370,487,'N'),(370,488,'N'),(370,489,'N'),(370,490,'N'),(370,494,'N'),(370,495,'N'),(370,496,'N'),(370,497,'S'),(370,498,'N'),(370,501,'N'),(370,502,'N'),(370,503,'N'),(370,504,'N'),(370,505,'N'),(370,506,'N'),(370,507,'N'),(370,508,'N'),(370,509,'N'),(370,510,'N'),(370,514,'N'),(370,515,'N'),(370,516,'N'),(370,517,'S'),(370,518,'N'),(370,521,'N'),(370,522,'N'),(370,523,'N'),(370,524,'N'),(370,525,'N'),(370,526,'N'),(370,527,'N'),(370,528,'N'),(370,529,'N'),(370,530,'N'),(370,531,'N'),(370,532,'N'),(370,533,'N'),(370,534,'S'),(370,535,'N'),(370,538,'N'),(370,539,'N'),(370,540,'N'),(370,541,'N'),(370,542,'N'),(370,543,'N'),(370,544,'N'),(370,545,'N'),(370,546,'N'),(370,547,'N'),(370,551,'N'),(370,552,'N'),(370,553,'N'),(370,554,'N'),(370,555,'S'),(370,556,'N'),(370,559,'N'),(370,560,'N'),(370,561,'N'),(370,562,'N'),(370,563,'N'),(370,564,'N'),(370,565,'N'),(370,566,'N'),(370,567,'N'),(370,568,'N'),(370,572,'N'),(370,573,'N'),(370,574,'N'),(370,575,'N'),(370,576,'N'),(370,577,'S'),(370,578,'N'),(370,581,'N'),(370,582,'N'),(370,583,'N'),(370,584,'N'),(370,585,'N'),(370,586,'N'),(370,587,'N'),(370,588,'N'),(370,589,'N'),(370,590,'N'),(370,594,'N'),(370,595,'N'),(370,597,'N'),(370,598,'N'),(370,599,'N'),(370,600,'S'),(370,601,'N'),(370,604,'N'),(370,605,'N'),(370,606,'N'),(370,607,'N'),(370,608,'N'),(370,609,'N'),(370,610,'N'),(370,611,'N'),(370,612,'N'),(370,613,'N'),(370,617,'N'),(370,618,'N'),(370,621,'N'),(370,622,'N'),(370,623,'N'),(370,624,'S'),(370,625,'N'),(370,628,'N'),(370,629,'N'),(370,630,'N'),(370,631,'N'),(370,632,'N'),(370,633,'N'),(370,634,'N'),(370,635,'N'),(370,636,'N'),(370,637,'N'),(370,641,'N'),(370,642,'N'),(370,646,'N'),(370,647,'N'),(370,648,'N'),(370,649,'S'),(370,650,'N'),(370,653,'N'),(370,654,'N'),(370,655,'N'),(370,656,'N'),(370,657,'N'),(370,658,'N'),(370,659,'N'),(370,660,'N'),(370,661,'N'),(370,662,'N'),(370,666,'N'),(370,667,'N'),(370,672,'N'),(370,673,'N'),(370,674,'N'),(370,675,'S'),(370,676,'N'),(370,679,'N'),(370,680,'N'),(370,681,'N'),(370,682,'N'),(370,683,'N'),(370,684,'N'),(370,685,'N'),(370,686,'N'),(370,687,'N'),(370,688,'N'),(370,692,'N'),(370,693,'N'),(370,698,'N'),(370,699,'N'),(370,700,'N'),(370,701,'N'),(370,702,'S'),(370,703,'N'),(370,706,'N'),(370,707,'N'),(370,708,'N'),(370,709,'N'),(370,710,'N'),(370,711,'N'),(370,712,'N'),(370,713,'N'),(370,714,'N'),(370,715,'N'),(370,719,'N'),(370,720,'N'),(370,725,'N'),(370,726,'N'),(370,727,'N'),(370,728,'N'),(370,729,'N'),(370,730,'S'),(370,731,'N'),(370,734,'N'),(370,735,'N'),(370,736,'N'),(370,737,'N'),(370,738,'N'),(370,739,'N'),(370,740,'N'),(370,741,'N'),(370,742,'N'),(370,743,'N'),(370,747,'N'),(370,748,'N'),(370,753,'N'),(370,754,'N'),(370,756,'N'),(370,757,'N'),(370,758,'N'),(370,759,'S'),(370,760,'N'),(370,763,'N'),(370,764,'N'),(370,765,'N'),(370,766,'N'),(370,767,'N'),(370,768,'N'),(370,769,'N'),(370,770,'N'),(370,771,'N'),(370,772,'N'),(370,776,'N'),(370,777,'N'),(370,782,'N'),(370,783,'N'),(370,786,'N'),(370,787,'N'),(370,788,'N'),(370,789,'S'),(370,790,'N'),(370,793,'N'),(370,794,'N'),(370,795,'N'),(370,796,'N'),(370,797,'N'),(370,798,'N'),(370,799,'N'),(370,800,'N'),(370,801,'N'),(370,802,'N'),(370,806,'N'),(370,807,'N'),(370,812,'N'),(370,813,'N'),(370,817,'N'),(370,818,'N'),(370,819,'N'),(370,820,'S'),(370,821,'N'),(370,824,'N'),(370,825,'N'),(370,826,'N'),(370,827,'N'),(370,828,'N'),(370,829,'N'),(370,830,'N'),(370,831,'N'),(370,832,'N'),(370,833,'N'),(370,837,'N'),(370,838,'N'),(370,843,'N'),(370,844,'N'),(370,849,'N'),(370,850,'N'),(370,851,'N'),(370,852,'S'),(370,853,'N'),(370,856,'N'),(370,857,'N'),(370,858,'N'),(370,859,'N'),(370,860,'N'),(370,861,'N'),(370,862,'N'),(370,863,'N'),(370,864,'N'),(370,865,'N'),(370,869,'N'),(370,870,'N'),(370,875,'N'),(370,876,'N'),(370,881,'N'),(370,882,'N'),(370,883,'N'),(370,884,'N'),(370,885,'S'),(370,886,'N'),(370,889,'N'),(370,890,'N'),(370,891,'N'),(370,892,'N'),(370,893,'N'),(370,894,'N'),(370,895,'N'),(370,896,'N'),(370,897,'N'),(370,898,'N'),(370,902,'N'),(370,903,'N'),(370,908,'N'),(370,909,'N'),(370,914,'N'),(370,915,'N'),(370,916,'N'),(370,917,'N'),(370,918,'N'),(370,919,'S'),(370,920,'N'),(370,923,'N'),(370,924,'N'),(370,925,'N'),(370,926,'N'),(370,927,'N'),(370,928,'N'),(370,929,'N'),(370,930,'N'),(370,931,'N'),(370,932,'N'),(370,936,'N'),(370,937,'N'),(370,942,'N'),(370,943,'N'),(370,948,'N'),(370,949,'N'),(370,950,'N'),(370,951,'N'),(370,952,'N'),(370,953,'N'),(370,954,'S'),(370,955,'N'),(370,958,'N'),(370,959,'N'),(370,960,'N'),(370,961,'N'),(370,962,'N'),(370,963,'N'),(370,964,'N'),(370,965,'N'),(370,966,'N'),(370,967,'N'),(370,971,'N'),(370,972,'N'),(370,977,'N'),(370,978,'N'),(370,983,'N'),(370,984,'N'),(370,985,'N'),(370,986,'N'),(370,987,'N'),(370,988,'N'),(370,989,'N'),(370,990,'S'),(370,991,'N'),(370,994,'N'),(370,995,'N'),(370,996,'N'),(370,997,'N'),(370,998,'N'),(370,999,'N'),(370,1000,'N'),(370,1001,'N'),(370,1002,'N'),(370,1003,'N'),(370,1007,'N'),(370,1008,'N'),(370,1013,'N'),(370,1014,'N'),(370,1019,'N'),(370,1020,'N'),(370,1021,'N'),(370,1022,'N'),(370,1023,'N'),(370,1024,'N'),(370,1025,'N'),(370,1026,'N'),(370,1027,'S'),(370,1028,'N'),(370,1031,'N'),(370,1032,'N'),(370,1033,'N'),(370,1034,'N'),(370,1035,'N'),(370,1036,'N'),(370,1037,'N'),(370,1038,'N'),(370,1039,'N'),(370,1040,'N'),(370,1044,'N'),(370,1045,'N'),(370,1050,'N'),(370,1051,'N'),(370,1056,'N'),(370,1057,'N'),(370,1058,'N'),(370,1059,'N'),(370,1060,'N'),(370,1061,'N'),(370,1062,'N'),(370,1063,'N'),(370,1064,'S'),(370,1065,'N'),(370,1068,'N'),(370,1069,'N'),(370,1070,'N'),(370,1071,'N'),(370,1072,'N'),(370,1073,'N'),(370,1074,'N'),(370,1075,'N'),(370,1076,'N'),(370,1077,'N'),(370,1081,'N'),(370,1082,'N'),(370,1087,'N'),(370,1088,'N'),(370,1093,'N'),(370,1094,'N'),(370,1095,'N'),(370,1096,'N'),(370,1097,'N'),(370,1098,'N'),(370,1099,'N'),(370,1100,'N'),(370,1101,'N'),(370,1102,'S'),(370,1103,'N'),(370,1104,'N'),(370,1106,'N'),(370,1107,'N'),(370,1108,'N'),(370,1109,'N'),(370,1110,'N'),(370,1111,'N'),(370,1112,'N'),(370,1113,'N'),(370,1114,'N'),(370,1115,'N'),(370,1119,'N'),(370,1120,'N'),(370,1125,'N'),(370,1126,'N'),(370,1131,'N'),(370,1132,'N'),(370,1133,'N'),(370,1134,'N'),(370,1135,'N'),(370,1136,'N'),(370,1137,'N'),(370,1138,'N'),(370,1139,'N'),(370,1140,'S'),(370,1141,'N'),(370,1142,'N'),(370,1144,'N'),(370,1145,'N'),(370,1146,'N'),(370,1147,'N'),(370,1148,'N'),(370,1149,'N'),(370,1150,'N'),(370,1151,'N'),(370,1152,'N'),(370,1153,'N'),(370,1157,'N'),(370,1158,'N'),(370,1163,'N'),(370,1164,'N'),(370,1169,'N'),(370,1170,'N'),(370,1171,'N'),(370,1172,'N'),(370,1173,'N'),(370,1174,'N'),(370,1175,'N'),(370,1176,'N'),(370,1177,'N'),(370,1178,'S'),(370,1179,'N'),(370,1180,'N'),(370,1181,'N'),(370,1182,'N'),(370,1183,'N'),(370,1184,'N'),(370,1185,'N'),(370,1186,'N'),(370,1187,'N'),(370,1188,'N'),(370,1189,'N'),(370,1190,'N'),(370,1194,'N'),(370,1195,'N'),(370,1200,'N'),(370,1201,'N'),(370,1206,'N'),(370,1207,'N'),(370,1208,'N'),(370,1209,'N'),(370,1210,'N'),(370,1211,'N'),(370,1212,'N'),(370,1213,'N'),(370,1214,'N'),(370,1215,'S'),(370,1216,'N'),(370,1217,'N'),(370,1218,'N'),(370,1219,'N'),(370,1220,'N'),(370,1221,'N'),(370,1222,'N'),(370,1223,'N'),(370,1224,'N'),(370,1225,'N'),(370,1226,'N'),(370,1227,'N'),(370,1231,'N'),(370,1232,'N'),(370,1237,'N'),(370,1238,'N'),(370,1243,'N'),(370,1244,'N'),(370,1245,'N'),(370,1246,'N'),(370,1247,'N'),(370,1248,'N'),(370,1249,'N'),(370,1250,'N'),(370,1251,'N'),(370,1252,'S'),(370,1253,'N'),(370,1254,'N'),(370,1255,'N'),(370,1256,'N'),(370,1257,'N'),(370,1258,'N'),(370,1259,'N'),(370,1260,'N'),(370,1261,'N'),(370,1262,'N'),(370,1263,'N'),(370,1264,'N'),(370,1268,'N'),(370,1269,'N'),(370,1274,'N'),(370,1275,'N'),(370,1280,'N'),(370,1281,'N'),(370,1282,'N'),(370,1283,'N'),(370,1284,'N'),(370,1285,'N'),(370,1286,'N'),(370,1287,'N'),(370,1288,'N'),(370,1289,'S'),(370,1290,'N'),(370,1291,'N'),(370,1292,'N'),(370,1293,'N'),(370,1294,'N'),(370,1295,'N'),(370,1296,'N'),(370,1297,'N'),(370,1298,'N'),(370,1299,'N'),(370,1300,'N'),(370,1301,'N'),(370,1305,'N'),(370,1306,'N'),(370,1311,'N'),(370,1312,'N'),(370,1317,'N'),(370,1318,'N'),(370,1319,'N'),(370,1320,'N'),(370,1321,'N'),(370,1322,'N'),(370,1324,'N'),(370,1325,'N'),(370,1326,'N'),(370,1327,'S'),(370,1328,'N'),(370,1329,'N'),(370,1330,'N'),(370,1331,'N'),(370,1332,'N'),(370,1333,'N'),(370,1334,'N'),(370,1335,'N'),(370,1336,'N'),(370,1337,'N'),(370,1338,'N'),(370,1339,'N'),(370,1343,'N'),(370,1344,'N'),(370,1349,'N'),(370,1350,'N'),(370,1355,'N'),(370,1356,'N'),(370,1357,'N'),(370,1358,'N'),(370,1359,'N'),(370,1360,'N'),(370,1363,'N'),(370,1364,'N'),(370,1365,'N'),(370,1366,'S'),(370,1367,'N'),(370,1368,'N'),(370,1369,'N'),(370,1370,'N'),(370,1371,'N'),(370,1372,'N'),(370,1373,'N'),(370,1374,'N'),(370,1375,'N'),(370,1376,'N'),(370,1377,'N'),(370,1378,'N'),(370,1382,'N'),(370,1383,'N'),(370,1388,'N'),(370,1389,'N'),(370,1394,'N'),(370,1395,'N'),(370,1396,'N'),(370,1397,'N'),(370,1398,'N'),(370,1399,'N'),(370,1403,'N'),(370,1404,'N'),(370,1405,'N'),(370,1406,'S'),(370,1407,'N'),(370,1408,'N'),(370,1409,'N'),(370,1410,'N'),(370,1411,'N'),(370,1412,'N'),(370,1413,'N'),(370,1414,'N'),(370,1415,'N'),(370,1416,'N'),(370,1417,'N'),(370,1418,'N'),(370,1422,'N'),(370,1423,'N'),(370,1428,'N'),(370,1429,'N'),(370,1434,'N'),(370,1435,'N'),(370,1436,'N'),(370,1437,'N'),(370,1438,'N'),(370,1439,'N'),(370,1443,'N'),(370,1444,'N'),(370,1445,'N'),(370,1446,'S'),(370,1447,'N'),(370,1448,'N'),(370,1449,'N'),(370,1450,'N'),(370,1451,'N'),(370,1452,'N'),(370,1453,'N'),(370,1454,'N'),(370,1455,'N'),(370,1456,'N'),(370,1457,'N'),(370,1458,'N'),(370,1462,'N'),(370,1463,'N'),(370,1468,'N'),(370,1469,'N'),(370,1474,'N'),(370,1475,'N'),(370,1476,'N'),(370,1477,'N'),(370,1478,'N'),(370,1479,'N'),(370,1483,'N'),(370,1484,'N'),(370,1485,'N'),(370,1486,'S'),(370,1487,'N'),(370,1488,'N'),(370,1489,'N'),(370,1490,'N'),(370,1491,'N'),(370,1492,'N'),(370,1493,'N'),(370,1494,'N'),(370,1495,'N'),(370,1496,'N'),(370,1497,'N'),(370,1498,'N'),(370,1502,'N'),(370,1503,'N'),(370,1508,'N'),(370,1509,'N'),(370,1514,'N'),(370,1515,'N'),(370,1516,'N'),(370,1517,'N'),(370,1518,'N'),(370,1519,'N'),(370,1521,'N'),(370,1522,'N'),(370,1523,'N'),(370,1524,'N'),(370,1525,'N'),(370,1526,'S'),(370,1527,'N'),(370,1528,'N'),(370,1529,'N'),(370,1531,'N'),(370,1533,'N'),(370,1534,'N'),(370,1535,'N'),(370,1536,'N'),(370,1537,'N'),(370,1538,'N'),(370,1542,'N'),(370,1543,'N'),(370,1548,'N'),(370,1549,'N'),(370,1554,'N'),(370,1555,'N'),(370,1556,'N'),(370,1557,'N'),(370,1558,'N'),(370,1559,'N'),(370,1561,'N'),(370,1562,'N'),(370,1564,'N'),(370,1565,'N'),(370,1566,'N'),(370,1567,'S'),(370,1568,'N'),(370,1569,'N'),(370,1570,'N'),(370,1571,'N'),(370,1573,'N'),(370,1574,'N'),(370,1575,'N'),(370,1576,'N'),(370,1577,'N'),(370,1578,'N'),(370,1582,'N'),(370,1583,'N'),(370,1588,'N'),(370,1589,'N'),(370,1594,'N'),(370,1595,'N'),(370,1596,'N'),(370,1597,'N'),(370,1598,'N'),(370,1599,'N'),(370,1601,'N'),(370,1602,'N'),(370,1604,'N'),(370,1605,'N'),(370,1606,'N'),(370,1607,'S'),(370,1608,'N'),(370,1609,'N'),(370,1610,'N'),(370,1611,'N'),(370,1612,'N'),(370,1613,'N'),(370,1614,'N'),(370,1615,'N'),(370,1616,'N'),(370,1617,'N'),(370,1621,'N'),(370,1622,'N'),(370,1627,'N'),(370,1628,'N'),(370,1633,'N'),(370,1634,'N'),(370,1635,'N'),(370,1636,'N'),(370,1637,'N'),(370,1638,'N'),(370,1640,'N'),(370,1641,'N'),(382,453,'S'),(382,471,'S'),(382,490,'S'),(382,510,'S'),(382,530,'S'),(382,547,'S'),(382,568,'S'),(382,590,'S'),(382,613,'S'),(382,637,'S'),(382,662,'S'),(382,688,'S'),(382,715,'S'),(382,743,'S'),(382,772,'S'),(382,802,'S'),(382,833,'S'),(382,865,'S'),(382,898,'S'),(382,932,'S'),(382,967,'S'),(382,1003,'S'),(382,1040,'S'),(382,1077,'S'),(382,1115,'S'),(382,1153,'S'),(382,1190,'S'),(382,1227,'S'),(382,1264,'S'),(382,1301,'S'),(382,1339,'S'),(382,1378,'S'),(382,1418,'S'),(382,1458,'S'),(382,1498,'S'),(382,1538,'S'),(382,1578,'S'),(382,1617,'S'),(383,286,'S'),(383,318,'S'),(383,334,'S'),(383,350,'S'),(383,367,'S'),(383,384,'S'),(383,401,'S'),(383,418,'S'),(383,435,'S'),(383,452,'S'),(383,470,'S'),(383,489,'S'),(383,509,'S'),(383,529,'S'),(383,546,'S'),(383,567,'S'),(383,589,'S'),(383,612,'S'),(383,636,'S'),(383,661,'S'),(383,687,'S'),(383,714,'S'),(383,742,'S'),(383,771,'S'),(383,801,'S'),(383,832,'S'),(383,864,'S'),(383,897,'S'),(383,931,'S'),(383,966,'S'),(383,1002,'S'),(383,1039,'S'),(383,1076,'S'),(383,1114,'S'),(383,1152,'S'),(383,1189,'S'),(383,1226,'S'),(383,1263,'S'),(383,1300,'S'),(383,1338,'S'),(383,1377,'S'),(383,1417,'S'),(383,1457,'S'),(383,1497,'S'),(383,1537,'S'),(383,1577,'S'),(383,1616,'S'),(384,1,'N'),(384,2,'N'),(384,3,'N'),(384,4,'N'),(384,5,'S'),(384,8,'N'),(384,9,'N'),(384,10,'N'),(384,11,'N'),(384,12,'N'),(384,13,'N'),(384,14,'N'),(384,15,'N'),(384,16,'N'),(384,17,'N'),(384,18,'N'),(384,19,'N'),(384,20,'S'),(384,23,'N'),(384,24,'N'),(384,25,'N'),(384,26,'N'),(384,27,'N'),(384,28,'N'),(384,29,'N'),(384,30,'N'),(384,31,'N'),(384,32,'N'),(384,33,'N'),(384,34,'N'),(384,35,'S'),(384,38,'N'),(384,39,'N'),(384,40,'N'),(384,41,'N'),(384,42,'N'),(384,43,'N'),(384,44,'N'),(384,45,'N'),(384,46,'N'),(384,47,'N'),(384,48,'N'),(384,49,'N'),(384,50,'S'),(384,53,'N'),(384,54,'N'),(384,55,'N'),(384,56,'N'),(384,57,'N'),(384,58,'N'),(384,59,'N'),(384,60,'N'),(384,61,'N'),(384,62,'N'),(384,63,'N'),(384,64,'N'),(384,65,'S'),(384,68,'N'),(384,69,'N'),(384,70,'N'),(384,71,'N'),(384,72,'N'),(384,73,'N'),(384,74,'N'),(384,75,'N'),(384,76,'N'),(384,77,'N'),(384,78,'N'),(384,79,'N'),(384,80,'S'),(384,83,'N'),(384,84,'N'),(384,85,'N'),(384,86,'N'),(384,87,'N'),(384,88,'N'),(384,89,'N'),(384,90,'N'),(384,91,'N'),(384,92,'N'),(384,93,'N'),(384,94,'N'),(384,95,'S'),(384,98,'N'),(384,99,'N'),(384,100,'N'),(384,101,'N'),(384,102,'N'),(384,103,'N'),(384,104,'N'),(384,105,'N'),(384,106,'N'),(384,107,'N'),(384,108,'N'),(384,109,'N'),(384,110,'S'),(384,113,'N'),(384,114,'N'),(384,115,'N'),(384,116,'N'),(384,117,'N'),(384,118,'N'),(384,119,'N'),(384,120,'N'),(384,121,'N'),(384,122,'N'),(384,123,'N'),(384,124,'N'),(384,125,'S'),(384,128,'N'),(384,129,'N'),(384,130,'N'),(384,131,'N'),(384,132,'N'),(384,133,'N'),(384,134,'N'),(384,135,'N'),(384,136,'N'),(384,137,'N'),(384,138,'N'),(384,139,'N'),(384,140,'S'),(384,143,'N'),(384,144,'N'),(384,145,'N'),(384,146,'N'),(384,147,'N'),(384,148,'N'),(384,149,'N'),(384,150,'N'),(384,151,'N'),(384,152,'N'),(384,153,'N'),(384,154,'N'),(384,155,'S'),(384,158,'N'),(384,159,'N'),(384,160,'N'),(384,161,'N'),(384,162,'N'),(384,163,'N'),(384,164,'N'),(384,165,'N'),(384,166,'N'),(384,167,'N'),(384,168,'N'),(384,169,'N'),(384,170,'S'),(384,173,'N'),(384,174,'N'),(384,175,'N'),(384,176,'N'),(384,177,'N'),(384,178,'N'),(384,179,'N'),(384,180,'N'),(384,181,'N'),(384,182,'N'),(384,183,'N'),(384,184,'N'),(384,185,'S'),(384,188,'N'),(384,189,'N'),(384,190,'N'),(384,191,'N'),(384,192,'N'),(384,193,'N'),(384,194,'N'),(384,195,'N'),(384,196,'N'),(384,197,'N'),(384,198,'N'),(384,199,'N'),(384,200,'S'),(384,203,'N'),(384,204,'N'),(384,205,'N'),(384,206,'N'),(384,207,'N'),(384,208,'N'),(384,209,'N'),(384,210,'N'),(384,211,'N'),(384,212,'N'),(384,213,'N'),(384,214,'N'),(384,215,'S'),(384,218,'N'),(384,219,'N'),(384,220,'N'),(384,221,'N'),(384,222,'N'),(384,223,'N'),(384,224,'N'),(384,225,'N'),(384,226,'N'),(384,227,'N'),(384,228,'N'),(384,229,'N'),(384,230,'S'),(384,233,'N'),(384,234,'N'),(384,235,'N'),(384,236,'N'),(384,237,'N'),(384,238,'N'),(384,239,'N'),(384,240,'N'),(384,241,'N'),(384,242,'N'),(384,243,'N'),(384,244,'N'),(384,245,'S'),(384,248,'N'),(384,249,'N'),(384,250,'N'),(384,251,'N'),(384,252,'N'),(384,253,'N'),(384,254,'N'),(384,255,'N'),(384,256,'N'),(384,257,'N'),(384,258,'N'),(384,259,'N'),(384,260,'S'),(384,263,'N'),(384,264,'N'),(384,265,'N'),(384,266,'N'),(384,267,'N'),(384,268,'N'),(384,269,'N'),(384,270,'N'),(384,271,'N'),(384,272,'N'),(384,273,'N'),(384,274,'N'),(384,275,'S'),(384,278,'N'),(384,279,'N'),(384,280,'N'),(384,281,'N'),(384,282,'N'),(384,283,'N'),(384,284,'N'),(384,285,'N'),(384,286,'N'),(384,287,'N'),(384,288,'N'),(384,289,'N'),(384,290,'N'),(384,291,'S'),(384,294,'N'),(384,295,'N'),(384,296,'N'),(384,297,'N'),(384,298,'N'),(384,299,'N'),(384,300,'N'),(384,301,'N'),(384,303,'N'),(384,304,'N'),(384,305,'N'),(384,306,'N'),(384,307,'S'),(384,310,'N'),(384,311,'N'),(384,312,'N'),(384,313,'N'),(384,314,'N'),(384,315,'N'),(384,316,'N'),(384,317,'N'),(384,318,'N'),(384,319,'N'),(384,320,'N'),(384,321,'N'),(384,322,'N'),(384,323,'S'),(384,326,'N'),(384,327,'N'),(384,328,'N'),(384,329,'N'),(384,330,'N'),(384,331,'N'),(384,332,'N'),(384,333,'N'),(384,334,'N'),(384,335,'N'),(384,336,'N'),(384,337,'N'),(384,338,'N'),(384,339,'S'),(384,342,'N'),(384,343,'N'),(384,344,'N'),(384,345,'N'),(384,346,'N'),(384,347,'N'),(384,348,'N'),(384,349,'N'),(384,350,'N'),(384,352,'N'),(384,353,'N'),(384,354,'N'),(384,355,'N'),(384,356,'S'),(384,359,'N'),(384,360,'N'),(384,361,'N'),(384,362,'N'),(384,363,'N'),(384,364,'N'),(384,365,'N'),(384,366,'N'),(384,367,'N'),(384,369,'N'),(384,370,'N'),(384,371,'N'),(384,372,'N'),(384,373,'S'),(384,376,'N'),(384,377,'N'),(384,378,'N'),(384,379,'N'),(384,380,'N'),(384,381,'N'),(384,382,'N'),(384,383,'N'),(384,384,'N'),(384,386,'N'),(384,387,'N'),(384,388,'N'),(384,389,'N'),(384,390,'S'),(384,393,'N'),(384,394,'N'),(384,395,'N'),(384,396,'N'),(384,397,'N'),(384,398,'N'),(384,399,'N'),(384,400,'N'),(384,401,'N'),(384,403,'N'),(384,404,'N'),(384,405,'N'),(384,406,'N'),(384,407,'S'),(384,410,'N'),(384,411,'N'),(384,412,'N'),(384,413,'N'),(384,414,'N'),(384,415,'N'),(384,416,'N'),(384,417,'N'),(384,418,'N'),(384,420,'N'),(384,421,'N'),(384,422,'N'),(384,423,'N'),(384,424,'S'),(384,427,'N'),(384,428,'N'),(384,429,'N'),(384,430,'N'),(384,431,'N'),(384,432,'N'),(384,433,'N'),(384,434,'N'),(384,435,'N'),(384,437,'N'),(384,438,'N'),(384,439,'N'),(384,440,'N'),(384,441,'S'),(384,444,'N'),(384,445,'N'),(384,446,'N'),(384,447,'N'),(384,448,'N'),(384,449,'N'),(384,450,'N'),(384,451,'N'),(384,452,'N'),(384,453,'N'),(384,455,'N'),(384,456,'N'),(384,457,'N'),(384,458,'N'),(384,459,'S'),(384,462,'N'),(384,463,'N'),(384,464,'N'),(384,465,'N'),(384,466,'N'),(384,467,'N'),(384,468,'N'),(384,469,'N'),(384,470,'N'),(384,471,'N'),(384,474,'N'),(384,475,'N'),(384,476,'N'),(384,477,'N'),(384,478,'S'),(384,481,'N'),(384,482,'N'),(384,483,'N'),(384,484,'N'),(384,485,'N'),(384,486,'N'),(384,487,'N'),(384,488,'N'),(384,489,'N'),(384,490,'N'),(384,494,'N'),(384,495,'N'),(384,496,'N'),(384,497,'N'),(384,498,'S'),(384,501,'N'),(384,502,'N'),(384,503,'N'),(384,504,'N'),(384,505,'N'),(384,506,'N'),(384,507,'N'),(384,508,'N'),(384,509,'N'),(384,510,'N'),(384,514,'N'),(384,515,'N'),(384,516,'N'),(384,517,'N'),(384,518,'S'),(384,521,'N'),(384,522,'N'),(384,523,'N'),(384,524,'N'),(384,525,'N'),(384,526,'N'),(384,527,'N'),(384,528,'N'),(384,529,'N'),(384,530,'N'),(384,531,'N'),(384,532,'N'),(384,533,'N'),(384,534,'N'),(384,535,'S'),(384,538,'N'),(384,539,'N'),(384,540,'N'),(384,541,'N'),(384,542,'N'),(384,543,'N'),(384,544,'N'),(384,545,'N'),(384,546,'N'),(384,547,'N'),(384,552,'N'),(384,553,'N'),(384,554,'N'),(384,555,'N'),(384,556,'S'),(384,559,'N'),(384,560,'N'),(384,561,'N'),(384,562,'N'),(384,563,'N'),(384,564,'N'),(384,565,'N'),(384,566,'N'),(384,567,'N'),(384,568,'N'),(384,574,'N'),(384,575,'N'),(384,576,'N'),(384,577,'N'),(384,578,'S'),(384,581,'N'),(384,582,'N'),(384,583,'N'),(384,584,'N'),(384,585,'N'),(384,586,'N'),(384,587,'N'),(384,588,'N'),(384,589,'N'),(384,590,'N'),(384,597,'N'),(384,598,'N'),(384,599,'N'),(384,600,'N'),(384,601,'S'),(384,604,'N'),(384,605,'N'),(384,606,'N'),(384,607,'N'),(384,608,'N'),(384,609,'N'),(384,610,'N'),(384,611,'N'),(384,612,'N'),(384,613,'N'),(384,621,'N'),(384,622,'N'),(384,623,'N'),(384,624,'N'),(384,625,'S'),(384,628,'N'),(384,629,'N'),(384,630,'N'),(384,631,'N'),(384,632,'N'),(384,633,'N'),(384,634,'N'),(384,635,'N'),(384,636,'N'),(384,637,'N'),(384,646,'N'),(384,647,'N'),(384,648,'N'),(384,649,'N'),(384,650,'S'),(384,653,'N'),(384,654,'N'),(384,655,'N'),(384,656,'N'),(384,657,'N'),(384,658,'N'),(384,659,'N'),(384,660,'N'),(384,661,'N'),(384,662,'N'),(384,672,'N'),(384,673,'N'),(384,674,'N'),(384,675,'N'),(384,676,'S'),(384,679,'N'),(384,680,'N'),(384,681,'N'),(384,682,'N'),(384,683,'N'),(384,684,'N'),(384,685,'N'),(384,686,'N'),(384,687,'N'),(384,688,'N'),(384,699,'N'),(384,700,'N'),(384,701,'N'),(384,702,'N'),(384,703,'S'),(384,706,'N'),(384,707,'N'),(384,708,'N'),(384,709,'N'),(384,710,'N'),(384,711,'N'),(384,712,'N'),(384,713,'N'),(384,714,'N'),(384,715,'N'),(384,727,'N'),(384,728,'N'),(384,729,'N'),(384,730,'N'),(384,731,'S'),(384,734,'N'),(384,735,'N'),(384,736,'N'),(384,737,'N'),(384,738,'N'),(384,739,'N'),(384,740,'N'),(384,741,'N'),(384,742,'N'),(384,743,'N'),(384,756,'N'),(384,757,'N'),(384,758,'N'),(384,759,'N'),(384,760,'S'),(384,763,'N'),(384,764,'N'),(384,765,'N'),(384,766,'N'),(384,767,'N'),(384,768,'N'),(384,769,'N'),(384,770,'N'),(384,771,'N'),(384,772,'N'),(384,786,'N'),(384,787,'N'),(384,788,'N'),(384,789,'N'),(384,790,'S'),(384,793,'N'),(384,794,'N'),(384,795,'N'),(384,796,'N'),(384,797,'N'),(384,798,'N'),(384,799,'N'),(384,800,'N'),(384,801,'N'),(384,802,'N'),(384,817,'N'),(384,818,'N'),(384,819,'N'),(384,820,'N'),(384,821,'S'),(384,824,'N'),(384,825,'N'),(384,826,'N'),(384,827,'N'),(384,828,'N'),(384,829,'N'),(384,830,'N'),(384,831,'N'),(384,832,'N'),(384,833,'N'),(384,849,'N'),(384,850,'N'),(384,851,'N'),(384,852,'N'),(384,853,'S'),(384,856,'N'),(384,857,'N'),(384,858,'N'),(384,859,'N'),(384,860,'N'),(384,861,'N'),(384,862,'N'),(384,863,'N'),(384,864,'N'),(384,865,'N'),(384,882,'N'),(384,883,'N'),(384,884,'N'),(384,885,'N'),(384,886,'S'),(384,889,'N'),(384,890,'N'),(384,891,'N'),(384,892,'N'),(384,893,'N'),(384,894,'N'),(384,895,'N'),(384,896,'N'),(384,897,'N'),(384,898,'N'),(384,916,'N'),(384,917,'N'),(384,918,'N'),(384,919,'N'),(384,920,'S'),(384,923,'N'),(384,924,'N'),(384,925,'N'),(384,926,'N'),(384,927,'N'),(384,928,'N'),(384,929,'N'),(384,930,'N'),(384,931,'N'),(384,932,'N'),(384,951,'N'),(384,952,'N'),(384,953,'N'),(384,954,'N'),(384,955,'S'),(384,958,'N'),(384,959,'N'),(384,960,'N'),(384,961,'N'),(384,962,'N'),(384,963,'N'),(384,964,'N'),(384,965,'N'),(384,966,'N'),(384,967,'N'),(384,987,'N'),(384,988,'N'),(384,989,'N'),(384,990,'N'),(384,991,'S'),(384,994,'N'),(384,995,'N'),(384,996,'N'),(384,997,'N'),(384,998,'N'),(384,999,'N'),(384,1000,'N'),(384,1001,'N'),(384,1002,'N'),(384,1003,'N'),(384,1024,'N'),(384,1025,'N'),(384,1026,'N'),(384,1027,'N'),(384,1028,'S'),(384,1031,'N'),(384,1032,'N'),(384,1033,'N'),(384,1034,'N'),(384,1035,'N'),(384,1036,'N'),(384,1037,'N'),(384,1038,'N'),(384,1039,'N'),(384,1040,'N'),(384,1061,'N'),(384,1062,'N'),(384,1063,'N'),(384,1064,'N'),(384,1065,'S'),(384,1068,'N'),(384,1069,'N'),(384,1070,'N'),(384,1071,'N'),(384,1072,'N'),(384,1073,'N'),(384,1074,'N'),(384,1075,'N'),(384,1076,'N'),(384,1077,'N'),(384,1099,'N'),(384,1100,'N'),(384,1101,'N'),(384,1102,'N'),(384,1103,'S'),(384,1104,'N'),(384,1106,'N'),(384,1107,'N'),(384,1108,'N'),(384,1109,'N'),(384,1110,'N'),(384,1111,'N'),(384,1112,'N'),(384,1113,'N'),(384,1114,'N'),(384,1115,'N'),(384,1137,'N'),(384,1138,'N'),(384,1139,'N'),(384,1140,'N'),(384,1141,'S'),(384,1142,'N'),(384,1144,'N'),(384,1145,'N'),(384,1146,'N'),(384,1147,'N'),(384,1148,'N'),(384,1149,'N'),(384,1150,'N'),(384,1151,'N'),(384,1152,'N'),(384,1153,'N'),(384,1175,'N'),(384,1176,'N'),(384,1177,'N'),(384,1178,'N'),(384,1179,'S'),(384,1180,'N'),(384,1181,'N'),(384,1182,'N'),(384,1183,'N'),(384,1184,'N'),(384,1185,'N'),(384,1186,'N'),(384,1187,'N'),(384,1188,'N'),(384,1189,'N'),(384,1190,'N'),(384,1212,'N'),(384,1213,'N'),(384,1214,'N'),(384,1215,'N'),(384,1216,'S'),(384,1217,'N'),(384,1218,'N'),(384,1219,'N'),(384,1220,'N'),(384,1221,'N'),(384,1222,'N'),(384,1223,'N'),(384,1224,'N'),(384,1225,'N'),(384,1226,'N'),(384,1227,'N'),(384,1251,'N'),(384,1252,'N'),(384,1253,'S'),(384,1254,'N'),(384,1255,'N'),(384,1257,'N'),(384,1258,'N'),(384,1259,'N'),(384,1260,'N'),(384,1261,'N'),(384,1262,'N'),(384,1263,'N'),(384,1264,'N'),(384,1268,'N'),(384,1269,'N'),(384,1274,'N'),(384,1275,'N'),(384,1280,'N'),(384,1281,'N'),(384,1282,'N'),(384,1283,'N'),(384,1284,'N'),(384,1285,'N'),(384,1288,'N'),(384,1289,'N'),(384,1290,'S'),(384,1291,'N'),(384,1292,'N'),(384,1294,'N'),(384,1295,'N'),(384,1296,'N'),(384,1297,'N'),(384,1298,'N'),(384,1299,'N'),(384,1300,'N'),(384,1301,'N'),(384,1305,'N'),(384,1306,'N'),(384,1311,'N'),(384,1312,'N'),(384,1317,'N'),(384,1318,'N'),(384,1319,'N'),(384,1320,'N'),(384,1321,'N'),(384,1322,'N'),(384,1326,'N'),(384,1327,'N'),(384,1328,'S'),(384,1329,'N'),(384,1330,'N'),(384,1332,'N'),(384,1333,'N'),(384,1334,'N'),(384,1335,'N'),(384,1336,'N'),(384,1337,'N'),(384,1338,'N'),(384,1339,'N'),(384,1343,'N'),(384,1344,'N'),(384,1349,'N'),(384,1350,'N'),(384,1355,'N'),(384,1356,'N'),(384,1357,'N'),(384,1358,'N'),(384,1359,'N'),(384,1360,'N'),(384,1365,'N'),(384,1366,'N'),(384,1367,'S'),(384,1368,'N'),(384,1369,'N'),(384,1371,'N'),(384,1372,'N'),(384,1373,'N'),(384,1374,'N'),(384,1375,'N'),(384,1376,'N'),(384,1377,'N'),(384,1378,'N'),(384,1382,'N'),(384,1383,'N'),(384,1388,'N'),(384,1389,'N'),(384,1394,'N'),(384,1395,'N'),(384,1396,'N'),(384,1397,'N'),(384,1398,'N'),(384,1399,'N'),(384,1405,'N'),(384,1406,'N'),(384,1407,'S'),(384,1408,'N'),(384,1409,'N'),(384,1411,'N'),(384,1412,'N'),(384,1413,'N'),(384,1414,'N'),(384,1415,'N'),(384,1416,'N'),(384,1417,'N'),(384,1418,'N'),(384,1422,'N'),(384,1423,'N'),(384,1428,'N'),(384,1429,'N'),(384,1434,'N'),(384,1435,'N'),(384,1436,'N'),(384,1437,'N'),(384,1438,'N'),(384,1439,'N'),(384,1445,'N'),(384,1446,'N'),(384,1447,'S'),(384,1448,'N'),(384,1449,'N'),(384,1451,'N'),(384,1452,'N'),(384,1453,'N'),(384,1454,'N'),(384,1455,'N'),(384,1456,'N'),(384,1457,'N'),(384,1458,'N'),(384,1462,'N'),(384,1463,'N'),(384,1468,'N'),(384,1469,'N'),(384,1474,'N'),(384,1475,'N'),(384,1476,'N'),(384,1477,'N'),(384,1478,'N'),(384,1479,'N'),(384,1485,'N'),(384,1486,'N'),(384,1487,'S'),(384,1488,'N'),(384,1489,'N'),(384,1491,'N'),(384,1493,'N'),(384,1494,'N'),(384,1495,'N'),(384,1496,'N'),(384,1497,'N'),(384,1498,'N'),(384,1502,'N'),(384,1503,'N'),(384,1508,'N'),(384,1509,'N'),(384,1514,'N'),(384,1515,'N'),(384,1516,'N'),(384,1517,'N'),(384,1518,'N'),(384,1519,'N'),(384,1525,'N'),(384,1526,'N'),(384,1527,'S'),(384,1528,'N'),(384,1529,'N'),(384,1531,'N'),(384,1533,'N'),(384,1534,'N'),(384,1535,'N'),(384,1536,'N'),(384,1537,'N'),(384,1538,'N'),(384,1542,'N'),(384,1543,'N'),(384,1548,'N'),(384,1549,'N'),(384,1554,'N'),(384,1555,'N'),(384,1556,'N'),(384,1557,'N'),(384,1558,'N'),(384,1559,'N'),(384,1566,'N'),(384,1567,'N'),(384,1568,'S'),(384,1569,'N'),(384,1570,'N'),(384,1571,'N'),(384,1573,'N'),(384,1574,'N'),(384,1575,'N'),(384,1576,'N'),(384,1577,'N'),(384,1578,'N'),(384,1582,'N'),(384,1583,'N'),(384,1588,'N'),(384,1589,'N'),(384,1594,'N'),(384,1595,'N'),(384,1596,'N'),(384,1597,'N'),(384,1598,'N'),(384,1599,'N'),(384,1606,'N'),(384,1607,'N'),(384,1608,'S'),(384,1609,'N'),(384,1610,'N'),(384,1611,'N'),(384,1612,'N'),(384,1613,'N'),(384,1614,'N'),(384,1615,'N'),(384,1616,'N'),(384,1617,'N'),(384,1621,'N'),(384,1622,'N'),(384,1627,'N'),(384,1628,'N'),(384,1633,'N'),(384,1634,'N'),(384,1635,'N'),(384,1636,'N'),(384,1637,'N'),(384,1638,'N'),(384,1640,'N'),(384,1641,'N'),(389,453,'S'),(389,471,'S'),(389,490,'S'),(389,510,'S'),(389,530,'S'),(389,547,'S'),(389,568,'S'),(389,590,'S'),(389,613,'S'),(389,637,'S'),(389,662,'S'),(389,688,'S'),(389,715,'S'),(389,743,'S'),(389,772,'S'),(389,802,'S'),(389,833,'S'),(389,865,'S'),(389,898,'S'),(389,932,'S'),(389,967,'S'),(389,1003,'S'),(389,1040,'S'),(389,1077,'S'),(389,1115,'S'),(389,1153,'S'),(389,1190,'S'),(389,1227,'S'),(389,1264,'S'),(389,1301,'S'),(389,1339,'S'),(389,1378,'S'),(389,1418,'S'),(389,1458,'S'),(389,1498,'S'),(389,1538,'S'),(389,1578,'S'),(389,1617,'S'),(390,8,'S'),(390,23,'S'),(390,38,'S'),(390,53,'S'),(390,68,'S'),(390,83,'S'),(390,98,'S'),(390,113,'S'),(390,128,'S'),(390,143,'S'),(390,158,'S'),(390,173,'S'),(390,188,'S'),(390,203,'S'),(390,218,'S'),(390,233,'S'),(390,248,'S'),(390,263,'S'),(390,278,'S'),(390,294,'S'),(390,310,'S'),(390,326,'S'),(390,342,'S'),(390,359,'S'),(390,376,'S'),(390,393,'S'),(390,410,'S'),(390,427,'S'),(390,444,'S'),(390,462,'S'),(390,481,'S'),(390,501,'S'),(390,521,'S'),(390,538,'S'),(390,559,'S'),(390,581,'S'),(390,604,'S'),(390,628,'S'),(390,653,'S'),(390,679,'S'),(390,706,'S'),(390,734,'S'),(390,763,'S'),(390,793,'S'),(390,824,'S'),(390,856,'S'),(390,889,'S'),(390,923,'S'),(390,958,'S'),(390,994,'S'),(390,1031,'S'),(390,1068,'S'),(390,1106,'S'),(390,1144,'S'),(390,1181,'S'),(390,1218,'S'),(390,1255,'S'),(390,1292,'S'),(390,1330,'S'),(390,1369,'S'),(390,1409,'S'),(390,1449,'S'),(390,1489,'S'),(390,1529,'S'),(390,1570,'S'),(390,1610,'S'),(392,1,'N'),(392,2,'N'),(392,3,'N'),(392,4,'N'),(392,5,'S'),(392,8,'N'),(392,9,'N'),(392,10,'N'),(392,11,'N'),(392,12,'N'),(392,13,'N'),(392,14,'N'),(392,15,'N'),(392,16,'N'),(392,17,'N'),(392,18,'N'),(392,19,'N'),(392,20,'S'),(392,23,'N'),(392,24,'N'),(392,25,'N'),(392,26,'N'),(392,27,'N'),(392,28,'N'),(392,29,'N'),(392,30,'N'),(392,31,'N'),(392,32,'N'),(392,33,'N'),(392,34,'N'),(392,35,'S'),(392,38,'N'),(392,39,'N'),(392,40,'N'),(392,41,'N'),(392,42,'N'),(392,43,'N'),(392,44,'N'),(392,45,'N'),(392,46,'N'),(392,47,'N'),(392,48,'N'),(392,49,'N'),(392,50,'S'),(392,53,'N'),(392,54,'N'),(392,55,'N'),(392,56,'N'),(392,57,'N'),(392,58,'N'),(392,59,'N'),(392,60,'N'),(392,61,'N'),(392,62,'N'),(392,63,'N'),(392,64,'N'),(392,65,'S'),(392,68,'N'),(392,69,'N'),(392,70,'N'),(392,71,'N'),(392,72,'N'),(392,73,'N'),(392,74,'N'),(392,75,'N'),(392,76,'N'),(392,77,'N'),(392,78,'N'),(392,79,'N'),(392,80,'S'),(392,83,'N'),(392,84,'N'),(392,85,'N'),(392,86,'N'),(392,87,'N'),(392,88,'N'),(392,89,'N'),(392,90,'N'),(392,91,'N'),(392,92,'N'),(392,93,'N'),(392,94,'N'),(392,95,'S'),(392,98,'N'),(392,99,'N'),(392,100,'N'),(392,101,'N'),(392,102,'N'),(392,103,'N'),(392,104,'N'),(392,105,'N'),(392,106,'N'),(392,107,'N'),(392,108,'N'),(392,109,'N'),(392,110,'S'),(392,113,'N'),(392,114,'N'),(392,115,'N'),(392,116,'N'),(392,117,'N'),(392,118,'N'),(392,119,'N'),(392,120,'N'),(392,121,'N'),(392,122,'N'),(392,123,'N'),(392,124,'N'),(392,125,'S'),(392,128,'N'),(392,129,'N'),(392,130,'N'),(392,131,'N'),(392,132,'N'),(392,133,'N'),(392,134,'N'),(392,135,'N'),(392,136,'N'),(392,137,'N'),(392,138,'N'),(392,139,'N'),(392,140,'S'),(392,143,'N'),(392,144,'N'),(392,145,'N'),(392,146,'N'),(392,147,'N'),(392,148,'N'),(392,149,'N'),(392,150,'N'),(392,151,'N'),(392,152,'N'),(392,153,'N'),(392,154,'N'),(392,155,'S'),(392,158,'N'),(392,159,'N'),(392,160,'N'),(392,161,'N'),(392,162,'N'),(392,163,'N'),(392,164,'N'),(392,165,'N'),(392,166,'N'),(392,167,'N'),(392,168,'N'),(392,169,'N'),(392,170,'S'),(392,173,'N'),(392,174,'N'),(392,175,'N'),(392,176,'N'),(392,177,'N'),(392,178,'N'),(392,179,'N'),(392,180,'N'),(392,181,'N'),(392,182,'N'),(392,183,'N'),(392,184,'N'),(392,185,'S'),(392,188,'N'),(392,189,'N'),(392,190,'N'),(392,191,'N'),(392,192,'N'),(392,193,'N'),(392,194,'N'),(392,195,'N'),(392,196,'N'),(392,197,'N'),(392,198,'N'),(392,199,'N'),(392,200,'S'),(392,203,'N'),(392,204,'N'),(392,205,'N'),(392,206,'N'),(392,207,'N'),(392,208,'N'),(392,209,'N'),(392,210,'N'),(392,211,'N'),(392,212,'N'),(392,213,'N'),(392,214,'N'),(392,215,'S'),(392,218,'N'),(392,219,'N'),(392,220,'N'),(392,221,'N'),(392,222,'N'),(392,223,'N'),(392,224,'N'),(392,225,'N'),(392,226,'N'),(392,227,'N'),(392,228,'N'),(392,229,'N'),(392,230,'S'),(392,233,'N'),(392,234,'N'),(392,235,'N'),(392,236,'N'),(392,237,'N'),(392,238,'N'),(392,239,'N'),(392,240,'N'),(392,241,'N'),(392,242,'N'),(392,243,'N'),(392,244,'N'),(392,245,'S'),(392,248,'N'),(392,249,'N'),(392,250,'N'),(392,251,'N'),(392,252,'N'),(392,253,'N'),(392,254,'N'),(392,255,'N'),(392,256,'N'),(392,257,'N'),(392,258,'N'),(392,259,'N'),(392,260,'S'),(392,263,'N'),(392,264,'N'),(392,265,'N'),(392,266,'N'),(392,267,'N'),(392,268,'N'),(392,269,'N'),(392,270,'N'),(392,271,'N'),(392,272,'N'),(392,273,'N'),(392,274,'N'),(392,275,'S'),(392,278,'N'),(392,279,'N'),(392,280,'N'),(392,281,'N'),(392,282,'N'),(392,283,'N'),(392,284,'N'),(392,285,'N'),(392,286,'N'),(392,287,'N'),(392,288,'N'),(392,289,'N'),(392,290,'N'),(392,291,'S'),(392,294,'N'),(392,295,'N'),(392,296,'N'),(392,297,'N'),(392,298,'N'),(392,299,'N'),(392,300,'N'),(392,301,'N'),(392,303,'N'),(392,304,'N'),(392,305,'N'),(392,306,'N'),(392,307,'S'),(392,310,'N'),(392,311,'N'),(392,312,'N'),(392,313,'N'),(392,314,'N'),(392,315,'N'),(392,316,'N'),(392,317,'N'),(392,318,'N'),(392,319,'N'),(392,320,'N'),(392,321,'N'),(392,322,'N'),(392,323,'S'),(392,326,'N'),(392,327,'N'),(392,328,'N'),(392,329,'N'),(392,330,'N'),(392,331,'N'),(392,332,'N'),(392,333,'N'),(392,334,'N'),(392,335,'N'),(392,336,'N'),(392,337,'N'),(392,338,'N'),(392,339,'S'),(392,342,'N'),(392,343,'N'),(392,344,'N'),(392,345,'N'),(392,346,'N'),(392,347,'N'),(392,348,'N'),(392,349,'N'),(392,350,'N'),(392,352,'N'),(392,353,'N'),(392,354,'N'),(392,355,'N'),(392,356,'S'),(392,359,'N'),(392,360,'N'),(392,361,'N'),(392,362,'N'),(392,363,'N'),(392,364,'N'),(392,365,'N'),(392,366,'N'),(392,367,'N'),(392,369,'N'),(392,370,'N'),(392,371,'N'),(392,372,'N'),(392,373,'S'),(392,376,'N'),(392,377,'N'),(392,378,'N'),(392,379,'N'),(392,380,'N'),(392,381,'N'),(392,382,'N'),(392,383,'N'),(392,384,'N'),(392,386,'N'),(392,387,'N'),(392,388,'N'),(392,389,'N'),(392,390,'S'),(392,393,'N'),(392,394,'N'),(392,395,'N'),(392,396,'N'),(392,397,'N'),(392,398,'N'),(392,399,'N'),(392,400,'N'),(392,401,'N'),(392,403,'N'),(392,404,'N'),(392,405,'N'),(392,406,'N'),(392,407,'S'),(392,410,'N'),(392,411,'N'),(392,412,'N'),(392,413,'N'),(392,414,'N'),(392,415,'N'),(392,416,'N'),(392,417,'N'),(392,418,'N'),(392,420,'N'),(392,421,'N'),(392,422,'N'),(392,423,'N'),(392,424,'S'),(392,427,'N'),(392,428,'N'),(392,429,'N'),(392,430,'N'),(392,431,'N'),(392,432,'N'),(392,433,'N'),(392,434,'N'),(392,435,'N'),(392,437,'N'),(392,438,'N'),(392,439,'N'),(392,440,'N'),(392,441,'S'),(392,444,'N'),(392,445,'N'),(392,446,'N'),(392,447,'N'),(392,448,'N'),(392,449,'N'),(392,450,'N'),(392,451,'N'),(392,452,'N'),(392,453,'N'),(392,454,'N'),(392,455,'N'),(392,456,'N'),(392,457,'N'),(392,458,'N'),(392,459,'S'),(392,462,'N'),(392,463,'N'),(392,464,'N'),(392,465,'N'),(392,466,'N'),(392,467,'N'),(392,468,'N'),(392,469,'N'),(392,470,'N'),(392,471,'N'),(392,472,'N'),(392,474,'N'),(392,475,'N'),(392,476,'N'),(392,477,'N'),(392,478,'S'),(392,481,'N'),(392,482,'N'),(392,483,'N'),(392,484,'N'),(392,485,'N'),(392,486,'N'),(392,487,'N'),(392,488,'N'),(392,489,'N'),(392,490,'N'),(392,491,'N'),(392,494,'N'),(392,495,'N'),(392,496,'N'),(392,497,'N'),(392,498,'S'),(392,501,'N'),(392,502,'N'),(392,503,'N'),(392,504,'N'),(392,505,'N'),(392,506,'N'),(392,507,'N'),(392,508,'N'),(392,509,'N'),(392,510,'N'),(392,511,'N'),(392,514,'N'),(392,515,'N'),(392,516,'N'),(392,517,'N'),(392,518,'S'),(392,521,'N'),(392,522,'N'),(392,523,'N'),(392,524,'N'),(392,525,'N'),(392,526,'N'),(392,527,'N'),(392,528,'N'),(392,529,'N'),(392,530,'N'),(392,531,'N'),(392,532,'N'),(392,533,'N'),(392,534,'N'),(392,535,'S'),(392,538,'N'),(392,539,'N'),(392,540,'N'),(392,541,'N'),(392,542,'N'),(392,543,'N'),(392,544,'N'),(392,545,'N'),(392,546,'N'),(392,547,'N'),(392,548,'N'),(392,552,'N'),(392,553,'N'),(392,554,'N'),(392,555,'N'),(392,556,'S'),(392,559,'N'),(392,560,'N'),(392,561,'N'),(392,562,'N'),(392,563,'N'),(392,564,'N'),(392,565,'N'),(392,566,'N'),(392,567,'N'),(392,568,'N'),(392,569,'N'),(392,574,'N'),(392,575,'N'),(392,576,'N'),(392,577,'N'),(392,578,'S'),(392,581,'N'),(392,582,'N'),(392,583,'N'),(392,584,'N'),(392,585,'N'),(392,586,'N'),(392,587,'N'),(392,588,'N'),(392,589,'N'),(392,590,'N'),(392,591,'N'),(392,597,'N'),(392,598,'N'),(392,599,'N'),(392,600,'N'),(392,601,'S'),(392,604,'N'),(392,605,'N'),(392,606,'N'),(392,607,'N'),(392,608,'N'),(392,609,'N'),(392,610,'N'),(392,611,'N'),(392,612,'N'),(392,613,'N'),(392,614,'N'),(392,621,'N'),(392,622,'N'),(392,623,'N'),(392,624,'N'),(392,625,'S'),(392,628,'N'),(392,629,'N'),(392,630,'N'),(392,631,'N'),(392,632,'N'),(392,633,'N'),(392,634,'N'),(392,635,'N'),(392,636,'N'),(392,637,'N'),(392,638,'N'),(392,646,'N'),(392,647,'N'),(392,648,'N'),(392,649,'N'),(392,650,'S'),(392,653,'N'),(392,654,'N'),(392,655,'N'),(392,656,'N'),(392,657,'N'),(392,658,'N'),(392,659,'N'),(392,660,'N'),(392,661,'N'),(392,662,'N'),(392,663,'N'),(392,672,'N'),(392,673,'N'),(392,674,'N'),(392,675,'N'),(392,676,'S'),(392,679,'N'),(392,680,'N'),(392,681,'N'),(392,682,'N'),(392,683,'N'),(392,684,'N'),(392,685,'N'),(392,686,'N'),(392,687,'N'),(392,688,'N'),(392,689,'N'),(392,699,'N'),(392,700,'N'),(392,701,'N'),(392,702,'N'),(392,703,'S'),(392,706,'N'),(392,707,'N'),(392,708,'N'),(392,709,'N'),(392,710,'N'),(392,711,'N'),(392,712,'N'),(392,713,'N'),(392,714,'N'),(392,715,'N'),(392,716,'N'),(392,727,'N'),(392,728,'N'),(392,729,'N'),(392,730,'N'),(392,731,'S'),(392,734,'N'),(392,735,'N'),(392,736,'N'),(392,737,'N'),(392,738,'N'),(392,739,'N'),(392,740,'N'),(392,741,'N'),(392,742,'N'),(392,743,'N'),(392,744,'N'),(392,756,'N'),(392,757,'N'),(392,758,'N'),(392,759,'N'),(392,760,'S'),(392,763,'N'),(392,764,'N'),(392,765,'N'),(392,766,'N'),(392,767,'N'),(392,768,'N'),(392,769,'N'),(392,770,'N'),(392,771,'N'),(392,772,'N'),(392,773,'N'),(392,786,'N'),(392,787,'N'),(392,788,'N'),(392,789,'N'),(392,790,'S'),(392,793,'N'),(392,794,'N'),(392,795,'N'),(392,796,'N'),(392,797,'N'),(392,798,'N'),(392,799,'N'),(392,800,'N'),(392,801,'N'),(392,802,'N'),(392,803,'N'),(392,817,'N'),(392,818,'N'),(392,819,'N'),(392,820,'N'),(392,821,'S'),(392,824,'N'),(392,825,'N'),(392,826,'N'),(392,827,'N'),(392,828,'N'),(392,829,'N'),(392,830,'N'),(392,831,'N'),(392,832,'N'),(392,833,'N'),(392,834,'N'),(392,849,'N'),(392,850,'N'),(392,851,'N'),(392,852,'N'),(392,853,'S'),(392,856,'N'),(392,857,'N'),(392,858,'N'),(392,859,'N'),(392,860,'N'),(392,861,'N'),(392,862,'N'),(392,863,'N'),(392,864,'N'),(392,865,'N'),(392,866,'N'),(392,882,'N'),(392,883,'N'),(392,884,'N'),(392,885,'N'),(392,886,'S'),(392,889,'N'),(392,890,'N'),(392,891,'N'),(392,892,'N'),(392,893,'N'),(392,894,'N'),(392,895,'N'),(392,896,'N'),(392,897,'N'),(392,898,'N'),(392,899,'N'),(392,916,'N'),(392,917,'N'),(392,918,'N'),(392,919,'N'),(392,920,'S'),(392,923,'N'),(392,924,'N'),(392,925,'N'),(392,926,'N'),(392,927,'N'),(392,928,'N'),(392,929,'N'),(392,930,'N'),(392,931,'N'),(392,932,'N'),(392,933,'N'),(392,951,'N'),(392,952,'N'),(392,953,'N'),(392,954,'N'),(392,955,'S'),(392,958,'N'),(392,959,'N'),(392,960,'N'),(392,961,'N'),(392,962,'N'),(392,963,'N'),(392,964,'N'),(392,965,'N'),(392,966,'N'),(392,967,'N'),(392,968,'N'),(392,987,'N'),(392,988,'N'),(392,989,'N'),(392,990,'N'),(392,991,'S'),(392,994,'N'),(392,995,'N'),(392,996,'N'),(392,997,'N'),(392,998,'N'),(392,999,'N'),(392,1000,'N'),(392,1001,'N'),(392,1002,'N'),(392,1003,'N'),(392,1004,'N'),(392,1024,'N'),(392,1025,'N'),(392,1026,'N'),(392,1027,'N'),(392,1028,'S'),(392,1031,'N'),(392,1032,'N'),(392,1033,'N'),(392,1034,'N'),(392,1035,'N'),(392,1036,'N'),(392,1037,'N'),(392,1038,'N'),(392,1039,'N'),(392,1040,'N'),(392,1041,'N'),(392,1061,'N'),(392,1062,'N'),(392,1063,'N'),(392,1064,'N'),(392,1065,'S'),(392,1068,'N'),(392,1069,'N'),(392,1070,'N'),(392,1071,'N'),(392,1072,'N'),(392,1073,'N'),(392,1074,'N'),(392,1075,'N'),(392,1076,'N'),(392,1077,'N'),(392,1078,'N'),(392,1099,'N'),(392,1100,'N'),(392,1101,'N'),(392,1102,'N'),(392,1103,'S'),(392,1106,'N'),(392,1107,'N'),(392,1108,'N'),(392,1109,'N'),(392,1110,'N'),(392,1111,'N'),(392,1112,'N'),(392,1113,'N'),(392,1114,'N'),(392,1115,'N'),(392,1116,'N'),(392,1137,'N'),(392,1138,'N'),(392,1139,'N'),(392,1140,'N'),(392,1141,'S'),(392,1144,'N'),(392,1145,'N'),(392,1146,'N'),(392,1147,'N'),(392,1148,'N'),(392,1149,'N'),(392,1150,'N'),(392,1151,'N'),(392,1152,'N'),(392,1153,'N'),(392,1154,'N'),(392,1177,'N'),(392,1178,'N'),(392,1179,'S'),(392,1181,'N'),(392,1182,'N'),(392,1183,'N'),(392,1184,'N'),(392,1186,'N'),(392,1187,'N'),(392,1188,'N'),(392,1190,'N'),(392,1191,'N'),(392,1214,'N'),(392,1215,'N'),(392,1216,'S'),(392,1218,'N'),(392,1219,'N'),(392,1220,'N'),(392,1221,'N'),(392,1223,'N'),(392,1224,'N'),(392,1225,'N'),(392,1227,'N'),(392,1228,'N'),(392,1251,'N'),(392,1252,'N'),(392,1253,'S'),(392,1255,'N'),(392,1256,'N'),(392,1257,'N'),(392,1258,'N'),(392,1260,'N'),(392,1261,'N'),(392,1262,'N'),(392,1264,'N'),(392,1265,'N'),(392,1288,'N'),(392,1289,'N'),(392,1290,'S'),(392,1292,'N'),(392,1293,'N'),(392,1294,'N'),(392,1295,'N'),(392,1297,'N'),(392,1298,'N'),(392,1299,'N'),(392,1301,'N'),(392,1302,'N'),(392,1326,'N'),(392,1327,'N'),(392,1328,'S'),(392,1330,'N'),(392,1331,'N'),(392,1332,'N'),(392,1333,'N'),(392,1335,'N'),(392,1336,'N'),(392,1337,'N'),(392,1339,'N'),(392,1340,'N'),(392,1365,'N'),(392,1366,'N'),(392,1367,'S'),(392,1369,'N'),(392,1370,'N'),(392,1371,'N'),(392,1372,'N'),(392,1374,'N'),(392,1375,'N'),(392,1376,'N'),(392,1378,'N'),(392,1379,'N'),(392,1405,'N'),(392,1406,'N'),(392,1407,'S'),(392,1409,'N'),(392,1410,'N'),(392,1411,'N'),(392,1412,'N'),(392,1414,'N'),(392,1415,'N'),(392,1416,'N'),(392,1418,'N'),(392,1419,'N'),(392,1445,'N'),(392,1446,'N'),(392,1447,'S'),(392,1449,'N'),(392,1450,'N'),(392,1451,'N'),(392,1452,'N'),(392,1454,'N'),(392,1455,'N'),(392,1456,'N'),(392,1458,'N'),(392,1459,'N'),(392,1485,'N'),(392,1486,'N'),(392,1487,'S'),(392,1489,'N'),(392,1490,'N'),(392,1491,'N'),(392,1492,'N'),(392,1494,'N'),(392,1495,'N'),(392,1496,'N'),(392,1498,'N'),(392,1499,'N'),(392,1525,'N'),(392,1526,'N'),(392,1527,'S'),(392,1529,'N'),(392,1531,'N'),(392,1534,'N'),(392,1535,'N'),(392,1536,'N'),(392,1538,'N'),(392,1539,'N'),(392,1566,'N'),(392,1567,'N'),(392,1568,'S'),(392,1570,'N'),(392,1571,'N'),(392,1574,'N'),(392,1575,'N'),(392,1576,'N'),(392,1578,'N'),(392,1579,'N'),(392,1606,'N'),(392,1607,'N'),(392,1608,'S'),(392,1610,'N'),(392,1611,'N'),(392,1613,'N'),(392,1614,'N'),(392,1615,'N'),(392,1617,'N'),(392,1618,'N'),(394,1,'N'),(394,2,'N'),(394,3,'N'),(394,4,'N'),(394,5,'S'),(394,8,'N'),(394,9,'N'),(394,10,'N'),(394,11,'N'),(394,12,'N'),(394,13,'N'),(394,14,'N'),(394,15,'N'),(394,16,'N'),(394,17,'N'),(394,18,'N'),(394,19,'N'),(394,20,'S'),(394,23,'N'),(394,24,'N'),(394,25,'N'),(394,26,'N'),(394,27,'N'),(394,28,'N'),(394,29,'N'),(394,30,'N'),(394,31,'N'),(394,32,'N'),(394,33,'N'),(394,34,'N'),(394,35,'S'),(394,38,'N'),(394,39,'N'),(394,40,'N'),(394,41,'N'),(394,42,'N'),(394,43,'N'),(394,44,'N'),(394,45,'N'),(394,46,'N'),(394,47,'N'),(394,48,'N'),(394,49,'N'),(394,50,'S'),(394,53,'N'),(394,54,'N'),(394,55,'N'),(394,56,'N'),(394,57,'N'),(394,58,'N'),(394,59,'N'),(394,60,'N'),(394,61,'N'),(394,62,'N'),(394,63,'N'),(394,64,'N'),(394,65,'S'),(394,68,'N'),(394,69,'N'),(394,70,'N'),(394,71,'N'),(394,72,'N'),(394,73,'N'),(394,74,'N'),(394,75,'N'),(394,76,'N'),(394,77,'N'),(394,78,'N'),(394,79,'N'),(394,80,'S'),(394,83,'N'),(394,84,'N'),(394,85,'N'),(394,86,'N'),(394,87,'N'),(394,88,'N'),(394,89,'N'),(394,90,'N'),(394,91,'N'),(394,92,'N'),(394,93,'N'),(394,94,'N'),(394,95,'S'),(394,98,'N'),(394,99,'N'),(394,100,'N'),(394,101,'N'),(394,102,'N'),(394,103,'N'),(394,104,'N'),(394,105,'N'),(394,106,'N'),(394,107,'N'),(394,108,'N'),(394,109,'N'),(394,110,'S'),(394,113,'N'),(394,114,'N'),(394,115,'N'),(394,116,'N'),(394,117,'N'),(394,118,'N'),(394,119,'N'),(394,120,'N'),(394,121,'N'),(394,122,'N'),(394,123,'N'),(394,124,'N'),(394,125,'S'),(394,128,'N'),(394,129,'N'),(394,130,'N'),(394,131,'N'),(394,132,'N'),(394,133,'N'),(394,134,'N'),(394,135,'N'),(394,136,'N'),(394,137,'N'),(394,138,'N'),(394,139,'N'),(394,140,'S'),(394,143,'N'),(394,144,'N'),(394,145,'N'),(394,146,'N'),(394,147,'N'),(394,148,'N'),(394,149,'N'),(394,150,'N'),(394,151,'N'),(394,152,'N'),(394,153,'N'),(394,154,'N'),(394,155,'S'),(394,158,'N'),(394,159,'N'),(394,160,'N'),(394,161,'N'),(394,162,'N'),(394,163,'N'),(394,164,'N'),(394,165,'N'),(394,166,'N'),(394,167,'N'),(394,168,'N'),(394,169,'N'),(394,170,'S'),(394,173,'N'),(394,174,'N'),(394,175,'N'),(394,176,'N'),(394,177,'N'),(394,178,'N'),(394,179,'N'),(394,180,'N'),(394,181,'N'),(394,182,'N'),(394,183,'N'),(394,184,'N'),(394,185,'S'),(394,188,'N'),(394,189,'N'),(394,190,'N'),(394,191,'N'),(394,192,'N'),(394,193,'N'),(394,194,'N'),(394,195,'N'),(394,196,'N'),(394,197,'N'),(394,198,'N'),(394,199,'N'),(394,200,'S'),(394,203,'N'),(394,204,'N'),(394,205,'N'),(394,206,'N'),(394,207,'N'),(394,208,'N'),(394,209,'N'),(394,210,'N'),(394,211,'N'),(394,212,'N'),(394,213,'N'),(394,214,'N'),(394,215,'S'),(394,218,'N'),(394,219,'N'),(394,220,'N'),(394,221,'N'),(394,222,'N'),(394,223,'N'),(394,224,'N'),(394,225,'N'),(394,226,'N'),(394,227,'N'),(394,228,'N'),(394,229,'N'),(394,230,'S'),(394,233,'N'),(394,234,'N'),(394,235,'N'),(394,236,'N'),(394,237,'N'),(394,238,'N'),(394,239,'N'),(394,240,'N'),(394,241,'N'),(394,242,'N'),(394,243,'N'),(394,244,'N'),(394,245,'S'),(394,248,'N'),(394,249,'N'),(394,250,'N'),(394,251,'N'),(394,252,'N'),(394,253,'N'),(394,254,'N'),(394,255,'N'),(394,256,'N'),(394,257,'N'),(394,258,'N'),(394,259,'N'),(394,260,'S'),(394,263,'N'),(394,264,'N'),(394,265,'N'),(394,266,'N'),(394,267,'N'),(394,268,'N'),(394,269,'N'),(394,270,'N'),(394,271,'N'),(394,272,'N'),(394,273,'N'),(394,274,'N'),(394,275,'S'),(394,278,'N'),(394,279,'N'),(394,280,'N'),(394,281,'N'),(394,282,'N'),(394,283,'N'),(394,284,'N'),(394,285,'N'),(394,286,'N'),(394,287,'N'),(394,288,'N'),(394,289,'N'),(394,290,'N'),(394,291,'S'),(394,294,'N'),(394,295,'N'),(394,296,'N'),(394,297,'N'),(394,298,'N'),(394,299,'N'),(394,300,'N'),(394,301,'N'),(394,303,'N'),(394,304,'N'),(394,305,'N'),(394,306,'N'),(394,307,'S'),(394,310,'N'),(394,311,'N'),(394,312,'N'),(394,313,'N'),(394,314,'N'),(394,315,'N'),(394,316,'N'),(394,317,'N'),(394,318,'N'),(394,319,'N'),(394,320,'N'),(394,321,'N'),(394,322,'N'),(394,323,'S'),(394,326,'N'),(394,327,'N'),(394,328,'N'),(394,329,'N'),(394,330,'N'),(394,331,'N'),(394,332,'N'),(394,333,'N'),(394,334,'N'),(394,335,'N'),(394,336,'N'),(394,337,'N'),(394,338,'N'),(394,339,'S'),(394,342,'N'),(394,343,'N'),(394,344,'N'),(394,345,'N'),(394,346,'N'),(394,347,'N'),(394,348,'N'),(394,349,'N'),(394,350,'N'),(394,352,'N'),(394,353,'N'),(394,354,'N'),(394,355,'N'),(394,356,'S'),(394,359,'N'),(394,360,'N'),(394,361,'N'),(394,362,'N'),(394,363,'N'),(394,364,'N'),(394,365,'N'),(394,366,'N'),(394,367,'N'),(394,369,'N'),(394,370,'N'),(394,371,'N'),(394,372,'N'),(394,373,'S'),(394,376,'N'),(394,377,'N'),(394,378,'N'),(394,379,'N'),(394,380,'N'),(394,381,'N'),(394,382,'N'),(394,383,'N'),(394,384,'N'),(394,386,'N'),(394,387,'N'),(394,388,'N'),(394,389,'N'),(394,390,'S'),(394,393,'N'),(394,394,'N'),(394,395,'N'),(394,396,'N'),(394,397,'N'),(394,398,'N'),(394,399,'N'),(394,400,'N'),(394,401,'N'),(394,403,'N'),(394,404,'N'),(394,405,'N'),(394,406,'N'),(394,407,'S'),(394,410,'N'),(394,411,'N'),(394,412,'N'),(394,413,'N'),(394,414,'N'),(394,415,'N'),(394,416,'N'),(394,417,'N'),(394,418,'N'),(394,420,'N'),(394,421,'N'),(394,422,'N'),(394,423,'N'),(394,424,'S'),(394,427,'N'),(394,428,'N'),(394,429,'N'),(394,430,'N'),(394,431,'N'),(394,432,'N'),(394,433,'N'),(394,434,'N'),(394,435,'N'),(394,437,'N'),(394,438,'N'),(394,439,'N'),(394,440,'N'),(394,441,'S'),(394,444,'N'),(394,445,'N'),(394,446,'N'),(394,447,'N'),(394,448,'N'),(394,449,'N'),(394,450,'N'),(394,451,'N'),(394,452,'N'),(394,453,'N'),(394,455,'N'),(394,456,'N'),(394,457,'N'),(394,458,'N'),(394,459,'S'),(394,462,'N'),(394,463,'N'),(394,464,'N'),(394,465,'N'),(394,466,'N'),(394,467,'N'),(394,468,'N'),(394,469,'N'),(394,470,'N'),(394,471,'N'),(394,474,'N'),(394,475,'N'),(394,476,'N'),(394,477,'N'),(394,478,'S'),(394,481,'N'),(394,482,'N'),(394,483,'N'),(394,484,'N'),(394,485,'N'),(394,486,'N'),(394,487,'N'),(394,488,'N'),(394,489,'N'),(394,490,'N'),(394,494,'N'),(394,495,'N'),(394,496,'N'),(394,497,'N'),(394,498,'S'),(394,501,'N'),(394,502,'N'),(394,503,'N'),(394,504,'N'),(394,505,'N'),(394,506,'N'),(394,507,'N'),(394,508,'N'),(394,509,'N'),(394,510,'N'),(394,514,'N'),(394,515,'N'),(394,516,'N'),(394,517,'N'),(394,518,'S'),(394,521,'N'),(394,522,'N'),(394,523,'N'),(394,524,'N'),(394,525,'N'),(394,526,'N'),(394,527,'N'),(394,528,'N'),(394,529,'N'),(394,530,'N'),(394,531,'N'),(394,532,'N'),(394,533,'N'),(394,534,'N'),(394,535,'S'),(394,538,'N'),(394,539,'N'),(394,540,'N'),(394,541,'N'),(394,542,'N'),(394,543,'N'),(394,544,'N'),(394,545,'N'),(394,546,'N'),(394,547,'N'),(394,552,'N'),(394,553,'N'),(394,554,'N'),(394,555,'N'),(394,556,'S'),(394,559,'N'),(394,560,'N'),(394,561,'N'),(394,562,'N'),(394,563,'N'),(394,564,'N'),(394,565,'N'),(394,566,'N'),(394,567,'N'),(394,568,'N'),(394,574,'N'),(394,575,'N'),(394,576,'N'),(394,577,'N'),(394,578,'S'),(394,581,'N'),(394,582,'N'),(394,583,'N'),(394,584,'N'),(394,585,'N'),(394,586,'N'),(394,587,'N'),(394,588,'N'),(394,589,'N'),(394,590,'N'),(394,597,'N'),(394,598,'N'),(394,599,'N'),(394,600,'N'),(394,601,'S'),(394,604,'N'),(394,605,'N'),(394,606,'N'),(394,607,'N'),(394,608,'N'),(394,609,'N'),(394,610,'N'),(394,611,'N'),(394,612,'N'),(394,613,'N'),(394,621,'N'),(394,622,'N'),(394,623,'N'),(394,624,'N'),(394,625,'S'),(394,628,'N'),(394,629,'N'),(394,630,'N'),(394,631,'N'),(394,632,'N'),(394,633,'N'),(394,634,'N'),(394,635,'N'),(394,636,'N'),(394,637,'N'),(394,646,'N'),(394,647,'N'),(394,648,'N'),(394,649,'N'),(394,650,'S'),(394,653,'N'),(394,654,'N'),(394,655,'N'),(394,656,'N'),(394,657,'N'),(394,658,'N'),(394,659,'N'),(394,660,'N'),(394,661,'N'),(394,662,'N'),(394,672,'N'),(394,673,'N'),(394,674,'N'),(394,675,'N'),(394,676,'S'),(394,679,'N'),(394,680,'N'),(394,681,'N'),(394,682,'N'),(394,683,'N'),(394,684,'N'),(394,685,'N'),(394,686,'N'),(394,687,'N'),(394,688,'N'),(394,699,'N'),(394,700,'N'),(394,701,'N'),(394,702,'N'),(394,703,'S'),(394,706,'N'),(394,707,'N'),(394,708,'N'),(394,709,'N'),(394,710,'N'),(394,711,'N'),(394,712,'N'),(394,713,'N'),(394,714,'N'),(394,715,'N'),(394,727,'N'),(394,728,'N'),(394,729,'N'),(394,730,'N'),(394,731,'S'),(394,734,'N'),(394,735,'N'),(394,736,'N'),(394,737,'N'),(394,738,'N'),(394,739,'N'),(394,740,'N'),(394,741,'N'),(394,742,'N'),(394,743,'N'),(394,756,'N'),(394,757,'N'),(394,758,'N'),(394,759,'N'),(394,760,'S'),(394,763,'N'),(394,764,'N'),(394,765,'N'),(394,766,'N'),(394,767,'N'),(394,768,'N'),(394,769,'N'),(394,770,'N'),(394,771,'N'),(394,772,'N'),(394,786,'N'),(394,787,'N'),(394,788,'N'),(394,789,'N'),(394,790,'S'),(394,793,'N'),(394,794,'N'),(394,795,'N'),(394,796,'N'),(394,797,'N'),(394,798,'N'),(394,799,'N'),(394,800,'N'),(394,801,'N'),(394,802,'N'),(394,817,'N'),(394,818,'N'),(394,819,'N'),(394,820,'N'),(394,821,'S'),(394,824,'N'),(394,825,'N'),(394,826,'N'),(394,827,'N'),(394,828,'N'),(394,829,'N'),(394,830,'N'),(394,831,'N'),(394,832,'N'),(394,833,'N'),(394,849,'N'),(394,850,'N'),(394,851,'N'),(394,852,'N'),(394,853,'S'),(394,856,'N'),(394,857,'N'),(394,858,'N'),(394,859,'N'),(394,860,'N'),(394,861,'N'),(394,862,'N'),(394,863,'N'),(394,864,'N'),(394,865,'N'),(394,882,'N'),(394,883,'N'),(394,884,'N'),(394,885,'N'),(394,886,'S'),(394,889,'N'),(394,890,'N'),(394,891,'N'),(394,892,'N'),(394,893,'N'),(394,894,'N'),(394,895,'N'),(394,896,'N'),(394,897,'N'),(394,898,'N'),(394,916,'N'),(394,917,'N'),(394,918,'N'),(394,919,'N'),(394,920,'S'),(394,923,'N'),(394,924,'N'),(394,925,'N'),(394,926,'N'),(394,927,'N'),(394,928,'N'),(394,929,'N'),(394,930,'N'),(394,931,'N'),(394,932,'N'),(394,951,'N'),(394,952,'N'),(394,953,'N'),(394,954,'N'),(394,955,'S'),(394,958,'N'),(394,959,'N'),(394,960,'N'),(394,961,'N'),(394,962,'N'),(394,963,'N'),(394,964,'N'),(394,965,'N'),(394,966,'N'),(394,967,'N'),(394,987,'N'),(394,988,'N'),(394,989,'N'),(394,990,'N'),(394,991,'S'),(394,994,'N'),(394,995,'N'),(394,996,'N'),(394,997,'N'),(394,998,'N'),(394,999,'N'),(394,1000,'N'),(394,1001,'N'),(394,1002,'N'),(394,1003,'N'),(394,1024,'N'),(394,1025,'N'),(394,1026,'N'),(394,1027,'N'),(394,1028,'S'),(394,1031,'N'),(394,1032,'N'),(394,1033,'N'),(394,1034,'N'),(394,1035,'N'),(394,1036,'N'),(394,1037,'N'),(394,1038,'N'),(394,1039,'N'),(394,1040,'N'),(394,1061,'N'),(394,1062,'N'),(394,1063,'N'),(394,1064,'N'),(394,1065,'S'),(394,1068,'N'),(394,1069,'N'),(394,1070,'N'),(394,1071,'N'),(394,1072,'N'),(394,1073,'N'),(394,1074,'N'),(394,1075,'N'),(394,1076,'N'),(394,1077,'N'),(394,1099,'N'),(394,1100,'N'),(394,1101,'N'),(394,1102,'N'),(394,1103,'S'),(394,1106,'N'),(394,1107,'N'),(394,1108,'N'),(394,1109,'N'),(394,1110,'N'),(394,1111,'N'),(394,1112,'N'),(394,1113,'N'),(394,1114,'N'),(394,1115,'N'),(394,1137,'N'),(394,1138,'N'),(394,1139,'N'),(394,1140,'N'),(394,1141,'S'),(394,1144,'N'),(394,1145,'N'),(394,1146,'N'),(394,1147,'N'),(394,1148,'N'),(394,1149,'N'),(394,1150,'N'),(394,1151,'N'),(394,1152,'N'),(394,1153,'N'),(394,1177,'N'),(394,1178,'N'),(394,1179,'S'),(394,1181,'N'),(394,1182,'N'),(394,1183,'N'),(394,1184,'N'),(394,1186,'N'),(394,1187,'N'),(394,1188,'N'),(394,1190,'N'),(394,1194,'N'),(394,1195,'N'),(394,1200,'N'),(394,1201,'N'),(394,1206,'N'),(394,1207,'N'),(394,1208,'N'),(394,1209,'N'),(394,1210,'N'),(394,1211,'N'),(394,1214,'N'),(394,1215,'N'),(394,1216,'S'),(394,1218,'N'),(394,1219,'N'),(394,1220,'N'),(394,1221,'N'),(394,1223,'N'),(394,1224,'N'),(394,1225,'N'),(394,1227,'N'),(394,1231,'N'),(394,1232,'N'),(394,1237,'N'),(394,1238,'N'),(394,1243,'N'),(394,1244,'N'),(394,1245,'N'),(394,1246,'N'),(394,1247,'N'),(394,1248,'N'),(394,1251,'N'),(394,1252,'N'),(394,1253,'S'),(394,1255,'N'),(394,1256,'N'),(394,1257,'N'),(394,1258,'N'),(394,1260,'N'),(394,1261,'N'),(394,1262,'N'),(394,1264,'N'),(394,1268,'N'),(394,1269,'N'),(394,1274,'N'),(394,1275,'N'),(394,1280,'N'),(394,1281,'N'),(394,1282,'N'),(394,1283,'N'),(394,1284,'N'),(394,1285,'N'),(394,1288,'N'),(394,1289,'N'),(394,1290,'S'),(394,1292,'N'),(394,1293,'N'),(394,1294,'N'),(394,1295,'N'),(394,1297,'N'),(394,1298,'N'),(394,1299,'N'),(394,1301,'N'),(394,1305,'N'),(394,1306,'N'),(394,1311,'N'),(394,1312,'N'),(394,1317,'N'),(394,1318,'N'),(394,1319,'N'),(394,1320,'N'),(394,1321,'N'),(394,1322,'N'),(394,1326,'N'),(394,1327,'N'),(394,1328,'S'),(394,1330,'N'),(394,1331,'N'),(394,1332,'N'),(394,1333,'N'),(394,1335,'N'),(394,1336,'N'),(394,1337,'N'),(394,1339,'N'),(394,1343,'N'),(394,1344,'N'),(394,1349,'N'),(394,1350,'N'),(394,1355,'N'),(394,1356,'N'),(394,1357,'N'),(394,1358,'N'),(394,1359,'N'),(394,1360,'N'),(394,1365,'N'),(394,1366,'N'),(394,1367,'S'),(394,1369,'N'),(394,1370,'N'),(394,1371,'N'),(394,1372,'N'),(394,1374,'N'),(394,1375,'N'),(394,1376,'N'),(394,1378,'N'),(394,1382,'N'),(394,1383,'N'),(394,1388,'N'),(394,1389,'N'),(394,1394,'N'),(394,1395,'N'),(394,1396,'N'),(394,1397,'N'),(394,1398,'N'),(394,1399,'N'),(394,1405,'N'),(394,1406,'N'),(394,1407,'S'),(394,1409,'N'),(394,1410,'N'),(394,1411,'N'),(394,1412,'N'),(394,1414,'N'),(394,1415,'N'),(394,1416,'N'),(394,1418,'N'),(394,1422,'N'),(394,1423,'N'),(394,1428,'N'),(394,1429,'N'),(394,1434,'N'),(394,1435,'N'),(394,1436,'N'),(394,1437,'N'),(394,1438,'N'),(394,1439,'N'),(394,1445,'N'),(394,1446,'N'),(394,1447,'S'),(394,1449,'N'),(394,1450,'N'),(394,1451,'N'),(394,1452,'N'),(394,1454,'N'),(394,1455,'N'),(394,1456,'N'),(394,1458,'N'),(394,1462,'N'),(394,1463,'N'),(394,1468,'N'),(394,1469,'N'),(394,1474,'N'),(394,1475,'N'),(394,1476,'N'),(394,1477,'N'),(394,1478,'N'),(394,1479,'N'),(394,1485,'N'),(394,1486,'N'),(394,1487,'S'),(394,1489,'N'),(394,1490,'N'),(394,1491,'N'),(394,1492,'N'),(394,1494,'N'),(394,1495,'N'),(394,1496,'N'),(394,1498,'N'),(394,1502,'N'),(394,1503,'N'),(394,1508,'N'),(394,1509,'N'),(394,1514,'N'),(394,1515,'N'),(394,1516,'N'),(394,1517,'N'),(394,1518,'N'),(394,1519,'N'),(394,1523,'N'),(394,1524,'N'),(394,1525,'N'),(394,1526,'N'),(394,1527,'S'),(394,1528,'N'),(394,1529,'N'),(394,1531,'N'),(394,1533,'N'),(394,1534,'N'),(394,1535,'N'),(394,1536,'N'),(394,1537,'N'),(394,1538,'N'),(394,1540,'N'),(394,1541,'N'),(394,1542,'N'),(394,1543,'N'),(394,1544,'N'),(394,1545,'N'),(394,1546,'N'),(394,1547,'N'),(394,1548,'N'),(394,1549,'N'),(394,1550,'N'),(394,1551,'N'),(394,1552,'N'),(394,1553,'N'),(394,1554,'N'),(394,1555,'N'),(394,1556,'N'),(394,1557,'N'),(394,1558,'N'),(394,1559,'N'),(394,1560,'N'),(394,1561,'N'),(394,1562,'N'),(394,1563,'N'),(394,1564,'N'),(394,1565,'N'),(394,1566,'N'),(394,1567,'N'),(394,1568,'S'),(394,1569,'N'),(394,1570,'N'),(394,1571,'N'),(394,1573,'N'),(394,1574,'N'),(394,1575,'N'),(394,1576,'N'),(394,1577,'N'),(394,1578,'N'),(394,1580,'N'),(394,1581,'N'),(394,1582,'N'),(394,1583,'N'),(394,1584,'N'),(394,1585,'N'),(394,1586,'N'),(394,1587,'N'),(394,1588,'N'),(394,1589,'N'),(394,1590,'N'),(394,1591,'N'),(394,1592,'N'),(394,1593,'N'),(394,1594,'N'),(394,1595,'N'),(394,1596,'N'),(394,1597,'N'),(394,1598,'N'),(394,1599,'N'),(394,1600,'N'),(394,1601,'N'),(394,1602,'N'),(394,1603,'N'),(394,1606,'N'),(394,1607,'N'),(394,1608,'S'),(394,1610,'N'),(394,1611,'N'),(394,1613,'N'),(394,1614,'N'),(394,1615,'N'),(394,1617,'N'),(394,1621,'N'),(394,1622,'N'),(394,1627,'N'),(394,1628,'N'),(394,1633,'N'),(394,1634,'N'),(394,1635,'N'),(394,1636,'N'),(394,1637,'N'),(394,1638,'N'),(394,1640,'N'),(394,1641,'N'),(396,453,'S'),(396,471,'S'),(396,490,'S'),(396,510,'S'),(396,530,'S'),(396,547,'S'),(396,568,'S'),(396,590,'S'),(396,613,'S'),(396,637,'S'),(396,662,'S'),(396,688,'S'),(396,715,'S'),(396,743,'S'),(396,772,'S'),(396,802,'S'),(396,833,'S'),(396,865,'S'),(396,898,'S'),(396,932,'S'),(396,967,'S'),(396,1003,'S'),(396,1040,'S'),(396,1077,'S'),(396,1115,'S'),(396,1153,'S'),(396,1190,'S'),(396,1227,'S'),(396,1264,'S'),(396,1301,'S'),(396,1339,'S'),(396,1378,'S'),(396,1418,'S'),(396,1458,'S'),(396,1498,'S'),(396,1538,'S'),(396,1578,'S'),(396,1617,'S'),(397,8,'S'),(397,23,'S'),(397,38,'S'),(397,53,'S'),(397,68,'S'),(397,83,'S'),(397,98,'S'),(397,113,'S'),(397,128,'S'),(397,143,'S'),(397,158,'S'),(397,173,'S'),(397,188,'S'),(397,203,'S'),(397,218,'S'),(397,233,'S'),(397,248,'S'),(397,263,'S'),(397,278,'S'),(397,294,'S'),(397,310,'S'),(397,326,'S'),(397,342,'S'),(397,359,'S'),(397,376,'S'),(397,393,'S'),(397,410,'S'),(397,427,'S'),(397,444,'S'),(397,462,'S'),(397,481,'S'),(397,501,'S'),(397,521,'S'),(397,538,'S'),(397,559,'S'),(397,581,'S'),(397,604,'S'),(397,628,'S'),(397,653,'S'),(397,679,'S'),(397,706,'S'),(397,734,'S'),(397,763,'S'),(397,793,'S'),(397,824,'S'),(397,856,'S'),(397,889,'S'),(397,923,'S'),(397,958,'S'),(397,994,'S'),(397,1031,'S'),(397,1068,'S'),(397,1106,'S'),(397,1144,'S'),(397,1181,'S'),(397,1218,'S'),(397,1255,'S'),(397,1292,'S'),(397,1330,'S'),(397,1369,'S'),(397,1409,'S'),(397,1449,'S'),(397,1489,'S'),(397,1529,'S'),(397,1570,'S'),(397,1610,'S'),(399,1,'N'),(399,2,'N'),(399,3,'N'),(399,4,'N'),(399,5,'N'),(399,8,'N'),(399,9,'S'),(399,10,'N'),(399,11,'N'),(399,12,'N'),(399,13,'N'),(399,14,'N'),(399,15,'N'),(399,16,'N'),(399,17,'N'),(399,18,'N'),(399,19,'N'),(399,20,'N'),(399,23,'N'),(399,24,'S'),(399,25,'N'),(399,26,'N'),(399,27,'N'),(399,28,'N'),(399,29,'N'),(399,30,'N'),(399,31,'N'),(399,32,'N'),(399,33,'N'),(399,34,'N'),(399,35,'N'),(399,38,'N'),(399,39,'S'),(399,40,'N'),(399,41,'N'),(399,42,'N'),(399,43,'N'),(399,44,'N'),(399,45,'N'),(399,46,'N'),(399,47,'N'),(399,48,'N'),(399,49,'N'),(399,50,'N'),(399,53,'N'),(399,54,'S'),(399,55,'N'),(399,56,'N'),(399,57,'N'),(399,58,'N'),(399,59,'N'),(399,60,'N'),(399,61,'N'),(399,62,'N'),(399,63,'N'),(399,64,'N'),(399,65,'N'),(399,68,'N'),(399,69,'S'),(399,70,'N'),(399,71,'N'),(399,72,'N'),(399,73,'N'),(399,74,'N'),(399,75,'N'),(399,76,'N'),(399,77,'N'),(399,78,'N'),(399,79,'N'),(399,80,'N'),(399,83,'N'),(399,84,'S'),(399,85,'N'),(399,86,'N'),(399,87,'N'),(399,88,'N'),(399,89,'N'),(399,90,'N'),(399,91,'N'),(399,92,'N'),(399,93,'N'),(399,94,'N'),(399,95,'N'),(399,98,'N'),(399,99,'S'),(399,100,'N'),(399,101,'N'),(399,102,'N'),(399,103,'N'),(399,104,'N'),(399,105,'N'),(399,106,'N'),(399,107,'N'),(399,108,'N'),(399,109,'N'),(399,110,'N'),(399,113,'N'),(399,114,'S'),(399,115,'N'),(399,116,'N'),(399,117,'N'),(399,118,'N'),(399,119,'N'),(399,120,'N'),(399,121,'N'),(399,122,'N'),(399,123,'N'),(399,124,'N'),(399,125,'N'),(399,128,'N'),(399,129,'S'),(399,130,'N'),(399,131,'N'),(399,132,'N'),(399,133,'N'),(399,134,'N'),(399,135,'N'),(399,136,'N'),(399,137,'N'),(399,138,'N'),(399,139,'N'),(399,140,'N'),(399,143,'N'),(399,144,'S'),(399,145,'N'),(399,146,'N'),(399,147,'N'),(399,148,'N'),(399,149,'N'),(399,150,'N'),(399,151,'N'),(399,152,'N'),(399,153,'N'),(399,154,'N'),(399,155,'N'),(399,158,'N'),(399,159,'S'),(399,160,'N'),(399,161,'N'),(399,162,'N'),(399,163,'N'),(399,164,'N'),(399,165,'N'),(399,166,'N'),(399,167,'N'),(399,168,'N'),(399,169,'N'),(399,170,'N'),(399,173,'N'),(399,174,'S'),(399,175,'N'),(399,176,'N'),(399,177,'N'),(399,178,'N'),(399,179,'N'),(399,180,'N'),(399,181,'N'),(399,182,'N'),(399,183,'N'),(399,184,'N'),(399,185,'N'),(399,188,'N'),(399,189,'S'),(399,190,'N'),(399,191,'N'),(399,192,'N'),(399,193,'N'),(399,194,'N'),(399,195,'N'),(399,196,'N'),(399,197,'N'),(399,198,'N'),(399,199,'N'),(399,200,'N'),(399,203,'N'),(399,204,'S'),(399,205,'N'),(399,206,'N'),(399,207,'N'),(399,208,'N'),(399,209,'N'),(399,210,'N'),(399,211,'N'),(399,212,'N'),(399,213,'N'),(399,214,'N'),(399,215,'N'),(399,218,'N'),(399,219,'S'),(399,220,'N'),(399,221,'N'),(399,222,'N'),(399,223,'N'),(399,224,'N'),(399,225,'N'),(399,226,'N'),(399,227,'N'),(399,228,'N'),(399,229,'N'),(399,230,'N'),(399,233,'N'),(399,234,'S'),(399,235,'N'),(399,236,'N'),(399,237,'N'),(399,238,'N'),(399,239,'N'),(399,240,'N'),(399,241,'N'),(399,242,'N'),(399,243,'N'),(399,244,'N'),(399,245,'N'),(399,248,'N'),(399,249,'S'),(399,250,'N'),(399,251,'N'),(399,252,'N'),(399,253,'N'),(399,254,'N'),(399,255,'N'),(399,256,'N'),(399,257,'N'),(399,258,'N'),(399,259,'N'),(399,260,'N'),(399,263,'N'),(399,264,'S'),(399,265,'N'),(399,266,'N'),(399,267,'N'),(399,268,'N'),(399,269,'N'),(399,270,'N'),(399,271,'N'),(399,272,'N'),(399,273,'N'),(399,274,'N'),(399,275,'N'),(399,278,'N'),(399,279,'S'),(399,280,'N'),(399,281,'N'),(399,282,'N'),(399,283,'N'),(399,284,'N'),(399,285,'N'),(399,286,'N'),(399,287,'N'),(399,288,'N'),(399,289,'N'),(399,290,'N'),(399,291,'N'),(399,294,'N'),(399,295,'S'),(399,296,'N'),(399,297,'N'),(399,298,'N'),(399,299,'N'),(399,300,'N'),(399,301,'N'),(399,303,'N'),(399,304,'N'),(399,305,'N'),(399,306,'N'),(399,307,'N'),(399,310,'N'),(399,311,'S'),(399,312,'N'),(399,313,'N'),(399,314,'N'),(399,315,'N'),(399,316,'N'),(399,317,'N'),(399,318,'N'),(399,319,'N'),(399,320,'N'),(399,321,'N'),(399,322,'N'),(399,323,'N'),(399,326,'N'),(399,327,'S'),(399,328,'N'),(399,329,'N'),(399,330,'N'),(399,331,'N'),(399,332,'N'),(399,333,'N'),(399,334,'N'),(399,335,'N'),(399,336,'N'),(399,337,'N'),(399,338,'N'),(399,339,'N'),(399,342,'N'),(399,343,'S'),(399,344,'N'),(399,345,'N'),(399,346,'N'),(399,347,'N'),(399,348,'N'),(399,349,'N'),(399,350,'N'),(399,352,'N'),(399,353,'N'),(399,354,'N'),(399,355,'N'),(399,356,'N'),(399,359,'N'),(399,360,'S'),(399,361,'N'),(399,362,'N'),(399,363,'N'),(399,364,'N'),(399,365,'N'),(399,366,'N'),(399,367,'N'),(399,369,'N'),(399,370,'N'),(399,371,'N'),(399,372,'N'),(399,373,'N'),(399,376,'N'),(399,377,'S'),(399,378,'N'),(399,379,'N'),(399,380,'N'),(399,381,'N'),(399,382,'N'),(399,383,'N'),(399,384,'N'),(399,386,'N'),(399,387,'N'),(399,388,'N'),(399,389,'N'),(399,390,'N'),(399,393,'N'),(399,394,'S'),(399,395,'N'),(399,396,'N'),(399,397,'N'),(399,398,'N'),(399,399,'N'),(399,400,'N'),(399,401,'N'),(399,403,'N'),(399,404,'N'),(399,405,'N'),(399,406,'N'),(399,407,'N'),(399,410,'N'),(399,411,'S'),(399,412,'N'),(399,413,'N'),(399,414,'N'),(399,415,'N'),(399,416,'N'),(399,417,'N'),(399,418,'N'),(399,420,'N'),(399,421,'N'),(399,422,'N'),(399,423,'N'),(399,424,'N'),(399,427,'N'),(399,428,'S'),(399,429,'N'),(399,430,'N'),(399,431,'N'),(399,432,'N'),(399,433,'N'),(399,434,'N'),(399,435,'N'),(399,437,'N'),(399,438,'N'),(399,439,'N'),(399,440,'N'),(399,441,'N'),(399,444,'N'),(399,445,'S'),(399,446,'N'),(399,447,'N'),(399,448,'N'),(399,449,'N'),(399,450,'N'),(399,451,'N'),(399,452,'N'),(399,453,'N'),(399,454,'N'),(399,455,'N'),(399,456,'N'),(399,457,'N'),(399,458,'N'),(399,459,'N'),(399,462,'N'),(399,463,'S'),(399,464,'N'),(399,465,'N'),(399,466,'N'),(399,467,'N'),(399,468,'N'),(399,469,'N'),(399,470,'N'),(399,471,'N'),(399,472,'N'),(399,474,'N'),(399,475,'N'),(399,476,'N'),(399,477,'N'),(399,478,'N'),(399,481,'N'),(399,482,'S'),(399,483,'N'),(399,484,'N'),(399,485,'N'),(399,486,'N'),(399,487,'N'),(399,488,'N'),(399,489,'N'),(399,490,'N'),(399,491,'N'),(399,494,'N'),(399,495,'N'),(399,496,'N'),(399,497,'N'),(399,498,'N'),(399,501,'N'),(399,502,'S'),(399,503,'N'),(399,504,'N'),(399,505,'N'),(399,506,'N'),(399,507,'N'),(399,508,'N'),(399,509,'N'),(399,510,'N'),(399,511,'N'),(399,514,'N'),(399,515,'N'),(399,516,'N'),(399,517,'N'),(399,518,'N'),(399,521,'N'),(399,522,'S'),(399,523,'N'),(399,524,'N'),(399,525,'N'),(399,526,'N'),(399,527,'N'),(399,528,'N'),(399,529,'N'),(399,530,'N'),(399,531,'N'),(399,532,'N'),(399,533,'N'),(399,534,'N'),(399,535,'N'),(399,538,'N'),(399,539,'S'),(399,540,'N'),(399,541,'N'),(399,542,'N'),(399,543,'N'),(399,544,'N'),(399,545,'N'),(399,546,'N'),(399,547,'N'),(399,548,'N'),(399,552,'N'),(399,553,'N'),(399,554,'N'),(399,555,'N'),(399,556,'N'),(399,559,'N'),(399,560,'S'),(399,561,'N'),(399,562,'N'),(399,563,'N'),(399,564,'N'),(399,565,'N'),(399,566,'N'),(399,567,'N'),(399,568,'N'),(399,569,'N'),(399,574,'N'),(399,575,'N'),(399,576,'N'),(399,577,'N'),(399,578,'N'),(399,581,'N'),(399,582,'S'),(399,583,'N'),(399,584,'N'),(399,585,'N'),(399,586,'N'),(399,587,'N'),(399,588,'N'),(399,589,'N'),(399,590,'N'),(399,591,'N'),(399,597,'N'),(399,598,'N'),(399,599,'N'),(399,600,'N'),(399,601,'N'),(399,604,'N'),(399,605,'S'),(399,606,'N'),(399,607,'N'),(399,608,'N'),(399,609,'N'),(399,610,'N'),(399,611,'N'),(399,612,'N'),(399,613,'N'),(399,614,'N'),(399,621,'N'),(399,622,'N'),(399,623,'N'),(399,624,'N'),(399,625,'N'),(399,628,'N'),(399,629,'S'),(399,630,'N'),(399,631,'N'),(399,632,'N'),(399,633,'N'),(399,634,'N'),(399,635,'N'),(399,636,'N'),(399,637,'N'),(399,638,'N'),(399,646,'N'),(399,647,'N'),(399,648,'N'),(399,649,'N'),(399,650,'N'),(399,653,'N'),(399,654,'S'),(399,655,'N'),(399,656,'N'),(399,657,'N'),(399,658,'N'),(399,659,'N'),(399,660,'N'),(399,661,'N'),(399,662,'N'),(399,663,'N'),(399,672,'N'),(399,673,'N'),(399,674,'N'),(399,675,'N'),(399,676,'N'),(399,679,'N'),(399,680,'S'),(399,681,'N'),(399,682,'N'),(399,683,'N'),(399,684,'N'),(399,685,'N'),(399,686,'N'),(399,687,'N'),(399,688,'N'),(399,689,'N'),(399,699,'N'),(399,700,'N'),(399,701,'N'),(399,702,'N'),(399,703,'N'),(399,706,'N'),(399,707,'S'),(399,708,'N'),(399,709,'N'),(399,710,'N'),(399,711,'N'),(399,712,'N'),(399,713,'N'),(399,714,'N'),(399,715,'N'),(399,716,'N'),(399,727,'N'),(399,728,'N'),(399,729,'N'),(399,730,'N'),(399,731,'N'),(399,734,'N'),(399,735,'S'),(399,736,'N'),(399,737,'N'),(399,738,'N'),(399,739,'N'),(399,740,'N'),(399,741,'N'),(399,742,'N'),(399,743,'N'),(399,744,'N'),(399,756,'N'),(399,757,'N'),(399,758,'N'),(399,759,'N'),(399,760,'N'),(399,763,'N'),(399,764,'S'),(399,765,'N'),(399,766,'N'),(399,767,'N'),(399,768,'N'),(399,769,'N'),(399,770,'N'),(399,771,'N'),(399,772,'N'),(399,773,'N'),(399,786,'N'),(399,787,'N'),(399,788,'N'),(399,789,'N'),(399,790,'N'),(399,793,'N'),(399,794,'S'),(399,795,'N'),(399,796,'N'),(399,797,'N'),(399,798,'N'),(399,799,'N'),(399,800,'N'),(399,801,'N'),(399,802,'N'),(399,803,'N'),(399,817,'N'),(399,818,'N'),(399,819,'N'),(399,820,'N'),(399,821,'N'),(399,824,'N'),(399,825,'S'),(399,826,'N'),(399,827,'N'),(399,828,'N'),(399,829,'N'),(399,830,'N'),(399,831,'N'),(399,832,'N'),(399,833,'N'),(399,834,'N'),(399,849,'N'),(399,850,'N'),(399,851,'N'),(399,852,'N'),(399,853,'N'),(399,856,'N'),(399,857,'S'),(399,858,'N'),(399,859,'N'),(399,860,'N'),(399,861,'N'),(399,862,'N'),(399,863,'N'),(399,864,'N'),(399,865,'N'),(399,866,'N'),(399,882,'N'),(399,883,'N'),(399,884,'N'),(399,885,'N'),(399,886,'N'),(399,889,'N'),(399,890,'S'),(399,891,'N'),(399,892,'N'),(399,893,'N'),(399,894,'N'),(399,895,'N'),(399,896,'N'),(399,897,'N'),(399,898,'N'),(399,899,'N'),(399,916,'N'),(399,917,'N'),(399,918,'N'),(399,919,'N'),(399,920,'N'),(399,923,'N'),(399,924,'S'),(399,925,'N'),(399,926,'N'),(399,927,'N'),(399,928,'N'),(399,929,'N'),(399,930,'N'),(399,931,'N'),(399,932,'N'),(399,933,'N'),(399,951,'N'),(399,952,'N'),(399,953,'N'),(399,954,'N'),(399,955,'N'),(399,958,'N'),(399,959,'S'),(399,960,'N'),(399,961,'N'),(399,962,'N'),(399,963,'N'),(399,964,'N'),(399,965,'N'),(399,966,'N'),(399,967,'N'),(399,968,'N'),(399,987,'N'),(399,988,'N'),(399,989,'N'),(399,990,'N'),(399,991,'N'),(399,994,'N'),(399,995,'S'),(399,996,'N'),(399,997,'N'),(399,998,'N'),(399,999,'N'),(399,1000,'N'),(399,1001,'N'),(399,1002,'N'),(399,1003,'N'),(399,1004,'N'),(399,1024,'N'),(399,1025,'N'),(399,1026,'N'),(399,1027,'N'),(399,1028,'N'),(399,1031,'N'),(399,1032,'S'),(399,1033,'N'),(399,1034,'N'),(399,1035,'N'),(399,1036,'N'),(399,1037,'N'),(399,1038,'N'),(399,1039,'N'),(399,1040,'N'),(399,1041,'N'),(399,1061,'N'),(399,1062,'N'),(399,1063,'N'),(399,1064,'N'),(399,1065,'N'),(399,1068,'N'),(399,1069,'S'),(399,1070,'N'),(399,1071,'N'),(399,1072,'N'),(399,1073,'N'),(399,1074,'N'),(399,1075,'N'),(399,1076,'N'),(399,1077,'N'),(399,1078,'N'),(399,1099,'N'),(399,1100,'N'),(399,1101,'N'),(399,1102,'N'),(399,1103,'N'),(399,1106,'N'),(399,1107,'S'),(399,1108,'N'),(399,1109,'N'),(399,1110,'N'),(399,1111,'N'),(399,1112,'N'),(399,1113,'N'),(399,1114,'N'),(399,1115,'N'),(399,1116,'N'),(399,1137,'N'),(399,1138,'N'),(399,1139,'N'),(399,1140,'N'),(399,1141,'N'),(399,1144,'N'),(399,1145,'S'),(399,1146,'N'),(399,1147,'N'),(399,1148,'N'),(399,1149,'N'),(399,1150,'N'),(399,1151,'N'),(399,1152,'N'),(399,1153,'N'),(399,1154,'N'),(399,1175,'N'),(399,1176,'N'),(399,1177,'N'),(399,1178,'N'),(399,1179,'N'),(399,1181,'N'),(399,1182,'S'),(399,1183,'N'),(399,1184,'N'),(399,1185,'N'),(399,1186,'N'),(399,1187,'N'),(399,1188,'N'),(399,1189,'N'),(399,1190,'N'),(399,1191,'N'),(399,1212,'N'),(399,1213,'N'),(399,1214,'N'),(399,1215,'N'),(399,1216,'N'),(399,1218,'N'),(399,1219,'S'),(399,1220,'N'),(399,1221,'N'),(399,1222,'N'),(399,1223,'N'),(399,1224,'N'),(399,1225,'N'),(399,1226,'N'),(399,1227,'N'),(399,1228,'N'),(399,1249,'N'),(399,1250,'N'),(399,1251,'N'),(399,1252,'N'),(399,1253,'N'),(399,1255,'N'),(399,1256,'S'),(399,1257,'N'),(399,1258,'N'),(399,1259,'N'),(399,1260,'N'),(399,1261,'N'),(399,1262,'N'),(399,1263,'N'),(399,1264,'N'),(399,1265,'N'),(399,1286,'N'),(399,1287,'N'),(399,1288,'N'),(399,1289,'N'),(399,1290,'N'),(399,1292,'N'),(399,1293,'S'),(399,1294,'N'),(399,1295,'N'),(399,1296,'N'),(399,1297,'N'),(399,1298,'N'),(399,1299,'N'),(399,1300,'N'),(399,1301,'N'),(399,1302,'N'),(399,1324,'N'),(399,1325,'N'),(399,1326,'N'),(399,1327,'N'),(399,1328,'N'),(399,1330,'N'),(399,1331,'S'),(399,1332,'N'),(399,1333,'N'),(399,1334,'N'),(399,1335,'N'),(399,1336,'N'),(399,1337,'N'),(399,1338,'N'),(399,1339,'N'),(399,1340,'N'),(399,1363,'N'),(399,1364,'N'),(399,1365,'N'),(399,1366,'N'),(399,1367,'N'),(399,1369,'N'),(399,1370,'S'),(399,1371,'N'),(399,1372,'N'),(399,1373,'N'),(399,1374,'N'),(399,1375,'N'),(399,1376,'N'),(399,1377,'N'),(399,1378,'N'),(399,1379,'N'),(399,1403,'N'),(399,1404,'N'),(399,1405,'N'),(399,1406,'N'),(399,1407,'N'),(399,1409,'N'),(399,1410,'S'),(399,1411,'N'),(399,1412,'N'),(399,1413,'N'),(399,1414,'N'),(399,1415,'N'),(399,1416,'N'),(399,1417,'N'),(399,1418,'N'),(399,1419,'N'),(399,1443,'N'),(399,1444,'N'),(399,1445,'N'),(399,1446,'N'),(399,1447,'N'),(399,1449,'N'),(399,1450,'S'),(399,1451,'N'),(399,1452,'N'),(399,1453,'N'),(399,1454,'N'),(399,1455,'N'),(399,1456,'N'),(399,1457,'N'),(399,1458,'N'),(399,1459,'N'),(399,1483,'N'),(399,1484,'N'),(399,1485,'N'),(399,1486,'N'),(399,1487,'N'),(399,1489,'N'),(399,1490,'S'),(399,1491,'N'),(399,1492,'N'),(399,1493,'N'),(399,1494,'N'),(399,1495,'N'),(399,1496,'N'),(399,1497,'N'),(399,1498,'N'),(399,1499,'N'),(399,1523,'N'),(399,1524,'N'),(399,1525,'N'),(399,1526,'N'),(399,1527,'S'),(399,1529,'N'),(399,1531,'N'),(399,1533,'N'),(399,1534,'N'),(399,1535,'N'),(399,1536,'N'),(399,1537,'N'),(399,1538,'N'),(399,1539,'N'),(399,1564,'N'),(399,1565,'N'),(399,1566,'N'),(399,1567,'N'),(399,1568,'S'),(399,1570,'N'),(399,1571,'N'),(399,1573,'N'),(399,1574,'N'),(399,1575,'N'),(399,1576,'N'),(399,1577,'N'),(399,1578,'N'),(399,1579,'N'),(399,1604,'N'),(399,1605,'N'),(399,1606,'N'),(399,1607,'N'),(399,1608,'S'),(399,1610,'N'),(399,1611,'N'),(399,1612,'N'),(399,1613,'N'),(399,1614,'N'),(399,1615,'N'),(399,1616,'N'),(399,1617,'N'),(399,1618,'N'),(401,1,'N'),(401,2,'N'),(401,3,'N'),(401,4,'N'),(401,5,'S'),(401,8,'N'),(401,9,'N'),(401,10,'N'),(401,11,'N'),(401,12,'N'),(401,13,'N'),(401,14,'N'),(401,15,'N'),(401,16,'N'),(401,17,'N'),(401,18,'N'),(401,19,'N'),(401,20,'S'),(401,23,'N'),(401,24,'N'),(401,25,'N'),(401,26,'N'),(401,27,'N'),(401,28,'N'),(401,29,'N'),(401,30,'N'),(401,31,'N'),(401,32,'N'),(401,33,'N'),(401,34,'N'),(401,35,'S'),(401,38,'N'),(401,39,'N'),(401,40,'N'),(401,41,'N'),(401,42,'N'),(401,43,'N'),(401,44,'N'),(401,45,'N'),(401,46,'N'),(401,47,'N'),(401,48,'N'),(401,49,'N'),(401,50,'S'),(401,53,'N'),(401,54,'N'),(401,55,'N'),(401,56,'N'),(401,57,'N'),(401,58,'N'),(401,59,'N'),(401,60,'N'),(401,61,'N'),(401,62,'N'),(401,63,'N'),(401,64,'N'),(401,65,'S'),(401,68,'N'),(401,69,'N'),(401,70,'N'),(401,71,'N'),(401,72,'N'),(401,73,'N'),(401,74,'N'),(401,75,'N'),(401,76,'N'),(401,77,'N'),(401,78,'N'),(401,79,'N'),(401,80,'S'),(401,83,'N'),(401,84,'N'),(401,85,'N'),(401,86,'N'),(401,87,'N'),(401,88,'N'),(401,89,'N'),(401,90,'N'),(401,91,'N'),(401,92,'N'),(401,93,'N'),(401,94,'N'),(401,95,'S'),(401,98,'N'),(401,99,'N'),(401,100,'N'),(401,101,'N'),(401,102,'N'),(401,103,'N'),(401,104,'N'),(401,105,'N'),(401,106,'N'),(401,107,'N'),(401,108,'N'),(401,109,'N'),(401,110,'S'),(401,113,'N'),(401,114,'N'),(401,115,'N'),(401,116,'N'),(401,117,'N'),(401,118,'N'),(401,119,'N'),(401,120,'N'),(401,121,'N'),(401,122,'N'),(401,123,'N'),(401,124,'N'),(401,125,'S'),(401,128,'N'),(401,129,'N'),(401,130,'N'),(401,131,'N'),(401,132,'N'),(401,133,'N'),(401,134,'N'),(401,135,'N'),(401,136,'N'),(401,137,'N'),(401,138,'N'),(401,139,'N'),(401,140,'S'),(401,143,'N'),(401,144,'N'),(401,145,'N'),(401,146,'N'),(401,147,'N'),(401,148,'N'),(401,149,'N'),(401,150,'N'),(401,151,'N'),(401,152,'N'),(401,153,'N'),(401,154,'N'),(401,155,'S'),(401,158,'N'),(401,159,'N'),(401,160,'N'),(401,161,'N'),(401,162,'N'),(401,163,'N'),(401,164,'N'),(401,165,'N'),(401,166,'N'),(401,167,'N'),(401,168,'N'),(401,169,'N'),(401,170,'S'),(401,173,'N'),(401,174,'N'),(401,175,'N'),(401,176,'N'),(401,177,'N'),(401,178,'N'),(401,179,'N'),(401,180,'N'),(401,181,'N'),(401,182,'N'),(401,183,'N'),(401,184,'N'),(401,185,'S'),(401,188,'N'),(401,189,'N'),(401,190,'N'),(401,191,'N'),(401,192,'N'),(401,193,'N'),(401,194,'N'),(401,195,'N'),(401,196,'N'),(401,197,'N'),(401,198,'N'),(401,199,'N'),(401,200,'S'),(401,203,'N'),(401,204,'N'),(401,205,'N'),(401,206,'N'),(401,207,'N'),(401,208,'N'),(401,209,'N'),(401,210,'N'),(401,211,'N'),(401,212,'N'),(401,213,'N'),(401,214,'N'),(401,215,'S'),(401,218,'N'),(401,219,'N'),(401,220,'N'),(401,221,'N'),(401,222,'N'),(401,223,'N'),(401,224,'N'),(401,225,'N'),(401,226,'N'),(401,227,'N'),(401,228,'N'),(401,229,'N'),(401,230,'S'),(401,233,'N'),(401,234,'N'),(401,235,'N'),(401,236,'N'),(401,237,'N'),(401,238,'N'),(401,239,'N'),(401,240,'N'),(401,241,'N'),(401,242,'N'),(401,243,'N'),(401,244,'N'),(401,245,'S'),(401,248,'N'),(401,249,'N'),(401,250,'N'),(401,251,'N'),(401,252,'N'),(401,253,'N'),(401,254,'N'),(401,255,'N'),(401,256,'N'),(401,257,'N'),(401,258,'N'),(401,259,'N'),(401,260,'S'),(401,263,'N'),(401,264,'N'),(401,265,'N'),(401,266,'N'),(401,267,'N'),(401,268,'N'),(401,269,'N'),(401,270,'N'),(401,271,'N'),(401,272,'N'),(401,273,'N'),(401,274,'N'),(401,275,'S'),(401,278,'N'),(401,279,'N'),(401,280,'N'),(401,281,'N'),(401,282,'N'),(401,283,'N'),(401,284,'N'),(401,285,'N'),(401,286,'N'),(401,287,'N'),(401,288,'N'),(401,289,'N'),(401,290,'N'),(401,291,'S'),(401,294,'N'),(401,295,'N'),(401,296,'N'),(401,297,'N'),(401,298,'N'),(401,299,'N'),(401,300,'N'),(401,301,'N'),(401,303,'N'),(401,304,'N'),(401,305,'N'),(401,306,'N'),(401,307,'S'),(401,310,'N'),(401,311,'N'),(401,312,'N'),(401,313,'N'),(401,314,'N'),(401,315,'N'),(401,316,'N'),(401,317,'N'),(401,318,'N'),(401,319,'N'),(401,320,'N'),(401,321,'N'),(401,322,'N'),(401,323,'S'),(401,326,'N'),(401,327,'N'),(401,328,'N'),(401,329,'N'),(401,330,'N'),(401,331,'N'),(401,332,'N'),(401,333,'N'),(401,334,'N'),(401,335,'N'),(401,336,'N'),(401,337,'N'),(401,338,'N'),(401,339,'S'),(401,342,'N'),(401,343,'N'),(401,344,'N'),(401,345,'N'),(401,346,'N'),(401,347,'N'),(401,348,'N'),(401,349,'N'),(401,350,'N'),(401,352,'N'),(401,353,'N'),(401,354,'N'),(401,355,'N'),(401,356,'S'),(401,359,'N'),(401,360,'N'),(401,361,'N'),(401,362,'N'),(401,363,'N'),(401,364,'N'),(401,365,'N'),(401,366,'N'),(401,367,'N'),(401,369,'N'),(401,370,'N'),(401,371,'N'),(401,372,'N'),(401,373,'S'),(401,376,'N'),(401,377,'N'),(401,378,'N'),(401,379,'N'),(401,380,'N'),(401,381,'N'),(401,382,'N'),(401,383,'N'),(401,384,'N'),(401,386,'N'),(401,387,'N'),(401,388,'N'),(401,389,'N'),(401,390,'S'),(401,393,'N'),(401,394,'N'),(401,395,'N'),(401,396,'N'),(401,397,'N'),(401,398,'N'),(401,399,'N'),(401,400,'N'),(401,401,'N'),(401,403,'N'),(401,404,'N'),(401,405,'N'),(401,406,'N'),(401,407,'S'),(401,410,'N'),(401,411,'N'),(401,412,'N'),(401,413,'N'),(401,414,'N'),(401,415,'N'),(401,416,'N'),(401,417,'N'),(401,418,'N'),(401,420,'N'),(401,421,'N'),(401,422,'N'),(401,423,'N'),(401,424,'S'),(401,427,'N'),(401,428,'N'),(401,429,'N'),(401,430,'N'),(401,431,'N'),(401,432,'N'),(401,433,'N'),(401,434,'N'),(401,435,'N'),(401,437,'N'),(401,438,'N'),(401,439,'N'),(401,440,'N'),(401,441,'S'),(401,444,'N'),(401,445,'N'),(401,446,'N'),(401,447,'N'),(401,448,'N'),(401,449,'N'),(401,450,'N'),(401,451,'N'),(401,452,'N'),(401,453,'N'),(401,455,'N'),(401,456,'N'),(401,457,'N'),(401,458,'N'),(401,459,'S'),(401,462,'N'),(401,463,'N'),(401,464,'N'),(401,465,'N'),(401,466,'N'),(401,467,'N'),(401,468,'N'),(401,469,'N'),(401,470,'N'),(401,471,'N'),(401,474,'N'),(401,475,'N'),(401,476,'N'),(401,477,'N'),(401,478,'S'),(401,481,'N'),(401,482,'N'),(401,483,'N'),(401,484,'N'),(401,485,'N'),(401,486,'N'),(401,487,'N'),(401,488,'N'),(401,489,'N'),(401,490,'N'),(401,494,'N'),(401,495,'N'),(401,496,'N'),(401,497,'N'),(401,498,'S'),(401,501,'N'),(401,502,'N'),(401,503,'N'),(401,504,'N'),(401,505,'N'),(401,506,'N'),(401,507,'N'),(401,508,'N'),(401,509,'N'),(401,510,'N'),(401,514,'N'),(401,515,'N'),(401,516,'N'),(401,517,'N'),(401,518,'S'),(401,521,'N'),(401,522,'N'),(401,523,'N'),(401,524,'N'),(401,525,'N'),(401,526,'N'),(401,527,'N'),(401,528,'N'),(401,529,'N'),(401,530,'N'),(401,531,'N'),(401,532,'N'),(401,533,'N'),(401,534,'N'),(401,535,'S'),(401,538,'N'),(401,539,'N'),(401,540,'N'),(401,541,'N'),(401,542,'N'),(401,543,'N'),(401,544,'N'),(401,545,'N'),(401,546,'N'),(401,547,'N'),(401,552,'N'),(401,553,'N'),(401,554,'N'),(401,555,'N'),(401,556,'S'),(401,559,'N'),(401,560,'N'),(401,561,'N'),(401,562,'N'),(401,563,'N'),(401,564,'N'),(401,565,'N'),(401,566,'N'),(401,567,'N'),(401,568,'N'),(401,574,'N'),(401,575,'N'),(401,576,'N'),(401,577,'N'),(401,578,'S'),(401,581,'N'),(401,582,'N'),(401,583,'N'),(401,584,'N'),(401,585,'N'),(401,586,'N'),(401,587,'N'),(401,588,'N'),(401,589,'N'),(401,590,'N'),(401,597,'N'),(401,598,'N'),(401,599,'N'),(401,600,'N'),(401,601,'S'),(401,604,'N'),(401,605,'N'),(401,606,'N'),(401,607,'N'),(401,608,'N'),(401,609,'N'),(401,610,'N'),(401,611,'N'),(401,612,'N'),(401,613,'N'),(401,621,'N'),(401,622,'N'),(401,623,'N'),(401,624,'N'),(401,625,'S'),(401,628,'N'),(401,629,'N'),(401,630,'N'),(401,631,'N'),(401,632,'N'),(401,633,'N'),(401,634,'N'),(401,635,'N'),(401,636,'N'),(401,637,'N'),(401,646,'N'),(401,647,'N'),(401,648,'N'),(401,649,'N'),(401,650,'S'),(401,653,'N'),(401,654,'N'),(401,655,'N'),(401,656,'N'),(401,657,'N'),(401,658,'N'),(401,659,'N'),(401,660,'N'),(401,661,'N'),(401,662,'N'),(401,672,'N'),(401,673,'N'),(401,674,'N'),(401,675,'N'),(401,676,'S'),(401,679,'N'),(401,680,'N'),(401,681,'N'),(401,682,'N'),(401,683,'N'),(401,684,'N'),(401,685,'N'),(401,686,'N'),(401,687,'N'),(401,688,'N'),(401,699,'N'),(401,700,'N'),(401,701,'N'),(401,702,'N'),(401,703,'S'),(401,706,'N'),(401,707,'N'),(401,708,'N'),(401,709,'N'),(401,710,'N'),(401,711,'N'),(401,712,'N'),(401,713,'N'),(401,714,'N'),(401,715,'N'),(401,727,'N'),(401,728,'N'),(401,729,'N'),(401,730,'N'),(401,731,'S'),(401,734,'N'),(401,735,'N'),(401,736,'N'),(401,737,'N'),(401,738,'N'),(401,739,'N'),(401,740,'N'),(401,741,'N'),(401,742,'N'),(401,743,'N'),(401,756,'N'),(401,757,'N'),(401,758,'N'),(401,759,'N'),(401,760,'S'),(401,763,'N'),(401,764,'N'),(401,765,'N'),(401,766,'N'),(401,767,'N'),(401,768,'N'),(401,769,'N'),(401,770,'N'),(401,771,'N'),(401,772,'N'),(401,786,'N'),(401,787,'N'),(401,788,'N'),(401,789,'N'),(401,790,'S'),(401,793,'N'),(401,794,'N'),(401,795,'N'),(401,796,'N'),(401,797,'N'),(401,798,'N'),(401,799,'N'),(401,800,'N'),(401,801,'N'),(401,802,'N'),(401,817,'N'),(401,818,'N'),(401,819,'N'),(401,820,'N'),(401,821,'S'),(401,824,'N'),(401,825,'N'),(401,826,'N'),(401,827,'N'),(401,828,'N'),(401,829,'N'),(401,830,'N'),(401,831,'N'),(401,832,'N'),(401,833,'N'),(401,849,'N'),(401,850,'N'),(401,851,'N'),(401,852,'N'),(401,853,'S'),(401,856,'N'),(401,857,'N'),(401,858,'N'),(401,859,'N'),(401,860,'N'),(401,861,'N'),(401,862,'N'),(401,863,'N'),(401,864,'N'),(401,865,'N'),(401,882,'N'),(401,883,'N'),(401,884,'N'),(401,885,'N'),(401,886,'S'),(401,889,'N'),(401,890,'N'),(401,891,'N'),(401,892,'N'),(401,893,'N'),(401,894,'N'),(401,895,'N'),(401,896,'N'),(401,897,'N'),(401,898,'N'),(401,916,'N'),(401,917,'N'),(401,918,'N'),(401,919,'N'),(401,920,'S'),(401,923,'N'),(401,924,'N'),(401,925,'N'),(401,926,'N'),(401,927,'N'),(401,928,'N'),(401,929,'N'),(401,930,'N'),(401,931,'N'),(401,932,'N'),(401,951,'N'),(401,952,'N'),(401,953,'N'),(401,954,'N'),(401,955,'S'),(401,958,'N'),(401,959,'N'),(401,960,'N'),(401,961,'N'),(401,962,'N'),(401,963,'N'),(401,964,'N'),(401,965,'N'),(401,966,'N'),(401,967,'N'),(401,987,'N'),(401,988,'N'),(401,989,'N'),(401,990,'N'),(401,991,'S'),(401,994,'N'),(401,995,'N'),(401,996,'N'),(401,997,'N'),(401,998,'N'),(401,999,'N'),(401,1000,'N'),(401,1001,'N'),(401,1002,'N'),(401,1003,'N'),(401,1024,'N'),(401,1025,'N'),(401,1026,'N'),(401,1027,'N'),(401,1028,'S'),(401,1031,'N'),(401,1032,'N'),(401,1033,'N'),(401,1034,'N'),(401,1035,'N'),(401,1036,'N'),(401,1037,'N'),(401,1038,'N'),(401,1039,'N'),(401,1040,'N'),(401,1061,'N'),(401,1062,'N'),(401,1063,'N'),(401,1064,'N'),(401,1065,'S'),(401,1068,'N'),(401,1069,'N'),(401,1070,'N'),(401,1071,'N'),(401,1072,'N'),(401,1073,'N'),(401,1074,'N'),(401,1075,'N'),(401,1076,'N'),(401,1077,'N'),(401,1099,'N'),(401,1100,'N'),(401,1101,'N'),(401,1102,'N'),(401,1103,'S'),(401,1106,'N'),(401,1107,'N'),(401,1108,'N'),(401,1109,'N'),(401,1110,'N'),(401,1111,'N'),(401,1112,'N'),(401,1113,'N'),(401,1114,'N'),(401,1115,'N'),(401,1137,'N'),(401,1138,'N'),(401,1139,'N'),(401,1140,'N'),(401,1141,'S'),(401,1144,'N'),(401,1145,'N'),(401,1146,'N'),(401,1147,'N'),(401,1148,'N'),(401,1149,'N'),(401,1150,'N'),(401,1151,'N'),(401,1152,'N'),(401,1153,'N'),(401,1175,'N'),(401,1176,'N'),(401,1177,'N'),(401,1178,'N'),(401,1179,'S'),(401,1181,'N'),(401,1182,'N'),(401,1183,'N'),(401,1184,'N'),(401,1185,'N'),(401,1186,'N'),(401,1187,'N'),(401,1188,'N'),(401,1189,'N'),(401,1190,'N'),(401,1212,'N'),(401,1213,'N'),(401,1214,'N'),(401,1215,'N'),(401,1216,'S'),(401,1218,'N'),(401,1219,'N'),(401,1220,'N'),(401,1221,'N'),(401,1222,'N'),(401,1223,'N'),(401,1224,'N'),(401,1225,'N'),(401,1226,'N'),(401,1227,'N'),(401,1249,'N'),(401,1250,'N'),(401,1251,'N'),(401,1252,'N'),(401,1253,'S'),(401,1255,'N'),(401,1256,'N'),(401,1257,'N'),(401,1258,'N'),(401,1259,'N'),(401,1260,'N'),(401,1261,'N'),(401,1262,'N'),(401,1263,'N'),(401,1264,'N'),(401,1286,'N'),(401,1287,'N'),(401,1288,'N'),(401,1289,'N'),(401,1290,'S'),(401,1292,'N'),(401,1293,'N'),(401,1294,'N'),(401,1295,'N'),(401,1296,'N'),(401,1297,'N'),(401,1298,'N'),(401,1299,'N'),(401,1300,'N'),(401,1301,'N'),(401,1324,'N'),(401,1325,'N'),(401,1326,'N'),(401,1327,'N'),(401,1328,'S'),(401,1330,'N'),(401,1331,'N'),(401,1332,'N'),(401,1333,'N'),(401,1334,'N'),(401,1335,'N'),(401,1336,'N'),(401,1337,'N'),(401,1338,'N'),(401,1339,'N'),(401,1363,'N'),(401,1364,'N'),(401,1365,'N'),(401,1366,'N'),(401,1367,'S'),(401,1369,'N'),(401,1370,'N'),(401,1371,'N'),(401,1372,'N'),(401,1373,'N'),(401,1374,'N'),(401,1375,'N'),(401,1376,'N'),(401,1377,'N'),(401,1378,'N'),(401,1403,'N'),(401,1404,'N'),(401,1405,'N'),(401,1406,'N'),(401,1407,'S'),(401,1409,'N'),(401,1410,'N'),(401,1411,'N'),(401,1412,'N'),(401,1413,'N'),(401,1414,'N'),(401,1415,'N'),(401,1416,'N'),(401,1417,'N'),(401,1418,'N'),(401,1443,'N'),(401,1444,'N'),(401,1445,'N'),(401,1446,'N'),(401,1447,'S'),(401,1449,'N'),(401,1450,'N'),(401,1451,'N'),(401,1452,'N'),(401,1453,'N'),(401,1454,'N'),(401,1455,'N'),(401,1456,'N'),(401,1457,'N'),(401,1458,'N'),(401,1483,'N'),(401,1484,'N'),(401,1485,'N'),(401,1486,'N'),(401,1487,'S'),(401,1489,'N'),(401,1490,'N'),(401,1491,'N'),(401,1492,'N'),(401,1493,'N'),(401,1494,'N'),(401,1495,'N'),(401,1496,'N'),(401,1497,'N'),(401,1498,'N'),(401,1523,'N'),(401,1524,'N'),(401,1525,'N'),(401,1526,'N'),(401,1527,'S'),(401,1528,'N'),(401,1529,'N'),(401,1531,'N'),(401,1533,'N'),(401,1534,'N'),(401,1535,'N'),(401,1536,'N'),(401,1537,'N'),(401,1538,'N'),(401,1540,'N'),(401,1541,'N'),(401,1542,'N'),(401,1543,'N'),(401,1544,'N'),(401,1545,'N'),(401,1546,'N'),(401,1547,'N'),(401,1548,'N'),(401,1549,'N'),(401,1550,'N'),(401,1551,'N'),(401,1552,'N'),(401,1553,'N'),(401,1554,'N'),(401,1555,'N'),(401,1556,'N'),(401,1557,'N'),(401,1558,'N'),(401,1559,'N'),(401,1560,'N'),(401,1561,'N'),(401,1562,'N'),(401,1563,'N'),(401,1564,'N'),(401,1565,'N'),(401,1566,'N'),(401,1567,'N'),(401,1568,'S'),(401,1569,'N'),(401,1570,'N'),(401,1571,'N'),(401,1573,'N'),(401,1574,'N'),(401,1575,'N'),(401,1576,'N'),(401,1577,'N'),(401,1578,'N'),(401,1580,'N'),(401,1581,'N'),(401,1582,'N'),(401,1583,'N'),(401,1584,'N'),(401,1585,'N'),(401,1586,'N'),(401,1587,'N'),(401,1588,'N'),(401,1589,'N'),(401,1590,'N'),(401,1591,'N'),(401,1592,'N'),(401,1593,'N'),(401,1594,'N'),(401,1595,'N'),(401,1596,'N'),(401,1597,'N'),(401,1598,'N'),(401,1599,'N'),(401,1600,'N'),(401,1601,'N'),(401,1602,'N'),(401,1603,'N'),(401,1604,'N'),(401,1605,'N'),(401,1606,'N'),(401,1607,'S'),(401,1608,'N'),(401,1609,'N'),(401,1610,'N'),(401,1611,'N'),(401,1612,'N'),(401,1613,'N'),(401,1614,'N'),(401,1615,'N'),(401,1616,'N'),(401,1617,'N'),(401,1619,'N'),(401,1620,'N'),(401,1621,'N'),(401,1622,'N'),(401,1623,'N'),(401,1624,'N'),(401,1625,'N'),(401,1626,'N'),(401,1627,'N'),(401,1628,'N'),(401,1629,'N'),(401,1630,'N'),(401,1631,'N'),(401,1632,'N'),(401,1633,'N'),(401,1634,'N'),(401,1635,'N'),(401,1636,'N'),(401,1637,'N'),(401,1638,'N'),(401,1639,'N'),(401,1640,'N'),(401,1641,'N'),(401,1642,'N'),(405,1,'S'),(405,16,'S'),(405,31,'S'),(405,46,'S'),(405,61,'S'),(405,76,'S'),(405,91,'S'),(405,106,'S'),(405,121,'S'),(405,136,'S'),(405,151,'S'),(405,166,'S'),(405,181,'S'),(405,196,'S'),(405,211,'S'),(405,226,'S'),(405,241,'S'),(405,256,'S'),(405,271,'S'),(405,287,'S'),(405,303,'S'),(405,319,'S'),(405,335,'S'),(405,352,'S'),(405,369,'S'),(405,386,'S'),(405,403,'S'),(405,420,'S'),(405,437,'S'),(405,455,'S'),(405,474,'S'),(405,494,'S'),(405,514,'S'),(405,531,'S'),(405,552,'S'),(405,574,'S'),(405,597,'S'),(405,621,'S'),(405,646,'S'),(405,672,'S'),(405,699,'S'),(405,727,'S'),(405,756,'S'),(405,786,'S'),(405,817,'S'),(405,849,'S'),(405,882,'S'),(405,916,'S'),(405,951,'S'),(405,987,'S'),(405,1024,'S'),(405,1061,'S'),(405,1099,'S'),(405,1137,'S'),(405,1175,'S'),(405,1212,'S'),(405,1249,'S'),(405,1286,'S'),(405,1324,'S'),(405,1363,'S'),(405,1403,'S'),(405,1443,'S'),(405,1483,'S'),(405,1523,'S'),(405,1564,'S'),(405,1604,'S'),(406,1,'N'),(406,2,'N'),(406,3,'N'),(406,4,'S'),(406,5,'N'),(406,8,'N'),(406,9,'N'),(406,10,'N'),(406,11,'N'),(406,12,'N'),(406,13,'N'),(406,14,'N'),(406,15,'N'),(406,16,'N'),(406,17,'N'),(406,18,'N'),(406,19,'S'),(406,20,'N'),(406,23,'N'),(406,24,'N'),(406,25,'N'),(406,26,'N'),(406,27,'N'),(406,28,'N'),(406,29,'N'),(406,30,'N'),(406,31,'N'),(406,32,'N'),(406,33,'N'),(406,34,'S'),(406,35,'N'),(406,38,'N'),(406,39,'N'),(406,40,'N'),(406,41,'N'),(406,42,'N'),(406,43,'N'),(406,44,'N'),(406,45,'N'),(406,46,'N'),(406,47,'N'),(406,48,'N'),(406,49,'S'),(406,50,'N'),(406,53,'N'),(406,54,'N'),(406,55,'N'),(406,56,'N'),(406,57,'N'),(406,58,'N'),(406,59,'N'),(406,60,'N'),(406,61,'N'),(406,62,'N'),(406,63,'N'),(406,64,'S'),(406,65,'N'),(406,68,'N'),(406,69,'N'),(406,70,'N'),(406,71,'N'),(406,72,'N'),(406,73,'N'),(406,74,'N'),(406,75,'N'),(406,76,'N'),(406,77,'N'),(406,78,'N'),(406,79,'S'),(406,80,'N'),(406,83,'N'),(406,84,'N'),(406,85,'N'),(406,86,'N'),(406,87,'N'),(406,88,'N'),(406,89,'N'),(406,90,'N'),(406,91,'N'),(406,92,'N'),(406,93,'N'),(406,94,'S'),(406,95,'N'),(406,98,'N'),(406,99,'N'),(406,100,'N'),(406,101,'N'),(406,102,'N'),(406,103,'N'),(406,104,'N'),(406,105,'N'),(406,106,'N'),(406,107,'N'),(406,108,'N'),(406,109,'S'),(406,110,'N'),(406,113,'N'),(406,114,'N'),(406,115,'N'),(406,116,'N'),(406,117,'N'),(406,118,'N'),(406,119,'N'),(406,120,'N'),(406,121,'N'),(406,122,'N'),(406,123,'N'),(406,124,'S'),(406,125,'N'),(406,128,'N'),(406,129,'N'),(406,130,'N'),(406,131,'N'),(406,132,'N'),(406,133,'N'),(406,134,'N'),(406,135,'N'),(406,136,'N'),(406,137,'N'),(406,138,'N'),(406,139,'S'),(406,140,'N'),(406,143,'N'),(406,144,'N'),(406,145,'N'),(406,146,'N'),(406,147,'N'),(406,148,'N'),(406,149,'N'),(406,150,'N'),(406,151,'N'),(406,152,'N'),(406,153,'N'),(406,154,'S'),(406,155,'N'),(406,158,'N'),(406,159,'N'),(406,160,'N'),(406,161,'N'),(406,162,'N'),(406,163,'N'),(406,164,'N'),(406,165,'N'),(406,166,'N'),(406,167,'N'),(406,168,'N'),(406,169,'S'),(406,170,'N'),(406,173,'N'),(406,174,'N'),(406,175,'N'),(406,176,'N'),(406,177,'N'),(406,178,'N'),(406,179,'N'),(406,180,'N'),(406,181,'N'),(406,182,'N'),(406,183,'N'),(406,184,'S'),(406,185,'N'),(406,188,'N'),(406,189,'N'),(406,190,'N'),(406,191,'N'),(406,192,'N'),(406,193,'N'),(406,194,'N'),(406,195,'N'),(406,196,'N'),(406,197,'N'),(406,198,'N'),(406,199,'S'),(406,200,'N'),(406,203,'N'),(406,204,'N'),(406,205,'N'),(406,206,'N'),(406,207,'N'),(406,208,'N'),(406,209,'N'),(406,210,'N'),(406,211,'N'),(406,212,'N'),(406,213,'N'),(406,214,'S'),(406,215,'N'),(406,218,'N'),(406,219,'N'),(406,220,'N'),(406,221,'N'),(406,222,'N'),(406,223,'N'),(406,224,'N'),(406,225,'N'),(406,226,'N'),(406,227,'N'),(406,228,'N'),(406,229,'S'),(406,230,'N'),(406,233,'N'),(406,234,'N'),(406,235,'N'),(406,236,'N'),(406,237,'N'),(406,238,'N'),(406,239,'N'),(406,240,'N'),(406,241,'N'),(406,242,'N'),(406,243,'N'),(406,244,'S'),(406,245,'N'),(406,248,'N'),(406,249,'N'),(406,250,'N'),(406,251,'N'),(406,252,'N'),(406,253,'N'),(406,254,'N'),(406,255,'N'),(406,256,'N'),(406,257,'N'),(406,258,'N'),(406,259,'S'),(406,260,'N'),(406,263,'N'),(406,264,'N'),(406,265,'N'),(406,266,'N'),(406,267,'N'),(406,268,'N'),(406,269,'N'),(406,270,'N'),(406,271,'N'),(406,272,'N'),(406,273,'N'),(406,274,'S'),(406,275,'N'),(406,278,'N'),(406,279,'N'),(406,280,'N'),(406,281,'N'),(406,282,'N'),(406,283,'N'),(406,284,'N'),(406,285,'N'),(406,286,'N'),(406,287,'N'),(406,288,'N'),(406,289,'N'),(406,290,'S'),(406,291,'N'),(406,294,'N'),(406,295,'N'),(406,296,'N'),(406,297,'N'),(406,298,'N'),(406,299,'N'),(406,300,'N'),(406,301,'N'),(406,303,'N'),(406,304,'N'),(406,305,'N'),(406,306,'S'),(406,307,'N'),(406,310,'N'),(406,311,'N'),(406,312,'N'),(406,313,'N'),(406,314,'N'),(406,315,'N'),(406,316,'N'),(406,317,'N'),(406,318,'N'),(406,319,'N'),(406,320,'N'),(406,321,'N'),(406,322,'S'),(406,323,'N'),(406,326,'N'),(406,327,'N'),(406,328,'N'),(406,329,'N'),(406,330,'N'),(406,331,'N'),(406,332,'N'),(406,333,'N'),(406,334,'N'),(406,335,'N'),(406,336,'N'),(406,337,'N'),(406,338,'S'),(406,339,'N'),(406,342,'N'),(406,343,'N'),(406,344,'N'),(406,345,'N'),(406,346,'N'),(406,347,'N'),(406,348,'N'),(406,349,'N'),(406,350,'N'),(406,352,'N'),(406,353,'N'),(406,354,'N'),(406,355,'S'),(406,356,'N'),(406,359,'N'),(406,360,'N'),(406,361,'N'),(406,362,'N'),(406,363,'N'),(406,364,'N'),(406,365,'N'),(406,366,'N'),(406,367,'N'),(406,369,'N'),(406,370,'N'),(406,371,'N'),(406,372,'S'),(406,373,'N'),(406,376,'N'),(406,377,'N'),(406,378,'N'),(406,379,'N'),(406,380,'N'),(406,381,'N'),(406,382,'N'),(406,383,'N'),(406,384,'N'),(406,386,'N'),(406,387,'N'),(406,388,'N'),(406,389,'S'),(406,390,'N'),(406,393,'N'),(406,394,'N'),(406,395,'N'),(406,396,'N'),(406,397,'N'),(406,398,'N'),(406,399,'N'),(406,400,'N'),(406,401,'N'),(406,403,'N'),(406,404,'N'),(406,405,'N'),(406,406,'S'),(406,407,'N'),(406,410,'N'),(406,411,'N'),(406,412,'N'),(406,413,'N'),(406,414,'N'),(406,415,'N'),(406,416,'N'),(406,417,'N'),(406,418,'N'),(406,420,'N'),(406,421,'N'),(406,422,'N'),(406,423,'S'),(406,424,'N'),(406,427,'N'),(406,428,'N'),(406,429,'N'),(406,430,'N'),(406,431,'N'),(406,432,'N'),(406,433,'N'),(406,434,'N'),(406,435,'N'),(406,437,'N'),(406,438,'N'),(406,439,'N'),(406,440,'S'),(406,441,'N'),(406,444,'N'),(406,445,'N'),(406,446,'N'),(406,447,'N'),(406,448,'N'),(406,449,'N'),(406,450,'N'),(406,451,'N'),(406,452,'N'),(406,453,'N'),(406,455,'N'),(406,456,'N'),(406,457,'N'),(406,458,'S'),(406,459,'N'),(406,462,'N'),(406,463,'N'),(406,464,'N'),(406,465,'N'),(406,466,'N'),(406,467,'N'),(406,468,'N'),(406,469,'N'),(406,470,'N'),(406,471,'N'),(406,474,'N'),(406,475,'N'),(406,476,'N'),(406,477,'S'),(406,478,'N'),(406,481,'N'),(406,482,'N'),(406,483,'N'),(406,484,'N'),(406,485,'N'),(406,486,'N'),(406,487,'N'),(406,488,'N'),(406,489,'N'),(406,490,'N'),(406,494,'N'),(406,495,'N'),(406,496,'N'),(406,497,'S'),(406,498,'N'),(406,501,'N'),(406,502,'N'),(406,503,'N'),(406,504,'N'),(406,505,'N'),(406,506,'N'),(406,507,'N'),(406,508,'N'),(406,509,'N'),(406,510,'N'),(406,514,'N'),(406,515,'N'),(406,516,'N'),(406,517,'S'),(406,518,'N'),(406,521,'N'),(406,522,'N'),(406,523,'N'),(406,524,'N'),(406,525,'N'),(406,526,'N'),(406,527,'N'),(406,528,'N'),(406,529,'N'),(406,530,'N'),(406,531,'N'),(406,532,'N'),(406,533,'N'),(406,534,'S'),(406,535,'N'),(406,538,'N'),(406,539,'N'),(406,540,'N'),(406,541,'N'),(406,542,'N'),(406,543,'N'),(406,544,'N'),(406,545,'N'),(406,546,'N'),(406,547,'N'),(406,551,'N'),(406,552,'N'),(406,553,'N'),(406,554,'N'),(406,555,'S'),(406,556,'N'),(406,559,'N'),(406,560,'N'),(406,561,'N'),(406,562,'N'),(406,563,'N'),(406,564,'N'),(406,565,'N'),(406,566,'N'),(406,567,'N'),(406,568,'N'),(406,572,'N'),(406,573,'N'),(406,574,'N'),(406,575,'N'),(406,576,'N'),(406,577,'S'),(406,578,'N'),(406,581,'N'),(406,582,'N'),(406,583,'N'),(406,584,'N'),(406,585,'N'),(406,586,'N'),(406,587,'N'),(406,588,'N'),(406,589,'N'),(406,590,'N'),(406,594,'N'),(406,595,'N'),(406,597,'N'),(406,598,'N'),(406,599,'N'),(406,600,'S'),(406,601,'N'),(406,604,'N'),(406,605,'N'),(406,606,'N'),(406,607,'N'),(406,608,'N'),(406,609,'N'),(406,610,'N'),(406,611,'N'),(406,612,'N'),(406,613,'N'),(406,617,'N'),(406,618,'N'),(406,621,'N'),(406,622,'N'),(406,623,'N'),(406,624,'S'),(406,625,'N'),(406,628,'N'),(406,629,'N'),(406,630,'N'),(406,631,'N'),(406,632,'N'),(406,633,'N'),(406,634,'N'),(406,635,'N'),(406,636,'N'),(406,637,'N'),(406,641,'N'),(406,642,'N'),(406,646,'N'),(406,647,'N'),(406,648,'N'),(406,649,'S'),(406,650,'N'),(406,653,'N'),(406,654,'N'),(406,655,'N'),(406,656,'N'),(406,657,'N'),(406,658,'N'),(406,659,'N'),(406,660,'N'),(406,661,'N'),(406,662,'N'),(406,666,'N'),(406,667,'N'),(406,672,'N'),(406,673,'N'),(406,674,'N'),(406,675,'S'),(406,676,'N'),(406,679,'N'),(406,680,'N'),(406,681,'N'),(406,682,'N'),(406,683,'N'),(406,684,'N'),(406,685,'N'),(406,686,'N'),(406,687,'N'),(406,688,'N'),(406,692,'N'),(406,693,'N'),(406,698,'N'),(406,699,'N'),(406,700,'N'),(406,701,'N'),(406,702,'S'),(406,703,'N'),(406,706,'N'),(406,707,'N'),(406,708,'N'),(406,709,'N'),(406,710,'N'),(406,711,'N'),(406,712,'N'),(406,713,'N'),(406,714,'N'),(406,715,'N'),(406,719,'N'),(406,720,'N'),(406,725,'N'),(406,726,'N'),(406,727,'N'),(406,728,'N'),(406,729,'N'),(406,730,'S'),(406,731,'N'),(406,734,'N'),(406,735,'N'),(406,736,'N'),(406,737,'N'),(406,738,'N'),(406,739,'N'),(406,740,'N'),(406,741,'N'),(406,742,'N'),(406,743,'N'),(406,747,'N'),(406,748,'N'),(406,753,'N'),(406,754,'N'),(406,756,'N'),(406,757,'N'),(406,758,'N'),(406,759,'S'),(406,760,'N'),(406,763,'N'),(406,764,'N'),(406,765,'N'),(406,766,'N'),(406,767,'N'),(406,768,'N'),(406,769,'N'),(406,770,'N'),(406,771,'N'),(406,772,'N'),(406,776,'N'),(406,777,'N'),(406,782,'N'),(406,783,'N'),(406,786,'N'),(406,787,'N'),(406,788,'N'),(406,789,'S'),(406,790,'N'),(406,793,'N'),(406,794,'N'),(406,795,'N'),(406,796,'N'),(406,797,'N'),(406,798,'N'),(406,799,'N'),(406,800,'N'),(406,801,'N'),(406,802,'N'),(406,806,'N'),(406,807,'N'),(406,812,'N'),(406,813,'N'),(406,817,'N'),(406,818,'N'),(406,819,'N'),(406,820,'S'),(406,821,'N'),(406,824,'N'),(406,825,'N'),(406,826,'N'),(406,827,'N'),(406,828,'N'),(406,829,'N'),(406,830,'N'),(406,831,'N'),(406,832,'N'),(406,833,'N'),(406,837,'N'),(406,838,'N'),(406,843,'N'),(406,844,'N'),(406,849,'N'),(406,850,'N'),(406,851,'N'),(406,852,'S'),(406,853,'N'),(406,856,'N'),(406,857,'N'),(406,858,'N'),(406,859,'N'),(406,860,'N'),(406,861,'N'),(406,862,'N'),(406,863,'N'),(406,864,'N'),(406,865,'N'),(406,869,'N'),(406,870,'N'),(406,875,'N'),(406,876,'N'),(406,881,'N'),(406,882,'N'),(406,883,'N'),(406,884,'N'),(406,885,'S'),(406,886,'N'),(406,889,'N'),(406,890,'N'),(406,891,'N'),(406,892,'N'),(406,893,'N'),(406,894,'N'),(406,895,'N'),(406,896,'N'),(406,897,'N'),(406,898,'N'),(406,902,'N'),(406,903,'N'),(406,908,'N'),(406,909,'N'),(406,914,'N'),(406,915,'N'),(406,916,'N'),(406,917,'N'),(406,918,'N'),(406,919,'S'),(406,920,'N'),(406,923,'N'),(406,924,'N'),(406,925,'N'),(406,926,'N'),(406,927,'N'),(406,928,'N'),(406,929,'N'),(406,930,'N'),(406,931,'N'),(406,932,'N'),(406,936,'N'),(406,937,'N'),(406,942,'N'),(406,943,'N'),(406,948,'N'),(406,949,'N'),(406,950,'N'),(406,951,'N'),(406,952,'N'),(406,953,'N'),(406,954,'S'),(406,955,'N'),(406,958,'N'),(406,959,'N'),(406,960,'N'),(406,961,'N'),(406,962,'N'),(406,963,'N'),(406,964,'N'),(406,965,'N'),(406,966,'N'),(406,967,'N'),(406,971,'N'),(406,972,'N'),(406,977,'N'),(406,978,'N'),(406,983,'N'),(406,984,'N'),(406,985,'N'),(406,986,'N'),(406,987,'N'),(406,988,'N'),(406,989,'N'),(406,990,'S'),(406,991,'N'),(406,994,'N'),(406,995,'N'),(406,996,'N'),(406,997,'N'),(406,998,'N'),(406,999,'N'),(406,1000,'N'),(406,1001,'N'),(406,1002,'N'),(406,1003,'N'),(406,1007,'N'),(406,1008,'N'),(406,1013,'N'),(406,1014,'N'),(406,1019,'N'),(406,1020,'N'),(406,1021,'N'),(406,1022,'N'),(406,1023,'N'),(406,1024,'N'),(406,1025,'N'),(406,1026,'N'),(406,1027,'S'),(406,1028,'N'),(406,1031,'N'),(406,1032,'N'),(406,1033,'N'),(406,1034,'N'),(406,1035,'N'),(406,1036,'N'),(406,1037,'N'),(406,1038,'N'),(406,1039,'N'),(406,1040,'N'),(406,1044,'N'),(406,1045,'N'),(406,1050,'N'),(406,1051,'N'),(406,1056,'N'),(406,1057,'N'),(406,1058,'N'),(406,1059,'N'),(406,1060,'N'),(406,1061,'N'),(406,1062,'N'),(406,1063,'N'),(406,1064,'S'),(406,1065,'N'),(406,1068,'N'),(406,1069,'N'),(406,1070,'N'),(406,1071,'N'),(406,1072,'N'),(406,1073,'N'),(406,1074,'N'),(406,1075,'N'),(406,1076,'N'),(406,1077,'N'),(406,1081,'N'),(406,1082,'N'),(406,1087,'N'),(406,1088,'N'),(406,1093,'N'),(406,1094,'N'),(406,1095,'N'),(406,1096,'N'),(406,1097,'N'),(406,1098,'N'),(406,1099,'N'),(406,1100,'N'),(406,1101,'N'),(406,1102,'S'),(406,1103,'N'),(406,1104,'N'),(406,1106,'N'),(406,1107,'N'),(406,1108,'N'),(406,1109,'N'),(406,1110,'N'),(406,1111,'N'),(406,1112,'N'),(406,1113,'N'),(406,1114,'N'),(406,1115,'N'),(406,1119,'N'),(406,1120,'N'),(406,1125,'N'),(406,1126,'N'),(406,1131,'N'),(406,1132,'N'),(406,1133,'N'),(406,1134,'N'),(406,1135,'N'),(406,1136,'N'),(406,1137,'N'),(406,1138,'N'),(406,1139,'N'),(406,1140,'S'),(406,1141,'N'),(406,1142,'N'),(406,1144,'N'),(406,1145,'N'),(406,1146,'N'),(406,1147,'N'),(406,1148,'N'),(406,1149,'N'),(406,1150,'N'),(406,1151,'N'),(406,1152,'N'),(406,1153,'N'),(406,1157,'N'),(406,1158,'N'),(406,1163,'N'),(406,1164,'N'),(406,1169,'N'),(406,1170,'N'),(406,1171,'N'),(406,1172,'N'),(406,1173,'N'),(406,1174,'N'),(406,1175,'N'),(406,1176,'N'),(406,1177,'N'),(406,1178,'S'),(406,1179,'N'),(406,1180,'N'),(406,1181,'N'),(406,1182,'N'),(406,1183,'N'),(406,1184,'N'),(406,1185,'N'),(406,1186,'N'),(406,1187,'N'),(406,1188,'N'),(406,1189,'N'),(406,1190,'N'),(406,1194,'N'),(406,1195,'N'),(406,1200,'N'),(406,1201,'N'),(406,1206,'N'),(406,1207,'N'),(406,1208,'N'),(406,1209,'N'),(406,1210,'N'),(406,1211,'N'),(406,1212,'N'),(406,1213,'N'),(406,1214,'N'),(406,1215,'S'),(406,1216,'N'),(406,1217,'N'),(406,1218,'N'),(406,1219,'N'),(406,1220,'N'),(406,1221,'N'),(406,1222,'N'),(406,1223,'N'),(406,1224,'N'),(406,1225,'N'),(406,1226,'N'),(406,1227,'N'),(406,1231,'N'),(406,1232,'N'),(406,1237,'N'),(406,1238,'N'),(406,1243,'N'),(406,1244,'N'),(406,1245,'N'),(406,1246,'N'),(406,1247,'N'),(406,1248,'N'),(406,1249,'N'),(406,1250,'N'),(406,1251,'N'),(406,1252,'S'),(406,1253,'N'),(406,1254,'N'),(406,1255,'N'),(406,1256,'N'),(406,1257,'N'),(406,1258,'N'),(406,1259,'N'),(406,1260,'N'),(406,1261,'N'),(406,1262,'N'),(406,1263,'N'),(406,1264,'N'),(406,1268,'N'),(406,1269,'N'),(406,1274,'N'),(406,1275,'N'),(406,1280,'N'),(406,1281,'N'),(406,1282,'N'),(406,1283,'N'),(406,1284,'N'),(406,1285,'N'),(406,1286,'N'),(406,1287,'N'),(406,1288,'N'),(406,1289,'S'),(406,1290,'N'),(406,1291,'N'),(406,1292,'N'),(406,1294,'N'),(406,1295,'N'),(406,1296,'N'),(406,1297,'N'),(406,1298,'N'),(406,1299,'N'),(406,1300,'N'),(406,1301,'N'),(406,1305,'N'),(406,1306,'N'),(406,1311,'N'),(406,1312,'N'),(406,1317,'N'),(406,1318,'N'),(406,1319,'N'),(406,1320,'N'),(406,1321,'N'),(406,1322,'N'),(406,1324,'N'),(406,1325,'N'),(406,1326,'N'),(406,1327,'S'),(406,1328,'N'),(406,1329,'N'),(406,1330,'N'),(406,1332,'N'),(406,1333,'N'),(406,1334,'N'),(406,1335,'N'),(406,1336,'N'),(406,1337,'N'),(406,1338,'N'),(406,1339,'N'),(406,1343,'N'),(406,1344,'N'),(406,1349,'N'),(406,1350,'N'),(406,1355,'N'),(406,1356,'N'),(406,1357,'N'),(406,1358,'N'),(406,1359,'N'),(406,1360,'N'),(406,1363,'N'),(406,1364,'N'),(406,1365,'N'),(406,1366,'S'),(406,1367,'N'),(406,1368,'N'),(406,1369,'N'),(406,1371,'N'),(406,1372,'N'),(406,1373,'N'),(406,1374,'N'),(406,1375,'N'),(406,1376,'N'),(406,1377,'N'),(406,1378,'N'),(406,1382,'N'),(406,1383,'N'),(406,1388,'N'),(406,1389,'N'),(406,1394,'N'),(406,1395,'N'),(406,1396,'N'),(406,1397,'N'),(406,1398,'N'),(406,1399,'N'),(406,1403,'N'),(406,1404,'N'),(406,1405,'N'),(406,1406,'S'),(406,1407,'N'),(406,1408,'N'),(406,1409,'N'),(406,1411,'N'),(406,1412,'N'),(406,1413,'N'),(406,1414,'N'),(406,1415,'N'),(406,1416,'N'),(406,1417,'N'),(406,1418,'N'),(406,1422,'N'),(406,1423,'N'),(406,1428,'N'),(406,1429,'N'),(406,1434,'N'),(406,1435,'N'),(406,1436,'N'),(406,1437,'N'),(406,1438,'N'),(406,1439,'N'),(406,1443,'N'),(406,1444,'N'),(406,1445,'N'),(406,1446,'S'),(406,1447,'N'),(406,1448,'N'),(406,1449,'N'),(406,1451,'N'),(406,1452,'N'),(406,1453,'N'),(406,1454,'N'),(406,1455,'N'),(406,1456,'N'),(406,1457,'N'),(406,1458,'N'),(406,1462,'N'),(406,1463,'N'),(406,1468,'N'),(406,1469,'N'),(406,1474,'N'),(406,1475,'N'),(406,1476,'N'),(406,1477,'N'),(406,1478,'N'),(406,1479,'N'),(406,1483,'N'),(406,1484,'N'),(406,1485,'N'),(406,1486,'S'),(406,1487,'N'),(406,1488,'N'),(406,1489,'N'),(406,1491,'N'),(406,1492,'N'),(406,1493,'N'),(406,1494,'N'),(406,1495,'N'),(406,1496,'N'),(406,1497,'N'),(406,1498,'N'),(406,1502,'N'),(406,1503,'N'),(406,1508,'N'),(406,1509,'N'),(406,1514,'N'),(406,1515,'N'),(406,1516,'N'),(406,1517,'N'),(406,1518,'N'),(406,1519,'N'),(406,1521,'N'),(406,1522,'N'),(406,1523,'N'),(406,1524,'N'),(406,1525,'N'),(406,1526,'S'),(406,1527,'N'),(406,1528,'N'),(406,1529,'N'),(406,1531,'N'),(406,1533,'N'),(406,1534,'N'),(406,1535,'N'),(406,1536,'N'),(406,1537,'N'),(406,1538,'N'),(406,1542,'N'),(406,1543,'N'),(406,1548,'N'),(406,1549,'N'),(406,1554,'N'),(406,1555,'N'),(406,1556,'N'),(406,1557,'N'),(406,1558,'N'),(406,1559,'N'),(406,1561,'N'),(406,1562,'N'),(406,1564,'N'),(406,1565,'N'),(406,1566,'N'),(406,1567,'S'),(406,1568,'N'),(406,1569,'N'),(406,1570,'N'),(406,1571,'N'),(406,1573,'N'),(406,1574,'N'),(406,1575,'N'),(406,1576,'N'),(406,1577,'N'),(406,1578,'N'),(406,1582,'N'),(406,1583,'N'),(406,1588,'N'),(406,1589,'N'),(406,1594,'N'),(406,1595,'N'),(406,1596,'N'),(406,1597,'N'),(406,1598,'N'),(406,1599,'N'),(406,1601,'N'),(406,1602,'N'),(406,1604,'N'),(406,1605,'N'),(406,1606,'N'),(406,1607,'S'),(406,1608,'N'),(406,1609,'N'),(406,1610,'N'),(406,1611,'N'),(406,1612,'N'),(406,1613,'N'),(406,1614,'N'),(406,1615,'N'),(406,1616,'N'),(406,1617,'N'),(406,1621,'N'),(406,1622,'N'),(406,1627,'N'),(406,1628,'N'),(406,1633,'N'),(406,1634,'N'),(406,1635,'N'),(406,1636,'N'),(406,1637,'N'),(406,1638,'N'),(406,1640,'N'),(406,1641,'N'),(410,8,'S'),(410,23,'S'),(410,38,'S'),(410,53,'S'),(410,68,'S'),(410,83,'S'),(410,98,'S'),(410,113,'S'),(410,128,'S'),(410,143,'S'),(410,158,'S'),(410,173,'S'),(410,188,'S'),(410,203,'S'),(410,218,'S'),(410,233,'S'),(410,248,'S'),(410,263,'S'),(410,278,'S'),(410,294,'S'),(410,310,'S'),(410,326,'S'),(410,342,'S'),(410,359,'S'),(410,376,'S'),(410,393,'S'),(410,410,'S'),(410,427,'S'),(410,444,'S'),(410,462,'S'),(410,481,'S'),(410,501,'S'),(410,521,'S'),(410,538,'S'),(410,559,'S'),(410,581,'S'),(410,604,'S'),(410,628,'S'),(410,653,'S'),(410,679,'S'),(410,706,'S'),(410,734,'S'),(410,763,'S'),(410,793,'S'),(410,824,'S'),(410,856,'S'),(410,889,'S'),(410,923,'S'),(410,958,'S'),(410,994,'S'),(410,1031,'S'),(410,1068,'S'),(410,1106,'S'),(410,1144,'S'),(410,1181,'S'),(410,1218,'S'),(410,1255,'S'),(410,1292,'S'),(410,1330,'S'),(410,1369,'S'),(410,1409,'S'),(410,1449,'S'),(410,1489,'S'),(410,1529,'S'),(410,1570,'S'),(410,1610,'S'),(411,473,'S'),(411,492,'S'),(411,512,'S'),(411,549,'S'),(411,570,'S'),(411,592,'S'),(411,615,'S'),(411,639,'S'),(411,664,'S'),(411,690,'S'),(411,717,'S'),(411,745,'S'),(411,774,'S'),(411,804,'S'),(411,835,'S'),(411,867,'S'),(411,900,'S'),(411,934,'S'),(411,969,'S'),(411,1005,'S'),(411,1042,'S'),(411,1079,'S'),(411,1117,'S'),(411,1155,'S'),(411,1192,'S'),(411,1229,'S'),(411,1266,'S'),(411,1303,'S'),(411,1341,'S'),(411,1380,'S'),(411,1420,'S'),(411,1460,'S'),(411,1500,'S'),(411,1540,'S'),(411,1580,'S'),(411,1619,'S'),(414,453,'S'),(414,471,'S'),(414,490,'S'),(414,510,'S'),(414,530,'S'),(414,547,'S'),(414,568,'S'),(414,590,'S'),(414,613,'S'),(414,637,'S'),(414,662,'S'),(414,688,'S'),(414,715,'S'),(414,743,'S'),(414,772,'S'),(414,802,'S'),(414,833,'S'),(414,865,'S'),(414,898,'S'),(414,932,'S'),(414,967,'S'),(414,1003,'S'),(414,1040,'S'),(414,1077,'S'),(414,1115,'S'),(414,1153,'S'),(414,1190,'S'),(414,1227,'S'),(414,1264,'S'),(414,1301,'S'),(414,1339,'S'),(414,1378,'S'),(414,1418,'S'),(414,1458,'S'),(414,1498,'S'),(414,1538,'S'),(414,1578,'S'),(414,1617,'S'),(415,453,'S'),(415,471,'S'),(415,490,'S'),(415,510,'S'),(415,530,'S'),(415,547,'S'),(415,568,'S'),(415,590,'S'),(415,613,'S'),(415,637,'S'),(415,662,'S'),(415,688,'S'),(415,715,'S'),(415,743,'S'),(415,772,'S'),(415,802,'S'),(415,833,'S'),(415,865,'S'),(415,898,'S'),(415,932,'S'),(415,967,'S'),(415,1003,'S'),(415,1040,'S'),(415,1077,'S'),(415,1115,'S'),(415,1153,'S'),(415,1190,'S'),(415,1227,'S'),(415,1264,'S'),(415,1301,'S'),(415,1339,'S'),(415,1378,'S'),(415,1418,'S'),(415,1458,'S'),(415,1498,'S'),(415,1538,'S'),(415,1578,'S'),(415,1617,'S'),(416,286,'S'),(416,318,'S'),(416,334,'S'),(416,350,'S'),(416,367,'S'),(416,384,'S'),(416,401,'S'),(416,418,'S'),(416,435,'S'),(416,452,'S'),(416,470,'S'),(416,489,'S'),(416,509,'S'),(416,529,'S'),(416,546,'S'),(416,567,'S'),(416,589,'S'),(416,612,'S'),(416,636,'S'),(416,661,'S'),(416,687,'S'),(416,714,'S'),(416,742,'S'),(416,771,'S'),(416,801,'S'),(416,832,'S'),(416,864,'S'),(416,897,'S'),(416,931,'S'),(416,966,'S'),(416,1002,'S'),(416,1039,'S'),(416,1076,'S'),(416,1114,'S'),(416,1152,'S'),(416,1189,'S'),(416,1226,'S'),(416,1263,'S'),(416,1300,'S'),(416,1338,'S'),(416,1377,'S'),(416,1417,'S'),(416,1457,'S'),(416,1497,'S'),(416,1537,'S'),(416,1577,'S'),(416,1616,'S'),(417,8,'S'),(417,23,'S'),(417,38,'S'),(417,53,'S'),(417,68,'S'),(417,83,'S'),(417,98,'S'),(417,113,'S'),(417,128,'S'),(417,143,'S'),(417,158,'S'),(417,173,'S'),(417,188,'S'),(417,203,'S'),(417,218,'S'),(417,233,'S'),(417,248,'S'),(417,263,'S'),(417,278,'S'),(417,294,'S'),(417,310,'S'),(417,326,'S'),(417,342,'S'),(417,359,'S'),(417,376,'S'),(417,393,'S'),(417,410,'S'),(417,427,'S'),(417,444,'S'),(417,462,'S'),(417,481,'S'),(417,501,'S'),(417,521,'S'),(417,538,'S'),(417,559,'S'),(417,581,'S'),(417,604,'S'),(417,628,'S'),(417,653,'S'),(417,679,'S'),(417,706,'S'),(417,734,'S'),(417,763,'S'),(417,793,'S'),(417,824,'S'),(417,856,'S'),(417,889,'S'),(417,923,'S'),(417,958,'S'),(417,994,'S'),(417,1031,'S'),(417,1068,'S'),(417,1106,'S'),(417,1144,'S'),(417,1181,'S'),(417,1218,'S'),(417,1255,'S'),(417,1292,'S'),(417,1330,'S'),(417,1369,'S'),(417,1409,'S'),(417,1449,'S'),(417,1489,'S'),(417,1529,'S'),(417,1570,'S'),(417,1610,'S'),(418,5,'S'),(418,20,'S'),(418,35,'S'),(418,50,'S'),(418,65,'S'),(418,80,'S'),(418,95,'S'),(418,110,'S'),(418,125,'S'),(418,140,'S'),(418,155,'S'),(418,170,'S'),(418,185,'S'),(418,200,'S'),(418,215,'S'),(418,230,'S'),(418,245,'S'),(418,260,'S'),(418,275,'S'),(418,291,'S'),(418,307,'S'),(418,323,'S'),(418,339,'S'),(418,356,'S'),(418,373,'S'),(418,390,'S'),(418,407,'S'),(418,424,'S'),(418,441,'S'),(418,459,'S'),(418,478,'S'),(418,498,'S'),(418,518,'S'),(418,535,'S'),(418,556,'S'),(418,578,'S'),(418,601,'S'),(418,625,'S'),(418,650,'S'),(418,676,'S'),(418,703,'S'),(418,731,'S'),(418,760,'S'),(418,790,'S'),(418,821,'S'),(418,853,'S'),(418,886,'S'),(418,920,'S'),(418,955,'S'),(418,991,'S'),(418,1028,'S'),(418,1065,'S'),(418,1103,'S'),(418,1141,'S'),(418,1179,'S'),(418,1216,'S'),(418,1253,'S'),(418,1290,'S'),(418,1328,'S'),(418,1367,'S'),(418,1407,'S'),(418,1447,'S'),(418,1487,'S'),(418,1527,'S'),(418,1568,'S'),(418,1608,'S'),(419,1,'N'),(419,2,'N'),(419,3,'N'),(419,4,'N'),(419,5,'S'),(419,8,'N'),(419,9,'N'),(419,10,'N'),(419,11,'N'),(419,12,'N'),(419,13,'N'),(419,14,'N'),(419,15,'N'),(419,16,'N'),(419,17,'N'),(419,18,'N'),(419,19,'N'),(419,20,'S'),(419,23,'N'),(419,24,'N'),(419,25,'N'),(419,26,'N'),(419,27,'N'),(419,28,'N'),(419,29,'N'),(419,30,'N'),(419,31,'N'),(419,32,'N'),(419,33,'N'),(419,34,'N'),(419,35,'S'),(419,38,'N'),(419,39,'N'),(419,40,'N'),(419,41,'N'),(419,42,'N'),(419,43,'N'),(419,44,'N'),(419,45,'N'),(419,46,'N'),(419,47,'N'),(419,48,'N'),(419,49,'N'),(419,50,'S'),(419,53,'N'),(419,54,'N'),(419,55,'N'),(419,56,'N'),(419,57,'N'),(419,58,'N'),(419,59,'N'),(419,60,'N'),(419,61,'N'),(419,62,'N'),(419,63,'N'),(419,64,'N'),(419,65,'S'),(419,68,'N'),(419,69,'N'),(419,70,'N'),(419,71,'N'),(419,72,'N'),(419,73,'N'),(419,74,'N'),(419,75,'N'),(419,76,'N'),(419,77,'N'),(419,78,'N'),(419,79,'N'),(419,80,'S'),(419,83,'N'),(419,84,'N'),(419,85,'N'),(419,86,'N'),(419,87,'N'),(419,88,'N'),(419,89,'N'),(419,90,'N'),(419,91,'N'),(419,92,'N'),(419,93,'N'),(419,94,'N'),(419,95,'S'),(419,98,'N'),(419,99,'N'),(419,100,'N'),(419,101,'N'),(419,102,'N'),(419,103,'N'),(419,104,'N'),(419,105,'N'),(419,106,'N'),(419,107,'N'),(419,108,'N'),(419,109,'N'),(419,110,'S'),(419,113,'N'),(419,114,'N'),(419,115,'N'),(419,116,'N'),(419,117,'N'),(419,118,'N'),(419,119,'N'),(419,120,'N'),(419,121,'N'),(419,122,'N'),(419,123,'N'),(419,124,'N'),(419,125,'S'),(419,128,'N'),(419,129,'N'),(419,130,'N'),(419,131,'N'),(419,132,'N'),(419,133,'N'),(419,134,'N'),(419,135,'N'),(419,136,'N'),(419,137,'N'),(419,138,'N'),(419,139,'N'),(419,140,'S'),(419,143,'N'),(419,144,'N'),(419,145,'N'),(419,146,'N'),(419,147,'N'),(419,148,'N'),(419,149,'N'),(419,150,'N'),(419,151,'N'),(419,152,'N'),(419,153,'N'),(419,154,'N'),(419,155,'S'),(419,158,'N'),(419,159,'N'),(419,160,'N'),(419,161,'N'),(419,162,'N'),(419,163,'N'),(419,164,'N'),(419,165,'N'),(419,166,'N'),(419,167,'N'),(419,168,'N'),(419,169,'N'),(419,170,'S'),(419,173,'N'),(419,174,'N'),(419,175,'N'),(419,176,'N'),(419,177,'N'),(419,178,'N'),(419,179,'N'),(419,180,'N'),(419,181,'N'),(419,182,'N'),(419,183,'N'),(419,184,'N'),(419,185,'S'),(419,188,'N'),(419,189,'N'),(419,190,'N'),(419,191,'N'),(419,192,'N'),(419,193,'N'),(419,194,'N'),(419,195,'N'),(419,196,'N'),(419,197,'N'),(419,198,'N'),(419,199,'N'),(419,200,'S'),(419,203,'N'),(419,204,'N'),(419,205,'N'),(419,206,'N'),(419,207,'N'),(419,208,'N'),(419,209,'N'),(419,210,'N'),(419,211,'N'),(419,212,'N'),(419,213,'N'),(419,214,'N'),(419,215,'S'),(419,218,'N'),(419,219,'N'),(419,220,'N'),(419,221,'N'),(419,222,'N'),(419,223,'N'),(419,224,'N'),(419,225,'N'),(419,226,'N'),(419,227,'N'),(419,228,'N'),(419,229,'N'),(419,230,'S'),(419,233,'N'),(419,234,'N'),(419,235,'N'),(419,236,'N'),(419,237,'N'),(419,238,'N'),(419,239,'N'),(419,240,'N'),(419,241,'N'),(419,242,'N'),(419,243,'N'),(419,244,'N'),(419,245,'S'),(419,248,'N'),(419,249,'N'),(419,250,'N'),(419,251,'N'),(419,252,'N'),(419,253,'N'),(419,254,'N'),(419,255,'N'),(419,256,'N'),(419,257,'N'),(419,258,'N'),(419,259,'N'),(419,260,'S'),(419,263,'N'),(419,264,'N'),(419,265,'N'),(419,266,'N'),(419,267,'N'),(419,268,'N'),(419,269,'N'),(419,270,'N'),(419,271,'N'),(419,272,'N'),(419,273,'N'),(419,274,'N'),(419,275,'S'),(419,278,'N'),(419,279,'N'),(419,280,'N'),(419,281,'N'),(419,282,'N'),(419,283,'N'),(419,284,'N'),(419,285,'N'),(419,286,'N'),(419,287,'N'),(419,288,'N'),(419,289,'N'),(419,290,'N'),(419,291,'S'),(419,294,'N'),(419,295,'N'),(419,296,'N'),(419,297,'N'),(419,298,'N'),(419,299,'N'),(419,300,'N'),(419,301,'N'),(419,303,'N'),(419,304,'N'),(419,305,'N'),(419,306,'N'),(419,307,'S'),(419,310,'N'),(419,311,'N'),(419,312,'N'),(419,313,'N'),(419,314,'N'),(419,315,'N'),(419,316,'N'),(419,317,'N'),(419,318,'N'),(419,319,'N'),(419,320,'N'),(419,321,'N'),(419,322,'N'),(419,323,'S'),(419,326,'N'),(419,327,'N'),(419,328,'N'),(419,329,'N'),(419,330,'N'),(419,331,'N'),(419,332,'N'),(419,333,'N'),(419,334,'N'),(419,335,'N'),(419,336,'N'),(419,337,'N'),(419,338,'N'),(419,339,'S'),(419,342,'N'),(419,343,'N'),(419,344,'N'),(419,345,'N'),(419,346,'N'),(419,347,'N'),(419,348,'N'),(419,349,'N'),(419,350,'N'),(419,352,'N'),(419,353,'N'),(419,354,'N'),(419,355,'N'),(419,356,'S'),(419,359,'N'),(419,360,'N'),(419,361,'N'),(419,362,'N'),(419,363,'N'),(419,364,'N'),(419,365,'N'),(419,366,'N'),(419,367,'N'),(419,369,'N'),(419,370,'N'),(419,371,'N'),(419,372,'N'),(419,373,'S'),(419,376,'N'),(419,377,'N'),(419,378,'N'),(419,379,'N'),(419,380,'N'),(419,381,'N'),(419,382,'N'),(419,383,'N'),(419,384,'N'),(419,386,'N'),(419,387,'N'),(419,388,'N'),(419,389,'N'),(419,390,'S'),(419,393,'N'),(419,394,'N'),(419,395,'N'),(419,396,'N'),(419,397,'N'),(419,398,'N'),(419,399,'N'),(419,400,'N'),(419,401,'N'),(419,403,'N'),(419,404,'N'),(419,405,'N'),(419,406,'N'),(419,407,'S'),(419,410,'N'),(419,411,'N'),(419,412,'N'),(419,413,'N'),(419,414,'N'),(419,415,'N'),(419,416,'N'),(419,417,'N'),(419,418,'N'),(419,420,'N'),(419,421,'N'),(419,422,'N'),(419,423,'N'),(419,424,'S'),(419,427,'N'),(419,428,'N'),(419,429,'N'),(419,430,'N'),(419,431,'N'),(419,432,'N'),(419,433,'N'),(419,434,'N'),(419,435,'N'),(419,437,'N'),(419,438,'N'),(419,439,'N'),(419,440,'N'),(419,441,'S'),(419,444,'N'),(419,445,'N'),(419,446,'N'),(419,447,'N'),(419,448,'N'),(419,449,'N'),(419,450,'N'),(419,451,'N'),(419,452,'N'),(419,453,'N'),(419,455,'N'),(419,456,'N'),(419,457,'N'),(419,458,'N'),(419,459,'S'),(419,462,'N'),(419,463,'N'),(419,464,'N'),(419,465,'N'),(419,466,'N'),(419,467,'N'),(419,468,'N'),(419,469,'N'),(419,470,'N'),(419,471,'N'),(419,474,'N'),(419,475,'N'),(419,476,'N'),(419,477,'N'),(419,478,'S'),(419,481,'N'),(419,482,'N'),(419,483,'N'),(419,484,'N'),(419,485,'N'),(419,486,'N'),(419,487,'N'),(419,488,'N'),(419,489,'N'),(419,490,'N'),(419,494,'N'),(419,495,'N'),(419,496,'N'),(419,497,'N'),(419,498,'S'),(419,501,'N'),(419,502,'N'),(419,503,'N'),(419,504,'N'),(419,505,'N'),(419,506,'N'),(419,507,'N'),(419,508,'N'),(419,509,'N'),(419,510,'N'),(419,514,'N'),(419,515,'N'),(419,516,'N'),(419,517,'N'),(419,518,'S'),(419,521,'N'),(419,522,'N'),(419,523,'N'),(419,524,'N'),(419,525,'N'),(419,526,'N'),(419,527,'N'),(419,528,'N'),(419,529,'N'),(419,530,'N'),(419,531,'N'),(419,532,'N'),(419,533,'N'),(419,534,'N'),(419,535,'S'),(419,538,'N'),(419,539,'N'),(419,540,'N'),(419,541,'N'),(419,542,'N'),(419,543,'N'),(419,544,'N'),(419,545,'N'),(419,546,'N'),(419,547,'N'),(419,552,'N'),(419,553,'N'),(419,554,'N'),(419,555,'N'),(419,556,'S'),(419,559,'N'),(419,560,'N'),(419,561,'N'),(419,562,'N'),(419,563,'N'),(419,564,'N'),(419,565,'N'),(419,566,'N'),(419,567,'N'),(419,568,'N'),(419,574,'N'),(419,575,'N'),(419,576,'N'),(419,577,'N'),(419,578,'S'),(419,581,'N'),(419,582,'N'),(419,583,'N'),(419,584,'N'),(419,585,'N'),(419,586,'N'),(419,587,'N'),(419,588,'N'),(419,589,'N'),(419,590,'N'),(419,597,'N'),(419,598,'N'),(419,599,'N'),(419,600,'N'),(419,601,'S'),(419,604,'N'),(419,605,'N'),(419,606,'N'),(419,607,'N'),(419,608,'N'),(419,609,'N'),(419,610,'N'),(419,611,'N'),(419,612,'N'),(419,613,'N'),(419,621,'N'),(419,622,'N'),(419,623,'N'),(419,624,'N'),(419,625,'S'),(419,628,'N'),(419,629,'N'),(419,630,'N'),(419,631,'N'),(419,632,'N'),(419,633,'N'),(419,634,'N'),(419,635,'N'),(419,636,'N'),(419,637,'N'),(419,646,'N'),(419,647,'N'),(419,648,'N'),(419,649,'N'),(419,650,'S'),(419,653,'N'),(419,654,'N'),(419,655,'N'),(419,656,'N'),(419,657,'N'),(419,658,'N'),(419,659,'N'),(419,660,'N'),(419,661,'N'),(419,662,'N'),(419,672,'N'),(419,673,'N'),(419,674,'N'),(419,675,'N'),(419,676,'S'),(419,679,'N'),(419,680,'N'),(419,681,'N'),(419,682,'N'),(419,683,'N'),(419,684,'N'),(419,685,'N'),(419,686,'N'),(419,687,'N'),(419,688,'N'),(419,699,'N'),(419,700,'N'),(419,701,'N'),(419,702,'N'),(419,703,'S'),(419,706,'N'),(419,707,'N'),(419,708,'N'),(419,709,'N'),(419,710,'N'),(419,711,'N'),(419,712,'N'),(419,713,'N'),(419,714,'N'),(419,715,'N'),(419,727,'N'),(419,728,'N'),(419,729,'N'),(419,730,'N'),(419,731,'S'),(419,734,'N'),(419,735,'N'),(419,736,'N'),(419,737,'N'),(419,738,'N'),(419,739,'N'),(419,740,'N'),(419,741,'N'),(419,742,'N'),(419,743,'N'),(419,756,'N'),(419,757,'N'),(419,758,'N'),(419,759,'N'),(419,760,'S'),(419,763,'N'),(419,764,'N'),(419,765,'N'),(419,766,'N'),(419,767,'N'),(419,768,'N'),(419,769,'N'),(419,770,'N'),(419,771,'N'),(419,772,'N'),(419,786,'N'),(419,787,'N'),(419,788,'N'),(419,789,'N'),(419,790,'S'),(419,793,'N'),(419,794,'N'),(419,795,'N'),(419,796,'N'),(419,797,'N'),(419,798,'N'),(419,799,'N'),(419,800,'N'),(419,801,'N'),(419,802,'N'),(419,817,'N'),(419,818,'N'),(419,819,'N'),(419,820,'N'),(419,821,'S'),(419,824,'N'),(419,825,'N'),(419,826,'N'),(419,827,'N'),(419,828,'N'),(419,829,'N'),(419,830,'N'),(419,831,'N'),(419,832,'N'),(419,833,'N'),(419,849,'N'),(419,850,'N'),(419,851,'N'),(419,852,'N'),(419,853,'S'),(419,856,'N'),(419,857,'N'),(419,858,'N'),(419,859,'N'),(419,860,'N'),(419,861,'N'),(419,862,'N'),(419,863,'N'),(419,864,'N'),(419,865,'N'),(419,882,'N'),(419,883,'N'),(419,884,'N'),(419,885,'N'),(419,886,'S'),(419,889,'N'),(419,890,'N'),(419,891,'N'),(419,892,'N'),(419,893,'N'),(419,894,'N'),(419,895,'N'),(419,896,'N'),(419,897,'N'),(419,898,'N'),(419,916,'N'),(419,917,'N'),(419,918,'N'),(419,919,'N'),(419,920,'S'),(419,923,'N'),(419,924,'N'),(419,925,'N'),(419,926,'N'),(419,927,'N'),(419,928,'N'),(419,929,'N'),(419,930,'N'),(419,931,'N'),(419,932,'N'),(419,951,'N'),(419,952,'N'),(419,953,'N'),(419,954,'N'),(419,955,'S'),(419,958,'N'),(419,959,'N'),(419,960,'N'),(419,961,'N'),(419,962,'N'),(419,963,'N'),(419,964,'N'),(419,965,'N'),(419,966,'N'),(419,967,'N'),(419,987,'N'),(419,988,'N'),(419,989,'N'),(419,990,'N'),(419,991,'S'),(419,994,'N'),(419,995,'N'),(419,996,'N'),(419,997,'N'),(419,998,'N'),(419,999,'N'),(419,1000,'N'),(419,1001,'N'),(419,1002,'N'),(419,1003,'N'),(419,1024,'N'),(419,1025,'N'),(419,1026,'N'),(419,1027,'N'),(419,1028,'S'),(419,1031,'N'),(419,1032,'N'),(419,1033,'N'),(419,1034,'N'),(419,1035,'N'),(419,1036,'N'),(419,1037,'N'),(419,1038,'N'),(419,1039,'N'),(419,1040,'N'),(419,1061,'N'),(419,1062,'N'),(419,1063,'N'),(419,1064,'N'),(419,1065,'S'),(419,1068,'N'),(419,1069,'N'),(419,1070,'N'),(419,1071,'N'),(419,1072,'N'),(419,1073,'N'),(419,1074,'N'),(419,1075,'N'),(419,1076,'N'),(419,1077,'N'),(419,1099,'N'),(419,1100,'N'),(419,1101,'N'),(419,1102,'N'),(419,1103,'S'),(419,1104,'N'),(419,1106,'N'),(419,1107,'N'),(419,1108,'N'),(419,1109,'N'),(419,1110,'N'),(419,1111,'N'),(419,1112,'N'),(419,1113,'N'),(419,1114,'N'),(419,1115,'N'),(419,1137,'N'),(419,1138,'N'),(419,1139,'N'),(419,1140,'N'),(419,1141,'S'),(419,1142,'N'),(419,1144,'N'),(419,1145,'N'),(419,1146,'N'),(419,1147,'N'),(419,1148,'N'),(419,1149,'N'),(419,1150,'N'),(419,1151,'N'),(419,1152,'N'),(419,1153,'N'),(419,1175,'N'),(419,1176,'N'),(419,1177,'N'),(419,1178,'N'),(419,1179,'S'),(419,1180,'N'),(419,1181,'N'),(419,1182,'N'),(419,1183,'N'),(419,1184,'N'),(419,1185,'N'),(419,1186,'N'),(419,1187,'N'),(419,1188,'N'),(419,1189,'N'),(419,1190,'N'),(419,1212,'N'),(419,1213,'N'),(419,1214,'N'),(419,1215,'N'),(419,1216,'S'),(419,1217,'N'),(419,1218,'N'),(419,1219,'N'),(419,1220,'N'),(419,1221,'N'),(419,1222,'N'),(419,1223,'N'),(419,1224,'N'),(419,1225,'N'),(419,1226,'N'),(419,1227,'N'),(419,1251,'N'),(419,1252,'N'),(419,1253,'S'),(419,1254,'N'),(419,1255,'N'),(419,1264,'N'),(419,1268,'N'),(419,1269,'N'),(419,1274,'N'),(419,1275,'N'),(419,1280,'N'),(419,1281,'N'),(419,1282,'N'),(419,1283,'N'),(419,1284,'N'),(419,1285,'N'),(419,1288,'N'),(419,1289,'N'),(419,1290,'S'),(419,1291,'N'),(419,1292,'N'),(419,1301,'N'),(419,1305,'N'),(419,1306,'N'),(419,1311,'N'),(419,1312,'N'),(419,1317,'N'),(419,1318,'N'),(419,1319,'N'),(419,1320,'N'),(419,1321,'N'),(419,1322,'N'),(419,1326,'N'),(419,1327,'N'),(419,1328,'S'),(419,1329,'N'),(419,1330,'N'),(419,1339,'N'),(419,1343,'N'),(419,1344,'N'),(419,1349,'N'),(419,1350,'N'),(419,1355,'N'),(419,1356,'N'),(419,1357,'N'),(419,1358,'N'),(419,1359,'N'),(419,1360,'N'),(419,1365,'N'),(419,1366,'N'),(419,1367,'S'),(419,1368,'N'),(419,1369,'N'),(419,1378,'N'),(419,1382,'N'),(419,1383,'N'),(419,1388,'N'),(419,1389,'N'),(419,1394,'N'),(419,1395,'N'),(419,1396,'N'),(419,1397,'N'),(419,1398,'N'),(419,1399,'N'),(419,1405,'N'),(419,1406,'N'),(419,1407,'S'),(419,1408,'N'),(419,1409,'N'),(419,1418,'N'),(419,1422,'N'),(419,1423,'N'),(419,1428,'N'),(419,1429,'N'),(419,1434,'N'),(419,1435,'N'),(419,1436,'N'),(419,1437,'N'),(419,1438,'N'),(419,1439,'N'),(419,1445,'N'),(419,1446,'N'),(419,1447,'S'),(419,1448,'N'),(419,1449,'N'),(419,1458,'N'),(419,1462,'N'),(419,1463,'N'),(419,1468,'N'),(419,1469,'N'),(419,1474,'N'),(419,1475,'N'),(419,1476,'N'),(419,1477,'N'),(419,1478,'N'),(419,1479,'N'),(419,1485,'N'),(419,1486,'N'),(419,1487,'S'),(419,1488,'N'),(419,1489,'N'),(419,1498,'N'),(419,1502,'N'),(419,1503,'N'),(419,1508,'N'),(419,1509,'N'),(419,1514,'N'),(419,1515,'N'),(419,1516,'N'),(419,1517,'N'),(419,1518,'N'),(419,1519,'N'),(419,1525,'N'),(419,1526,'N'),(419,1527,'S'),(419,1528,'N'),(419,1529,'N'),(419,1538,'N'),(419,1542,'N'),(419,1543,'N'),(419,1548,'N'),(419,1549,'N'),(419,1554,'N'),(419,1555,'N'),(419,1556,'N'),(419,1557,'N'),(419,1558,'N'),(419,1559,'N'),(419,1566,'N'),(419,1567,'N'),(419,1568,'S'),(419,1569,'N'),(419,1570,'N'),(419,1578,'N'),(419,1582,'N'),(419,1583,'N'),(419,1588,'N'),(419,1589,'N'),(419,1594,'N'),(419,1595,'N'),(419,1596,'N'),(419,1597,'N'),(419,1598,'N'),(419,1599,'N'),(419,1606,'N'),(419,1607,'N'),(419,1608,'S'),(419,1609,'N'),(419,1610,'N'),(419,1617,'N'),(419,1621,'N'),(419,1622,'N'),(419,1627,'N'),(419,1628,'N'),(419,1633,'N'),(419,1634,'N'),(419,1635,'N'),(419,1636,'N'),(419,1637,'N'),(419,1638,'N'),(419,1640,'N'),(419,1641,'N'),(422,1,'N'),(422,2,'N'),(422,3,'N'),(422,4,'N'),(422,5,'S'),(422,8,'N'),(422,9,'N'),(422,10,'N'),(422,11,'N'),(422,12,'N'),(422,13,'N'),(422,14,'N'),(422,15,'N'),(422,16,'N'),(422,17,'N'),(422,18,'N'),(422,19,'N'),(422,20,'S'),(422,23,'N'),(422,24,'N'),(422,25,'N'),(422,26,'N'),(422,27,'N'),(422,28,'N'),(422,29,'N'),(422,30,'N'),(422,31,'N'),(422,32,'N'),(422,33,'N'),(422,34,'N'),(422,35,'S'),(422,38,'N'),(422,39,'N'),(422,40,'N'),(422,41,'N'),(422,42,'N'),(422,43,'N'),(422,44,'N'),(422,45,'N'),(422,46,'N'),(422,47,'N'),(422,48,'N'),(422,49,'N'),(422,50,'S'),(422,53,'N'),(422,54,'N'),(422,55,'N'),(422,56,'N'),(422,57,'N'),(422,58,'N'),(422,59,'N'),(422,60,'N'),(422,61,'N'),(422,62,'N'),(422,63,'N'),(422,64,'N'),(422,65,'S'),(422,68,'N'),(422,69,'N'),(422,70,'N'),(422,71,'N'),(422,72,'N'),(422,73,'N'),(422,74,'N'),(422,75,'N'),(422,76,'N'),(422,77,'N'),(422,78,'N'),(422,79,'N'),(422,80,'S'),(422,83,'N'),(422,84,'N'),(422,85,'N'),(422,86,'N'),(422,87,'N'),(422,88,'N'),(422,89,'N'),(422,90,'N'),(422,91,'N'),(422,92,'N'),(422,93,'N'),(422,94,'N'),(422,95,'S'),(422,98,'N'),(422,99,'N'),(422,100,'N'),(422,101,'N'),(422,102,'N'),(422,103,'N'),(422,104,'N'),(422,105,'N'),(422,106,'N'),(422,107,'N'),(422,108,'N'),(422,109,'N'),(422,110,'S'),(422,113,'N'),(422,114,'N'),(422,115,'N'),(422,116,'N'),(422,117,'N'),(422,118,'N'),(422,119,'N'),(422,120,'N'),(422,121,'N'),(422,122,'N'),(422,123,'N'),(422,124,'N'),(422,125,'S'),(422,128,'N'),(422,129,'N'),(422,130,'N'),(422,131,'N'),(422,132,'N'),(422,133,'N'),(422,134,'N'),(422,135,'N'),(422,136,'N'),(422,137,'N'),(422,138,'N'),(422,139,'N'),(422,140,'S'),(422,143,'N'),(422,144,'N'),(422,145,'N'),(422,146,'N'),(422,147,'N'),(422,148,'N'),(422,149,'N'),(422,150,'N'),(422,151,'N'),(422,152,'N'),(422,153,'N'),(422,154,'N'),(422,155,'S'),(422,158,'N'),(422,159,'N'),(422,160,'N'),(422,161,'N'),(422,162,'N'),(422,163,'N'),(422,164,'N'),(422,165,'N'),(422,166,'N'),(422,167,'N'),(422,168,'N'),(422,169,'N'),(422,170,'S'),(422,173,'N'),(422,174,'N'),(422,175,'N'),(422,176,'N'),(422,177,'N'),(422,178,'N'),(422,179,'N'),(422,180,'N'),(422,181,'N'),(422,182,'N'),(422,183,'N'),(422,184,'N'),(422,185,'S'),(422,188,'N'),(422,189,'N'),(422,190,'N'),(422,191,'N'),(422,192,'N'),(422,193,'N'),(422,194,'N'),(422,195,'N'),(422,196,'N'),(422,197,'N'),(422,198,'N'),(422,199,'N'),(422,200,'S'),(422,203,'N'),(422,204,'N'),(422,205,'N'),(422,206,'N'),(422,207,'N'),(422,208,'N'),(422,209,'N'),(422,210,'N'),(422,211,'N'),(422,212,'N'),(422,213,'N'),(422,214,'N'),(422,215,'S'),(422,218,'N'),(422,219,'N'),(422,220,'N'),(422,221,'N'),(422,222,'N'),(422,223,'N'),(422,224,'N'),(422,225,'N'),(422,226,'N'),(422,227,'N'),(422,228,'N'),(422,229,'N'),(422,230,'S'),(422,233,'N'),(422,234,'N'),(422,235,'N'),(422,236,'N'),(422,237,'N'),(422,238,'N'),(422,239,'N'),(422,240,'N'),(422,241,'N'),(422,242,'N'),(422,243,'N'),(422,244,'N'),(422,245,'S'),(422,248,'N'),(422,249,'N'),(422,250,'N'),(422,251,'N'),(422,252,'N'),(422,253,'N'),(422,254,'N'),(422,255,'N'),(422,256,'N'),(422,257,'N'),(422,258,'N'),(422,259,'N'),(422,260,'S'),(422,263,'N'),(422,264,'N'),(422,265,'N'),(422,266,'N'),(422,267,'N'),(422,268,'N'),(422,269,'N'),(422,270,'N'),(422,271,'N'),(422,272,'N'),(422,273,'N'),(422,274,'N'),(422,275,'S'),(422,278,'N'),(422,279,'N'),(422,280,'N'),(422,281,'N'),(422,282,'N'),(422,283,'N'),(422,284,'N'),(422,285,'N'),(422,286,'N'),(422,287,'N'),(422,288,'N'),(422,289,'N'),(422,290,'N'),(422,291,'S'),(422,294,'N'),(422,295,'N'),(422,296,'N'),(422,297,'N'),(422,298,'N'),(422,299,'N'),(422,300,'N'),(422,301,'N'),(422,303,'N'),(422,304,'N'),(422,305,'N'),(422,306,'N'),(422,307,'S'),(422,310,'N'),(422,311,'N'),(422,312,'N'),(422,313,'N'),(422,314,'N'),(422,315,'N'),(422,316,'N'),(422,317,'N'),(422,318,'N'),(422,319,'N'),(422,320,'N'),(422,321,'N'),(422,322,'N'),(422,323,'S'),(422,326,'N'),(422,327,'N'),(422,328,'N'),(422,329,'N'),(422,330,'N'),(422,331,'N'),(422,332,'N'),(422,333,'N'),(422,334,'N'),(422,335,'N'),(422,336,'N'),(422,337,'N'),(422,338,'N'),(422,339,'S'),(422,342,'N'),(422,343,'N'),(422,344,'N'),(422,345,'N'),(422,346,'N'),(422,347,'N'),(422,348,'N'),(422,349,'N'),(422,350,'N'),(422,352,'N'),(422,353,'N'),(422,354,'N'),(422,355,'N'),(422,356,'S'),(422,359,'N'),(422,360,'N'),(422,361,'N'),(422,362,'N'),(422,363,'N'),(422,364,'N'),(422,365,'N'),(422,366,'N'),(422,367,'N'),(422,369,'N'),(422,370,'N'),(422,371,'N'),(422,372,'N'),(422,373,'S'),(422,376,'N'),(422,377,'N'),(422,378,'N'),(422,379,'N'),(422,380,'N'),(422,381,'N'),(422,382,'N'),(422,383,'N'),(422,384,'N'),(422,386,'N'),(422,387,'N'),(422,388,'N'),(422,389,'N'),(422,390,'S'),(422,393,'N'),(422,394,'N'),(422,395,'N'),(422,396,'N'),(422,397,'N'),(422,398,'N'),(422,399,'N'),(422,400,'N'),(422,401,'N'),(422,403,'N'),(422,404,'N'),(422,405,'N'),(422,406,'N'),(422,407,'S'),(422,410,'N'),(422,411,'N'),(422,412,'N'),(422,413,'N'),(422,414,'N'),(422,415,'N'),(422,416,'N'),(422,417,'N'),(422,418,'N'),(422,420,'N'),(422,421,'N'),(422,422,'N'),(422,423,'N'),(422,424,'S'),(422,427,'N'),(422,428,'N'),(422,429,'N'),(422,430,'N'),(422,431,'N'),(422,432,'N'),(422,433,'N'),(422,434,'N'),(422,435,'N'),(422,437,'N'),(422,438,'N'),(422,439,'N'),(422,440,'N'),(422,441,'S'),(422,444,'N'),(422,445,'N'),(422,446,'N'),(422,447,'N'),(422,448,'N'),(422,449,'N'),(422,450,'N'),(422,451,'N'),(422,452,'N'),(422,453,'N'),(422,455,'N'),(422,456,'N'),(422,457,'N'),(422,458,'N'),(422,459,'S'),(422,462,'N'),(422,463,'N'),(422,464,'N'),(422,465,'N'),(422,466,'N'),(422,467,'N'),(422,468,'N'),(422,469,'N'),(422,470,'N'),(422,471,'N'),(422,474,'N'),(422,475,'N'),(422,476,'N'),(422,477,'N'),(422,478,'S'),(422,481,'N'),(422,482,'N'),(422,483,'N'),(422,484,'N'),(422,485,'N'),(422,486,'N'),(422,487,'N'),(422,488,'N'),(422,489,'N'),(422,490,'N'),(422,494,'N'),(422,495,'N'),(422,496,'N'),(422,497,'N'),(422,498,'S'),(422,501,'N'),(422,502,'N'),(422,503,'N'),(422,504,'N'),(422,505,'N'),(422,506,'N'),(422,507,'N'),(422,508,'N'),(422,509,'N'),(422,510,'N'),(422,514,'N'),(422,515,'N'),(422,516,'N'),(422,517,'N'),(422,518,'S'),(422,521,'N'),(422,522,'N'),(422,523,'N'),(422,524,'N'),(422,525,'N'),(422,526,'N'),(422,527,'N'),(422,528,'N'),(422,529,'N'),(422,530,'N'),(422,531,'N'),(422,532,'N'),(422,533,'N'),(422,534,'N'),(422,535,'S'),(422,538,'N'),(422,539,'N'),(422,540,'N'),(422,541,'N'),(422,542,'N'),(422,543,'N'),(422,544,'N'),(422,545,'N'),(422,546,'N'),(422,547,'N'),(422,552,'N'),(422,553,'N'),(422,554,'N'),(422,555,'N'),(422,556,'S'),(422,559,'N'),(422,560,'N'),(422,561,'N'),(422,562,'N'),(422,563,'N'),(422,564,'N'),(422,565,'N'),(422,566,'N'),(422,567,'N'),(422,568,'N'),(422,574,'N'),(422,575,'N'),(422,576,'N'),(422,577,'N'),(422,578,'S'),(422,581,'N'),(422,582,'N'),(422,583,'N'),(422,584,'N'),(422,585,'N'),(422,586,'N'),(422,587,'N'),(422,588,'N'),(422,589,'N'),(422,590,'N'),(422,597,'N'),(422,598,'N'),(422,599,'N'),(422,600,'N'),(422,601,'S'),(422,604,'N'),(422,605,'N'),(422,606,'N'),(422,607,'N'),(422,608,'N'),(422,609,'N'),(422,610,'N'),(422,611,'N'),(422,612,'N'),(422,613,'N'),(422,621,'N'),(422,622,'N'),(422,623,'N'),(422,624,'N'),(422,625,'S'),(422,628,'N'),(422,629,'N'),(422,630,'N'),(422,631,'N'),(422,632,'N'),(422,633,'N'),(422,634,'N'),(422,635,'N'),(422,636,'N'),(422,637,'N'),(422,646,'N'),(422,647,'N'),(422,648,'N'),(422,649,'N'),(422,650,'S'),(422,653,'N'),(422,654,'N'),(422,655,'N'),(422,656,'N'),(422,657,'N'),(422,658,'N'),(422,659,'N'),(422,660,'N'),(422,661,'N'),(422,662,'N'),(422,672,'N'),(422,673,'N'),(422,674,'N'),(422,675,'N'),(422,676,'S'),(422,679,'N'),(422,680,'N'),(422,681,'N'),(422,682,'N'),(422,683,'N'),(422,684,'N'),(422,685,'N'),(422,686,'N'),(422,687,'N'),(422,688,'N'),(422,699,'N'),(422,700,'N'),(422,701,'N'),(422,702,'N'),(422,703,'S'),(422,706,'N'),(422,707,'N'),(422,708,'N'),(422,709,'N'),(422,710,'N'),(422,711,'N'),(422,712,'N'),(422,713,'N'),(422,714,'N'),(422,715,'N'),(422,727,'N'),(422,728,'N'),(422,729,'N'),(422,730,'N'),(422,731,'S'),(422,734,'N'),(422,735,'N'),(422,736,'N'),(422,737,'N'),(422,738,'N'),(422,739,'N'),(422,740,'N'),(422,741,'N'),(422,742,'N'),(422,743,'N'),(422,756,'N'),(422,757,'N'),(422,758,'N'),(422,759,'N'),(422,760,'S'),(422,763,'N'),(422,764,'N'),(422,765,'N'),(422,766,'N'),(422,767,'N'),(422,768,'N'),(422,769,'N'),(422,770,'N'),(422,771,'N'),(422,772,'N'),(422,786,'N'),(422,787,'N'),(422,788,'N'),(422,789,'N'),(422,790,'S'),(422,793,'N'),(422,794,'N'),(422,795,'N'),(422,796,'N'),(422,797,'N'),(422,798,'N'),(422,799,'N'),(422,800,'N'),(422,801,'N'),(422,802,'N'),(422,817,'N'),(422,818,'N'),(422,819,'N'),(422,820,'N'),(422,821,'S'),(422,824,'N'),(422,825,'N'),(422,826,'N'),(422,827,'N'),(422,828,'N'),(422,829,'N'),(422,830,'N'),(422,831,'N'),(422,832,'N'),(422,833,'N'),(422,849,'N'),(422,850,'N'),(422,851,'N'),(422,852,'N'),(422,853,'S'),(422,856,'N'),(422,857,'N'),(422,858,'N'),(422,859,'N'),(422,860,'N'),(422,861,'N'),(422,862,'N'),(422,863,'N'),(422,864,'N'),(422,865,'N'),(422,882,'N'),(422,883,'N'),(422,884,'N'),(422,885,'N'),(422,886,'S'),(422,889,'N'),(422,890,'N'),(422,891,'N'),(422,892,'N'),(422,893,'N'),(422,894,'N'),(422,895,'N'),(422,896,'N'),(422,897,'N'),(422,898,'N'),(422,916,'N'),(422,917,'N'),(422,918,'N'),(422,919,'N'),(422,920,'S'),(422,923,'N'),(422,924,'N'),(422,925,'N'),(422,926,'N'),(422,927,'N'),(422,928,'N'),(422,929,'N'),(422,930,'N'),(422,931,'N'),(422,932,'N'),(422,951,'N'),(422,952,'N'),(422,953,'N'),(422,954,'N'),(422,955,'S'),(422,958,'N'),(422,959,'N'),(422,960,'N'),(422,961,'N'),(422,962,'N'),(422,963,'N'),(422,964,'N'),(422,965,'N'),(422,966,'N'),(422,967,'N'),(422,987,'N'),(422,988,'N'),(422,989,'N'),(422,990,'N'),(422,991,'S'),(422,994,'N'),(422,995,'N'),(422,996,'N'),(422,997,'N'),(422,998,'N'),(422,999,'N'),(422,1000,'N'),(422,1001,'N'),(422,1002,'N'),(422,1003,'N'),(422,1024,'N'),(422,1025,'N'),(422,1026,'N'),(422,1027,'N'),(422,1028,'S'),(422,1031,'N'),(422,1032,'N'),(422,1033,'N'),(422,1034,'N'),(422,1035,'N'),(422,1036,'N'),(422,1037,'N'),(422,1038,'N'),(422,1039,'N'),(422,1040,'N'),(422,1061,'N'),(422,1062,'N'),(422,1063,'N'),(422,1064,'N'),(422,1065,'S'),(422,1068,'N'),(422,1069,'N'),(422,1070,'N'),(422,1071,'N'),(422,1072,'N'),(422,1073,'N'),(422,1074,'N'),(422,1075,'N'),(422,1076,'N'),(422,1077,'N'),(422,1099,'N'),(422,1100,'N'),(422,1101,'N'),(422,1102,'N'),(422,1103,'S'),(422,1104,'N'),(422,1106,'N'),(422,1107,'N'),(422,1108,'N'),(422,1109,'N'),(422,1110,'N'),(422,1111,'N'),(422,1112,'N'),(422,1113,'N'),(422,1114,'N'),(422,1115,'N'),(422,1137,'N'),(422,1138,'N'),(422,1139,'N'),(422,1140,'N'),(422,1141,'S'),(422,1142,'N'),(422,1144,'N'),(422,1145,'N'),(422,1146,'N'),(422,1147,'N'),(422,1148,'N'),(422,1149,'N'),(422,1150,'N'),(422,1151,'N'),(422,1152,'N'),(422,1153,'N'),(422,1175,'N'),(422,1176,'N'),(422,1177,'N'),(422,1178,'N'),(422,1179,'S'),(422,1180,'N'),(422,1181,'N'),(422,1182,'N'),(422,1183,'N'),(422,1184,'N'),(422,1185,'N'),(422,1186,'N'),(422,1187,'N'),(422,1188,'N'),(422,1189,'N'),(422,1190,'N'),(422,1212,'N'),(422,1213,'N'),(422,1214,'N'),(422,1215,'N'),(422,1216,'S'),(422,1217,'N'),(422,1218,'N'),(422,1219,'N'),(422,1220,'N'),(422,1221,'N'),(422,1222,'N'),(422,1223,'N'),(422,1224,'N'),(422,1225,'N'),(422,1226,'N'),(422,1227,'N'),(422,1251,'N'),(422,1252,'N'),(422,1253,'S'),(422,1254,'N'),(422,1255,'N'),(422,1257,'N'),(422,1258,'N'),(422,1259,'N'),(422,1260,'N'),(422,1261,'N'),(422,1262,'N'),(422,1263,'N'),(422,1264,'N'),(422,1268,'N'),(422,1269,'N'),(422,1274,'N'),(422,1275,'N'),(422,1280,'N'),(422,1281,'N'),(422,1282,'N'),(422,1283,'N'),(422,1284,'N'),(422,1285,'N'),(422,1288,'N'),(422,1289,'N'),(422,1290,'S'),(422,1291,'N'),(422,1292,'N'),(422,1294,'N'),(422,1295,'N'),(422,1296,'N'),(422,1297,'N'),(422,1298,'N'),(422,1299,'N'),(422,1300,'N'),(422,1301,'N'),(422,1305,'N'),(422,1306,'N'),(422,1311,'N'),(422,1312,'N'),(422,1317,'N'),(422,1318,'N'),(422,1319,'N'),(422,1320,'N'),(422,1321,'N'),(422,1322,'N'),(422,1326,'N'),(422,1327,'N'),(422,1328,'S'),(422,1329,'N'),(422,1330,'N'),(422,1332,'N'),(422,1333,'N'),(422,1334,'N'),(422,1335,'N'),(422,1336,'N'),(422,1337,'N'),(422,1338,'N'),(422,1339,'N'),(422,1343,'N'),(422,1344,'N'),(422,1349,'N'),(422,1350,'N'),(422,1355,'N'),(422,1356,'N'),(422,1357,'N'),(422,1358,'N'),(422,1359,'N'),(422,1360,'N'),(422,1365,'N'),(422,1366,'N'),(422,1367,'S'),(422,1368,'N'),(422,1369,'N'),(422,1371,'N'),(422,1372,'N'),(422,1373,'N'),(422,1374,'N'),(422,1375,'N'),(422,1376,'N'),(422,1377,'N'),(422,1378,'N'),(422,1382,'N'),(422,1383,'N'),(422,1388,'N'),(422,1389,'N'),(422,1394,'N'),(422,1395,'N'),(422,1396,'N'),(422,1397,'N'),(422,1398,'N'),(422,1399,'N'),(422,1405,'N'),(422,1406,'N'),(422,1407,'S'),(422,1408,'N'),(422,1409,'N'),(422,1411,'N'),(422,1412,'N'),(422,1413,'N'),(422,1414,'N'),(422,1415,'N'),(422,1416,'N'),(422,1417,'N'),(422,1418,'N'),(422,1422,'N'),(422,1423,'N'),(422,1428,'N'),(422,1429,'N'),(422,1434,'N'),(422,1435,'N'),(422,1436,'N'),(422,1437,'N'),(422,1438,'N'),(422,1439,'N'),(422,1445,'N'),(422,1446,'N'),(422,1447,'S'),(422,1448,'N'),(422,1449,'N'),(422,1451,'N'),(422,1452,'N'),(422,1453,'N'),(422,1454,'N'),(422,1455,'N'),(422,1456,'N'),(422,1457,'N'),(422,1458,'N'),(422,1462,'N'),(422,1463,'N'),(422,1468,'N'),(422,1469,'N'),(422,1474,'N'),(422,1475,'N'),(422,1476,'N'),(422,1477,'N'),(422,1478,'N'),(422,1479,'N'),(422,1485,'N'),(422,1486,'N'),(422,1487,'S'),(422,1488,'N'),(422,1489,'N'),(422,1491,'N'),(422,1493,'N'),(422,1494,'N'),(422,1495,'N'),(422,1496,'N'),(422,1497,'N'),(422,1498,'N'),(422,1502,'N'),(422,1503,'N'),(422,1508,'N'),(422,1509,'N'),(422,1514,'N'),(422,1515,'N'),(422,1516,'N'),(422,1517,'N'),(422,1518,'N'),(422,1519,'N'),(422,1525,'N'),(422,1526,'N'),(422,1527,'S'),(422,1528,'N'),(422,1529,'N'),(422,1531,'N'),(422,1533,'N'),(422,1534,'N'),(422,1535,'N'),(422,1536,'N'),(422,1537,'N'),(422,1538,'N'),(422,1542,'N'),(422,1543,'N'),(422,1548,'N'),(422,1549,'N'),(422,1554,'N'),(422,1555,'N'),(422,1556,'N'),(422,1557,'N'),(422,1558,'N'),(422,1559,'N'),(422,1566,'N'),(422,1567,'N'),(422,1568,'S'),(422,1569,'N'),(422,1570,'N'),(422,1571,'N'),(422,1573,'N'),(422,1574,'N'),(422,1575,'N'),(422,1576,'N'),(422,1577,'N'),(422,1578,'N'),(422,1582,'N'),(422,1583,'N'),(422,1588,'N'),(422,1589,'N'),(422,1594,'N'),(422,1595,'N'),(422,1596,'N'),(422,1597,'N'),(422,1598,'N'),(422,1599,'N'),(422,1606,'N'),(422,1607,'N'),(422,1608,'S'),(422,1609,'N'),(422,1610,'N'),(422,1611,'N'),(422,1612,'N'),(422,1613,'N'),(422,1614,'N'),(422,1615,'N'),(422,1616,'N'),(422,1617,'N'),(422,1621,'N'),(422,1622,'N'),(422,1627,'N'),(422,1628,'N'),(422,1633,'N'),(422,1634,'N'),(422,1635,'N'),(422,1636,'N'),(422,1637,'N'),(422,1638,'N'),(422,1640,'N'),(422,1641,'N'),(425,453,'S'),(425,471,'S'),(425,490,'S'),(425,510,'S'),(425,530,'S'),(425,547,'S'),(425,568,'S'),(425,590,'S'),(425,613,'S'),(425,637,'S'),(425,662,'S'),(425,688,'S'),(425,715,'S'),(425,743,'S'),(425,772,'S'),(425,802,'S'),(425,833,'S'),(425,865,'S'),(425,898,'S'),(425,932,'S'),(425,967,'S'),(425,1003,'S'),(425,1040,'S'),(425,1077,'S'),(425,1115,'S'),(425,1153,'S'),(425,1190,'S'),(425,1227,'S'),(425,1264,'S'),(425,1301,'S'),(425,1339,'S'),(425,1378,'S'),(425,1418,'S'),(425,1458,'S'),(425,1498,'S'),(425,1538,'S'),(425,1578,'S'),(425,1617,'S'),(426,286,'S'),(426,318,'S'),(426,334,'S'),(426,350,'S'),(426,367,'S'),(426,384,'S'),(426,401,'S'),(426,418,'S'),(426,435,'S'),(426,452,'S'),(426,470,'S'),(426,489,'S'),(426,509,'S'),(426,529,'S'),(426,546,'S'),(426,567,'S'),(426,589,'S'),(426,612,'S'),(426,636,'S'),(426,661,'S'),(426,687,'S'),(426,714,'S'),(426,742,'S'),(426,771,'S'),(426,801,'S'),(426,832,'S'),(426,864,'S'),(426,897,'S'),(426,931,'S'),(426,966,'S'),(426,1002,'S'),(426,1039,'S'),(426,1076,'S'),(426,1114,'S'),(426,1152,'S'),(426,1189,'S'),(426,1226,'S'),(426,1263,'S'),(426,1300,'S'),(426,1338,'S'),(426,1377,'S'),(426,1417,'S'),(426,1457,'S'),(426,1497,'S'),(426,1537,'S'),(426,1577,'S'),(426,1616,'S'),(427,1,'N'),(427,2,'N'),(427,3,'N'),(427,4,'N'),(427,5,'S'),(427,8,'N'),(427,9,'N'),(427,10,'N'),(427,11,'N'),(427,12,'N'),(427,13,'N'),(427,14,'N'),(427,15,'N'),(427,16,'N'),(427,17,'N'),(427,18,'N'),(427,19,'N'),(427,20,'S'),(427,23,'N'),(427,24,'N'),(427,25,'N'),(427,26,'N'),(427,27,'N'),(427,28,'N'),(427,29,'N'),(427,30,'N'),(427,31,'N'),(427,32,'N'),(427,33,'N'),(427,34,'N'),(427,35,'S'),(427,38,'N'),(427,39,'N'),(427,40,'N'),(427,41,'N'),(427,42,'N'),(427,43,'N'),(427,44,'N'),(427,45,'N'),(427,46,'N'),(427,47,'N'),(427,48,'N'),(427,49,'N'),(427,50,'S'),(427,53,'N'),(427,54,'N'),(427,55,'N'),(427,56,'N'),(427,57,'N'),(427,58,'N'),(427,59,'N'),(427,60,'N'),(427,61,'N'),(427,62,'N'),(427,63,'N'),(427,64,'N'),(427,65,'S'),(427,68,'N'),(427,69,'N'),(427,70,'N'),(427,71,'N'),(427,72,'N'),(427,73,'N'),(427,74,'N'),(427,75,'N'),(427,76,'N'),(427,77,'N'),(427,78,'N'),(427,79,'N'),(427,80,'S'),(427,83,'N'),(427,84,'N'),(427,85,'N'),(427,86,'N'),(427,87,'N'),(427,88,'N'),(427,89,'N'),(427,90,'N'),(427,91,'N'),(427,92,'N'),(427,93,'N'),(427,94,'N'),(427,95,'S'),(427,98,'N'),(427,99,'N'),(427,100,'N'),(427,101,'N'),(427,102,'N'),(427,103,'N'),(427,104,'N'),(427,105,'N'),(427,106,'N'),(427,107,'N'),(427,108,'N'),(427,109,'N'),(427,110,'S'),(427,113,'N'),(427,114,'N'),(427,115,'N'),(427,116,'N'),(427,117,'N'),(427,118,'N'),(427,119,'N'),(427,120,'N'),(427,121,'N'),(427,122,'N'),(427,123,'N'),(427,124,'N'),(427,125,'S'),(427,128,'N'),(427,129,'N'),(427,130,'N'),(427,131,'N'),(427,132,'N'),(427,133,'N'),(427,134,'N'),(427,135,'N'),(427,136,'N'),(427,137,'N'),(427,138,'N'),(427,139,'N'),(427,140,'S'),(427,143,'N'),(427,144,'N'),(427,145,'N'),(427,146,'N'),(427,147,'N'),(427,148,'N'),(427,149,'N'),(427,150,'N'),(427,151,'N'),(427,152,'N'),(427,153,'N'),(427,154,'N'),(427,155,'S'),(427,158,'N'),(427,159,'N'),(427,160,'N'),(427,161,'N'),(427,162,'N'),(427,163,'N'),(427,164,'N'),(427,165,'N'),(427,166,'N'),(427,167,'N'),(427,168,'N'),(427,169,'N'),(427,170,'S'),(427,173,'N'),(427,174,'N'),(427,175,'N'),(427,176,'N'),(427,177,'N'),(427,178,'N'),(427,179,'N'),(427,180,'N'),(427,181,'N'),(427,182,'N'),(427,183,'N'),(427,184,'N'),(427,185,'S'),(427,188,'N'),(427,189,'N'),(427,190,'N'),(427,191,'N'),(427,192,'N'),(427,193,'N'),(427,194,'N'),(427,195,'N'),(427,196,'N'),(427,197,'N'),(427,198,'N'),(427,199,'N'),(427,200,'S'),(427,203,'N'),(427,204,'N'),(427,205,'N'),(427,206,'N'),(427,207,'N'),(427,208,'N'),(427,209,'N'),(427,210,'N'),(427,211,'N'),(427,212,'N'),(427,213,'N'),(427,214,'N'),(427,215,'S'),(427,218,'N'),(427,219,'N'),(427,220,'N'),(427,221,'N'),(427,222,'N'),(427,223,'N'),(427,224,'N'),(427,225,'N'),(427,226,'N'),(427,227,'N'),(427,228,'N'),(427,229,'N'),(427,230,'S'),(427,233,'N'),(427,234,'N'),(427,235,'N'),(427,236,'N'),(427,237,'N'),(427,238,'N'),(427,239,'N'),(427,240,'N'),(427,241,'N'),(427,242,'N'),(427,243,'N'),(427,244,'N'),(427,245,'S'),(427,248,'N'),(427,249,'N'),(427,250,'N'),(427,251,'N'),(427,252,'N'),(427,253,'N'),(427,254,'N'),(427,255,'N'),(427,256,'N'),(427,257,'N'),(427,258,'N'),(427,259,'N'),(427,260,'S'),(427,263,'N'),(427,264,'N'),(427,265,'N'),(427,266,'N'),(427,267,'N'),(427,268,'N'),(427,269,'N'),(427,270,'N'),(427,271,'N'),(427,272,'N'),(427,273,'N'),(427,274,'N'),(427,275,'S'),(427,278,'N'),(427,279,'N'),(427,280,'N'),(427,281,'N'),(427,282,'N'),(427,283,'N'),(427,284,'N'),(427,285,'N'),(427,286,'N'),(427,287,'N'),(427,288,'N'),(427,289,'N'),(427,290,'N'),(427,291,'S'),(427,294,'N'),(427,295,'N'),(427,296,'N'),(427,297,'N'),(427,298,'N'),(427,299,'N'),(427,300,'N'),(427,301,'N'),(427,303,'N'),(427,304,'N'),(427,305,'N'),(427,306,'N'),(427,307,'S'),(427,310,'N'),(427,311,'N'),(427,312,'N'),(427,313,'N'),(427,314,'N'),(427,315,'N'),(427,316,'N'),(427,317,'N'),(427,318,'N'),(427,319,'N'),(427,320,'N'),(427,321,'N'),(427,322,'N'),(427,323,'S'),(427,326,'N'),(427,327,'N'),(427,328,'N'),(427,329,'N'),(427,330,'N'),(427,331,'N'),(427,332,'N'),(427,333,'N'),(427,334,'N'),(427,335,'N'),(427,336,'N'),(427,337,'N'),(427,338,'N'),(427,339,'S'),(427,342,'N'),(427,343,'N'),(427,344,'N'),(427,345,'N'),(427,346,'N'),(427,347,'N'),(427,348,'N'),(427,349,'N'),(427,350,'N'),(427,352,'N'),(427,353,'N'),(427,354,'N'),(427,355,'N'),(427,356,'S'),(427,359,'N'),(427,360,'N'),(427,361,'N'),(427,362,'N'),(427,363,'N'),(427,364,'N'),(427,365,'N'),(427,366,'N'),(427,367,'N'),(427,369,'N'),(427,370,'N'),(427,371,'N'),(427,372,'N'),(427,373,'S'),(427,376,'N'),(427,377,'N'),(427,378,'N'),(427,379,'N'),(427,380,'N'),(427,381,'N'),(427,382,'N'),(427,383,'N'),(427,384,'N'),(427,386,'N'),(427,387,'N'),(427,388,'N'),(427,389,'N'),(427,390,'S'),(427,393,'N'),(427,394,'N'),(427,395,'N'),(427,396,'N'),(427,397,'N'),(427,398,'N'),(427,399,'N'),(427,400,'N'),(427,401,'N'),(427,403,'N'),(427,404,'N'),(427,405,'N'),(427,406,'N'),(427,407,'S'),(427,410,'N'),(427,411,'N'),(427,412,'N'),(427,413,'N'),(427,414,'N'),(427,415,'N'),(427,416,'N'),(427,417,'N'),(427,418,'N'),(427,420,'N'),(427,421,'N'),(427,422,'N'),(427,423,'N'),(427,424,'S'),(427,427,'N'),(427,428,'N'),(427,429,'N'),(427,430,'N'),(427,431,'N'),(427,432,'N'),(427,433,'N'),(427,434,'N'),(427,435,'N'),(427,437,'N'),(427,438,'N'),(427,439,'N'),(427,440,'N'),(427,441,'S'),(427,444,'N'),(427,445,'N'),(427,446,'N'),(427,447,'N'),(427,448,'N'),(427,449,'N'),(427,450,'N'),(427,451,'N'),(427,452,'N'),(427,453,'N'),(427,455,'N'),(427,456,'N'),(427,457,'N'),(427,458,'N'),(427,459,'S'),(427,462,'N'),(427,463,'N'),(427,464,'N'),(427,465,'N'),(427,466,'N'),(427,467,'N'),(427,468,'N'),(427,469,'N'),(427,470,'N'),(427,471,'N'),(427,474,'N'),(427,475,'N'),(427,476,'N'),(427,477,'N'),(427,478,'S'),(427,481,'N'),(427,482,'N'),(427,483,'N'),(427,484,'N'),(427,485,'N'),(427,486,'N'),(427,487,'N'),(427,488,'N'),(427,489,'N'),(427,490,'N'),(427,494,'N'),(427,495,'N'),(427,496,'N'),(427,497,'N'),(427,498,'S'),(427,501,'N'),(427,502,'N'),(427,503,'N'),(427,504,'N'),(427,505,'N'),(427,506,'N'),(427,507,'N'),(427,508,'N'),(427,509,'N'),(427,510,'N'),(427,514,'N'),(427,515,'N'),(427,516,'N'),(427,517,'N'),(427,518,'S'),(427,521,'N'),(427,522,'N'),(427,523,'N'),(427,524,'N'),(427,525,'N'),(427,526,'N'),(427,527,'N'),(427,528,'N'),(427,529,'N'),(427,530,'N'),(427,531,'N'),(427,532,'N'),(427,533,'N'),(427,534,'N'),(427,535,'S'),(427,538,'N'),(427,539,'N'),(427,540,'N'),(427,541,'N'),(427,542,'N'),(427,543,'N'),(427,544,'N'),(427,545,'N'),(427,546,'N'),(427,547,'N'),(427,552,'N'),(427,553,'N'),(427,554,'N'),(427,555,'N'),(427,556,'S'),(427,559,'N'),(427,560,'N'),(427,561,'N'),(427,562,'N'),(427,563,'N'),(427,564,'N'),(427,565,'N'),(427,566,'N'),(427,567,'N'),(427,568,'N'),(427,574,'N'),(427,575,'N'),(427,576,'N'),(427,577,'N'),(427,578,'S'),(427,581,'N'),(427,582,'N'),(427,583,'N'),(427,584,'N'),(427,585,'N'),(427,586,'N'),(427,587,'N'),(427,588,'N'),(427,589,'N'),(427,590,'N'),(427,597,'N'),(427,598,'N'),(427,599,'N'),(427,600,'N'),(427,601,'S'),(427,604,'N'),(427,605,'N'),(427,606,'N'),(427,607,'N'),(427,608,'N'),(427,609,'N'),(427,610,'N'),(427,611,'N'),(427,612,'N'),(427,613,'N'),(427,621,'N'),(427,622,'N'),(427,623,'N'),(427,624,'N'),(427,625,'S'),(427,628,'N'),(427,629,'N'),(427,630,'N'),(427,631,'N'),(427,632,'N'),(427,633,'N'),(427,634,'N'),(427,635,'N'),(427,636,'N'),(427,637,'N'),(427,646,'N'),(427,647,'N'),(427,648,'N'),(427,649,'N'),(427,650,'S'),(427,653,'N'),(427,654,'N'),(427,655,'N'),(427,656,'N'),(427,657,'N'),(427,658,'N'),(427,659,'N'),(427,660,'N'),(427,661,'N'),(427,662,'N'),(427,672,'N'),(427,673,'N'),(427,674,'N'),(427,675,'N'),(427,676,'S'),(427,679,'N'),(427,680,'N'),(427,681,'N'),(427,682,'N'),(427,683,'N'),(427,684,'N'),(427,685,'N'),(427,686,'N'),(427,687,'N'),(427,688,'N'),(427,699,'N'),(427,700,'N'),(427,701,'N'),(427,702,'N'),(427,703,'S'),(427,706,'N'),(427,707,'N'),(427,708,'N'),(427,709,'N'),(427,710,'N'),(427,711,'N'),(427,712,'N'),(427,713,'N'),(427,714,'N'),(427,715,'N'),(427,727,'N'),(427,728,'N'),(427,729,'N'),(427,730,'N'),(427,731,'S'),(427,734,'N'),(427,735,'N'),(427,736,'N'),(427,737,'N'),(427,738,'N'),(427,739,'N'),(427,740,'N'),(427,741,'N'),(427,742,'N'),(427,743,'N'),(427,756,'N'),(427,757,'N'),(427,758,'N'),(427,759,'N'),(427,760,'S'),(427,763,'N'),(427,764,'N'),(427,765,'N'),(427,766,'N'),(427,767,'N'),(427,768,'N'),(427,769,'N'),(427,770,'N'),(427,771,'N'),(427,772,'N'),(427,786,'N'),(427,787,'N'),(427,788,'N'),(427,789,'N'),(427,790,'S'),(427,793,'N'),(427,794,'N'),(427,795,'N'),(427,796,'N'),(427,797,'N'),(427,798,'N'),(427,799,'N'),(427,800,'N'),(427,801,'N'),(427,802,'N'),(427,817,'N'),(427,818,'N'),(427,819,'N'),(427,820,'N'),(427,821,'S'),(427,824,'N'),(427,825,'N'),(427,826,'N'),(427,827,'N'),(427,828,'N'),(427,829,'N'),(427,830,'N'),(427,831,'N'),(427,832,'N'),(427,833,'N'),(427,849,'N'),(427,850,'N'),(427,851,'N'),(427,852,'N'),(427,853,'S'),(427,856,'N'),(427,857,'N'),(427,858,'N'),(427,859,'N'),(427,860,'N'),(427,861,'N'),(427,862,'N'),(427,863,'N'),(427,864,'N'),(427,865,'N'),(427,882,'N'),(427,883,'N'),(427,884,'N'),(427,885,'N'),(427,886,'S'),(427,889,'N'),(427,890,'N'),(427,891,'N'),(427,892,'N'),(427,893,'N'),(427,894,'N'),(427,895,'N'),(427,896,'N'),(427,897,'N'),(427,898,'N'),(427,916,'N'),(427,917,'N'),(427,918,'N'),(427,919,'N'),(427,920,'S'),(427,923,'N'),(427,924,'N'),(427,925,'N'),(427,926,'N'),(427,927,'N'),(427,928,'N'),(427,929,'N'),(427,930,'N'),(427,931,'N'),(427,932,'N'),(427,951,'N'),(427,952,'N'),(427,953,'N'),(427,954,'N'),(427,955,'S'),(427,958,'N'),(427,959,'N'),(427,960,'N'),(427,961,'N'),(427,962,'N'),(427,963,'N'),(427,964,'N'),(427,965,'N'),(427,966,'N'),(427,967,'N'),(427,987,'N'),(427,988,'N'),(427,989,'N'),(427,990,'N'),(427,991,'S'),(427,994,'N'),(427,995,'N'),(427,996,'N'),(427,997,'N'),(427,998,'N'),(427,999,'N'),(427,1000,'N'),(427,1001,'N'),(427,1002,'N'),(427,1003,'N'),(427,1024,'N'),(427,1025,'N'),(427,1026,'N'),(427,1027,'N'),(427,1028,'S'),(427,1031,'N'),(427,1032,'N'),(427,1033,'N'),(427,1034,'N'),(427,1035,'N'),(427,1036,'N'),(427,1037,'N'),(427,1038,'N'),(427,1039,'N'),(427,1040,'N'),(427,1061,'N'),(427,1062,'N'),(427,1063,'N'),(427,1064,'N'),(427,1065,'S'),(427,1068,'N'),(427,1069,'N'),(427,1070,'N'),(427,1071,'N'),(427,1072,'N'),(427,1073,'N'),(427,1074,'N'),(427,1075,'N'),(427,1076,'N'),(427,1077,'N'),(427,1099,'N'),(427,1100,'N'),(427,1101,'N'),(427,1102,'N'),(427,1103,'S'),(427,1104,'N'),(427,1106,'N'),(427,1107,'N'),(427,1108,'N'),(427,1109,'N'),(427,1110,'N'),(427,1111,'N'),(427,1112,'N'),(427,1113,'N'),(427,1114,'N'),(427,1115,'N'),(427,1137,'N'),(427,1138,'N'),(427,1139,'N'),(427,1140,'N'),(427,1141,'S'),(427,1142,'N'),(427,1144,'N'),(427,1145,'N'),(427,1146,'N'),(427,1147,'N'),(427,1148,'N'),(427,1149,'N'),(427,1150,'N'),(427,1151,'N'),(427,1152,'N'),(427,1153,'N'),(427,1175,'N'),(427,1176,'N'),(427,1177,'N'),(427,1178,'N'),(427,1179,'S'),(427,1180,'N'),(427,1181,'N'),(427,1182,'N'),(427,1183,'N'),(427,1184,'N'),(427,1185,'N'),(427,1186,'N'),(427,1187,'N'),(427,1188,'N'),(427,1189,'N'),(427,1190,'N'),(427,1212,'N'),(427,1213,'N'),(427,1214,'N'),(427,1215,'N'),(427,1216,'S'),(427,1217,'N'),(427,1218,'N'),(427,1219,'N'),(427,1220,'N'),(427,1221,'N'),(427,1222,'N'),(427,1223,'N'),(427,1224,'N'),(427,1225,'N'),(427,1226,'N'),(427,1227,'N'),(427,1251,'N'),(427,1252,'N'),(427,1253,'S'),(427,1254,'N'),(427,1255,'N'),(427,1257,'N'),(427,1258,'N'),(427,1259,'N'),(427,1260,'N'),(427,1261,'N'),(427,1262,'N'),(427,1263,'N'),(427,1264,'N'),(427,1268,'N'),(427,1269,'N'),(427,1274,'N'),(427,1275,'N'),(427,1280,'N'),(427,1281,'N'),(427,1282,'N'),(427,1283,'N'),(427,1284,'N'),(427,1285,'N'),(427,1288,'N'),(427,1289,'N'),(427,1290,'S'),(427,1291,'N'),(427,1292,'N'),(427,1294,'N'),(427,1295,'N'),(427,1296,'N'),(427,1297,'N'),(427,1298,'N'),(427,1299,'N'),(427,1300,'N'),(427,1301,'N'),(427,1305,'N'),(427,1306,'N'),(427,1311,'N'),(427,1312,'N'),(427,1317,'N'),(427,1318,'N'),(427,1319,'N'),(427,1320,'N'),(427,1321,'N'),(427,1322,'N'),(427,1326,'N'),(427,1327,'N'),(427,1328,'S'),(427,1329,'N'),(427,1330,'N'),(427,1332,'N'),(427,1333,'N'),(427,1334,'N'),(427,1335,'N'),(427,1336,'N'),(427,1337,'N'),(427,1338,'N'),(427,1339,'N'),(427,1343,'N'),(427,1344,'N'),(427,1349,'N'),(427,1350,'N'),(427,1355,'N'),(427,1356,'N'),(427,1357,'N'),(427,1358,'N'),(427,1359,'N'),(427,1360,'N'),(427,1365,'N'),(427,1366,'N'),(427,1367,'S'),(427,1368,'N'),(427,1369,'N'),(427,1371,'N'),(427,1372,'N'),(427,1373,'N'),(427,1374,'N'),(427,1375,'N'),(427,1376,'N'),(427,1377,'N'),(427,1378,'N'),(427,1382,'N'),(427,1383,'N'),(427,1388,'N'),(427,1389,'N'),(427,1394,'N'),(427,1395,'N'),(427,1396,'N'),(427,1397,'N'),(427,1398,'N'),(427,1399,'N'),(427,1405,'N'),(427,1406,'N'),(427,1407,'S'),(427,1408,'N'),(427,1409,'N'),(427,1411,'N'),(427,1412,'N'),(427,1413,'N'),(427,1414,'N'),(427,1415,'N'),(427,1416,'N'),(427,1417,'N'),(427,1418,'N'),(427,1422,'N'),(427,1423,'N'),(427,1428,'N'),(427,1429,'N'),(427,1434,'N'),(427,1435,'N'),(427,1436,'N'),(427,1437,'N'),(427,1438,'N'),(427,1439,'N'),(427,1445,'N'),(427,1446,'N'),(427,1447,'S'),(427,1448,'N'),(427,1449,'N'),(427,1451,'N'),(427,1452,'N'),(427,1453,'N'),(427,1454,'N'),(427,1455,'N'),(427,1456,'N'),(427,1457,'N'),(427,1458,'N'),(427,1462,'N'),(427,1463,'N'),(427,1468,'N'),(427,1469,'N'),(427,1474,'N'),(427,1475,'N'),(427,1476,'N'),(427,1477,'N'),(427,1478,'N'),(427,1479,'N'),(427,1485,'N'),(427,1486,'N'),(427,1487,'S'),(427,1488,'N'),(427,1489,'N'),(427,1491,'N'),(427,1493,'N'),(427,1494,'N'),(427,1495,'N'),(427,1496,'N'),(427,1497,'N'),(427,1498,'N'),(427,1502,'N'),(427,1503,'N'),(427,1508,'N'),(427,1509,'N'),(427,1514,'N'),(427,1515,'N'),(427,1516,'N'),(427,1517,'N'),(427,1518,'N'),(427,1519,'N'),(427,1525,'N'),(427,1526,'N'),(427,1527,'S'),(427,1528,'N'),(427,1529,'N'),(427,1531,'N'),(427,1533,'N'),(427,1534,'N'),(427,1535,'N'),(427,1536,'N'),(427,1537,'N'),(427,1538,'N'),(427,1542,'N'),(427,1543,'N'),(427,1548,'N'),(427,1549,'N'),(427,1554,'N'),(427,1555,'N'),(427,1556,'N'),(427,1557,'N'),(427,1558,'N'),(427,1559,'N'),(427,1566,'N'),(427,1567,'N'),(427,1568,'S'),(427,1569,'N'),(427,1570,'N'),(427,1571,'N'),(427,1573,'N'),(427,1574,'N'),(427,1575,'N'),(427,1576,'N'),(427,1577,'N'),(427,1578,'N'),(427,1582,'N'),(427,1583,'N'),(427,1588,'N'),(427,1589,'N'),(427,1594,'N'),(427,1595,'N'),(427,1596,'N'),(427,1597,'N'),(427,1598,'N'),(427,1599,'N'),(427,1606,'N'),(427,1607,'N'),(427,1608,'S'),(427,1609,'N'),(427,1610,'N'),(427,1611,'N'),(427,1612,'N'),(427,1613,'N'),(427,1614,'N'),(427,1615,'N'),(427,1616,'N'),(427,1617,'N'),(427,1621,'N'),(427,1622,'N'),(427,1627,'N'),(427,1628,'N'),(427,1633,'N'),(427,1634,'N'),(427,1635,'N'),(427,1636,'N'),(427,1637,'N'),(427,1638,'N'),(427,1640,'N'),(427,1641,'N'),(430,473,'S'),(430,492,'S'),(430,512,'S'),(430,549,'S'),(430,570,'S'),(430,592,'S'),(430,615,'S'),(430,639,'S'),(430,664,'S'),(430,690,'S'),(430,717,'S'),(430,745,'S'),(430,774,'S'),(430,804,'S'),(430,835,'S'),(430,867,'S'),(430,900,'S'),(430,934,'S'),(430,969,'S'),(430,1005,'S'),(430,1042,'S'),(430,1079,'S'),(430,1117,'S'),(430,1155,'S'),(430,1192,'S'),(430,1229,'S'),(430,1266,'S'),(430,1303,'S'),(430,1341,'S'),(430,1380,'S'),(430,1420,'S'),(430,1460,'S'),(430,1500,'S'),(430,1540,'S'),(430,1580,'S'),(430,1619,'S'),(431,3,'N'),(431,4,'N'),(431,8,'N'),(431,10,'N'),(431,11,'N'),(431,13,'N'),(431,14,'N'),(431,15,'N'),(431,18,'N'),(431,19,'N'),(431,23,'N'),(431,25,'N'),(431,26,'N'),(431,28,'N'),(431,29,'N'),(431,30,'N'),(431,33,'N'),(431,34,'N'),(431,38,'N'),(431,40,'N'),(431,41,'N'),(431,43,'N'),(431,44,'N'),(431,45,'N'),(431,48,'N'),(431,49,'N'),(431,53,'N'),(431,55,'N'),(431,56,'N'),(431,58,'N'),(431,59,'N'),(431,60,'N'),(431,63,'N'),(431,64,'N'),(431,68,'N'),(431,70,'N'),(431,71,'N'),(431,73,'N'),(431,74,'N'),(431,75,'N'),(431,78,'N'),(431,79,'N'),(431,83,'N'),(431,85,'N'),(431,86,'N'),(431,88,'N'),(431,89,'N'),(431,90,'N'),(431,93,'N'),(431,94,'N'),(431,98,'N'),(431,100,'N'),(431,101,'N'),(431,103,'N'),(431,104,'N'),(431,105,'N'),(431,108,'N'),(431,109,'N'),(431,113,'N'),(431,115,'N'),(431,116,'N'),(431,118,'N'),(431,119,'N'),(431,120,'N'),(431,123,'N'),(431,124,'N'),(431,128,'N'),(431,130,'N'),(431,131,'N'),(431,133,'N'),(431,134,'N'),(431,135,'N'),(431,138,'N'),(431,139,'N'),(431,143,'N'),(431,145,'N'),(431,146,'N'),(431,148,'N'),(431,149,'N'),(431,150,'N'),(431,153,'N'),(431,154,'N'),(431,158,'N'),(431,160,'N'),(431,161,'N'),(431,163,'N'),(431,164,'N'),(431,165,'N'),(431,168,'N'),(431,169,'N'),(431,173,'N'),(431,175,'N'),(431,176,'N'),(431,178,'N'),(431,179,'N'),(431,180,'N'),(431,183,'N'),(431,184,'N'),(431,188,'N'),(431,190,'N'),(431,191,'N'),(431,193,'N'),(431,194,'N'),(431,195,'N'),(431,198,'N'),(431,199,'N'),(431,203,'N'),(431,205,'N'),(431,206,'N'),(431,208,'N'),(431,209,'N'),(431,210,'N'),(431,213,'N'),(431,214,'N'),(431,218,'N'),(431,220,'N'),(431,221,'N'),(431,223,'N'),(431,224,'N'),(431,225,'N'),(431,228,'N'),(431,229,'N'),(431,233,'N'),(431,235,'N'),(431,236,'N'),(431,238,'N'),(431,239,'N'),(431,240,'N'),(431,243,'N'),(431,244,'N'),(431,248,'N'),(431,250,'N'),(431,251,'N'),(431,253,'N'),(431,254,'N'),(431,255,'N'),(431,258,'N'),(431,259,'N'),(431,263,'N'),(431,265,'N'),(431,266,'N'),(431,268,'N'),(431,269,'N'),(431,270,'N'),(431,273,'N'),(431,274,'N'),(431,278,'N'),(431,280,'N'),(431,281,'N'),(431,283,'N'),(431,284,'N'),(431,285,'N'),(431,289,'N'),(431,290,'N'),(431,294,'N'),(431,296,'N'),(431,297,'N'),(431,299,'N'),(431,300,'N'),(431,301,'N'),(431,305,'N'),(431,306,'N'),(431,310,'N'),(431,312,'N'),(431,313,'N'),(431,315,'N'),(431,316,'N'),(431,317,'N'),(431,321,'N'),(431,322,'N'),(431,326,'N'),(431,328,'N'),(431,329,'N'),(431,331,'N'),(431,332,'N'),(431,333,'N'),(431,337,'N'),(431,338,'N'),(431,342,'N'),(431,344,'N'),(431,345,'N'),(431,347,'N'),(431,348,'N'),(431,349,'N'),(431,354,'N'),(431,355,'N'),(431,359,'N'),(431,361,'N'),(431,362,'N'),(431,364,'N'),(431,365,'N'),(431,366,'N'),(431,371,'N'),(431,372,'N'),(431,376,'N'),(431,378,'N'),(431,379,'N'),(431,381,'N'),(431,382,'N'),(431,383,'N'),(431,388,'N'),(431,389,'N'),(431,393,'N'),(431,395,'N'),(431,396,'N'),(431,398,'N'),(431,399,'N'),(431,400,'N'),(431,405,'N'),(431,406,'N'),(431,410,'N'),(431,412,'N'),(431,413,'N'),(431,415,'N'),(431,416,'N'),(431,417,'N'),(431,422,'N'),(431,423,'N'),(431,427,'N'),(431,429,'N'),(431,430,'N'),(431,432,'N'),(431,433,'N'),(431,434,'N'),(431,439,'N'),(431,440,'N'),(431,444,'N'),(431,446,'N'),(431,447,'N'),(431,449,'N'),(431,450,'N'),(431,451,'N'),(431,453,'N'),(431,457,'N'),(431,458,'N'),(431,462,'N'),(431,464,'N'),(431,465,'N'),(431,467,'N'),(431,468,'N'),(431,469,'N'),(431,471,'N'),(431,476,'N'),(431,477,'N'),(431,481,'N'),(431,483,'N'),(431,484,'N'),(431,486,'N'),(431,487,'N'),(431,488,'N'),(431,490,'N'),(431,496,'N'),(431,497,'N'),(431,501,'N'),(431,503,'N'),(431,504,'N'),(431,506,'N'),(431,507,'N'),(431,508,'N'),(431,510,'N'),(431,516,'N'),(431,517,'N'),(431,521,'N'),(431,523,'N'),(431,524,'N'),(431,526,'N'),(431,527,'N'),(431,528,'N'),(431,530,'N'),(431,533,'N'),(431,534,'N'),(431,538,'N'),(431,540,'N'),(431,541,'N'),(431,543,'N'),(431,544,'N'),(431,545,'N'),(431,547,'N'),(431,554,'N'),(431,555,'N'),(431,559,'N'),(431,561,'N'),(431,562,'N'),(431,564,'N'),(431,565,'N'),(431,566,'N'),(431,568,'N'),(431,576,'N'),(431,577,'N'),(431,581,'N'),(431,583,'N'),(431,584,'N'),(431,586,'N'),(431,587,'N'),(431,588,'N'),(431,590,'N'),(431,596,'N'),(431,599,'N'),(431,600,'N'),(431,604,'N'),(431,606,'N'),(431,607,'N'),(431,609,'N'),(431,610,'N'),(431,611,'N'),(431,613,'N'),(431,619,'N'),(431,620,'N'),(431,623,'N'),(431,624,'N'),(431,628,'N'),(431,630,'N'),(431,631,'N'),(431,633,'N'),(431,634,'N'),(431,635,'N'),(431,637,'N'),(431,643,'N'),(431,644,'N'),(431,645,'S'),(431,648,'N'),(431,649,'N'),(431,653,'N'),(431,655,'N'),(431,656,'N'),(431,658,'N'),(431,659,'N'),(431,660,'N'),(431,662,'N'),(431,668,'N'),(431,669,'N'),(431,670,'S'),(431,671,'N'),(431,674,'N'),(431,675,'N'),(431,679,'N'),(431,681,'N'),(431,682,'N'),(431,684,'N'),(431,685,'N'),(431,686,'N'),(431,688,'N'),(431,694,'N'),(431,695,'N'),(431,696,'S'),(431,697,'N'),(431,701,'N'),(431,702,'N'),(431,706,'N'),(431,708,'N'),(431,709,'N'),(431,711,'N'),(431,712,'N'),(431,713,'N'),(431,715,'N'),(431,721,'N'),(431,722,'N'),(431,723,'S'),(431,724,'N'),(431,729,'N'),(431,730,'N'),(431,734,'N'),(431,736,'N'),(431,737,'N'),(431,739,'N'),(431,740,'N'),(431,741,'N'),(431,743,'N'),(431,749,'N'),(431,750,'N'),(431,751,'S'),(431,752,'N'),(431,755,'N'),(431,758,'N'),(431,759,'N'),(431,763,'N'),(431,765,'N'),(431,766,'N'),(431,768,'N'),(431,769,'N'),(431,770,'N'),(431,772,'N'),(431,778,'N'),(431,779,'N'),(431,780,'S'),(431,781,'N'),(431,784,'N'),(431,785,'N'),(431,788,'N'),(431,789,'N'),(431,793,'N'),(431,795,'N'),(431,796,'N'),(431,798,'N'),(431,799,'N'),(431,800,'N'),(431,802,'N'),(431,808,'N'),(431,809,'N'),(431,810,'S'),(431,811,'N'),(431,814,'N'),(431,815,'N'),(431,816,'N'),(431,819,'N'),(431,820,'N'),(431,824,'N'),(431,826,'N'),(431,827,'N'),(431,829,'N'),(431,830,'N'),(431,831,'N'),(431,833,'N'),(431,839,'N'),(431,840,'N'),(431,841,'S'),(431,842,'N'),(431,845,'N'),(431,846,'N'),(431,847,'N'),(431,848,'N'),(431,851,'N'),(431,852,'N'),(431,856,'N'),(431,858,'N'),(431,859,'N'),(431,861,'N'),(431,862,'N'),(431,863,'N'),(431,865,'N'),(431,871,'N'),(431,872,'N'),(431,873,'S'),(431,874,'N'),(431,877,'N'),(431,878,'N'),(431,879,'N'),(431,880,'N'),(431,884,'N'),(431,885,'N'),(431,889,'N'),(431,891,'N'),(431,892,'N'),(431,894,'N'),(431,895,'N'),(431,896,'N'),(431,898,'N'),(431,904,'N'),(431,905,'N'),(431,906,'S'),(431,907,'N'),(431,910,'N'),(431,911,'N'),(431,912,'N'),(431,913,'N'),(431,918,'N'),(431,919,'N'),(431,923,'N'),(431,925,'N'),(431,926,'N'),(431,928,'N'),(431,929,'N'),(431,930,'N'),(431,932,'N'),(431,938,'N'),(431,939,'N'),(431,940,'S'),(431,941,'N'),(431,944,'N'),(431,945,'N'),(431,946,'N'),(431,947,'N'),(431,950,'N'),(431,953,'N'),(431,954,'N'),(431,958,'N'),(431,960,'N'),(431,961,'N'),(431,963,'N'),(431,964,'N'),(431,965,'N'),(431,967,'N'),(431,973,'N'),(431,974,'N'),(431,975,'S'),(431,976,'N'),(431,979,'N'),(431,980,'N'),(431,981,'N'),(431,982,'N'),(431,985,'N'),(431,986,'N'),(431,989,'N'),(431,990,'N'),(431,994,'N'),(431,996,'N'),(431,997,'N'),(431,999,'N'),(431,1000,'N'),(431,1001,'N'),(431,1003,'N'),(431,1009,'N'),(431,1010,'N'),(431,1011,'S'),(431,1012,'N'),(431,1015,'N'),(431,1016,'N'),(431,1017,'N'),(431,1018,'N'),(431,1021,'N'),(431,1022,'N'),(431,1023,'N'),(431,1026,'N'),(431,1027,'N'),(431,1031,'N'),(431,1033,'N'),(431,1034,'N'),(431,1036,'N'),(431,1037,'N'),(431,1038,'N'),(431,1040,'N'),(431,1046,'N'),(431,1047,'N'),(431,1048,'S'),(431,1049,'N'),(431,1052,'N'),(431,1053,'N'),(431,1054,'N'),(431,1055,'N'),(431,1058,'N'),(431,1059,'N'),(431,1060,'N'),(431,1063,'N'),(431,1064,'N'),(431,1068,'N'),(431,1070,'N'),(431,1071,'N'),(431,1073,'N'),(431,1074,'N'),(431,1075,'N'),(431,1077,'N'),(431,1083,'N'),(431,1084,'N'),(431,1085,'S'),(431,1086,'N'),(431,1089,'N'),(431,1090,'N'),(431,1091,'N'),(431,1092,'N'),(431,1095,'N'),(431,1096,'N'),(431,1097,'N'),(431,1098,'N'),(431,1101,'N'),(431,1102,'N'),(431,1104,'N'),(431,1106,'N'),(431,1108,'N'),(431,1109,'N'),(431,1111,'N'),(431,1112,'N'),(431,1113,'N'),(431,1115,'N'),(431,1121,'N'),(431,1122,'N'),(431,1123,'S'),(431,1124,'N'),(431,1127,'N'),(431,1128,'N'),(431,1129,'N'),(431,1130,'N'),(431,1133,'N'),(431,1134,'N'),(431,1135,'N'),(431,1136,'N'),(431,1139,'N'),(431,1140,'N'),(431,1142,'N'),(431,1144,'N'),(431,1146,'N'),(431,1147,'N'),(431,1149,'N'),(431,1150,'N'),(431,1151,'N'),(431,1153,'N'),(431,1159,'N'),(431,1160,'N'),(431,1161,'S'),(431,1162,'N'),(431,1165,'N'),(431,1166,'N'),(431,1167,'N'),(431,1168,'N'),(431,1171,'N'),(431,1172,'N'),(431,1173,'N'),(431,1174,'N'),(431,1177,'N'),(431,1178,'N'),(431,1180,'N'),(431,1181,'N'),(431,1183,'N'),(431,1184,'N'),(431,1186,'N'),(431,1187,'N'),(431,1188,'N'),(431,1190,'N'),(431,1196,'N'),(431,1197,'N'),(431,1198,'S'),(431,1199,'N'),(431,1202,'N'),(431,1203,'N'),(431,1204,'N'),(431,1205,'N'),(431,1208,'N'),(431,1209,'N'),(431,1210,'N'),(431,1211,'N'),(431,1214,'N'),(431,1215,'N'),(431,1217,'N'),(431,1218,'N'),(431,1220,'N'),(431,1221,'N'),(431,1223,'N'),(431,1224,'N'),(431,1225,'N'),(431,1227,'N'),(431,1233,'N'),(431,1234,'N'),(431,1235,'S'),(431,1236,'N'),(431,1239,'N'),(431,1240,'N'),(431,1241,'N'),(431,1242,'N'),(431,1245,'N'),(431,1246,'N'),(431,1247,'N'),(431,1248,'N'),(431,1251,'N'),(431,1252,'N'),(431,1254,'N'),(431,1255,'N'),(431,1257,'N'),(431,1258,'N'),(431,1260,'N'),(431,1261,'N'),(431,1262,'N'),(431,1264,'N'),(431,1270,'N'),(431,1271,'N'),(431,1272,'S'),(431,1273,'N'),(431,1276,'N'),(431,1277,'N'),(431,1278,'N'),(431,1279,'N'),(431,1282,'N'),(431,1283,'N'),(431,1284,'N'),(431,1285,'N'),(431,1288,'N'),(431,1289,'N'),(431,1291,'N'),(431,1292,'N'),(431,1294,'N'),(431,1295,'N'),(431,1297,'N'),(431,1298,'N'),(431,1299,'N'),(431,1301,'N'),(431,1307,'N'),(431,1308,'N'),(431,1309,'S'),(431,1310,'N'),(431,1313,'N'),(431,1314,'N'),(431,1315,'N'),(431,1316,'N'),(431,1319,'N'),(431,1320,'N'),(431,1321,'N'),(431,1322,'N'),(431,1326,'N'),(431,1327,'N'),(431,1329,'N'),(431,1330,'N'),(431,1332,'N'),(431,1333,'N'),(431,1335,'N'),(431,1336,'N'),(431,1337,'N'),(431,1339,'N'),(431,1345,'N'),(431,1346,'N'),(431,1347,'S'),(431,1348,'N'),(431,1351,'N'),(431,1352,'N'),(431,1353,'N'),(431,1354,'N'),(431,1357,'N'),(431,1358,'N'),(431,1359,'N'),(431,1360,'N'),(431,1365,'N'),(431,1366,'N'),(431,1368,'N'),(431,1369,'N'),(431,1371,'N'),(431,1372,'N'),(431,1374,'N'),(431,1375,'N'),(431,1376,'N'),(431,1378,'N'),(431,1384,'N'),(431,1385,'N'),(431,1386,'S'),(431,1387,'N'),(431,1390,'N'),(431,1391,'N'),(431,1392,'N'),(431,1393,'N'),(431,1396,'N'),(431,1397,'N'),(431,1398,'N'),(431,1399,'N'),(431,1405,'N'),(431,1406,'N'),(431,1408,'N'),(431,1409,'N'),(431,1411,'N'),(431,1412,'N'),(431,1414,'N'),(431,1415,'N'),(431,1416,'N'),(431,1418,'N'),(431,1424,'N'),(431,1425,'N'),(431,1426,'S'),(431,1427,'N'),(431,1430,'N'),(431,1431,'N'),(431,1432,'N'),(431,1433,'N'),(431,1436,'N'),(431,1437,'N'),(431,1438,'N'),(431,1439,'N'),(431,1445,'N'),(431,1446,'N'),(431,1448,'N'),(431,1449,'N'),(431,1451,'N'),(431,1452,'N'),(431,1454,'N'),(431,1455,'N'),(431,1456,'N'),(431,1458,'N'),(431,1464,'N'),(431,1465,'N'),(431,1466,'S'),(431,1467,'N'),(431,1470,'N'),(431,1471,'N'),(431,1472,'N'),(431,1473,'N'),(431,1476,'N'),(431,1477,'N'),(431,1478,'N'),(431,1479,'N'),(431,1485,'N'),(431,1486,'N'),(431,1488,'N'),(431,1489,'N'),(431,1491,'N'),(431,1492,'N'),(431,1494,'N'),(431,1495,'N'),(431,1496,'N'),(431,1498,'N'),(431,1504,'N'),(431,1505,'N'),(431,1506,'S'),(431,1507,'N'),(431,1510,'N'),(431,1511,'N'),(431,1512,'N'),(431,1513,'N'),(431,1516,'N'),(431,1517,'N'),(431,1518,'N'),(431,1519,'N'),(431,1525,'N'),(431,1526,'N'),(431,1528,'N'),(431,1529,'N'),(431,1531,'N'),(431,1534,'N'),(431,1535,'N'),(431,1536,'N'),(431,1538,'N'),(431,1544,'N'),(431,1545,'N'),(431,1546,'S'),(431,1547,'N'),(431,1550,'N'),(431,1551,'N'),(431,1552,'N'),(431,1553,'N'),(431,1556,'N'),(431,1557,'N'),(431,1558,'N'),(431,1559,'N'),(431,1566,'N'),(431,1567,'N'),(431,1569,'N'),(431,1570,'N'),(431,1571,'N'),(431,1574,'N'),(431,1575,'N'),(431,1576,'N'),(431,1578,'N'),(431,1584,'N'),(431,1585,'N'),(431,1586,'S'),(431,1587,'N'),(431,1590,'N'),(431,1591,'N'),(431,1592,'N'),(431,1593,'N'),(431,1596,'N'),(431,1597,'N'),(431,1598,'N'),(431,1599,'N'),(431,1606,'N'),(431,1607,'N'),(431,1609,'N'),(431,1611,'N'),(431,1613,'N'),(431,1614,'N'),(431,1615,'N'),(431,1623,'N'),(431,1624,'N'),(431,1625,'S'),(431,1626,'N'),(431,1629,'N'),(431,1630,'N'),(431,1631,'N'),(431,1632,'N'),(431,1635,'N'),(431,1636,'N'),(431,1637,'N'),(431,1638,'N'),(435,453,'S'),(435,471,'S'),(435,490,'S'),(435,510,'S'),(435,530,'S'),(435,547,'S'),(435,568,'S'),(435,590,'S'),(435,613,'S'),(435,637,'S'),(435,662,'S'),(435,688,'S'),(435,715,'S'),(435,743,'S'),(435,772,'S'),(435,802,'S'),(435,833,'S'),(435,865,'S'),(435,898,'S'),(435,932,'S'),(435,967,'S'),(435,1003,'S'),(435,1040,'S'),(435,1077,'S'),(435,1115,'S'),(435,1153,'S'),(435,1190,'S'),(435,1227,'S'),(435,1264,'S'),(435,1301,'S'),(435,1339,'S'),(435,1378,'S'),(435,1418,'S'),(435,1458,'S'),(435,1498,'S'),(435,1538,'S'),(435,1578,'S'),(435,1617,'S'),(436,8,'S'),(436,23,'S'),(436,38,'S'),(436,53,'S'),(436,68,'S'),(436,83,'S'),(436,98,'S'),(436,113,'S'),(436,128,'S'),(436,143,'S'),(436,158,'S'),(436,173,'S'),(436,188,'S'),(436,203,'S'),(436,218,'S'),(436,233,'S'),(436,248,'S'),(436,263,'S'),(436,278,'S'),(436,294,'S'),(436,310,'S'),(436,326,'S'),(436,342,'S'),(436,359,'S'),(436,376,'S'),(436,393,'S'),(436,410,'S'),(436,427,'S'),(436,444,'S'),(436,462,'S'),(436,481,'S'),(436,501,'S'),(436,521,'S'),(436,538,'S'),(436,559,'S'),(436,581,'S'),(436,604,'S'),(436,628,'S'),(436,653,'S'),(436,679,'S'),(436,706,'S'),(436,734,'S'),(436,763,'S'),(436,793,'S'),(436,824,'S'),(436,856,'S'),(436,889,'S'),(436,923,'S'),(436,958,'S'),(436,994,'S'),(436,1031,'S'),(436,1068,'S'),(436,1106,'S'),(436,1144,'S'),(436,1181,'S'),(436,1218,'S'),(436,1255,'S'),(436,1292,'S'),(436,1330,'S'),(436,1369,'S'),(436,1409,'S'),(436,1449,'S'),(436,1489,'S'),(436,1529,'S'),(436,1570,'S'),(436,1610,'S'),(437,1,'N'),(437,2,'N'),(437,3,'N'),(437,4,'N'),(437,5,'S'),(437,8,'N'),(437,9,'N'),(437,10,'N'),(437,11,'N'),(437,12,'N'),(437,13,'N'),(437,14,'N'),(437,15,'N'),(437,16,'N'),(437,17,'N'),(437,18,'N'),(437,19,'N'),(437,20,'S'),(437,23,'N'),(437,24,'N'),(437,25,'N'),(437,26,'N'),(437,27,'N'),(437,28,'N'),(437,29,'N'),(437,30,'N'),(437,31,'N'),(437,32,'N'),(437,33,'N'),(437,34,'N'),(437,35,'S'),(437,38,'N'),(437,39,'N'),(437,40,'N'),(437,41,'N'),(437,42,'N'),(437,43,'N'),(437,44,'N'),(437,45,'N'),(437,46,'N'),(437,47,'N'),(437,48,'N'),(437,49,'N'),(437,50,'S'),(437,53,'N'),(437,54,'N'),(437,55,'N'),(437,56,'N'),(437,57,'N'),(437,58,'N'),(437,59,'N'),(437,60,'N'),(437,61,'N'),(437,62,'N'),(437,63,'N'),(437,64,'N'),(437,65,'S'),(437,68,'N'),(437,69,'N'),(437,70,'N'),(437,71,'N'),(437,72,'N'),(437,73,'N'),(437,74,'N'),(437,75,'N'),(437,76,'N'),(437,77,'N'),(437,78,'N'),(437,79,'N'),(437,80,'S'),(437,83,'N'),(437,84,'N'),(437,85,'N'),(437,86,'N'),(437,87,'N'),(437,88,'N'),(437,89,'N'),(437,90,'N'),(437,91,'N'),(437,92,'N'),(437,93,'N'),(437,94,'N'),(437,95,'S'),(437,98,'N'),(437,99,'N'),(437,100,'N'),(437,101,'N'),(437,102,'N'),(437,103,'N'),(437,104,'N'),(437,105,'N'),(437,106,'N'),(437,107,'N'),(437,108,'N'),(437,109,'N'),(437,110,'S'),(437,113,'N'),(437,114,'N'),(437,115,'N'),(437,116,'N'),(437,117,'N'),(437,118,'N'),(437,119,'N'),(437,120,'N'),(437,121,'N'),(437,122,'N'),(437,123,'N'),(437,124,'N'),(437,125,'S'),(437,128,'N'),(437,129,'N'),(437,130,'N'),(437,131,'N'),(437,132,'N'),(437,133,'N'),(437,134,'N'),(437,135,'N'),(437,136,'N'),(437,137,'N'),(437,138,'N'),(437,139,'N'),(437,140,'S'),(437,143,'N'),(437,144,'N'),(437,145,'N'),(437,146,'N'),(437,147,'N'),(437,148,'N'),(437,149,'N'),(437,150,'N'),(437,151,'N'),(437,152,'N'),(437,153,'N'),(437,154,'N'),(437,155,'S'),(437,158,'N'),(437,159,'N'),(437,160,'N'),(437,161,'N'),(437,162,'N'),(437,163,'N'),(437,164,'N'),(437,165,'N'),(437,166,'N'),(437,167,'N'),(437,168,'N'),(437,169,'N'),(437,170,'S'),(437,173,'N'),(437,174,'N'),(437,175,'N'),(437,176,'N'),(437,177,'N'),(437,178,'N'),(437,179,'N'),(437,180,'N'),(437,181,'N'),(437,182,'N'),(437,183,'N'),(437,184,'N'),(437,185,'S'),(437,188,'N'),(437,189,'N'),(437,190,'N'),(437,191,'N'),(437,192,'N'),(437,193,'N'),(437,194,'N'),(437,195,'N'),(437,196,'N'),(437,197,'N'),(437,198,'N'),(437,199,'N'),(437,200,'S'),(437,203,'N'),(437,204,'N'),(437,205,'N'),(437,206,'N'),(437,207,'N'),(437,208,'N'),(437,209,'N'),(437,210,'N'),(437,211,'N'),(437,212,'N'),(437,213,'N'),(437,214,'N'),(437,215,'S'),(437,218,'N'),(437,219,'N'),(437,220,'N'),(437,221,'N'),(437,222,'N'),(437,223,'N'),(437,224,'N'),(437,225,'N'),(437,226,'N'),(437,227,'N'),(437,228,'N'),(437,229,'N'),(437,230,'S'),(437,233,'N'),(437,234,'N'),(437,235,'N'),(437,236,'N'),(437,237,'N'),(437,238,'N'),(437,239,'N'),(437,240,'N'),(437,241,'N'),(437,242,'N'),(437,243,'N'),(437,244,'N'),(437,245,'S'),(437,248,'N'),(437,249,'N'),(437,250,'N'),(437,251,'N'),(437,252,'N'),(437,253,'N'),(437,254,'N'),(437,255,'N'),(437,256,'N'),(437,257,'N'),(437,258,'N'),(437,259,'N'),(437,260,'S'),(437,263,'N'),(437,264,'N'),(437,265,'N'),(437,266,'N'),(437,267,'N'),(437,268,'N'),(437,269,'N'),(437,270,'N'),(437,271,'N'),(437,272,'N'),(437,273,'N'),(437,274,'N'),(437,275,'S'),(437,278,'N'),(437,279,'N'),(437,280,'N'),(437,281,'N'),(437,282,'N'),(437,283,'N'),(437,284,'N'),(437,285,'N'),(437,286,'N'),(437,287,'N'),(437,288,'N'),(437,289,'N'),(437,290,'N'),(437,291,'S'),(437,294,'N'),(437,295,'N'),(437,296,'N'),(437,297,'N'),(437,298,'N'),(437,299,'N'),(437,300,'N'),(437,301,'N'),(437,303,'N'),(437,304,'N'),(437,305,'N'),(437,306,'N'),(437,307,'S'),(437,310,'N'),(437,311,'N'),(437,312,'N'),(437,313,'N'),(437,314,'N'),(437,315,'N'),(437,316,'N'),(437,317,'N'),(437,318,'N'),(437,319,'N'),(437,320,'N'),(437,321,'N'),(437,322,'N'),(437,323,'S'),(437,326,'N'),(437,327,'N'),(437,328,'N'),(437,329,'N'),(437,330,'N'),(437,331,'N'),(437,332,'N'),(437,333,'N'),(437,334,'N'),(437,335,'N'),(437,336,'N'),(437,337,'N'),(437,338,'N'),(437,339,'S'),(437,342,'N'),(437,343,'N'),(437,344,'N'),(437,345,'N'),(437,346,'N'),(437,347,'N'),(437,348,'N'),(437,349,'N'),(437,350,'N'),(437,352,'N'),(437,353,'N'),(437,354,'N'),(437,355,'N'),(437,356,'S'),(437,359,'N'),(437,360,'N'),(437,361,'N'),(437,362,'N'),(437,363,'N'),(437,364,'N'),(437,365,'N'),(437,366,'N'),(437,367,'N'),(437,369,'N'),(437,370,'N'),(437,371,'N'),(437,372,'N'),(437,373,'S'),(437,376,'N'),(437,377,'N'),(437,378,'N'),(437,379,'N'),(437,380,'N'),(437,381,'N'),(437,382,'N'),(437,383,'N'),(437,384,'N'),(437,386,'N'),(437,387,'N'),(437,388,'N'),(437,389,'N'),(437,390,'S'),(437,393,'N'),(437,394,'N'),(437,395,'N'),(437,396,'N'),(437,397,'N'),(437,398,'N'),(437,399,'N'),(437,400,'N'),(437,401,'N'),(437,403,'N'),(437,404,'N'),(437,405,'N'),(437,406,'N'),(437,407,'S'),(437,410,'N'),(437,411,'N'),(437,412,'N'),(437,413,'N'),(437,414,'N'),(437,415,'N'),(437,416,'N'),(437,417,'N'),(437,418,'N'),(437,420,'N'),(437,421,'N'),(437,422,'N'),(437,423,'N'),(437,424,'S'),(437,427,'N'),(437,428,'N'),(437,429,'N'),(437,430,'N'),(437,431,'N'),(437,432,'N'),(437,433,'N'),(437,434,'N'),(437,435,'N'),(437,437,'N'),(437,438,'N'),(437,439,'N'),(437,440,'N'),(437,441,'S'),(437,444,'N'),(437,445,'N'),(437,446,'N'),(437,447,'N'),(437,448,'N'),(437,449,'N'),(437,450,'N'),(437,451,'N'),(437,452,'N'),(437,453,'N'),(437,454,'N'),(437,455,'N'),(437,456,'N'),(437,457,'N'),(437,458,'N'),(437,459,'S'),(437,462,'N'),(437,463,'N'),(437,464,'N'),(437,465,'N'),(437,466,'N'),(437,467,'N'),(437,468,'N'),(437,469,'N'),(437,470,'N'),(437,471,'N'),(437,472,'N'),(437,474,'N'),(437,475,'N'),(437,476,'N'),(437,477,'N'),(437,478,'S'),(437,481,'N'),(437,482,'N'),(437,483,'N'),(437,484,'N'),(437,485,'N'),(437,486,'N'),(437,487,'N'),(437,488,'N'),(437,489,'N'),(437,490,'N'),(437,491,'N'),(437,494,'N'),(437,495,'N'),(437,496,'N'),(437,497,'N'),(437,498,'S'),(437,501,'N'),(437,502,'N'),(437,503,'N'),(437,504,'N'),(437,505,'N'),(437,506,'N'),(437,507,'N'),(437,508,'N'),(437,509,'N'),(437,510,'N'),(437,511,'N'),(437,514,'N'),(437,515,'N'),(437,516,'N'),(437,517,'N'),(437,518,'S'),(437,521,'N'),(437,522,'N'),(437,523,'N'),(437,524,'N'),(437,525,'N'),(437,526,'N'),(437,527,'N'),(437,528,'N'),(437,529,'N'),(437,530,'N'),(437,531,'N'),(437,532,'N'),(437,533,'N'),(437,534,'N'),(437,535,'S'),(437,538,'N'),(437,539,'N'),(437,540,'N'),(437,541,'N'),(437,542,'N'),(437,543,'N'),(437,544,'N'),(437,545,'N'),(437,546,'N'),(437,547,'N'),(437,548,'N'),(437,552,'N'),(437,553,'N'),(437,554,'N'),(437,555,'N'),(437,556,'S'),(437,559,'N'),(437,560,'N'),(437,561,'N'),(437,562,'N'),(437,563,'N'),(437,564,'N'),(437,565,'N'),(437,566,'N'),(437,567,'N'),(437,568,'N'),(437,569,'N'),(437,574,'N'),(437,575,'N'),(437,576,'N'),(437,577,'N'),(437,578,'S'),(437,581,'N'),(437,582,'N'),(437,583,'N'),(437,584,'N'),(437,585,'N'),(437,586,'N'),(437,587,'N'),(437,588,'N'),(437,589,'N'),(437,590,'N'),(437,591,'N'),(437,597,'N'),(437,598,'N'),(437,599,'N'),(437,600,'N'),(437,601,'S'),(437,604,'N'),(437,605,'N'),(437,606,'N'),(437,607,'N'),(437,608,'N'),(437,609,'N'),(437,610,'N'),(437,611,'N'),(437,612,'N'),(437,613,'N'),(437,614,'N'),(437,621,'N'),(437,622,'N'),(437,623,'N'),(437,624,'N'),(437,625,'S'),(437,628,'N'),(437,629,'N'),(437,630,'N'),(437,631,'N'),(437,632,'N'),(437,633,'N'),(437,634,'N'),(437,635,'N'),(437,636,'N'),(437,637,'N'),(437,638,'N'),(437,646,'N'),(437,647,'N'),(437,648,'N'),(437,649,'N'),(437,650,'S'),(437,653,'N'),(437,654,'N'),(437,655,'N'),(437,656,'N'),(437,657,'N'),(437,658,'N'),(437,659,'N'),(437,660,'N'),(437,661,'N'),(437,662,'N'),(437,663,'N'),(437,672,'N'),(437,673,'N'),(437,674,'N'),(437,675,'N'),(437,676,'S'),(437,679,'N'),(437,680,'N'),(437,681,'N'),(437,682,'N'),(437,683,'N'),(437,684,'N'),(437,685,'N'),(437,686,'N'),(437,687,'N'),(437,688,'N'),(437,689,'N'),(437,699,'N'),(437,700,'N'),(437,701,'N'),(437,702,'N'),(437,703,'S'),(437,706,'N'),(437,707,'N'),(437,708,'N'),(437,709,'N'),(437,710,'N'),(437,711,'N'),(437,712,'N'),(437,713,'N'),(437,714,'N'),(437,715,'N'),(437,716,'N'),(437,727,'N'),(437,728,'N'),(437,729,'N'),(437,730,'N'),(437,731,'S'),(437,734,'N'),(437,735,'N'),(437,736,'N'),(437,737,'N'),(437,738,'N'),(437,739,'N'),(437,740,'N'),(437,741,'N'),(437,742,'N'),(437,743,'N'),(437,744,'N'),(437,756,'N'),(437,757,'N'),(437,758,'N'),(437,759,'N'),(437,760,'S'),(437,763,'N'),(437,764,'N'),(437,765,'N'),(437,766,'N'),(437,767,'N'),(437,768,'N'),(437,769,'N'),(437,770,'N'),(437,771,'N'),(437,772,'N'),(437,773,'N'),(437,786,'N'),(437,787,'N'),(437,788,'N'),(437,789,'N'),(437,790,'S'),(437,793,'N'),(437,794,'N'),(437,795,'N'),(437,796,'N'),(437,797,'N'),(437,798,'N'),(437,799,'N'),(437,800,'N'),(437,801,'N'),(437,802,'N'),(437,803,'N'),(437,817,'N'),(437,818,'N'),(437,819,'N'),(437,820,'N'),(437,821,'S'),(437,824,'N'),(437,825,'N'),(437,826,'N'),(437,827,'N'),(437,828,'N'),(437,829,'N'),(437,830,'N'),(437,831,'N'),(437,832,'N'),(437,833,'N'),(437,834,'N'),(437,849,'N'),(437,850,'N'),(437,851,'N'),(437,852,'N'),(437,853,'S'),(437,856,'N'),(437,857,'N'),(437,858,'N'),(437,859,'N'),(437,860,'N'),(437,861,'N'),(437,862,'N'),(437,863,'N'),(437,864,'N'),(437,865,'N'),(437,866,'N'),(437,882,'N'),(437,883,'N'),(437,884,'N'),(437,885,'N'),(437,886,'S'),(437,889,'N'),(437,890,'N'),(437,891,'N'),(437,892,'N'),(437,893,'N'),(437,894,'N'),(437,895,'N'),(437,896,'N'),(437,897,'N'),(437,898,'N'),(437,899,'N'),(437,916,'N'),(437,917,'N'),(437,918,'N'),(437,919,'N'),(437,920,'S'),(437,923,'N'),(437,924,'N'),(437,925,'N'),(437,926,'N'),(437,927,'N'),(437,928,'N'),(437,929,'N'),(437,930,'N'),(437,931,'N'),(437,932,'N'),(437,933,'N'),(437,951,'N'),(437,952,'N'),(437,953,'N'),(437,954,'N'),(437,955,'S'),(437,958,'N'),(437,959,'N'),(437,960,'N'),(437,961,'N'),(437,962,'N'),(437,963,'N'),(437,964,'N'),(437,965,'N'),(437,966,'N'),(437,967,'N'),(437,968,'N'),(437,987,'N'),(437,988,'N'),(437,989,'N'),(437,990,'N'),(437,991,'S'),(437,994,'N'),(437,995,'N'),(437,996,'N'),(437,997,'N'),(437,998,'N'),(437,999,'N'),(437,1000,'N'),(437,1001,'N'),(437,1002,'N'),(437,1003,'N'),(437,1004,'N'),(437,1024,'N'),(437,1025,'N'),(437,1026,'N'),(437,1027,'N'),(437,1028,'S'),(437,1031,'N'),(437,1032,'N'),(437,1033,'N'),(437,1034,'N'),(437,1035,'N'),(437,1036,'N'),(437,1037,'N'),(437,1038,'N'),(437,1039,'N'),(437,1040,'N'),(437,1041,'N'),(437,1061,'N'),(437,1062,'N'),(437,1063,'N'),(437,1064,'N'),(437,1065,'S'),(437,1068,'N'),(437,1069,'N'),(437,1070,'N'),(437,1071,'N'),(437,1072,'N'),(437,1073,'N'),(437,1074,'N'),(437,1075,'N'),(437,1076,'N'),(437,1077,'N'),(437,1078,'N'),(437,1099,'N'),(437,1100,'N'),(437,1101,'N'),(437,1102,'N'),(437,1103,'S'),(437,1106,'N'),(437,1107,'N'),(437,1108,'N'),(437,1109,'N'),(437,1110,'N'),(437,1111,'N'),(437,1112,'N'),(437,1113,'N'),(437,1114,'N'),(437,1115,'N'),(437,1116,'N'),(437,1137,'N'),(437,1138,'N'),(437,1139,'N'),(437,1140,'N'),(437,1141,'S'),(437,1144,'N'),(437,1145,'N'),(437,1146,'N'),(437,1147,'N'),(437,1148,'N'),(437,1149,'N'),(437,1150,'N'),(437,1151,'N'),(437,1152,'N'),(437,1153,'N'),(437,1154,'N'),(437,1177,'N'),(437,1178,'N'),(437,1179,'S'),(437,1181,'N'),(437,1182,'N'),(437,1183,'N'),(437,1184,'N'),(437,1186,'N'),(437,1187,'N'),(437,1188,'N'),(437,1190,'N'),(437,1191,'N'),(437,1214,'N'),(437,1215,'N'),(437,1216,'S'),(437,1218,'N'),(437,1219,'N'),(437,1220,'N'),(437,1221,'N'),(437,1223,'N'),(437,1224,'N'),(437,1225,'N'),(437,1227,'N'),(437,1228,'N'),(437,1251,'N'),(437,1252,'N'),(437,1253,'S'),(437,1255,'N'),(437,1256,'N'),(437,1257,'N'),(437,1258,'N'),(437,1260,'N'),(437,1261,'N'),(437,1262,'N'),(437,1264,'N'),(437,1265,'N'),(437,1288,'N'),(437,1289,'N'),(437,1290,'S'),(437,1292,'N'),(437,1293,'N'),(437,1294,'N'),(437,1295,'N'),(437,1297,'N'),(437,1298,'N'),(437,1299,'N'),(437,1301,'N'),(437,1302,'N'),(437,1326,'N'),(437,1327,'N'),(437,1328,'S'),(437,1330,'N'),(437,1331,'N'),(437,1332,'N'),(437,1333,'N'),(437,1335,'N'),(437,1336,'N'),(437,1337,'N'),(437,1339,'N'),(437,1340,'N'),(437,1365,'N'),(437,1366,'N'),(437,1367,'S'),(437,1369,'N'),(437,1370,'N'),(437,1371,'N'),(437,1372,'N'),(437,1374,'N'),(437,1375,'N'),(437,1376,'N'),(437,1378,'N'),(437,1379,'N'),(437,1405,'N'),(437,1406,'N'),(437,1407,'S'),(437,1409,'N'),(437,1410,'N'),(437,1411,'N'),(437,1412,'N'),(437,1414,'N'),(437,1415,'N'),(437,1416,'N'),(437,1418,'N'),(437,1419,'N'),(437,1445,'N'),(437,1446,'N'),(437,1447,'S'),(437,1449,'N'),(437,1450,'N'),(437,1451,'N'),(437,1452,'N'),(437,1454,'N'),(437,1455,'N'),(437,1456,'N'),(437,1458,'N'),(437,1459,'N'),(437,1485,'N'),(437,1486,'N'),(437,1487,'S'),(437,1489,'N'),(437,1490,'N'),(437,1491,'N'),(437,1492,'N'),(437,1494,'N'),(437,1495,'N'),(437,1496,'N'),(437,1498,'N'),(437,1499,'N'),(437,1525,'N'),(437,1526,'N'),(437,1527,'S'),(437,1529,'N'),(437,1531,'N'),(437,1534,'N'),(437,1535,'N'),(437,1536,'N'),(437,1538,'N'),(437,1539,'N'),(437,1566,'N'),(437,1567,'N'),(437,1568,'S'),(437,1570,'N'),(437,1571,'N'),(437,1574,'N'),(437,1575,'N'),(437,1576,'N'),(437,1578,'N'),(437,1579,'N'),(437,1606,'N'),(437,1607,'N'),(437,1608,'S'),(437,1610,'N'),(437,1611,'N'),(437,1613,'N'),(437,1614,'N'),(437,1615,'N'),(437,1617,'N'),(437,1618,'N'),(445,473,'S'),(445,492,'S'),(445,512,'S'),(445,549,'S'),(445,570,'S'),(445,592,'S'),(445,615,'S'),(445,639,'S'),(445,664,'S'),(445,690,'S'),(445,717,'S'),(445,745,'S'),(445,774,'S'),(445,804,'S'),(445,835,'S'),(445,867,'S'),(445,900,'S'),(445,934,'S'),(445,969,'S'),(445,1005,'S'),(445,1042,'S'),(445,1079,'S'),(445,1117,'S'),(445,1155,'S'),(445,1192,'S'),(445,1229,'S'),(445,1266,'S'),(445,1303,'S'),(445,1341,'S'),(445,1380,'S'),(445,1420,'S'),(445,1460,'S'),(445,1500,'S'),(445,1540,'S'),(445,1580,'S'),(445,1619,'S'),(446,473,'S'),(446,492,'S'),(446,512,'S'),(446,549,'S'),(446,570,'S'),(446,592,'S'),(446,615,'S'),(446,639,'S'),(446,664,'S'),(446,690,'S'),(446,717,'S'),(446,745,'S'),(446,774,'S'),(446,804,'S'),(446,835,'S'),(446,867,'S'),(446,900,'S'),(446,934,'S'),(446,969,'S'),(446,1005,'S'),(446,1042,'S'),(446,1079,'S'),(446,1117,'S'),(446,1155,'S'),(446,1192,'S'),(446,1229,'S'),(446,1266,'S'),(446,1303,'S'),(446,1341,'S'),(446,1380,'S'),(446,1420,'S'),(446,1460,'S'),(446,1500,'S'),(446,1540,'S'),(446,1580,'S'),(446,1619,'S'),(447,5,'S'),(447,20,'S'),(447,35,'S'),(447,50,'S'),(447,65,'S'),(447,80,'S'),(447,95,'S'),(447,110,'S'),(447,125,'S'),(447,140,'S'),(447,155,'S'),(447,170,'S'),(447,185,'S'),(447,200,'S'),(447,215,'S'),(447,230,'S'),(447,245,'S'),(447,260,'S'),(447,275,'S'),(447,291,'S'),(447,307,'S'),(447,323,'S'),(447,339,'S'),(447,356,'S'),(447,373,'S'),(447,390,'S'),(447,407,'S'),(447,424,'S'),(447,441,'S'),(447,459,'S'),(447,478,'S'),(447,498,'S'),(447,518,'S'),(447,535,'S'),(447,556,'S'),(447,578,'S'),(447,601,'S'),(447,625,'S'),(447,650,'S'),(447,676,'S'),(447,703,'S'),(447,731,'S'),(447,760,'S'),(447,790,'S'),(447,821,'S'),(447,853,'S'),(447,886,'S'),(447,920,'S'),(447,955,'S'),(447,991,'S'),(447,1028,'S'),(447,1065,'S'),(447,1103,'S'),(447,1141,'S'),(447,1179,'S'),(447,1216,'S'),(447,1253,'S'),(447,1290,'S'),(447,1328,'S'),(447,1367,'S'),(447,1407,'S'),(447,1447,'S'),(447,1487,'S'),(447,1527,'S'),(447,1568,'S'),(447,1608,'S'),(470,453,'S'),(470,471,'S'),(470,490,'S'),(470,510,'S'),(470,530,'S'),(470,547,'S'),(470,568,'S'),(470,590,'S'),(470,613,'S'),(470,637,'S'),(470,662,'S'),(470,688,'S'),(470,715,'S'),(470,743,'S'),(470,772,'S'),(470,802,'S'),(470,833,'S'),(470,865,'S'),(470,898,'S'),(470,932,'S'),(470,967,'S'),(470,1003,'S'),(470,1040,'S'),(470,1077,'S'),(470,1115,'S'),(470,1153,'S'),(470,1190,'S'),(470,1227,'S'),(470,1264,'S'),(470,1301,'S'),(470,1339,'S'),(470,1378,'S'),(470,1418,'S'),(470,1458,'S'),(470,1498,'S'),(470,1538,'S'),(470,1578,'S'),(470,1617,'S'),(471,8,'S'),(471,23,'S'),(471,38,'S'),(471,53,'S'),(471,68,'S'),(471,83,'S'),(471,98,'S'),(471,113,'S'),(471,128,'S'),(471,143,'S'),(471,158,'S'),(471,173,'S'),(471,188,'S'),(471,203,'S'),(471,218,'S'),(471,233,'S'),(471,248,'S'),(471,263,'S'),(471,278,'S'),(471,294,'S'),(471,310,'S'),(471,326,'S'),(471,342,'S'),(471,359,'S'),(471,376,'S'),(471,393,'S'),(471,410,'S'),(471,427,'S'),(471,444,'S'),(471,462,'S'),(471,481,'S'),(471,501,'S'),(471,521,'S'),(471,538,'S'),(471,559,'S'),(471,581,'S'),(471,604,'S'),(471,628,'S'),(471,653,'S'),(471,679,'S'),(471,706,'S'),(471,734,'S'),(471,763,'S'),(471,793,'S'),(471,824,'S'),(471,856,'S'),(471,889,'S'),(471,923,'S'),(471,958,'S'),(471,994,'S'),(471,1031,'S'),(471,1068,'S'),(471,1106,'S'),(471,1144,'S'),(471,1181,'S'),(471,1218,'S'),(471,1255,'S'),(471,1292,'S'),(471,1330,'S'),(471,1369,'S'),(471,1409,'S'),(471,1449,'S'),(471,1489,'S'),(471,1529,'S'),(471,1570,'S'),(471,1610,'S'),(472,5,'S'),(472,20,'S'),(472,35,'S'),(472,50,'S'),(472,65,'S'),(472,80,'S'),(472,95,'S'),(472,110,'S'),(472,125,'S'),(472,140,'S'),(472,155,'S'),(472,170,'S'),(472,185,'S'),(472,200,'S'),(472,215,'S'),(472,230,'S'),(472,245,'S'),(472,260,'S'),(472,275,'S'),(472,291,'S'),(472,307,'S'),(472,323,'S'),(472,339,'S'),(472,356,'S'),(472,373,'S'),(472,390,'S'),(472,407,'S'),(472,424,'S'),(472,441,'S'),(472,459,'S'),(472,478,'S'),(472,498,'S'),(472,518,'S'),(472,535,'S'),(472,556,'S'),(472,578,'S'),(472,601,'S'),(472,625,'S'),(472,650,'S'),(472,676,'S'),(472,703,'S'),(472,731,'S'),(472,760,'S'),(472,790,'S'),(472,821,'S'),(472,853,'S'),(472,886,'S'),(472,920,'S'),(472,955,'S'),(472,991,'S'),(472,1028,'S'),(472,1065,'S'),(472,1103,'S'),(472,1141,'S'),(472,1179,'S'),(472,1216,'S'),(472,1253,'S'),(472,1290,'S'),(472,1328,'S'),(472,1367,'S'),(472,1407,'S'),(472,1447,'S'),(472,1487,'S'),(472,1527,'S'),(472,1568,'S'),(472,1608,'S'),(476,1255,'S'),(476,1292,'S'),(476,1330,'S'),(476,1369,'S'),(476,1409,'S'),(476,1449,'S'),(476,1489,'S'),(476,1529,'S'),(476,1570,'S'),(476,1610,'S'),(477,1252,'S'),(477,1289,'S'),(477,1327,'S'),(477,1366,'S'),(477,1406,'S'),(477,1446,'S'),(477,1486,'S'),(477,1526,'S'),(477,1567,'S'),(477,1607,'S'),(479,1251,'N'),(479,1252,'N'),(479,1254,'N'),(479,1255,'N'),(479,1257,'N'),(479,1258,'N'),(479,1259,'N'),(479,1260,'N'),(479,1261,'N'),(479,1262,'N'),(479,1264,'N'),(479,1270,'N'),(479,1271,'N'),(479,1272,'S'),(479,1273,'N'),(479,1276,'N'),(479,1277,'N'),(479,1278,'N'),(479,1279,'N'),(479,1282,'N'),(479,1283,'N'),(479,1284,'N'),(479,1285,'N'),(479,1288,'N'),(479,1289,'N'),(479,1291,'N'),(479,1292,'N'),(479,1294,'N'),(479,1295,'N'),(479,1296,'N'),(479,1297,'N'),(479,1298,'N'),(479,1299,'N'),(479,1301,'N'),(479,1307,'N'),(479,1308,'N'),(479,1309,'S'),(479,1310,'N'),(479,1313,'N'),(479,1314,'N'),(479,1315,'N'),(479,1316,'N'),(479,1319,'N'),(479,1320,'N'),(479,1321,'N'),(479,1322,'N'),(479,1326,'N'),(479,1327,'N'),(479,1329,'N'),(479,1330,'N'),(479,1332,'N'),(479,1333,'N'),(479,1334,'N'),(479,1335,'N'),(479,1336,'N'),(479,1337,'N'),(479,1339,'N'),(479,1345,'N'),(479,1346,'N'),(479,1347,'S'),(479,1348,'N'),(479,1351,'N'),(479,1352,'N'),(479,1353,'N'),(479,1354,'N'),(479,1357,'N'),(479,1358,'N'),(479,1359,'N'),(479,1360,'N'),(479,1365,'N'),(479,1366,'N'),(479,1368,'N'),(479,1369,'N'),(479,1371,'N'),(479,1372,'N'),(479,1373,'N'),(479,1374,'N'),(479,1375,'N'),(479,1376,'N'),(479,1378,'N'),(479,1384,'N'),(479,1385,'N'),(479,1386,'S'),(479,1387,'N'),(479,1390,'N'),(479,1391,'N'),(479,1392,'N'),(479,1393,'N'),(479,1396,'N'),(479,1397,'N'),(479,1398,'N'),(479,1399,'N'),(479,1405,'N'),(479,1406,'N'),(479,1408,'N'),(479,1409,'N'),(479,1411,'N'),(479,1412,'N'),(479,1413,'N'),(479,1414,'N'),(479,1415,'N'),(479,1416,'N'),(479,1418,'N'),(479,1424,'N'),(479,1425,'N'),(479,1426,'S'),(479,1427,'N'),(479,1430,'N'),(479,1431,'N'),(479,1432,'N'),(479,1433,'N'),(479,1436,'N'),(479,1437,'N'),(479,1438,'N'),(479,1439,'N'),(479,1445,'N'),(479,1446,'N'),(479,1448,'N'),(479,1449,'N'),(479,1451,'N'),(479,1452,'N'),(479,1453,'N'),(479,1454,'N'),(479,1455,'N'),(479,1456,'N'),(479,1458,'N'),(479,1464,'N'),(479,1465,'N'),(479,1466,'S'),(479,1467,'N'),(479,1470,'N'),(479,1471,'N'),(479,1472,'N'),(479,1473,'N'),(479,1476,'N'),(479,1477,'N'),(479,1478,'N'),(479,1479,'N'),(479,1485,'N'),(479,1486,'N'),(479,1488,'N'),(479,1489,'N'),(479,1491,'N'),(479,1492,'N'),(479,1493,'N'),(479,1494,'N'),(479,1495,'N'),(479,1496,'N'),(479,1498,'N'),(479,1504,'N'),(479,1505,'N'),(479,1506,'S'),(479,1507,'N'),(479,1510,'N'),(479,1511,'N'),(479,1512,'N'),(479,1513,'N'),(479,1516,'N'),(479,1517,'N'),(479,1518,'N'),(479,1519,'N'),(479,1525,'N'),(479,1526,'N'),(479,1528,'N'),(479,1529,'N'),(479,1531,'N'),(479,1533,'N'),(479,1534,'N'),(479,1535,'N'),(479,1536,'N'),(479,1538,'N'),(479,1544,'N'),(479,1545,'N'),(479,1546,'S'),(479,1547,'N'),(479,1550,'N'),(479,1551,'N'),(479,1552,'N'),(479,1553,'N'),(479,1556,'N'),(479,1557,'N'),(479,1558,'N'),(479,1559,'N'),(479,1566,'N'),(479,1567,'N'),(479,1569,'N'),(479,1570,'N'),(479,1571,'N'),(479,1573,'N'),(479,1574,'N'),(479,1575,'N'),(479,1576,'N'),(479,1578,'N'),(479,1584,'N'),(479,1585,'N'),(479,1586,'S'),(479,1587,'N'),(479,1590,'N'),(479,1591,'N'),(479,1592,'N'),(479,1593,'N'),(479,1596,'N'),(479,1597,'N'),(479,1598,'N'),(479,1599,'N'),(479,1606,'N'),(479,1607,'N'),(479,1609,'N'),(479,1610,'N'),(479,1611,'N'),(479,1612,'N'),(479,1613,'N'),(479,1614,'N'),(479,1615,'N'),(479,1617,'N'),(479,1623,'N'),(479,1624,'N'),(479,1625,'S'),(479,1626,'N'),(479,1629,'N'),(479,1630,'N'),(479,1631,'N'),(479,1632,'N'),(479,1635,'N'),(479,1636,'N'),(479,1637,'N'),(479,1638,'N'),(483,1255,'S'),(483,1292,'S'),(483,1330,'S'),(483,1369,'S'),(483,1409,'S'),(483,1449,'S'),(483,1489,'S'),(483,1529,'S'),(483,1570,'S'),(483,1610,'S'),(485,1252,'S'),(485,1289,'S'),(485,1327,'S'),(485,1366,'S'),(485,1406,'S'),(485,1446,'S'),(485,1486,'S'),(485,1526,'S'),(485,1567,'S'),(485,1607,'S'),(486,1249,'N'),(486,1251,'N'),(486,1252,'N'),(486,1253,'N'),(486,1254,'N'),(486,1255,'N'),(486,1257,'N'),(486,1259,'N'),(486,1260,'N'),(486,1261,'N'),(486,1262,'N'),(486,1263,'N'),(486,1264,'N'),(486,1270,'N'),(486,1271,'N'),(486,1272,'S'),(486,1273,'N'),(486,1276,'N'),(486,1277,'N'),(486,1278,'N'),(486,1279,'N'),(486,1282,'N'),(486,1283,'N'),(486,1284,'N'),(486,1285,'N'),(486,1286,'N'),(486,1288,'N'),(486,1289,'N'),(486,1290,'N'),(486,1291,'N'),(486,1292,'N'),(486,1294,'N'),(486,1296,'N'),(486,1297,'N'),(486,1298,'N'),(486,1299,'N'),(486,1300,'N'),(486,1301,'N'),(486,1307,'N'),(486,1308,'N'),(486,1309,'S'),(486,1310,'N'),(486,1313,'N'),(486,1314,'N'),(486,1315,'N'),(486,1316,'N'),(486,1319,'N'),(486,1320,'N'),(486,1321,'N'),(486,1322,'N'),(486,1323,'N'),(486,1324,'N'),(486,1326,'N'),(486,1327,'N'),(486,1328,'N'),(486,1329,'N'),(486,1330,'N'),(486,1332,'N'),(486,1334,'N'),(486,1335,'N'),(486,1336,'N'),(486,1337,'N'),(486,1338,'N'),(486,1339,'N'),(486,1345,'N'),(486,1346,'N'),(486,1347,'S'),(486,1348,'N'),(486,1351,'N'),(486,1352,'N'),(486,1353,'N'),(486,1354,'N'),(486,1357,'N'),(486,1358,'N'),(486,1359,'N'),(486,1360,'N'),(486,1361,'N'),(486,1363,'N'),(486,1365,'N'),(486,1366,'N'),(486,1367,'N'),(486,1368,'N'),(486,1369,'N'),(486,1371,'N'),(486,1373,'N'),(486,1374,'N'),(486,1375,'N'),(486,1376,'N'),(486,1377,'N'),(486,1378,'N'),(486,1384,'N'),(486,1385,'N'),(486,1386,'S'),(486,1387,'N'),(486,1390,'N'),(486,1391,'N'),(486,1392,'N'),(486,1393,'N'),(486,1396,'N'),(486,1397,'N'),(486,1398,'N'),(486,1399,'N'),(486,1400,'N'),(486,1403,'N'),(486,1405,'N'),(486,1406,'N'),(486,1407,'N'),(486,1408,'N'),(486,1409,'N'),(486,1411,'N'),(486,1413,'N'),(486,1414,'N'),(486,1415,'N'),(486,1416,'N'),(486,1417,'N'),(486,1418,'N'),(486,1424,'N'),(486,1425,'N'),(486,1426,'S'),(486,1427,'N'),(486,1430,'N'),(486,1431,'N'),(486,1432,'N'),(486,1433,'N'),(486,1436,'N'),(486,1437,'N'),(486,1438,'N'),(486,1439,'N'),(486,1440,'N'),(486,1443,'N'),(486,1445,'N'),(486,1446,'N'),(486,1447,'N'),(486,1448,'N'),(486,1449,'N'),(486,1451,'N'),(486,1453,'N'),(486,1454,'N'),(486,1455,'N'),(486,1456,'N'),(486,1457,'N'),(486,1458,'N'),(486,1464,'N'),(486,1465,'N'),(486,1466,'S'),(486,1467,'N'),(486,1470,'N'),(486,1471,'N'),(486,1472,'N'),(486,1473,'N'),(486,1476,'N'),(486,1477,'N'),(486,1478,'N'),(486,1479,'N'),(486,1480,'N'),(486,1483,'N'),(486,1485,'N'),(486,1486,'N'),(486,1487,'N'),(486,1488,'N'),(486,1489,'N'),(486,1491,'N'),(486,1493,'N'),(486,1494,'N'),(486,1495,'N'),(486,1496,'N'),(486,1497,'N'),(486,1498,'N'),(486,1504,'N'),(486,1505,'N'),(486,1506,'S'),(486,1507,'N'),(486,1510,'N'),(486,1511,'N'),(486,1512,'N'),(486,1513,'N'),(486,1516,'N'),(486,1517,'N'),(486,1518,'N'),(486,1519,'N'),(486,1520,'N'),(486,1523,'N'),(486,1525,'N'),(486,1526,'N'),(486,1527,'N'),(486,1528,'N'),(486,1529,'N'),(486,1531,'N'),(486,1533,'N'),(486,1534,'N'),(486,1535,'N'),(486,1536,'N'),(486,1537,'N'),(486,1538,'N'),(486,1544,'N'),(486,1545,'N'),(486,1546,'S'),(486,1547,'N'),(486,1550,'N'),(486,1551,'N'),(486,1552,'N'),(486,1553,'N'),(486,1556,'N'),(486,1557,'N'),(486,1558,'N'),(486,1559,'N'),(486,1560,'N'),(486,1564,'N'),(486,1566,'N'),(486,1567,'N'),(486,1568,'N'),(486,1569,'N'),(486,1570,'N'),(486,1571,'N'),(486,1573,'N'),(486,1574,'N'),(486,1575,'N'),(486,1576,'N'),(486,1577,'N'),(486,1578,'N'),(486,1584,'N'),(486,1585,'N'),(486,1586,'S'),(486,1587,'N'),(486,1590,'N'),(486,1591,'N'),(486,1592,'N'),(486,1593,'N'),(486,1596,'N'),(486,1597,'N'),(486,1598,'N'),(486,1599,'N'),(486,1600,'N'),(486,1604,'N'),(486,1606,'N'),(486,1607,'N'),(486,1608,'N'),(486,1609,'N'),(486,1610,'N'),(486,1611,'N'),(486,1612,'N'),(486,1613,'N'),(486,1614,'N'),(486,1615,'N'),(486,1616,'N'),(486,1617,'N'),(486,1623,'N'),(486,1624,'N'),(486,1625,'S'),(486,1626,'N'),(486,1629,'N'),(486,1630,'N'),(486,1631,'N'),(486,1632,'N'),(486,1635,'N'),(486,1636,'N'),(486,1637,'N'),(486,1638,'N'),(486,1639,'N'),(490,1255,'S'),(490,1292,'S'),(490,1330,'S'),(490,1369,'S'),(490,1409,'S'),(490,1449,'S'),(490,1489,'S'),(490,1529,'S'),(490,1570,'S'),(490,1610,'S'),(491,1252,'S'),(491,1289,'S'),(491,1327,'S'),(491,1366,'S'),(491,1406,'S'),(491,1446,'S'),(491,1486,'S'),(491,1526,'S'),(491,1567,'S'),(491,1607,'S'),(492,1249,'N'),(492,1251,'N'),(492,1252,'N'),(492,1253,'N'),(492,1254,'N'),(492,1255,'N'),(492,1257,'N'),(492,1259,'N'),(492,1260,'N'),(492,1261,'N'),(492,1262,'N'),(492,1263,'N'),(492,1264,'N'),(492,1270,'N'),(492,1271,'N'),(492,1272,'S'),(492,1273,'N'),(492,1276,'N'),(492,1277,'N'),(492,1278,'N'),(492,1279,'N'),(492,1282,'N'),(492,1283,'N'),(492,1284,'N'),(492,1285,'N'),(492,1286,'N'),(492,1288,'N'),(492,1289,'N'),(492,1290,'N'),(492,1291,'N'),(492,1292,'N'),(492,1294,'N'),(492,1296,'N'),(492,1297,'N'),(492,1298,'N'),(492,1299,'N'),(492,1300,'N'),(492,1301,'N'),(492,1307,'N'),(492,1308,'N'),(492,1309,'S'),(492,1310,'N'),(492,1313,'N'),(492,1314,'N'),(492,1315,'N'),(492,1316,'N'),(492,1319,'N'),(492,1320,'N'),(492,1321,'N'),(492,1322,'N'),(492,1324,'N'),(492,1326,'N'),(492,1327,'N'),(492,1328,'N'),(492,1329,'N'),(492,1330,'N'),(492,1332,'N'),(492,1334,'N'),(492,1335,'N'),(492,1336,'N'),(492,1337,'N'),(492,1338,'N'),(492,1339,'N'),(492,1345,'N'),(492,1346,'N'),(492,1347,'S'),(492,1348,'N'),(492,1351,'N'),(492,1352,'N'),(492,1353,'N'),(492,1354,'N'),(492,1357,'N'),(492,1358,'N'),(492,1359,'N'),(492,1360,'N'),(492,1363,'N'),(492,1365,'N'),(492,1366,'N'),(492,1367,'N'),(492,1368,'N'),(492,1369,'N'),(492,1371,'N'),(492,1373,'N'),(492,1374,'N'),(492,1375,'N'),(492,1376,'N'),(492,1377,'N'),(492,1378,'N'),(492,1384,'N'),(492,1385,'N'),(492,1386,'S'),(492,1387,'N'),(492,1390,'N'),(492,1391,'N'),(492,1392,'N'),(492,1393,'N'),(492,1396,'N'),(492,1397,'N'),(492,1398,'N'),(492,1399,'N'),(492,1403,'N'),(492,1405,'N'),(492,1406,'N'),(492,1407,'N'),(492,1408,'N'),(492,1409,'N'),(492,1411,'N'),(492,1413,'N'),(492,1414,'N'),(492,1415,'N'),(492,1416,'N'),(492,1417,'N'),(492,1418,'N'),(492,1424,'N'),(492,1425,'N'),(492,1426,'S'),(492,1427,'N'),(492,1430,'N'),(492,1431,'N'),(492,1432,'N'),(492,1433,'N'),(492,1436,'N'),(492,1437,'N'),(492,1438,'N'),(492,1439,'N'),(492,1443,'N'),(492,1445,'N'),(492,1446,'N'),(492,1447,'N'),(492,1448,'N'),(492,1449,'N'),(492,1451,'N'),(492,1453,'N'),(492,1454,'N'),(492,1455,'N'),(492,1456,'N'),(492,1457,'N'),(492,1458,'N'),(492,1464,'N'),(492,1465,'N'),(492,1466,'S'),(492,1467,'N'),(492,1470,'N'),(492,1471,'N'),(492,1472,'N'),(492,1473,'N'),(492,1476,'N'),(492,1477,'N'),(492,1478,'N'),(492,1479,'N'),(492,1483,'N'),(492,1485,'N'),(492,1486,'N'),(492,1487,'N'),(492,1488,'N'),(492,1489,'N'),(492,1491,'N'),(492,1493,'N'),(492,1494,'N'),(492,1495,'N'),(492,1496,'N'),(492,1497,'N'),(492,1498,'N'),(492,1504,'N'),(492,1505,'N'),(492,1506,'S'),(492,1507,'N'),(492,1510,'N'),(492,1511,'N'),(492,1512,'N'),(492,1513,'N'),(492,1516,'N'),(492,1517,'N'),(492,1518,'N'),(492,1519,'N'),(492,1523,'N'),(492,1525,'N'),(492,1526,'N'),(492,1527,'N'),(492,1528,'N'),(492,1529,'N'),(492,1531,'N'),(492,1533,'N'),(492,1534,'N'),(492,1535,'N'),(492,1536,'N'),(492,1537,'N'),(492,1538,'N'),(492,1544,'N'),(492,1545,'N'),(492,1546,'S'),(492,1547,'N'),(492,1550,'N'),(492,1551,'N'),(492,1552,'N'),(492,1553,'N'),(492,1556,'N'),(492,1557,'N'),(492,1558,'N'),(492,1559,'N'),(492,1564,'N'),(492,1566,'N'),(492,1567,'N'),(492,1568,'N'),(492,1569,'N'),(492,1570,'N'),(492,1571,'N'),(492,1573,'N'),(492,1574,'N'),(492,1575,'N'),(492,1576,'N'),(492,1577,'N'),(492,1578,'N'),(492,1584,'N'),(492,1585,'N'),(492,1586,'S'),(492,1587,'N'),(492,1590,'N'),(492,1591,'N'),(492,1592,'N'),(492,1593,'N'),(492,1596,'N'),(492,1597,'N'),(492,1598,'N'),(492,1599,'N'),(492,1604,'N'),(492,1606,'N'),(492,1607,'N'),(492,1608,'N'),(492,1609,'N'),(492,1610,'N'),(492,1611,'N'),(492,1612,'N'),(492,1613,'N'),(492,1614,'N'),(492,1615,'N'),(492,1616,'N'),(492,1617,'N'),(492,1623,'N'),(492,1624,'N'),(492,1625,'S'),(492,1626,'N'),(492,1629,'N'),(492,1630,'N'),(492,1631,'N'),(492,1632,'N'),(492,1635,'N'),(492,1636,'N'),(492,1637,'N'),(492,1638,'N'),(497,1255,'S'),(497,1292,'S'),(497,1330,'S'),(497,1369,'S'),(497,1409,'S'),(497,1449,'S'),(497,1489,'S'),(497,1529,'S'),(497,1570,'S'),(497,1610,'S'),(498,1252,'S'),(498,1289,'S'),(498,1327,'S'),(498,1366,'S'),(498,1406,'S'),(498,1446,'S'),(498,1486,'S'),(498,1526,'S'),(498,1567,'S'),(498,1607,'S'),(499,1249,'N'),(499,1251,'N'),(499,1252,'N'),(499,1253,'N'),(499,1254,'N'),(499,1255,'N'),(499,1257,'N'),(499,1259,'N'),(499,1260,'N'),(499,1261,'N'),(499,1262,'N'),(499,1263,'N'),(499,1264,'N'),(499,1270,'N'),(499,1271,'N'),(499,1272,'S'),(499,1273,'N'),(499,1276,'N'),(499,1277,'N'),(499,1278,'N'),(499,1279,'N'),(499,1282,'N'),(499,1283,'N'),(499,1284,'N'),(499,1285,'N'),(499,1286,'N'),(499,1288,'N'),(499,1289,'N'),(499,1290,'N'),(499,1291,'N'),(499,1292,'N'),(499,1294,'N'),(499,1296,'N'),(499,1297,'N'),(499,1298,'N'),(499,1299,'N'),(499,1300,'N'),(499,1301,'N'),(499,1307,'N'),(499,1308,'N'),(499,1309,'S'),(499,1310,'N'),(499,1313,'N'),(499,1314,'N'),(499,1315,'N'),(499,1316,'N'),(499,1319,'N'),(499,1320,'N'),(499,1321,'N'),(499,1322,'N'),(499,1324,'N'),(499,1326,'N'),(499,1327,'N'),(499,1328,'N'),(499,1329,'N'),(499,1330,'N'),(499,1332,'N'),(499,1334,'N'),(499,1335,'N'),(499,1336,'N'),(499,1337,'N'),(499,1338,'N'),(499,1339,'N'),(499,1345,'N'),(499,1346,'N'),(499,1347,'S'),(499,1348,'N'),(499,1351,'N'),(499,1352,'N'),(499,1353,'N'),(499,1354,'N'),(499,1357,'N'),(499,1358,'N'),(499,1359,'N'),(499,1360,'N'),(499,1363,'N'),(499,1365,'N'),(499,1366,'N'),(499,1367,'N'),(499,1368,'N'),(499,1369,'N'),(499,1371,'N'),(499,1373,'N'),(499,1374,'N'),(499,1375,'N'),(499,1376,'N'),(499,1377,'N'),(499,1378,'N'),(499,1384,'N'),(499,1385,'N'),(499,1386,'S'),(499,1387,'N'),(499,1390,'N'),(499,1391,'N'),(499,1392,'N'),(499,1393,'N'),(499,1396,'N'),(499,1397,'N'),(499,1398,'N'),(499,1399,'N'),(499,1403,'N'),(499,1405,'N'),(499,1406,'N'),(499,1407,'N'),(499,1408,'N'),(499,1409,'N'),(499,1411,'N'),(499,1413,'N'),(499,1414,'N'),(499,1415,'N'),(499,1416,'N'),(499,1417,'N'),(499,1418,'N'),(499,1424,'N'),(499,1425,'N'),(499,1426,'S'),(499,1427,'N'),(499,1430,'N'),(499,1431,'N'),(499,1432,'N'),(499,1433,'N'),(499,1436,'N'),(499,1437,'N'),(499,1438,'N'),(499,1439,'N'),(499,1443,'N'),(499,1445,'N'),(499,1446,'N'),(499,1447,'N'),(499,1448,'N'),(499,1449,'N'),(499,1451,'N'),(499,1453,'N'),(499,1454,'N'),(499,1455,'N'),(499,1456,'N'),(499,1457,'N'),(499,1458,'N'),(499,1464,'N'),(499,1465,'N'),(499,1466,'S'),(499,1467,'N'),(499,1470,'N'),(499,1471,'N'),(499,1472,'N'),(499,1473,'N'),(499,1476,'N'),(499,1477,'N'),(499,1478,'N'),(499,1479,'N'),(499,1483,'N'),(499,1485,'N'),(499,1486,'N'),(499,1487,'N'),(499,1488,'N'),(499,1489,'N'),(499,1491,'N'),(499,1493,'N'),(499,1494,'N'),(499,1495,'N'),(499,1496,'N'),(499,1497,'N'),(499,1498,'N'),(499,1504,'N'),(499,1505,'N'),(499,1506,'S'),(499,1507,'N'),(499,1510,'N'),(499,1511,'N'),(499,1512,'N'),(499,1513,'N'),(499,1516,'N'),(499,1517,'N'),(499,1518,'N'),(499,1519,'N'),(499,1523,'N'),(499,1525,'N'),(499,1526,'N'),(499,1527,'N'),(499,1528,'N'),(499,1529,'N'),(499,1531,'N'),(499,1533,'N'),(499,1534,'N'),(499,1535,'N'),(499,1536,'N'),(499,1537,'N'),(499,1538,'N'),(499,1544,'N'),(499,1545,'N'),(499,1546,'S'),(499,1547,'N'),(499,1550,'N'),(499,1551,'N'),(499,1552,'N'),(499,1553,'N'),(499,1556,'N'),(499,1557,'N'),(499,1558,'N'),(499,1559,'N'),(499,1564,'N'),(499,1566,'N'),(499,1567,'N'),(499,1568,'N'),(499,1569,'N'),(499,1570,'N'),(499,1571,'N'),(499,1573,'N'),(499,1574,'N'),(499,1575,'N'),(499,1576,'N'),(499,1577,'N'),(499,1578,'N'),(499,1584,'N'),(499,1585,'N'),(499,1586,'S'),(499,1587,'N'),(499,1590,'N'),(499,1591,'N'),(499,1592,'N'),(499,1593,'N'),(499,1596,'N'),(499,1597,'N'),(499,1598,'N'),(499,1599,'N'),(499,1604,'N'),(499,1606,'N'),(499,1607,'N'),(499,1608,'N'),(499,1609,'N'),(499,1610,'N'),(499,1611,'N'),(499,1612,'N'),(499,1613,'N'),(499,1614,'N'),(499,1615,'N'),(499,1616,'N'),(499,1617,'N'),(499,1623,'N'),(499,1624,'N'),(499,1625,'S'),(499,1626,'N'),(499,1629,'N'),(499,1630,'N'),(499,1631,'N'),(499,1632,'N'),(499,1635,'N'),(499,1636,'N'),(499,1637,'N'),(499,1638,'N'),(503,1255,'S'),(503,1292,'S'),(503,1330,'S'),(503,1369,'S'),(503,1409,'S'),(503,1449,'S'),(503,1489,'S'),(503,1529,'S'),(503,1570,'S'),(503,1610,'S'),(504,1252,'S'),(504,1289,'S'),(504,1327,'S'),(504,1366,'S'),(504,1406,'S'),(504,1446,'S'),(504,1486,'S'),(504,1526,'S'),(504,1567,'S'),(504,1607,'S'),(505,1249,'N'),(505,1251,'N'),(505,1252,'N'),(505,1253,'N'),(505,1254,'N'),(505,1255,'N'),(505,1257,'N'),(505,1259,'N'),(505,1260,'N'),(505,1261,'N'),(505,1262,'N'),(505,1263,'N'),(505,1264,'N'),(505,1270,'N'),(505,1271,'N'),(505,1272,'S'),(505,1273,'N'),(505,1276,'N'),(505,1277,'N'),(505,1278,'N'),(505,1279,'N'),(505,1282,'N'),(505,1283,'N'),(505,1284,'N'),(505,1285,'N'),(505,1286,'N'),(505,1288,'N'),(505,1289,'N'),(505,1290,'N'),(505,1291,'N'),(505,1292,'N'),(505,1294,'N'),(505,1296,'N'),(505,1297,'N'),(505,1298,'N'),(505,1299,'N'),(505,1300,'N'),(505,1301,'N'),(505,1307,'N'),(505,1308,'N'),(505,1309,'S'),(505,1310,'N'),(505,1313,'N'),(505,1314,'N'),(505,1315,'N'),(505,1316,'N'),(505,1319,'N'),(505,1320,'N'),(505,1321,'N'),(505,1322,'N'),(505,1324,'N'),(505,1326,'N'),(505,1327,'N'),(505,1328,'N'),(505,1329,'N'),(505,1330,'N'),(505,1332,'N'),(505,1334,'N'),(505,1335,'N'),(505,1336,'N'),(505,1337,'N'),(505,1338,'N'),(505,1339,'N'),(505,1345,'N'),(505,1346,'N'),(505,1347,'S'),(505,1348,'N'),(505,1351,'N'),(505,1352,'N'),(505,1353,'N'),(505,1354,'N'),(505,1357,'N'),(505,1358,'N'),(505,1359,'N'),(505,1360,'N'),(505,1363,'N'),(505,1365,'N'),(505,1366,'N'),(505,1367,'N'),(505,1368,'N'),(505,1369,'N'),(505,1371,'N'),(505,1373,'N'),(505,1374,'N'),(505,1375,'N'),(505,1376,'N'),(505,1377,'N'),(505,1378,'N'),(505,1384,'N'),(505,1385,'N'),(505,1386,'S'),(505,1387,'N'),(505,1390,'N'),(505,1391,'N'),(505,1392,'N'),(505,1393,'N'),(505,1396,'N'),(505,1397,'N'),(505,1398,'N'),(505,1399,'N'),(505,1403,'N'),(505,1405,'N'),(505,1406,'N'),(505,1407,'N'),(505,1408,'N'),(505,1409,'N'),(505,1411,'N'),(505,1413,'N'),(505,1414,'N'),(505,1415,'N'),(505,1416,'N'),(505,1417,'N'),(505,1418,'N'),(505,1424,'N'),(505,1425,'N'),(505,1426,'S'),(505,1427,'N'),(505,1430,'N'),(505,1431,'N'),(505,1432,'N'),(505,1433,'N'),(505,1436,'N'),(505,1437,'N'),(505,1438,'N'),(505,1439,'N'),(505,1443,'N'),(505,1445,'N'),(505,1446,'N'),(505,1447,'N'),(505,1448,'N'),(505,1449,'N'),(505,1451,'N'),(505,1453,'N'),(505,1454,'N'),(505,1455,'N'),(505,1456,'N'),(505,1457,'N'),(505,1458,'N'),(505,1464,'N'),(505,1465,'N'),(505,1466,'S'),(505,1467,'N'),(505,1470,'N'),(505,1471,'N'),(505,1472,'N'),(505,1473,'N'),(505,1476,'N'),(505,1477,'N'),(505,1478,'N'),(505,1479,'N'),(505,1483,'N'),(505,1485,'N'),(505,1486,'N'),(505,1487,'N'),(505,1488,'N'),(505,1489,'N'),(505,1491,'N'),(505,1493,'N'),(505,1494,'N'),(505,1495,'N'),(505,1496,'N'),(505,1497,'N'),(505,1498,'N'),(505,1504,'N'),(505,1505,'N'),(505,1506,'S'),(505,1507,'N'),(505,1510,'N'),(505,1511,'N'),(505,1512,'N'),(505,1513,'N'),(505,1516,'N'),(505,1517,'N'),(505,1518,'N'),(505,1519,'N'),(505,1523,'N'),(505,1525,'N'),(505,1526,'N'),(505,1527,'N'),(505,1528,'N'),(505,1529,'N'),(505,1531,'N'),(505,1533,'N'),(505,1534,'N'),(505,1535,'N'),(505,1536,'N'),(505,1537,'N'),(505,1538,'N'),(505,1544,'N'),(505,1545,'N'),(505,1546,'S'),(505,1547,'N'),(505,1550,'N'),(505,1551,'N'),(505,1552,'N'),(505,1553,'N'),(505,1556,'N'),(505,1557,'N'),(505,1558,'N'),(505,1559,'N'),(505,1564,'N'),(505,1566,'N'),(505,1567,'N'),(505,1568,'N'),(505,1569,'N'),(505,1570,'N'),(505,1571,'N'),(505,1573,'N'),(505,1574,'N'),(505,1575,'N'),(505,1576,'N'),(505,1577,'N'),(505,1578,'N'),(505,1584,'N'),(505,1585,'N'),(505,1586,'S'),(505,1587,'N'),(505,1590,'N'),(505,1591,'N'),(505,1592,'N'),(505,1593,'N'),(505,1596,'N'),(505,1597,'N'),(505,1598,'N'),(505,1599,'N'),(505,1604,'N'),(505,1606,'N'),(505,1607,'N'),(505,1608,'N'),(505,1609,'N'),(505,1610,'N'),(505,1611,'N'),(505,1612,'N'),(505,1613,'N'),(505,1614,'N'),(505,1615,'N'),(505,1616,'N'),(505,1617,'N'),(505,1623,'N'),(505,1624,'N'),(505,1625,'S'),(505,1626,'N'),(505,1629,'N'),(505,1630,'N'),(505,1631,'N'),(505,1632,'N'),(505,1635,'N'),(505,1636,'N'),(505,1637,'N'),(505,1638,'N'),(509,1255,'S'),(509,1292,'S'),(509,1330,'S'),(509,1369,'S'),(509,1409,'S'),(509,1449,'S'),(509,1489,'S'),(509,1529,'S'),(509,1570,'S'),(509,1610,'S'),(510,1252,'S'),(510,1289,'S'),(510,1327,'S'),(510,1366,'S'),(510,1406,'S'),(510,1446,'S'),(510,1486,'S'),(510,1526,'S'),(510,1567,'S'),(510,1607,'S'),(511,1249,'N'),(511,1251,'N'),(511,1252,'N'),(511,1253,'N'),(511,1254,'N'),(511,1255,'N'),(511,1257,'N'),(511,1259,'N'),(511,1260,'N'),(511,1261,'N'),(511,1262,'N'),(511,1263,'N'),(511,1264,'N'),(511,1270,'N'),(511,1271,'N'),(511,1272,'S'),(511,1273,'N'),(511,1276,'N'),(511,1277,'N'),(511,1278,'N'),(511,1279,'N'),(511,1282,'N'),(511,1283,'N'),(511,1284,'N'),(511,1285,'N'),(511,1286,'N'),(511,1288,'N'),(511,1289,'N'),(511,1290,'N'),(511,1291,'N'),(511,1292,'N'),(511,1294,'N'),(511,1296,'N'),(511,1297,'N'),(511,1298,'N'),(511,1299,'N'),(511,1300,'N'),(511,1301,'N'),(511,1307,'N'),(511,1308,'N'),(511,1309,'S'),(511,1310,'N'),(511,1313,'N'),(511,1314,'N'),(511,1315,'N'),(511,1316,'N'),(511,1319,'N'),(511,1320,'N'),(511,1321,'N'),(511,1322,'N'),(511,1324,'N'),(511,1326,'N'),(511,1327,'N'),(511,1328,'N'),(511,1329,'N'),(511,1330,'N'),(511,1332,'N'),(511,1334,'N'),(511,1335,'N'),(511,1336,'N'),(511,1337,'N'),(511,1338,'N'),(511,1339,'N'),(511,1345,'N'),(511,1346,'N'),(511,1347,'S'),(511,1348,'N'),(511,1351,'N'),(511,1352,'N'),(511,1353,'N'),(511,1354,'N'),(511,1357,'N'),(511,1358,'N'),(511,1359,'N'),(511,1360,'N'),(511,1363,'N'),(511,1365,'N'),(511,1366,'N'),(511,1367,'N'),(511,1368,'N'),(511,1369,'N'),(511,1371,'N'),(511,1373,'N'),(511,1374,'N'),(511,1375,'N'),(511,1376,'N'),(511,1377,'N'),(511,1378,'N'),(511,1384,'N'),(511,1385,'N'),(511,1386,'S'),(511,1387,'N'),(511,1390,'N'),(511,1391,'N'),(511,1392,'N'),(511,1393,'N'),(511,1396,'N'),(511,1397,'N'),(511,1398,'N'),(511,1399,'N'),(511,1403,'N'),(511,1405,'N'),(511,1406,'N'),(511,1407,'N'),(511,1408,'N'),(511,1409,'N'),(511,1411,'N'),(511,1413,'N'),(511,1414,'N'),(511,1415,'N'),(511,1416,'N'),(511,1417,'N'),(511,1418,'N'),(511,1424,'N'),(511,1425,'N'),(511,1426,'S'),(511,1427,'N'),(511,1430,'N'),(511,1431,'N'),(511,1432,'N'),(511,1433,'N'),(511,1436,'N'),(511,1437,'N'),(511,1438,'N'),(511,1439,'N'),(511,1443,'N'),(511,1445,'N'),(511,1446,'N'),(511,1447,'N'),(511,1448,'N'),(511,1449,'N'),(511,1451,'N'),(511,1453,'N'),(511,1454,'N'),(511,1455,'N'),(511,1456,'N'),(511,1457,'N'),(511,1458,'N'),(511,1464,'N'),(511,1465,'N'),(511,1466,'S'),(511,1467,'N'),(511,1470,'N'),(511,1471,'N'),(511,1472,'N'),(511,1473,'N'),(511,1476,'N'),(511,1477,'N'),(511,1478,'N'),(511,1479,'N'),(511,1483,'N'),(511,1485,'N'),(511,1486,'N'),(511,1487,'N'),(511,1488,'N'),(511,1489,'N'),(511,1491,'N'),(511,1493,'N'),(511,1494,'N'),(511,1495,'N'),(511,1496,'N'),(511,1497,'N'),(511,1498,'N'),(511,1504,'N'),(511,1505,'N'),(511,1506,'S'),(511,1507,'N'),(511,1510,'N'),(511,1511,'N'),(511,1512,'N'),(511,1513,'N'),(511,1516,'N'),(511,1517,'N'),(511,1518,'N'),(511,1519,'N'),(511,1523,'N'),(511,1525,'N'),(511,1526,'N'),(511,1527,'N'),(511,1528,'N'),(511,1529,'N'),(511,1531,'N'),(511,1533,'N'),(511,1534,'N'),(511,1535,'N'),(511,1536,'N'),(511,1537,'N'),(511,1538,'N'),(511,1544,'N'),(511,1545,'N'),(511,1546,'S'),(511,1547,'N'),(511,1550,'N'),(511,1551,'N'),(511,1552,'N'),(511,1553,'N'),(511,1556,'N'),(511,1557,'N'),(511,1558,'N'),(511,1559,'N'),(511,1564,'N'),(511,1566,'N'),(511,1567,'N'),(511,1568,'N'),(511,1569,'N'),(511,1570,'N'),(511,1571,'N'),(511,1573,'N'),(511,1574,'N'),(511,1575,'N'),(511,1576,'N'),(511,1577,'N'),(511,1578,'N'),(511,1584,'N'),(511,1585,'N'),(511,1586,'S'),(511,1587,'N'),(511,1590,'N'),(511,1591,'N'),(511,1592,'N'),(511,1593,'N'),(511,1596,'N'),(511,1597,'N'),(511,1598,'N'),(511,1599,'N'),(511,1604,'N'),(511,1606,'N'),(511,1607,'N'),(511,1608,'N'),(511,1609,'N'),(511,1610,'N'),(511,1611,'N'),(511,1612,'N'),(511,1613,'N'),(511,1614,'N'),(511,1615,'N'),(511,1616,'N'),(511,1617,'N'),(511,1623,'N'),(511,1624,'N'),(511,1625,'S'),(511,1626,'N'),(511,1629,'N'),(511,1630,'N'),(511,1631,'N'),(511,1632,'N'),(511,1635,'N'),(511,1636,'N'),(511,1637,'N'),(511,1638,'N'),(515,1255,'S'),(515,1292,'S'),(515,1330,'S'),(515,1369,'S'),(515,1409,'S'),(515,1449,'S'),(515,1489,'S'),(515,1529,'S'),(515,1570,'S'),(515,1610,'S'),(516,1252,'S'),(516,1289,'S'),(516,1327,'S'),(516,1366,'S'),(516,1406,'S'),(516,1446,'S'),(516,1486,'S'),(516,1526,'S'),(516,1567,'S'),(516,1607,'S'),(517,1249,'N'),(517,1251,'N'),(517,1252,'N'),(517,1253,'N'),(517,1254,'N'),(517,1255,'N'),(517,1257,'N'),(517,1259,'N'),(517,1260,'N'),(517,1261,'N'),(517,1262,'N'),(517,1263,'N'),(517,1264,'N'),(517,1270,'N'),(517,1271,'N'),(517,1272,'S'),(517,1273,'N'),(517,1276,'N'),(517,1277,'N'),(517,1278,'N'),(517,1279,'N'),(517,1282,'N'),(517,1283,'N'),(517,1284,'N'),(517,1285,'N'),(517,1286,'N'),(517,1288,'N'),(517,1289,'N'),(517,1290,'N'),(517,1291,'N'),(517,1292,'N'),(517,1294,'N'),(517,1296,'N'),(517,1297,'N'),(517,1298,'N'),(517,1299,'N'),(517,1300,'N'),(517,1301,'N'),(517,1307,'N'),(517,1308,'N'),(517,1309,'S'),(517,1310,'N'),(517,1313,'N'),(517,1314,'N'),(517,1315,'N'),(517,1316,'N'),(517,1319,'N'),(517,1320,'N'),(517,1321,'N'),(517,1322,'N'),(517,1324,'N'),(517,1326,'N'),(517,1327,'N'),(517,1328,'N'),(517,1329,'N'),(517,1330,'N'),(517,1332,'N'),(517,1334,'N'),(517,1335,'N'),(517,1336,'N'),(517,1337,'N'),(517,1338,'N'),(517,1339,'N'),(517,1345,'N'),(517,1346,'N'),(517,1347,'S'),(517,1348,'N'),(517,1351,'N'),(517,1352,'N'),(517,1353,'N'),(517,1354,'N'),(517,1357,'N'),(517,1358,'N'),(517,1359,'N'),(517,1360,'N'),(517,1363,'N'),(517,1365,'N'),(517,1366,'N'),(517,1367,'N'),(517,1368,'N'),(517,1369,'N'),(517,1371,'N'),(517,1373,'N'),(517,1374,'N'),(517,1375,'N'),(517,1376,'N'),(517,1377,'N'),(517,1378,'N'),(517,1384,'N'),(517,1385,'N'),(517,1386,'S'),(517,1387,'N'),(517,1390,'N'),(517,1391,'N'),(517,1392,'N'),(517,1393,'N'),(517,1396,'N'),(517,1397,'N'),(517,1398,'N'),(517,1399,'N'),(517,1403,'N'),(517,1405,'N'),(517,1406,'N'),(517,1407,'N'),(517,1408,'N'),(517,1409,'N'),(517,1411,'N'),(517,1413,'N'),(517,1414,'N'),(517,1415,'N'),(517,1416,'N'),(517,1417,'N'),(517,1418,'N'),(517,1424,'N'),(517,1425,'N'),(517,1426,'S'),(517,1427,'N'),(517,1430,'N'),(517,1431,'N'),(517,1432,'N'),(517,1433,'N'),(517,1436,'N'),(517,1437,'N'),(517,1438,'N'),(517,1439,'N'),(517,1443,'N'),(517,1445,'N'),(517,1446,'N'),(517,1447,'N'),(517,1448,'N'),(517,1449,'N'),(517,1451,'N'),(517,1453,'N'),(517,1454,'N'),(517,1455,'N'),(517,1456,'N'),(517,1457,'N'),(517,1458,'N'),(517,1464,'N'),(517,1465,'N'),(517,1466,'S'),(517,1467,'N'),(517,1470,'N'),(517,1471,'N'),(517,1472,'N'),(517,1473,'N'),(517,1476,'N'),(517,1477,'N'),(517,1478,'N'),(517,1479,'N'),(517,1483,'N'),(517,1485,'N'),(517,1486,'N'),(517,1487,'N'),(517,1488,'N'),(517,1489,'N'),(517,1491,'N'),(517,1493,'N'),(517,1494,'N'),(517,1495,'N'),(517,1496,'N'),(517,1497,'N'),(517,1498,'N'),(517,1504,'N'),(517,1505,'N'),(517,1506,'S'),(517,1507,'N'),(517,1510,'N'),(517,1511,'N'),(517,1512,'N'),(517,1513,'N'),(517,1516,'N'),(517,1517,'N'),(517,1518,'N'),(517,1519,'N'),(517,1523,'N'),(517,1525,'N'),(517,1526,'N'),(517,1527,'N'),(517,1528,'N'),(517,1529,'N'),(517,1531,'N'),(517,1533,'N'),(517,1534,'N'),(517,1535,'N'),(517,1536,'N'),(517,1537,'N'),(517,1538,'N'),(517,1544,'N'),(517,1545,'N'),(517,1546,'S'),(517,1547,'N'),(517,1550,'N'),(517,1551,'N'),(517,1552,'N'),(517,1553,'N'),(517,1556,'N'),(517,1557,'N'),(517,1558,'N'),(517,1559,'N'),(517,1564,'N'),(517,1566,'N'),(517,1567,'N'),(517,1568,'N'),(517,1569,'N'),(517,1570,'N'),(517,1571,'N'),(517,1573,'N'),(517,1574,'N'),(517,1575,'N'),(517,1576,'N'),(517,1577,'N'),(517,1578,'N'),(517,1584,'N'),(517,1585,'N'),(517,1586,'S'),(517,1587,'N'),(517,1590,'N'),(517,1591,'N'),(517,1592,'N'),(517,1593,'N'),(517,1596,'N'),(517,1597,'N'),(517,1598,'N'),(517,1599,'N'),(517,1604,'N'),(517,1606,'N'),(517,1607,'N'),(517,1608,'N'),(517,1609,'N'),(517,1610,'N'),(517,1611,'N'),(517,1612,'N'),(517,1613,'N'),(517,1614,'N'),(517,1615,'N'),(517,1616,'N'),(517,1617,'N'),(517,1623,'N'),(517,1624,'N'),(517,1625,'S'),(517,1626,'N'),(517,1629,'N'),(517,1630,'N'),(517,1631,'N'),(517,1632,'N'),(517,1635,'N'),(517,1636,'N'),(517,1637,'N'),(517,1638,'N'),(521,1255,'S'),(521,1292,'S'),(521,1330,'S'),(521,1369,'S'),(521,1409,'S'),(521,1449,'S'),(521,1489,'S'),(521,1529,'S'),(521,1570,'S'),(521,1610,'S'),(522,1252,'S'),(522,1289,'S'),(522,1327,'S'),(522,1366,'S'),(522,1406,'S'),(522,1446,'S'),(522,1486,'S'),(522,1526,'S'),(522,1567,'S'),(522,1607,'S'),(523,1249,'N'),(523,1251,'N'),(523,1252,'N'),(523,1253,'N'),(523,1254,'N'),(523,1255,'N'),(523,1257,'N'),(523,1259,'N'),(523,1260,'N'),(523,1261,'N'),(523,1262,'N'),(523,1263,'N'),(523,1264,'N'),(523,1270,'N'),(523,1271,'N'),(523,1272,'S'),(523,1273,'N'),(523,1276,'N'),(523,1277,'N'),(523,1278,'N'),(523,1279,'N'),(523,1282,'N'),(523,1283,'N'),(523,1284,'N'),(523,1285,'N'),(523,1286,'N'),(523,1288,'N'),(523,1289,'N'),(523,1290,'N'),(523,1291,'N'),(523,1292,'N'),(523,1294,'N'),(523,1296,'N'),(523,1297,'N'),(523,1298,'N'),(523,1299,'N'),(523,1300,'N'),(523,1301,'N'),(523,1307,'N'),(523,1308,'N'),(523,1309,'S'),(523,1310,'N'),(523,1313,'N'),(523,1314,'N'),(523,1315,'N'),(523,1316,'N'),(523,1319,'N'),(523,1320,'N'),(523,1321,'N'),(523,1322,'N'),(523,1324,'N'),(523,1326,'N'),(523,1327,'N'),(523,1328,'N'),(523,1329,'N'),(523,1330,'N'),(523,1332,'N'),(523,1334,'N'),(523,1335,'N'),(523,1336,'N'),(523,1337,'N'),(523,1338,'N'),(523,1339,'N'),(523,1345,'N'),(523,1346,'N'),(523,1347,'S'),(523,1348,'N'),(523,1351,'N'),(523,1352,'N'),(523,1353,'N'),(523,1354,'N'),(523,1357,'N'),(523,1358,'N'),(523,1359,'N'),(523,1360,'N'),(523,1363,'N'),(523,1365,'N'),(523,1366,'N'),(523,1367,'N'),(523,1368,'N'),(523,1369,'N'),(523,1371,'N'),(523,1373,'N'),(523,1374,'N'),(523,1375,'N'),(523,1376,'N'),(523,1377,'N'),(523,1378,'N'),(523,1384,'N'),(523,1385,'N'),(523,1386,'S'),(523,1387,'N'),(523,1390,'N'),(523,1391,'N'),(523,1392,'N'),(523,1393,'N'),(523,1396,'N'),(523,1397,'N'),(523,1398,'N'),(523,1399,'N'),(523,1403,'N'),(523,1405,'N'),(523,1406,'N'),(523,1407,'N'),(523,1408,'N'),(523,1409,'N'),(523,1411,'N'),(523,1413,'N'),(523,1414,'N'),(523,1415,'N'),(523,1416,'N'),(523,1417,'N'),(523,1418,'N'),(523,1424,'N'),(523,1425,'N'),(523,1426,'S'),(523,1427,'N'),(523,1430,'N'),(523,1431,'N'),(523,1432,'N'),(523,1433,'N'),(523,1436,'N'),(523,1437,'N'),(523,1438,'N'),(523,1439,'N'),(523,1443,'N'),(523,1445,'N'),(523,1446,'N'),(523,1447,'N'),(523,1448,'N'),(523,1449,'N'),(523,1451,'N'),(523,1453,'N'),(523,1454,'N'),(523,1455,'N'),(523,1456,'N'),(523,1457,'N'),(523,1458,'N'),(523,1464,'N'),(523,1465,'N'),(523,1466,'S'),(523,1467,'N'),(523,1470,'N'),(523,1471,'N'),(523,1472,'N'),(523,1473,'N'),(523,1476,'N'),(523,1477,'N'),(523,1478,'N'),(523,1479,'N'),(523,1483,'N'),(523,1485,'N'),(523,1486,'N'),(523,1487,'N'),(523,1488,'N'),(523,1489,'N'),(523,1491,'N'),(523,1493,'N'),(523,1494,'N'),(523,1495,'N'),(523,1496,'N'),(523,1497,'N'),(523,1498,'N'),(523,1504,'N'),(523,1505,'N'),(523,1506,'S'),(523,1507,'N'),(523,1510,'N'),(523,1511,'N'),(523,1512,'N'),(523,1513,'N'),(523,1516,'N'),(523,1517,'N'),(523,1518,'N'),(523,1519,'N'),(523,1523,'N'),(523,1525,'N'),(523,1526,'N'),(523,1527,'N'),(523,1528,'N'),(523,1529,'N'),(523,1531,'N'),(523,1533,'N'),(523,1534,'N'),(523,1535,'N'),(523,1536,'N'),(523,1537,'N'),(523,1538,'N'),(523,1544,'N'),(523,1545,'N'),(523,1546,'S'),(523,1547,'N'),(523,1550,'N'),(523,1551,'N'),(523,1552,'N'),(523,1553,'N'),(523,1556,'N'),(523,1557,'N'),(523,1558,'N'),(523,1559,'N'),(523,1564,'N'),(523,1566,'N'),(523,1567,'N'),(523,1568,'N'),(523,1569,'N'),(523,1570,'N'),(523,1571,'N'),(523,1573,'N'),(523,1574,'N'),(523,1575,'N'),(523,1576,'N'),(523,1577,'N'),(523,1578,'N'),(523,1584,'N'),(523,1585,'N'),(523,1586,'S'),(523,1587,'N'),(523,1590,'N'),(523,1591,'N'),(523,1592,'N'),(523,1593,'N'),(523,1596,'N'),(523,1597,'N'),(523,1598,'N'),(523,1599,'N'),(523,1604,'N'),(523,1606,'N'),(523,1607,'N'),(523,1608,'N'),(523,1609,'N'),(523,1610,'N'),(523,1611,'N'),(523,1612,'N'),(523,1613,'N'),(523,1614,'N'),(523,1615,'N'),(523,1616,'N'),(523,1617,'N'),(523,1623,'N'),(523,1624,'N'),(523,1625,'S'),(523,1626,'N'),(523,1629,'N'),(523,1630,'N'),(523,1631,'N'),(523,1632,'N'),(523,1635,'N'),(523,1636,'N'),(523,1637,'N'),(523,1638,'N'),(526,1249,'N'),(526,1251,'N'),(526,1252,'N'),(526,1253,'N'),(526,1254,'N'),(526,1255,'N'),(526,1257,'N'),(526,1259,'N'),(526,1260,'N'),(526,1261,'N'),(526,1262,'N'),(526,1263,'N'),(526,1264,'N'),(526,1268,'N'),(526,1269,'N'),(526,1270,'N'),(526,1271,'N'),(526,1272,'S'),(526,1273,'N'),(526,1274,'N'),(526,1275,'N'),(526,1276,'N'),(526,1277,'N'),(526,1278,'N'),(526,1279,'N'),(526,1280,'N'),(526,1281,'N'),(526,1282,'N'),(526,1283,'N'),(526,1284,'N'),(526,1285,'N'),(526,1286,'N'),(526,1288,'N'),(526,1289,'N'),(526,1290,'N'),(526,1291,'N'),(526,1292,'N'),(526,1294,'N'),(526,1296,'N'),(526,1297,'N'),(526,1298,'N'),(526,1299,'N'),(526,1300,'N'),(526,1301,'N'),(526,1305,'N'),(526,1306,'N'),(526,1307,'N'),(526,1308,'N'),(526,1309,'S'),(526,1310,'N'),(526,1311,'N'),(526,1312,'N'),(526,1313,'N'),(526,1314,'N'),(526,1315,'N'),(526,1316,'N'),(526,1317,'N'),(526,1318,'N'),(526,1319,'N'),(526,1320,'N'),(526,1321,'N'),(526,1322,'N'),(526,1324,'N'),(526,1326,'N'),(526,1327,'N'),(526,1328,'N'),(526,1329,'N'),(526,1330,'N'),(526,1332,'N'),(526,1334,'N'),(526,1335,'N'),(526,1336,'N'),(526,1337,'N'),(526,1338,'N'),(526,1339,'N'),(526,1343,'N'),(526,1344,'N'),(526,1345,'N'),(526,1346,'N'),(526,1347,'S'),(526,1348,'N'),(526,1349,'N'),(526,1350,'N'),(526,1351,'N'),(526,1352,'N'),(526,1353,'N'),(526,1354,'N'),(526,1355,'N'),(526,1356,'N'),(526,1357,'N'),(526,1358,'N'),(526,1359,'N'),(526,1360,'N'),(526,1363,'N'),(526,1365,'N'),(526,1366,'N'),(526,1367,'N'),(526,1368,'N'),(526,1369,'N'),(526,1371,'N'),(526,1373,'N'),(526,1374,'N'),(526,1375,'N'),(526,1376,'N'),(526,1377,'N'),(526,1378,'N'),(526,1382,'N'),(526,1383,'N'),(526,1384,'N'),(526,1385,'N'),(526,1386,'S'),(526,1387,'N'),(526,1388,'N'),(526,1389,'N'),(526,1390,'N'),(526,1391,'N'),(526,1392,'N'),(526,1393,'N'),(526,1394,'N'),(526,1395,'N'),(526,1396,'N'),(526,1397,'N'),(526,1398,'N'),(526,1399,'N'),(526,1403,'N'),(526,1405,'N'),(526,1406,'N'),(526,1407,'N'),(526,1408,'N'),(526,1409,'N'),(526,1411,'N'),(526,1413,'N'),(526,1414,'N'),(526,1415,'N'),(526,1416,'N'),(526,1417,'N'),(526,1418,'N'),(526,1422,'N'),(526,1423,'N'),(526,1424,'N'),(526,1425,'N'),(526,1426,'S'),(526,1427,'N'),(526,1428,'N'),(526,1429,'N'),(526,1430,'N'),(526,1431,'N'),(526,1432,'N'),(526,1433,'N'),(526,1434,'N'),(526,1435,'N'),(526,1436,'N'),(526,1437,'N'),(526,1438,'N'),(526,1439,'N'),(526,1443,'N'),(526,1445,'N'),(526,1446,'N'),(526,1447,'N'),(526,1448,'N'),(526,1449,'N'),(526,1451,'N'),(526,1453,'N'),(526,1454,'N'),(526,1455,'N'),(526,1456,'N'),(526,1457,'N'),(526,1458,'N'),(526,1462,'N'),(526,1463,'N'),(526,1464,'N'),(526,1465,'N'),(526,1466,'S'),(526,1467,'N'),(526,1468,'N'),(526,1469,'N'),(526,1470,'N'),(526,1471,'N'),(526,1472,'N'),(526,1473,'N'),(526,1474,'N'),(526,1475,'N'),(526,1476,'N'),(526,1477,'N'),(526,1478,'N'),(526,1479,'N'),(526,1483,'N'),(526,1485,'N'),(526,1486,'N'),(526,1487,'N'),(526,1488,'N'),(526,1489,'N'),(526,1491,'N'),(526,1493,'N'),(526,1494,'N'),(526,1495,'N'),(526,1496,'N'),(526,1497,'N'),(526,1498,'N'),(526,1502,'N'),(526,1503,'N'),(526,1504,'N'),(526,1505,'N'),(526,1506,'S'),(526,1507,'N'),(526,1508,'N'),(526,1509,'N'),(526,1510,'N'),(526,1511,'N'),(526,1512,'N'),(526,1513,'N'),(526,1514,'N'),(526,1515,'N'),(526,1516,'N'),(526,1517,'N'),(526,1518,'N'),(526,1519,'N'),(526,1523,'N'),(526,1524,'N'),(526,1525,'N'),(526,1526,'N'),(526,1528,'N'),(526,1529,'N'),(526,1531,'N'),(526,1533,'N'),(526,1534,'N'),(526,1535,'N'),(526,1536,'N'),(526,1537,'N'),(526,1538,'N'),(526,1542,'N'),(526,1543,'N'),(526,1544,'N'),(526,1545,'N'),(526,1546,'S'),(526,1547,'N'),(526,1548,'N'),(526,1549,'N'),(526,1550,'N'),(526,1551,'N'),(526,1552,'N'),(526,1553,'N'),(526,1554,'N'),(526,1555,'N'),(526,1556,'N'),(526,1557,'N'),(526,1558,'N'),(526,1559,'N'),(526,1561,'N'),(526,1562,'N'),(526,1564,'N'),(526,1565,'N'),(526,1566,'N'),(526,1567,'N'),(526,1569,'N'),(526,1570,'N'),(526,1571,'N'),(526,1573,'N'),(526,1574,'N'),(526,1575,'N'),(526,1576,'N'),(526,1577,'N'),(526,1578,'N'),(526,1582,'N'),(526,1583,'N'),(526,1584,'N'),(526,1585,'N'),(526,1586,'S'),(526,1587,'N'),(526,1588,'N'),(526,1589,'N'),(526,1590,'N'),(526,1591,'N'),(526,1592,'N'),(526,1593,'N'),(526,1594,'N'),(526,1595,'N'),(526,1596,'N'),(526,1597,'N'),(526,1598,'N'),(526,1599,'N'),(526,1601,'N'),(526,1602,'N'),(526,1604,'N'),(526,1605,'N'),(526,1606,'N'),(526,1607,'S'),(526,1608,'N'),(526,1609,'N'),(526,1610,'N'),(526,1611,'N'),(526,1612,'N'),(526,1613,'N'),(526,1614,'N'),(526,1615,'N'),(526,1616,'N'),(526,1617,'N'),(526,1619,'N'),(526,1620,'N'),(526,1621,'N'),(526,1622,'N'),(526,1623,'N'),(526,1624,'N'),(526,1625,'N'),(526,1626,'N'),(526,1627,'N'),(526,1628,'N'),(526,1629,'N'),(526,1630,'N'),(526,1631,'N'),(526,1632,'N'),(526,1633,'N'),(526,1634,'N'),(526,1635,'N'),(526,1636,'N'),(526,1637,'N'),(526,1638,'N'),(526,1639,'N'),(526,1640,'N'),(526,1641,'N'),(526,1642,'N'),(534,1255,'S'),(534,1292,'S'),(534,1330,'S'),(534,1369,'S'),(534,1409,'S'),(534,1449,'S'),(534,1489,'S'),(534,1529,'S'),(534,1570,'S'),(534,1610,'S'),(535,1252,'S'),(535,1289,'S'),(535,1327,'S'),(535,1366,'S'),(535,1406,'S'),(535,1446,'S'),(535,1486,'S'),(535,1526,'S'),(535,1567,'S'),(535,1607,'S'),(536,1249,'N'),(536,1251,'N'),(536,1252,'N'),(536,1253,'N'),(536,1254,'N'),(536,1255,'N'),(536,1257,'N'),(536,1259,'N'),(536,1260,'N'),(536,1261,'N'),(536,1262,'N'),(536,1263,'N'),(536,1264,'N'),(536,1270,'N'),(536,1271,'N'),(536,1272,'S'),(536,1273,'N'),(536,1276,'N'),(536,1277,'N'),(536,1278,'N'),(536,1279,'N'),(536,1282,'N'),(536,1283,'N'),(536,1284,'N'),(536,1285,'N'),(536,1286,'N'),(536,1288,'N'),(536,1289,'N'),(536,1290,'N'),(536,1291,'N'),(536,1292,'N'),(536,1294,'N'),(536,1296,'N'),(536,1297,'N'),(536,1298,'N'),(536,1299,'N'),(536,1300,'N'),(536,1301,'N'),(536,1307,'N'),(536,1308,'N'),(536,1309,'S'),(536,1310,'N'),(536,1313,'N'),(536,1314,'N'),(536,1315,'N'),(536,1316,'N'),(536,1319,'N'),(536,1320,'N'),(536,1321,'N'),(536,1322,'N'),(536,1324,'N'),(536,1326,'N'),(536,1327,'N'),(536,1328,'N'),(536,1329,'N'),(536,1330,'N'),(536,1332,'N'),(536,1334,'N'),(536,1335,'N'),(536,1336,'N'),(536,1337,'N'),(536,1338,'N'),(536,1339,'N'),(536,1345,'N'),(536,1346,'N'),(536,1347,'S'),(536,1348,'N'),(536,1351,'N'),(536,1352,'N'),(536,1353,'N'),(536,1354,'N'),(536,1357,'N'),(536,1358,'N'),(536,1359,'N'),(536,1360,'N'),(536,1363,'N'),(536,1365,'N'),(536,1366,'N'),(536,1367,'N'),(536,1368,'N'),(536,1369,'N'),(536,1371,'N'),(536,1373,'N'),(536,1374,'N'),(536,1375,'N'),(536,1376,'N'),(536,1377,'N'),(536,1378,'N'),(536,1384,'N'),(536,1385,'N'),(536,1386,'S'),(536,1387,'N'),(536,1390,'N'),(536,1391,'N'),(536,1392,'N'),(536,1393,'N'),(536,1396,'N'),(536,1397,'N'),(536,1398,'N'),(536,1399,'N'),(536,1403,'N'),(536,1405,'N'),(536,1406,'N'),(536,1407,'N'),(536,1408,'N'),(536,1409,'N'),(536,1411,'N'),(536,1413,'N'),(536,1414,'N'),(536,1415,'N'),(536,1416,'N'),(536,1417,'N'),(536,1418,'N'),(536,1424,'N'),(536,1425,'N'),(536,1426,'S'),(536,1427,'N'),(536,1430,'N'),(536,1431,'N'),(536,1432,'N'),(536,1433,'N'),(536,1436,'N'),(536,1437,'N'),(536,1438,'N'),(536,1439,'N'),(536,1443,'N'),(536,1445,'N'),(536,1446,'N'),(536,1447,'N'),(536,1448,'N'),(536,1449,'N'),(536,1451,'N'),(536,1453,'N'),(536,1454,'N'),(536,1455,'N'),(536,1456,'N'),(536,1457,'N'),(536,1458,'N'),(536,1464,'N'),(536,1465,'N'),(536,1466,'S'),(536,1467,'N'),(536,1470,'N'),(536,1471,'N'),(536,1472,'N'),(536,1473,'N'),(536,1476,'N'),(536,1477,'N'),(536,1478,'N'),(536,1479,'N'),(536,1483,'N'),(536,1485,'N'),(536,1486,'N'),(536,1487,'N'),(536,1488,'N'),(536,1489,'N'),(536,1491,'N'),(536,1493,'N'),(536,1494,'N'),(536,1495,'N'),(536,1496,'N'),(536,1497,'N'),(536,1498,'N'),(536,1504,'N'),(536,1505,'N'),(536,1506,'S'),(536,1507,'N'),(536,1510,'N'),(536,1511,'N'),(536,1512,'N'),(536,1513,'N'),(536,1516,'N'),(536,1517,'N'),(536,1518,'N'),(536,1519,'N'),(536,1523,'N'),(536,1525,'N'),(536,1526,'N'),(536,1527,'N'),(536,1528,'N'),(536,1529,'N'),(536,1531,'N'),(536,1533,'N'),(536,1534,'N'),(536,1535,'N'),(536,1536,'N'),(536,1537,'N'),(536,1538,'N'),(536,1544,'N'),(536,1545,'N'),(536,1546,'S'),(536,1547,'N'),(536,1550,'N'),(536,1551,'N'),(536,1552,'N'),(536,1553,'N'),(536,1556,'N'),(536,1557,'N'),(536,1558,'N'),(536,1559,'N'),(536,1564,'N'),(536,1566,'N'),(536,1567,'N'),(536,1568,'N'),(536,1569,'N'),(536,1570,'N'),(536,1571,'N'),(536,1573,'N'),(536,1574,'N'),(536,1575,'N'),(536,1576,'N'),(536,1577,'N'),(536,1578,'N'),(536,1584,'N'),(536,1585,'N'),(536,1586,'S'),(536,1587,'N'),(536,1590,'N'),(536,1591,'N'),(536,1592,'N'),(536,1593,'N'),(536,1596,'N'),(536,1597,'N'),(536,1598,'N'),(536,1599,'N'),(536,1604,'N'),(536,1606,'N'),(536,1607,'N'),(536,1608,'N'),(536,1609,'N'),(536,1610,'N'),(536,1611,'N'),(536,1612,'N'),(536,1613,'N'),(536,1614,'N'),(536,1615,'N'),(536,1616,'N'),(536,1617,'N'),(536,1623,'N'),(536,1624,'N'),(536,1625,'S'),(536,1626,'N'),(536,1629,'N'),(536,1630,'N'),(536,1631,'N'),(536,1632,'N'),(536,1635,'N'),(536,1636,'N'),(536,1637,'N'),(536,1638,'N'),(540,1255,'S'),(540,1292,'S'),(540,1330,'S'),(540,1369,'S'),(540,1409,'S'),(540,1449,'S'),(540,1489,'S'),(540,1529,'S'),(540,1570,'S'),(540,1610,'S'),(541,1252,'S'),(541,1289,'S'),(541,1327,'S'),(541,1366,'S'),(541,1406,'S'),(541,1446,'S'),(541,1486,'S'),(541,1526,'S'),(541,1567,'S'),(541,1607,'S'),(542,1249,'N'),(542,1251,'N'),(542,1252,'N'),(542,1253,'N'),(542,1254,'N'),(542,1255,'N'),(542,1257,'N'),(542,1259,'N'),(542,1260,'N'),(542,1261,'N'),(542,1262,'N'),(542,1263,'N'),(542,1264,'N'),(542,1270,'N'),(542,1271,'N'),(542,1272,'S'),(542,1273,'N'),(542,1276,'N'),(542,1277,'N'),(542,1278,'N'),(542,1279,'N'),(542,1282,'N'),(542,1283,'N'),(542,1284,'N'),(542,1285,'N'),(542,1286,'N'),(542,1288,'N'),(542,1289,'N'),(542,1290,'N'),(542,1291,'N'),(542,1292,'N'),(542,1294,'N'),(542,1296,'N'),(542,1297,'N'),(542,1298,'N'),(542,1299,'N'),(542,1300,'N'),(542,1301,'N'),(542,1307,'N'),(542,1308,'N'),(542,1309,'S'),(542,1310,'N'),(542,1313,'N'),(542,1314,'N'),(542,1315,'N'),(542,1316,'N'),(542,1319,'N'),(542,1320,'N'),(542,1321,'N'),(542,1322,'N'),(542,1324,'N'),(542,1326,'N'),(542,1327,'N'),(542,1328,'N'),(542,1329,'N'),(542,1330,'N'),(542,1332,'N'),(542,1334,'N'),(542,1335,'N'),(542,1336,'N'),(542,1337,'N'),(542,1338,'N'),(542,1339,'N'),(542,1345,'N'),(542,1346,'N'),(542,1347,'S'),(542,1348,'N'),(542,1351,'N'),(542,1352,'N'),(542,1353,'N'),(542,1354,'N'),(542,1357,'N'),(542,1358,'N'),(542,1359,'N'),(542,1360,'N'),(542,1363,'N'),(542,1365,'N'),(542,1366,'N'),(542,1367,'N'),(542,1368,'N'),(542,1369,'N'),(542,1371,'N'),(542,1373,'N'),(542,1374,'N'),(542,1375,'N'),(542,1376,'N'),(542,1377,'N'),(542,1378,'N'),(542,1384,'N'),(542,1385,'N'),(542,1386,'S'),(542,1387,'N'),(542,1390,'N'),(542,1391,'N'),(542,1392,'N'),(542,1393,'N'),(542,1396,'N'),(542,1397,'N'),(542,1398,'N'),(542,1399,'N'),(542,1403,'N'),(542,1405,'N'),(542,1406,'N'),(542,1407,'N'),(542,1408,'N'),(542,1409,'N'),(542,1411,'N'),(542,1413,'N'),(542,1414,'N'),(542,1415,'N'),(542,1416,'N'),(542,1417,'N'),(542,1418,'N'),(542,1424,'N'),(542,1425,'N'),(542,1426,'S'),(542,1427,'N'),(542,1430,'N'),(542,1431,'N'),(542,1432,'N'),(542,1433,'N'),(542,1436,'N'),(542,1437,'N'),(542,1438,'N'),(542,1439,'N'),(542,1443,'N'),(542,1445,'N'),(542,1446,'N'),(542,1447,'N'),(542,1448,'N'),(542,1449,'N'),(542,1451,'N'),(542,1453,'N'),(542,1454,'N'),(542,1455,'N'),(542,1456,'N'),(542,1457,'N'),(542,1458,'N'),(542,1464,'N'),(542,1465,'N'),(542,1466,'S'),(542,1467,'N'),(542,1470,'N'),(542,1471,'N'),(542,1472,'N'),(542,1473,'N'),(542,1476,'N'),(542,1477,'N'),(542,1478,'N'),(542,1479,'N'),(542,1483,'N'),(542,1485,'N'),(542,1486,'N'),(542,1487,'N'),(542,1488,'N'),(542,1489,'N'),(542,1491,'N'),(542,1493,'N'),(542,1494,'N'),(542,1495,'N'),(542,1496,'N'),(542,1497,'N'),(542,1498,'N'),(542,1504,'N'),(542,1505,'N'),(542,1506,'S'),(542,1507,'N'),(542,1510,'N'),(542,1511,'N'),(542,1512,'N'),(542,1513,'N'),(542,1516,'N'),(542,1517,'N'),(542,1518,'N'),(542,1519,'N'),(542,1523,'N'),(542,1525,'N'),(542,1526,'N'),(542,1527,'N'),(542,1528,'N'),(542,1529,'N'),(542,1531,'N'),(542,1533,'N'),(542,1534,'N'),(542,1535,'N'),(542,1536,'N'),(542,1537,'N'),(542,1538,'N'),(542,1544,'N'),(542,1545,'N'),(542,1546,'S'),(542,1547,'N'),(542,1550,'N'),(542,1551,'N'),(542,1552,'N'),(542,1553,'N'),(542,1556,'N'),(542,1557,'N'),(542,1558,'N'),(542,1559,'N'),(542,1564,'N'),(542,1566,'N'),(542,1567,'N'),(542,1568,'N'),(542,1569,'N'),(542,1570,'N'),(542,1571,'N'),(542,1573,'N'),(542,1574,'N'),(542,1575,'N'),(542,1576,'N'),(542,1577,'N'),(542,1578,'N'),(542,1584,'N'),(542,1585,'N'),(542,1586,'S'),(542,1587,'N'),(542,1590,'N'),(542,1591,'N'),(542,1592,'N'),(542,1593,'N'),(542,1596,'N'),(542,1597,'N'),(542,1598,'N'),(542,1599,'N'),(542,1604,'N'),(542,1606,'N'),(542,1607,'N'),(542,1608,'N'),(542,1609,'N'),(542,1610,'N'),(542,1611,'N'),(542,1612,'N'),(542,1613,'N'),(542,1614,'N'),(542,1615,'N'),(542,1616,'N'),(542,1617,'N'),(542,1623,'N'),(542,1624,'N'),(542,1625,'S'),(542,1626,'N'),(542,1629,'N'),(542,1630,'N'),(542,1631,'N'),(542,1632,'N'),(542,1635,'N'),(542,1636,'N'),(542,1637,'N'),(542,1638,'N'),(546,1255,'S'),(546,1292,'S'),(546,1330,'S'),(546,1369,'S'),(546,1409,'S'),(546,1449,'S'),(546,1489,'S'),(546,1529,'S'),(546,1570,'S'),(546,1610,'S'),(547,1252,'S'),(547,1289,'S'),(547,1327,'S'),(547,1366,'S'),(547,1406,'S'),(547,1446,'S'),(547,1486,'S'),(547,1526,'S'),(547,1567,'S'),(547,1607,'S'),(548,1249,'N'),(548,1251,'N'),(548,1252,'N'),(548,1253,'N'),(548,1254,'N'),(548,1255,'N'),(548,1257,'N'),(548,1259,'N'),(548,1260,'N'),(548,1261,'N'),(548,1262,'N'),(548,1263,'N'),(548,1264,'N'),(548,1270,'N'),(548,1271,'N'),(548,1272,'S'),(548,1273,'N'),(548,1276,'N'),(548,1277,'N'),(548,1278,'N'),(548,1279,'N'),(548,1282,'N'),(548,1283,'N'),(548,1284,'N'),(548,1285,'N'),(548,1286,'N'),(548,1288,'N'),(548,1289,'N'),(548,1290,'N'),(548,1291,'N'),(548,1292,'N'),(548,1294,'N'),(548,1296,'N'),(548,1297,'N'),(548,1298,'N'),(548,1299,'N'),(548,1300,'N'),(548,1301,'N'),(548,1307,'N'),(548,1308,'N'),(548,1309,'S'),(548,1310,'N'),(548,1313,'N'),(548,1314,'N'),(548,1315,'N'),(548,1316,'N'),(548,1319,'N'),(548,1320,'N'),(548,1321,'N'),(548,1322,'N'),(548,1324,'N'),(548,1326,'N'),(548,1327,'N'),(548,1328,'N'),(548,1329,'N'),(548,1330,'N'),(548,1332,'N'),(548,1334,'N'),(548,1335,'N'),(548,1336,'N'),(548,1337,'N'),(548,1338,'N'),(548,1339,'N'),(548,1345,'N'),(548,1346,'N'),(548,1347,'S'),(548,1348,'N'),(548,1351,'N'),(548,1352,'N'),(548,1353,'N'),(548,1354,'N'),(548,1357,'N'),(548,1358,'N'),(548,1359,'N'),(548,1360,'N'),(548,1363,'N'),(548,1365,'N'),(548,1366,'N'),(548,1367,'N'),(548,1368,'N'),(548,1369,'N'),(548,1371,'N'),(548,1373,'N'),(548,1374,'N'),(548,1375,'N'),(548,1376,'N'),(548,1377,'N'),(548,1378,'N'),(548,1384,'N'),(548,1385,'N'),(548,1386,'S'),(548,1387,'N'),(548,1390,'N'),(548,1391,'N'),(548,1392,'N'),(548,1393,'N'),(548,1396,'N'),(548,1397,'N'),(548,1398,'N'),(548,1399,'N'),(548,1403,'N'),(548,1405,'N'),(548,1406,'N'),(548,1407,'N'),(548,1408,'N'),(548,1409,'N'),(548,1411,'N'),(548,1413,'N'),(548,1414,'N'),(548,1415,'N'),(548,1416,'N'),(548,1417,'N'),(548,1418,'N'),(548,1424,'N'),(548,1425,'N'),(548,1426,'S'),(548,1427,'N'),(548,1430,'N'),(548,1431,'N'),(548,1432,'N'),(548,1433,'N'),(548,1436,'N'),(548,1437,'N'),(548,1438,'N'),(548,1439,'N'),(548,1443,'N'),(548,1445,'N'),(548,1446,'N'),(548,1447,'N'),(548,1448,'N'),(548,1449,'N'),(548,1451,'N'),(548,1453,'N'),(548,1454,'N'),(548,1455,'N'),(548,1456,'N'),(548,1457,'N'),(548,1458,'N'),(548,1464,'N'),(548,1465,'N'),(548,1466,'S'),(548,1467,'N'),(548,1470,'N'),(548,1471,'N'),(548,1472,'N'),(548,1473,'N'),(548,1476,'N'),(548,1477,'N'),(548,1478,'N'),(548,1479,'N'),(548,1483,'N'),(548,1485,'N'),(548,1486,'N'),(548,1487,'N'),(548,1488,'N'),(548,1489,'N'),(548,1491,'N'),(548,1493,'N'),(548,1494,'N'),(548,1495,'N'),(548,1496,'N'),(548,1497,'N'),(548,1498,'N'),(548,1504,'N'),(548,1505,'N'),(548,1506,'S'),(548,1507,'N'),(548,1510,'N'),(548,1511,'N'),(548,1512,'N'),(548,1513,'N'),(548,1516,'N'),(548,1517,'N'),(548,1518,'N'),(548,1519,'N'),(548,1523,'N'),(548,1525,'N'),(548,1526,'N'),(548,1527,'N'),(548,1528,'N'),(548,1529,'N'),(548,1531,'N'),(548,1533,'N'),(548,1534,'N'),(548,1535,'N'),(548,1536,'N'),(548,1537,'N'),(548,1538,'N'),(548,1544,'N'),(548,1545,'N'),(548,1546,'S'),(548,1547,'N'),(548,1550,'N'),(548,1551,'N'),(548,1552,'N'),(548,1553,'N'),(548,1556,'N'),(548,1557,'N'),(548,1558,'N'),(548,1559,'N'),(548,1564,'N'),(548,1566,'N'),(548,1567,'N'),(548,1568,'N'),(548,1569,'N'),(548,1570,'N'),(548,1571,'N'),(548,1573,'N'),(548,1574,'N'),(548,1575,'N'),(548,1576,'N'),(548,1577,'N'),(548,1578,'N'),(548,1584,'N'),(548,1585,'N'),(548,1586,'S'),(548,1587,'N'),(548,1590,'N'),(548,1591,'N'),(548,1592,'N'),(548,1593,'N'),(548,1596,'N'),(548,1597,'N'),(548,1598,'N'),(548,1599,'N'),(548,1604,'N'),(548,1606,'N'),(548,1607,'N'),(548,1608,'N'),(548,1609,'N'),(548,1610,'N'),(548,1611,'N'),(548,1612,'N'),(548,1613,'N'),(548,1614,'N'),(548,1615,'N'),(548,1616,'N'),(548,1617,'N'),(548,1623,'N'),(548,1624,'N'),(548,1625,'S'),(548,1626,'N'),(548,1629,'N'),(548,1630,'N'),(548,1631,'N'),(548,1632,'N'),(548,1635,'N'),(548,1636,'N'),(548,1637,'N'),(548,1638,'N'),(552,1255,'S'),(552,1292,'S'),(552,1330,'S'),(552,1369,'S'),(552,1409,'S'),(552,1449,'S'),(552,1489,'S'),(552,1529,'S'),(552,1570,'S'),(552,1610,'S'),(553,1252,'S'),(553,1289,'S'),(553,1327,'S'),(553,1366,'S'),(553,1406,'S'),(553,1446,'S'),(553,1486,'S'),(553,1526,'S'),(553,1567,'S'),(553,1607,'S'),(554,1249,'N'),(554,1251,'N'),(554,1252,'N'),(554,1253,'N'),(554,1254,'N'),(554,1255,'N'),(554,1257,'N'),(554,1259,'N'),(554,1260,'N'),(554,1261,'N'),(554,1262,'N'),(554,1263,'N'),(554,1264,'N'),(554,1270,'N'),(554,1271,'N'),(554,1272,'S'),(554,1273,'N'),(554,1276,'N'),(554,1277,'N'),(554,1278,'N'),(554,1279,'N'),(554,1282,'N'),(554,1283,'N'),(554,1284,'N'),(554,1285,'N'),(554,1286,'N'),(554,1288,'N'),(554,1289,'N'),(554,1290,'N'),(554,1291,'N'),(554,1292,'N'),(554,1294,'N'),(554,1296,'N'),(554,1297,'N'),(554,1298,'N'),(554,1299,'N'),(554,1300,'N'),(554,1301,'N'),(554,1307,'N'),(554,1308,'N'),(554,1309,'S'),(554,1310,'N'),(554,1313,'N'),(554,1314,'N'),(554,1315,'N'),(554,1316,'N'),(554,1319,'N'),(554,1320,'N'),(554,1321,'N'),(554,1322,'N'),(554,1324,'N'),(554,1326,'N'),(554,1327,'N'),(554,1328,'N'),(554,1329,'N'),(554,1330,'N'),(554,1332,'N'),(554,1334,'N'),(554,1335,'N'),(554,1336,'N'),(554,1337,'N'),(554,1338,'N'),(554,1339,'N'),(554,1345,'N'),(554,1346,'N'),(554,1347,'S'),(554,1348,'N'),(554,1351,'N'),(554,1352,'N'),(554,1353,'N'),(554,1354,'N'),(554,1357,'N'),(554,1358,'N'),(554,1359,'N'),(554,1360,'N'),(554,1363,'N'),(554,1365,'N'),(554,1366,'N'),(554,1367,'N'),(554,1368,'N'),(554,1369,'N'),(554,1371,'N'),(554,1373,'N'),(554,1374,'N'),(554,1375,'N'),(554,1376,'N'),(554,1377,'N'),(554,1378,'N'),(554,1384,'N'),(554,1385,'N'),(554,1386,'S'),(554,1387,'N'),(554,1390,'N'),(554,1391,'N'),(554,1392,'N'),(554,1393,'N'),(554,1396,'N'),(554,1397,'N'),(554,1398,'N'),(554,1399,'N'),(554,1403,'N'),(554,1405,'N'),(554,1406,'N'),(554,1407,'N'),(554,1408,'N'),(554,1409,'N'),(554,1411,'N'),(554,1413,'N'),(554,1414,'N'),(554,1415,'N'),(554,1416,'N'),(554,1417,'N'),(554,1418,'N'),(554,1424,'N'),(554,1425,'N'),(554,1426,'S'),(554,1427,'N'),(554,1430,'N'),(554,1431,'N'),(554,1432,'N'),(554,1433,'N'),(554,1436,'N'),(554,1437,'N'),(554,1438,'N'),(554,1439,'N'),(554,1443,'N'),(554,1445,'N'),(554,1446,'N'),(554,1447,'N'),(554,1448,'N'),(554,1449,'N'),(554,1451,'N'),(554,1453,'N'),(554,1454,'N'),(554,1455,'N'),(554,1456,'N'),(554,1457,'N'),(554,1458,'N'),(554,1464,'N'),(554,1465,'N'),(554,1466,'S'),(554,1467,'N'),(554,1470,'N'),(554,1471,'N'),(554,1472,'N'),(554,1473,'N'),(554,1476,'N'),(554,1477,'N'),(554,1478,'N'),(554,1479,'N'),(554,1483,'N'),(554,1485,'N'),(554,1486,'N'),(554,1487,'N'),(554,1488,'N'),(554,1489,'N'),(554,1491,'N'),(554,1493,'N'),(554,1494,'N'),(554,1495,'N'),(554,1496,'N'),(554,1497,'N'),(554,1498,'N'),(554,1504,'N'),(554,1505,'N'),(554,1506,'S'),(554,1507,'N'),(554,1510,'N'),(554,1511,'N'),(554,1512,'N'),(554,1513,'N'),(554,1516,'N'),(554,1517,'N'),(554,1518,'N'),(554,1519,'N'),(554,1523,'N'),(554,1525,'N'),(554,1526,'N'),(554,1527,'N'),(554,1528,'N'),(554,1529,'N'),(554,1531,'N'),(554,1533,'N'),(554,1534,'N'),(554,1535,'N'),(554,1536,'N'),(554,1537,'N'),(554,1538,'N'),(554,1544,'N'),(554,1545,'N'),(554,1546,'S'),(554,1547,'N'),(554,1550,'N'),(554,1551,'N'),(554,1552,'N'),(554,1553,'N'),(554,1556,'N'),(554,1557,'N'),(554,1558,'N'),(554,1559,'N'),(554,1564,'N'),(554,1566,'N'),(554,1567,'N'),(554,1568,'N'),(554,1569,'N'),(554,1570,'N'),(554,1571,'N'),(554,1573,'N'),(554,1574,'N'),(554,1575,'N'),(554,1576,'N'),(554,1577,'N'),(554,1578,'N'),(554,1584,'N'),(554,1585,'N'),(554,1586,'S'),(554,1587,'N'),(554,1590,'N'),(554,1591,'N'),(554,1592,'N'),(554,1593,'N'),(554,1596,'N'),(554,1597,'N'),(554,1598,'N'),(554,1599,'N'),(554,1604,'N'),(554,1606,'N'),(554,1607,'N'),(554,1608,'N'),(554,1609,'N'),(554,1610,'N'),(554,1611,'N'),(554,1612,'N'),(554,1613,'N'),(554,1614,'N'),(554,1615,'N'),(554,1616,'N'),(554,1617,'N'),(554,1623,'N'),(554,1624,'N'),(554,1625,'S'),(554,1626,'N'),(554,1629,'N'),(554,1630,'N'),(554,1631,'N'),(554,1632,'N'),(554,1635,'N'),(554,1636,'N'),(554,1637,'N'),(554,1638,'N'),(558,1255,'S'),(558,1292,'S'),(558,1330,'S'),(558,1369,'S'),(558,1409,'S'),(558,1449,'S'),(558,1489,'S'),(558,1529,'S'),(558,1570,'S'),(558,1610,'S'),(559,1252,'S'),(559,1289,'S'),(559,1327,'S'),(559,1366,'S'),(559,1406,'S'),(559,1446,'S'),(559,1486,'S'),(559,1526,'S'),(559,1567,'S'),(559,1607,'S'),(560,1249,'N'),(560,1251,'N'),(560,1252,'N'),(560,1253,'N'),(560,1254,'N'),(560,1255,'N'),(560,1257,'N'),(560,1259,'N'),(560,1260,'N'),(560,1261,'N'),(560,1262,'N'),(560,1263,'N'),(560,1264,'N'),(560,1270,'N'),(560,1271,'N'),(560,1272,'S'),(560,1273,'N'),(560,1276,'N'),(560,1277,'N'),(560,1278,'N'),(560,1279,'N'),(560,1282,'N'),(560,1283,'N'),(560,1284,'N'),(560,1285,'N'),(560,1286,'N'),(560,1288,'N'),(560,1289,'N'),(560,1290,'N'),(560,1291,'N'),(560,1292,'N'),(560,1294,'N'),(560,1296,'N'),(560,1297,'N'),(560,1298,'N'),(560,1299,'N'),(560,1300,'N'),(560,1301,'N'),(560,1307,'N'),(560,1308,'N'),(560,1309,'S'),(560,1310,'N'),(560,1313,'N'),(560,1314,'N'),(560,1315,'N'),(560,1316,'N'),(560,1319,'N'),(560,1320,'N'),(560,1321,'N'),(560,1322,'N'),(560,1324,'N'),(560,1326,'N'),(560,1327,'N'),(560,1328,'N'),(560,1329,'N'),(560,1330,'N'),(560,1332,'N'),(560,1334,'N'),(560,1335,'N'),(560,1336,'N'),(560,1337,'N'),(560,1338,'N'),(560,1339,'N'),(560,1345,'N'),(560,1346,'N'),(560,1347,'S'),(560,1348,'N'),(560,1351,'N'),(560,1352,'N'),(560,1353,'N'),(560,1354,'N'),(560,1357,'N'),(560,1358,'N'),(560,1359,'N'),(560,1360,'N'),(560,1363,'N'),(560,1365,'N'),(560,1366,'N'),(560,1367,'N'),(560,1368,'N'),(560,1369,'N'),(560,1371,'N'),(560,1373,'N'),(560,1374,'N'),(560,1375,'N'),(560,1376,'N'),(560,1377,'N'),(560,1378,'N'),(560,1384,'N'),(560,1385,'N'),(560,1386,'S'),(560,1387,'N'),(560,1390,'N'),(560,1391,'N'),(560,1392,'N'),(560,1393,'N'),(560,1396,'N'),(560,1397,'N'),(560,1398,'N'),(560,1399,'N'),(560,1403,'N'),(560,1405,'N'),(560,1406,'N'),(560,1407,'N'),(560,1408,'N'),(560,1409,'N'),(560,1411,'N'),(560,1413,'N'),(560,1414,'N'),(560,1415,'N'),(560,1416,'N'),(560,1417,'N'),(560,1418,'N'),(560,1424,'N'),(560,1425,'N'),(560,1426,'S'),(560,1427,'N'),(560,1430,'N'),(560,1431,'N'),(560,1432,'N'),(560,1433,'N'),(560,1436,'N'),(560,1437,'N'),(560,1438,'N'),(560,1439,'N'),(560,1443,'N'),(560,1445,'N'),(560,1446,'N'),(560,1447,'N'),(560,1448,'N'),(560,1449,'N'),(560,1451,'N'),(560,1453,'N'),(560,1454,'N'),(560,1455,'N'),(560,1456,'N'),(560,1457,'N'),(560,1458,'N'),(560,1464,'N'),(560,1465,'N'),(560,1466,'S'),(560,1467,'N'),(560,1470,'N'),(560,1471,'N'),(560,1472,'N'),(560,1473,'N'),(560,1476,'N'),(560,1477,'N'),(560,1478,'N'),(560,1479,'N'),(560,1483,'N'),(560,1485,'N'),(560,1486,'N'),(560,1487,'N'),(560,1488,'N'),(560,1489,'N'),(560,1491,'N'),(560,1493,'N'),(560,1494,'N'),(560,1495,'N'),(560,1496,'N'),(560,1497,'N'),(560,1498,'N'),(560,1504,'N'),(560,1505,'N'),(560,1506,'S'),(560,1507,'N'),(560,1510,'N'),(560,1511,'N'),(560,1512,'N'),(560,1513,'N'),(560,1516,'N'),(560,1517,'N'),(560,1518,'N'),(560,1519,'N'),(560,1523,'N'),(560,1525,'N'),(560,1526,'N'),(560,1527,'N'),(560,1528,'N'),(560,1529,'N'),(560,1531,'N'),(560,1533,'N'),(560,1534,'N'),(560,1535,'N'),(560,1536,'N'),(560,1537,'N'),(560,1538,'N'),(560,1544,'N'),(560,1545,'N'),(560,1546,'S'),(560,1547,'N'),(560,1550,'N'),(560,1551,'N'),(560,1552,'N'),(560,1553,'N'),(560,1556,'N'),(560,1557,'N'),(560,1558,'N'),(560,1559,'N'),(560,1564,'N'),(560,1566,'N'),(560,1567,'N'),(560,1568,'N'),(560,1569,'N'),(560,1570,'N'),(560,1571,'N'),(560,1573,'N'),(560,1574,'N'),(560,1575,'N'),(560,1576,'N'),(560,1577,'N'),(560,1578,'N'),(560,1584,'N'),(560,1585,'N'),(560,1586,'S'),(560,1587,'N'),(560,1590,'N'),(560,1591,'N'),(560,1592,'N'),(560,1593,'N'),(560,1596,'N'),(560,1597,'N'),(560,1598,'N'),(560,1599,'N'),(560,1604,'N'),(560,1606,'N'),(560,1607,'N'),(560,1608,'N'),(560,1609,'N'),(560,1610,'N'),(560,1611,'N'),(560,1612,'N'),(560,1613,'N'),(560,1614,'N'),(560,1615,'N'),(560,1616,'N'),(560,1617,'N'),(560,1623,'N'),(560,1624,'N'),(560,1625,'S'),(560,1626,'N'),(560,1629,'N'),(560,1630,'N'),(560,1631,'N'),(560,1632,'N'),(560,1635,'N'),(560,1636,'N'),(560,1637,'N'),(560,1638,'N'),(564,1255,'S'),(564,1292,'S'),(564,1330,'S'),(564,1369,'S'),(564,1409,'S'),(564,1449,'S'),(564,1489,'S'),(564,1529,'S'),(564,1570,'S'),(564,1610,'S'),(565,1252,'S'),(565,1289,'S'),(565,1327,'S'),(565,1366,'S'),(565,1406,'S'),(565,1446,'S'),(565,1486,'S'),(565,1526,'S'),(565,1567,'S'),(565,1607,'S'),(566,1249,'N'),(566,1251,'N'),(566,1252,'N'),(566,1253,'N'),(566,1254,'N'),(566,1255,'N'),(566,1257,'N'),(566,1259,'N'),(566,1260,'N'),(566,1261,'N'),(566,1262,'N'),(566,1263,'N'),(566,1264,'N'),(566,1270,'N'),(566,1271,'N'),(566,1272,'S'),(566,1273,'N'),(566,1276,'N'),(566,1277,'N'),(566,1278,'N'),(566,1279,'N'),(566,1282,'N'),(566,1283,'N'),(566,1284,'N'),(566,1285,'N'),(566,1286,'N'),(566,1288,'N'),(566,1289,'N'),(566,1290,'N'),(566,1291,'N'),(566,1292,'N'),(566,1294,'N'),(566,1296,'N'),(566,1297,'N'),(566,1298,'N'),(566,1299,'N'),(566,1300,'N'),(566,1301,'N'),(566,1307,'N'),(566,1308,'N'),(566,1309,'S'),(566,1310,'N'),(566,1313,'N'),(566,1314,'N'),(566,1315,'N'),(566,1316,'N'),(566,1319,'N'),(566,1320,'N'),(566,1321,'N'),(566,1322,'N'),(566,1324,'N'),(566,1326,'N'),(566,1327,'N'),(566,1328,'N'),(566,1329,'N'),(566,1330,'N'),(566,1332,'N'),(566,1334,'N'),(566,1335,'N'),(566,1336,'N'),(566,1337,'N'),(566,1338,'N'),(566,1339,'N'),(566,1345,'N'),(566,1346,'N'),(566,1347,'S'),(566,1348,'N'),(566,1351,'N'),(566,1352,'N'),(566,1353,'N'),(566,1354,'N'),(566,1357,'N'),(566,1358,'N'),(566,1359,'N'),(566,1360,'N'),(566,1363,'N'),(566,1365,'N'),(566,1366,'N'),(566,1367,'N'),(566,1368,'N'),(566,1369,'N'),(566,1371,'N'),(566,1373,'N'),(566,1374,'N'),(566,1375,'N'),(566,1376,'N'),(566,1377,'N'),(566,1378,'N'),(566,1384,'N'),(566,1385,'N'),(566,1386,'S'),(566,1387,'N'),(566,1390,'N'),(566,1391,'N'),(566,1392,'N'),(566,1393,'N'),(566,1396,'N'),(566,1397,'N'),(566,1398,'N'),(566,1399,'N'),(566,1403,'N'),(566,1405,'N'),(566,1406,'N'),(566,1407,'N'),(566,1408,'N'),(566,1409,'N'),(566,1411,'N'),(566,1413,'N'),(566,1414,'N'),(566,1415,'N'),(566,1416,'N'),(566,1417,'N'),(566,1418,'N'),(566,1424,'N'),(566,1425,'N'),(566,1426,'S'),(566,1427,'N'),(566,1430,'N'),(566,1431,'N'),(566,1432,'N'),(566,1433,'N'),(566,1436,'N'),(566,1437,'N'),(566,1438,'N'),(566,1439,'N'),(566,1443,'N'),(566,1445,'N'),(566,1446,'N'),(566,1447,'N'),(566,1448,'N'),(566,1449,'N'),(566,1451,'N'),(566,1453,'N'),(566,1454,'N'),(566,1455,'N'),(566,1456,'N'),(566,1457,'N'),(566,1458,'N'),(566,1464,'N'),(566,1465,'N'),(566,1466,'S'),(566,1467,'N'),(566,1470,'N'),(566,1471,'N'),(566,1472,'N'),(566,1473,'N'),(566,1476,'N'),(566,1477,'N'),(566,1478,'N'),(566,1479,'N'),(566,1483,'N'),(566,1485,'N'),(566,1486,'N'),(566,1487,'N'),(566,1488,'N'),(566,1489,'N'),(566,1491,'N'),(566,1493,'N'),(566,1494,'N'),(566,1495,'N'),(566,1496,'N'),(566,1497,'N'),(566,1498,'N'),(566,1504,'N'),(566,1505,'N'),(566,1506,'S'),(566,1507,'N'),(566,1510,'N'),(566,1511,'N'),(566,1512,'N'),(566,1513,'N'),(566,1516,'N'),(566,1517,'N'),(566,1518,'N'),(566,1519,'N'),(566,1523,'N'),(566,1525,'N'),(566,1526,'N'),(566,1527,'N'),(566,1528,'N'),(566,1529,'N'),(566,1531,'N'),(566,1533,'N'),(566,1534,'N'),(566,1535,'N'),(566,1536,'N'),(566,1537,'N'),(566,1538,'N'),(566,1544,'N'),(566,1545,'N'),(566,1546,'S'),(566,1547,'N'),(566,1550,'N'),(566,1551,'N'),(566,1552,'N'),(566,1553,'N'),(566,1556,'N'),(566,1557,'N'),(566,1558,'N'),(566,1559,'N'),(566,1564,'N'),(566,1566,'N'),(566,1567,'N'),(566,1568,'N'),(566,1569,'N'),(566,1570,'N'),(566,1571,'N'),(566,1573,'N'),(566,1574,'N'),(566,1575,'N'),(566,1576,'N'),(566,1577,'N'),(566,1578,'N'),(566,1584,'N'),(566,1585,'N'),(566,1586,'S'),(566,1587,'N'),(566,1590,'N'),(566,1591,'N'),(566,1592,'N'),(566,1593,'N'),(566,1596,'N'),(566,1597,'N'),(566,1598,'N'),(566,1599,'N'),(566,1604,'N'),(566,1606,'N'),(566,1607,'N'),(566,1608,'N'),(566,1609,'N'),(566,1610,'N'),(566,1611,'N'),(566,1612,'N'),(566,1613,'N'),(566,1614,'N'),(566,1615,'N'),(566,1616,'N'),(566,1617,'N'),(566,1623,'N'),(566,1624,'N'),(566,1625,'S'),(566,1626,'N'),(566,1629,'N'),(566,1630,'N'),(566,1631,'N'),(566,1632,'N'),(566,1635,'N'),(566,1636,'N'),(566,1637,'N'),(566,1638,'N'),(570,1255,'S'),(570,1292,'S'),(570,1330,'S'),(570,1369,'S'),(570,1409,'S'),(570,1449,'S'),(570,1489,'S'),(570,1529,'S'),(570,1570,'S'),(570,1610,'S'),(571,1252,'S'),(571,1289,'S'),(571,1327,'S'),(571,1366,'S'),(571,1406,'S'),(571,1446,'S'),(571,1486,'S'),(571,1526,'S'),(571,1567,'S'),(571,1607,'S'),(572,1249,'N'),(572,1251,'N'),(572,1252,'N'),(572,1253,'N'),(572,1254,'N'),(572,1255,'N'),(572,1257,'N'),(572,1259,'N'),(572,1260,'N'),(572,1261,'N'),(572,1262,'N'),(572,1263,'N'),(572,1264,'N'),(572,1270,'N'),(572,1271,'N'),(572,1272,'S'),(572,1273,'N'),(572,1276,'N'),(572,1277,'N'),(572,1278,'N'),(572,1279,'N'),(572,1282,'N'),(572,1283,'N'),(572,1284,'N'),(572,1285,'N'),(572,1286,'N'),(572,1288,'N'),(572,1289,'N'),(572,1290,'N'),(572,1291,'N'),(572,1292,'N'),(572,1294,'N'),(572,1296,'N'),(572,1297,'N'),(572,1298,'N'),(572,1299,'N'),(572,1300,'N'),(572,1301,'N'),(572,1307,'N'),(572,1308,'N'),(572,1309,'S'),(572,1310,'N'),(572,1313,'N'),(572,1314,'N'),(572,1315,'N'),(572,1316,'N'),(572,1319,'N'),(572,1320,'N'),(572,1321,'N'),(572,1322,'N'),(572,1324,'N'),(572,1326,'N'),(572,1327,'N'),(572,1328,'N'),(572,1329,'N'),(572,1330,'N'),(572,1332,'N'),(572,1334,'N'),(572,1335,'N'),(572,1336,'N'),(572,1337,'N'),(572,1338,'N'),(572,1339,'N'),(572,1345,'N'),(572,1346,'N'),(572,1347,'S'),(572,1348,'N'),(572,1351,'N'),(572,1352,'N'),(572,1353,'N'),(572,1354,'N'),(572,1357,'N'),(572,1358,'N'),(572,1359,'N'),(572,1360,'N'),(572,1363,'N'),(572,1365,'N'),(572,1366,'N'),(572,1367,'N'),(572,1368,'N'),(572,1369,'N'),(572,1371,'N'),(572,1373,'N'),(572,1374,'N'),(572,1375,'N'),(572,1376,'N'),(572,1377,'N'),(572,1378,'N'),(572,1384,'N'),(572,1385,'N'),(572,1386,'S'),(572,1387,'N'),(572,1390,'N'),(572,1391,'N'),(572,1392,'N'),(572,1393,'N'),(572,1396,'N'),(572,1397,'N'),(572,1398,'N'),(572,1399,'N'),(572,1403,'N'),(572,1405,'N'),(572,1406,'N'),(572,1407,'N'),(572,1408,'N'),(572,1409,'N'),(572,1411,'N'),(572,1413,'N'),(572,1414,'N'),(572,1415,'N'),(572,1416,'N'),(572,1417,'N'),(572,1418,'N'),(572,1424,'N'),(572,1425,'N'),(572,1426,'S'),(572,1427,'N'),(572,1430,'N'),(572,1431,'N'),(572,1432,'N'),(572,1433,'N'),(572,1436,'N'),(572,1437,'N'),(572,1438,'N'),(572,1439,'N'),(572,1443,'N'),(572,1445,'N'),(572,1446,'N'),(572,1447,'N'),(572,1448,'N'),(572,1449,'N'),(572,1451,'N'),(572,1453,'N'),(572,1454,'N'),(572,1455,'N'),(572,1456,'N'),(572,1457,'N'),(572,1458,'N'),(572,1464,'N'),(572,1465,'N'),(572,1466,'S'),(572,1467,'N'),(572,1470,'N'),(572,1471,'N'),(572,1472,'N'),(572,1473,'N'),(572,1476,'N'),(572,1477,'N'),(572,1478,'N'),(572,1479,'N'),(572,1483,'N'),(572,1485,'N'),(572,1486,'N'),(572,1487,'N'),(572,1488,'N'),(572,1489,'N'),(572,1491,'N'),(572,1493,'N'),(572,1494,'N'),(572,1495,'N'),(572,1496,'N'),(572,1497,'N'),(572,1498,'N'),(572,1504,'N'),(572,1505,'N'),(572,1506,'S'),(572,1507,'N'),(572,1510,'N'),(572,1511,'N'),(572,1512,'N'),(572,1513,'N'),(572,1516,'N'),(572,1517,'N'),(572,1518,'N'),(572,1519,'N'),(572,1523,'N'),(572,1525,'N'),(572,1526,'N'),(572,1527,'N'),(572,1528,'N'),(572,1529,'N'),(572,1531,'N'),(572,1533,'N'),(572,1534,'N'),(572,1535,'N'),(572,1536,'N'),(572,1537,'N'),(572,1538,'N'),(572,1544,'N'),(572,1545,'N'),(572,1546,'S'),(572,1547,'N'),(572,1550,'N'),(572,1551,'N'),(572,1552,'N'),(572,1553,'N'),(572,1556,'N'),(572,1557,'N'),(572,1558,'N'),(572,1559,'N'),(572,1564,'N'),(572,1566,'N'),(572,1567,'N'),(572,1568,'N'),(572,1569,'N'),(572,1570,'N'),(572,1571,'N'),(572,1573,'N'),(572,1574,'N'),(572,1575,'N'),(572,1576,'N'),(572,1577,'N'),(572,1578,'N'),(572,1584,'N'),(572,1585,'N'),(572,1586,'S'),(572,1587,'N'),(572,1590,'N'),(572,1591,'N'),(572,1592,'N'),(572,1593,'N'),(572,1596,'N'),(572,1597,'N'),(572,1598,'N'),(572,1599,'N'),(572,1604,'N'),(572,1606,'N'),(572,1607,'N'),(572,1608,'N'),(572,1609,'N'),(572,1610,'N'),(572,1611,'N'),(572,1612,'N'),(572,1613,'N'),(572,1614,'N'),(572,1615,'N'),(572,1616,'N'),(572,1617,'N'),(572,1623,'N'),(572,1624,'N'),(572,1625,'S'),(572,1626,'N'),(572,1629,'N'),(572,1630,'N'),(572,1631,'N'),(572,1632,'N'),(572,1635,'N'),(572,1636,'N'),(572,1637,'N'),(572,1638,'N'),(576,1255,'S'),(576,1292,'S'),(576,1330,'S'),(576,1369,'S'),(576,1409,'S'),(576,1449,'S'),(576,1489,'S'),(576,1529,'S'),(576,1570,'S'),(576,1610,'S'),(577,1252,'S'),(577,1289,'S'),(577,1327,'S'),(577,1366,'S'),(577,1406,'S'),(577,1446,'S'),(577,1486,'S'),(577,1526,'S'),(577,1567,'S'),(577,1607,'S'),(578,1249,'N'),(578,1251,'N'),(578,1252,'N'),(578,1253,'N'),(578,1254,'N'),(578,1255,'N'),(578,1257,'N'),(578,1259,'N'),(578,1260,'N'),(578,1261,'N'),(578,1262,'N'),(578,1263,'N'),(578,1264,'N'),(578,1270,'N'),(578,1271,'N'),(578,1272,'S'),(578,1273,'N'),(578,1276,'N'),(578,1277,'N'),(578,1278,'N'),(578,1279,'N'),(578,1282,'N'),(578,1283,'N'),(578,1284,'N'),(578,1285,'N'),(578,1286,'N'),(578,1288,'N'),(578,1289,'N'),(578,1290,'N'),(578,1291,'N'),(578,1292,'N'),(578,1294,'N'),(578,1296,'N'),(578,1297,'N'),(578,1298,'N'),(578,1299,'N'),(578,1300,'N'),(578,1301,'N'),(578,1307,'N'),(578,1308,'N'),(578,1309,'S'),(578,1310,'N'),(578,1313,'N'),(578,1314,'N'),(578,1315,'N'),(578,1316,'N'),(578,1319,'N'),(578,1320,'N'),(578,1321,'N'),(578,1322,'N'),(578,1324,'N'),(578,1326,'N'),(578,1327,'N'),(578,1328,'N'),(578,1329,'N'),(578,1330,'N'),(578,1332,'N'),(578,1334,'N'),(578,1335,'N'),(578,1336,'N'),(578,1337,'N'),(578,1338,'N'),(578,1339,'N'),(578,1345,'N'),(578,1346,'N'),(578,1347,'S'),(578,1348,'N'),(578,1351,'N'),(578,1352,'N'),(578,1353,'N'),(578,1354,'N'),(578,1357,'N'),(578,1358,'N'),(578,1359,'N'),(578,1360,'N'),(578,1363,'N'),(578,1365,'N'),(578,1366,'N'),(578,1367,'N'),(578,1368,'N'),(578,1369,'N'),(578,1371,'N'),(578,1373,'N'),(578,1374,'N'),(578,1375,'N'),(578,1376,'N'),(578,1377,'N'),(578,1378,'N'),(578,1384,'N'),(578,1385,'N'),(578,1386,'S'),(578,1387,'N'),(578,1390,'N'),(578,1391,'N'),(578,1392,'N'),(578,1393,'N'),(578,1396,'N'),(578,1397,'N'),(578,1398,'N'),(578,1399,'N'),(578,1403,'N'),(578,1405,'N'),(578,1406,'N'),(578,1407,'N'),(578,1408,'N'),(578,1409,'N'),(578,1411,'N'),(578,1413,'N'),(578,1414,'N'),(578,1415,'N'),(578,1416,'N'),(578,1417,'N'),(578,1418,'N'),(578,1424,'N'),(578,1425,'N'),(578,1426,'S'),(578,1427,'N'),(578,1430,'N'),(578,1431,'N'),(578,1432,'N'),(578,1433,'N'),(578,1436,'N'),(578,1437,'N'),(578,1438,'N'),(578,1439,'N'),(578,1443,'N'),(578,1445,'N'),(578,1446,'N'),(578,1447,'N'),(578,1448,'N'),(578,1449,'N'),(578,1451,'N'),(578,1453,'N'),(578,1454,'N'),(578,1455,'N'),(578,1456,'N'),(578,1457,'N'),(578,1458,'N'),(578,1464,'N'),(578,1465,'N'),(578,1466,'S'),(578,1467,'N'),(578,1470,'N'),(578,1471,'N'),(578,1472,'N'),(578,1473,'N'),(578,1476,'N'),(578,1477,'N'),(578,1478,'N'),(578,1479,'N'),(578,1483,'N'),(578,1485,'N'),(578,1486,'N'),(578,1487,'N'),(578,1488,'N'),(578,1489,'N'),(578,1491,'N'),(578,1493,'N'),(578,1494,'N'),(578,1495,'N'),(578,1496,'N'),(578,1497,'N'),(578,1498,'N'),(578,1504,'N'),(578,1505,'N'),(578,1506,'S'),(578,1507,'N'),(578,1510,'N'),(578,1511,'N'),(578,1512,'N'),(578,1513,'N'),(578,1516,'N'),(578,1517,'N'),(578,1518,'N'),(578,1519,'N'),(578,1523,'N'),(578,1525,'N'),(578,1526,'N'),(578,1527,'N'),(578,1528,'N'),(578,1529,'N'),(578,1531,'N'),(578,1533,'N'),(578,1534,'N'),(578,1535,'N'),(578,1536,'N'),(578,1537,'N'),(578,1538,'N'),(578,1544,'N'),(578,1545,'N'),(578,1546,'S'),(578,1547,'N'),(578,1550,'N'),(578,1551,'N'),(578,1552,'N'),(578,1553,'N'),(578,1556,'N'),(578,1557,'N'),(578,1558,'N'),(578,1559,'N'),(578,1564,'N'),(578,1566,'N'),(578,1567,'N'),(578,1568,'N'),(578,1569,'N'),(578,1570,'N'),(578,1571,'N'),(578,1573,'N'),(578,1574,'N'),(578,1575,'N'),(578,1576,'N'),(578,1577,'N'),(578,1578,'N'),(578,1584,'N'),(578,1585,'N'),(578,1586,'S'),(578,1587,'N'),(578,1590,'N'),(578,1591,'N'),(578,1592,'N'),(578,1593,'N'),(578,1596,'N'),(578,1597,'N'),(578,1598,'N'),(578,1599,'N'),(578,1604,'N'),(578,1606,'N'),(578,1607,'N'),(578,1608,'N'),(578,1609,'N'),(578,1610,'N'),(578,1611,'N'),(578,1612,'N'),(578,1613,'N'),(578,1614,'N'),(578,1615,'N'),(578,1616,'N'),(578,1617,'N'),(578,1623,'N'),(578,1624,'N'),(578,1625,'S'),(578,1626,'N'),(578,1629,'N'),(578,1630,'N'),(578,1631,'N'),(578,1632,'N'),(578,1635,'N'),(578,1636,'N'),(578,1637,'N'),(578,1638,'N'),(582,1255,'S'),(582,1292,'S'),(582,1330,'S'),(582,1369,'S'),(582,1409,'S'),(582,1449,'S'),(582,1489,'S'),(582,1529,'S'),(582,1570,'S'),(582,1610,'S'),(584,1249,'N'),(584,1251,'N'),(584,1252,'S'),(584,1253,'N'),(584,1255,'N'),(584,1259,'N'),(584,1263,'N'),(584,1268,'N'),(584,1269,'N'),(584,1274,'N'),(584,1275,'N'),(584,1280,'N'),(584,1281,'N'),(584,1282,'N'),(584,1283,'N'),(584,1284,'N'),(584,1285,'N'),(584,1286,'N'),(584,1288,'N'),(584,1289,'S'),(584,1290,'N'),(584,1292,'N'),(584,1296,'N'),(584,1300,'N'),(584,1305,'N'),(584,1306,'N'),(584,1311,'N'),(584,1312,'N'),(584,1317,'N'),(584,1318,'N'),(584,1319,'N'),(584,1320,'N'),(584,1321,'N'),(584,1322,'N'),(584,1324,'N'),(584,1326,'N'),(584,1327,'S'),(584,1328,'N'),(584,1330,'N'),(584,1334,'N'),(584,1338,'N'),(584,1343,'N'),(584,1344,'N'),(584,1349,'N'),(584,1350,'N'),(584,1355,'N'),(584,1356,'N'),(584,1357,'N'),(584,1358,'N'),(584,1359,'N'),(584,1360,'N'),(584,1363,'N'),(584,1365,'N'),(584,1366,'S'),(584,1367,'N'),(584,1369,'N'),(584,1373,'N'),(584,1377,'N'),(584,1382,'N'),(584,1383,'N'),(584,1388,'N'),(584,1389,'N'),(584,1394,'N'),(584,1395,'N'),(584,1396,'N'),(584,1397,'N'),(584,1398,'N'),(584,1399,'N'),(584,1403,'N'),(584,1405,'N'),(584,1406,'S'),(584,1407,'N'),(584,1409,'N'),(584,1413,'N'),(584,1417,'N'),(584,1422,'N'),(584,1423,'N'),(584,1428,'N'),(584,1429,'N'),(584,1434,'N'),(584,1435,'N'),(584,1436,'N'),(584,1437,'N'),(584,1438,'N'),(584,1439,'N'),(584,1443,'N'),(584,1445,'N'),(584,1446,'S'),(584,1447,'N'),(584,1449,'N'),(584,1453,'N'),(584,1457,'N'),(584,1462,'N'),(584,1463,'N'),(584,1468,'N'),(584,1469,'N'),(584,1474,'N'),(584,1475,'N'),(584,1476,'N'),(584,1477,'N'),(584,1478,'N'),(584,1479,'N'),(584,1483,'N'),(584,1485,'N'),(584,1486,'S'),(584,1487,'N'),(584,1489,'N'),(584,1493,'N'),(584,1497,'N'),(584,1502,'N'),(584,1503,'N'),(584,1508,'N'),(584,1509,'N'),(584,1514,'N'),(584,1515,'N'),(584,1516,'N'),(584,1517,'N'),(584,1518,'N'),(584,1519,'N'),(584,1523,'N'),(584,1525,'N'),(584,1526,'S'),(584,1527,'N'),(584,1529,'N'),(584,1533,'N'),(584,1537,'N'),(584,1542,'N'),(584,1543,'N'),(584,1548,'N'),(584,1549,'N'),(584,1554,'N'),(584,1555,'N'),(584,1556,'N'),(584,1557,'N'),(584,1558,'N'),(584,1559,'N'),(584,1564,'N'),(584,1566,'N'),(584,1567,'S'),(584,1568,'N'),(584,1570,'N'),(584,1573,'N'),(584,1577,'N'),(584,1582,'N'),(584,1583,'N'),(584,1588,'N'),(584,1589,'N'),(584,1594,'N'),(584,1595,'N'),(584,1596,'N'),(584,1597,'N'),(584,1598,'N'),(584,1599,'N'),(584,1604,'N'),(584,1606,'N'),(584,1607,'S'),(584,1608,'N'),(584,1610,'N'),(584,1612,'N'),(584,1616,'N'),(584,1621,'N'),(584,1622,'N'),(584,1627,'N'),(584,1628,'N'),(584,1633,'N'),(584,1634,'N'),(584,1635,'N'),(584,1636,'N'),(584,1637,'N'),(584,1638,'N'),(588,1255,'S'),(588,1292,'S'),(588,1330,'S'),(588,1369,'S'),(588,1409,'S'),(588,1449,'S'),(588,1489,'S'),(588,1529,'S'),(588,1570,'S'),(588,1610,'S'),(589,1249,'N'),(589,1251,'N'),(589,1252,'N'),(589,1253,'N'),(589,1254,'N'),(589,1255,'N'),(589,1257,'N'),(589,1259,'N'),(589,1260,'N'),(589,1261,'N'),(589,1262,'N'),(589,1263,'N'),(589,1264,'N'),(589,1270,'N'),(589,1271,'N'),(589,1272,'S'),(589,1273,'N'),(589,1276,'N'),(589,1277,'N'),(589,1278,'N'),(589,1279,'N'),(589,1282,'N'),(589,1283,'N'),(589,1284,'N'),(589,1285,'N'),(589,1286,'N'),(589,1288,'N'),(589,1289,'N'),(589,1290,'N'),(589,1291,'N'),(589,1292,'N'),(589,1294,'N'),(589,1296,'N'),(589,1297,'N'),(589,1298,'N'),(589,1299,'N'),(589,1300,'N'),(589,1301,'N'),(589,1307,'N'),(589,1308,'N'),(589,1309,'S'),(589,1310,'N'),(589,1313,'N'),(589,1314,'N'),(589,1315,'N'),(589,1316,'N'),(589,1319,'N'),(589,1320,'N'),(589,1321,'N'),(589,1322,'N'),(589,1324,'N'),(589,1326,'N'),(589,1327,'N'),(589,1328,'N'),(589,1329,'N'),(589,1330,'N'),(589,1332,'N'),(589,1334,'N'),(589,1335,'N'),(589,1336,'N'),(589,1337,'N'),(589,1338,'N'),(589,1339,'N'),(589,1345,'N'),(589,1346,'N'),(589,1347,'S'),(589,1348,'N'),(589,1351,'N'),(589,1352,'N'),(589,1353,'N'),(589,1354,'N'),(589,1357,'N'),(589,1358,'N'),(589,1359,'N'),(589,1360,'N'),(589,1363,'N'),(589,1365,'N'),(589,1366,'N'),(589,1367,'N'),(589,1368,'N'),(589,1369,'N'),(589,1371,'N'),(589,1373,'N'),(589,1374,'N'),(589,1375,'N'),(589,1376,'N'),(589,1377,'N'),(589,1378,'N'),(589,1384,'N'),(589,1385,'N'),(589,1386,'S'),(589,1387,'N'),(589,1390,'N'),(589,1391,'N'),(589,1392,'N'),(589,1393,'N'),(589,1396,'N'),(589,1397,'N'),(589,1398,'N'),(589,1399,'N'),(589,1403,'N'),(589,1405,'N'),(589,1406,'N'),(589,1407,'N'),(589,1408,'N'),(589,1409,'N'),(589,1411,'N'),(589,1413,'N'),(589,1414,'N'),(589,1415,'N'),(589,1416,'N'),(589,1417,'N'),(589,1418,'N'),(589,1424,'N'),(589,1425,'N'),(589,1426,'S'),(589,1427,'N'),(589,1430,'N'),(589,1431,'N'),(589,1432,'N'),(589,1433,'N'),(589,1436,'N'),(589,1437,'N'),(589,1438,'N'),(589,1439,'N'),(589,1443,'N'),(589,1445,'N'),(589,1446,'N'),(589,1447,'N'),(589,1448,'N'),(589,1449,'N'),(589,1451,'N'),(589,1453,'N'),(589,1454,'N'),(589,1455,'N'),(589,1456,'N'),(589,1457,'N'),(589,1458,'N'),(589,1464,'N'),(589,1465,'N'),(589,1466,'S'),(589,1467,'N'),(589,1470,'N'),(589,1471,'N'),(589,1472,'N'),(589,1473,'N'),(589,1476,'N'),(589,1477,'N'),(589,1478,'N'),(589,1479,'N'),(589,1483,'N'),(589,1485,'N'),(589,1486,'N'),(589,1487,'N'),(589,1488,'N'),(589,1489,'N'),(589,1491,'N'),(589,1493,'N'),(589,1494,'N'),(589,1495,'N'),(589,1496,'N'),(589,1497,'N'),(589,1498,'N'),(589,1504,'N'),(589,1505,'N'),(589,1506,'S'),(589,1507,'N'),(589,1510,'N'),(589,1511,'N'),(589,1512,'N'),(589,1513,'N'),(589,1516,'N'),(589,1517,'N'),(589,1518,'N'),(589,1519,'N'),(589,1523,'N'),(589,1525,'N'),(589,1526,'N'),(589,1527,'N'),(589,1528,'N'),(589,1529,'N'),(589,1531,'N'),(589,1533,'N'),(589,1534,'N'),(589,1535,'N'),(589,1536,'N'),(589,1537,'N'),(589,1538,'N'),(589,1544,'N'),(589,1545,'N'),(589,1546,'S'),(589,1547,'N'),(589,1550,'N'),(589,1551,'N'),(589,1552,'N'),(589,1553,'N'),(589,1556,'N'),(589,1557,'N'),(589,1558,'N'),(589,1559,'N'),(589,1564,'N'),(589,1566,'N'),(589,1567,'N'),(589,1568,'N'),(589,1569,'N'),(589,1570,'N'),(589,1571,'N'),(589,1573,'N'),(589,1574,'N'),(589,1575,'N'),(589,1576,'N'),(589,1577,'N'),(589,1578,'N'),(589,1584,'N'),(589,1585,'N'),(589,1586,'S'),(589,1587,'N'),(589,1590,'N'),(589,1591,'N'),(589,1592,'N'),(589,1593,'N'),(589,1596,'N'),(589,1597,'N'),(589,1598,'N'),(589,1599,'N'),(589,1604,'N'),(589,1606,'N'),(589,1607,'N'),(589,1608,'N'),(589,1609,'N'),(589,1610,'N'),(589,1611,'N'),(589,1612,'N'),(589,1613,'N'),(589,1614,'N'),(589,1615,'N'),(589,1616,'N'),(589,1617,'N'),(589,1623,'N'),(589,1624,'N'),(589,1625,'S'),(589,1626,'N'),(589,1629,'N'),(589,1630,'N'),(589,1631,'N'),(589,1632,'N'),(589,1635,'N'),(589,1636,'N'),(589,1637,'N'),(589,1638,'N'),(593,1255,'S'),(593,1292,'S'),(593,1330,'S'),(593,1369,'S'),(593,1409,'S'),(593,1449,'S'),(593,1489,'S'),(593,1529,'S'),(593,1570,'S'),(593,1610,'S'),(594,1252,'S'),(594,1289,'S'),(594,1327,'S'),(594,1366,'S'),(594,1406,'S'),(594,1446,'S'),(594,1486,'S'),(594,1526,'S'),(594,1567,'S'),(594,1607,'S'),(595,1249,'N'),(595,1251,'N'),(595,1252,'N'),(595,1253,'N'),(595,1254,'N'),(595,1255,'N'),(595,1257,'N'),(595,1259,'N'),(595,1260,'N'),(595,1261,'N'),(595,1262,'N'),(595,1263,'N'),(595,1264,'N'),(595,1270,'N'),(595,1271,'N'),(595,1272,'S'),(595,1273,'N'),(595,1276,'N'),(595,1277,'N'),(595,1278,'N'),(595,1279,'N'),(595,1282,'N'),(595,1283,'N'),(595,1284,'N'),(595,1285,'N'),(595,1286,'N'),(595,1288,'N'),(595,1289,'N'),(595,1290,'N'),(595,1291,'N'),(595,1292,'N'),(595,1294,'N'),(595,1296,'N'),(595,1297,'N'),(595,1298,'N'),(595,1299,'N'),(595,1300,'N'),(595,1301,'N'),(595,1307,'N'),(595,1308,'N'),(595,1309,'S'),(595,1310,'N'),(595,1313,'N'),(595,1314,'N'),(595,1315,'N'),(595,1316,'N'),(595,1319,'N'),(595,1320,'N'),(595,1321,'N'),(595,1322,'N'),(595,1323,'N'),(595,1324,'N'),(595,1326,'N'),(595,1327,'N'),(595,1328,'N'),(595,1329,'N'),(595,1330,'N'),(595,1332,'N'),(595,1334,'N'),(595,1335,'N'),(595,1336,'N'),(595,1337,'N'),(595,1338,'N'),(595,1339,'N'),(595,1345,'N'),(595,1346,'N'),(595,1347,'S'),(595,1348,'N'),(595,1351,'N'),(595,1352,'N'),(595,1353,'N'),(595,1354,'N'),(595,1357,'N'),(595,1358,'N'),(595,1359,'N'),(595,1360,'N'),(595,1361,'N'),(595,1363,'N'),(595,1365,'N'),(595,1366,'N'),(595,1367,'N'),(595,1368,'N'),(595,1369,'N'),(595,1371,'N'),(595,1373,'N'),(595,1374,'N'),(595,1375,'N'),(595,1376,'N'),(595,1377,'N'),(595,1378,'N'),(595,1384,'N'),(595,1385,'N'),(595,1386,'S'),(595,1387,'N'),(595,1390,'N'),(595,1391,'N'),(595,1392,'N'),(595,1393,'N'),(595,1396,'N'),(595,1397,'N'),(595,1398,'N'),(595,1399,'N'),(595,1400,'N'),(595,1403,'N'),(595,1405,'N'),(595,1406,'N'),(595,1407,'N'),(595,1408,'N'),(595,1409,'N'),(595,1411,'N'),(595,1413,'N'),(595,1414,'N'),(595,1415,'N'),(595,1416,'N'),(595,1417,'N'),(595,1418,'N'),(595,1424,'N'),(595,1425,'N'),(595,1426,'S'),(595,1427,'N'),(595,1430,'N'),(595,1431,'N'),(595,1432,'N'),(595,1433,'N'),(595,1436,'N'),(595,1437,'N'),(595,1438,'N'),(595,1439,'N'),(595,1440,'N'),(595,1443,'N'),(595,1445,'N'),(595,1446,'N'),(595,1447,'N'),(595,1448,'N'),(595,1449,'N'),(595,1451,'N'),(595,1453,'N'),(595,1454,'N'),(595,1455,'N'),(595,1456,'N'),(595,1457,'N'),(595,1458,'N'),(595,1464,'N'),(595,1465,'N'),(595,1466,'S'),(595,1467,'N'),(595,1470,'N'),(595,1471,'N'),(595,1472,'N'),(595,1473,'N'),(595,1476,'N'),(595,1477,'N'),(595,1478,'N'),(595,1479,'N'),(595,1480,'N'),(595,1483,'N'),(595,1485,'N'),(595,1486,'N'),(595,1487,'N'),(595,1488,'N'),(595,1489,'N'),(595,1491,'N'),(595,1493,'N'),(595,1494,'N'),(595,1495,'N'),(595,1496,'N'),(595,1497,'N'),(595,1498,'N'),(595,1504,'N'),(595,1505,'N'),(595,1506,'S'),(595,1507,'N'),(595,1510,'N'),(595,1511,'N'),(595,1512,'N'),(595,1513,'N'),(595,1516,'N'),(595,1517,'N'),(595,1518,'N'),(595,1519,'N'),(595,1520,'N'),(595,1523,'N'),(595,1525,'N'),(595,1526,'N'),(595,1527,'N'),(595,1528,'N'),(595,1529,'N'),(595,1531,'N'),(595,1533,'N'),(595,1534,'N'),(595,1535,'N'),(595,1536,'N'),(595,1537,'N'),(595,1538,'N'),(595,1544,'N'),(595,1545,'N'),(595,1546,'S'),(595,1547,'N'),(595,1550,'N'),(595,1551,'N'),(595,1552,'N'),(595,1553,'N'),(595,1556,'N'),(595,1557,'N'),(595,1558,'N'),(595,1559,'N'),(595,1560,'N'),(595,1564,'N'),(595,1566,'N'),(595,1567,'N'),(595,1568,'N'),(595,1569,'N'),(595,1570,'N'),(595,1571,'N'),(595,1573,'N'),(595,1574,'N'),(595,1575,'N'),(595,1576,'N'),(595,1577,'N'),(595,1578,'N'),(595,1584,'N'),(595,1585,'N'),(595,1586,'S'),(595,1587,'N'),(595,1590,'N'),(595,1591,'N'),(595,1592,'N'),(595,1593,'N'),(595,1596,'N'),(595,1597,'N'),(595,1598,'N'),(595,1599,'N'),(595,1600,'N'),(595,1604,'N'),(595,1606,'N'),(595,1607,'N'),(595,1608,'N'),(595,1609,'N'),(595,1610,'N'),(595,1611,'N'),(595,1612,'N'),(595,1613,'N'),(595,1614,'N'),(595,1615,'N'),(595,1616,'N'),(595,1617,'N'),(595,1623,'N'),(595,1624,'N'),(595,1625,'S'),(595,1626,'N'),(595,1629,'N'),(595,1630,'N'),(595,1631,'N'),(595,1632,'N'),(595,1635,'N'),(595,1636,'N'),(595,1637,'N'),(595,1638,'N'),(595,1639,'N'),(598,1286,'N'),(598,1288,'N'),(598,1289,'N'),(598,1290,'N'),(598,1291,'N'),(598,1292,'N'),(598,1294,'N'),(598,1296,'N'),(598,1297,'N'),(598,1298,'N'),(598,1299,'N'),(598,1300,'N'),(598,1301,'N'),(598,1305,'N'),(598,1306,'N'),(598,1307,'N'),(598,1308,'N'),(598,1309,'S'),(598,1310,'N'),(598,1311,'N'),(598,1312,'N'),(598,1313,'N'),(598,1314,'N'),(598,1315,'N'),(598,1316,'N'),(598,1317,'N'),(598,1318,'N'),(598,1319,'N'),(598,1320,'N'),(598,1321,'N'),(598,1322,'N'),(598,1323,'N'),(598,1324,'N'),(598,1326,'N'),(598,1327,'N'),(598,1328,'N'),(598,1329,'N'),(598,1330,'N'),(598,1332,'N'),(598,1334,'N'),(598,1335,'N'),(598,1336,'N'),(598,1337,'N'),(598,1338,'N'),(598,1339,'N'),(598,1343,'N'),(598,1344,'N'),(598,1345,'N'),(598,1346,'N'),(598,1347,'S'),(598,1348,'N'),(598,1349,'N'),(598,1350,'N'),(598,1351,'N'),(598,1352,'N'),(598,1353,'N'),(598,1354,'N'),(598,1355,'N'),(598,1356,'N'),(598,1357,'N'),(598,1358,'N'),(598,1359,'N'),(598,1360,'N'),(598,1361,'N'),(598,1363,'N'),(598,1365,'N'),(598,1366,'N'),(598,1367,'N'),(598,1368,'N'),(598,1369,'N'),(598,1371,'N'),(598,1373,'N'),(598,1374,'N'),(598,1375,'N'),(598,1376,'N'),(598,1377,'N'),(598,1378,'N'),(598,1382,'N'),(598,1383,'N'),(598,1384,'N'),(598,1385,'N'),(598,1386,'S'),(598,1387,'N'),(598,1388,'N'),(598,1389,'N'),(598,1390,'N'),(598,1391,'N'),(598,1392,'N'),(598,1393,'N'),(598,1394,'N'),(598,1395,'N'),(598,1396,'N'),(598,1397,'N'),(598,1398,'N'),(598,1399,'N'),(598,1400,'N'),(598,1403,'N'),(598,1405,'N'),(598,1406,'N'),(598,1407,'N'),(598,1408,'N'),(598,1409,'N'),(598,1411,'N'),(598,1413,'N'),(598,1414,'N'),(598,1415,'N'),(598,1416,'N'),(598,1417,'N'),(598,1418,'N'),(598,1422,'N'),(598,1423,'N'),(598,1424,'N'),(598,1425,'N'),(598,1426,'S'),(598,1427,'N'),(598,1428,'N'),(598,1429,'N'),(598,1430,'N'),(598,1431,'N'),(598,1432,'N'),(598,1433,'N'),(598,1434,'N'),(598,1435,'N'),(598,1436,'N'),(598,1437,'N'),(598,1438,'N'),(598,1439,'N'),(598,1440,'N'),(598,1443,'N'),(598,1445,'N'),(598,1446,'N'),(598,1447,'N'),(598,1448,'N'),(598,1449,'N'),(598,1451,'N'),(598,1453,'N'),(598,1454,'N'),(598,1455,'N'),(598,1456,'N'),(598,1457,'N'),(598,1458,'N'),(598,1462,'N'),(598,1463,'N'),(598,1464,'N'),(598,1465,'N'),(598,1466,'S'),(598,1467,'N'),(598,1468,'N'),(598,1469,'N'),(598,1470,'N'),(598,1471,'N'),(598,1472,'N'),(598,1473,'N'),(598,1474,'N'),(598,1475,'N'),(598,1476,'N'),(598,1477,'N'),(598,1478,'N'),(598,1479,'N'),(598,1480,'N'),(598,1483,'N'),(598,1485,'N'),(598,1486,'N'),(598,1487,'N'),(598,1488,'N'),(598,1489,'N'),(598,1491,'N'),(598,1493,'N'),(598,1494,'N'),(598,1495,'N'),(598,1496,'N'),(598,1497,'N'),(598,1498,'N'),(598,1502,'N'),(598,1503,'N'),(598,1504,'N'),(598,1505,'N'),(598,1506,'S'),(598,1507,'N'),(598,1508,'N'),(598,1509,'N'),(598,1510,'N'),(598,1511,'N'),(598,1512,'N'),(598,1513,'N'),(598,1514,'N'),(598,1515,'N'),(598,1516,'N'),(598,1517,'N'),(598,1518,'N'),(598,1519,'N'),(598,1520,'N'),(598,1523,'N'),(598,1525,'N'),(598,1526,'N'),(598,1527,'N'),(598,1528,'N'),(598,1529,'N'),(598,1531,'N'),(598,1533,'N'),(598,1534,'N'),(598,1535,'N'),(598,1536,'N'),(598,1537,'N'),(598,1538,'N'),(598,1542,'N'),(598,1543,'N'),(598,1544,'N'),(598,1545,'N'),(598,1546,'S'),(598,1547,'N'),(598,1548,'N'),(598,1549,'N'),(598,1550,'N'),(598,1551,'N'),(598,1552,'N'),(598,1553,'N'),(598,1554,'N'),(598,1555,'N'),(598,1556,'N'),(598,1557,'N'),(598,1558,'N'),(598,1559,'N'),(598,1560,'N'),(598,1564,'N'),(598,1566,'N'),(598,1567,'N'),(598,1568,'N'),(598,1569,'N'),(598,1570,'N'),(598,1571,'N'),(598,1573,'N'),(598,1574,'N'),(598,1575,'N'),(598,1576,'N'),(598,1577,'N'),(598,1578,'N'),(598,1582,'N'),(598,1583,'N'),(598,1584,'N'),(598,1585,'N'),(598,1586,'S'),(598,1587,'N'),(598,1588,'N'),(598,1589,'N'),(598,1590,'N'),(598,1591,'N'),(598,1592,'N'),(598,1593,'N'),(598,1594,'N'),(598,1595,'N'),(598,1596,'N'),(598,1597,'N'),(598,1598,'N'),(598,1599,'N'),(598,1600,'N'),(598,1604,'N'),(598,1606,'N'),(598,1607,'N'),(598,1608,'N'),(598,1609,'N'),(598,1610,'N'),(598,1611,'N'),(598,1612,'N'),(598,1613,'N'),(598,1614,'N'),(598,1615,'N'),(598,1616,'N'),(598,1617,'N'),(598,1621,'N'),(598,1622,'N'),(598,1627,'N'),(598,1628,'N'),(598,1633,'N'),(598,1634,'N'),(598,1635,'N'),(598,1636,'N'),(598,1637,'N'),(598,1638,'N'),(598,1639,'N'),(598,1640,'N'),(598,1641,'N'),(600,1300,'S'),(600,1338,'S'),(600,1377,'S'),(600,1417,'S'),(600,1457,'S'),(600,1497,'S'),(600,1537,'S'),(600,1577,'S'),(600,1616,'S'),(601,1288,'N'),(601,1289,'N'),(601,1290,'S'),(601,1291,'N'),(601,1292,'N'),(601,1294,'N'),(601,1295,'N'),(601,1296,'N'),(601,1297,'N'),(601,1298,'N'),(601,1299,'N'),(601,1300,'N'),(601,1301,'N'),(601,1305,'N'),(601,1306,'N'),(601,1311,'N'),(601,1312,'N'),(601,1317,'N'),(601,1318,'N'),(601,1319,'N'),(601,1320,'N'),(601,1321,'N'),(601,1322,'N'),(601,1326,'N'),(601,1327,'N'),(601,1328,'S'),(601,1329,'N'),(601,1330,'N'),(601,1332,'N'),(601,1333,'N'),(601,1334,'N'),(601,1335,'N'),(601,1336,'N'),(601,1337,'N'),(601,1338,'N'),(601,1339,'N'),(601,1343,'N'),(601,1344,'N'),(601,1349,'N'),(601,1350,'N'),(601,1355,'N'),(601,1356,'N'),(601,1357,'N'),(601,1358,'N'),(601,1359,'N'),(601,1360,'N'),(601,1365,'N'),(601,1366,'N'),(601,1367,'S'),(601,1368,'N'),(601,1369,'N'),(601,1371,'N'),(601,1372,'N'),(601,1373,'N'),(601,1374,'N'),(601,1375,'N'),(601,1376,'N'),(601,1377,'N'),(601,1378,'N'),(601,1382,'N'),(601,1383,'N'),(601,1388,'N'),(601,1389,'N'),(601,1394,'N'),(601,1395,'N'),(601,1396,'N'),(601,1397,'N'),(601,1398,'N'),(601,1399,'N'),(601,1405,'N'),(601,1406,'N'),(601,1407,'S'),(601,1408,'N'),(601,1409,'N'),(601,1411,'N'),(601,1412,'N'),(601,1413,'N'),(601,1414,'N'),(601,1415,'N'),(601,1416,'N'),(601,1417,'N'),(601,1418,'N'),(601,1422,'N'),(601,1423,'N'),(601,1428,'N'),(601,1429,'N'),(601,1434,'N'),(601,1435,'N'),(601,1436,'N'),(601,1437,'N'),(601,1438,'N'),(601,1439,'N'),(601,1445,'N'),(601,1446,'N'),(601,1447,'S'),(601,1448,'N'),(601,1449,'N'),(601,1451,'N'),(601,1452,'N'),(601,1453,'N'),(601,1454,'N'),(601,1455,'N'),(601,1456,'N'),(601,1457,'N'),(601,1458,'N'),(601,1462,'N'),(601,1463,'N'),(601,1468,'N'),(601,1469,'N'),(601,1474,'N'),(601,1475,'N'),(601,1476,'N'),(601,1477,'N'),(601,1478,'N'),(601,1479,'N'),(601,1485,'N'),(601,1486,'N'),(601,1487,'S'),(601,1488,'N'),(601,1489,'N'),(601,1491,'N'),(601,1492,'N'),(601,1493,'N'),(601,1494,'N'),(601,1495,'N'),(601,1496,'N'),(601,1497,'N'),(601,1498,'N'),(601,1502,'N'),(601,1503,'N'),(601,1508,'N'),(601,1509,'N'),(601,1514,'N'),(601,1515,'N'),(601,1516,'N'),(601,1517,'N'),(601,1518,'N'),(601,1519,'N'),(601,1521,'N'),(601,1522,'N'),(601,1525,'N'),(601,1526,'N'),(601,1527,'S'),(601,1528,'N'),(601,1529,'N'),(601,1531,'N'),(601,1533,'N'),(601,1534,'N'),(601,1535,'N'),(601,1536,'N'),(601,1537,'N'),(601,1538,'N'),(601,1542,'N'),(601,1543,'N'),(601,1548,'N'),(601,1549,'N'),(601,1554,'N'),(601,1555,'N'),(601,1556,'N'),(601,1557,'N'),(601,1558,'N'),(601,1559,'N'),(601,1561,'N'),(601,1562,'N'),(601,1566,'N'),(601,1567,'N'),(601,1568,'S'),(601,1569,'N'),(601,1570,'N'),(601,1571,'N'),(601,1573,'N'),(601,1574,'N'),(601,1575,'N'),(601,1576,'N'),(601,1577,'N'),(601,1578,'N'),(601,1582,'N'),(601,1583,'N'),(601,1588,'N'),(601,1589,'N'),(601,1594,'N'),(601,1595,'N'),(601,1596,'N'),(601,1597,'N'),(601,1598,'N'),(601,1599,'N'),(601,1601,'N'),(601,1602,'N'),(601,1606,'N'),(601,1607,'N'),(601,1608,'S'),(601,1609,'N'),(601,1610,'N'),(601,1611,'N'),(601,1612,'N'),(601,1613,'N'),(601,1614,'N'),(601,1615,'N'),(601,1616,'N'),(601,1617,'N'),(601,1621,'N'),(601,1622,'N'),(601,1627,'N'),(601,1628,'N'),(601,1633,'N'),(601,1634,'N'),(601,1635,'N'),(601,1636,'N'),(601,1637,'N'),(601,1638,'N'),(601,1640,'N'),(601,1641,'N'),(614,1301,'S'),(614,1339,'S'),(614,1378,'S'),(614,1418,'S'),(614,1458,'S'),(614,1498,'S'),(614,1538,'S'),(614,1578,'S'),(614,1617,'S'),(615,1292,'S'),(615,1330,'S'),(615,1369,'S'),(615,1409,'S'),(615,1449,'S'),(615,1489,'S'),(615,1529,'S'),(615,1570,'S'),(615,1610,'S'),(616,1286,'N'),(616,1287,'N'),(616,1288,'N'),(616,1289,'N'),(616,1290,'N'),(616,1292,'N'),(616,1293,'S'),(616,1294,'N'),(616,1295,'N'),(616,1296,'N'),(616,1297,'N'),(616,1298,'N'),(616,1299,'N'),(616,1300,'N'),(616,1301,'N'),(616,1302,'N'),(616,1324,'N'),(616,1325,'N'),(616,1326,'N'),(616,1327,'N'),(616,1328,'N'),(616,1330,'N'),(616,1331,'S'),(616,1332,'N'),(616,1333,'N'),(616,1334,'N'),(616,1335,'N'),(616,1336,'N'),(616,1337,'N'),(616,1338,'N'),(616,1339,'N'),(616,1340,'N'),(616,1363,'N'),(616,1364,'N'),(616,1365,'N'),(616,1366,'N'),(616,1367,'N'),(616,1369,'N'),(616,1370,'S'),(616,1371,'N'),(616,1372,'N'),(616,1373,'N'),(616,1374,'N'),(616,1375,'N'),(616,1376,'N'),(616,1377,'N'),(616,1378,'N'),(616,1379,'N'),(616,1403,'N'),(616,1404,'N'),(616,1405,'N'),(616,1406,'N'),(616,1407,'N'),(616,1409,'N'),(616,1410,'S'),(616,1411,'N'),(616,1412,'N'),(616,1413,'N'),(616,1414,'N'),(616,1415,'N'),(616,1416,'N'),(616,1417,'N'),(616,1418,'N'),(616,1419,'N'),(616,1443,'N'),(616,1444,'N'),(616,1445,'N'),(616,1446,'N'),(616,1447,'N'),(616,1449,'N'),(616,1450,'S'),(616,1451,'N'),(616,1452,'N'),(616,1453,'N'),(616,1454,'N'),(616,1455,'N'),(616,1456,'N'),(616,1457,'N'),(616,1458,'N'),(616,1459,'N'),(616,1483,'N'),(616,1484,'N'),(616,1485,'N'),(616,1486,'N'),(616,1487,'N'),(616,1489,'N'),(616,1490,'S'),(616,1491,'N'),(616,1492,'N'),(616,1493,'N'),(616,1494,'N'),(616,1495,'N'),(616,1496,'N'),(616,1497,'N'),(616,1498,'N'),(616,1499,'N'),(616,1523,'N'),(616,1524,'N'),(616,1525,'N'),(616,1526,'N'),(616,1527,'S'),(616,1529,'N'),(616,1531,'N'),(616,1533,'N'),(616,1534,'N'),(616,1535,'N'),(616,1536,'N'),(616,1537,'N'),(616,1538,'N'),(616,1539,'N'),(616,1564,'N'),(616,1565,'N'),(616,1566,'N'),(616,1567,'N'),(616,1568,'S'),(616,1570,'N'),(616,1571,'N'),(616,1573,'N'),(616,1574,'N'),(616,1575,'N'),(616,1576,'N'),(616,1577,'N'),(616,1578,'N'),(616,1579,'N'),(616,1604,'N'),(616,1605,'N'),(616,1606,'N'),(616,1607,'N'),(616,1608,'S'),(616,1610,'N'),(616,1611,'N'),(616,1612,'N'),(616,1613,'N'),(616,1614,'N'),(616,1615,'N'),(616,1616,'N'),(616,1617,'N'),(616,1618,'N'),(618,1286,'N'),(618,1287,'N'),(618,1288,'N'),(618,1289,'N'),(618,1290,'S'),(618,1292,'N'),(618,1293,'N'),(618,1294,'N'),(618,1295,'N'),(618,1296,'N'),(618,1297,'N'),(618,1298,'N'),(618,1299,'N'),(618,1300,'N'),(618,1301,'N'),(618,1324,'N'),(618,1325,'N'),(618,1326,'N'),(618,1327,'N'),(618,1328,'S'),(618,1330,'N'),(618,1331,'N'),(618,1332,'N'),(618,1333,'N'),(618,1334,'N'),(618,1335,'N'),(618,1336,'N'),(618,1337,'N'),(618,1338,'N'),(618,1339,'N'),(618,1363,'N'),(618,1364,'N'),(618,1365,'N'),(618,1366,'N'),(618,1367,'S'),(618,1369,'N'),(618,1370,'N'),(618,1371,'N'),(618,1372,'N'),(618,1373,'N'),(618,1374,'N'),(618,1375,'N'),(618,1376,'N'),(618,1377,'N'),(618,1378,'N'),(618,1403,'N'),(618,1404,'N'),(618,1405,'N'),(618,1406,'N'),(618,1407,'S'),(618,1409,'N'),(618,1410,'N'),(618,1411,'N'),(618,1412,'N'),(618,1413,'N'),(618,1414,'N'),(618,1415,'N'),(618,1416,'N'),(618,1417,'N'),(618,1418,'N'),(618,1443,'N'),(618,1444,'N'),(618,1445,'N'),(618,1446,'N'),(618,1447,'S'),(618,1449,'N'),(618,1450,'N'),(618,1451,'N'),(618,1452,'N'),(618,1453,'N'),(618,1454,'N'),(618,1455,'N'),(618,1456,'N'),(618,1457,'N'),(618,1458,'N'),(618,1483,'N'),(618,1484,'N'),(618,1485,'N'),(618,1486,'N'),(618,1487,'S'),(618,1489,'N'),(618,1490,'N'),(618,1491,'N'),(618,1492,'N'),(618,1493,'N'),(618,1494,'N'),(618,1495,'N'),(618,1496,'N'),(618,1497,'N'),(618,1498,'N'),(618,1523,'N'),(618,1524,'N'),(618,1525,'N'),(618,1526,'N'),(618,1527,'S'),(618,1528,'N'),(618,1529,'N'),(618,1531,'N'),(618,1533,'N'),(618,1534,'N'),(618,1535,'N'),(618,1536,'N'),(618,1537,'N'),(618,1538,'N'),(618,1540,'N'),(618,1541,'N'),(618,1542,'N'),(618,1543,'N'),(618,1544,'N'),(618,1545,'N'),(618,1546,'N'),(618,1547,'N'),(618,1548,'N'),(618,1549,'N'),(618,1550,'N'),(618,1551,'N'),(618,1552,'N'),(618,1553,'N'),(618,1554,'N'),(618,1555,'N'),(618,1556,'N'),(618,1557,'N'),(618,1558,'N'),(618,1559,'N'),(618,1560,'N'),(618,1561,'N'),(618,1562,'N'),(618,1563,'N'),(618,1564,'N'),(618,1565,'N'),(618,1566,'N'),(618,1567,'N'),(618,1568,'S'),(618,1569,'N'),(618,1570,'N'),(618,1571,'N'),(618,1573,'N'),(618,1574,'N'),(618,1575,'N'),(618,1576,'N'),(618,1577,'N'),(618,1578,'N'),(618,1580,'N'),(618,1581,'N'),(618,1582,'N'),(618,1583,'N'),(618,1584,'N'),(618,1585,'N'),(618,1586,'N'),(618,1587,'N'),(618,1588,'N'),(618,1589,'N'),(618,1590,'N'),(618,1591,'N'),(618,1592,'N'),(618,1593,'N'),(618,1594,'N'),(618,1595,'N'),(618,1596,'N'),(618,1597,'N'),(618,1598,'N'),(618,1599,'N'),(618,1600,'N'),(618,1601,'N'),(618,1602,'N'),(618,1603,'N'),(618,1604,'N'),(618,1605,'N'),(618,1606,'N'),(618,1607,'S'),(618,1608,'N'),(618,1609,'N'),(618,1610,'N'),(618,1611,'N'),(618,1612,'N'),(618,1613,'N'),(618,1614,'N'),(618,1615,'N'),(618,1616,'N'),(618,1617,'N'),(618,1619,'N'),(618,1620,'N'),(618,1621,'N'),(618,1622,'N'),(618,1623,'N'),(618,1624,'N'),(618,1625,'N'),(618,1626,'N'),(618,1627,'N'),(618,1628,'N'),(618,1629,'N'),(618,1630,'N'),(618,1631,'N'),(618,1632,'N'),(618,1633,'N'),(618,1634,'N'),(618,1635,'N'),(618,1636,'N'),(618,1637,'N'),(618,1638,'N'),(618,1639,'N'),(618,1640,'N'),(618,1641,'N'),(618,1642,'N'),(621,1286,'S'),(621,1324,'S'),(621,1363,'S'),(621,1403,'S'),(621,1443,'S'),(621,1483,'S'),(621,1523,'S'),(621,1564,'S'),(621,1604,'S'),(622,1287,'S'),(622,1325,'S'),(622,1364,'S'),(622,1404,'S'),(622,1444,'S'),(622,1484,'S'),(622,1524,'S'),(622,1565,'S'),(622,1605,'S'),(624,1296,'S'),(624,1334,'S'),(624,1373,'S'),(624,1413,'S'),(624,1453,'S'),(624,1493,'S'),(624,1533,'S'),(624,1573,'S'),(624,1612,'S'),(625,1286,'N'),(625,1287,'N'),(625,1288,'N'),(625,1289,'S'),(625,1290,'N'),(625,1291,'N'),(625,1292,'N'),(625,1293,'N'),(625,1294,'N'),(625,1295,'N'),(625,1296,'N'),(625,1297,'N'),(625,1298,'N'),(625,1299,'N'),(625,1300,'N'),(625,1301,'N'),(625,1305,'N'),(625,1306,'N'),(625,1311,'N'),(625,1312,'N'),(625,1317,'N'),(625,1318,'N'),(625,1319,'N'),(625,1320,'N'),(625,1321,'N'),(625,1322,'N'),(625,1324,'N'),(625,1325,'N'),(625,1326,'N'),(625,1327,'S'),(625,1328,'N'),(625,1329,'N'),(625,1330,'N'),(625,1331,'N'),(625,1332,'N'),(625,1333,'N'),(625,1334,'N'),(625,1335,'N'),(625,1336,'N'),(625,1337,'N'),(625,1338,'N'),(625,1339,'N'),(625,1343,'N'),(625,1344,'N'),(625,1349,'N'),(625,1350,'N'),(625,1355,'N'),(625,1356,'N'),(625,1357,'N'),(625,1358,'N'),(625,1359,'N'),(625,1360,'N'),(625,1363,'N'),(625,1364,'N'),(625,1365,'N'),(625,1366,'S'),(625,1367,'N'),(625,1368,'N'),(625,1369,'N'),(625,1370,'N'),(625,1371,'N'),(625,1372,'N'),(625,1373,'N'),(625,1374,'N'),(625,1375,'N'),(625,1376,'N'),(625,1377,'N'),(625,1378,'N'),(625,1382,'N'),(625,1383,'N'),(625,1388,'N'),(625,1389,'N'),(625,1394,'N'),(625,1395,'N'),(625,1396,'N'),(625,1397,'N'),(625,1398,'N'),(625,1399,'N'),(625,1403,'N'),(625,1404,'N'),(625,1405,'N'),(625,1406,'S'),(625,1407,'N'),(625,1408,'N'),(625,1409,'N'),(625,1410,'N'),(625,1411,'N'),(625,1412,'N'),(625,1413,'N'),(625,1414,'N'),(625,1415,'N'),(625,1416,'N'),(625,1417,'N'),(625,1418,'N'),(625,1422,'N'),(625,1423,'N'),(625,1428,'N'),(625,1429,'N'),(625,1434,'N'),(625,1435,'N'),(625,1436,'N'),(625,1437,'N'),(625,1438,'N'),(625,1439,'N'),(625,1443,'N'),(625,1444,'N'),(625,1445,'N'),(625,1446,'S'),(625,1447,'N'),(625,1448,'N'),(625,1449,'N'),(625,1450,'N'),(625,1451,'N'),(625,1452,'N'),(625,1453,'N'),(625,1454,'N'),(625,1455,'N'),(625,1456,'N'),(625,1457,'N'),(625,1458,'N'),(625,1462,'N'),(625,1463,'N'),(625,1468,'N'),(625,1469,'N'),(625,1474,'N'),(625,1475,'N'),(625,1476,'N'),(625,1477,'N'),(625,1478,'N'),(625,1479,'N'),(625,1483,'N'),(625,1484,'N'),(625,1485,'N'),(625,1486,'S'),(625,1487,'N'),(625,1488,'N'),(625,1489,'N'),(625,1491,'N'),(625,1493,'N'),(625,1494,'N'),(625,1495,'N'),(625,1496,'N'),(625,1497,'N'),(625,1498,'N'),(625,1502,'N'),(625,1503,'N'),(625,1508,'N'),(625,1509,'N'),(625,1514,'N'),(625,1515,'N'),(625,1516,'N'),(625,1517,'N'),(625,1518,'N'),(625,1519,'N'),(625,1523,'N'),(625,1524,'N'),(625,1525,'N'),(625,1526,'S'),(625,1527,'N'),(625,1528,'N'),(625,1529,'N'),(625,1531,'N'),(625,1533,'N'),(625,1534,'N'),(625,1535,'N'),(625,1536,'N'),(625,1537,'N'),(625,1538,'N'),(625,1542,'N'),(625,1543,'N'),(625,1548,'N'),(625,1549,'N'),(625,1554,'N'),(625,1555,'N'),(625,1556,'N'),(625,1557,'N'),(625,1558,'N'),(625,1559,'N'),(625,1564,'N'),(625,1565,'N'),(625,1566,'N'),(625,1567,'S'),(625,1568,'N'),(625,1569,'N'),(625,1570,'N'),(625,1571,'N'),(625,1573,'N'),(625,1574,'N'),(625,1575,'N'),(625,1576,'N'),(625,1577,'N'),(625,1578,'N'),(625,1582,'N'),(625,1583,'N'),(625,1588,'N'),(625,1589,'N'),(625,1594,'N'),(625,1595,'N'),(625,1596,'N'),(625,1597,'N'),(625,1598,'N'),(625,1599,'N'),(625,1604,'N'),(625,1605,'N'),(625,1606,'N'),(625,1607,'S'),(625,1608,'N'),(625,1609,'N'),(625,1610,'N'),(625,1611,'N'),(625,1612,'N'),(625,1613,'N'),(625,1614,'N'),(625,1615,'N'),(625,1616,'N'),(625,1617,'N'),(625,1621,'N'),(625,1622,'N'),(625,1627,'N'),(625,1628,'N'),(625,1633,'N'),(625,1634,'N'),(625,1635,'N'),(625,1636,'N'),(625,1637,'N'),(625,1638,'N'),(625,1640,'N'),(625,1641,'N'),(628,1286,'S'),(628,1324,'S'),(628,1363,'S'),(628,1403,'S'),(628,1443,'S'),(628,1483,'S'),(628,1523,'S'),(628,1564,'S'),(628,1604,'S'),(629,1287,'S'),(629,1325,'S'),(629,1364,'S'),(629,1404,'S'),(629,1444,'S'),(629,1484,'S'),(629,1524,'S'),(629,1565,'S'),(629,1605,'S'),(630,1296,'S'),(630,1334,'S'),(630,1373,'S'),(630,1413,'S'),(630,1453,'S'),(630,1493,'S'),(630,1533,'S'),(630,1573,'S'),(630,1612,'S'),(631,1286,'N'),(631,1287,'N'),(631,1288,'N'),(631,1289,'S'),(631,1290,'N'),(631,1291,'N'),(631,1292,'N'),(631,1293,'N'),(631,1294,'N'),(631,1295,'N'),(631,1296,'N'),(631,1297,'N'),(631,1298,'N'),(631,1299,'N'),(631,1300,'N'),(631,1301,'N'),(631,1305,'N'),(631,1306,'N'),(631,1311,'N'),(631,1312,'N'),(631,1317,'N'),(631,1318,'N'),(631,1319,'N'),(631,1320,'N'),(631,1321,'N'),(631,1322,'N'),(631,1324,'N'),(631,1325,'N'),(631,1326,'N'),(631,1327,'S'),(631,1328,'N'),(631,1329,'N'),(631,1330,'N'),(631,1331,'N'),(631,1332,'N'),(631,1333,'N'),(631,1334,'N'),(631,1335,'N'),(631,1336,'N'),(631,1337,'N'),(631,1338,'N'),(631,1339,'N'),(631,1343,'N'),(631,1344,'N'),(631,1349,'N'),(631,1350,'N'),(631,1355,'N'),(631,1356,'N'),(631,1357,'N'),(631,1358,'N'),(631,1359,'N'),(631,1360,'N'),(631,1363,'N'),(631,1364,'N'),(631,1365,'N'),(631,1366,'S'),(631,1367,'N'),(631,1368,'N'),(631,1369,'N'),(631,1370,'N'),(631,1371,'N'),(631,1372,'N'),(631,1373,'N'),(631,1374,'N'),(631,1375,'N'),(631,1376,'N'),(631,1377,'N'),(631,1378,'N'),(631,1382,'N'),(631,1383,'N'),(631,1388,'N'),(631,1389,'N'),(631,1394,'N'),(631,1395,'N'),(631,1396,'N'),(631,1397,'N'),(631,1398,'N'),(631,1399,'N'),(631,1403,'N'),(631,1404,'N'),(631,1405,'N'),(631,1406,'S'),(631,1407,'N'),(631,1408,'N'),(631,1409,'N'),(631,1410,'N'),(631,1411,'N'),(631,1412,'N'),(631,1413,'N'),(631,1414,'N'),(631,1415,'N'),(631,1416,'N'),(631,1417,'N'),(631,1418,'N'),(631,1422,'N'),(631,1423,'N'),(631,1428,'N'),(631,1429,'N'),(631,1434,'N'),(631,1435,'N'),(631,1436,'N'),(631,1437,'N'),(631,1438,'N'),(631,1439,'N'),(631,1443,'N'),(631,1444,'N'),(631,1445,'N'),(631,1446,'S'),(631,1447,'N'),(631,1448,'N'),(631,1449,'N'),(631,1450,'N'),(631,1451,'N'),(631,1452,'N'),(631,1453,'N'),(631,1454,'N'),(631,1455,'N'),(631,1456,'N'),(631,1457,'N'),(631,1458,'N'),(631,1462,'N'),(631,1463,'N'),(631,1468,'N'),(631,1469,'N'),(631,1474,'N'),(631,1475,'N'),(631,1476,'N'),(631,1477,'N'),(631,1478,'N'),(631,1479,'N'),(631,1483,'N'),(631,1484,'N'),(631,1485,'N'),(631,1486,'S'),(631,1487,'N'),(631,1488,'N'),(631,1489,'N'),(631,1490,'N'),(631,1491,'N'),(631,1492,'N'),(631,1493,'N'),(631,1494,'N'),(631,1495,'N'),(631,1496,'N'),(631,1497,'N'),(631,1498,'N'),(631,1502,'N'),(631,1503,'N'),(631,1508,'N'),(631,1509,'N'),(631,1514,'N'),(631,1515,'N'),(631,1516,'N'),(631,1517,'N'),(631,1518,'N'),(631,1519,'N'),(631,1523,'N'),(631,1524,'N'),(631,1525,'N'),(631,1526,'S'),(631,1527,'N'),(631,1528,'N'),(631,1529,'N'),(631,1531,'N'),(631,1533,'N'),(631,1534,'N'),(631,1535,'N'),(631,1536,'N'),(631,1537,'N'),(631,1538,'N'),(631,1542,'N'),(631,1543,'N'),(631,1548,'N'),(631,1549,'N'),(631,1554,'N'),(631,1555,'N'),(631,1556,'N'),(631,1557,'N'),(631,1558,'N'),(631,1559,'N'),(631,1564,'N'),(631,1565,'N'),(631,1566,'N'),(631,1567,'S'),(631,1568,'N'),(631,1569,'N'),(631,1570,'N'),(631,1571,'N'),(631,1573,'N'),(631,1574,'N'),(631,1575,'N'),(631,1576,'N'),(631,1577,'N'),(631,1578,'N'),(631,1582,'N'),(631,1583,'N'),(631,1588,'N'),(631,1589,'N'),(631,1594,'N'),(631,1595,'N'),(631,1596,'N'),(631,1597,'N'),(631,1598,'N'),(631,1599,'N'),(631,1604,'N'),(631,1605,'N'),(631,1606,'N'),(631,1607,'S'),(631,1608,'N'),(631,1609,'N'),(631,1610,'N'),(631,1611,'N'),(631,1612,'N'),(631,1613,'N'),(631,1614,'N'),(631,1615,'N'),(631,1616,'N'),(631,1617,'N'),(631,1621,'N'),(631,1622,'N'),(631,1627,'N'),(631,1628,'N'),(631,1633,'N'),(631,1634,'N'),(631,1635,'N'),(631,1636,'N'),(631,1637,'N'),(631,1638,'N'),(631,1640,'N'),(631,1641,'N'),(634,1286,'S'),(634,1324,'S'),(634,1363,'S'),(634,1403,'S'),(634,1443,'S'),(634,1483,'S'),(634,1523,'S'),(634,1564,'S'),(634,1604,'S'),(636,1296,'S'),(636,1334,'S'),(636,1373,'S'),(636,1413,'S'),(636,1453,'S'),(636,1493,'S'),(636,1533,'S'),(636,1573,'S'),(636,1612,'S'),(637,1286,'N'),(637,1287,'N'),(637,1288,'N'),(637,1289,'S'),(637,1290,'N'),(637,1291,'N'),(637,1292,'N'),(637,1293,'N'),(637,1294,'N'),(637,1295,'N'),(637,1296,'N'),(637,1297,'N'),(637,1298,'N'),(637,1299,'N'),(637,1300,'N'),(637,1301,'N'),(637,1305,'N'),(637,1306,'N'),(637,1311,'N'),(637,1312,'N'),(637,1317,'N'),(637,1318,'N'),(637,1319,'N'),(637,1320,'N'),(637,1321,'N'),(637,1322,'N'),(637,1324,'N'),(637,1325,'N'),(637,1326,'N'),(637,1327,'S'),(637,1328,'N'),(637,1329,'N'),(637,1330,'N'),(637,1331,'N'),(637,1332,'N'),(637,1333,'N'),(637,1334,'N'),(637,1335,'N'),(637,1336,'N'),(637,1337,'N'),(637,1338,'N'),(637,1339,'N'),(637,1343,'N'),(637,1344,'N'),(637,1349,'N'),(637,1350,'N'),(637,1355,'N'),(637,1356,'N'),(637,1357,'N'),(637,1358,'N'),(637,1359,'N'),(637,1360,'N'),(637,1363,'N'),(637,1364,'N'),(637,1365,'N'),(637,1366,'S'),(637,1367,'N'),(637,1368,'N'),(637,1369,'N'),(637,1370,'N'),(637,1371,'N'),(637,1372,'N'),(637,1373,'N'),(637,1374,'N'),(637,1375,'N'),(637,1376,'N'),(637,1377,'N'),(637,1378,'N'),(637,1382,'N'),(637,1383,'N'),(637,1388,'N'),(637,1389,'N'),(637,1394,'N'),(637,1395,'N'),(637,1396,'N'),(637,1397,'N'),(637,1398,'N'),(637,1399,'N'),(637,1403,'N'),(637,1404,'N'),(637,1405,'N'),(637,1406,'S'),(637,1407,'N'),(637,1408,'N'),(637,1409,'N'),(637,1410,'N'),(637,1411,'N'),(637,1412,'N'),(637,1413,'N'),(637,1414,'N'),(637,1415,'N'),(637,1416,'N'),(637,1417,'N'),(637,1418,'N'),(637,1422,'N'),(637,1423,'N'),(637,1428,'N'),(637,1429,'N'),(637,1434,'N'),(637,1435,'N'),(637,1436,'N'),(637,1437,'N'),(637,1438,'N'),(637,1439,'N'),(637,1443,'N'),(637,1444,'N'),(637,1445,'N'),(637,1446,'S'),(637,1447,'N'),(637,1448,'N'),(637,1449,'N'),(637,1450,'N'),(637,1451,'N'),(637,1452,'N'),(637,1453,'N'),(637,1454,'N'),(637,1455,'N'),(637,1456,'N'),(637,1457,'N'),(637,1458,'N'),(637,1462,'N'),(637,1463,'N'),(637,1468,'N'),(637,1469,'N'),(637,1474,'N'),(637,1475,'N'),(637,1476,'N'),(637,1477,'N'),(637,1478,'N'),(637,1479,'N'),(637,1483,'N'),(637,1484,'N'),(637,1485,'N'),(637,1486,'S'),(637,1487,'N'),(637,1488,'N'),(637,1489,'N'),(637,1490,'N'),(637,1491,'N'),(637,1492,'N'),(637,1493,'N'),(637,1494,'N'),(637,1495,'N'),(637,1496,'N'),(637,1497,'N'),(637,1498,'N'),(637,1502,'N'),(637,1503,'N'),(637,1508,'N'),(637,1509,'N'),(637,1514,'N'),(637,1515,'N'),(637,1516,'N'),(637,1517,'N'),(637,1518,'N'),(637,1519,'N'),(637,1521,'N'),(637,1522,'N'),(637,1523,'N'),(637,1524,'N'),(637,1525,'N'),(637,1526,'S'),(637,1527,'N'),(637,1528,'N'),(637,1529,'N'),(637,1531,'N'),(637,1533,'N'),(637,1534,'N'),(637,1535,'N'),(637,1536,'N'),(637,1537,'N'),(637,1538,'N'),(637,1542,'N'),(637,1543,'N'),(637,1548,'N'),(637,1549,'N'),(637,1554,'N'),(637,1555,'N'),(637,1556,'N'),(637,1557,'N'),(637,1558,'N'),(637,1559,'N'),(637,1561,'N'),(637,1562,'N'),(637,1564,'N'),(637,1565,'N'),(637,1566,'N'),(637,1567,'S'),(637,1568,'N'),(637,1569,'N'),(637,1570,'N'),(637,1571,'N'),(637,1573,'N'),(637,1574,'N'),(637,1575,'N'),(637,1576,'N'),(637,1577,'N'),(637,1578,'N'),(637,1582,'N'),(637,1583,'N'),(637,1588,'N'),(637,1589,'N'),(637,1594,'N'),(637,1595,'N'),(637,1596,'N'),(637,1597,'N'),(637,1598,'N'),(637,1599,'N'),(637,1601,'N'),(637,1602,'N'),(637,1604,'N'),(637,1605,'N'),(637,1606,'N'),(637,1607,'S'),(637,1608,'N'),(637,1609,'N'),(637,1610,'N'),(637,1611,'N'),(637,1612,'N'),(637,1613,'N'),(637,1614,'N'),(637,1615,'N'),(637,1616,'N'),(637,1617,'N'),(637,1621,'N'),(637,1622,'N'),(637,1627,'N'),(637,1628,'N'),(637,1633,'N'),(637,1634,'N'),(637,1635,'N'),(637,1636,'N'),(637,1637,'N'),(637,1638,'N'),(637,1640,'N'),(637,1641,'N'),(640,1617,'S'),(641,1610,'S'),(642,1606,'N'),(642,1607,'N'),(642,1608,'S'),(642,1610,'N'),(642,1611,'N'),(642,1613,'N'),(642,1614,'N'),(642,1615,'N'),(642,1617,'N'),(642,1618,'N'),(644,1606,'N'),(644,1607,'N'),(644,1608,'S'),(644,1610,'N'),(644,1611,'N'),(644,1613,'N'),(644,1614,'N'),(644,1615,'N'),(644,1617,'N'),(644,1621,'N'),(644,1622,'N'),(644,1627,'N'),(644,1628,'N'),(644,1633,'N'),(644,1634,'N'),(644,1635,'N'),(644,1636,'N'),(644,1637,'N'),(644,1638,'N'),(644,1640,'N'),(644,1641,'N'),(647,1610,'S'),(648,1607,'S'),(649,1611,'N'),(649,1613,'N'),(649,1614,'S'),(649,1615,'N'),(653,1610,'S'),(654,1607,'S'),(655,1604,'N'),(655,1606,'N'),(655,1607,'N'),(655,1608,'N'),(655,1609,'N'),(655,1610,'N'),(655,1611,'N'),(655,1612,'N'),(655,1613,'N'),(655,1614,'N'),(655,1615,'N'),(655,1616,'N'),(655,1617,'N'),(655,1623,'N'),(655,1624,'N'),(655,1625,'S'),(655,1626,'N'),(655,1629,'N'),(655,1630,'N'),(655,1631,'N'),(655,1632,'N'),(655,1635,'N'),(655,1636,'N'),(655,1637,'N'),(655,1638,'N'),(659,1610,'S'),(660,1607,'S'),(661,1604,'N'),(661,1606,'N'),(661,1607,'N'),(661,1608,'N'),(661,1609,'N'),(661,1610,'N'),(661,1611,'N'),(661,1612,'N'),(661,1613,'N'),(661,1614,'N'),(661,1615,'N'),(661,1616,'N'),(661,1617,'N'),(661,1623,'N'),(661,1624,'N'),(661,1625,'S'),(661,1626,'N'),(661,1629,'N'),(661,1630,'N'),(661,1631,'N'),(661,1632,'N'),(661,1635,'N'),(661,1636,'N'),(661,1637,'N'),(661,1638,'N'),(664,1617,'S'),(665,1610,'S'),(667,1604,'N'),(667,1605,'N'),(667,1606,'S'),(667,1607,'N'),(667,1608,'N'),(667,1609,'N'),(667,1610,'N'),(667,1611,'N'),(667,1612,'N'),(667,1613,'N'),(667,1614,'N'),(667,1615,'N'),(667,1616,'N'),(667,1617,'N'),(667,1619,'N'),(667,1620,'N'),(667,1621,'N'),(667,1622,'N'),(667,1623,'N'),(667,1624,'N'),(667,1625,'N'),(667,1626,'N'),(667,1627,'N'),(667,1628,'N'),(667,1629,'N'),(667,1630,'N'),(667,1631,'N'),(667,1632,'N'),(667,1633,'N'),(667,1634,'N'),(667,1635,'N'),(667,1636,'N'),(667,1637,'N'),(667,1638,'N'),(667,1639,'N'),(667,1640,'N'),(667,1641,'N'),(667,1642,'N'),(671,1610,'S'),(672,1607,'S'),(673,1604,'N'),(673,1606,'N'),(673,1607,'N'),(673,1608,'N'),(673,1609,'N'),(673,1610,'N'),(673,1611,'N'),(673,1612,'N'),(673,1613,'N'),(673,1614,'N'),(673,1615,'N'),(673,1616,'N'),(673,1617,'N'),(673,1623,'N'),(673,1624,'N'),(673,1625,'S'),(673,1626,'N'),(673,1629,'N'),(673,1630,'N'),(673,1631,'N'),(673,1632,'N'),(673,1635,'N'),(673,1636,'N'),(673,1637,'N'),(673,1638,'N'),(677,1610,'S'),(678,1607,'S'),(679,1604,'N'),(679,1606,'N'),(679,1607,'N'),(679,1608,'N'),(679,1609,'N'),(679,1610,'N'),(679,1611,'N'),(679,1612,'N'),(679,1613,'N'),(679,1614,'N'),(679,1615,'N'),(679,1616,'N'),(679,1617,'N'),(679,1623,'N'),(679,1624,'N'),(679,1625,'S'),(679,1626,'N'),(679,1629,'N'),(679,1630,'N'),(679,1631,'N'),(679,1632,'N'),(679,1635,'N'),(679,1636,'N'),(679,1637,'N'),(679,1638,'N'),(679,1639,'N'),(683,1610,'S'),(684,1607,'S'),(685,1604,'N'),(685,1606,'N'),(685,1607,'N'),(685,1608,'N'),(685,1609,'N'),(685,1610,'N'),(685,1611,'N'),(685,1612,'N'),(685,1613,'N'),(685,1614,'N'),(685,1615,'N'),(685,1616,'N'),(685,1617,'N'),(685,1623,'N'),(685,1624,'N'),(685,1625,'S'),(685,1626,'N'),(685,1629,'N'),(685,1630,'N'),(685,1631,'N'),(685,1632,'N'),(685,1635,'N'),(685,1636,'N'),(685,1637,'N'),(685,1638,'N'),(685,1639,'N'),(689,1610,'S'),(690,1607,'S'),(691,1604,'N'),(691,1606,'N'),(691,1607,'N'),(691,1608,'N'),(691,1609,'N'),(691,1610,'N'),(691,1611,'N'),(691,1612,'N'),(691,1613,'N'),(691,1614,'N'),(691,1615,'N'),(691,1616,'N'),(691,1617,'N'),(691,1623,'N'),(691,1624,'N'),(691,1625,'S'),(691,1626,'N'),(691,1629,'N'),(691,1630,'N'),(691,1631,'N'),(691,1632,'N'),(691,1635,'N'),(691,1636,'N'),(691,1637,'N'),(691,1638,'N'),(691,1639,'N'),(695,1610,'S'),(696,1607,'S'),(697,1604,'N'),(697,1606,'N'),(697,1607,'N'),(697,1608,'N'),(697,1609,'N'),(697,1610,'N'),(697,1611,'N'),(697,1612,'N'),(697,1613,'N'),(697,1614,'N'),(697,1615,'N'),(697,1616,'N'),(697,1617,'N'),(697,1623,'N'),(697,1624,'N'),(697,1625,'S'),(697,1626,'N'),(697,1629,'N'),(697,1630,'N'),(697,1631,'N'),(697,1632,'N'),(697,1635,'N'),(697,1636,'N'),(697,1637,'N'),(697,1638,'N'),(697,1639,'N'),(701,1610,'S'),(702,1607,'S'),(703,1604,'N'),(703,1606,'N'),(703,1607,'N'),(703,1608,'N'),(703,1609,'N'),(703,1610,'N'),(703,1611,'N'),(703,1612,'N'),(703,1613,'N'),(703,1614,'N'),(703,1615,'N'),(703,1616,'N'),(703,1617,'N'),(703,1623,'N'),(703,1624,'N'),(703,1625,'S'),(703,1626,'N'),(703,1629,'N'),(703,1630,'N'),(703,1631,'N'),(703,1632,'N'),(703,1635,'N'),(703,1636,'N'),(703,1637,'N'),(703,1638,'N'),(703,1639,'N'),(705,1604,'N'),(705,1606,'N'),(705,1607,'N'),(705,1608,'N'),(705,1609,'N'),(705,1610,'N'),(705,1611,'N'),(705,1612,'N'),(705,1613,'N'),(705,1614,'N'),(705,1615,'N'),(705,1616,'N'),(705,1617,'N'),(705,1621,'N'),(705,1622,'N'),(705,1627,'N'),(705,1628,'N'),(705,1633,'N'),(705,1634,'N'),(705,1635,'N'),(705,1636,'N'),(705,1637,'N'),(705,1638,'N'),(705,1639,'N'),(705,1640,'N'),(705,1641,'N'),(708,1610,'S'),(709,1607,'S'),(710,1604,'N'),(710,1606,'N'),(710,1607,'N'),(710,1608,'N'),(710,1609,'N'),(710,1610,'N'),(710,1611,'N'),(710,1612,'N'),(710,1613,'N'),(710,1614,'N'),(710,1615,'N'),(710,1616,'N'),(710,1617,'N'),(710,1623,'N'),(710,1624,'N'),(710,1625,'S'),(710,1626,'N'),(710,1629,'N'),(710,1630,'N'),(710,1631,'N'),(710,1632,'N'),(710,1635,'N'),(710,1636,'N'),(710,1637,'N'),(710,1638,'N'),(710,1639,'N'),(714,1610,'S'),(715,1607,'S'),(716,1606,'N'),(716,1607,'N'),(716,1609,'N'),(716,1610,'N'),(716,1611,'N'),(716,1612,'N'),(716,1613,'N'),(716,1614,'N'),(716,1615,'N'),(716,1617,'N'),(716,1623,'N'),(716,1624,'N'),(716,1625,'S'),(716,1626,'N'),(716,1629,'N'),(716,1630,'N'),(716,1631,'N'),(716,1632,'N'),(716,1635,'N'),(716,1636,'N'),(716,1637,'N'),(716,1638,'N'),(718,1604,'N'),(718,1605,'N'),(718,1606,'N'),(718,1607,'S'),(718,1608,'N'),(718,1609,'N'),(718,1610,'N'),(718,1611,'N'),(718,1612,'N'),(718,1613,'N'),(718,1614,'N'),(718,1615,'N'),(718,1616,'N'),(718,1617,'N'),(718,1619,'N'),(718,1620,'N'),(718,1621,'N'),(718,1622,'N'),(718,1623,'N'),(718,1624,'N'),(718,1625,'N'),(718,1626,'N'),(718,1627,'N'),(718,1628,'N'),(718,1629,'N'),(718,1630,'N'),(718,1631,'N'),(718,1632,'N'),(718,1633,'N'),(718,1634,'N'),(718,1635,'N'),(718,1636,'N'),(718,1637,'N'),(718,1638,'N'),(718,1639,'N'),(718,1640,'N'),(718,1641,'N'),(718,1642,'N'),(721,1610,'S'),(722,1607,'S'),(723,1607,'N'),(723,1611,'N'),(723,1613,'N'),(723,1614,'S'),(723,1615,'N'),(723,1623,'N'),(723,1624,'N'),(723,1625,'N'),(723,1626,'N'),(723,1629,'N'),(723,1630,'N'),(723,1631,'N'),(723,1632,'N'),(727,1610,'S'),(728,1607,'S'),(729,1607,'N'),(729,1611,'N'),(729,1613,'N'),(729,1614,'S'),(729,1615,'N'),(729,1623,'N'),(729,1624,'N'),(729,1625,'N'),(729,1626,'N'),(729,1629,'N'),(729,1630,'N'),(729,1631,'N'),(729,1632,'N'),(733,1610,'S'),(734,1607,'S'),(735,1607,'N'),(735,1611,'N'),(735,1613,'N'),(735,1614,'S'),(735,1615,'N'),(735,1623,'N'),(735,1624,'N'),(735,1625,'N'),(735,1626,'N'),(735,1629,'N'),(735,1630,'N'),(735,1631,'N'),(735,1632,'N'),(739,1610,'S'),(740,1607,'S'),(741,1604,'N'),(741,1606,'N'),(741,1607,'N'),(741,1608,'N'),(741,1609,'N'),(741,1610,'N'),(741,1611,'N'),(741,1612,'N'),(741,1613,'N'),(741,1614,'N'),(741,1615,'N'),(741,1616,'N'),(741,1617,'N'),(741,1623,'N'),(741,1624,'N'),(741,1625,'S'),(741,1626,'N'),(741,1629,'N'),(741,1630,'N'),(741,1631,'N'),(741,1632,'N'),(741,1635,'N'),(741,1636,'N'),(741,1637,'N'),(741,1638,'N'),(741,1639,'N'),(745,1610,'S'),(746,1607,'S'),(747,1604,'N'),(747,1606,'N'),(747,1607,'N'),(747,1608,'N'),(747,1609,'N'),(747,1610,'N'),(747,1611,'N'),(747,1612,'N'),(747,1613,'N'),(747,1614,'N'),(747,1615,'N'),(747,1616,'N'),(747,1617,'N'),(747,1623,'N'),(747,1624,'N'),(747,1625,'S'),(747,1626,'N'),(747,1629,'N'),(747,1630,'N'),(747,1631,'N'),(747,1632,'N'),(747,1635,'N'),(747,1636,'N'),(747,1637,'N'),(747,1638,'N'),(747,1639,'N'),(750,1604,'N'),(750,1605,'N'),(750,1606,'N'),(750,1607,'S'),(750,1608,'N'),(750,1609,'N'),(750,1610,'N'),(750,1611,'N'),(750,1612,'N'),(750,1613,'N'),(750,1614,'N'),(750,1615,'N'),(750,1616,'N'),(750,1617,'N'),(750,1619,'N'),(750,1620,'N'),(750,1621,'N'),(750,1622,'N'),(750,1623,'N'),(750,1624,'N'),(750,1625,'N'),(750,1626,'N'),(750,1627,'N'),(750,1628,'N'),(750,1629,'N'),(750,1630,'N'),(750,1631,'N'),(750,1632,'N'),(750,1633,'N'),(750,1634,'N'),(750,1635,'N'),(750,1636,'N'),(750,1637,'N'),(750,1638,'N'),(750,1639,'N'),(750,1640,'N'),(750,1641,'N'),(750,1642,'N'),(751,1604,'N'),(751,1605,'N'),(751,1606,'N'),(751,1607,'S'),(751,1608,'N'),(751,1609,'N'),(751,1610,'N'),(751,1611,'N'),(751,1612,'N'),(751,1613,'N'),(751,1614,'N'),(751,1615,'N'),(751,1616,'N'),(751,1617,'N'),(751,1619,'N'),(751,1620,'N'),(751,1621,'N'),(751,1622,'N'),(751,1623,'N'),(751,1624,'N'),(751,1625,'N'),(751,1626,'N'),(751,1627,'N'),(751,1628,'N'),(751,1629,'N'),(751,1630,'N'),(751,1631,'N'),(751,1632,'N'),(751,1633,'N'),(751,1634,'N'),(751,1635,'N'),(751,1636,'N'),(751,1637,'N'),(751,1638,'N'),(751,1639,'N'),(751,1640,'N'),(751,1641,'N'),(751,1642,'N'),(753,1610,'S'),(754,1607,'S'),(755,1604,'N'),(755,1606,'N'),(755,1607,'N'),(755,1608,'N'),(755,1609,'N'),(755,1610,'N'),(755,1611,'N'),(755,1612,'N'),(755,1613,'N'),(755,1614,'N'),(755,1615,'N'),(755,1616,'N'),(755,1617,'N'),(755,1623,'N'),(755,1624,'N'),(755,1625,'S'),(755,1626,'N'),(755,1629,'N'),(755,1630,'N'),(755,1631,'N'),(755,1632,'N'),(755,1635,'N'),(755,1636,'N'),(755,1637,'N'),(755,1638,'N'),(755,1639,'N'),(759,1610,'S'),(760,1607,'S'),(761,1604,'N'),(761,1606,'N'),(761,1607,'N'),(761,1608,'N'),(761,1609,'N'),(761,1610,'N'),(761,1611,'N'),(761,1612,'N'),(761,1613,'N'),(761,1614,'N'),(761,1615,'N'),(761,1616,'N'),(761,1617,'N'),(761,1623,'N'),(761,1624,'N'),(761,1625,'S'),(761,1626,'N'),(761,1629,'N'),(761,1630,'N'),(761,1631,'N'),(761,1632,'N'),(761,1635,'N'),(761,1636,'N'),(761,1637,'N'),(761,1638,'N'),(761,1639,'N'),(764,1617,'S'),(765,1610,'S'),(766,1604,'N'),(766,1605,'N'),(766,1606,'N'),(766,1607,'N'),(766,1608,'S'),(766,1610,'N'),(766,1611,'N'),(766,1612,'N'),(766,1613,'N'),(766,1614,'N'),(766,1615,'N'),(766,1616,'N'),(766,1617,'N'),(766,1618,'N'),(766,1621,'N'),(766,1622,'N'),(766,1627,'N'),(766,1628,'N'),(766,1633,'N'),(766,1634,'N'),(766,1640,'N'),(766,1641,'N'),(771,1610,'S'),(772,1607,'S'),(773,1604,'N'),(773,1606,'N'),(773,1607,'N'),(773,1608,'N'),(773,1609,'N'),(773,1610,'N'),(773,1611,'N'),(773,1612,'N'),(773,1613,'N'),(773,1614,'N'),(773,1615,'N'),(773,1616,'N'),(773,1617,'N'),(773,1623,'N'),(773,1624,'N'),(773,1625,'S'),(773,1626,'N'),(773,1629,'N'),(773,1630,'N'),(773,1631,'N'),(773,1632,'N'),(773,1635,'N'),(773,1636,'N'),(773,1637,'N'),(773,1638,'N'); +/*!40000 ALTER TABLE `rel_secao_mod_cj_estilos_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_secao_modelo_estilo` +-- + +DROP TABLE IF EXISTS `rel_secao_modelo_estilo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_secao_modelo_estilo` ( + `id_secao_modelo` int(11) NOT NULL, + `id_estilo` int(11) NOT NULL, + `sin_padrao` char(1) NOT NULL, + PRIMARY KEY (`id_secao_modelo`,`id_estilo`), + KEY `fk_rel_sec_mod_estilo_estilo` (`id_estilo`), + KEY `fk_rel_sec_mod_estilo_sec_mod` (`id_secao_modelo`), + CONSTRAINT `fk_rel_sec_mod_estilo_estilo` FOREIGN KEY (`id_estilo`) REFERENCES `estilo` (`id_estilo`), + CONSTRAINT `fk_rel_sec_mod_estilo_sec_mod` FOREIGN KEY (`id_secao_modelo`) REFERENCES `secao_modelo` (`id_secao_modelo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_secao_modelo_estilo` +-- + +LOCK TABLES `rel_secao_modelo_estilo` WRITE; +/*!40000 ALTER TABLE `rel_secao_modelo_estilo` DISABLE KEYS */; +INSERT INTO `rel_secao_modelo_estilo` VALUES (162,24,'S'),(163,14,'S'),(164,10,'N'),(164,11,'N'),(164,12,'N'),(164,13,'N'),(164,14,'S'),(164,15,'N'),(164,24,'N'),(164,27,'N'),(164,29,'N'),(164,30,'N'),(164,31,'N'),(164,32,'N'),(164,33,'N'),(164,34,'N'),(164,35,'N'),(166,24,'S'),(167,10,'N'),(167,11,'N'),(167,12,'N'),(167,13,'N'),(167,14,'S'),(167,24,'N'),(167,27,'N'),(167,29,'N'),(167,30,'N'),(167,31,'N'),(167,32,'N'),(167,33,'N'),(167,34,'N'),(167,35,'N'),(173,24,'S'),(174,13,'N'),(174,14,'N'),(174,15,'N'),(174,38,'S'),(174,39,'N'),(174,44,'N'),(174,45,'N'),(174,50,'N'),(174,51,'N'),(174,52,'N'),(174,53,'N'),(174,54,'N'),(174,55,'N'),(174,57,'N'),(174,58,'N'),(189,24,'S'),(193,10,'N'),(193,11,'N'),(193,12,'N'),(193,13,'N'),(193,14,'S'),(193,15,'N'),(193,24,'N'),(193,27,'N'),(193,29,'N'),(193,30,'N'),(193,31,'N'),(193,32,'N'),(193,33,'N'),(193,34,'N'),(193,35,'N'),(200,24,'S'),(201,36,'S'),(203,36,'S'),(207,12,'N'),(207,13,'N'),(207,14,'N'),(207,15,'N'),(207,24,'N'),(207,27,'N'),(207,30,'N'),(207,31,'N'),(207,32,'N'),(207,34,'N'),(207,36,'N'),(207,40,'N'),(207,41,'N'),(207,42,'S'),(207,43,'N'),(207,46,'N'),(207,47,'N'),(207,48,'N'),(207,49,'N'),(207,52,'N'),(207,53,'N'),(207,54,'N'),(207,55,'N'),(208,24,'S'),(209,12,'N'),(209,13,'N'),(209,14,'S'),(209,15,'N'),(209,24,'N'),(209,27,'N'),(209,30,'N'),(209,31,'N'),(209,32,'N'),(209,34,'N'),(209,36,'N'),(209,40,'N'),(209,41,'N'),(209,42,'N'),(209,43,'N'),(209,46,'N'),(209,47,'N'),(209,48,'N'),(209,49,'N'),(209,52,'N'),(209,53,'N'),(209,54,'N'),(209,55,'N'),(214,24,'S'),(217,14,'S'),(220,10,'N'),(220,11,'N'),(220,12,'N'),(220,13,'N'),(220,14,'S'),(220,15,'N'),(220,24,'N'),(220,27,'N'),(220,29,'N'),(220,30,'N'),(220,31,'N'),(220,32,'N'),(220,33,'N'),(220,34,'N'),(220,35,'N'),(233,24,'S'),(240,36,'S'),(241,10,'N'),(241,11,'N'),(241,12,'N'),(241,13,'S'),(241,15,'N'),(241,24,'N'),(241,27,'N'),(241,29,'N'),(241,30,'N'),(241,31,'N'),(241,32,'N'),(241,33,'N'),(241,34,'N'),(241,38,'N'),(241,39,'N'),(241,40,'N'),(241,41,'N'),(241,42,'N'),(241,43,'N'),(241,44,'N'),(241,45,'N'),(241,46,'N'),(241,47,'N'),(241,48,'N'),(241,49,'N'),(241,50,'N'),(241,51,'N'),(241,52,'N'),(241,53,'N'),(241,54,'N'),(241,55,'N'),(241,57,'N'),(241,58,'N'),(242,36,'S'),(243,10,'N'),(243,11,'N'),(243,12,'N'),(243,13,'S'),(243,15,'N'),(243,24,'N'),(243,27,'N'),(243,29,'N'),(243,30,'N'),(243,31,'N'),(243,32,'N'),(243,33,'N'),(243,34,'N'),(243,38,'N'),(243,39,'N'),(243,40,'N'),(243,41,'N'),(243,42,'N'),(243,43,'N'),(243,44,'N'),(243,45,'N'),(243,46,'N'),(243,47,'N'),(243,48,'N'),(243,49,'N'),(243,50,'N'),(243,51,'N'),(243,52,'N'),(243,53,'N'),(243,54,'N'),(243,55,'N'),(243,57,'N'),(243,58,'N'),(244,36,'S'),(245,10,'N'),(245,11,'N'),(245,12,'N'),(245,13,'S'),(245,15,'N'),(245,24,'N'),(245,27,'N'),(245,29,'N'),(245,30,'N'),(245,31,'N'),(245,32,'N'),(245,33,'N'),(245,34,'N'),(245,38,'N'),(245,39,'N'),(245,40,'N'),(245,41,'N'),(245,42,'N'),(245,43,'N'),(245,44,'N'),(245,45,'N'),(245,46,'N'),(245,47,'N'),(245,48,'N'),(245,49,'N'),(245,50,'N'),(245,51,'N'),(245,52,'N'),(245,53,'N'),(245,54,'N'),(245,55,'N'),(245,57,'N'),(245,58,'N'),(246,36,'S'),(247,10,'N'),(247,11,'N'),(247,12,'N'),(247,13,'S'),(247,15,'N'),(247,24,'N'),(247,27,'N'),(247,29,'N'),(247,30,'N'),(247,31,'N'),(247,32,'N'),(247,33,'N'),(247,34,'N'),(247,38,'N'),(247,39,'N'),(247,40,'N'),(247,41,'N'),(247,42,'N'),(247,43,'N'),(247,44,'N'),(247,45,'N'),(247,46,'N'),(247,47,'N'),(247,48,'N'),(247,49,'N'),(247,50,'N'),(247,51,'N'),(247,52,'N'),(247,53,'N'),(247,54,'N'),(247,55,'N'),(247,57,'N'),(247,58,'N'),(248,36,'S'),(249,10,'N'),(249,11,'N'),(249,12,'N'),(249,13,'S'),(249,15,'N'),(249,24,'N'),(249,27,'N'),(249,29,'N'),(249,30,'N'),(249,31,'N'),(249,32,'N'),(249,33,'N'),(249,34,'N'),(249,38,'N'),(249,39,'N'),(249,40,'N'),(249,41,'N'),(249,42,'N'),(249,43,'N'),(249,44,'N'),(249,45,'N'),(249,46,'N'),(249,47,'N'),(249,48,'N'),(249,49,'N'),(249,50,'N'),(249,51,'N'),(249,52,'N'),(249,53,'N'),(249,54,'N'),(249,55,'N'),(249,57,'N'),(249,58,'N'),(250,36,'S'),(251,10,'N'),(251,11,'N'),(251,12,'N'),(251,13,'S'),(251,15,'N'),(251,24,'N'),(251,27,'N'),(251,29,'N'),(251,30,'N'),(251,31,'N'),(251,32,'N'),(251,33,'N'),(251,34,'N'),(251,38,'N'),(251,39,'N'),(251,40,'N'),(251,41,'N'),(251,42,'N'),(251,43,'N'),(251,44,'N'),(251,45,'N'),(251,46,'N'),(251,47,'N'),(251,48,'N'),(251,49,'N'),(251,50,'N'),(251,51,'N'),(251,52,'N'),(251,53,'N'),(251,54,'N'),(251,55,'N'),(251,57,'N'),(251,58,'N'),(252,24,'S'),(253,13,'S'),(254,13,'S'),(257,12,'N'),(257,13,'N'),(257,14,'S'),(257,15,'N'),(257,24,'N'),(257,27,'N'),(257,30,'N'),(257,31,'N'),(257,32,'N'),(257,34,'N'),(257,38,'N'),(257,39,'N'),(257,44,'N'),(257,45,'N'),(257,50,'N'),(257,51,'N'),(257,52,'N'),(257,53,'N'),(257,54,'N'),(257,55,'N'),(257,57,'N'),(257,58,'N'),(275,24,'S'),(276,10,'N'),(276,11,'N'),(276,12,'N'),(276,13,'N'),(276,14,'S'),(276,15,'N'),(276,24,'N'),(276,27,'N'),(276,29,'N'),(276,30,'N'),(276,31,'N'),(276,32,'N'),(276,33,'N'),(276,34,'N'),(276,35,'N'),(277,14,'S'),(282,33,'S'),(283,12,'N'),(283,13,'N'),(283,14,'S'),(283,15,'N'),(283,24,'N'),(283,27,'N'),(283,29,'N'),(283,30,'N'),(283,31,'N'),(283,32,'N'),(283,33,'N'),(283,34,'N'),(283,38,'N'),(283,39,'N'),(283,44,'N'),(283,45,'N'),(283,50,'N'),(283,51,'N'),(283,52,'N'),(283,53,'N'),(283,54,'N'),(283,55,'N'),(283,57,'N'),(283,58,'N'),(294,34,'S'),(298,34,'S'),(316,34,'S'),(323,34,'S'),(327,34,'S'),(331,34,'S'),(337,10,'S'),(339,10,'S'),(340,29,'S'),(341,10,'N'),(341,11,'N'),(341,12,'N'),(341,13,'S'),(341,14,'N'),(341,15,'N'),(341,24,'N'),(341,27,'N'),(341,29,'N'),(341,30,'N'),(341,31,'N'),(341,32,'N'),(341,33,'N'),(341,34,'N'),(341,38,'N'),(341,39,'N'),(341,44,'N'),(341,45,'N'),(341,50,'N'),(341,51,'N'),(341,52,'N'),(341,53,'N'),(341,54,'N'),(341,55,'N'),(341,57,'N'),(341,58,'N'),(366,10,'S'),(368,29,'S'),(369,29,'S'),(370,10,'N'),(370,11,'N'),(370,12,'N'),(370,13,'S'),(370,14,'N'),(370,15,'N'),(370,24,'N'),(370,27,'N'),(370,29,'N'),(370,30,'N'),(370,31,'N'),(370,32,'N'),(370,33,'N'),(370,34,'N'),(370,38,'N'),(370,39,'N'),(370,44,'N'),(370,45,'N'),(370,50,'N'),(370,51,'N'),(370,52,'N'),(370,53,'N'),(370,54,'N'),(370,55,'N'),(370,57,'N'),(370,58,'N'),(382,34,'S'),(383,33,'S'),(384,12,'N'),(384,13,'N'),(384,14,'S'),(384,15,'N'),(384,24,'N'),(384,27,'N'),(384,29,'N'),(384,30,'N'),(384,31,'N'),(384,32,'N'),(384,33,'N'),(384,34,'N'),(384,38,'N'),(384,39,'N'),(384,44,'N'),(384,45,'N'),(384,50,'N'),(384,51,'N'),(384,52,'N'),(384,53,'N'),(384,54,'N'),(384,55,'N'),(384,57,'N'),(384,58,'N'),(389,34,'S'),(390,24,'S'),(392,12,'N'),(392,13,'N'),(392,14,'S'),(392,24,'N'),(392,27,'N'),(392,30,'N'),(392,31,'N'),(392,32,'N'),(392,34,'N'),(392,35,'N'),(394,12,'N'),(394,13,'N'),(394,14,'S'),(394,24,'N'),(394,27,'N'),(394,30,'N'),(394,31,'N'),(394,32,'N'),(394,34,'N'),(394,38,'N'),(394,39,'N'),(394,44,'N'),(394,45,'N'),(394,50,'N'),(394,51,'N'),(394,52,'N'),(394,53,'N'),(394,54,'N'),(394,55,'N'),(394,57,'N'),(394,58,'N'),(396,34,'S'),(397,24,'S'),(399,10,'N'),(399,11,'N'),(399,12,'N'),(399,13,'N'),(399,14,'S'),(399,24,'N'),(399,27,'N'),(399,29,'N'),(399,30,'N'),(399,31,'N'),(399,32,'N'),(399,33,'N'),(399,34,'N'),(399,35,'N'),(401,10,'N'),(401,11,'N'),(401,12,'N'),(401,13,'S'),(401,14,'N'),(401,15,'N'),(401,24,'N'),(401,27,'N'),(401,29,'N'),(401,30,'N'),(401,31,'N'),(401,32,'N'),(401,33,'N'),(401,34,'N'),(401,36,'N'),(401,37,'N'),(401,38,'N'),(401,39,'N'),(401,40,'N'),(401,41,'N'),(401,42,'N'),(401,43,'N'),(401,44,'N'),(401,45,'N'),(401,46,'N'),(401,47,'N'),(401,48,'N'),(401,49,'N'),(401,50,'N'),(401,51,'N'),(401,52,'N'),(401,53,'N'),(401,54,'N'),(401,55,'N'),(401,56,'N'),(401,57,'N'),(401,58,'N'),(401,59,'N'),(405,10,'S'),(406,10,'N'),(406,11,'N'),(406,12,'N'),(406,13,'S'),(406,14,'N'),(406,15,'N'),(406,24,'N'),(406,27,'N'),(406,29,'N'),(406,30,'N'),(406,31,'N'),(406,32,'N'),(406,33,'N'),(406,34,'N'),(406,38,'N'),(406,39,'N'),(406,44,'N'),(406,45,'N'),(406,50,'N'),(406,51,'N'),(406,52,'N'),(406,53,'N'),(406,54,'N'),(406,55,'N'),(406,57,'N'),(406,58,'N'),(410,24,'S'),(411,36,'S'),(414,34,'S'),(415,34,'S'),(416,33,'S'),(417,24,'S'),(418,14,'S'),(419,12,'N'),(419,13,'N'),(419,14,'S'),(419,15,'N'),(419,24,'N'),(419,34,'N'),(419,38,'N'),(419,39,'N'),(419,44,'N'),(419,45,'N'),(419,50,'N'),(419,51,'N'),(419,52,'N'),(419,53,'N'),(419,54,'N'),(419,55,'N'),(419,57,'N'),(419,58,'N'),(422,12,'N'),(422,13,'N'),(422,14,'S'),(422,15,'N'),(422,24,'N'),(422,27,'N'),(422,29,'N'),(422,30,'N'),(422,31,'N'),(422,32,'N'),(422,33,'N'),(422,34,'N'),(422,38,'N'),(422,39,'N'),(422,44,'N'),(422,45,'N'),(422,50,'N'),(422,51,'N'),(422,52,'N'),(422,53,'N'),(422,54,'N'),(422,55,'N'),(422,57,'N'),(422,58,'N'),(425,34,'S'),(426,33,'S'),(427,12,'N'),(427,13,'N'),(427,14,'S'),(427,15,'N'),(427,24,'N'),(427,27,'N'),(427,29,'N'),(427,30,'N'),(427,31,'N'),(427,32,'N'),(427,33,'N'),(427,34,'N'),(427,38,'N'),(427,39,'N'),(427,44,'N'),(427,45,'N'),(427,50,'N'),(427,51,'N'),(427,52,'N'),(427,53,'N'),(427,54,'N'),(427,55,'N'),(427,57,'N'),(427,58,'N'),(430,36,'S'),(431,12,'N'),(431,13,'N'),(431,15,'N'),(431,27,'N'),(431,30,'N'),(431,31,'N'),(431,32,'N'),(431,40,'N'),(431,41,'N'),(431,42,'S'),(431,43,'N'),(431,46,'N'),(431,47,'N'),(431,48,'N'),(431,49,'N'),(431,52,'N'),(431,53,'N'),(431,54,'N'),(431,55,'N'),(435,34,'S'),(436,24,'S'),(437,12,'N'),(437,13,'N'),(437,14,'S'),(437,24,'N'),(437,27,'N'),(437,30,'N'),(437,31,'N'),(437,32,'N'),(437,34,'N'),(437,35,'N'),(445,36,'S'),(446,36,'S'),(447,14,'S'),(470,34,'S'),(471,24,'S'),(472,14,'S'),(476,24,'S'),(477,13,'S'),(479,12,'N'),(479,13,'N'),(479,15,'N'),(479,24,'N'),(479,27,'N'),(479,29,'N'),(479,30,'N'),(479,31,'N'),(479,32,'N'),(479,34,'N'),(479,40,'N'),(479,41,'N'),(479,42,'S'),(479,43,'N'),(479,46,'N'),(479,47,'N'),(479,48,'N'),(479,49,'N'),(479,52,'N'),(479,53,'N'),(479,54,'N'),(479,55,'N'),(483,24,'S'),(485,13,'S'),(486,10,'N'),(486,12,'N'),(486,13,'N'),(486,14,'N'),(486,15,'N'),(486,24,'N'),(486,27,'N'),(486,29,'N'),(486,30,'N'),(486,31,'N'),(486,32,'N'),(486,33,'N'),(486,34,'N'),(486,40,'N'),(486,41,'N'),(486,42,'S'),(486,43,'N'),(486,46,'N'),(486,47,'N'),(486,48,'N'),(486,49,'N'),(486,52,'N'),(486,53,'N'),(486,54,'N'),(486,55,'N'),(486,56,'N'),(490,24,'S'),(491,13,'S'),(492,10,'N'),(492,12,'N'),(492,13,'N'),(492,14,'N'),(492,15,'N'),(492,24,'N'),(492,27,'N'),(492,29,'N'),(492,30,'N'),(492,31,'N'),(492,32,'N'),(492,33,'N'),(492,34,'N'),(492,40,'N'),(492,41,'N'),(492,42,'S'),(492,43,'N'),(492,46,'N'),(492,47,'N'),(492,48,'N'),(492,49,'N'),(492,52,'N'),(492,53,'N'),(492,54,'N'),(492,55,'N'),(497,24,'S'),(498,13,'S'),(499,10,'N'),(499,12,'N'),(499,13,'N'),(499,14,'N'),(499,15,'N'),(499,24,'N'),(499,27,'N'),(499,29,'N'),(499,30,'N'),(499,31,'N'),(499,32,'N'),(499,33,'N'),(499,34,'N'),(499,40,'N'),(499,41,'N'),(499,42,'S'),(499,43,'N'),(499,46,'N'),(499,47,'N'),(499,48,'N'),(499,49,'N'),(499,52,'N'),(499,53,'N'),(499,54,'N'),(499,55,'N'),(503,24,'S'),(504,13,'S'),(505,10,'N'),(505,12,'N'),(505,13,'N'),(505,14,'N'),(505,15,'N'),(505,24,'N'),(505,27,'N'),(505,29,'N'),(505,30,'N'),(505,31,'N'),(505,32,'N'),(505,33,'N'),(505,34,'N'),(505,40,'N'),(505,41,'N'),(505,42,'S'),(505,43,'N'),(505,46,'N'),(505,47,'N'),(505,48,'N'),(505,49,'N'),(505,52,'N'),(505,53,'N'),(505,54,'N'),(505,55,'N'),(509,24,'S'),(510,13,'S'),(511,10,'N'),(511,12,'N'),(511,13,'N'),(511,14,'N'),(511,15,'N'),(511,24,'N'),(511,27,'N'),(511,29,'N'),(511,30,'N'),(511,31,'N'),(511,32,'N'),(511,33,'N'),(511,34,'N'),(511,40,'N'),(511,41,'N'),(511,42,'S'),(511,43,'N'),(511,46,'N'),(511,47,'N'),(511,48,'N'),(511,49,'N'),(511,52,'N'),(511,53,'N'),(511,54,'N'),(511,55,'N'),(515,24,'S'),(516,13,'S'),(517,10,'N'),(517,12,'N'),(517,13,'N'),(517,14,'N'),(517,15,'N'),(517,24,'N'),(517,27,'N'),(517,29,'N'),(517,30,'N'),(517,31,'N'),(517,32,'N'),(517,33,'N'),(517,34,'N'),(517,40,'N'),(517,41,'N'),(517,42,'S'),(517,43,'N'),(517,46,'N'),(517,47,'N'),(517,48,'N'),(517,49,'N'),(517,52,'N'),(517,53,'N'),(517,54,'N'),(517,55,'N'),(521,24,'S'),(522,13,'S'),(523,10,'N'),(523,12,'N'),(523,13,'N'),(523,14,'N'),(523,15,'N'),(523,24,'N'),(523,27,'N'),(523,29,'N'),(523,30,'N'),(523,31,'N'),(523,32,'N'),(523,33,'N'),(523,34,'N'),(523,40,'N'),(523,41,'N'),(523,42,'S'),(523,43,'N'),(523,46,'N'),(523,47,'N'),(523,48,'N'),(523,49,'N'),(523,52,'N'),(523,53,'N'),(523,54,'N'),(523,55,'N'),(526,10,'N'),(526,11,'N'),(526,12,'N'),(526,13,'S'),(526,14,'N'),(526,15,'N'),(526,24,'N'),(526,27,'N'),(526,29,'N'),(526,30,'N'),(526,31,'N'),(526,32,'N'),(526,33,'N'),(526,34,'N'),(526,36,'N'),(526,37,'N'),(526,38,'N'),(526,39,'N'),(526,40,'N'),(526,41,'N'),(526,42,'N'),(526,43,'N'),(526,44,'N'),(526,45,'N'),(526,46,'N'),(526,47,'N'),(526,48,'N'),(526,49,'N'),(526,50,'N'),(526,51,'N'),(526,52,'N'),(526,53,'N'),(526,54,'N'),(526,55,'N'),(526,56,'N'),(526,57,'N'),(526,58,'N'),(526,59,'N'),(534,24,'S'),(535,13,'S'),(536,10,'N'),(536,12,'N'),(536,13,'N'),(536,14,'N'),(536,15,'N'),(536,24,'N'),(536,27,'N'),(536,29,'N'),(536,30,'N'),(536,31,'N'),(536,32,'N'),(536,33,'N'),(536,34,'N'),(536,40,'N'),(536,41,'N'),(536,42,'S'),(536,43,'N'),(536,46,'N'),(536,47,'N'),(536,48,'N'),(536,49,'N'),(536,52,'N'),(536,53,'N'),(536,54,'N'),(536,55,'N'),(540,24,'S'),(541,13,'S'),(542,10,'N'),(542,12,'N'),(542,13,'N'),(542,14,'N'),(542,15,'N'),(542,24,'N'),(542,27,'N'),(542,29,'N'),(542,30,'N'),(542,31,'N'),(542,32,'N'),(542,33,'N'),(542,34,'N'),(542,40,'N'),(542,41,'N'),(542,42,'S'),(542,43,'N'),(542,46,'N'),(542,47,'N'),(542,48,'N'),(542,49,'N'),(542,52,'N'),(542,53,'N'),(542,54,'N'),(542,55,'N'),(546,24,'S'),(547,13,'S'),(548,10,'N'),(548,12,'N'),(548,13,'N'),(548,14,'N'),(548,15,'N'),(548,24,'N'),(548,27,'N'),(548,29,'N'),(548,30,'N'),(548,31,'N'),(548,32,'N'),(548,33,'N'),(548,34,'N'),(548,40,'N'),(548,41,'N'),(548,42,'S'),(548,43,'N'),(548,46,'N'),(548,47,'N'),(548,48,'N'),(548,49,'N'),(548,52,'N'),(548,53,'N'),(548,54,'N'),(548,55,'N'),(552,24,'S'),(553,13,'S'),(554,10,'N'),(554,12,'N'),(554,13,'N'),(554,14,'N'),(554,15,'N'),(554,24,'N'),(554,27,'N'),(554,29,'N'),(554,30,'N'),(554,31,'N'),(554,32,'N'),(554,33,'N'),(554,34,'N'),(554,40,'N'),(554,41,'N'),(554,42,'S'),(554,43,'N'),(554,46,'N'),(554,47,'N'),(554,48,'N'),(554,49,'N'),(554,52,'N'),(554,53,'N'),(554,54,'N'),(554,55,'N'),(558,24,'S'),(559,13,'S'),(560,10,'N'),(560,12,'N'),(560,13,'N'),(560,14,'N'),(560,15,'N'),(560,24,'N'),(560,27,'N'),(560,29,'N'),(560,30,'N'),(560,31,'N'),(560,32,'N'),(560,33,'N'),(560,34,'N'),(560,40,'N'),(560,41,'N'),(560,42,'S'),(560,43,'N'),(560,46,'N'),(560,47,'N'),(560,48,'N'),(560,49,'N'),(560,52,'N'),(560,53,'N'),(560,54,'N'),(560,55,'N'),(564,24,'S'),(565,13,'S'),(566,10,'N'),(566,12,'N'),(566,13,'N'),(566,14,'N'),(566,15,'N'),(566,24,'N'),(566,27,'N'),(566,29,'N'),(566,30,'N'),(566,31,'N'),(566,32,'N'),(566,33,'N'),(566,34,'N'),(566,40,'N'),(566,41,'N'),(566,42,'S'),(566,43,'N'),(566,46,'N'),(566,47,'N'),(566,48,'N'),(566,49,'N'),(566,52,'N'),(566,53,'N'),(566,54,'N'),(566,55,'N'),(570,24,'S'),(571,13,'S'),(572,10,'N'),(572,12,'N'),(572,13,'N'),(572,14,'N'),(572,15,'N'),(572,24,'N'),(572,27,'N'),(572,29,'N'),(572,30,'N'),(572,31,'N'),(572,32,'N'),(572,33,'N'),(572,34,'N'),(572,40,'N'),(572,41,'N'),(572,42,'S'),(572,43,'N'),(572,46,'N'),(572,47,'N'),(572,48,'N'),(572,49,'N'),(572,52,'N'),(572,53,'N'),(572,54,'N'),(572,55,'N'),(576,24,'S'),(577,13,'S'),(578,10,'N'),(578,12,'N'),(578,13,'N'),(578,14,'N'),(578,15,'N'),(578,24,'N'),(578,27,'N'),(578,29,'N'),(578,30,'N'),(578,31,'N'),(578,32,'N'),(578,33,'N'),(578,34,'N'),(578,40,'N'),(578,41,'N'),(578,42,'S'),(578,43,'N'),(578,46,'N'),(578,47,'N'),(578,48,'N'),(578,49,'N'),(578,52,'N'),(578,53,'N'),(578,54,'N'),(578,55,'N'),(582,24,'S'),(584,10,'N'),(584,12,'N'),(584,13,'S'),(584,14,'N'),(584,24,'N'),(584,29,'N'),(584,33,'N'),(584,38,'N'),(584,39,'N'),(584,44,'N'),(584,45,'N'),(584,50,'N'),(584,51,'N'),(584,52,'N'),(584,53,'N'),(584,54,'N'),(584,55,'N'),(588,24,'S'),(589,10,'N'),(589,12,'N'),(589,13,'N'),(589,14,'N'),(589,15,'N'),(589,24,'N'),(589,27,'N'),(589,29,'N'),(589,30,'N'),(589,31,'N'),(589,32,'N'),(589,33,'N'),(589,34,'N'),(589,40,'N'),(589,41,'N'),(589,42,'S'),(589,43,'N'),(589,46,'N'),(589,47,'N'),(589,48,'N'),(589,49,'N'),(589,52,'N'),(589,53,'N'),(589,54,'N'),(589,55,'N'),(593,24,'S'),(594,13,'S'),(595,10,'N'),(595,12,'N'),(595,13,'N'),(595,14,'N'),(595,15,'N'),(595,24,'N'),(595,27,'N'),(595,29,'N'),(595,30,'N'),(595,31,'N'),(595,32,'N'),(595,33,'N'),(595,34,'N'),(595,40,'N'),(595,41,'N'),(595,42,'S'),(595,43,'N'),(595,46,'N'),(595,47,'N'),(595,48,'N'),(595,49,'N'),(595,52,'N'),(595,53,'N'),(595,54,'N'),(595,55,'N'),(595,56,'N'),(598,10,'N'),(598,12,'N'),(598,13,'N'),(598,14,'N'),(598,15,'N'),(598,24,'N'),(598,27,'N'),(598,29,'N'),(598,30,'N'),(598,31,'N'),(598,32,'N'),(598,33,'N'),(598,34,'N'),(598,38,'N'),(598,39,'N'),(598,44,'N'),(598,45,'N'),(598,50,'N'),(598,51,'N'),(598,52,'N'),(598,53,'N'),(598,54,'N'),(598,55,'N'),(598,56,'N'),(598,57,'N'),(598,58,'N'),(600,33,'S'),(601,12,'N'),(601,13,'N'),(601,14,'S'),(601,15,'N'),(601,24,'N'),(601,27,'N'),(601,29,'N'),(601,30,'N'),(601,31,'N'),(601,32,'N'),(601,33,'N'),(601,34,'N'),(601,38,'N'),(601,39,'N'),(601,44,'N'),(601,45,'N'),(601,50,'N'),(601,51,'N'),(601,52,'N'),(601,53,'N'),(601,54,'N'),(601,55,'N'),(601,57,'N'),(601,58,'N'),(614,34,'S'),(615,24,'S'),(616,10,'N'),(616,11,'N'),(616,12,'N'),(616,13,'N'),(616,14,'S'),(616,24,'N'),(616,27,'N'),(616,29,'N'),(616,30,'N'),(616,31,'N'),(616,32,'N'),(616,33,'N'),(616,34,'N'),(616,35,'N'),(618,10,'N'),(618,11,'N'),(618,12,'N'),(618,13,'S'),(618,14,'N'),(618,15,'N'),(618,24,'N'),(618,27,'N'),(618,29,'N'),(618,30,'N'),(618,31,'N'),(618,32,'N'),(618,33,'N'),(618,34,'N'),(618,36,'N'),(618,37,'N'),(618,38,'N'),(618,39,'N'),(618,40,'N'),(618,41,'N'),(618,42,'N'),(618,43,'N'),(618,44,'N'),(618,45,'N'),(618,46,'N'),(618,47,'N'),(618,48,'N'),(618,49,'N'),(618,50,'N'),(618,51,'N'),(618,52,'N'),(618,53,'N'),(618,54,'N'),(618,55,'N'),(618,56,'N'),(618,57,'N'),(618,58,'N'),(618,59,'N'),(621,10,'S'),(622,11,'S'),(624,29,'S'),(625,10,'N'),(625,11,'N'),(625,12,'N'),(625,13,'S'),(625,14,'N'),(625,15,'N'),(625,24,'N'),(625,27,'N'),(625,29,'N'),(625,30,'N'),(625,31,'N'),(625,32,'N'),(625,33,'N'),(625,34,'N'),(625,38,'N'),(625,39,'N'),(625,44,'N'),(625,45,'N'),(625,50,'N'),(625,51,'N'),(625,52,'N'),(625,53,'N'),(625,54,'N'),(625,55,'N'),(625,57,'N'),(625,58,'N'),(628,10,'S'),(629,11,'S'),(630,29,'S'),(631,10,'N'),(631,11,'N'),(631,12,'N'),(631,13,'S'),(631,14,'N'),(631,15,'N'),(631,24,'N'),(631,27,'N'),(631,29,'N'),(631,30,'N'),(631,31,'N'),(631,32,'N'),(631,33,'N'),(631,34,'N'),(631,38,'N'),(631,39,'N'),(631,44,'N'),(631,45,'N'),(631,50,'N'),(631,51,'N'),(631,52,'N'),(631,53,'N'),(631,54,'N'),(631,55,'N'),(631,57,'N'),(631,58,'N'),(634,10,'S'),(636,29,'S'),(637,10,'N'),(637,11,'N'),(637,12,'N'),(637,13,'S'),(637,14,'N'),(637,15,'N'),(637,24,'N'),(637,27,'N'),(637,29,'N'),(637,30,'N'),(637,31,'N'),(637,32,'N'),(637,33,'N'),(637,34,'N'),(637,38,'N'),(637,39,'N'),(637,44,'N'),(637,45,'N'),(637,50,'N'),(637,51,'N'),(637,52,'N'),(637,53,'N'),(637,54,'N'),(637,55,'N'),(637,57,'N'),(637,58,'N'),(640,34,'S'),(641,24,'S'),(642,12,'N'),(642,13,'N'),(642,14,'S'),(642,24,'N'),(642,27,'N'),(642,30,'N'),(642,31,'N'),(642,32,'N'),(642,34,'N'),(642,35,'N'),(644,12,'N'),(644,13,'N'),(644,14,'S'),(644,24,'N'),(644,27,'N'),(644,30,'N'),(644,31,'N'),(644,32,'N'),(644,34,'N'),(644,38,'N'),(644,39,'N'),(644,44,'N'),(644,45,'N'),(644,50,'N'),(644,51,'N'),(644,52,'N'),(644,53,'N'),(644,54,'N'),(644,55,'N'),(644,57,'N'),(644,58,'N'),(647,24,'S'),(648,13,'S'),(649,27,'N'),(649,30,'N'),(649,31,'S'),(649,32,'N'),(653,24,'S'),(654,13,'S'),(655,10,'N'),(655,12,'N'),(655,13,'N'),(655,14,'N'),(655,15,'N'),(655,24,'N'),(655,27,'N'),(655,29,'N'),(655,30,'N'),(655,31,'N'),(655,32,'N'),(655,33,'N'),(655,34,'N'),(655,40,'N'),(655,41,'N'),(655,42,'S'),(655,43,'N'),(655,46,'N'),(655,47,'N'),(655,48,'N'),(655,49,'N'),(655,52,'N'),(655,53,'N'),(655,54,'N'),(655,55,'N'),(659,24,'S'),(660,13,'S'),(661,10,'N'),(661,12,'N'),(661,13,'N'),(661,14,'N'),(661,15,'N'),(661,24,'N'),(661,27,'N'),(661,29,'N'),(661,30,'N'),(661,31,'N'),(661,32,'N'),(661,33,'N'),(661,34,'N'),(661,40,'N'),(661,41,'N'),(661,42,'S'),(661,43,'N'),(661,46,'N'),(661,47,'N'),(661,48,'N'),(661,49,'N'),(661,52,'N'),(661,53,'N'),(661,54,'N'),(661,55,'N'),(664,34,'S'),(665,24,'S'),(667,10,'N'),(667,11,'N'),(667,12,'S'),(667,13,'N'),(667,14,'N'),(667,15,'N'),(667,24,'N'),(667,27,'N'),(667,29,'N'),(667,30,'N'),(667,31,'N'),(667,32,'N'),(667,33,'N'),(667,34,'N'),(667,36,'N'),(667,37,'N'),(667,38,'N'),(667,39,'N'),(667,40,'N'),(667,41,'N'),(667,42,'N'),(667,43,'N'),(667,44,'N'),(667,45,'N'),(667,46,'N'),(667,47,'N'),(667,48,'N'),(667,49,'N'),(667,50,'N'),(667,51,'N'),(667,52,'N'),(667,53,'N'),(667,54,'N'),(667,55,'N'),(667,56,'N'),(667,57,'N'),(667,58,'N'),(667,59,'N'),(671,24,'S'),(672,13,'S'),(673,10,'N'),(673,12,'N'),(673,13,'N'),(673,14,'N'),(673,15,'N'),(673,24,'N'),(673,27,'N'),(673,29,'N'),(673,30,'N'),(673,31,'N'),(673,32,'N'),(673,33,'N'),(673,34,'N'),(673,40,'N'),(673,41,'N'),(673,42,'S'),(673,43,'N'),(673,46,'N'),(673,47,'N'),(673,48,'N'),(673,49,'N'),(673,52,'N'),(673,53,'N'),(673,54,'N'),(673,55,'N'),(677,24,'S'),(678,13,'S'),(679,10,'N'),(679,12,'N'),(679,13,'N'),(679,14,'N'),(679,15,'N'),(679,24,'N'),(679,27,'N'),(679,29,'N'),(679,30,'N'),(679,31,'N'),(679,32,'N'),(679,33,'N'),(679,34,'N'),(679,40,'N'),(679,41,'N'),(679,42,'S'),(679,43,'N'),(679,46,'N'),(679,47,'N'),(679,48,'N'),(679,49,'N'),(679,52,'N'),(679,53,'N'),(679,54,'N'),(679,55,'N'),(679,56,'N'),(683,24,'S'),(684,13,'S'),(685,10,'N'),(685,12,'N'),(685,13,'N'),(685,14,'N'),(685,15,'N'),(685,24,'N'),(685,27,'N'),(685,29,'N'),(685,30,'N'),(685,31,'N'),(685,32,'N'),(685,33,'N'),(685,34,'N'),(685,40,'N'),(685,41,'N'),(685,42,'S'),(685,43,'N'),(685,46,'N'),(685,47,'N'),(685,48,'N'),(685,49,'N'),(685,52,'N'),(685,53,'N'),(685,54,'N'),(685,55,'N'),(685,56,'N'),(689,24,'S'),(690,13,'S'),(691,10,'N'),(691,12,'N'),(691,13,'N'),(691,14,'N'),(691,15,'N'),(691,24,'N'),(691,27,'N'),(691,29,'N'),(691,30,'N'),(691,31,'N'),(691,32,'N'),(691,33,'N'),(691,34,'N'),(691,40,'N'),(691,41,'N'),(691,42,'S'),(691,43,'N'),(691,46,'N'),(691,47,'N'),(691,48,'N'),(691,49,'N'),(691,52,'N'),(691,53,'N'),(691,54,'N'),(691,55,'N'),(691,56,'N'),(695,24,'S'),(696,13,'S'),(697,10,'N'),(697,12,'N'),(697,13,'N'),(697,14,'N'),(697,15,'N'),(697,24,'N'),(697,27,'N'),(697,29,'N'),(697,30,'N'),(697,31,'N'),(697,32,'N'),(697,33,'N'),(697,34,'N'),(697,40,'N'),(697,41,'N'),(697,42,'S'),(697,43,'N'),(697,46,'N'),(697,47,'N'),(697,48,'N'),(697,49,'N'),(697,52,'N'),(697,53,'N'),(697,54,'N'),(697,55,'N'),(697,56,'N'),(701,24,'S'),(702,13,'S'),(703,10,'N'),(703,12,'N'),(703,13,'N'),(703,14,'N'),(703,15,'N'),(703,24,'N'),(703,27,'N'),(703,29,'N'),(703,30,'N'),(703,31,'N'),(703,32,'N'),(703,33,'N'),(703,34,'N'),(703,40,'N'),(703,41,'N'),(703,42,'S'),(703,43,'N'),(703,46,'N'),(703,47,'N'),(703,48,'N'),(703,49,'N'),(703,52,'N'),(703,53,'N'),(703,54,'N'),(703,55,'N'),(703,56,'N'),(705,10,'N'),(705,12,'N'),(705,13,'N'),(705,14,'N'),(705,15,'N'),(705,24,'N'),(705,27,'N'),(705,29,'N'),(705,30,'N'),(705,31,'N'),(705,32,'N'),(705,33,'N'),(705,34,'N'),(705,38,'N'),(705,39,'N'),(705,44,'N'),(705,45,'N'),(705,50,'N'),(705,51,'N'),(705,52,'N'),(705,53,'N'),(705,54,'N'),(705,55,'N'),(705,56,'N'),(705,57,'N'),(705,58,'N'),(708,24,'S'),(709,13,'S'),(710,10,'N'),(710,12,'N'),(710,13,'N'),(710,14,'N'),(710,15,'N'),(710,24,'N'),(710,27,'N'),(710,29,'N'),(710,30,'N'),(710,31,'N'),(710,32,'N'),(710,33,'N'),(710,34,'N'),(710,40,'N'),(710,41,'N'),(710,42,'S'),(710,43,'N'),(710,46,'N'),(710,47,'N'),(710,48,'N'),(710,49,'N'),(710,52,'N'),(710,53,'N'),(710,54,'N'),(710,55,'N'),(710,56,'N'),(714,24,'S'),(715,13,'S'),(716,12,'N'),(716,13,'N'),(716,15,'N'),(716,24,'N'),(716,27,'N'),(716,29,'N'),(716,30,'N'),(716,31,'N'),(716,32,'N'),(716,34,'N'),(716,40,'N'),(716,41,'N'),(716,42,'S'),(716,43,'N'),(716,46,'N'),(716,47,'N'),(716,48,'N'),(716,49,'N'),(716,52,'N'),(716,53,'N'),(716,54,'N'),(716,55,'N'),(718,10,'N'),(718,11,'N'),(718,12,'N'),(718,13,'S'),(718,14,'N'),(718,15,'N'),(718,24,'N'),(718,27,'N'),(718,29,'N'),(718,30,'N'),(718,31,'N'),(718,32,'N'),(718,33,'N'),(718,34,'N'),(718,36,'N'),(718,37,'N'),(718,38,'N'),(718,39,'N'),(718,40,'N'),(718,41,'N'),(718,42,'N'),(718,43,'N'),(718,44,'N'),(718,45,'N'),(718,46,'N'),(718,47,'N'),(718,48,'N'),(718,49,'N'),(718,50,'N'),(718,51,'N'),(718,52,'N'),(718,53,'N'),(718,54,'N'),(718,55,'N'),(718,56,'N'),(718,57,'N'),(718,58,'N'),(718,59,'N'),(721,24,'S'),(722,13,'S'),(723,13,'N'),(723,27,'N'),(723,30,'N'),(723,31,'S'),(723,32,'N'),(723,40,'N'),(723,41,'N'),(723,42,'N'),(723,43,'N'),(723,46,'N'),(723,47,'N'),(723,48,'N'),(723,49,'N'),(727,24,'S'),(728,13,'S'),(729,13,'N'),(729,27,'N'),(729,30,'N'),(729,31,'S'),(729,32,'N'),(729,40,'N'),(729,41,'N'),(729,42,'N'),(729,43,'N'),(729,46,'N'),(729,47,'N'),(729,48,'N'),(729,49,'N'),(733,24,'S'),(734,13,'S'),(735,13,'N'),(735,27,'N'),(735,30,'N'),(735,31,'S'),(735,32,'N'),(735,40,'N'),(735,41,'N'),(735,42,'N'),(735,43,'N'),(735,46,'N'),(735,47,'N'),(735,48,'N'),(735,49,'N'),(739,24,'S'),(740,13,'S'),(741,10,'N'),(741,12,'N'),(741,13,'N'),(741,14,'N'),(741,15,'N'),(741,24,'N'),(741,27,'N'),(741,29,'N'),(741,30,'N'),(741,31,'N'),(741,32,'N'),(741,33,'N'),(741,34,'N'),(741,40,'N'),(741,41,'N'),(741,42,'S'),(741,43,'N'),(741,46,'N'),(741,47,'N'),(741,48,'N'),(741,49,'N'),(741,52,'N'),(741,53,'N'),(741,54,'N'),(741,55,'N'),(741,56,'N'),(745,24,'S'),(746,13,'S'),(747,10,'N'),(747,12,'N'),(747,13,'N'),(747,14,'N'),(747,15,'N'),(747,24,'N'),(747,27,'N'),(747,29,'N'),(747,30,'N'),(747,31,'N'),(747,32,'N'),(747,33,'N'),(747,34,'N'),(747,40,'N'),(747,41,'N'),(747,42,'S'),(747,43,'N'),(747,46,'N'),(747,47,'N'),(747,48,'N'),(747,49,'N'),(747,52,'N'),(747,53,'N'),(747,54,'N'),(747,55,'N'),(747,56,'N'),(750,10,'N'),(750,11,'N'),(750,12,'N'),(750,13,'S'),(750,14,'N'),(750,15,'N'),(750,24,'N'),(750,27,'N'),(750,29,'N'),(750,30,'N'),(750,31,'N'),(750,32,'N'),(750,33,'N'),(750,34,'N'),(750,36,'N'),(750,37,'N'),(750,38,'N'),(750,39,'N'),(750,40,'N'),(750,41,'N'),(750,42,'N'),(750,43,'N'),(750,44,'N'),(750,45,'N'),(750,46,'N'),(750,47,'N'),(750,48,'N'),(750,49,'N'),(750,50,'N'),(750,51,'N'),(750,52,'N'),(750,53,'N'),(750,54,'N'),(750,55,'N'),(750,56,'N'),(750,57,'N'),(750,58,'N'),(750,59,'N'),(751,10,'N'),(751,11,'N'),(751,12,'N'),(751,13,'S'),(751,14,'N'),(751,15,'N'),(751,24,'N'),(751,27,'N'),(751,29,'N'),(751,30,'N'),(751,31,'N'),(751,32,'N'),(751,33,'N'),(751,34,'N'),(751,36,'N'),(751,37,'N'),(751,38,'N'),(751,39,'N'),(751,40,'N'),(751,41,'N'),(751,42,'N'),(751,43,'N'),(751,44,'N'),(751,45,'N'),(751,46,'N'),(751,47,'N'),(751,48,'N'),(751,49,'N'),(751,50,'N'),(751,51,'N'),(751,52,'N'),(751,53,'N'),(751,54,'N'),(751,55,'N'),(751,56,'N'),(751,57,'N'),(751,58,'N'),(751,59,'N'),(753,24,'S'),(754,13,'S'),(755,10,'N'),(755,12,'N'),(755,13,'N'),(755,14,'N'),(755,15,'N'),(755,24,'N'),(755,27,'N'),(755,29,'N'),(755,30,'N'),(755,31,'N'),(755,32,'N'),(755,33,'N'),(755,34,'N'),(755,40,'N'),(755,41,'N'),(755,42,'S'),(755,43,'N'),(755,46,'N'),(755,47,'N'),(755,48,'N'),(755,49,'N'),(755,52,'N'),(755,53,'N'),(755,54,'N'),(755,55,'N'),(755,56,'N'),(759,24,'S'),(760,13,'S'),(761,10,'N'),(761,12,'N'),(761,13,'N'),(761,14,'N'),(761,15,'N'),(761,24,'N'),(761,27,'N'),(761,29,'N'),(761,30,'N'),(761,31,'N'),(761,32,'N'),(761,33,'N'),(761,34,'N'),(761,40,'N'),(761,41,'N'),(761,42,'S'),(761,43,'N'),(761,46,'N'),(761,47,'N'),(761,48,'N'),(761,49,'N'),(761,52,'N'),(761,53,'N'),(761,54,'N'),(761,55,'N'),(761,56,'N'),(764,34,'S'),(765,24,'S'),(766,10,'N'),(766,11,'N'),(766,12,'N'),(766,13,'N'),(766,14,'S'),(766,24,'N'),(766,27,'N'),(766,29,'N'),(766,30,'N'),(766,31,'N'),(766,32,'N'),(766,33,'N'),(766,34,'N'),(766,35,'N'),(766,38,'N'),(766,39,'N'),(766,44,'N'),(766,45,'N'),(766,50,'N'),(766,51,'N'),(766,57,'N'),(766,58,'N'),(771,24,'S'),(772,13,'S'),(773,10,'N'),(773,12,'N'),(773,13,'N'),(773,14,'N'),(773,15,'N'),(773,24,'N'),(773,27,'N'),(773,29,'N'),(773,30,'N'),(773,31,'N'),(773,32,'N'),(773,33,'N'),(773,34,'N'),(773,40,'N'),(773,41,'N'),(773,42,'S'),(773,43,'N'),(773,46,'N'),(773,47,'N'),(773,48,'N'),(773,49,'N'),(773,52,'N'),(773,53,'N'),(773,54,'N'),(773,55,'N'); +/*!40000 ALTER TABLE `rel_secao_modelo_estilo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_serie_assunto` +-- + +DROP TABLE IF EXISTS `rel_serie_assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_serie_assunto` ( + `id_serie` int(11) NOT NULL, + `sequencia` int(11) NOT NULL, + `id_assunto_proxy` int(11) NOT NULL, + PRIMARY KEY (`id_serie`,`id_assunto_proxy`), + KEY `fk_rel_serie_assunto_assunto` (`id_assunto_proxy`), + KEY `fk_rel_serie_assunto_serie` (`id_serie`), + CONSTRAINT `fk_rel_serie_assunto_assunto` FOREIGN KEY (`id_assunto_proxy`) REFERENCES `assunto_proxy` (`id_assunto_proxy`), + CONSTRAINT `fk_rel_serie_assunto_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_serie_assunto` +-- + +LOCK TABLES `rel_serie_assunto` WRITE; +/*!40000 ALTER TABLE `rel_serie_assunto` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_serie_assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_serie_veiculo_publicacao` +-- + +DROP TABLE IF EXISTS `rel_serie_veiculo_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_serie_veiculo_publicacao` ( + `id_serie` int(11) NOT NULL, + `id_veiculo_publicacao` int(11) NOT NULL, + PRIMARY KEY (`id_serie`,`id_veiculo_publicacao`), + KEY `fk_rel_serie_veic_pub_veic_pub` (`id_veiculo_publicacao`), + KEY `fk_rel_serie_veic_pub_serie` (`id_serie`), + CONSTRAINT `fk_rel_serie_veic_pub_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`), + CONSTRAINT `fk_rel_serie_veic_pub_veic_pub` FOREIGN KEY (`id_veiculo_publicacao`) REFERENCES `veiculo_publicacao` (`id_veiculo_publicacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_serie_veiculo_publicacao` +-- + +LOCK TABLES `rel_serie_veiculo_publicacao` WRITE; +/*!40000 ALTER TABLE `rel_serie_veiculo_publicacao` DISABLE KEYS */; +INSERT INTO `rel_serie_veiculo_publicacao` VALUES (1,1),(2,1),(3,1),(4,1),(7,1),(8,1),(10,1),(37,1),(68,1),(94,1),(192,1),(231,1),(232,1),(237,1),(240,1),(242,1),(244,1),(245,1),(247,1),(256,1),(258,1),(259,1),(260,1); +/*!40000 ALTER TABLE `rel_serie_veiculo_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_situacao_unidade` +-- + +DROP TABLE IF EXISTS `rel_situacao_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_situacao_unidade` ( + `id_unidade` int(11) NOT NULL, + `id_situacao` int(11) NOT NULL, + PRIMARY KEY (`id_unidade`,`id_situacao`), + KEY `fk_rel_situacao_unid_situacao` (`id_situacao`), + KEY `fk_rel_situacao_unid_unidade` (`id_unidade`), + CONSTRAINT `fk_rel_situacao_unid_situacao` FOREIGN KEY (`id_situacao`) REFERENCES `situacao` (`id_situacao`), + CONSTRAINT `fk_rel_situacao_unid_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_situacao_unidade` +-- + +LOCK TABLES `rel_situacao_unidade` WRITE; +/*!40000 ALTER TABLE `rel_situacao_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_situacao_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_tipo_procedimento_assunto` +-- + +DROP TABLE IF EXISTS `rel_tipo_procedimento_assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_tipo_procedimento_assunto` ( + `id_tipo_procedimento` int(11) NOT NULL, + `sequencia` int(11) NOT NULL, + `id_assunto_proxy` int(11) NOT NULL, + PRIMARY KEY (`id_tipo_procedimento`,`id_assunto_proxy`), + KEY `fk_rel_tipo_proc_assu_assunto` (`id_assunto_proxy`), + KEY `fk_rel_tipo_proc_assu_tip_proc` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_tipo_proc_assu_assunto` FOREIGN KEY (`id_assunto_proxy`) REFERENCES `assunto_proxy` (`id_assunto_proxy`), + CONSTRAINT `fk_rel_tipo_proc_assu_tip_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_tipo_procedimento_assunto` +-- + +LOCK TABLES `rel_tipo_procedimento_assunto` WRITE; +/*!40000 ALTER TABLE `rel_tipo_procedimento_assunto` DISABLE KEYS */; +INSERT INTO `rel_tipo_procedimento_assunto` VALUES (100000101,0,58),(100000102,0,73),(100000103,0,70),(100000104,0,69),(100000105,0,68),(100000106,0,71),(100000107,0,72),(100000108,0,67),(100000109,0,91),(100000110,0,91),(100000111,0,91),(100000112,0,91),(100000113,0,91),(100000114,0,91),(100000116,0,91),(100000118,0,91),(100000119,0,93),(100000120,0,110),(100000121,0,111),(100000122,0,112),(100000123,0,26),(100000124,0,115),(100000125,0,115),(100000126,0,116),(100000127,0,97),(100000128,0,97),(100000129,0,97),(100000130,0,97),(100000131,0,107),(100000132,0,98),(100000133,0,98),(100000134,0,107),(100000135,0,107),(100000136,0,98),(100000137,0,107),(100000138,0,108),(100000139,0,98),(100000140,0,46),(100000141,0,342),(100000142,0,46),(100000143,0,110),(100000144,0,35),(100000145,0,35),(100000146,0,78),(100000147,0,35),(100000148,0,52),(100000149,0,122),(100000150,0,22),(100000151,0,109),(100000152,0,29),(100000153,0,30),(100000154,0,29),(100000155,0,127),(100000156,0,127),(100000157,0,127),(100000158,0,36),(100000159,0,33),(100000160,0,35),(100000161,0,33),(100000162,0,135),(100000163,0,77),(100000164,0,81),(100000165,0,76),(100000166,0,80),(100000167,0,79),(100000169,0,78),(100000170,1,48),(100000170,0,51),(100000172,0,26),(100000173,0,135),(100000174,0,86),(100000175,0,38),(100000176,0,38),(100000177,0,40),(100000178,0,41),(100000179,0,49),(100000181,0,49),(100000182,0,89),(100000183,0,89),(100000184,0,89),(100000185,0,54),(100000186,0,54),(100000187,0,65),(100000188,0,64),(100000189,0,65),(100000190,0,126),(100000191,0,126),(100000192,0,97),(100000193,0,97),(100000194,0,97),(100000195,0,97),(100000196,0,94),(100000197,0,124),(100000198,0,90),(100000199,0,90),(100000200,0,90),(100000201,0,90),(100000202,0,90),(100000203,0,90),(100000204,0,90),(100000205,0,90),(100000206,0,90),(100000207,0,90),(100000208,0,90),(100000209,0,90),(100000210,0,90),(100000211,0,90),(100000212,0,90),(100000213,0,50),(100000214,0,138),(100000215,0,25),(100000218,0,118),(100000219,0,20),(100000220,0,55),(100000221,0,55),(100000222,0,102),(100000223,0,102),(100000224,0,102),(100000225,0,102),(100000226,0,102),(100000227,0,102),(100000228,0,111),(100000229,0,44),(100000230,0,134),(100000231,0,121),(100000232,0,46),(100000233,0,46),(100000234,0,48),(100000235,0,48),(100000236,0,48),(100000237,0,48),(100000238,0,48),(100000239,0,48),(100000240,0,48),(100000241,0,95),(100000242,0,24),(100000243,0,50),(100000244,0,50),(100000245,0,50),(100000246,0,50),(100000247,0,50),(100000248,0,50),(100000249,0,50),(100000250,0,52),(100000251,0,52),(100000252,0,45),(100000253,0,63),(100000254,0,56),(100000255,0,321),(100000256,0,245),(100000257,0,321),(100000258,0,321),(100000259,0,230),(100000260,0,245),(100000261,0,245),(100000262,0,245),(100000263,0,245),(100000264,0,321),(100000265,0,253),(100000266,0,230),(100000267,0,5),(100000268,0,246),(100000269,0,88),(100000270,0,230),(100000271,0,253),(100000272,0,253),(100000273,0,299),(100000274,0,230),(100000275,0,254),(100000276,0,246),(100000277,0,230),(100000278,0,245),(100000279,0,240),(100000280,0,230),(100000281,0,237),(100000282,0,239),(100000283,0,299),(100000284,0,235),(100000285,0,132),(100000286,0,129),(100000286,1,132),(100000287,0,129),(100000288,0,173),(100000289,0,49),(100000290,0,175),(100000291,0,162),(100000292,0,162),(100000293,0,155),(100000294,0,168),(100000295,0,167),(100000296,0,170),(100000297,0,218),(100000298,0,224),(100000299,0,224),(100000300,0,221),(100000301,0,222),(100000302,0,219),(100000303,0,101),(100000304,0,3),(100000305,0,5),(100000306,0,5),(100000307,0,5),(100000308,0,5),(100000309,0,347),(100000310,0,5),(100000311,0,347),(100000312,0,347),(100000313,0,5),(100000314,0,5),(100000315,0,5),(100000316,0,5),(100000317,0,164),(100000318,0,164),(100000319,0,164),(100000320,0,164),(100000321,0,164),(100000322,0,164),(100000323,0,164),(100000324,0,164),(100000325,0,164),(100000326,0,164),(100000327,0,101),(100000328,0,164),(100000329,0,164),(100000330,0,164),(100000331,0,164),(100000332,0,164),(100000333,0,18),(100000334,0,18),(100000335,0,18),(100000336,0,18),(100000337,0,18),(100000338,0,18),(100000339,0,231),(100000340,0,231),(100000341,0,16),(100000342,0,16),(100000343,0,260),(100000344,0,16),(100000345,0,16),(100000346,0,9),(100000347,0,9),(100000348,0,9),(100000349,0,9),(100000350,0,9),(100000351,0,18),(100000352,0,18),(100000353,0,18),(100000354,0,18),(100000355,0,18),(100000356,0,18),(100000357,0,18),(100000358,0,18),(100000359,0,245),(100000360,0,101),(100000361,0,101),(100000362,0,101),(100000363,0,101),(100000364,0,101),(100000365,0,282),(100000366,0,282),(100000367,0,18),(100000368,0,280),(100000369,0,18),(100000370,0,270),(100000370,1,271),(100000370,2,272),(100000370,3,273),(100000371,0,270),(100000371,1,271),(100000371,2,272),(100000371,3,273),(100000372,0,340),(100000373,0,341),(100000374,0,231),(100000375,0,231),(100000376,0,3),(100000377,0,3),(100000378,0,3),(100000379,0,3),(100000380,0,3),(100000381,0,18),(100000382,0,18),(100000383,0,347),(100000384,0,297),(100000385,0,321),(100000386,0,18),(100000387,0,18),(100000388,0,18),(100000389,0,278),(100000390,0,246),(100000391,0,154),(100000392,0,115),(100000393,0,115),(100000394,0,115),(100000395,0,115),(100000396,0,116),(100000397,0,115),(100000398,0,115),(100000399,0,124),(100000400,0,54),(100000401,0,5),(100000402,0,5),(100000403,0,5),(100000404,0,5),(100000405,0,58),(100000406,0,109),(100000407,0,40),(100000408,0,347),(100000409,0,282),(100000410,0,115),(100000411,0,302),(100000412,0,101),(100000413,0,101),(100000414,0,36),(100000415,0,36),(100000416,0,3),(100000417,0,164),(100000418,0,171),(100000419,0,275),(100000420,0,132),(100000421,0,132),(100000422,0,131),(100000423,0,5); +/*!40000 ALTER TABLE `rel_tipo_procedimento_assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_unidade_tipo_contato` +-- + +DROP TABLE IF EXISTS `rel_unidade_tipo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_unidade_tipo_contato` ( + `id_rel_unidade_tipo_contato` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_tipo_contato` int(11) NOT NULL, + `sta_acesso` char(1) NOT NULL, + PRIMARY KEY (`id_rel_unidade_tipo_contato`), + KEY `i01_rel_unidade_tipo_contato` (`id_unidade`,`id_tipo_contato`,`sta_acesso`), + KEY `fk_rel_unid_tip_cont_tip_cont` (`id_tipo_contato`), + KEY `fk_rel_unid_tip_cont_unid` (`id_unidade`), + CONSTRAINT `fk_rel_unid_tip_cont_tip_cont` FOREIGN KEY (`id_tipo_contato`) REFERENCES `tipo_contato` (`id_tipo_contato`), + CONSTRAINT `fk_rel_unid_tip_cont_unid` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_unidade_tipo_contato` +-- + +LOCK TABLES `rel_unidade_tipo_contato` WRITE; +/*!40000 ALTER TABLE `rel_unidade_tipo_contato` DISABLE KEYS */; +INSERT INTO `rel_unidade_tipo_contato` VALUES (1,110000001,1,'A'),(2,110000001,2,'A'),(3,110000001,3,'A'),(4,110000001,4,'A'),(5,110000001,5,'A'),(7,110000001,6,'A'),(8,110000001,7,'A'),(9,110000001,8,'A'); +/*!40000 ALTER TABLE `rel_unidade_tipo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_usuario_grupo_acomp` +-- + +DROP TABLE IF EXISTS `rel_usuario_grupo_acomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_usuario_grupo_acomp` ( + `id_usuario` int(11) NOT NULL, + `id_grupo_acompanhamento` int(11) NOT NULL, + PRIMARY KEY (`id_usuario`,`id_grupo_acompanhamento`), + KEY `fk_rel_usu_grp_acomp_usuario` (`id_usuario`), + KEY `fk_rel_usu_grp_acomp_grp_acomp` (`id_grupo_acompanhamento`), + CONSTRAINT `fk_rel_usu_grp_acomp_grp_acomp` FOREIGN KEY (`id_grupo_acompanhamento`) REFERENCES `grupo_acompanhamento` (`id_grupo_acompanhamento`), + CONSTRAINT `fk_rel_usu_grp_acomp_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_usuario_grupo_acomp` +-- + +LOCK TABLES `rel_usuario_grupo_acomp` WRITE; +/*!40000 ALTER TABLE `rel_usuario_grupo_acomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_usuario_grupo_acomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_usuario_grupo_bloco` +-- + +DROP TABLE IF EXISTS `rel_usuario_grupo_bloco`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_usuario_grupo_bloco` ( + `id_grupo_bloco` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + PRIMARY KEY (`id_grupo_bloco`,`id_usuario`), + KEY `fk_rel_usu_grupo_bloco_usuario` (`id_usuario`), + KEY `fk_rel_usu_grupo_bloco_grp_blo` (`id_grupo_bloco`), + CONSTRAINT `fk_rel_usu_grupo_bloco_grp_blo` FOREIGN KEY (`id_grupo_bloco`) REFERENCES `grupo_bloco` (`id_grupo_bloco`), + CONSTRAINT `fk_rel_usu_grupo_bloco_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_usuario_grupo_bloco` +-- + +LOCK TABLES `rel_usuario_grupo_bloco` WRITE; +/*!40000 ALTER TABLE `rel_usuario_grupo_bloco` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_usuario_grupo_bloco` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_usuario_marcador` +-- + +DROP TABLE IF EXISTS `rel_usuario_marcador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_usuario_marcador` ( + `id_marcador` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + PRIMARY KEY (`id_marcador`,`id_usuario`), + KEY `fk_rel_usuario_marcad_marcad` (`id_marcador`), + KEY `fk_rel_usuario_marcad_usuario` (`id_usuario`), + CONSTRAINT `fk_rel_usuario_marcad_marcad` FOREIGN KEY (`id_marcador`) REFERENCES `marcador` (`id_marcador`), + CONSTRAINT `fk_rel_usuario_marcad_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_usuario_marcador` +-- + +LOCK TABLES `rel_usuario_marcador` WRITE; +/*!40000 ALTER TABLE `rel_usuario_marcador` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_usuario_marcador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_usuario_tipo_proced` +-- + +DROP TABLE IF EXISTS `rel_usuario_tipo_proced`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_usuario_tipo_proced` ( + `id_usuario` int(11) NOT NULL, + `id_tipo_procedimento` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_usuario`,`id_tipo_procedimento`,`id_unidade`), + KEY `fk_rel_usu_tipo_proced_usu` (`id_usuario`), + KEY `fk_rel_usu_tipo_proced_unidade` (`id_unidade`), + KEY `fk_rel_usu_tipo_proced_tipo_pr` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_usu_tipo_proced_tipo_pr` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`), + CONSTRAINT `fk_rel_usu_tipo_proced_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_rel_usu_tipo_proced_usu` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_usuario_tipo_proced` +-- + +LOCK TABLES `rel_usuario_tipo_proced` WRITE; +/*!40000 ALTER TABLE `rel_usuario_tipo_proced` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_usuario_tipo_proced` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_usuario_usuario_unidade` +-- + +DROP TABLE IF EXISTS `rel_usuario_usuario_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_usuario_usuario_unidade` ( + `id_usuario` int(11) NOT NULL, + `id_usuario_atribuicao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_usuario`,`id_usuario_atribuicao`,`id_unidade`), + KEY `fk_rel_usu_usu_uni_usuario` (`id_usuario`), + KEY `fk_rel_usu_usu_uni_unidade` (`id_unidade`), + KEY `fk_rel_usu_usu_uni_usu_atrib` (`id_usuario_atribuicao`), + CONSTRAINT `fk_rel_usu_usu_uni_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_rel_usu_usu_uni_usu_atrib` FOREIGN KEY (`id_usuario_atribuicao`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_rel_usu_usu_uni_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_usuario_usuario_unidade` +-- + +LOCK TABLES `rel_usuario_usuario_unidade` WRITE; +/*!40000 ALTER TABLE `rel_usuario_usuario_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `rel_usuario_usuario_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `replicacao_federacao` +-- + +DROP TABLE IF EXISTS `replicacao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `replicacao_federacao` ( + `id_replicacao_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `id_protocolo_federacao` varchar(26) NOT NULL, + `sta_tipo` int(11) NOT NULL, + `dth_cadastro` datetime NOT NULL, + `dth_replicacao` datetime DEFAULT NULL, + `tentativa` int(11) NOT NULL, + `erro` varchar(4000) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_replicacao_federacao`), + KEY `fk_replicacao_fed_inst_fed` (`id_instalacao_federacao`), + KEY `fk_replicacao_fed_prot_fed` (`id_protocolo_federacao`), + CONSTRAINT `fk_replicacao_fed_inst_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`), + CONSTRAINT `fk_replicacao_fed_prot_fed` FOREIGN KEY (`id_protocolo_federacao`) REFERENCES `protocolo_federacao` (`id_protocolo_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `replicacao_federacao` +-- + +LOCK TABLES `replicacao_federacao` WRITE; +/*!40000 ALTER TABLE `replicacao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `replicacao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `retorno_programado` +-- + +DROP TABLE IF EXISTS `retorno_programado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `retorno_programado` ( + `id_retorno_programado` int(11) NOT NULL, + `id_atividade_envio` int(11) NOT NULL, + `id_atividade_retorno` int(11) DEFAULT NULL, + `id_usuario` int(11) NOT NULL, + `dta_programada` datetime NOT NULL, + `dth_alteracao` datetime DEFAULT NULL, + `id_unidade_envio` int(11) NOT NULL, + `id_unidade_retorno` int(11) NOT NULL, + `id_protocolo` bigint(20) NOT NULL, + PRIMARY KEY (`id_retorno_programado`), + KEY `i04_retorno_programado` (`dta_programada`), + KEY `fk_retorno_programado_usuario` (`id_usuario`), + KEY `fk_ret_prog_ativ_envio` (`id_atividade_envio`), + KEY `fk_ret_prog_ativ_retorno` (`id_atividade_retorno`), + KEY `i06_retorno_programado` (`dta_programada`), + KEY `fk_ret_programado_uni_envio` (`id_unidade_envio`), + KEY `fk_ret_programado_uni_retorno` (`id_unidade_retorno`), + KEY `fk_ret_programado_protocolo` (`id_protocolo`), + KEY `i07_retorno_programado` (`id_unidade_envio`,`id_unidade_retorno`,`id_protocolo`,`id_atividade_retorno`), + KEY `i08_retorno_programado` (`id_unidade_envio`,`id_unidade_retorno`,`dta_programada`), + KEY `i09_retorno_programado` (`id_unidade_envio`,`id_unidade_retorno`,`id_protocolo`), + CONSTRAINT `fk_ret_prog_ativ_envio` FOREIGN KEY (`id_atividade_envio`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ret_prog_ativ_retorno` FOREIGN KEY (`id_atividade_retorno`) REFERENCES `atividade` (`id_atividade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ret_programado_protocolo` FOREIGN KEY (`id_protocolo`) REFERENCES `protocolo` (`id_protocolo`), + CONSTRAINT `fk_ret_programado_uni_envio` FOREIGN KEY (`id_unidade_envio`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_ret_programado_uni_retorno` FOREIGN KEY (`id_unidade_retorno`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_retorno_programado_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `retorno_programado` +-- + +LOCK TABLES `retorno_programado` WRITE; +/*!40000 ALTER TABLE `retorno_programado` DISABLE KEYS */; +/*!40000 ALTER TABLE `retorno_programado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `secao_documento` +-- + +DROP TABLE IF EXISTS `secao_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `secao_documento` ( + `id_secao_documento` int(11) NOT NULL, + `id_secao_modelo` int(11) NOT NULL, + `id_documento` bigint(20) DEFAULT NULL, + `id_base_conhecimento` int(11) DEFAULT NULL, + `ordem` int(11) NOT NULL, + `sin_somente_leitura` char(1) NOT NULL, + `sin_assinatura` char(1) NOT NULL, + `sin_principal` char(1) NOT NULL, + `sin_dinamica` char(1) NOT NULL, + `sin_cabecalho` char(1) NOT NULL, + `sin_rodape` char(1) NOT NULL, + `conteudo` longtext, + `sin_html` char(1) NOT NULL, + PRIMARY KEY (`id_secao_documento`), + KEY `i01_secao_documento` (`id_documento`,`id_base_conhecimento`,`sin_cabecalho`,`sin_rodape`), + KEY `fk_secao_doc_secao_mod` (`id_secao_modelo`), + KEY `fk_secao_doc_base_conhecimento` (`id_base_conhecimento`), + KEY `fk_secao_documento_documento` (`id_documento`), + CONSTRAINT `fk_secao_doc_base_conhecimento` FOREIGN KEY (`id_base_conhecimento`) REFERENCES `base_conhecimento` (`id_base_conhecimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_secao_doc_secao_mod` FOREIGN KEY (`id_secao_modelo`) REFERENCES `secao_modelo` (`id_secao_modelo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_secao_documento_documento` FOREIGN KEY (`id_documento`) REFERENCES `documento` (`id_documento`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `secao_documento` +-- + +LOCK TABLES `secao_documento` WRITE; +/*!40000 ALTER TABLE `secao_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `secao_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `secao_imprensa_nacional` +-- + +DROP TABLE IF EXISTS `secao_imprensa_nacional`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `secao_imprensa_nacional` ( + `id_secao_imprensa_nacional` int(11) NOT NULL, + `id_veiculo_imprensa_nacional` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id_secao_imprensa_nacional`), + KEY `fk_secao_in_veiculo_in` (`id_veiculo_imprensa_nacional`), + CONSTRAINT `fk_secao_in_veiculo_in` FOREIGN KEY (`id_veiculo_imprensa_nacional`) REFERENCES `veiculo_imprensa_nacional` (`id_veiculo_imprensa_nacional`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `secao_imprensa_nacional` +-- + +LOCK TABLES `secao_imprensa_nacional` WRITE; +/*!40000 ALTER TABLE `secao_imprensa_nacional` DISABLE KEYS */; +INSERT INTO `secao_imprensa_nacional` VALUES (1,1,'1','Leis, decretos, resoluções, instruções normativas, portarias e outros atos normativos de interesse geral.'),(2,1,'2','Atos de interesse dos servidores da Administração Pública Federal.'),(3,1,'3','Contratos, editais, avisos e ineditoriais.'); +/*!40000 ALTER TABLE `secao_imprensa_nacional` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `secao_modelo` +-- + +DROP TABLE IF EXISTS `secao_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `secao_modelo` ( + `id_secao_modelo` int(11) NOT NULL, + `id_modelo` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `conteudo` longtext, + `ordem` int(11) NOT NULL, + `sin_somente_leitura` char(1) NOT NULL, + `sin_assinatura` char(1) NOT NULL, + `sin_principal` char(1) NOT NULL, + `sin_dinamica` char(1) NOT NULL, + `sin_cabecalho` char(1) NOT NULL, + `sin_rodape` char(1) NOT NULL, + `sin_html` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_secao_modelo`), + KEY `fk_secao_modelo_modelo` (`id_modelo`), + KEY `i01_secao_modelo` (`id_modelo`,`ordem`), + CONSTRAINT `fk_secao_modelo_modelo` FOREIGN KEY (`id_modelo`) REFERENCES `modelo` (`id_modelo`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `secao_modelo` +-- + +LOCK TABLES `secao_modelo` WRITE; +/*!40000 ALTER TABLE `secao_modelo` DISABLE KEYS */; +INSERT INTO `secao_modelo` VALUES (162,27,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(163,27,'Processo e Interessado','

  

\r\n

Processo nº @processo@

\r\n

Interessado: @interessados_virgula_espaco@

\r\n

  

',20,'S','N','N','S','N','N','S','S'),(164,27,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO DO SIGNATÁRIO] DA @descricao_orgao_maiusculas@, no uso de suas atribuições legais e regulamentares, em especial a disposta no art. XX, inciso ZZ, do Regimento Interno da @sigla_orgao_origem@, aprovado pela [nome_norma] nº [numero_da_norma], de [dia] de [mes] de [ano], examinando os autos do Processo em epígrafe, [digite aqui o texto do conteúdo principal do documento].

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n',30,'N','N','S','N','N','N','S','S'),(165,27,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(166,28,'Título do Documento','@serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@',10,'S','N','N','S','N','N','N','S'),(167,28,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. [DIGITE AQUI O DISPOSITIVO] do Regimento Interno da @sigla_orgao_origem@, aprovado pela [INDIQUE AQUI A NORMA QUE APROVOU O REGIMENTO INTERNO], e

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@;

\r\n\r\n

RESOLVE:

\r\n\r\n

Art. 1º  Aprovar ... .... .

\r\n\r\n

Art. 2º  Digite aqui o texto ... .... .

\r\n\r\n

Parágrafo único.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 3º  Digite aqui o texto ... .... .

\r\n\r\n

§ 1º  Digite aqui o texto ... .... :

\r\n\r\n

I - Digite aqui o texto ... .... :

\r\n\r\n

a) Digite aqui o texto ... .... :

\r\n\r\n

b) Digite aqui o texto ... .... :

\r\n\r\n

1. Digite aqui o texto ... .... .

\r\n\r\n

2. Digite aqui o texto ... .... .

\r\n\r\n

c) Digite aqui o texto ... .... :

\r\n\r\n

§ 2º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 4º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 5º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 6º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 7º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 8º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 9º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 10.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 11.  Este Ato entra em vigor na data de publicação de seu extrato no Diário Oficial da União.

\r\n',20,'N','N','S','N','N','N','S','S'),(168,28,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(173,30,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(174,30,'Corpo do Texto','

O processo em epígrafe foi devidamente convertido do suporte físico para eletrônico no SEI, em conformidade com o disposto no [dispositivo] da [norma], mantendo o mesmo número do processo físico (NUP) e mesmo interessado.

\r\n\r\n

Foi efetivada marcação da referida conversão no cadastro do processo no [nome do sistema legado] e que o processo físico será imediatamente encaminhado para o Arquivo Geral.

\r\n\r\n

Fica encerrada a tramitação do processo em suporte físico, sendo vedada qualquer juntada física de novos documentos, para, a partir de então, ter continuidade de sua instrução e tramitação somente por meio do SEI.

\r\n\r\n

Para fins de registro, o processo originalmente em suporte físico era composto de:

\r\n\r\n

Folhas: [DIGITE AQUI A QUANTIDADE TOTAL DE FOLHAS]

\r\n\r\n

Volumes: [DIGITE AQUI A QUANTIDADE DE VOLUMES]

\r\n\r\n

Mídias: [DIGITE AQUI A QUANTIDADE TOTAL DE MÍDIAS]

\r\n\r\n

O processo eletrônico resultante da presente conversão ficou composto da seguinte forma:

\r\n\r\n

Volume de Processo: [DIGITE AQUI A QUANTIDADE TOTAL DE ARQUIVOS DE VOLUMES]

\r\n\r\n

Apartado Sigiloso: [DIGITE AQUI A QUANTIDADE TOTAL DE ARQUIVOS DE APARTADOS SIGILOSOS]

\r\n\r\n

Conteúdo de Mídia: [DIGITE AQUI A QUANTIDADE TOTAL DE ARQUIVOS DE CONTEÚDO DE MÍDIA]

\r\n\r\n

Em cumprimento ao disposto no art. 3º, caput, da Lei nº 12.682, de 9 de julho de 2012, os arquivos PDF oriundos da digitalização da documentação em suporte físico (papel) foram devidamente submetidos a procedimento de conferência e autenticação por servidor público, por meio de sua assinatura eletrônica com emprego de certificado digital emitido no âmbito da ICP-Brasil.

\r\n\r\n

Unidade responsável pela conversão: @sigla_unidade@

\r\n\r\n

A conclusão do procedimento de conversão se deu na data de assinatura do presente Termo.

\r\n',30,'N','N','S','N','N','N','S','S'),(175,30,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(189,34,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(191,34,'Separação de Seção',NULL,20,'S','N','N','N','N','N','N','S'),(193,34,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO DO SIGNATÁRIO] DA @descricao_orgao_maiusculas@, no uso de suas atribuições legais e regulamentares, em especial a disposta no art. XX, inciso ZZ, do Regimento Interno da @sigla_orgao_origem@, aprovado pela [nome_norma] nº [numero_da_norma], de [dia] de [mes] de [ano], examinando os autos do Processo em epígrafe, [digite aqui o texto do conteúdo principal do documento].

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n',30,'N','N','S','N','N','N','S','S'),(195,34,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(200,36,'Título do Documento','@serie@ Nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(201,36,'Processo','PROCESSO Nº @processo@',20,'S','N','N','S','N','N','N','S'),(203,36,'Interessado','INTERESSADO: @interessados_virgula_espaco_maiusculas@',30,'S','N','N','S','N','N','N','S'),(205,36,'Assinatura',NULL,50,'N','S','N','N','N','N','N','S'),(207,36,'Corpo do Texto','

CONSELHEIRO RELATOR

\r\n\r\n

Digite aqui o nome do Conselheiro

\r\n\r\n

ASSUNTO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

EMENTA

\r\n\r\n

DIGITE O TEXTO EM CAIXA ALTA

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

REFERÊNCIAS

\r\n\r\n

Parecer da Procuradoria nº xxx/aaaa.

\r\n\r\n

RELATÓRIO

\r\n\r\n

DOS FATOS

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

DA ANÁLISE

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação.

\r\n\r\n

Texto.

\r\n\r\n

DO DIREITO

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

CONCLUSÃO

\r\n\r\n

[Digite aqui o texto da conclusão].

\r\n\r\n

[Digite aqui o texto da conclusão].

\r\n',40,'N','N','S','N','N','N','S','S'),(208,37,'Título do Documento','@serie@ Nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(209,37,'Corpo do Texto','

CONSELHEIRO

\r\n\r\n

Digite aqui o nome do Conselheiro

\r\n\r\n

ASSUNTO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

EMENTA

\r\n\r\n

DIGITE O TEXTO EM CAIXA ALTA

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

REFERÊNCIA

\r\n\r\n

Parecer da Procuradoria nº xxx/aaaa.

\r\n\r\n

RELATÓRIO

\r\n\r\n

DOS FATOS

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

DAS CONSIDERAÇÕES POR PARTE DESTE CONSELHEIRO

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto:

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação.

\r\n\r\n

Texto.

\r\n\r\n

CONCLUSÃO

\r\n\r\n

[Digite aqui o texto da conclusão].

\r\n\r\n

[Digite aqui o texto da conclusão].

\r\n',40,'N','N','S','N','N','N','S','S'),(210,37,'Assinatura',NULL,50,'N','S','N','N','N','N','N','S'),(214,39,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(217,39,'Processo e Interessado','

  

\r\n

Processo nº @processo@

\r\n

Interessado: @interessados_virgula_espaco@

\r\n

  

',20,'S','N','N','S','N','N','S','S'),(219,39,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(220,39,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO DO SIGNATÁRIO] DA @descricao_orgao_maiusculas@, no uso de suas atribuições legais e regulamentares, em especial a disposta no art. XX, inciso ZZ, do Regimento Interno da @sigla_orgao_origem@, aprovado pela [nome_norma] nº [numero_da_norma], de [dia] de [mes] de [ano], examinando os autos do Processo em epígrafe, [digite aqui o texto do conteúdo principal do documento].

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n',30,'N','N','S','N','N','N','S','S'),(233,40,'Título',NULL,10,'S','N','N','N','N','N','N','S'),(240,40,'Título Seção 1','Que atividade é?',20,'S','N','N','N','N','N','N','S'),(241,40,'Conteúdo Seção 1','[digite aqui o conteúdo]',30,'N','N','N','N','N','N','N','S'),(242,40,'Título Seção 2','Quem faz?',40,'S','N','N','N','N','N','N','S'),(243,40,'Conteúdo Seção 2','[digite aqui o conteúdo]',50,'N','N','N','N','N','N','N','S'),(244,40,'Título Seção 3','Como se faz? Possui fluxo já mapeado?',60,'S','N','N','N','N','N','N','S'),(245,40,'Conteúdo Seção 3','[digite aqui o conteúdo]',70,'N','N','N','N','N','N','N','S'),(246,40,'Título Seção 4','Que informações/condições são necessárias?',80,'S','N','N','N','N','N','N','S'),(247,40,'Conteúdo Seção 4','[digite aqui o conteúdo]',90,'N','N','N','N','N','N','N','S'),(248,40,'Título Seção 5','Quais documentos são necessários?',100,'S','N','N','N','N','N','N','S'),(249,40,'Conteúdo Seção 5','[digite aqui o conteúdo]',110,'N','N','N','N','N','N','N','S'),(250,40,'Título Seção 6','Qual é a Base Legal?',120,'S','N','N','N','N','N','N','S'),(251,40,'Conteúdo Seção 6','[digite aqui o conteúdo]',130,'N','N','N','N','N','N','N','S'),(252,43,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(253,43,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(254,43,'Interessado','Recorrente/Interessado: @interessados_virgula_espaco_maiusculas@',30,'S','N','N','S','N','N','N','S'),(255,43,'Assinatura',NULL,50,'N','S','N','N','N','N','N','S'),(257,43,'Corpo do Texto','

CNPJ/MF Nº XX.XXX.XXX/XXXX-DV

\r\n\r\n

Conselheiro Relator: [Digite aqui o Nome Completo]

\r\n\r\n

Fórum Deliberativo: Reunião nº [indique o número], de DD de mmmmmm de aaaaa

\r\n\r\n

EMENTA

\r\n\r\n

DIGITE O TEXTO EM CAIXA ALTA

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

ACÓRDÃO

\r\n\r\n

Vistos, relatados e discutidos os presentes autos, acordam os membros do Conselho Diretor, por unanimidade, nos termos da Análise nº XX/AAAA-GCxx, de dd de mmmmmm de aaaaa, integrante deste Acórdão:

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

Clique aqui para digitar o texto.

\r\n\r\n

Participaram da deliberação o Presidente [nome completo] e os Conselheiros [nome completo de cada Conselheiro participante].

\r\n\r\n

Ausente, justificadamente, o Conselheiro [nome completo], por motivo de [indicar o motivo].

\r\n',40,'N','N','S','N','N','N','S','S'),(275,48,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(276,48,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO DO SIGNATÁRIO] DA @descricao_orgao_maiusculas@, no uso de suas atribuições legais e regulamentares, em especial a disposta no art. XX, inciso ZZ, do Regimento Interno da @sigla_orgao_origem@, aprovado pela [nome_norma] nº [numero_da_norma], de [dia] de [mes] de [ano], examinando os autos do Processo em epígrafe, [digite aqui o texto do conteúdo principal do documento].

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n\r\n

[digite aqui o texto do conteúdo principal do documento]

\r\n',30,'N','N','S','N','N','N','S','S'),(277,48,'Processo e Interessado','

  

\r\n

Processo nº @processo@

\r\n

Interessado: @interessados_virgula_espaco@

\r\n

  

',20,'S','N','N','S','N','N','S','S'),(278,48,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(282,50,'Título do Documento, Processo e Interessado','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

COTA Nº

\r\n
\r\n

@numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@/PGF/AGU

\r\n
\r\n

PROCESSO Nº

\r\n
\r\n

@processo@

\r\n
\r\n

INTERESSADO:

\r\n
\r\n

@interessados_virgula_espaco@

\r\n
\r\n',10,'S','N','N','S','N','N','S','S'),(283,50,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

ASSUNTO:

\r\n
\r\n

Digite aqui o texto do assunto... .... .

\r\n
\r\n\r\n

  

\r\n\r\n

Senhor Procurador-Geral,

\r\n\r\n

 

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',20,'N','N','S','N','N','N','S','S'),(285,50,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(292,27,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(293,27,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(294,28,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(295,28,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(298,30,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(299,30,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(306,34,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(307,34,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(310,36,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(311,36,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(312,37,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(313,37,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(316,39,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(317,39,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(318,40,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@\r\n

BASE DE CONHECIMENTO

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(323,43,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(324,43,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(327,48,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(328,48,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(331,50,'Cabeçalho','
\"Timbre\"

ADVOCACIA GERAL DA UNIÃO
PROCURADORIA-GERAL FEDERAL
PROCURADORIA FEDERAL ESPECIALIZADA-@sigla_orgao_origem@
  

',0,'S','N','N','S','S','N','S','S'),(332,50,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(336,51,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(337,51,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(339,51,'Endereçamento','Ao(À) Sr(a). @nome_destinatario@',30,'S','N','N','S','N','N','N','S'),(340,51,'Separador de Seções','

  

',40,'S','N','N','N','N','N','S','S'),(341,51,'Corpo do Texto','

Assunto: Texto do Assunto em negrito.

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Documentos Relacionados:

\r\n
\r\n

I - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

II - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

III - Digite aqui a descrição do documento (SEI nº #######).

\r\n
\r\n\r\n

  

\r\n\r\n

Atenciosamente,

\r\n',50,'N','N','S','N','N','N','S','S'),(350,51,'Assinatura',NULL,60,'N','S','N','N','N','N','N','S'),(351,51,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(365,53,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(366,53,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(368,53,'Endereçamento','

Ao(À) Sr(a).:

\r\n

@destinatarios_quebra_linha@

',30,'S','N','N','S','N','N','S','S'),(369,53,'Separador de Seções','

  

',40,'S','N','N','N','N','N','S','S'),(370,53,'Corpo do Texto','

Assunto: Texto do Assunto em negrito.

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Documentos Relacionados:

\r\n
\r\n

I - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

II - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

III - Digite aqui a descrição do documento (SEI nº #######).

\r\n
\r\n\r\n

  

\r\n\r\n

Atenciosamente,

\r\n',50,'N','N','S','N','N','N','S','S'),(376,53,'Assinatura',NULL,60,'N','S','N','N','N','N','N','S'),(377,53,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(382,55,'Cabeçalho','
\"Timbre\"

ADVOCACIA GERAL DA UNIÃO
PROCURADORIA-GERAL FEDERAL
PROCURADORIA FEDERAL ESPECIALIZADA-@sigla_orgao_origem@
  

',0,'S','N','N','S','S','N','S','S'),(383,55,'Título do Documento, Processo e Interessado','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

PARECER Nº

\r\n
\r\n

@numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@/PGF/AGU

\r\n
\r\n

PROCESSO Nº

\r\n
\r\n

@processo@

\r\n
\r\n

INTERESSADO:

\r\n
\r\n

@interessados_virgula_espaco@

\r\n
\r\n',10,'S','N','N','S','N','N','S','S'),(384,55,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

ASSUNTO:

\r\n
\r\n

Digite aqui o texto do assunto... .... .

\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

 

\r\n
\r\n

Digite aqui o texto do item da ementa... .... .

\r\n
\r\n\r\n

  

\r\n\r\n

Senhor Procurador-Geral,

\r\n\r\n

 

\r\n\r\n

I. RELATÓRIO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

II. FUNDAMENTAÇÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

III. CONCLUSÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',20,'N','N','S','N','N','N','S','S'),(385,55,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(386,55,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(389,56,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(390,56,'Título do Documento','@serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@',10,'S','N','N','S','N','N','N','S'),(392,56,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Digite aqui a Ementa...

\r\n
\r\n\r\n

O ______ DO @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. XXX da [indicar a norma pertinente], e pelo art. XXX do [indicar a norma pertinente],

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO os comentários recebidos decorrentes da Consulta Pública nº xxx, de y de mmmmmmm de aaaa, publicada no Diário Oficial da União do dia y de mmmmmmm de aaaa;

\r\n\r\n

CONSIDERANDO deliberação tomada em sua Reunião nº xxx, de y de mmmmmmm de aaaa;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@,

\r\n\r\n

RESOLVE:

\r\n\r\n

Art. 1º  Aprovar, na forma do anexo, o Regulamento de ... .... .

\r\n\r\n

Art. 2º  Alterar a Resolução nº xxx, de dd de mmmmmm de aaaa, que [ementa da resolução a ser alterada], que passa a vigorar com as seguintes alterações:

\r\n\r\n

“Art. 2º .............................................................................

\r\n\r\n

I - Digite aqui o texto ... ....;

\r\n\r\n

II - Digite aqui o texto ... ....;

\r\n\r\n

III - Digite aqui o texto ... ....;

\r\n\r\n

.............................................................................” (NR)

\r\n\r\n

“Art. 3º  Digite aqui o texto ... .... .” (NR)

\r\n\r\n

Art. 3º  Revogar ... ... .... .

\r\n\r\n

Art. 4º  Esta Resolução entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(393,56,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(394,56,'Anexos','

ANEXO I À @serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@

\r\n\r\n

REGULAMENTO DE ... ...

\r\n\r\n

CAPÍTULO I

\r\n\r\n

DAS DISPOSIÇÕES GERAIS

\r\n\r\n

Art. 1º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 2º  Digite aqui o texto ... .... .

\r\n\r\n

Parágrafo único.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 3º  Digite aqui o texto ... .... .

\r\n\r\n

§ 1º  Digite aqui o texto ... .... :

\r\n\r\n

I - Digite aqui o texto ... .... :

\r\n\r\n

a) Digite aqui o texto ... .... :

\r\n\r\n

b) Digite aqui o texto ... .... :

\r\n\r\n

1. Digite aqui o texto ... .... .

\r\n\r\n

2. Digite aqui o texto ... .... .

\r\n\r\n

c) Digite aqui o texto ... .... :

\r\n\r\n

§ 2º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO II

\r\n\r\n

[DIGITE AQUI O TEXTO DO CAPÍTULO EM CAIXA ALTA]

\r\n\r\n

Seção I

\r\n\r\n

[Digite aqui o Texto da Seção]

\r\n\r\n

Art. 4º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 5º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 6º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 7º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 8º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 9º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO III

\r\n\r\n

DAS DISPOSIÇÕES FINAIS E TRANSITÓRIAS

\r\n\r\n

Art. 10.  Digite aqui o texto ... .... .

\r\n\r\n

  

\r\n\r\n

ANEXO II À @serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@

\r\n\r\n

NORMA DE ... ...

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto:

\r\n\r\n

Item.

\r\n\r\n

Item.

\r\n\r\n

Alínea.

\r\n\r\n

Alínea.

\r\n\r\n

Item.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n',40,'N','N','N','N','N','N','S','S'),(395,56,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(396,57,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(397,57,'Título do Documento','@serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@',10,'S','N','N','S','N','N','N','S'),(399,57,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Digite aqui a Ementa...

\r\n
\r\n\r\n

O [DIGITE AQUI O NOME DO CARGO] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. [DIGITE AQUI O DISPOSITIVO] do [DIGITE AQUI A LEGISLAÇÃO APLICADA], aprovado(a) pela [INDIQUE AQUI A NORMA, SEU NÚMERO E DATA], e

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@,

\r\n\r\n

RESOLVE:

\r\n\r\n

Art. 1º  Aprovar ... .... .

\r\n\r\n

CAPÍTULO I

\r\n\r\n

DAS DISPOSIÇÕES GERAIS

\r\n\r\n

Art. 2º  Digite aqui o texto ... .... .

\r\n\r\n

Parágrafo único.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 3º  Digite aqui o texto ... .... .

\r\n\r\n

§ 1º  Digite aqui o texto ... .... :

\r\n\r\n

I - Digite aqui o texto ... .... :

\r\n\r\n

a) Digite aqui o texto ... .... :

\r\n\r\n

b) Digite aqui o texto ... .... :

\r\n\r\n

1. Digite aqui o texto ... .... .

\r\n\r\n

2. Digite aqui o texto ... .... .

\r\n\r\n

c) Digite aqui o texto ... .... :

\r\n\r\n

§ 2º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO II

\r\n\r\n

[DIGITE AQUI O TEXTO DO CAPÍTULO EM CAIXA ALTA]

\r\n\r\n

Seção I

\r\n\r\n

[Digite aqui o Texto da Seção]

\r\n\r\n

Art. 4º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 5º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 6º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 7º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 8º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 9º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO III

\r\n\r\n

DAS DISPOSIÇÕES FINAIS E TRANSITÓRIAS

\r\n\r\n

Art. 10.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 11.  Alterar a [tipo da norma] nº xxx, de dd de mmmmmm de aaaa, que [ementa da norma a ser alterada], que passa a vigorar com as seguintes alterações:

\r\n\r\n

“Art. 2º.............................................................................

\r\n\r\n

I - Digite aqui o texto ... ....;

\r\n\r\n

II - Digite aqui o texto ... ....;

\r\n\r\n

III - Digite aqui o texto ... ....;

\r\n\r\n

.............................................................................” (NR)

\r\n\r\n

“Art. 3º  Digite aqui o texto ... .... .” (NR)

\r\n\r\n

Art. 12.  Revogar ... ... .... .

\r\n\r\n

Art. 13.  Esta @serie@ entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(400,57,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(401,57,'Anexos','

ANEXO I

\r\n\r\n

[DIGITE AQUI O TÍTULO DO ANEXO] - Caso não tenha anexo, apagar todo o conteúdo desta seção

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto:

\r\n\r\n

Item.

\r\n\r\n

Item.

\r\n\r\n

Alínea.

\r\n\r\n

Alínea.

\r\n\r\n

Item.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n',40,'N','N','N','N','N','N','S','S'),(402,57,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(404,58,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(405,58,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@',10,'S','N','N','S','N','N','N','S'),(406,58,'Corpo do Texto','

@tratamento_destinatario@

\r\n\r\n

@nome_destinatario_maiusculas@

\r\n\r\n

@cargo_destinatario@

\r\n\r\n

@nome_contexto_destinatario@

\r\n\r\n

@endereco_destinatario@, @bairro_destinatario@

\r\n\r\n

CEP: @cep_destinatario@ – @cidade_destinatario@/@sigla_uf_destinatario@

\r\n\r\n

  

\r\n\r\n

Assunto: Digite aqui o texto do Assunto em negrito.

\r\n\r\n

Referência: Caso responda este Ofício, indicar expressamente o Processo nº @processo@.

\r\n\r\n

  

\r\n\r\n

@vocativo_destinatario@,

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Anexos:

\r\n
\r\n

I - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

II - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

III - Digite aqui a descrição do documento (SEI nº #######).

\r\n
\r\n\r\n

  

\r\n\r\n

Atenciosamente,

\r\n',30,'N','N','S','N','N','N','S','S'),(407,58,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(408,58,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Caso responda este Ofício, indicar expressamente o Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(409,64,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(410,64,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(411,64,'Processo','PROCESSO Nº @processo@',20,'S','N','N','S','N','N','N','S'),(412,64,'Assinatura',NULL,50,'N','S','N','N','N','N','N','S'),(413,64,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(414,63,'Cabeçalho','
\"Timbre\"

ADVOCACIA GERAL DA UNIÃO
PROCURADORIA-GERAL FEDERAL
PROCURADORIA FEDERAL ESPECIALIZADA-@sigla_orgao_origem@
  

',0,'S','N','N','S','S','N','S','S'),(415,62,'Cabeçalho','
\"Timbre\"

ADVOCACIA GERAL DA UNIÃO
PROCURADORIA-GERAL FEDERAL
PROCURADORIA FEDERAL ESPECIALIZADA-@sigla_orgao_origem@
  

',0,'S','N','N','S','S','N','S','S'),(416,62,'Título do Documento e Processo','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

INFORMAÇÃO Nº

\r\n
\r\n

@numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@/PGF/AGU

\r\n
\r\n

PROCESSO Nº

\r\n
\r\n

@processo@

\r\n
',10,'S','N','N','S','N','N','S','S'),(417,63,'Título do Documento','Despacho nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@/PGF/AGU',10,'S','N','N','S','N','N','N','S'),(418,63,'Processo','

  

\r\n

Processo nº @processo@

\r\n

  

',20,'S','N','N','S','N','N','S','S'),(419,63,'Corpo do Texto','

Senhor Procurador-Geral,

\r\n\r\n

 

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',30,'N','N','S','N','N','N','S','S'),(420,63,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(421,63,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(422,62,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

[TIPO DE AÇÃO JUDICIAL] Nº

\r\n
\r\n

Digite aqui o número da ação judicial... .... .

\r\n
\r\n

REQUERENTE:

\r\n
\r\n

Digite aqui o nome do requerente... .... .

\r\n
\r\n

REQUERIDO:

\r\n
\r\n

Digite aqui o nome do requerido... .... .

\r\n
\r\n

ASSUNTO:

\r\n
\r\n

Digite aqui o texto do assunto... .... .

\r\n
\r\n\r\n

  

\r\n\r\n

  

\r\n\r\n

Senhor Procurador-Geral,

\r\n\r\n

 

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',20,'N','N','S','N','N','N','S','S'),(423,62,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(424,62,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(425,61,'Cabeçalho','
\"Timbre\"

ADVOCACIA GERAL DA UNIÃO
PROCURADORIA-GERAL FEDERAL
PROCURADORIA FEDERAL ESPECIALIZADA-@sigla_orgao_origem@
  

',0,'S','N','N','S','S','N','S','S'),(426,61,'Título do Documento, Processo e Interessado','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

NOTA Nº

\r\n
\r\n

@numeracao_serie@/@ano@/@hierarquia_unidade_invertida@-@sigla_orgao_origem@/PGF/AGU

\r\n
\r\n

PROCESSO Nº

\r\n
\r\n

@processo@

\r\n
\r\n

INTERESSADO:

\r\n
\r\n

@interessados_virgula_espaco@

\r\n
\r\n',10,'S','N','N','S','N','N','S','S'),(427,61,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

ASSUNTO:

\r\n
\r\n

Digite aqui o texto do assunto... .... .

\r\n
\r\n\r\n

  

\r\n\r\n

Senhor Procurador-Geral,

\r\n\r\n

 

\r\n\r\n

I. RELATÓRIO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

II. FUNDAMENTAÇÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

III. CONCLUSÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',20,'N','N','S','N','N','N','S','S'),(428,61,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(429,61,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(430,64,'Interessado','INTERESSADO: @interessados_virgula_espaco_maiusculas@',30,'S','N','N','S','N','N','N','S'),(431,64,'Corpo do Texto','

ASSUNTO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

REFERÊNCIAS

\r\n\r\n

Referência 1.

\r\n\r\n

Referência 2.

\r\n\r\n

Referência 3.

\r\n\r\n

SUMÁRIO EXECUTIVO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

ANÁLISE

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto;

\r\n\r\n

Texto:

\r\n\r\n

Texto; e

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

DOCUMENTOS RELACIONADOS

\r\n\r\n

Digite aqui a descrição do documento (SEI nº #######) [Se não tiver documentos relacionados, apagar toda esta seção].

\r\n\r\n

Digite aqui a descrição do documento (SEI nº #######) [Se não tiver documentos relacionados, apagar toda esta seção].

\r\n\r\n

CONCLUSÃO

\r\n\r\n

[Digite aqui o texto da conclusão e/ou proposição].

\r\n\r\n

[Digite aqui o texto da conclusão e/ou proposição].

\r\n\r\n

[Texto do comando de encaminhamento quanto ao assunto].

\r\n',40,'N','N','S','N','N','N','S','S'),(435,60,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(436,60,'Título do Documento','@serie@ Nº @numeracao_serie@, DE @dia@ DE @mes_extenso@ DE @ano@',10,'S','N','N','S','N','N','N','S'),(437,60,'Corpo do Texto','

O [CARGO DA AUTORIDADE SIGNATÁRIA] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo [dispositivo] da [norma], e pelo [dispositivo] do [norma];

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO deliberação tomada em sua Reunião nº xxx, de y de mmmmmmm de aaaa;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@;

\r\n\r\n

RESOLVE

\r\n\r\n

Editar a presente Súmula:

\r\n\r\n

"[digite aqui o texto da súmula]"

\r\n\r\n

Esta Súmula entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(438,60,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(439,60,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(445,37,'Processo','PROCESSO Nº @processo@',20,'S','N','N','S','N','N','N','S'),(446,37,'Interessado','INTERESSADO: @interessados_virgula_espaco_maiusculas@',30,'S','N','N','S','N','N','N','S'),(447,30,'Processo e Interessado','

  

\r\n

Processo nº @processo@

\r\n

Interessado: @interessados_virgula_espaco@

\r\n

  

',20,'S','N','N','S','N','N','S','S'),(470,69,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(471,69,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(472,69,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. [DIGITE AQUI O DISPOSITIVO] do Regimento Interno, aprovado pela [indicar a norma que aprovou o regimento interno], torna público os procedimentos referentes à Audiência Pública destinada a possibilitar à sociedade, de forma transparente e democrática, o direito de manifestação sobre os documentos objeto da Consulta Pública nº [NÚMERO], de [DIA] de [MÊS POR EXTENSO] de [ANO], que trata da proposta de [DESCREVER RESUMIDAMENTE A PROPOSTA OBJETO DA AUDIÊNCIA PÚBLICA].

\r\n\r\n

Dia e horário: [DIA] de [MÊS POR EXTENSO] de [ANO], das 00h00min às 00h00min.

\r\n\r\n

Endereço: [indicar o endereço completo do local de realização da Audiência Pública].

\r\n\r\n

O texto completo do Anexo a este Aviso de Audiência Pública e a documentação relativa ao objeto da Audiência Pública estarão disponíveis no endereço apresentado a seguir, e na página da @sigla_orgao_origem@ na Internet @hifen_sitio_internet_orgao@ - a partir das [NÚMERO] horas da data de publicação deste Aviso no Diário Oficial da União.

\r\n\r\n

[Endereço Completo]

\r\n\r\n

CEP: xxxxx-xxx - Cidade/UF

\r\n\r\n

Fax: (xx) xxxx-xxxx

\r\n\r\n

Telefone: (xx) xxxx-xxxx

\r\n\r\n

Endereço de e-mail: email@dominio.gov.br

\r\n',20,'N','N','S','N','N','N','S','S'),(473,69,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(474,69,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(475,70,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(476,70,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(477,70,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(479,70,'Corpo do Texto','

OBJETO: Digite aqui o texto... .... .

\r\n\r\n

ÍNDICE

\r\n\r\n
    \r\n
  1. \r\n

    DO OBJETO

    \r\n
  2. \r\n
  3. \r\n

    DA DOTAÇÃO ORÇAMENTÁRIA

    \r\n
  4. \r\n
  5. \r\n

    DA PARTICIPAÇÃO NA LICITAÇÃO

    \r\n
  6. \r\n
  7. \r\n

    DO TRATAMENTO DAS MICROEMPRESAS, EMPRESAS DE PEQUENO PORTE E EQUIPARADOS

    \r\n
  8. \r\n
  9. \r\n

    DO CREDENCIAMENTO

    \r\n
  10. \r\n
  11. \r\n

    DOS PEDIDOS DE ESCLARECIMENTOS E DAS IMPUGNAÇÕES AO EDITAL

    \r\n
  12. \r\n
  13. \r\n

    DA ELABORAÇÃO DA PROPOSTA

    \r\n
  14. \r\n
  15. \r\n

    DO ENVIO DA PROPOSTA DE PREÇOS

    \r\n
  16. \r\n
  17. \r\n

    DA SESSÃO PÚBLICA VIRTUAL, VERIFICAÇÃO DAS PROPOSTAS E FORMULAÇÃO DOS LANCES

    \r\n
  18. \r\n
  19. \r\n

    DO JULGAMENTO DA PROPOSTA DE PREÇOS

    \r\n
  20. \r\n
  21. \r\n

    DA HABILITAÇÃO

    \r\n
  22. \r\n
  23. \r\n

    DOS RECURSOS

    \r\n
  24. \r\n
  25. \r\n

    DA ADJUDICAÇÃO E DA HOMOLOGAÇÃO

    \r\n
  26. \r\n
  27. \r\n

    DAS SANÇÕES DECORRENTES DA LICITAÇÃO

    \r\n
  28. \r\n
  29. \r\n

    DA ANULAÇÃO E DA REVOGAÇÃO DA LICITAÇÃO

    \r\n
  30. \r\n
  31. \r\n

    DOS PRAZOS E CONDIÇÕES PARA ASSINATURA DO CONTRATO

    \r\n
  32. \r\n
  33. \r\n

    DA VIGÊNCIA CONTRATUAL

    \r\n
  34. \r\n
  35. \r\n

    DA GARANTIA CONTRATUAL

    \r\n
  36. \r\n
  37. \r\n

    DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTAS

    \r\n
  38. \r\n
  39. \r\n

    DAS OBRIGAÇÕES DA CONTRATADA

    \r\n
  40. \r\n
  41. \r\n

    DAS OBRIGAÇÕES DA CONTRATANTE

    \r\n
  42. \r\n
  43. \r\n

    DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

    \r\n
  44. \r\n
  45. \r\n

    DA LIQUIDAÇÃO E DO PAGAMENTO

    \r\n
  46. \r\n
  47. \r\n

    DA ALTERAÇÃO DO CONTRATO

    \r\n
  48. \r\n
  49. \r\n

    DA REPACTUAÇÃO/REAJUSTE

    \r\n
  50. \r\n
  51. \r\n

    DAS PENALIDADES

    \r\n
  52. \r\n
  53. \r\n

    DA RESCISÃO

    \r\n
  54. \r\n
  55. \r\n

    DAS DISPOSIÇÕES FINAIS

    \r\n
  56. \r\n
  57. \r\n

    DOS ANEXOS

    \r\n
  58. \r\n
\r\n\r\n

PREÂMBULO

\r\n\r\n

Tipo de Licitação: Digite aqui o texto... .... .

\r\n\r\n

Entrega de propostas: [Digite aqui a data]

\r\n\r\n

A partir da publicação no seguinte endereço eletrônicowww.comprasgovernamentais.gov.br

\r\n\r\n

 

\r\n\r\n

Etapa de Lances: [Digite aqui a data]

\r\n\r\n

Abertura da seção pública:

\r\n\r\n

- Horário: [Digite aqui o horário] (horário oficial de Brasília)

\r\n\r\n

- Localwww.comprasgovernamentais.gov.br

\r\n\r\n

- Código da UASG: [Digite aqui o código]

\r\n\r\n

 

\r\n\r\n

A @descricao_orgao_origem@ - @sigla_orgao_origem@, localizada na [digite aqui o endereço da UASG responsável pela licitação], inscrita no CNPJ sob o nº [digite aqui o CNPJ], mediante o Pregoeiro designado pela [digite aqui o instrumento de designação], torna público que realizará, na data, horário e local acima indicados, licitação na modalidade de PREGÃO, na forma ELETRÔNICA, do tipo "MENOR PREÇO" objetivando [digite aqui o texto do objeto], conforme detalhamentos constantes neste Edital e anexos, consoante o Processo em epígrafe.

\r\n\r\n

Não havendo expediente na data marcada ou havendo fato superveniente impeditivo à realização, a sessão pública será adiada para o primeiro dia útil subsequente, mantidos o mesmo local e horário, salvo comunicação em contrário do pregoeiro.

\r\n\r\n

A presente licitação e consequente contratação serão regidas pelas seguintes normas: [digite aqui as normas pertinentes].

\r\n\r\n

DO OBJETO

\r\n\r\n

O presente Pregão Eletrônico tem por objeto a contratação de empresa para [digite aqui se prestação de serviços ou fornecimento de bens], em regime de [digite aqui a forma de contratação, conforme art. 6º, inciso VIII, da Lei nº 8.666/1993], conforme especificações constantes do Termo de Referência (Anexo I) e demais anexos deste Edital.

\r\n\r\n

Em caso de discordância existente entre as especificações deste objeto descritas no Portal de Compras do Governo Federal (Compras Governamentais) e as especificações constantes deste Edital, prevalecerão as últimas.

\r\n\r\n

DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

As despesas decorrentes da contratação, objeto desta licitação, correrão a conta dos recursos consignados no Orçamento Geral da União, a cargo da @sigla_orgao_origem@, disponibilizados no Programa de Trabalho (PT) nº [digite aqui o número do PT], Natureza de Despesa [digite aqui o número da ND, até subelemento da despesa].

\r\n\r\n

Sempre que a vigência do Contrato ultrapassar a vigência dos respectivos créditos orçamentários, será providenciada dotação orçamentária própria para cobertura do período subsequente.

\r\n\r\n

DA PARTICIPAÇÃO NA LICITAÇÃO

\r\n\r\n

Poderão participar deste Pregão os interessados que estiverem previamente credenciados no Sistema de Cadastramento Unificado de Fornecedores (SICAF), de acordo com o art. 3º, § 2º, do Decreto nº 5.450, de 31 de maio de 2005, e perante o sistema eletrônico provido pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, por meio do sítio www.comprasgovernamentais.gov.br.

\r\n\r\n

Os interessados em participar do presente Pregão e que não estejam credenciados no SICAF, poderão providenciar tanto o credenciamento quanto o cadastramento no mencionado sistema, nos níveis em que tiver interesse, sendo obrigatório pelo menos o Nível I, relativo ao credenciamento, que é condição indispensável para obtenção de senha para participação em pregões eletrônicos, na forma estabelecida na Instrução Normativa nº 02, de 11 de outubro de 2010, da SLTI/MP, e alterações posteriores, em qualquer unidade de cadastramento dos órgãos/entidades do Governo Federal, integrantes do Sistema de Serviços Gerais (SISG), ou pela Internet, conforme orientações constantes no endereço www.comprasgovernamentais.gov.br, no link Fornecedor > Cadastro, onde deverá solicitar uma senha, caso ainda não a possua, podendo, também, encontrar os manuais com orientações para o cadastramento e a listagem de unidades cadastradoras.

\r\n\r\n

Não será admitida nesta licitação a participação de:

\r\n\r\n

sociedade em processo de recuperação judicial/extrajudicial ou de falência e concordata, insolvência civil, sob concurso de credores, em dissolução ou em liquidação;

\r\n\r\n

sociedades suspensas temporariamente de participar de licitações ou impedidas de contratar quando a penalidade foi aplicada pela @sigla_orgao_origem@, com fundamento no art. 87, inciso III, da Lei nº 8.666, de 21 de junho de 1993;

\r\n\r\n

sociedades impedidas de participar de licitações ou de contratar quando a penalidade foi aplicada por órgão ou entidade da Administração Pública Federal com fundamento no art. 7º da Lei nº 10.520, de 17 de julho de 2002;

\r\n\r\n

sociedades declaradas inidôneas para licitar ou contratar com a Administração Pública, com fundamento no art. 87, inciso IV, da Lei nº 8.666/1993;

\r\n\r\n

sociedades constituídas com o mesmo objeto e da qual participe sócios e/ou administradores de empresas anteriormente declaradas inidôneas, nos termos do art. 46 da Lei nº 8.443, de 16 de julho de 1992, desde que a constituição da sociedade tenha ocorrido após a aplicação da referida sanção e no prazo de sua vigência;

\r\n\r\n

sociedades estrangeiras que não funcionem no País;

\r\n\r\n

sociedades que possuírem, entre seus sócios ou dirigentes, servidor ou membro da @sigla_orgao_origem@, de acordo com o art. 9º, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

sociedades que possuam em seu contrato social ou documento equivalente, finalidade ou objetivo incompatível com o objeto deste Pregão;

\r\n\r\n

sociedades que tenham condenações cíveis por ato de improbidade administrativa.

\r\n\r\n

Para a verificação das ocorrências constantes dos incisos II, III, IV e IX serão obrigatoriamente consultados o Sistema de Cadastramento Unificado e Fornecedores (SICAF), o Cadastro Nacional de Empresas Inidôneas e Suspensas (CEIS) da Controladoria Geral da União (CGU), Portal da Transparência, o Portal do Conselho Nacional de Justiça (CNJ) e Lista de Inidôneos do Tribunal de Contas da União (TCU).

\r\n\r\n

Para participação no presente pregão eletrônico, o licitante deverá manifestar, em campo próprio do sistema eletrônico, que:

\r\n\r\n

está ciente e concorda com as condições contidas no Edital e seus anexos;

\r\n\r\n

cumpre plenamente os requisitos de habilitação e inexistem fatos impeditivos para sua habilitação no certame, está ciente da obrigatoriedade de declarar ocorrências posteriores;

\r\n\r\n

sua proposta está em conformidade com as exigências deste instrumento convocatório (art. 21, § 2º, do Decreto nº 5.450/2005);

\r\n\r\n

não emprega menor de 18 anos em trabalho noturno, perigoso ou insalubre e não emprega menor de 16 anos, salvo menor, a partir de 14 anos, na condição de aprendiz, nos termos do art. 7º, inciso XXXIII, da Constituição Federal;

\r\n\r\n

a proposta foi elaborada de forma independente, nos termos da Instrução Normativa nº 02/2009-SLTI/MP.

\r\n\r\n

A declaração falsa relativa ao cumprimento dos requisitos de habilitação e proposta sujeitará o licitante às sanções previstas neste Edital.

\r\n\r\n

É vedada a contratação com empresa privada que tenha em seu quadro societário servidor público da ativa ou empregado de empresa pública ou sociedade de economia mista, com fundamento no art. 18, inciso VIII, da Lei nº 13.080, de 2 de janeiro de 2015 (LDO 2015).

\r\n\r\n

DO TRATAMENTO DAS MICROEMPRESAS, EMPRESAS DE PEQUENO PORTE E EQUIPARADOS

\r\n\r\n

Na participação de microempresas, empresas de pequeno porte ou equiparados, será observado o disposto na Lei Complementar nº 123, de 14 de dezembro de 2006, alterada pela Lei Complementar nº 147, de 7 de agosto de 2014, notadamente os arts. 42 a 49, bem como no que tange o Decreto nº 6.204, de 5 de setembro de 2007.

\r\n\r\n

O enquadramento como microempresa (ME) ou empresa de pequeno porte (EPP) dar-se-á nas condições do Estatuto Nacional da Microempresa e Empresa de Pequeno Porte, instituído pela Lei Complementar nº 123/2006.

\r\n\r\n

A fruição dos benefícios licitatórios determinados pela Lei Complementar nº 123/2006 independe da habilitação da ME/EPP ou equiparado para a obtenção do regime tributário simplificado, sem prejuízo da cotação de preços pela licitante segundo o regime fiscal correspondente.

\r\n\r\n

As licitantes que se enquadrarem nas situações previstas no art. 3º da Lei Complementar nº 123/2006 e não possuírem quaisquer dos impedimentos do § 4º do citado artigo, deverão apresentar declaração em campo próprio do sistema que cumprem os requisitos legais para a qualificação como ME/EPP ou equiparado, estando aptos a usufruir do tratamento favorecido estabelecido nos arts. 42 a 49 da referida Lei Complementar nº 123/2006, bem como do art. 11 do Decreto nº 6.204/2007.

\r\n\r\n

A não declaração de ME/EPP e equiparado no sistema de Pregão na forma Eletrônica do Portal de Compras do Governo Federal (Compras Governamentais), importará na renúncia ao tratamento consagrado na Lei Complementar nº 123/2006.

\r\n\r\n

A identificação das empresas licitantes ou equiparados na sessão pública do pregão eletrônico só deverá ocorrer após o encerramento dos lances, conforme art. 24, inciso V, do Decreto nº 5.450/2005.

\r\n\r\n

DO CREDENCIAMENTO

\r\n\r\n

O credenciamento é o nível básico do registro cadastral no SICAF, que permite a participação dos interessados na modalidade licitatória Pregão, em sua forma eletrônica.

\r\n\r\n

O credenciamento dar-se-á pela atribuição de chave de identificação e de senha, pessoal e intransferível, para acesso ao sistema eletrônico no endereço www.comprasgovernamentais.gov.br, devendo este credenciamento ser efetuado antes da data prevista para realização do Pregão na forma Eletrônica, nos termos do art. 3º, § 1º, do Decreto nº 5.450/2005.

\r\n\r\n

O credenciamento junto ao provedor do sistema implica a responsabilidade legal do licitante e a presunção de sua capacidade técnica para realização das transações inerentes ao Pregão na forma Eletrônica (art. 3º, § 6º, do Decreto nº 5.450/2005).

\r\n\r\n

O uso da senha de acesso pelo licitante é de sua responsabilidade exclusiva, incluindo qualquer transação efetuada diretamente ou por seu representante, não cabendo ao provedor do sistema ou ao @sigla_orgao_origem@ responsabilidade por eventuais danos decorrentes de uso indevido da senha, ainda que por terceiros (art. 3º, § 5º, do Decreto nº 5.450/2005).

\r\n\r\n

A perda da senha ou a quebra do sigilo deverão ser comunicadas imediatamente ao provedor do sistema, para imediato bloqueio de acesso (art. 3º, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

DOS PEDIDOS DE ESCLARECIMENTOS E DAS IMPUGNAÇÕES AO EDITAL

\r\n\r\n

Até 02 (dois) dias úteis antes da data fixada para abertura da sessão pública virtual, qualquer pessoa poderá impugnar os termos deste instrumento convocatório perante a @sigla_orgao_origem@, exclusivamente por meio eletrônico, via internet, no endereço abaixo informado, cabendo ao pregoeiro, auxiliado pelo setor responsável pela elaboração do Edital, decidir sobre a petição no prazo de até 24 (vinte e quatro) horas (art. 18, caput e seu § 1º, do Decreto nº 5.450/2005): "endereço de e-mail da área de licitação"

\r\n\r\n

Decairá do direito de impugnar os termos do presente Edital o licitante que não o fizer no prazo estabelecido no subitem anterior.

\r\n\r\n

Acolhida a impugnação contra o ato convocatório, será definida e publicada nova data para a realização do certame (art. 18, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

Qualquer solicitação de esclarecimentos referente ao presente certame deverá ser enviada ao pregoeiro, em até 03 (três) dias úteis anteriores à data fixada no preâmbulo deste Instrumento para abertura da sessão pública virtual, exclusivamente por meio eletrônico, via internet, por meio de mensagem eletrônica, no endereço abaixo informado: "endereço de e-mail da área de licitação"

\r\n\r\n

O pregoeiro com suporte técnico do setor responsável pela elaboração do Edital prestará todos os esclarecimentos solicitados pelos interessados nesta licitação.

\r\n\r\n

As decisões sobre as impugnações de que trata o subitem 6.1, bem como os esclarecimentos de que trata o subitem 6.3, serão divulgados pelo pregoeiro a todos os interessados no sítio www.comprasgovernamentais.gov.br, no link Cidadão > Consultas > Pregões > Agendados, podendo o licitante visualizar também no menu principal, acesso restrito, no link Visualizar Impugnação > Esclarecimento > Aviso.

\r\n\r\n

As impugnações e os pedidos de esclarecimentos não suspendem os prazos previstos no certame.

\r\n\r\n

DA ELABORAÇÃO DA PROPOSTA

\r\n\r\n

O licitante deverá elaborar sua proposta contendo o valor global para a execução dos serviços propostos, já considerados e inclusos todos os tributos, fretes, tarifas e despesas decorrentes da execução do objeto, com base no preenchimento da Planilha de Preços e Formação de Custos, com seus próprios valores, conforme formulário constante do Anexo [digite aqui o número do anexo com as planilhas], deste Edital.

\r\n\r\n

Quaisquer tributos, encargos, custos e despesas, diretos ou indiretos, omitidos da proposta ou incorretamente cotados, serão considerados como inclusos nos preços, não sendo considerados pleitos de acréscimos, a esse ou a qualquer título, devendo a execução ser realizada sem ônus adicional à @sigla_orgao_origem@.

\r\n\r\n

A apresentação das propostas implica obrigatoriedade do cumprimento das disposições nelas contidas, assumindo o proponente o compromisso de executar o objeto nos seus termos (art. 22, parágrafo único, da Instrução Normativa nº 02/2008- SLTI/MP).

\r\n\r\n

Caso haja equívoco no dimensionamento dos quantitativos da proposta, a CONTRATADA deverá arcar com o ônus decorrente, devendo complementá-los, caso o previsto inicialmente não seja satisfatório para o atendimento do objeto deste Pregão, exceto quando ocorrer algum dos eventos arrolados no art. 57, § 1º, da Lei nº 8.666/1993 (art. 23 da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Os preços ofertados, tanto na proposta inicial, quanto na etapa de lances, serão de exclusiva responsabilidade do licitante, não lhe assistindo o direito de pleitear qualquer alteração, sob alegação de erro, omissão ou qualquer outro pretexto.

\r\n\r\n

Na preparação de sua proposta comercial, o licitante deverá consignar preços correntes de mercado, sem quaisquer acréscimos em virtude de expectativa inflacionária.

\r\n\r\n

Os preços deverão ser expressos em moeda corrente nacional, o valor unitário em algarismos e o valor global por item em algarismos e por extenso (art. 5º da Lei nº 8.666/1993).

\r\n\r\n

Ocorrendo divergência entre os preços unitários e o preço global do item, prevalecerão os primeiros; no caso de divergência entre os valores numéricos e os valores expressos por extenso, prevalecerão estes últimos.

\r\n\r\n

A oferta deverá ser firme e precisa, limitada, rigorosamente, ao objeto deste Edital, sem conter alternativas de preço ou de qualquer outra condição que induza o julgamento a mais de um resultado, sob pena de desclassificação.

\r\n\r\n

A desclassificação das propostas será sempre fundamentada e registrada no sistema, com possibilidade de acompanhamento online pelos licitantes.

\r\n\r\n

A proposta deverá obedecer aos termos deste Edital e seus Anexos, não sendo considerada aquela que não corresponda às especificações ali contidas ou que estabeleça vínculo à proposta de outro licitante.

\r\n\r\n

A proposta deverá ter prazo mínimo de validade de 60 (sessenta dias) consecutivos, contados da data da apresentação da proposta.

\r\n\r\n

DO ENVIO DA PROPOSTA DE PREÇOS

\r\n\r\n

A participação no Pregão na forma eletrônica dar-se-á por meio da digitação da senha privativa do licitante e subsequente encaminhamento das Propostas de Preços, contendo o valor global do item para execução do objeto e a síntese do objeto da presente licitação, a partir da data da disponibilização do Edital, até o horário limite do início da sessão pública, exclusivamente por meio do sistema eletrônico do sítio www.comprasgovernamentais.gov.br, sendo expressamente vedada a identificação do proponente nas propostas enviadas.

\r\n\r\n

Na proposta encaminhada eletronicamente, o licitante deverá consignar, na forma expressa no sistema eletrônico, o valor global para o período da execução dos serviços propostos, já considerados e inclusos todos os tributos, fretes, tarifas e despesas decorrentes da execução do objeto.

\r\n\r\n

Por ocasião do envio da proposta, o licitante enquadrado como microempresa ou empresa de pequeno porte deverá declarar, em campo próprio do sistema, que atende aos requisitos do art. 3º da Lei Complementar nº 123/2006, a fim de fazer jus aos benefícios previstos na referida Lei.

\r\n\r\n

Até a abertura da sessão, os licitantes poderão retirar ou substituir a proposta anteriormente enviada por meio eletrônico ao sistema (art. 21, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

DA SESSÃO PÚBLICA VIRTUAL, VERIFICAÇÃO DAS PROPOSTAS E FORMULAÇÃO DOS LANCES

\r\n\r\n

Aberta a sessão pública virtual do certame, as propostas de preços serão irretratáveis, não se admitindo retificações ou alterações nos preços ou nas condições estabelecidas, salvo quanto aos lances ofertados, na fase própria do certame.

\r\n\r\n

Após a abertura da sessão pública virtual não caberá desistência da proposta, salvo por motivo justo, decorrente de fato superveniente e aceito pelo pregoeiro.

\r\n\r\n

A abertura da sessão pública deste Pregão, conduzida pelo pregoeiro, ocorrerá na data e na hora indicadas no preâmbulo deste Edital, no sítio www.comprasgovernamentais.gov.br, com a divulgação dos valores das propostas eletrônicas e preparação para início da etapa de lances, sem que sejam identificados os participantes, o que só ocorrerá após o encerramento desta etapa.

\r\n\r\n

A comunicação entre o pregoeiro e os licitantes ocorrerá exclusivamente mediante troca de mensagens, em campo próprio do sistema eletrônico.

\r\n\r\n

O licitante será responsável por todas as transações que forem efetuadas em seu nome no sistema eletrônico, assumindo como firmes e verdadeiras suas propostas e lances (art. 13, inciso III, do Decreto nº 5.450/2005).

\r\n\r\n

Cabe ao licitante acompanhar as operações no sistema eletrônico durante a sessão pública do Pregão, ficando responsável pelo ônus decorrente da perda dos negócios diante da inobservância de qualquer mensagem emitida pelo sistema ou de sua desconexão (art. 13, inciso IV, do Decreto nº 5.450/2005).

\r\n\r\n

A partir do horário previsto no preâmbulo deste Edital, terá início a sessão pública do presente Pregão, na forma Eletrônica, com a divulgação dos valores das propostas eletrônicas e preparação para o início da etapa de lances, sem que sejam identificados os participantes, o que só ocorrerá após o encerramento desta etapa, de acordo com as normas vigentes (art. 22 do Decreto nº 5.450/2005).

\r\n\r\n

Aberta a sessão pública na internet, o pregoeiro verificará as propostas ofertadas conforme previsto no item 9 deste Edital, desclassificando, motivadamente, aquelas que não estejam em conformidade com o estabelecido neste Edital e em seus Anexos (art. 22, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

O pregoeiro não poderá desclassificar propostas em decorrência da oferta de valores acima do preço inicialmente orçado pela @sigla_orgao_origem@ na etapa anterior à formulação de lances (Acórdão TCU nº 934/2007-1ª Câmara).

\r\n\r\n

Após a verificação inicial das propostas, na forma do subitem anterior, o pregoeiro dará início à fase competitiva, quando então os licitantes poderão encaminhar lances, exclusivamente por meio do sistema eletrônico, sendo imediatamente informados do seu recebimento e respectivo horário de registro e valor (art. 24 do Decreto nº 5.450/2005).

\r\n\r\n

Somente poderão ofertar lances os licitantes que tiverem suas propostas classificadas quanto às especificações do objeto e demais requisitos deste Edital e seus Anexos.

\r\n\r\n

Os licitantes poderão oferecer lances sucessivos, observados o horário fixado para a abertura da sessão e as regras de aceitação dos lances estabelecidas neste Edital.

\r\n\r\n

Na fase competitiva, o intervalo entre os lances enviados pelo mesmo licitante não poderá ser inferior a vinte (20) segundos e o intervalo entre lances de licitantes diferentes não poderá ser inferior a três (3) segundos (Instrução Normativa nº 03/2013-SLTI/MP).

\r\n\r\n

Os lances enviados em desacordo com o subitem anterior serão descartados automaticamente pelo sistema (Instrução Normativa nº 03/2011-SLTI/MP).

\r\n\r\n

Os lances enviados pelo mesmo licitante são considerados lances intermediários quando são inferiores ao último por ele ofertado, mas superiores ao menor lance registrado, os quais deverão respeitar o intervalo de vinte (20) segundos. Já os lances inferiores ao menor lance registrado no sistema, são considerados entre lances, os quais deverão respeitar o intervalo de 03 (três) segundos (SIASG-Comunica nº 081380, de 01/09/2014).

\r\n\r\n

Os lances deverão ser oferecidos para o valor global da proposta, observado o disposto neste Edital, em especial os valores de referência dos itens.

\r\n\r\n

Durante o transcurso da sessão pública, os licitantes serão informados, em tempo real, do valor do menor lance registrado que tenha sido apresentado pelos demais licitantes, vedada a identificação do detentor do lance.

\r\n\r\n

O licitante somente poderá ofertar lance cujo valor seja menor do que o último preço por ele ofertado e registrado pelo sistema, na forma do art. 24, § 3º, do Decreto nº 5.450/2005.

\r\n\r\n

Não serão aceitos dois ou mais lances iguais, prevalecendo aquele que for recebido e registrado primeiro (art. 24, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

No caso de desconexão do pregoeiro no decorrer da etapa de lances, se o sistema eletrônico permanecer acessível aos licitantes, os lances continuarão sendo recebidos, retornando o pregoeiro, assim que possível, às suas funções no certame, sem prejuízo dos atos realizados (art. 24, § 10, do Decreto nº 5.450/2005).

\r\n\r\n

Quando a desconexão do pregoeiro persistir por tempo superior a 10 (dez) minutos, a sessão pública virtual será suspensa e terá reinício somente após comunicação expressa aos participantes, por meio do sistema eletrônico, quando serão divulgadas data e hora para a sua reabertura (art. 24, § 11, do Decreto nº 5.450/2005).

\r\n\r\n

A fase de lances será encerrada pelo pregoeiro, com o encaminhamento pelo sistema eletrônico de aviso de fechamento iminente, após o que transcorrerá período de tempo de até 30 (trinta) minutos, aleatoriamente determinado pelo mencionado sistema, findo o qual será automaticamente encerrada a recepção de lances (art. 24, §§ 6º e 7º, do Decreto nº 5.450/2005).

\r\n\r\n

Não poderá haver desistência da proposta ou dos lances ofertados, salvo por motivo justo, decorrente de fato superveniente e aceito pelo pregoeiro, sujeitando-se o proponente desistente às penalidades constantes do item 14 deste Edital.

\r\n\r\n

O não encaminhamento de lance pelo sistema eletrônico, até o encerramento dessa etapa no sistema, implicará na manutenção do último preço apresentado, para efeito de ordenação das propostas.

\r\n\r\n

DO JULGAMENTO DA PROPOSTA DE PREÇOS

\r\n\r\n

Encerrada a etapa competitiva e ordenadas as propostas na ordem crescente dos preços ofertados e aceitáveis, será aceita a proposta de MENOR PREÇO GLOBAL, respeitados os critérios para classificação estabelecidos neste Edital e devendo a proposta estar em conformidade com o contido no Termo de Referência, Anexo I, e no Anexo [digite aqui o número do anexo com as planilhas de preços].

\r\n\r\n

O pregoeiro poderá encaminhar, pelo sistema eletrônico, contraproposta diretamente ao licitante que tenha apresentado o lance de menor valor, para que seja obtida melhor proposta, observado o critério de julgamento e o valor estimado para a contratação, não se admitindo negociar condições diferentes das previstas neste Edital (art. 24, § 8º, do Decreto nº 5.450/2005).

\r\n\r\n

A negociação será realizada por meio do sistema eletrônico, podendo ser acompanhada pelos demais licitantes (art. 24, § 9º, do Decreto nº 5.450/2005).

\r\n\r\n

Caso não sejam ofertados lances via sistema eletrônico, será verificada a conformidade entre a proposta inicialmente enviada de menor preço e o valor estimado para a contratação, hipótese em que o pregoeiro poderá negociar diretamente com o proponente, por meio da sala de mensagens eletrônicas do sistema de pregão, para que seja obtido preço menor, nos termos do subitem anterior.

\r\n\r\n

Será assegurado, como critério de desempate, preferência de contratação para as microempresas e empresas de pequeno porte, de acordo com o art. 44 da Lei Complementar nº 123/2006.

\r\n\r\n

Entende-se por empate aquelas situações em que as propostas apresentadas pelas microempresas e empresas de pequeno porte sejam iguais ou até 5% (cinco por cento) superiores à proposta mais bem classificada, desde que esta não tenha sido apresentada, também, por uma microempresa ou uma empresa de pequeno porte (art. 44, §§ 1º e 2º, e art. 45, § 2º, da Lei Complementar nº 123/2006).

\r\n\r\n

Ocorrendo o empate, na forma do subitem anterior, será procedido da seguinte forma (art. 45 da Lei Complementar nº 123/2006):

\r\n\r\n

A microempresa ou empresa de pequeno porte mais bem classificada poderá apresentar proposta de preço inferior àquela considerada vencedora do certame, no prazo máximo de 05 (cinco) minutos após o encerramento dos lances, situação em que será adjudicado em seu favor o objeto licitado (art. 45, inciso I e § 3º, da Lei Complementar nº 123/2006);

\r\n\r\n

Não ocorrendo a contratação da microempresa ou empresa de pequeno porte, na forma da alínea anterior, serão convocadas as remanescentes que porventura se enquadrem na situação descrita, na ordem classificatória, para exercício do mesmo direito (art. 45, inciso II, da Lei Complementar nº 123/2006);

\r\n\r\n

No caso de equivalência dos valores apresentados pelas microempresas e empresas de pequeno porte que se encontrem no intervalo de 5% (cinco por cento), será realizado, automaticamente, sorteio entre elas para que se identifique aquela que primeiro poderá apresentar melhor oferta (art. 45, inciso III, da Lei Complementar nº 123/2006).

\r\n\r\n

Na hipótese da não contratação nos termos previstos no subitem anterior, o objeto licitado será adjudicado em favor da proposta originalmente vencedora do certame (art. 45, § 1º, da Lei Complementar nº 123/2006).

\r\n\r\n

O licitante que tenha ofertado o menor preço global deverá enviar, via sistema eletrônico, como anexo, no prazo máximo de cento e vinte (120) minutos, contados da solicitação do pregoeiro, sua proposta, readequada se for o caso, nos termos do lance vencedor, contendo a Planilha de Custos e Formação de Preços devidamente preenchida. Esta planilha deverá conter todos os preços unitários expressos em reais, sendo o valor global final arredondado para duas casas decimais, de modo que o ajuste seja igual ou inferior ao lance ofertado.

\r\n\r\n

O prazo estabelecido no item anterior poderá ser prorrogado por solicitação escrita e justificada da licitante, a ser encaminhada para o e-mail "endereço de e-mail da área de licitação", antes de findo o prazo estabelecido e formalmente aceita pelo pregoeiro.

\r\n\r\n

A Planilha de Custos e Formação de Preços e a Proposta devem ser elaboradas na forma do modelo constante do Anexo [digite aqui o número do anexo com as planilhas de preços], sem emendas, rasuras ou entrelinhas e deverão conter os seguintes elementos:

\r\n\r\n

Identificação do proponente (razão social), número do CNPJ, endereço completo (rua, número, bairro, cidade, estado, CEP), números de telefone, fax, e-mail, com data, nome completo, cargo e assinatura do representante legal da empresa e menção do número do Pregão, na forma Eletrônica;

\r\n\r\n

Detalhamento de todos os elementos que influam no custo operacional, mediante preenchimento da Planilha de Custos e Formação de Preços;

\r\n\r\n

Prazo mínimo de validade de 60 (sessenta) dias consecutivos, contados da data de apresentação da proposta aceita;

\r\n\r\n

Local, data e assinatura da licitante, ou de procurador com poderes específicos para o ato, indicado em instrumento público ou particular.

\r\n\r\n

A proposta deverá contemplar todos os serviços descritos Termo de Referência, Anexo I deste Edital.

\r\n\r\n

O pregoeiro examinará a aceitabilidade da proposta que apresentou menor preço/lance, quanto ao valor estimado para a contratação e a correção das Planilhas de Custos e Formação de Preços, elaboradas e enviadas como anexo pelo sistema eletrônico do pregão, na forma determinada neste Edital, decidindo motivadamente a respeito, conforme definido neste instrumento editalício e seus Anexos.

\r\n\r\n

No caso de alguma falha ou inconsistência no preenchimento das planilhas, o pregoeiro poderá solicitar ao licitante, por mensagem enviada pelo sistema, que complemente, refaça ou efetue a correção necessária, desde que não haja majoração do preço ofertado, no prazo estabelecido na própria mensagem, sob pena de desclassificação da proposta.

\r\n\r\n

Será desclassificada a proposta que:

\r\n\r\n

contiver vícios ou ilegalidades;

\r\n\r\n

não apresentar as especificações técnicas exigidas no Termo de Referência, Anexo I deste Edital;

\r\n\r\n

apresentar preços que sejam manifestamente inexequíveis;

\r\n\r\n

apresentar preço baseado em outras propostas, inclusive com o oferecimento de redução sobre a de menor valor;

\r\n\r\n

apresentar qualquer oferta de vantagem não prevista neste Edital, bem como preço ou vantagem baseada nas ofertas dos demais licitantes;

\r\n\r\n

apresentar valores irrisórios ou de valor zero, incompatíveis com os preços de mercado acrescidos dos respectivos encargos, exceto quando se referirem a materiais e instalações de propriedade do licitante, para os quais ele renuncie à parcela ou à totalidade da remuneração;

\r\n\r\n

não vier a comprovar sua exequibilidade, em especial em relação ao preço e à produtividade apresentada.

\r\n\r\n

O licitante deverá indicar como foram obtidos os valores dos componentes de sua Planilha de Preços, para verificação da exequibilidade.

\r\n\r\n

Consideram-se preços manifestamente inexequíveis aqueles que, comprovadamente, forem insuficientes para a cobertura dos custos decorrentes da contratação pretendida.

\r\n\r\n

A inexequibilidade dos valores referentes a itens isolados da Planilha de Custos, desde que não contrariem instrumentos legais, não caracteriza motivo suficiente para a desclassificação da proposta.

\r\n\r\n

Erro no preenchimento da Planilha não é motivo suficiente para a desclassificação da proposta, quando a Planilha puder ser ajustada sem a necessidade de majoração do preço ofertado, e desde que se comprove que este é suficiente para arcar com todos os custos da contratação.

\r\n\r\n

Se a proposta não for aceitável, se o licitante deixar de reenviar a proposta e as Planilhas de Composição de Custos e Formação de Preços ou, ainda, se não atender às exigências habilitatórias, o pregoeiro examinará a proposta subsequente e, assim sucessivamente, na ordem de classificação, até a apuração de uma proposta que atenda a este Edital.

\r\n\r\n

No caso previsto no item anterior, o pregoeiro poderá negociar com o licitante, para que seja obtido preço melhor.

\r\n\r\n

Encerrada a etapa de lances e aceita a proposta ou, quando for o caso, após efetuar a negociação e obter preço aceitável para o objeto da licitação, o pregoeiro anunciará a proposta vencedora.

\r\n\r\n

A proposta vencedora cujo prazo de validade estiver esgotado poderá ser prorrogada por 60 (sessenta) dias ou prazo superior, desde que haja expressa concordância da empresa.

\r\n\r\n

A licitante classificada em primeiro lugar, na fase de lances, deverá apresentar planilha que demonstre a compatibilidade dos custos para a execução do serviço, devendo ainda observar (Orientação Normativa/SLTI nº 04, de 30 de setembro de 2014):

\r\n\r\n

a planilha de custos será entregue e analisada, no momento da aceitação do lance vencedor, em que poderá ser ajustada, se possível, para refletir corretamente os custos envolvidos na contratação, desde que não haja majoração da proposta. 

\r\n\r\n

quando da análise da planilha de custos, se houver indícios de inexequibilidade, a Administração deverá efetuar diligência, solicitando que a licitante comprove a exequibilidade da proposta.

\r\n\r\n

consideram-se preços inexequíveis aqueles que, comprovadamente, sejam insuficientes para a cobertura dos custos decorrentes da contratação.

\r\n\r\n

caso o licitante não comprove a exequibilidade da proposta, esta será desclassificada.

\r\n\r\n

O pregoeiro poderá solicitar parecer de técnicos pertencentes ao quadro de pessoal da @sigla_orgao_origem@ para orientar sua decisão. Caso o órgão não possua no seu quadro profissionais habilitados para emitir parecer técnico, poderá ser formulado por pessoa física ou jurídica qualificada.

\r\n\r\n

DA HABILITAÇÃO

\r\n\r\n

Para fins de habilitação no certame, o licitante que teve sua proposta de preços aceita deverá satisfazer os requisitos a seguir.

\r\n\r\n

Habilitação Jurídica

\r\n\r\n

A Habilitação Jurídica será comprovada mediante a apresentação da seguinte documentação, exigida conforme a natureza jurídica do licitante:

\r\n\r\n

Cédula de identidade dos representantes legais;

\r\n\r\n

Registro comercial, no caso de empresa individual;

\r\n\r\n

Ato constitutivo, estatuto ou contrato social em vigor, devidamente registrado, em se tratando de sociedades empresárias e, no caso de sociedade por ações e outras que assim o exijam, acompanhado de documentos de eleição de seus administradores;

\r\n\r\n

os documentos em apreço deverão estar acompanhados de todas as alterações ou da consolidação respectiva.

\r\n\r\n

Inscrição do ato constitutivo, no caso de registro civil, acompanhada de prova de diretoria em exercício, caso a licitante se enquadre como sociedade simples; e

\r\n\r\n

Decreto de autorização, em se tratando de empresa ou sociedade estrangeira em funcionamento no País, e ato de registro ou autorização para funcionamento expedido pelo órgão competente quando a atividade assim o exigir.

\r\n\r\n

Regularidade Fiscal e Trabalhista

\r\n\r\n

Relativamente à regularidade fiscal e trabalhista, o licitante deverá apresentar:

\r\n\r\n

prova de inscrição no Cadastro Nacional de Pessoas Jurídicas (CNPJ);

\r\n\r\n

prova de inscrição no cadastro de contribuintes estadual ou municipal ou distrital, conforme o caso, relativa à sede e domicílio do licitante, pertinente ao ramo de atividade que exerce e compatível com o objeto desta licitação;

\r\n\r\n

prova da regularidade perante as Fazendas Estadual e Municipal, ou Distrital, de acordo com o disposto no art. 29, inciso III, da Lei nº 8.666/1993, dentro do prazo de validade;

\r\n\r\n

prova da regularidade dos recolhimentos do FGTS, expedido pela Caixa Econômica Federal, conforme alínea “a” do art. 27 da Lei nº 8.036, de 11 de maio de 1990, devidamente atualizado;

\r\n\r\n

prova da regularidade trabalhista, por meio de certidão negativa de débitos trabalhistas ou certidão positiva de débitos trabalhistas com efeito de negativa, nos termos da regulamentação do Tribunal Superior do Trabalho;

\r\n\r\n

prova de regularidade fiscal perante a Fazenda Nacional, conforme Portaria RFB nº 1.751, de 2 de outubro de 2014, será efetuada mediante apresentação:

\r\n\r\n

da certidão expedida conjuntamente pela Secretaria da Receita Federal do Brasil (RFB) e pela Procuradoria-Geral da Fazenda Nacional (PGFN), referente a todos os créditos tributários federais e à Dívida Ativa da União (DAU) por elas administrados.

\r\n\r\n

a certidão a que se refere a alínea anterior abrange inclusive os créditos tributários relativos às contribuições sociais previstas nas alíneas "a", "b" e "c" do parágrafo único do art. 11 da Lei nº 8.212, de 24 de julho de 1991, às contribuições instituídas a título de substituição e às contribuições devidas, por lei, a terceiros, inclusive inscritas em DAU.

\r\n\r\n

A certidão emitida para pessoa jurídica é válida para o estabelecimento matriz e suas filiais; e

\r\n\r\n

A emissão de certidão para órgãos públicos de qualquer dos Poderes dos Estados, do Distrito Federal e dos Municípios depende da inexistência de pendências em todos os órgãos que compõem a sua estrutura.

\r\n\r\n

Qualificação Técnica

\r\n\r\n

Observação (apagar): Este item fica a critério do requisitante, sendo recomendável que conste nas contratações, especialmente para contratação de serviços continuados com dedicação exclusiva de mão de obra, em observância à Instrução Normativa nº 02/2008-STLI/MP.

\r\n\r\n

A Qualificação Técnica será comprovada mediante a apresentação da seguinte documentação:

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

I -Digite aqui o texto...

\r\n\r\n

II -Digite aqui o texto...

\r\n\r\n

III -Digite aqui o texto...

\r\n\r\n

Qualificação Econômico-Financeira

\r\n\r\n

Observação (apagar): O texto abaixo representa o exigido, podendo ser suprimido quando permitido em lei. Quando for contratações de serviços continuados com dedicação exclusiva de mão de obra, deve ser acrescido do que é exigido na Instrução Normativa nº 02/2008-STLI/MP.

\r\n\r\n

A Qualificação Econômico-Financeira será comprovada mediante a apresentação dos seguintes documentos:

\r\n\r\n

Balanço Patrimonial e Demonstrações Contábeis do último exercício social, já exigíveis e apresentados na forma da lei, que comprovem a boa situação financeira da empresa, vedada a substituição por balancetes ou balanços provisórios, podendo ser atualizados, quando encerrados há mais de 03 (três) meses da data de apresentação da proposta, tomando como base a variação, ocorrida no período, do Índice Geral de Preços - Disponibilidade Interna (IGP-DI), publicado pela Fundação Getúlio Vargas (FGV) ou de outro indicador que o venha substituir. São considerados aceitos na forma da lei, o Balanço Patrimonial e as Demonstrações Contábeis assim apresentadas:

\r\n\r\n

publicado em Diário Oficial; ou

\r\n\r\n

publicado em jornal; ou

\r\n\r\n

por cópia ou fotocópia registrada ou autenticada na Junta Comercial da sede ou domicílio do licitante; ou

\r\n\r\n

por cópia ou fotocópia do Livro Diário devidamente autenticado na Junta Comercial da sede ou domicílio do licitante, ou outro órgão equivalente inclusive com os Termos de Abertura e Encerramento.

\r\n\r\n

A comprovação de boa situação financeira, avaliada automaticamente pelo SICAF, com base na obtenção de Índice de Liquidez Geral (LG) Solvência Geral (SG) e Liquidez Corrente (LC) resultante da aplicação das fórmulas a seguir:

\r\n\r\n

Ativo Circulante + Realizável a Longo Prazo

\r\n\r\n

LG = -----------------------------------------------------------------------

\r\n\r\n

Passivo Circulante + Passivo Não Circulante

\r\n\r\n

 

\r\n\r\n

Ativo Total

\r\n\r\n

SG = -----------------------------------------------------------------------

\r\n\r\n

Passivo Circulante + Passivo Não Circulante

\r\n\r\n

 

\r\n\r\n

Ativo Circulante

\r\n\r\n

LC = -----------------------------------

\r\n\r\n

Passivo Circulante

\r\n\r\n

Serão inabilitadas as empresas que não apresentarem balanço patrimonial e demonstrações contábeis referentes ao último exercício social, comprovando índices de Liquidez Geral (LG), Liquidez Corrente (LC) e Solvência Geral (SG) superiores a 1 (um); e

\r\n\r\n

Certidão Negativa de feitos sobre falência, recuperação judicial ou recuperação extrajudicial, expedida pelo distribuidor da sede do licitante.

\r\n\r\n

A habilitação jurídica e a regularidade fiscal e trabalhista poderão ser comprovadas mediante regular cadastro, habilitação parcial e documentação obrigatória válidas no SICAF, na forma do art. 4º, inciso XIV, da Lei nº 10.520/2002.

\r\n\r\n

A comprovação do cadastro e habilitação parcial no SICAF dar-se-á mediante verificação da validade dos documentos necessários, por meio de consulta online ao referido sistema.

\r\n\r\n

É assegurado ao licitante com algum documento vencido no SICAF o direito de apresentá-lo atualizado, exceto se o próprio cadastro estiver vencido, situação em que toda a documentação exigida deverá ser apresentada.

\r\n\r\n

Se o licitante não estiver regular no SICAF e comprovar, exclusivamente, mediante apresentação do formulário de Recibo de Solicitação de Serviço (RSS), a entrega da documentação à sua Unidade Cadastradora, no prazo regulamentar, o pregoeiro suspenderá os trabalhos para proceder diligência, na forma estabelecida no § 3º do art. 43 da Lei nº 8.666/1993 (art. 37 da Instrução Normativa nº 02/2010-SLTI/MP).

\r\n\r\n

As microempresas e empresas de pequeno porte, por ocasião da participação no presente certame licitatório, deverão apresentar toda a documentação exigida para efeito de comprovação de regularidade fiscal, mesmo que esta apresente alguma restrição.

\r\n\r\n

Havendo alguma restrição na comprovação da regularidade fiscal, será assegurado o prazo de 5 (cinco) dias úteis, cujo termo inicial corresponderá ao momento em que o proponente for declarado o vencedor do certame, prorrogável por igual período, a critério da administração pública, para a regularização da documentação, pagamento ou parcelamento do débito e emissão de eventuais certidões negativas ou positivas com efeito de certidão negativa (redação dada pela Lei Complementar nº 147/2014).

\r\n\r\n

A não regularização da documentação, no prazo acima previsto, implicará na decadência do direito à contratação, sem prejuízo das sanções previstas no item 14 deste Edital, sendo facultado à Administração convocar os licitantes remanescentes, na ordem de classificação, para assinatura do Contrato, ou revogar a licitação (art. 4º, § 4º, do Decreto nº 6.204/2007).

\r\n\r\n

Sob pena de inabilitação, os documentos encaminhados para habilitação deverão estar em nome do licitante com o número do CNPJ e o respectivo endereço.

\r\n\r\n

Se o licitante for a matriz, todos os documentos deverão estar em nome da matriz, e se o licitante for a filial, todos os documentos deverão estar em nome da filial, exceto aqueles documentos que, pela própria natureza, comprovadamente, forem emitidos somente em nome da matriz.

\r\n\r\n

Serão aceitos registros de CNPJ de licitante matriz e filial com diferenças de números de documentos pertinentes ao CND e ao CRF/FGTS, quando for comprovada a centralização do recolhimento dessas contribuições.

\r\n\r\n

Todos os documentos emitidos em língua estrangeira deverão ser entregues acompanhados da tradução para Língua Portuguesa, efetuada por Tradutor Juramentado, e também devidamente consularizados ou registrados no Cartório de Títulos e Documentos.

\r\n\r\n

Documentos de procedência estrangeira, mas emitidos em Língua Portuguesa, também deverão ser apresentados devidamente consularizados ou registrados no Cartório de Títulos e Documentos.

\r\n\r\n

Não será aceito protocolo de entrega ou solicitação de documentos para cumprimento de exigências deste Edital e seus Anexos.

\r\n\r\n

O pregoeiro e a equipe de apoio poderão obter certidões nos sítios oficiais de órgãos e entidades emissoras, constituindo-se em meio legal de prova, na forma do disposto no art. 25, § 4º, do Decreto nº 5.450/2005.

\r\n\r\n

Os documentos de qualificação técnica, bem como quaisquer outros de habilitação complementares que não estejam contemplados no SICAF, deverão ser enviados, via sistema, no prazo de 02 (duas) horas, a partir da solicitação do pregoeiro no sistema eletrônico (Instrução Normativa nº 01/2014-SLTI/MP).

\r\n\r\n

Os documentos referidos neste subitem, juntamente com a proposta vencedora, devidamente assinada, poderão ser solicitados pelo pregoeiro, devendo ser entregues no prazo máximo de 03 (três) dias úteis que se seguirem ao encerramento da sessão pública virtual, podendo ser entregues no protocolo do @sigla_orgao_origem@, por meio de recibo.

\r\n\r\n

Os documentos poderão ser apresentados em original, ou por qualquer processo de cópia (exceto produzida por fac-símile) autenticada por cartório competente ou por servidor da @sigla_orgao_origem@, devidamente identificado com nome, cargo e matrícula.

\r\n\r\n

Caso não sejam apresentados quaisquer dos documentos exigidos para a habilitação no presente certame ou os documentos estejam com a validade expirada, o licitante será considerado inabilitado, não se admitindo complementação posterior.

\r\n\r\n

Caso não conste do documento o respectivo prazo de validade, o documento será considerado válido pelo prazo de 60 (sessenta) dias contados a partir da data de sua emissão, exceto atestados de capacidade técnica.

\r\n\r\n

O disposto neste subitem não se aplica caso o licitante se enquadre nos moldes do subitem 11.3.

\r\n\r\n

O pregoeiro poderá sanar erros ou falhas que não alterem a substância dos documentos e sua validade jurídica, mediante despacho fundamentado, registrado em ata e acessível a todos, atribuindo-lhes validade e eficácia para fins de habilitação e classificação (art. 26, § 3º, do Decreto nº 5.450/2005).

\r\n\r\n

Se a documentação de habilitação estiver incompleta ou contrariar qualquer dispositivo deste Edital e seus Anexos, o pregoeiro considerará o licitante inabilitado e poderá instruir o processo com vistas à aplicação das penalidades cabíveis.

\r\n\r\n

Será consultado o Portal do CNJ e Portal da Transparência para verificação de possíveis condenações cíveis por ato de improbidade administrativa impeditivas da participação no certame (art. 97, caput e parágrafo único, da Lei nº 8.666/1993, SIASG-Comunica, Mensagem nº 068025, de 29/08/2011, e Acórdão TCU nº 1793/2011-P - item 9.5.1.5.2).

\r\n\r\n

Constatado o atendimento pleno às exigências editalícias será declarado o proponente vencedor.

\r\n\r\n

DOS RECURSOS

\r\n\r\n

Declarado o vencedor, o pregoeiro abrirá prazo de 30 (trinta) minutos (Acórdão nº 1990/2008 - Plenário), ou outro superior, durante o qual qualquer licitante poderá, de forma motivada, em campo próprio do sistema, manifestar sua intenção de recorrer.

\r\n\r\n

O pregoeiro fará juízo de admissibilidade da intenção de recorrer manifestada pelos licitantes com relação aos pressupostos recursais (sucumbência, tempestividade, legitimidade, interesse e motivação), abstendo-se de analisar, de antemão, o mérito dos recursos, aceitando-a ou, motivadamente, rejeitando-a, em campo próprio do sistema.

\r\n\r\n

A falta de manifestação imediata e motivada de interpor recurso, por parte do licitante, ao final da sessão pública virtual do Pregão, importará a decadência do direito de recorrer e o pregoeiro encerrará a sessão, procedendo a adjudicação do objeto ao licitante declarado vencedor (art. 26, § 1º, do Decreto nº 5.450/2005).

\r\n\r\n

O recorrente que tiver sua intenção de recorrer deverá apresentar suas razões de recurso, no prazo de 03 (três) dias (art. 26 do Decreto nº 5.450/2005).

\r\n\r\n

O sistema do Pregão, na forma Eletrônica, disponibilizará campo específico para o registro das razões de recurso e enviará mensagem eletrônica, automaticamente, para os demais licitantes, avisando-os do recurso interposto, ficando estes intimados para, querendo, apresentar contrarrazões em igual número de dias, a contar do término do prazo recursal do recorrente (art. 26 do Decreto nº 5.450/2005).

\r\n\r\n

O encaminhamento do registro de recurso, bem como das contrarrazões de recurso, será possível somente por meio eletrônico no Portal de Compras do Governo Federal (Compras Governamentais).

\r\n\r\n

Fica assegurada vista imediata dos autos do processo aos licitantes, com a finalidade de subsidiar a preparação de recursos e contrarrazões, no endereço estabelecido no subitem 11.9.2 deste Edital.

\r\n\r\n

O acolhimento de recurso importará a invalidação apenas dos atos insuscetíveis de aproveitamento (art. 26, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

DA ADJUDICAÇÃO E DA HOMOLOGAÇÃO

\r\n\r\n

Não havendo interposição de recursos, o pregoeiro encerrará a sessão e fará a adjudicação do objeto do certame, pelo sistema eletrônico do Pregão. Posteriormente, o resultado da licitação e o correspondente processo, devidamente instruído e acompanhado do relatório do pregoeiro, serão submetidos à consideração da autoridade competente para fins de homologação.

\r\n\r\n

Havendo recursos, decididos estes e constatada a regularidade dos atos praticados, a autoridade competente adjudicará o objeto e homologará o procedimento licitatório (art. 8º, incisos V e VI, e art. 27 do Decreto nº 5.450/2005).

\r\n\r\n

DAS SANÇÕES DECORRENTES DA LICITAÇÃO

\r\n\r\n

Com fundamento no art. 7º da Lei nº 10.520/2002 e no art. 28 do Decreto nº 5.450/2005, ficará impedido de licitar e contratar com a União, será descredenciado do SICAF pelo prazo de até 05 (cinco) anos, e será aplicada multa de até 10% (dez por cento) sobre o valor estimado para a contratação, sem prejuízo das demais cominações legais, garantidos o contraditório e a ampla defesa, o licitante que:

\r\n\r\n

não assinar o Contrato no prazo definido neste Edital, quando convocado dentro do prazo de validade de sua proposta;

\r\n\r\n

deixar de entregar documentação exigida neste Edital;

\r\n\r\n

apresentar documentação falsa;

\r\n\r\n

não mantiver a proposta;

\r\n\r\n

comportar-se de modo inidôneo;

\r\n\r\n

fizer declaração falsa; ou

\r\n\r\n

cometer fraude fiscal.

\r\n\r\n

Com fundamento no art. 87 c/c o art. 88 da Lei nº 8.666/1993, poderão ser aplicadas ainda as seguintes penalidades:

\r\n\r\n

suspensão temporária de participação em licitação e impedimento de contratar com a @sigla_orgao_origem@, por prazo não superior a 2 (dois) anos;

\r\n\r\n

declaração de inidoneidade para licitar ou contratar com a Administração Pública.

\r\n\r\n

No processo de aplicação de penalidades é assegurado o direito ao contraditório e à ampla defesa, no prazo de 05 (cinco) dias úteis.

\r\n\r\n

As penalidades serão obrigatoriamente registradas no SICAF (art. 28, parágrafo único, do Decreto nº 5.450/2005).

\r\n\r\n

As penalidades pela negligência na execução ou descumprimento de cláusulas contratuais estão previstas na minuta do respectivo instrumento, que se constitui no Anexo [digite aqui o número do anexo da minuta de contrato, se houver].

\r\n\r\n

A aplicação das sanções previstas neste edital não afeta os processos de responsabilização e aplicação de penalidades decorrentes atos ilícitos alcançados pela Lei nº 12.846, de 1º de agosto de 2013.

\r\n\r\n

DA ANULAÇÃO E DA REVOGAÇÃO DA LICITAÇÃO

\r\n\r\n

A @sigla_orgao_origem@ poderá revogar a presente licitação por razões de interesse público decorrentes de fato superveniente devidamente comprovado, pertinente e suficiente para justificar tal conduta, ou anulá-la por ilegalidade, de ofício ou por provocação de terceiros, mediante parecer escrito e devidamente fundamentado.

\r\n\r\n

DOS PRAZOS E CONDIÇÕES PARA ASSINATURA DO CONTRATO

\r\n\r\n

Observação (apagar): O texto deste item cabe nos casos em que existe termo de contrato nos moldes usuais, devendo ser ajustado para os casos em que não há contrato (quando for nota de empenho de despesa, autorização de compra ou ordem de execução de serviço, conforme previsto no art. 62 da Lei nº 8.666/1993).

\r\n\r\n

A contratação formalizar-se-á mediante a assinatura eletrônica de instrumento particular, observadas as cláusulas e condições deste Edital e da proposta vencedora, conforme a minuta do Contrato que integra este Edital.

\r\n\r\n

Concluído o procedimento licitatório, será o licitante vencedor notificado, por escrito, para assinatura eletrônica do termo de Contrato, do qual farão parte integrante, ainda que não transcritas total ou parcialmente no referido instrumento, as condições estabelecidas neste Edital, a proposta da empresa vencedora e todos os elementos técnicos que serviram de base à licitação.

\r\n\r\n

A assinatura eletrônica do Contrato pela adjudicatária dar-se-á por meio de sistema de processo administrativo eletrônico da @sigla_orgao_origem@ e no prazo de até 5 (cinco) dias úteis, a contar da data de sua convocação pela @sigla_orgao_origem@.

\r\n\r\n

O prazo de convocação poderá ser prorrogado, uma única vez, por igual período, quando solicitado pelo licitante vencedor, por escrito, durante o seu transcurso e desde que ocorra motivo justificado e aceito pela @sigla_orgao_origem@.

\r\n\r\n

É de responsabilidade do licitante vencedor proceder com seu cadastro como usuário externo no mencionado sistema de processo administrativo eletrônico da @sigla_orgao_origem@, conforme suas normas próprias, em tempo hábil para a assinatura do contrato no prazo estabelecido, acessando a opção "Clique aqui se você ainda não está cadastrado" na página de Acesso Externo do link a seguir: http://localhost/sei/controlador_externo.php?acao=usuario_externo_logar&id_orgao_acesso_externo=0

\r\n\r\n

Caso o licitante vencedor não tenha procedido o mencionado cadastro como usuário externo ou não tenha assinado eletronicamente o contrato no referido sistema, poderá ser convocado outro licitante, respeitada a ordem de classificação.

\r\n\r\n

A assinatura do Contrato ficará vinculada à manutenção das condições da habilitação, à plena regularidade fiscal e trabalhista da empresa vencedora e à inexistência de registro perante o Sistema de Cadastramento Unificado de Fornecedores (SICAF) que caracterize impedimento à contratação com a @sigla_orgao_origem@, sendo aplicáveis as penalidades definidas no subitem 14.1, em caso de descumprimento.

\r\n\r\n

É vedada a contratação de empresa privada que tenha em seu quadro societário servidor público da ativa, ou empregado de empresa pública, ou sociedade de economia mista, com fundamento no art. 18, inciso VIII, da Lei nº 13.080, de 2 de janeiro de 2015 (LDO 2015).

\r\n\r\n

Por determinação da Lei nº 10.522, de 19 de julho de 2002, art. 6º, inciso III, antes da celebração do Contrato a @sigla_orgao_origem@ fará consulta prévia obrigatória ao Cadastro Informativo dos Créditos não Quitados de Órgãos e Entidades Federais (CADIN).

\r\n\r\n

A consulta ao SICAF e ao CADIN será feita online, por servidor devidamente credenciado, que deverá imprimir esses documentos e anexá-los aos autos do processo de contratação.

\r\n\r\n

Se o licitante vencedor não comprovar as condições de habilitação consignadas no Edital, ou recusar-se, injustificadamente, a assinar eletronicamente o termo de Contrato no prazo estabelecido, poderá ser convocado outro licitante, respeitada a ordem de classificação, para, após comprovados os requisitos habilitatórios e feita a negociação, assinar o Contrato, sem prejuízo das penalidades previstas neste Edital e no Contrato e das demais cominações legais.

\r\n\r\n

Previamente à emissão da nota de empenho e à contratação, a Administração realizará consulta ao SICAF, CEIS, CNJ e Lista dos Inidôneos do TCU, para identificar possível proibição de contratar com o poder público.

\r\n\r\n

Para efeito do disposto no inciso XI do caput do art. 4º da Instrução Normativa RFB nº 1.234/2012, alterada pela Instrução Normativa RFB nº 1540/2015, a pessoa jurídica deverá, no ato da assinatura do contrato, apresentar à @sigla_orgao_origem@ declaração de acordo com os modelos constantes dos Anexos IV da Instrução Normativa retromencionada, conforme o caso, em 2 (duas) vias, assinada pelo seu representante legal.

\r\n\r\n

A @sigla_orgao_origem@ anexará a 1ª (primeira) via da declaração ao processo ou à documentação que deu origem ao pagamento, para fins de comprovação à Secretaria da Receita Federal do Brasil (RFB), devendo a 2ª (segunda) via ser devolvida ao interessado como recibo.

\r\n\r\n

No caso de pagamento decorrente de contratos de prestação de serviços continuados, a declaração a que se refere o caput deverá ser anexada ao processo ou à documentação que deu origem ao 1º (primeiro) pagamento do contrato, sem prejuízo de o declarante informar, imediatamente, à @sigla_orgao_origem@, qualquer alteração na situação declarada.

\r\n\r\n

A declaração poderá ser apresentada por meio eletrônico, com a utilização de certificação digital disponibilizada pela Infraestrutura de Chaves Públicas Brasileira (ICP-Brasil), desde que no documento eletrônico arquivado pela fonte pagadora conste a assinatura digital do representante legal e respectiva data da assinatura.

\r\n\r\n

Alternativamente à declaração, a @sigla_orgao_origem@ poderá verificar a permanência do contratado no Simples Nacional mediante consulta ao Portal do Simples Nacional e anexar cópia da consulta ao contrato ou documentação que deu origem ao pagamento, sem prejuízo do contratado informar imediatamente ao contratante qualquer alteração da sua permanência no Simples Nacional.

\r\n\r\n

A exigência, ora prevista, aplica-se no caso de prorrogação do contrato ou a cada novo contrato, ainda que nas mesmas condições do anterior.

\r\n\r\n

DA VIGÊNCIA CONTRATUAL

\r\n\r\n

Observação (apagar): O texto deste item cabe nos casos em que existe termo de contrato nos moldes usuais, devendo ser ajustado para os casos em que não há (quando for nota de empenho de despesa, autorização de compra ou ordem de execução de serviço, conforme previsto no art. 62 da Lei nº 8.666/1993).

\r\n\r\n

O prazo de vigência contratual será de [digite aqui a vigência contratual, preferencialmente em meses], contados da sua assinatura, com eficácia após a publicação do seu extrato no Diário Oficial da União.

\r\n\r\n

DA GARANTIA CONTRATUAL

\r\n\r\n

Observação (apagar): Recomendável que conste nas contratações.

\r\n\r\n

A CONTRATADA deverá apresentar, no prazo máximo de 10 (dez) dias úteis, prorrogáveis por igual período, a critério da CONTRATANTE, contado da assinatura do contrato, comprovante de prestação de garantia, podendo optar por caução em dinheiro ou títulos da dívida pública, seguro-garantia ou fiança bancária, devendo o valor da garantia corresponder a [digite aqui o percentual, limitado a 5% do valor do contrato] do valor total do contrato.

\r\n\r\n

A garantia, qualquer que seja a modalidade escolhida, assegurará o pagamento de:

\r\n\r\n

prejuízos advindos do não cumprimento do objeto do Contrato;

\r\n\r\n

prejuízos diretos causados à Administração decorrentes de culpa ou dolo durante a execução do Contrato;

\r\n\r\n

multas moratórias e punitivas aplicadas pela Administração à CONTRATADA; e

\r\n\r\n

obrigações trabalhistas e previdenciárias de qualquer natureza, não adimplidas pela CONTRATADA, quando couber.

\r\n\r\n

A modalidade seguro-garantia somente será aceita se contemplar todos os eventos indicados no item anterior, observada a legislação que rege a matéria.

\r\n\r\n

A garantia em dinheiro deverá ser efetuada na Caixa Econômica Federal em conta específica com correção monetária, em favor do CONTRATANTE.

\r\n\r\n

A inobservância do prazo fixado para apresentação da garantia acarretará a aplicação de multa de 0,07% (sete centésimos por cento) do valor do Contrato por dia de atraso, observado o máximo de 2% (dois por cento).

\r\n\r\n

O atraso superior a 25 (vinte e cinco) dias autoriza a Administração a promover a rescisão do contrato por descumprimento ou cumprimento irregular de suas cláusulas, conforme dispõem os incisos I e II do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

O garantidor não é parte para figurar em processo administrativo instaurado pela CONTRATANTE com o objetivo de apurar prejuízos e/ou aplicar sanções à CONTRATADA.

\r\n\r\n

A garantia será considerada extinta:

\r\n\r\n

com a devolução da apólice, carta fiança ou autorização para o levantamento de importâncias depositadas em dinheiro a título de garantia, acompanhada de declaração da Administração, mediante termo circunstanciado, de que a contratada cumpriu todas as cláusulas do Contrato; e

\r\n\r\n

após o término da vigência do Contrato (Circular SUSEP nº 477, de 30 de setembro de 2013, art. 8º, inciso I, e SIASG-Comunica nº 081380-SLTI/MP, de 1º de setembro de 2014).

\r\n\r\n

A CONTRATANTE executará a garantia na forma prevista na legislação que rege a matéria.

\r\n\r\n

A garantia deverá observar ao estabelecido na Instrução Normativa nº 02/2008-SLTI/MP com alterações posteriores, bem como na legislação que rege a matéria.

\r\n\r\n

A garantia deve ter validade durante a execução do contrato, devendo ser renovada a cada prorrogação e complementada a cada alteração contratual que implique em alteração do valor da contratação.

\r\n\r\n

Observação (apagar): Este subitem acima deverá constar nas contratações continuadas.

\r\n\r\n

A garantia deverá ser integralizada, no prazo máximo de 10 (dez) dias úteis, sempre que dela forem deduzidos quaisquer valores ou quando houver alteração para acréscimo de objeto.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a reter, a qualquer tempo, a garantia na forma prevista neste Item.

\r\n\r\n

DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTAS

\r\n\r\n

Observação (apagar): Este item somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

DAS OBRIGAÇÕES DA CONTRATADA

\r\n\r\n

Os critérios referentes às obrigações da contratada estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Os critérios referentes às obrigações da contratante estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

\r\n\r\n

Os critérios referentes ao acompanhamento e a fiscalização contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA LIQUIDAÇÃO E DO PAGAMENTO

\r\n\r\n

Os critérios referentes à liquidação e ao pagamento estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA ALTERAÇÃO DO CONTRATO

\r\n\r\n

Os critérios referentes à alteração contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA REPACTUAÇÃO/REAJUSTE

\r\n\r\n

Observação (apagar): Este item somente é necessário nos casos de serviços continuados, com dedicação exclusiva de mão de obra ou com duração maior que um ano.

\r\n\r\n

Os critérios referentes à repactuação contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS PENALIDADES

\r\n\r\n

Os critérios referentes às penalidades sobre a execução contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA RESCISÃO

\r\n\r\n

Os critérios referentes à rescisão contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS DISPOSIÇÕES FINAIS

\r\n\r\n

A participação na presente licitação implica na concordância, por parte do licitante, com todos os termos e condições deste Edital.

\r\n\r\n

Na contagem dos prazos estabelecidos neste Edital, excluir-se-á o dia do início e incluir-se-á o do vencimento, e considerar-se-ão os dias consecutivos, exceto quando estiver explicitamente disposto em contrário.

\r\n\r\n

Só se iniciam e vencem os prazos referidos neste Edital em dia de expediente na @sigla_orgao_origem@.

\r\n\r\n

O desatendimento de exigências formais não essenciais não importará no afastamento do licitante, desde que seja possível a exata compreensão de sua proposta e a perfeita aferição de sua qualificação.

\r\n\r\n

As normas que disciplinam este certame serão sempre interpretadas em favor da ampliação da disputa entre os interessados, sem comprometimento da segurança do futuro contrato.

\r\n\r\n

Nenhuma indenização será devida aos licitantes pela elaboração da proposta ou pela apresentação de documentação exigida no presente Edital.

\r\n\r\n

Da sessão pública virtual, lavrar-se-á ata circunstanciada, na qual serão registradas as ocorrências relevantes e, ao final, deverá ser assinada pelo pregoeiro e pela equipe de apoio, ficando disponível no sistema eletrônico do Portal de Compras do Governo Federal (Compras Governamentais) para os licitantes e para a sociedade.

\r\n\r\n

O licitante vencedor, em decorrência de aumento ou diminuição quantitativa do objeto licitado, e obedecendo-se as condições inicialmente previstas no Contrato, ficará obrigado a aceitar os acréscimos ou supressões que se fizerem necessários na execução dos serviços até o limite de 25% (vinte e cinco por cento) do valor inicial atualizado da contratação.

\r\n\r\n

Fica facultada, entretanto, a supressão além do limite acima estabelecido, mediante consenso entre os contratantes.

\r\n\r\n

A adjudicação ao licitante vencedor e a homologação desta licitação pela autoridade competente não implicam direito à contratação.

\r\n\r\n

É vedado à empresa CONTRATADA caucionar ou utilizar o contrato objeto da presente licitação para qualquer operação financeira, sem prévia e expressa autorização da @sigla_orgao_origem@.

\r\n\r\n

No caso de fusão, cisão ou incorporação da CONTRATADA, a @sigla_orgao_origem@ deverá ser comunicado por escrito sobre estas mudanças, e só aceitará a nova empresa se destas transformações não resultarem prejuízos à execução dos serviços, mantidas as condições de habilitação e a manutenção das condições estabelecidas no contrato original.

\r\n\r\n

A CONTRATADA prestará todos os esclarecimentos que lhe forem solicitados pela Administração, cujas reclamações estrará obrigada a atender prontamente.

\r\n\r\n

O cadastramento da proposta de preços no sistema de pregão do Portal de Compras do Governo Federal (Compras Governamentais) implica em pleno e total conhecimento das condições dos locais onde serão executados os serviços, bem como do Edital e seus Anexos, necessários ao perfeito cumprimento da execução do contrato.

\r\n\r\n

O Edital poderá ser obtido pela Internet, no sítio www.comprasgovernamentais.gov.br.

\r\n\r\n

Caso seja necessária qualquer alteração deste Edital no curso do prazo estabelecido para a realização do Pregão na forma Eletrônica, este será novamente divulgado pelos mesmos meios que o texto original, reabrindo-se o prazo inicialmente estabelecido, exceto quando, inquestionavelmente, a alteração não afetar a formulação das propostas (art. 20 do Decreto nº 5.450/2005).

\r\n\r\n

Os interessados poderão obter o Manual para operação do sistema de Pregão na forma Eletrônica no seguinte endereço: www.comprasgovernamentais.gov.br, no link Fornecedores > Manuais > Pregão Eletrônico.

\r\n\r\n

É facultado ao pregoeiro ou à autoridade superior, em qualquer fase deste Pregão, promover diligências destinadas a esclarecer ou complementar a instrução do processo, vedada a inclusão de documentos que deveriam constar originariamente da proposta ou da documentação.

\r\n\r\n

Os casos omissos serão resolvidos pelo pregoeiro, com base na legislação que rege o presente certame, mencionada no preâmbulo deste Edital.

\r\n\r\n

Para dirimir as questões oriundas desta licitação e da futura contratação, que não puderem ser solucionadas administrativamente, será competente o Foro da Justiça Federal, Subseção Judiciária de Brasília, Seção Judiciária da Justiça Federal de Brasília/DF, excluído qualquer outro, por mais privilegiado que seja.

\r\n\r\n

DOS ANEXOS

\r\n\r\n

Integram este Edital, independentemente de transcrição, os seguintes anexos:

\r\n\r\n

Anexo I – Termo de Referência (SEI nº #######).

\r\n\r\n

Anexo II – Modelo de Planilha de Preços e Formação de Custos (SEI nº #######).

\r\n\r\n

Anexo III – Minuta de Contrato (SEI nº #######).

\r\n\r\n

Anexo IV – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

Anexo V – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

Anexo VI – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

 

\r\n\r\n

O presente documento segue assinado pelo servidor Elaborador, Pregoeiro (validador) e pela autoridade responsável por sua aprovação, com fulcro no Regimento Interno da @sigla_orgao_origem@, cujos fundamentos passam a integrar a presente decisão por força do art. 50, § 1º, da Lei nº 9.784, de 29 de janeiro de 1999.

\r\n',30,'N','N','S','N','N','N','S','S'),(480,70,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(481,70,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(482,71,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(483,71,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(485,71,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(486,71,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Contrato DE [DIGITE AQUI O OBJETO] QUE CELEBRAM ENTRE SI A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], e de outro lado a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA, neste ato representada pelo Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], [profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], resolvem celebrar o presente Contrato, que será regido pela Lei nº 8.666, 21 de junho de 1993, legislação correlata e pelo Edital e anexos do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico] (Processo nº @processo@), sob os termos e condições a seguir estabelecidos:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente Contrato tem por objeto a execução, pela CONTRATADA, de [digite aqui o tipo de contratação, se prestação de serviços ou fornecimento de bens], conforme especificações e quantitativos estabelecidos no Termo de Referência, Anexo I do Edital do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico], com a finalidade de atender às necessidades da CONTRATANTE.

\r\n\r\n

Integram este Contrato, independente de sua transcrição, o Edital de Licitação, a Proposta da CONTRATADA e demais elementos constantes do referido processo.

\r\n\r\n

O presente Contrato regula-se por suas cláusulas e pelos preceitos de direito público, aplicando-lhe, supletivamente, os princípios da teoria geral dos contratos, as disposições de direito privado e, em especial, o Código Civil – Lei nº 10.406, de 10 de janeiro de 2002, e o Código de Defesa do Consumidor – Lei nº 8.078, de 11 de setembro de 1990.

\r\n\r\n

CLÁUSULA SEGUNDA – DO VALOR DO CONTRATO

\r\n\r\n

A CONTRATANTE pagará à CONTRATADA, pela execução do objeto deste Contrato, o valor global de R$ [digite aqui o valor do contrato].

\r\n\r\n

Quaisquer tributos, encargos, custos ou despesas, diretos ou indiretos, omitidos da proposta da CONTRATADA ou incorretamente cotados, serão considerados como inclusos nos preços, não sendo considerados pleitos de acréscimos, a esse ou a qualquer título, devendo o serviço ser executado sem ônus adicional à CONTRATANTE.

\r\n\r\n

Caso haja equívoco no dimensionamento dos quantitativos da proposta, a CONTRATADA deverá arcar com o ônus decorrente, devendo complementá-los, caso o previsto inicialmente não seja satisfatório para o atendimento ao objeto do Pregão, exceto quando ocorrer algum dos eventos arrolados no art. 57, § 1º, da Lei nº 8.666/1993 (art. 23 da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Os preços constantes da proposta anexa a este Contrato são de exclusiva responsabilidade da CONTRATADA, não lhe assistindo o direito de pleitear qualquer alteração, sob alegação de erro, omissão ou qualquer outro pretexto.

\r\n\r\n

A CONTRATADA é a única responsável pela cotação correta dos encargos tributários na planilha de custos e formação de preços. Portanto, em caso de erro ou cotação incompatível com o regime tributário a que se submete, serão adotadas as orientações a seguir:

\r\n\r\n

cotação de percentual menor que o adequado: o percentual será mantido durante toda a execução contratual;

\r\n\r\n

cotação de percentual maior que o adequado: para atender as orientações dos Acórdãos TCU nº 3.037/2009-Plenário, nº 1.696/2010-2ª Câmara, nº 1.442/2010-2ª Câmara e nº 387/2010-2ª Câmara, o excesso será suprimido, unilateralmente, da planilha e haverá glosa/dedução, quando do pagamento ou da repactuação, para fins de total ressarcimento do débito.

\r\n\r\n

CLÁUSULA TERCEIRA – DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

A despesa com a execução dos serviços de que trata o objeto correrá à conta de créditos orçamentários consignados à CONTRATANTE, para o exercício de [digite aqui o ano do exercício], sob a seguinte classificação: Programa de Trabalho [digite aqui o PT]; Subelemento [digite aqui o subelemento]; ID [digite aqui o ID].

\r\n\r\n

Os valores alocados serão distribuídos na(s) seguinte(s) Natureza(s) de Despesa (ND):

\r\n\r\n

R$ [digite aqui o valor] na ND [digite aqui a ND];

\r\n\r\n

R$ [digite aqui o valor] na ND [digite aqui a ND];

\r\n\r\n

A despesa para os exercícios subsequentes, quando for o caso, será alocada à dotação orçamentária prevista para atendimento desta finalidade, a ser consignada à CONTRATANTE pela Lei Orçamentária Anual.

\r\n\r\n

CLÁUSULA QUARTA – DO EMPENHO DA DESPESA

\r\n\r\n

Os recursos necessários ao atendimento da despesa inerente ao presente Contrato estão regularmente inscritos na(s) Nota(s) de Empenho(s) abaixo, correspondente(s) ao exercício em curso:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nº Empenho

\r\n
\r\n

Data

\r\n
\r\n

Valor (R$)

\r\n
\r\n

Natureza de Despesa (ND)

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Se a vigência contratual estender-se para o exercício subsequente, será emitida nova nota de empenho.

\r\n\r\n

O crédito orçamentário e o respectivo empenho para atender a parcela da despesa relativa à parte a ser executada em exercício futuro, serão indicados por meio de termos aditivos ou apostilamentos.

\r\n\r\n

CLÁUSULA QUINTA – DA VIGÊNCIA

\r\n\r\n

O prazo de vigência deste Contrato é de [digite aqui o número] meses, contados da sua assinatura, com eficácia após a publicação de seu extrato no Diário Oficial da União.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados, em especial aqueles com dedicação exclusiva de mão de obra.

\r\n\r\n

A critério da CONTRATANTE e com a anuência da CONTRATADA, este Contrato pode ser prorrogado por iguais e sucessivos períodos, mediante Termo Aditivo, até o limite de 60 (sessenta) meses, desde que comprovada a vantajosidade para a Administração das condições e dos preços contratados.

\r\n\r\n

Em caráter excepcional, devidamente justificado no processo e mediante autorização da autoridade superior, o prazo de que trata o item anterior poderá ser prorrogado em até 12 (doze) meses, na forma estabelecida no art. 57, § 4º, da Lei nº 8.666/1993.

\r\n\r\n

A CONTRATADA não tem direito subjetivo à prorrogação contratual, que objetiva a obtenção de preços e condições mais vantajosas para a Administração, conforme estabelece o art. 57, inciso II, da Lei nº 8.666/1993.

\r\n\r\n

A prorrogação somente poderá ocorrer desde que haja autorização formal da autoridade competente e observados os seguintes requisitos:

\r\n\r\n

os serviços tenham sido prestados regularmente;

\r\n\r\n

a Administração mantenha interesse na realização do serviço;

\r\n\r\n

o valor do Contrato permaneça economicamente vantajoso para a Administração; e

\r\n\r\n

a CONTRATADA manifeste expressamente interesse na prorrogação.

\r\n\r\n

Quando da prorrogação contratual, a CONTRATANTE:

\r\n\r\n

realizará negociação contratual para a redução e/ou eliminação dos custos fixos ou variáveis não renováveis que já tenham sido amortizados ou pagos no primeiro ano da contratação;

\r\n\r\n

a pelo menos 60 (sessenta) dias do término da vigência deste Contrato, a CONTRATANTE expedirá comunicado à CONTRATADA para que esta manifeste, dentro de 03 (três) dias, contados do recebimento da consulta, seu interesse na prorrogação do atual Contrato;

\r\n\r\n

se positiva a resposta da CONTRATADA, a CONTRATANTE providenciará, no devido tempo, o respectivo Termo Aditivo;

\r\n\r\n

esta resposta terá caráter irretratável e, portanto, a CONTRATADA dela não poderá, após expressa manifestação neste sentido, alegar arrependimento para reformular a sua decisão;

\r\n\r\n

eventual desistência da CONTRATADA após expressa manifestação de interesse na prorrogação contratual ensejará pela CONTRATANTE a devida aplicação de penalidade, nos termos deste Contrato;

\r\n\r\n

caso a CONTRATADA manifeste, num primeiro momento, por não ter interesse em prorrogar o Contrato e posteriormente venha a se retratar, demonstrando vontade de prorrogá-lo, fica a critério da CONTRATANTE, como faculdade e prerrogativa, proceder à prorrogação ou dar curso a novo processo de licitação.

\r\n\r\n

A CONTRATANTE não prorrogará o Contrato quando a CONTRATADA tiver sido declarada inidônea pela Administração Pública, impedida de participar de procedimentos licitatórios ou contratar no âmbito da Administração Pública Federal ou, ainda, suspensa no âmbito da CONTRATANTE, enquanto perdurarem os efeitos.

\r\n\r\n

A prorrogação do Contrato, quando demonstrada a vantajosidade para a CONTRATANTE, deverá ser promovida mediante celebração de Termo Aditivo, o qual deverá ser submetido à aprovação da consultoria jurídica.

\r\n\r\n

CLÁUSULA SEXTA – DA GARANTIA DE EXECUÇÃO DO CONTRATO

\r\n\r\n

A CONTRATADA deverá apresentar, no prazo máximo de 10 (dez) dias úteis, prorrogáveis por igual período, a critério da CONTRATANTE, contado da assinatura do Contrato, comprovante de prestação de garantia, podendo optar por caução em dinheiro ou títulos da dívida pública, seguro-garantia ou fiança bancária, devendo o valor da garantia corresponder a [digite aqui o percentual, limitado a 5% do valor do contrato] do valor total do Contrato.

\r\n\r\n

A garantia, qualquer que seja a modalidade escolhida, assegurará o pagamento de:

\r\n\r\n

prejuízos advindos do não cumprimento do objeto do Contrato;

\r\n\r\n

prejuízos diretos causados à Administração decorrentes de culpa ou dolo durante a execução do Contrato;

\r\n\r\n

multas moratórias e punitivas aplicadas pela Administração à CONTRATADA; e

\r\n\r\n

obrigações trabalhistas e previdenciárias de qualquer natureza, não adimplidas pela CONTRATADA, quando couber.

\r\n\r\n

A modalidade seguro-garantia somente será aceita se contemplar todos os eventos indicados no item anterior, observada a legislação que rege a matéria.

\r\n\r\n

A garantia em dinheiro deverá ser efetuada na Caixa Econômica Federal em conta específica com correção monetária, em favor do CONTRATANTE.

\r\n\r\n

A inobservância do prazo fixado para apresentação da garantia acarretará a aplicação de multa de 0,07% (sete centésimos por cento) do valor do Contrato por dia de atraso, observado o máximo de 2% (dois por cento).

\r\n\r\n

O atraso superior a 25 (vinte e cinco) dias autoriza a Administração a promover a rescisão do Contrato por descumprimento ou cumprimento irregular de suas cláusulas, conforme dispõem os incisos I e II do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

O garantidor não é parte para figurar em processo administrativo instaurado pela CONTRATANTE com o objetivo de apurar prejuízos e/ou aplicar sanções à CONTRATADA.

\r\n\r\n

A garantia será considerada extinta:

\r\n\r\n

com a devolução da apólice, carta fiança ou autorização para o levantamento de importâncias depositadas em dinheiro a título de garantia, acompanhada de declaração da Administração, mediante termo circunstanciado, de que a contratada cumpriu todas as cláusulas do Contrato; e

\r\n\r\n

após o término da vigência do Contrato (Circular SUSEP nº 477, de 30 de setembro de 2013, art. 8º, inciso I, e SIASG – COMUNICA nº 081380-SLTI/MP, de 1º de setembro de 2014).

\r\n\r\n

A CONTRATANTE executará a garantia na forma prevista na legislação que rege a matéria.

\r\n\r\n

A garantia deverá observar ao estabelecido na Instrução Normativa nº 02/2008-SLTI/MP com alterações posteriores, bem como na legislação que rege a matéria.

\r\n\r\n

Observação: O subitem abaixo deverá constar nas contratações continuadas.

\r\n\r\n

A garantia deve ter validade durante a execução do Contrato, devendo ser renovada a cada prorrogação e complementada a cada alteração contratual que implique em alteração do valor da contratação.

\r\n\r\n

A garantia deverá ser integralizada, no prazo máximo de 10 (dez) dias úteis, sempre que dela forem deduzidos quaisquer valores ou quando houver alteração para acréscimo de objeto.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a reter, a qualquer tempo, a garantia na forma prevista nesta cláusula.

\r\n\r\n

CLÁUSULA SÉTIMA – DA DESCRIÇÃO DETALHADA DOS SERVIÇOS E METODOLOGIAS DE EXECUÇÃO

\r\n\r\n

A descrição e metodologia de execução dos serviços constam do Termo de Referência da contratação.

\r\n\r\n

CLÁUSULA OITAVA – DAS OBRIGAÇÕES DA CONTRATADA

\r\n\r\n

Os serviços objeto do presente Contrato serão executados pela CONTRATADA obedecendo ao disposto no respectivo instrumento convocatório e seus anexos, na Lei nº 8.666/1993 e nas demais normas legais e regulamentares pertinentes, sendo, ainda, suas obrigações:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Obrigações Gerais

\r\n
\r\n

Grau de Penalidade em Caso de Descumprimento

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Obriga-se a, sempre que demandado, fazer com que seus prepostos e funcionários efetivem credenciamento como usuário externo no sistema de processo eletrônico da CONTRATANTE, para assinatura de documentos eletrônicos padronizados pela CONTRATANTE.

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n\r\n

 

\r\n\r\n

CLÁUSULA NONA – DAS OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA DÉCIMA – DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

\r\n\r\n

O acompanhamento e a fiscalização da execução do Contrato consistem na verificação da conformidade da prestação dos serviços e da alocação dos recursos necessários, de forma a assegurar o perfeito cumprimento do Contrato, devendo ser exercido pelo Gestor e pelo Agente Fiscalizador do Contrato, na forma do art. 67 da Lei nº 8.666/1993, do art. 6º do Decreto nº 2.271/1997 e da Instrução Normativa nº 02/2008-SLTI/MP, no que couber.

\r\n\r\n

A gestão do presente Contrato será de responsabilidade da [digite aqui o nome da Unidade que será responsável].

\r\n\r\n

As decisões e providências que ultrapassarem a competência do Agente Fiscalizador deverão ser solicitadas ao Gestor, em tempo hábil, para adoção das medidas convenientes.

\r\n\r\n

A comunicação entre a Gestão e/ou Fiscalização Contratual e a CONTRATADA será por meio escrito, sempre que se entender necessário o registro de ocorrência relacionada com a execução da contratação.

\r\n\r\n

Ao Gestor e Agente Fiscalizador do Contrato designados pela CONTRATANTE caberá o ateste das faturas dos serviços prestados, desde que cumpridas as exigências estabelecidas no Contrato e no Edital de licitação e seus anexos.

\r\n\r\n

O gestor e Agente Fiscalizador do Contrato podem sustar qualquer trabalho/entrega que esteja em desacordo com o especificado, sempre que essa medida se tornar necessária.

\r\n\r\n

A não manutenção das condições de habilitação pelo contratado poderá dar ensejo à rescisão contratual, sem prejuízo das demais sanções.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados, em especial aqueles com dedicação exclusiva de mão de obra.

\r\n\r\n

A análise da documentação fiscal, trabalhista e previdenciária caberá ao gestor ou ao fiscal do Contrato.

\r\n\r\n

A fiscalização dos contratos, no que se refere ao cumprimento das obrigações trabalhistas será realizada com base em critérios estatísticos, levando-se em consideração falhas que impactem o Contrato como um todo e não apenas erros e falhas eventuais no pagamento de alguma vantagem a um determinado empregado (art. 31, § 3º, da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Para a efetiva gestão e fiscalização contratual, a CONTRATADA deverá apresentar os seguintes documentos:

\r\n\r\n

no primeiro mês da prestação dos serviços, e sempre que houver admissão de novos empregados:

\r\n\r\n

relação dos empregados, contendo nome completo, cargo ou função, horário do posto de trabalho, números da carteira de identidade (RG) e da inscrição no Cadastro de Pessoas Físicas (CPF), com indicação dos responsáveis técnicos pela execução dos serviços, quando for o caso;

\r\n\r\n

Carteira de Trabalho e Previdência Social (CTPS) dos empregados admitidos e dos responsáveis técnicos pela execução dos serviços, quando for o caso, devidamente assinada pela contratada; e

\r\n\r\n

exames médicos admissionais dos empregados da contratada que prestarão os serviços;

\r\n\r\n

até o dia trinta do mês seguinte ao da prestação dos serviços ao setor responsável pela fiscalização do Contrato dos seguintes documentos, quando não for possível a verificação da regularidade dos mesmos no Sistema de Cadastro de Fornecedores (SICAF):

\r\n\r\n

prova de regularidade relativa à Seguridade Social;

\r\n\r\n

certidão conjunta relativa aos tributos federais e à Dívida Ativa da União;

\r\n\r\n

certidões que comprovem a regularidade perante as Fazendas Estadual, Distrital e Municipal do domicílio ou sede do contratado;

\r\n\r\n

Certidão de Regularidade do FGTS (CRF); e

\r\n\r\n

Certidão Negativa de Débitos Trabalhistas (CNDT);

\r\n\r\n

quando solicitado pela Administração, de quaisquer dos seguintes documentos:

\r\n\r\n

extrato da conta do INSS e do FGTS de qualquer empregado, a critério da Administração contratante;

\r\n\r\n

cópia da folha de pagamento analítica de qualquer mês da prestação dos serviços, em que conste como tomador o órgão ou entidade contratante;

\r\n\r\n

cópia dos contracheques dos empregados relativos a qualquer mês da prestação dos serviços ou, ainda, quando necessário, cópia de recibos de depósitos bancários;

\r\n\r\n

comprovantes de entrega de benefícios suplementares (vale-transporte, vale alimentação, entre outros), a que estiver obrigada por força de lei ou de convenção ou acordo coletivo de trabalho, relativos a qualquer mês da prestação dos serviços e de qualquer empregado; e

\r\n\r\n

comprovantes de realização de eventuais cursos de treinamento e reciclagem que forem exigidos por lei ou pelo Contrato;

\r\n\r\n

quando da extinção ou rescisão do Contrato, após o último mês de prestação dos serviços, no prazo definido no Contrato:

\r\n\r\n

termos de rescisão dos contratos de trabalho dos empregados prestadores de serviço, devidamente homologados, quando exigível pelo sindicato da categoria;

\r\n\r\n

guias de recolhimento da contribuição previdenciária e do FGTS, referentes às rescisões contratuais;

\r\n\r\n

extratos dos depósitos efetuados nas contas vinculadas individuais do FGTS de cada empregado dispensado; e

\r\n\r\n

exames médicos demissionais dos empregados dispensados.

\r\n\r\n

A Administração deverá analisar a documentação solicitada no subitem “d” do item anterior no prazo de 30 (trinta) dias após o recebimento dos documentos, prorrogáveis por mais 30 (trinta) dias, justificadamente.

\r\n\r\n

Os documentos necessários à comprovação do cumprimento das obrigações sociais trabalhistas exigidos poderão ser apresentados em original ou por qualquer processo de cópia autenticada por cartório competente ou por servidor da Administração.

\r\n\r\n

Quando do encerramento do Contrato, até que a contratada comprove o pagamento das verbas rescisórias ou que os empregados tenham sido realocados em outra atividade de prestação de serviços, sem que ocorra a interrupção do Contrato de trabalho, a CONTRATANTE reterá a garantia prestada e os valores das faturas correspondentes a 1 (um) mês de serviço, podendo utilizá-los para o pagamento direto aos trabalhadores no caso de a CONTRATADA não efetuar os pagamentos em até 2 (dois) meses do encerramento da vigência contratual.

\r\n\r\n

Caberá também ao Gestor ou Agente Fiscalizador do Contrato:

\r\n\r\n

comunicar ao Ministério da Previdência Social e à Receita Federal do Brasil (RFB) qualquer irregularidade no recolhimento das contribuições previdenciárias.

\r\n\r\n

comunicar ao Ministério do Trabalho e Emprego (MTE) qualquer irregularidade no recolhimento do FGTS dos trabalhadores terceirizados.

\r\n\r\n

O descumprimento das obrigações trabalhistas ou a não manutenção das condições de habilitação pelo contratado poderá dar ensejo à rescisão contratual, sem prejuízo das demais sanções.

\r\n\r\n

A Administração poderá conceder um prazo para que a contratada regularize suas obrigações trabalhistas ou suas condições de habilitação, sob pena de rescisão contratual, quando não identificar má-fé ou a incapacidade da empresa de corrigir a situação.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DA LIQUIDAÇÃO E DO PAGAMENTO

\r\n\r\n

Observação (apagar): Atentar para o prazo máximo de 30 dias para pagamento, conforme disposto no artigo 40, XIV, “a”, da Lei nº 8.666/1993. Esse prazo abrange tanto o prazo para a empresa apresentar a Nota Fiscal/Fatura Eletrônica, disciplinado abaixo, como o prazo para o fiscal atestá-la, e demais trâmites burocráticos. Ou seja, é o prazo desde a apresentação até o envio da ordem bancária.

\r\n\r\n

O pagamento será efetuado pela CONTRATANTE no prazo de [definir a periodicidade do pagamento], contatos do dia útil seguinte à data do peticionamento eletrônico da Nota Fiscal/Fatura Eletrônica pela CONTRATADA, que deverá conter o detalhamento dos serviços executados e materiais empregados, conforme disposto no art. 73 da Lei nº 8.666/1993, observado o disposto no art. 35 da Instrução Normativa nº 02/2008-SLTI/MP.

\r\n\r\n

O pagamento será efetuado por meio de ordem bancária para crédito em banco, agência e conta corrente indicados pela CONTRATADA.

\r\n\r\n

Os pagamentos decorrentes de despesas cujos valores não ultrapassem o limite de que trata o inciso II do art. 24 da Lei 8.666, de 1993, deverão ser efetuados no prazo de até 5 (cinco) dias úteis, contados do dia útil seguinte à data do peticionamento eletrônico da Nota Fiscal/Fatura Eletrônica pela CONTRATADA, nos termos do art. 5º, § 3º, da Lei nº 8.666/1993.

\r\n\r\n

A apresentação da Nota Fiscal/Fatura Eletrônica deverá ocorrer no prazo de [definir o prazo para apresentação] dias, contado da data final do período de adimplemento da parcela da contratação a que aquela se referir, devendo estar acompanhada dos documentos mencionados no § 1º do art. 36 da Instrução Normativa nº 02/2008-SLTI/MP.

\r\n\r\n

A apresentação da Nota Fiscal/Fatura Eletrônica e dos demais documentos necessários ao atesto e pagamento deverão ocorrer sempre em conjunto e exclusivamente por meio de peticionamento eletrônico pela CONTRATADA no Sistema Eletrônico de Informações (SEI) da CONTRATANTE, utilizando a funcionalidade de Peticionamento de Processo Novo e o tipo de processo "Gestão de Contrato: Processo de Pagamento".

\r\n\r\n

Para que o peticionamento eletrônico seja possível é impreterível que o representante da CONTRATADA possua cadastro como Usuário Externo no SEI da CONTRATANTE liberado, sendo de sua responsabilidade realizar o referido cadastro, conforme suas normas próprias, acessando a opção "Clique aqui se você ainda não está cadastrado" na página de Acesso Externo do SEI disponibilizado no seguinte endereço: http://localhost/sei/controlador_externo.php?acao=usuario_externo_logar&id_orgao_acesso_externo=0

\r\n\r\n

​​Caso a CONTRATADA não tenha procedido ao mencionado cadastro para realizar o peticionamento eletrônico, não será possível a realização do atesto.

\r\n\r\n

A Nota Fiscal/Fatura Eletrônica, estando regular, será atestada em até 10 (dez) dias úteis, contados do dia útil seguinte à data de seu peticionamento eletrônico pela CONTRATADA.

\r\n\r\n

O pagamento será efetuado em até 10 (dez) dias úteis, contados do dia útil seguinte ao atesto da Nota Fiscal/Fatura Eletrônica.

\r\n\r\n

Para o devido atesto, será necessária a apresentação dos seguintes documentos:

\r\n\r\n

Nota Fiscal/Fatura Eletrônica, com respectivo DANFE e, se aplicável, o arquivo xml correspondente;

\r\n\r\n

O documento de cobrança deverá conter o número do respectivo Contrato, o período da prestação dos serviços, o detalhamento dos serviços executados e o detalhamento dos tributos previstos na legislação tributária federal, estadual e municipal.

\r\n\r\n

Comprovantes da regularidade fiscal e trabalhista, constatada por meio de consulta online ao Sistema de Cadastramento Unificado de Fornecedores (SICAF) e ao sistema do Tribunal Superior do Trabalho (TST), ou, na impossibilidade de acesso aos referidos Sistemas, mediante consulta aos sítios eletrônicos oficiais ou à documentação mencionada no art. 29 da Lei nº 8.666/1993;

\r\n\r\n

Observação (apagar): A alínea abaixo cabe somente em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Para comprovação do detalhamento dos serviços executados, conforme disposto no art. 73 da Lei nº 8.666/1993 (art. 35 da Instrução Normativa nº 02/2008-SLTI/MP), deverá ser apresentada documentação que comprove os pagamentos dos salários e demais verbas trabalhistas, bem como das contribuições previdenciárias e do FGTS, conforme solicitada pela CONTRATANTE.

\r\n\r\n

Havendo erro na apresentação da Nota Fiscal/Fatura Eletrônica ou dos documentos pertinentes à contratação, ou ainda, circunstância que impeça a liquidação da despesa, como por exemplo, obrigação financeira pendente, decorrente de penalidade imposta ou inadimplência, o pagamento ficará sobrestado até que a CONTRATADA providencie as medidas saneadoras. Nesta hipótese, o prazo para pagamento iniciar-se-á após a comprovação da regularização da situação, não acarretando qualquer ônus para a CONTRATANTE.

\r\n\r\n

Verificada a não manutenção das condições de habilitação pelo contratado, perante o SICAF e TST, sem prejuízo do pagamento, a CONTRATANTE notificará, por escrito, a CONTRATADA da ocorrência, para que, no prazo de 5 (cinco) dias úteis, contados do recebimento da notificação, promova a regularização ou apresente sua defesa, sob pena de rescisão do Contrato (Instrução Normativa nº 04/2013-SLTI/MP e Lei nº 12.440, de 11 de julho de 2011).

\r\n\r\n

A existência de registro no SICAF de aplicação de penalidade à empresa CONTRATADA por órgão da Administração Pública não obsta o pagamento.

\r\n\r\n

A Nota Fiscal/Fatura Eletrônica será obrigatoriamente atestada pelo Gestor e Agente Fiscalizador da CONTRATANTE, designados para acompanhar e fiscalizar os serviços, desde que os mesmos tenham sido executados a contento, sem o que não poderá ser feito o pagamento correspondente.

\r\n\r\n

Nenhum pagamento será efetuado à CONTRATADA antes de paga ou relevada a multa que lhe tenha sido aplicada.

\r\n\r\n

A CONTRATANTE pode deduzir do montante a pagar os valores correspondentes a multas ou indenizações devidas pela CONTRATADA, nos termos deste Contrato.

\r\n\r\n

Os documentos de cobrança deverão ser emitidos com o CNPJ indicado no preâmbulo do Contrato. Caso haja mudança do CNPJ, a CONTRATADA deverá solicitar sua alteração, com as devidas justificativas, apresentando a mesma documentação exigida na licitação para análise e aprovação. Após a análise, sendo aprovada a alteração, será formalizada por meio de Termo Aditivo ao Contrato Original.

\r\n\r\n

Caso o documento de cobrança apresente erro ou inconsistência, acarretará a devolução do referido documento, dentro do prazo estipulado para atesto, interrompendo-o quando da devolução, devendo a CONTRATADA encaminhar nova cobrança para o devido atesto.

\r\n\r\n

Sendo identificada cobrança indevida após o pagamento do documento de cobrança, a CONTRATANTE notificará à CONTRATADA para que seja feito o acerto no faturamento do mês subsequente, ou no caso do Contrato já encerrado o imediato reembolso do valor.

\r\n\r\n

Ocorrendo atraso no pagamento, haverá compensação financeira sobre o valor devido, desde que para tanto a CONTRATADA não tenha concorrido de alguma forma e que por essa seja requerida, serão calculados à taxa de 0,5% (meio por cento) ao mês, ou 6% (seis por cento) ao ano, mediante a aplicação da fórmula demonstrada a seguir, para o período compreendido entre a data prevista para o adimplemento da obrigação e a data do efetivo pagamento:

\r\n\r\n

I = (TX/100)/365

\r\n\r\n

EM = I x N x VP

\r\n\r\n

Onde:

\r\n\r\n

I = Índice de atualização financeira;

\r\n\r\n

TX = Percentual da taxa de juros de mora anual;

\r\n\r\n

EM = Encargos Moratórios;

\r\n\r\n

N = Número de dias entre a data prevista para o pagamento e a do efetivo pagamento;

\r\n\r\n

VP = Valor da Parcela em atraso.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a fazer o desconto nas faturas e a realizar os pagamentos dos salários e demais verbas trabalhistas diretamente aos trabalhadores, bem como das contribuições previdenciárias e do FGTS, quando estes não forem adimplidos, sem prejuízo das sanções cabíveis e a reter, a qualquer tempo, a garantia na forma prevista neste Contrato.

\r\n\r\n

Quando não for possível a realização dos pagamentos a que se refere o item anterior pela CONTRATANTE, esses valores retidos por precaução serão depositados junto à Justiça do Trabalho, com o objetivo de serem utilizados exclusivamente no pagamento de salários e das demais verbas trabalhistas, bem como das contribuições sociais e FGTS.

\r\n\r\n

Haverá o desconto na fatura a ser paga pela Agência, do valor global pago a título de vale-transporte em relação aos empregados que expressamente optaram por não receber o benefício (Orientação Normativa nº 03/2014-SLTI/MP).

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DA ALTERAÇÃO DO CONTRATO

\r\n\r\n

Este Contrato poderá ser alterado, nas hipóteses previstas no art. 65 da Lei nº 8.666/1993, desde que haja interesse do CONTRATANTE, com a apresentação das devidas justificativas.

\r\n\r\n

A CONTRATADA, em decorrência de aumento ou diminuição quantitativa do objeto licitado, e obedecendo-se as condições inicialmente previstas no Contrato, ficará obrigada a aceitar os acréscimos ou supressões que se fizerem necessários à execução dos serviços até o limite de 25% (vinte e cinco por cento) do valor inicial atualizado do Contrato.

\r\n\r\n

Fica facultada, entretanto, a supressão além do limite acima estabelecido, mediante consenso entre os contratantes.

\r\n\r\n

 

\r\n\r\n

Observação: A cláusula abaixo de repactuação somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra. Nas contratações de serviços ou fornecimento de bens com mais de um ano cabe reajuste por índice e não repactuação. Nas contratações com menos de um ano não cabe reajuste.

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DA REPACTUAÇÃO

\r\n\r\n

É admitida a repactuação deste Contrato, desde que seja observado o interregno mínimo de um ano, contado das datas dos orçamentos aos quais a proposta se referir, admitindo-se, como termo inicial, a data do acordo, convenção, dissídio coletivo de trabalho vigente à época da apresentação da proposta, e a data limite para a apresentação da proposta em relação aos demais insumos.

\r\n\r\n

A repactuação poderá ser dividida em tantas parcelas quanto forem necessárias em respeito ao princípio da anualidade do reajuste dos preços da contratação, podendo ser realizada em momentos distintos para discutir a variação de custos que tenham sua anualidade resultante em datas diferenciadas, tais como os custos decorrentes da mão de obra e os custos decorrentes dos insumos necessários à execução do serviço.

\r\n\r\n

Nas repactuações subsequentes à primeira, a anualidade será contada a partir da data do fato gerador que deu ensejo à última repactuação.

\r\n\r\n

As repactuações serão precedidas de solicitação da CONTRATADA, acompanhada de demonstração analítica da alteração dos custos, por meio de apresentação da planilha de custos e formação de preços e do novo acordo, convenção ou dissídio coletivo que fundamentam a repactuação, para a variação de custos relativos à mão de obra vinculada à data base da categoria.

\r\n\r\n

A solicitação da contratada de repactuação dos custos envolvendo insumos e materiais somente poderá ser deferida após o período de um ano, contado da data limite para a apresentação da proposta, utilizando-se, para tanto, o índice Nacional de Preços ao Consumidor Amplo (IPCA/IBGE) e aplicando-se a seguinte fórmula:

\r\n\r\n

R = V ( I - Iº)

\r\n\r\n

Onde:

\r\n\r\n

R = Valor do reajuste procurado;

\r\n\r\n

V = Valor constante da proposta;

\r\n\r\n

I = Índice relativo ao mês do reajustamento;

\r\n\r\n

Iº = Índice relativo ao mês da proposta.

\r\n\r\n

As repactuações de insumos e materiais, descritas no item anterior, subsequentes à primeira, serão efetuadas apenas quando se completarem períodos múltiplos de um ano, contados sempre da última repactuação de insumos e materiais.

\r\n\r\n

No caso de atraso ou não divulgação do índice de reajustamento, a CONTRATANTE pagará à CONTRATADA a importância calculada pela última variação conhecida, liquidando a diferença correspondente tão logo seja divulgado o índice definitivo. Fica a CONTRATADA obrigada a apresentar memória de cálculo referente ao reajustamento de preços do valor remanescente, sempre que este ocorrer.

\r\n\r\n

Nas aferições finais, o índice utilizado para a repactuação dos insumos diversos será, obrigatoriamente, o definitivo.

\r\n\r\n

Caso o índice estabelecido para a repactuação de insumos e materiais venha a ser extinto ou de qualquer forma não possa mais ser utilizado, será adotado, em substituição, o que vier a ser determinado pela legislação então em vigor.

\r\n\r\n

Na ausência de previsão legal quanto ao índice substituto, as partes elegerão novo índice oficial, para reajustamento do preço do valor remanescente dos insumos e materiais, por meio de termo aditivo.

\r\n\r\n

Independentemente do requerimento de repactuação dos custos com insumos e materiais, a CONTRATANTE verificará, a cada anualidade, se houve deflação do índice adotado que justifique o recálculo dos custos em valor menor com o objetivo de manter-se o equilíbrio econômico-financeiro da contratação e promoverá a redução dos valores correspondentes.

\r\n\r\n

As repactuações a que a CONTRATADA fizer jus e não forem solicitadas durante a vigência do Contrato serão objeto de preclusão com a assinatura da prorrogação contratual ou com o encerramento do Contrato.

\r\n\r\n

É vedada a inclusão, por ocasião da repactuação, de benefícios não previstos na proposta inicial, exceto quando se tornarem obrigatórios por força de instrumento legal, sentença normativa, acordo coletivo ou convenção coletiva.

\r\n\r\n

A repactuação será formalizada por meio de apostilamento, salvo quando coincidir com a prorrogação contratual, quando será formalizada por meio de Termo Aditivo ao Contrato vigente.

\r\n\r\n

As repactuações relativas aos custos de mão de obra vinculados à data base de cada categoria serão efetuadas somente com fundamento em Convenção, Acordo Coletivo de Trabalho, Sentença Normativa, ou por força de lei.

\r\n\r\n

A repactuação não interfere no direito das partes de solicitar, a qualquer momento, a manutenção do equilíbrio econômico dos contratos com base no disposto no art. 65 da Lei nº 8.666/1993.

\r\n\r\n

Para o reajuste do vale transporte deverá ser observado as seguintes condições (Orientação Normativa nº 02/2014-SLTI/MP):

\r\n\r\n

a majoração da tarifa de transporte público gera a possibilidade de repactuação do item relativo aos valores pagos a título de vale-transporte;

\r\n\r\n

o início da contagem do prazo de um ano para a primeira repactuação deve tomar como referência a data do orçamento a que a proposta se refere, qual seja, a data do último reajuste de tarifa de transporte público;

\r\n\r\n

os efeitos financeiros da repactuação contratual decorrente da majoração de tarifa de transporte público devem viger a partir da efetiva modificação do valor de tarifa de transporte público.

\r\n\r\n

CLÁUSULA DÉCIMA QUARTA – DAS PENALIDADES

\r\n\r\n

Com fundamento nos arts. 86 e 87 da Lei nº 8.666/1993, bem como no art. 7º da Lei nº 10.520/2002, a CONTRATADA, no curso da execução do Contrato, estará sujeita às seguintes penalidades, garantidos o contraditório e a prévia e ampla defesa:

\r\n\r\n

advertência, com fundamento no art. 87, inciso I, da Lei nº 8.666/1993;

\r\n\r\n

multa, com fundamento no art. 7º da Lei nº 10.520/2002 e art. 87, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

impedimento de licitar e contratar com a Administração Pública Federal e descredenciamento do SICAF pelo prazo de até 5 (cinco) anos, com fundamento no art. 7º da Lei nº 10.520/2002;

\r\n\r\n

suspensão temporária de participação em licitação e impedimento de contratar com a CONTRATANTE, por prazo não superior a 2 (dois) anos, com fundamento no art. 87, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

declaração de inidoneidade para licitar ou contratar com a Administração Pública, com fundamento no art. 87, inciso IV, da Lei nº 8.666/1993.

\r\n\r\n

As sanções previstas nas alíneas “a”, “c”, “d” e “e” do item anterior poderão ser aplicadas juntamente com a da alínea “b”, facultada a defesa prévia do interessado, no respectivo processo, no prazo de 5 (cinco) dias úteis, a contar da ciência da notificação, elevando-se o prazo para 10 (dez) dias úteis, no caso da penalidade prevista na alínea “e”.

\r\n\r\n

Os valores da multa pela ocorrência de atraso injustificado na execução do objeto, assim considerado pelo CONTRATANTE, hipótese em que responderá pela inexecução parcial ou total do Contrato, sem prejuízo da aplicação das demais penalidades e das responsabilidades civil e criminal, são:

\r\n\r\n

[digite aqui o percentual da multa] ao dia sobre o valor mensal do Contrato, limitada a incidência a [digite aqui o número de dias] dias;

\r\n\r\n

[digite aqui o percentual da multa] sobre o valor mensal do Contrato, em caso de atraso por período superior ao previsto na alínea anterior até [digite aqui o número de dias] dias, ou de inexecução parcial da obrigação assumida;

\r\n\r\n

[digite aqui o percentual da multa] sobre o valor mensal do Contrato, em caso de inexecução total da obrigação assumida, podendo ainda ocorrer a não aceitação do objeto, de forma a configurar, nesta hipótese, inexecução total da obrigação assumida, sem prejuízo da rescisão unilateral da avença.

\r\n\r\n

Na ocorrência do descumprimento das obrigações identificadas na Cláusula "Das Obrigações da Contratada" deste Contrato, sem prejuízo da aplicação das demais sanções, serão aplicadas as seguintes penalidades:

\r\n\r\n

advertência ou multa, de acordo com os graus atribuídos, conforme Tabela abaixo, que indicarão o respectivo percentual da penalidade:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Tabela 1 – Graus e Correspondência

\r\n
\r\n

Grau

\r\n
\r\n

Correspondência

\r\n
\r\n

01

\r\n
\r\n

Advertência

\r\n
\r\n

02

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

03

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

04

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

05

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

06

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n\r\n

Eventual desistência da CONTRATADA após sua expressa manifestação de interesse na prorrogação contratual ensejará a aplicação pela CONTRATANTE de multa de [digite aqui o percentual da multa] do valor global do Contrato, sem prejuízo das demais penalidades e responsabilidade civil pelos prejuízos causados ao interesse público.

\r\n\r\n

Em caso de reincidência específica na infração de grau 06, Tabela 1, a CONTRATADA estará sujeita à multa de [digite aqui o percentual da multa], ao dia, do valor mensal deste Contrato.

\r\n\r\n

Na hipótese de reincidência específica, pela segunda vez, nas infrações de graus 05 e 06 previstas na Tabela 1, restará caracterizada a inexecução parcial do Contrato e, em nova reincidência, inexecução total do Contrato, ensejando a rescisão unilateral da avença.

\r\n\r\n

O valor da multa aplicada deverá ser descontado por ocasião do pagamento a ser efetuado pela CONTRATANTE, ou recolhido via GRU, podendo ainda ser descontado da garantia oferecida ou cobrado judicialmente.

\r\n\r\n

As penalidades somente poderão ser relevadas nos casos para os quais a CONTRATADA não tenha, de qualquer forma, concorrido ou dado causa, devidamente comprovados por escrito e aceitos pelo CONTRATANTE.

\r\n\r\n

A aplicação das sanções previstas neste Contrato não afeta os processos de responsabilização e aplicação de penalidades decorrentes de atos ilícitos alcançados pela Lei nº 12.846, de 1º de agosto de 2013.

\r\n\r\n

CLÁUSULA DÉCIMA QUINTA – DA RESCISÃO

\r\n\r\n

A inexecução total ou parcial do Contrato enseja a sua rescisão, se houver uma das ocorrências prescritas no art. 78 da Lei nº 8.666/1993.

\r\n\r\n

Os procedimentos de rescisão contratual, tanto os amigáveis, como os determinados por ato unilateral da CONTRATANTE, serão formalmente motivados, asseguradas, à CONTRATADA, na segunda hipótese, a produção de contraditório e a dedução de ampla defesa, mediante prévia e comprovada intimação da intenção da CONTRATANTE para que, se o desejar, a CONTRATADA apresente defesa no prazo de 5 (cinco) dias úteis contados de seu recebimento e, em hipótese de desacolhimento da defesa, interponha recurso hierárquico no prazo de 5 (cinco) dias úteis contados da intimação da decisão rescisória.

\r\n\r\n

Quanto à sua forma a rescisão poderá ser:

\r\n\r\n

por ato unilateral e escrito da Administração, nos casos enumerados nos incisos I a XII e XVII do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

amigável, por acordo entre as partes, reduzidas a termo no processo da licitação, desde que haja conveniência para a Administração.

\r\n\r\n

judicial, nos termos da legislação.

\r\n\r\n

Observação: Os dois itens abaixo somente cabem em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Em conformidade com o disposto no art. 34, § 4º, da Instrução Normativa nº 2/2008-SLTI/MP, o descumprimento total ou parcial das responsabilidades assumidas pela contratada, sobretudo quanto às obrigações e encargos sociais e trabalhistas, ensejará a aplicação de sanções administrativas, previstas no instrumento convocatório e na legislação vigente, podendo culminar em rescisão contratual, conforme disposto nos arts. 77 e 87 da Lei nº 8.666/1993.

\r\n\r\n

Quando da rescisão contratual, a fiscalização do Contrato verificará o pagamento pela CONTRATADA das verbas rescisórias ou a comprovação de que os empregados serão realocados em outra atividade de prestação de serviços, sem que ocorra a interrupção do Contrato de trabalho.

\r\n\r\n

 

\r\n\r\n

Observação: A cláusula abaixo somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

CLÁUSULA DÉCIMA SEXTA – DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTA

\r\n\r\n

Os valores para o pagamento das férias, 13º salário e rescisão contratual dos trabalhadores da contratada serão depositados pela Administração em conta vinculada específica, conforme o disposto no art. 19-A e Anexo VII da Instrução Normativa nº 02/2008-SLTI/MP, bem como nesta Cláusula, somente sendo liberados para o pagamento das verbas relativas à citada Conta.

\r\n\r\n

CLÁUSULA DÉCIMA SÉTIMA – DA FUNDAMENTAÇÃO LEGAL E DA VINCULAÇÃO AO EDITAL E À PROPOSTA

\r\n\r\n

O presente Contrato fundamenta-se:

\r\n\r\n

na Lei nº 8.666/1993;

\r\n\r\n

na Lei nº 10.520/2002 e no Decreto nº 5.450/2005;

\r\n\r\n

na Lei nº 8.078/1990 – Código de Defesa do Consumidor, no que couber;

\r\n\r\n

demais normativos legais atinentes ao tema.

\r\n\r\n

O presente Contrato vincula-se aos termos:

\r\n\r\n

do Edital do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico] e seus anexos;

\r\n\r\n

da proposta homologada da CONTRATADA.

\r\n\r\n

CLÁUSULA DÉCIMA OITAVA – DA PUBLICAÇÃO

\r\n\r\n

A publicação do presente Contrato deverá ser providenciada, em extrato no Diário Oficial da União, até o 5º (quinto) dia útil do mês seguinte ao de sua assinatura, para ocorrer no prazo máximo de até 20 (vinte) dias, na forma prevista no parágrafo único do art. 61 da Lei nº 8.666/1993.

\r\n\r\n

CLÁUSULA DÉCIMA NONA – DO FORO

\r\n\r\n

Fica eleito o foro da Seção Judiciária da Justiça Federal de [digite aqui a cidade/Estado da subseção judiciária] para dirimir quaisquer questões oriundas do presente Contrato, com exclusão de qualquer outro.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Contrato é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(487,71,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(488,71,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(489,72,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(490,72,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(491,72,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(492,72,'Corpo do Texto','

OBJETIVO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no no art. 15, inciso II, da IN 02/2008-SLTI/MP.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

OBJETO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15, inciso III, da IN 02/2008-SLTI/MP.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

JUSTIFICATIVA DA NECESSIDADE DA CONTRATAÇÃO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15 da IN 02/2008-SLTI/MP.

\r\n\r\n

MOTIVAÇÃO DA CONTRATAÇÃO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

BENEFÍCIOS DIRETOS E INDIRETOS QUE RESULTARÃO DA CONTRATAÇÃO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

CONEXÃO ENTRE A CONTRATAÇÃO E O PLANEJAMENTO EXISTENTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

JUSTIFICATIVA PARA O AGRUPAMENTO DE ITENS EM GRUPOS

\r\n\r\n

Observação (apagar): Esta seção somente deve existir se houver necessidade de agrupar os itens da contratação.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

CRITÉRIOS AMBIENTAIS ADOTADOS (SUSTENTABILIDADE)

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DESCRIÇÃO DETALHADA DO OBJETO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15, inciso IV, da IN 02/2008-SLTI/MP.

\r\n\r\n

DETALHAMENTO DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DETALHAMENTO DA METODOLOGIA DE EXECUÇÃO/ENTREGAS

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DISPONIBILIDADE ORÇAMENTÁRIA

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no art. 30, inciso IV do Decreto nº 5.450/2005.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição do Objeto

\r\n
\r\n

Valor (R$)

\r\n
\r\n

UGR

\r\n
\r\n

Fonte (Programa/Ação)

\r\n
\r\n

Natureza da Despesa

\r\n
\r\n

ID

\r\n
\r\n

Unitário

\r\n
\r\n

Total

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Global

\r\n
\r\n

 

\r\n
\r\n

----

\r\n
\r\n\r\n

 

\r\n\r\n

RECEBIMENTO DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

ENQUADRAMENTO DO OBJETO COMO COMUM

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no art. 2º do Decreto nº 5.450/2005.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

UNIDADE DE MEDIDA DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

VALOR ESTIMADO DA CONTRATAÇÃO (REFERENCIAL)

\r\n\r\n

Digite aqui o texto...

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição do Item (Objeto)

\r\n
\r\n

CATMAT/CATSER

\r\n
\r\n

Quantidade

\r\n
\r\n

Unidade de Medida

\r\n
\r\n

Valor (R$)

\r\n
\r\n

Unitário

\r\n
\r\n

Total

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Global

\r\n
\r\n

 

\r\n
\r\n\r\n

O detalhamento da pesquisa de preços encontra-se no Informe [digite aqui a identificação do Informe de pesquisa de preço] (SEI nº #######), que fará parte do processo licitatório.

\r\n\r\n

VIGÊNCIA CONTRATUAL

\r\n\r\n

Observação (apagar): Esta seção deverá ser preenchida para todas as contratações que não tenham entrega imediata.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

OBRIGAÇÕES DA CONTRATADA

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Obrigações Gerais

\r\n
\r\n

Grau de Penalidade em Caso de Descumprimento

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n\r\n

 

\r\n\r\n

OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

SANÇÕES ADMINISTRATIVAS (PENALIDADES)

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

GESTÃO E FISCALIZAÇÃO CONTRATUAL

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

LIQUIDAÇÃO E PAGAMENTOS À CONTRATADA

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

QUALIFICAÇÕES

\r\n\r\n

A qualificação dos proponentes deve ser realizada de acordo com o estabelecido no art. 27 da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

DA GARANTIA CONTRATUAL

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

SIGILO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

RESCISÃO CONTRATUAL

\r\n\r\n

A inexecução total ou parcial do contrato enseja a sua rescisão, se houver uma das ocorrências prescritas no art. 78 da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

ALTERAÇÕES CONTRATUAIS

\r\n\r\n

Aceitar nas mesmas condições contratuais os acréscimos ou supressões que se fizerem no objeto do presente contrato, até 25% (vinte e cinco por cento) de seu valor inicial atualizado.

\r\n\r\n

DISPOSIÇÕES GERAIS

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

ANEXOS

\r\n\r\n

ANEXO I - Modelo de Planilha de Custos e Formação de Preços (SEI nº #######).

\r\n\r\n

ANEXO II - Modelo de Termo de Recebimento Provisório (SEI nº #######) - Observação (apagar): é obrigatório quando envolver fornecimento de bens.

\r\n\r\n

ANEXO III - Modelo de Termo de Recebimento Definitivo (SEI nº #######) - Observação (apagar): é obrigatório quando envolver fornecimento de bens.

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

 

\r\n\r\n

Observação (apagar): Caso a autoridade responsável pela Aprovação ultrapassar a maior unidade entre os assinantes abaixo, geralmente por causa de critério de valor da contratação, o ato da Aprovação da conveniência e oportunidade deve ser formalizado em documento próprio.

\r\n\r\n

O presente documento segue assinado pelo servidor Elaborador, pela autoridade Requisitante e pela autoridade responsável pela Aprovação da conveniência e oportunidade, com fulcro no art. 9º, inciso II, do Decreto nº 5.450/2005 e art. 15 da IN nº 02/2008-SLTI/MPOG, cujos fundamentos passam a integrar a presente decisão por força do art. 50, § 1º, da Lei nº 9.784/1999.

\r\n',30,'N','N','S','N','N','N','S','S'),(493,72,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(494,72,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(496,73,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(497,73,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(498,73,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(499,73,'Corpo do Texto','

IDENTIFICAÇÃO DA ÁREA REQUISITANTE DA SOLUÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Unidade:

\r\n
\r\n

@hierarquia_unidade_invertida@

\r\n
\r\n

Nome do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Fonte de Recursos:

\r\n
\r\n

UGR nº XXXXX, Projeto/Atividade nº XXXXX

\r\n
\r\n

Responsável pela Demanda:

\r\n
\r\n

 

\r\n
\r\n

E-mail:

\r\n
\r\n

 

\r\n
\r\n

Telefone:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

INDICAÇÃO DO INTEGRANTE REQUISITANTE

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Integrante Requisitante:

\r\n
\r\n

 

\r\n
\r\n

E-mail:

\r\n
\r\n

 

\r\n
\r\n

Telefone:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

ALINHAMENTO ESTRATÉGICO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

OBJETIVO ESTRATÉGICO DO REQUISITANTE

\r\n
\r\n

Id

\r\n
\r\n

NECESSIDADES ELENCADAS NO PDTI

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

MOTIVAÇÃO

\r\n\r\n

Digite aqui o texto de explicitação da motivação e demonstrativo de resultados a serem alcançados com a contratação.

\r\n\r\n

Digite aqui o texto de explicitação da motivação e demonstrativo de resultados a serem alcançados com a contratação.

\r\n\r\n

Digite aqui o texto de explicitação da motivação e demonstrativo de resultados a serem alcançados com a contratação.

\r\n\r\n

 

\r\n\r\n

METAS DO PLANEJAMENTO ESTRATÉGICO A SEREM ALCANÇADAS

\r\n\r\n

Digite aqui o texto dos resultados a serem alcançados com a contratação.

\r\n\r\n

Digite aqui o texto dos resultados a serem alcançados com a contratação.

\r\n\r\n

Digite aqui o texto dos resultados a serem alcançados com a contratação.

\r\n\r\n

 

\r\n\r\n

Em conformidade com o art. 11, caput, da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, encaminha-se o presente @serie@ à Área de Tecnologia da Informação da @sigla_orgao_origem@ para as providências cabíveis.

\r\n\r\n

O presente documento segue assinado pelo Responsável pela Demanda identificado na seção 1 acima.

\r\n',30,'N','N','S','N','N','N','S','S'),(500,73,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(501,73,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(502,74,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(503,74,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(504,74,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(505,74,'Corpo do Texto','

IDENTIFICAÇÃO DA ÁREA DE TECNOLOGIA DA INFORMAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Integrante Técnico:

\r\n
\r\n

 

\r\n
\r\n

E-mail:

\r\n
\r\n

 

\r\n
\r\n

Telefone:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

AVALIAÇÃO DO ALINHAMENTO DA CONTRATAÇÃO AO PDTI

\r\n\r\n

Em conformidade com o art. 11, § 1º, da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, a área de Tecnologia da Informação da @sigla_orgao_origem@ opina pela regularidade do alinhamento da contratação objeto do Documento de Oficialização da Demanda (SEI nº xxxxxxx) ao PDTI aprovado por meio da Portaria nº ___, de ___ de __________ de _____.

\r\n\r\n

 

\r\n\r\n

Com isso, indica-se o Integrante Técnico acima identificado para compor a Equipe de Planejamento da Contratação a ser instituída pela autoridade competente da Área Administrativa, em cumprimento ao disposto no § 2º do art. 11 da Instrução Normativa nº 4, de 11 de setembro de 2014.

\r\n\r\n

Encaminha-se o presente processo à Área Administrativa competente para as providências cabíveis.

\r\n',30,'N','N','S','N','N','N','S','S'),(506,74,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(507,74,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(508,75,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(509,75,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(510,75,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(511,75,'Corpo do Texto','

​DECISÃO SOBRE O PROSSEGUIMENTO DA CONTRATAÇÃO

\r\n\r\n

Em cumprimento ao disposto no inciso I do § 2º do art. 11 da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, e:

\r\n\r\n

considerando a avaliação realizada pela Área de Tecnologia da Informação no documento de Indicação de Integrante Técnico (SEI nº xxxxxxx), relativa ao Documento de Oficialização da Demanda (SEI nº xxxxxxx);

\r\n\r\n

APROVO o prosseguimento da presente contratação, em razão de sua relevância e oportunidade em relação aos objetivos estratégicos deste Órgão e as necessidades da Área Requisitante.

\r\n\r\n

 

\r\n\r\n

IDENTIFICAÇÃO DA ÁREA ADMINISTRATIVA​

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Integrante Administrativo:

\r\n
\r\n

 

\r\n
\r\n

E-mail:

\r\n
\r\n

 

\r\n
\r\n

Telefone:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

INSTITUIÇÃO DA EQUIPE DE PLANEJAMENTO DA CONTRATAÇÃO

\r\n\r\n

Em conformidade com o inciso III do § 2º do art. 11 da supramencionada Instrução Normativa, institui-se a Equipe de Planejamento da Contratação, composta pelos seguintes membros:

\r\n\r\n

Integrante Requisitante: [Digite aqui o nome completo do servidor], conforme documento SEI nº xxxxxxx.

\r\n\r\n

Integrante Técnico: [Digite aqui o nome completo do servidor], conforme documento SEI nº xxxxxxx.

\r\n\r\n

Integrante Administrativo: [Digite aqui o nome completo do servidor], conforme identificado acima.

\r\n',30,'N','N','S','N','N','N','S','S'),(512,75,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(513,75,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(514,76,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(515,76,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(516,76,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(517,76,'Corpo do Texto','

DESCRIÇÃO DA SOLUÇÃO DE TECNOLOGIA DA INFORMAÇÃO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

 

\r\n\r\n

DEFINIÇÃO E ESPECIFICAÇÃO DE REQUISITOS

\r\n\r\n

Necessidades de Negócio

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Necessidade 1:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Necessidade 2:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Necessidade 3:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Necessidade 4:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Necessidade 5:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Funcionalidade

\r\n
\r\n

Id

\r\n
\r\n

Envolvidos

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

Requisitos Tecnológicos

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Tipo

\r\n
\r\n

Requisito

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

Demais Requisitos

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Tipo

\r\n
\r\n

Requisito

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

LEVANTAMENTO DAS ALTERNATIVAS

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Solução 1

\r\n
\r\n

Nome da Solução:

\r\n
\r\n

 

\r\n
\r\n

Entidade:

\r\n
\r\n

 

\r\n
\r\n

Valor Estimado:

\r\n
\r\n

 

\r\n
\r\n

Descrição:

\r\n
\r\n

 

\r\n
\r\n

Fornecedor:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Solução 2

\r\n
\r\n

Nome da Solução:

\r\n
\r\n

 

\r\n
\r\n

Entidade:

\r\n
\r\n

 

\r\n
\r\n

Valor Estimado:

\r\n
\r\n

 

\r\n
\r\n

Descrição:

\r\n
\r\n

 

\r\n
\r\n

Fornecedor:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Solução 3

\r\n
\r\n

Nome da Solução:

\r\n
\r\n

 

\r\n
\r\n

Entidade:

\r\n
\r\n

 

\r\n
\r\n

Valor Estimado:

\r\n
\r\n

 

\r\n
\r\n

Descrição:

\r\n
\r\n

 

\r\n
\r\n

Fornecedor:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

ANÁLISE DAS ALTERNATIVAS EXISTENTES

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Requisito

\r\n
\r\n

Id da Solução

\r\n
\r\n

Sim

\r\n
\r\n

Não

\r\n
\r\n

Não se Aplica

\r\n
\r\n

A Solução encontra-se implantada em outro órgão ou entidade da Administração Pública Federal?

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

A Solução está disponível no Portal do Software Público Brasileiro?

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

A Solução é um software livre ou software público?

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

A Solução é aderente às políticas, premissas e especificações técnicas definidas pelos Padrões e-PING, e-MAG?

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

A Solução é aderente às regulamentações da ICP-Brasil? (quando houver necessidade de certificação digital)

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

A Solução é aderente às orientações, premissas e especificações técnicas e funcionais do e-ARQ Brasil? (quando o objetivo da solução abranger documentos arquivísticos)

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

JUSTIFICATIVA DA SOLUÇÃO ESCOLHIDA

\r\n\r\n

Solução Escolhida

\r\n\r\n

Descrição

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

​Digite aqui o texto... .... .

\r\n\r\n

Bens e Serviços que Compõem a Solução

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Bens/Serviços

\r\n
\r\n

Valor Estimado

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Total:

\r\n
\r\n

 

\r\n
\r\n\r\n

Benefícios Esperados

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Benefício

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

NECESSIDADES DE ADEQUAÇÃO DO AMBIENTE PARA EXECUÇÃO CONTRATUAL

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Tipo de Necessidade

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

RECURSOS NECESSÁRIOS À CONTINUIDADE DO NEGÓCIO DURANTE E APÓS A EXECUÇÃO DO CONTRATO

\r\n\r\n

Recursos Materiais

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Recurso 1:

\r\n
\r\n

 

\r\n
\r\n

Quantidade:

\r\n
\r\n

 

\r\n
\r\n

Disponibilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação para Obtenção do Recurso

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Recurso 2:

\r\n
\r\n

 

\r\n
\r\n

Quantidade:

\r\n
\r\n

 

\r\n
\r\n

Disponibilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação para Obtenção do Recurso

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

Recursos Humanos

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Função

\r\n
\r\n

Formação

\r\n
\r\n

Atribuições

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

ESTRATÉGIA DE CONTINUIDADE CONTRATUAL

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Evento

\r\n
\r\n

Ação de Contingência

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

DECLARAÇÃO DE VIABILIDADE DA CONTRATAÇÃO

\r\n\r\n

Assim, diante do exposto acima, entendemos ser VIÁVEL a contratação da solução demandada.

\r\n\r\n

 

\r\n\r\n

Em cumprimento ao disposto no art. 12 da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, o presente documento segue assinado pelos Integrantes Requisitante e Técnico da Equipe de Planejamento da Contratação, designada pelo documento de Instituição da Equipe de Planej. da Contratação (SEI nº xxxxxxx).

\r\n',30,'N','N','S','N','N','N','S','S'),(518,76,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(519,76,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(520,77,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(521,77,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(522,77,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(523,77,'Corpo do Texto','

RISCOS DO PROCESSO DE CONTRATAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Risco 1

\r\n
\r\n

Risco:

\r\n
\r\n

 

\r\n
\r\n

Probabilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Dano

\r\n
\r\n

Impacto

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação Preventiva

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação de Contingência

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Risco 2

\r\n
\r\n

Risco:

\r\n
\r\n

 

\r\n
\r\n

Probabilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Dano

\r\n
\r\n

Impacto

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação Preventiva

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação de Contingência

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

RISCOS DA SOLUÇÃO DE TECNOLOGIA DA INFORMAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Risco 1

\r\n
\r\n

Risco:

\r\n
\r\n

 

\r\n
\r\n

Probabilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Dano

\r\n
\r\n

Impacto

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação Preventiva

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação de Contingência

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Risco 2

\r\n
\r\n

Risco:

\r\n
\r\n

 

\r\n
\r\n

Probabilidade:

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Dano

\r\n
\r\n

Impacto

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação Preventiva

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Id

\r\n
\r\n

Ação de Contingência

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

Em cumprimento ao disposto no art. 13 da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, o presente documento segue aprovado e assinado pelos Integrantes da Equipe de Planejamento da Contratação, designada pelo documento de Instituição da Equipe de Planej. da Contratação (SEI nº xxxxxxx).

\r\n',30,'N','N','S','N','N','N','S','S'),(524,77,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(525,77,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(526,70,'Anexos','

ANEXOS AO @serie@

\r\n\r\n

[Incluir o texto de cada anexo que precisar constar diretamente no teor do @serie@]

\r\n',50,'N','N','N','N','N','N','S','S'),(533,79,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(534,79,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(535,79,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(536,79,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Área Requisitante da Solução:

\r\n
\r\n

 

\r\n
\r\n

Nome do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Sigla:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

CNPJ:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

VISÃO GERAL DO PROJETO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Justificativa da Contratação

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Objetivos da Contratação

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

METODOLOGIA DE TRABALHO

\r\n\r\n

Forma de Comunicação

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Forma de Encaminhamento das Ordens de Serviço ou de Fornecimento de Bens

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Modelo de Execução do Contrato

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

EXECUÇÃO DO CONTRATO

\r\n\r\n

Ferramentas de Controle

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Ferramenta

\r\n
\r\n

Controles

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n\r\n

Documentação Mínima Exigida

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Documento

\r\n
\r\n

Finalidade do Documento

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Papéis e Responsabilidades

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Papel

\r\n
\r\n

Responsabilidades

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n\r\n

Partes Interessadas

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Área/Órgão/Setor

\r\n
\r\n

Impacto

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Fatores Críticos de Sucesso

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Premissas da Contratação

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Restrições da Contratação

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Entregas Planejadas

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Entrega

\r\n
\r\n

Marco

\r\n
\r\n

Duração

\r\n
\r\n

Data de Entrega

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Infraestrutura a ser Disponibilizada à Contratada

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Recurso

\r\n
\r\n

Início

\r\n
\r\n

Fim

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Critério de Aceitação (Métrica e Periodicidade)

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Indicador de Qualidade

\r\n
\r\n

Métrica

\r\n
\r\n

Periodicidade Aferição

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Critério de Aceitação (Níveis de serviços e Sanção Aplicável)

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Indicador de Qualidade

\r\n
\r\n

Mínimo Aceitável

\r\n
\r\n

Sanção

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Resultados Esperados

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

Entrega

\r\n
\r\n

Benefícios

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

INSTRUÇÕES COMPLEMENTARES

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

Em cumprimento ao disposto no inciso I do art. 32 da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, o presente @serie@ segue assinado pelo Gestor do Contrato e pelos Fiscais Técnico, Administrativo e Requisitante do Contrato.

\r\n\r\n

O presente @serie@ foi devidamente entregue à CONTRATADA, fato este comprovado mediante a assinatura eletrônica de seu representante legal neste documento ou certificado em documento próprio no presente processo.

\r\n',30,'N','N','S','N','N','N','S','S'),(537,79,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(538,79,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(539,80,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(540,80,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(541,80,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(542,80,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Área Requisitante da Solução:

\r\n
\r\n

 

\r\n
\r\n

Nome do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Sigla:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

CNPJ:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

VISÃO GERAL DO PROJETO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

VIGÊNCIA DO CONTRATO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

VALOR DO CONTRATO E FORMA DE PAGAMENTO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

RELAÇÃO DE DOCUMENTOS

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

RECURSOS TÉCNICOS

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

RECURSOS HUMANOS

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

FORMA DE COMUNICAÇÃO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

CRONOGRAMA DE EXECUÇÃO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

FERRAMENTAS E CONTROLES

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

VALIDAÇÃO DOS RESULTADOS E DA NOTA FISCAL

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

OBRIGAÇÕES DA CONTRATADA

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

SANÇÕES E GLOSAS

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

SANÇÕES ADMINISTRATIVAS E GARANTIA DO CONTRATO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

LISTAS DE VERIFICAÇÃO

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

INSTRUÇÕES COMPLEMENTARES

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

Digite aqui o texto... ....

\r\n\r\n

 

\r\n\r\n

Em cumprimento ao disposto no inciso II do art. 32 da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, o presente @serie@ segue assinado pelo Gestor do Contrato e pelos Fiscais Técnico, Administrativo e Requisitante do Contrato.

\r\n\r\n

O presente @serie@ foi devidamente entregue à CONTRATADA, fato este comprovado mediante a assinatura eletrônica de seu representante legal neste documento ou certificado em documento próprio no presente processo.

\r\n',30,'N','N','S','N','N','N','S','S'),(543,80,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(544,80,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(545,81,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(546,81,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@/@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(547,81,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(548,81,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nº da OS / OFB:

\r\n
\r\n

 

\r\n
\r\n

Data de Emissão:

\r\n
\r\n

 

\r\n
\r\n

Emergencial:

\r\n
\r\n

(   )

\r\n
\r\n

 Sim

\r\n
\r\n

(   )

\r\n
\r\n

 Não

\r\n
\r\n

Área Requisitante da Solução:

\r\n
\r\n

 

\r\n
\r\n

Nome do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Sigla:

\r\n
\r\n

 

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

especificação dos produtos / Serviços e volumes

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

PRODUTO / SERVIÇO

\r\n
\r\n

MÉTRICA

\r\n
\r\n

QUANTIDADE

\r\n
\r\n

PREÇO

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

TOTAL:

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

INSTRUÇÕES COMPLEMENTARES

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

 

\r\n\r\n

CRONOGRAMA

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Id

\r\n
\r\n

TAREFA

\r\n
\r\n

INÍCIO

\r\n
\r\n

FIM

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

DOCUMENTOS ENTREGUES

\r\n\r\n

Digite aqui o texto... .... . [SE HOUVER... apagar esta seção caso não seja entregue documentos]

\r\n\r\n

Digite aqui o texto... .... . [SE HOUVER... apagar esta seção caso não seja entregue documentos]

\r\n\r\n

 

\r\n\r\n

DATAS E PRAZOS

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Data Prevista para Início dos Produtos/Serviços:

\r\n
\r\n

 

\r\n
\r\n

Data Prevista para Entrega dos Produtos/Serviços:

\r\n
\r\n

 

\r\n
\r\n

Prazo Total do Contrato (com a garantia):

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

O presente documento segue assinado pelo Fiscal Requisitante da Solução, Gestor do Contrato e Preposto da Contratada.

\r\n',30,'N','N','S','N','N','N','S','S'),(549,81,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(550,81,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(551,82,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(552,82,'Título do Documento','Termo de Compromisso de Manutenção de Sigilo em Contrato',10,'S','N','N','S','N','N','N','S'),(553,82,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(554,82,'Corpo do Texto','

A @descricao_orgao_maiusculas@, sediada em @endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@, CNPJ nº @cnpj_orgao@, doravante denominada CONTRATANTE, e, de outro lado, a [NOME DA EMPRESA], sediada em [ENDEREÇO], CNPJ nº [CNPJ], doravante denominada CONTRATADA;

\r\n\r\n

CONSIDERANDO que, em razão do CONTRATO Nº [XX/AAAA], doravante denominado CONTRATO PRINCIPAL, a CONTRATADA poderá ter acesso a informações sigilosas da CONTRATANTE;

\r\n\r\n

CONSIDERANDO a necessidade de ajustar as condições de revelação destas informações sigilosas, bem como definir as regras para o seu uso e proteção;

\r\n\r\n

CONSIDERANDO o disposto na Política de Segurança da Informação da CONTRATANTE;

\r\n\r\n

Resolvem celebrar o presente @serie@, doravante TERMO, vinculado ao CONTRATO PRINCIPAL, mediante as seguintes cláusulas e condições:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

Constitui objeto deste TERMO o estabelecimento de condições específicas para regulamentar as obrigações a serem observadas pela CONTRATADA, no que diz respeito ao trato de informações sigilosas, disponibilizadas pela CONTRATANTE, por força dos procedimentos necessários para a execução do objeto do CONTRATO PRINCIPAL celebrado entre as partes e em acordo com o que dispõem a Lei nº 12.527, de 18 de novembro de 2011, o Decreto nº 7.724, de 16 de maio de 2012, e Decreto nº 7.845, de 14 de novembro de 2012, que regulamentam os procedimentos para acesso e tratamento de informação classificada em qualquer grau de sigilo.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA SEGUNDA – DOS CONCEITOS E DEFINIÇÕES

\r\n\r\n

Para os efeitos deste TERMO, são estabelecidos os seguintes conceitos e definições:

\r\n\r\n

Informação: dados, processados ou não, que podem ser utilizados para produção e transmissão de conhecimento, contidos em qualquer meio, suporte ou formato.

\r\n\r\n

Informação Sigilosa: aquela submetida temporariamente à restrição de acesso público em razão de hipótese legal de sigilo, subdividida em:

\r\n\r\n

Classificada: em razão de sua imprescindibilidade para a segurança da sociedade e do Estado, à qual é atribuído grau de sigilo reservado, secreto ou ultrassecreto, conforme estabelecido pela Lei nº 12.527, de 18 de novembro de 2011, e pelo Decreto nº 7.845, de 14 de novembro de 2012; e

\r\n\r\n

Não Classificada: informações pessoais e aquelas não imprescindíveis para a segurança da sociedade e do Estado abrangidas pelas demais hipóteses legais de sigilo.

\r\n\r\n

Contrato Principal: contrato celebrado entre as partes, ao qual este TERMO se vincula.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA TERCEIRA – DA INFORMAÇÃO SIGILOSA

\r\n\r\n

Serão consideradas como informação sigilosa, toda e qualquer informação classificada ou não nos graus de sigilo ultrassecreto, secreto e reservado. O TERMO abrangerá toda informação escrita, verbal, ou em linguagem computacional em qualquer nível, ou de qualquer outro modo apresentada, tangível ou intangível, podendo incluir, mas não se limitando a: know-how, técnicas, especificações, relatórios, compilações, código fonte de programas de computador na íntegra ou em partes, fórmulas, desenhos, cópias, modelos, amostras de ideias, aspectos financeiros e econômicos, definições, informações sobre as atividades da CONTRATANTE e/ou quaisquer informações técnicas/comerciais relacionadas/resultantes ou não ao CONTRATO PRINCIPAL, doravante denominados INFORMAÇÕES, a que diretamente ou pelos seus empregados, a CONTRATADA venha a ter acesso, conhecimento ou que venha a lhe ser confiada durante e em razão das atuações de execução do CONTRATO PRINCIPAL celebrado entre as partes.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA QUARTA – DOS LIMITES DO SIGILO

\r\n\r\n

As obrigações constantes deste TERMO não serão aplicadas às INFORMAÇÕES que:

\r\n\r\n

sejam comprovadamente de domínio público no momento da revelação, exceto se tal fato decorrer de ato ou omissão da CONTRATADA;

\r\n\r\n

tenham sido comprovadas e legitimamente recebidas de terceiros, estranhos ao presente TERMO; e

\r\n\r\n

sejam reveladas em razão de requisição judicial ou outra determinação válida do Governo, somente até a extensão de tais ordens, desde que as partes cumpram qualquer medida de proteção pertinente e tenham sido notificadas sobre a existência de tal ordem, previamente e por escrito, dando a esta, na medida do possível, tempo hábil para pleitear medidas de proteção que julgar cabíveis.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA QUINTA – DOS DIREITOS E OBRIGAÇÕES

\r\n\r\n

As partes se comprometem a não revelar, copiar, transmitir, reproduzir, utilizar, transportar ou dar conhecimento, em hipótese alguma, a terceiros, bem como a não permitir que qualquer empregado envolvido direta ou indiretamente na execução do CONTRATO PRINCIPAL, em qualquer nível hierárquico de sua estrutura organizacional e sob quaisquer alegações, faça uso dessas INFORMAÇÕES, que se restringem estritamente ao cumprimento do CONTRATO PRINCIPAL.

\r\n\r\n

A CONTRATADA se compromete a não efetuar qualquer tipo de cópia da informação sigilosa sem o consentimento expresso e prévio da CONTRATANTE.

\r\n\r\n

A CONTRATADA compromete-se a dar ciência e obter o aceite formal da direção e empregados que atuarão direta ou indiretamente na execução do CONTRATO PRINCIPAL sobre a existência deste TERMO bem como da natureza sigilosa das informações.

\r\n\r\n

A CONTRATADA deverá firmar acordos por escrito com seus empregados visando garantir o cumprimento de todas as disposições do presente TERMO e dará ciência à CONTRATANTE dos documentos comprobatórios.

\r\n\r\n

A CONTRATADA obriga-se a tomar todas as medidas necessárias à proteção da informação sigilosa da CONTRATANTE, bem como evitar e prevenir a revelação a terceiros, exceto se devidamente autorizado por escrito pela CONTRATANTE.

\r\n\r\n

Cada parte permanecerá como fiel depositária das informações reveladas à outra parte em função deste TERMO.

\r\n\r\n

Quando requeridas, as INFORMAÇÕES deverão retornar imediatamente ao proprietário, bem como todas e quaisquer cópias eventualmente existentes.

\r\n\r\n

A CONTRATADA obriga-se por si, sua controladora, suas controladas, coligadas, representantes, procuradores, sócios, acionistas e cotistas, por terceiros eventualmente consultados, seus empregados, contratados e subcontratados, assim como por quaisquer outras pessoas vinculadas à CONTRATADA, direta ou indiretamente, a manter sigilo, bem como a limitar a utilização das informações disponibilizadas em face da execução do CONTRATO PRINCIPAL.

\r\n\r\n

A CONTRATADA, na forma disposta no parágrafo primeiro, acima, também se obriga a:

\r\n\r\n

Não discutir perante terceiros, usar, divulgar, revelar, ceder a qualquer título ou dispor das INFORMAÇÕES, no território brasileiro ou no exterior, para nenhuma pessoa, física ou jurídica, e para nenhuma outra finalidade que não seja exclusivamente relacionada ao objetivo aqui referido, cumprindo-lhe adotar cautelas e precauções adequadas no sentido de impedir o uso indevido por qualquer pessoa que, por qualquer razão, tenha acesso a elas;

\r\n\r\n

Responsabilizar-se por impedir, por qualquer meio em direito admitido, arcando com todos os custos do impedimento, mesmo judiciais, inclusive as despesas processuais e outras despesas derivadas, a divulgação ou utilização das INFORMAÇÕES por seus agentes, representantes ou por terceiros;

\r\n\r\n

Comunicar à CONTRATANTE, de imediato, de forma expressa e antes de qualquer divulgação, caso tenha que revelar qualquer uma das INFORMAÇÕES, por determinação judicial ou ordem de atendimento obrigatório determinado por órgão competente; e

\r\n\r\n

Identificar as pessoas que, em nome da CONTRATADA, terão acesso às informações sigilosas.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA SEXTA – DA VIGÊNCIA

\r\n\r\n

O presente TERMO tem natureza irrevogável e irretratável, permanecendo em vigor desde a data de sua assinatura até expirar o prazo de classificação da informação a que a CONTRATADA teve acesso em razão do CONTRATO PRINCIPAL.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA SÉTIMA – DAS PENALIDADES

\r\n\r\n

A quebra do sigilo e/ou da confidencialidade das INFORMAÇÕES, devidamente comprovada, possibilitará a imediata aplicação de penalidades previstas conforme disposições contratuais e legislações em vigor que tratam desse assunto, podendo até culminar na rescisão do CONTRATO PRINCIPAL firmado entre as PARTES. Neste caso, a CONTRATADA, estará sujeita, por ação ou omissão, ao pagamento ou recomposição de todas as perdas e danos sofridos pela CONTRATANTE, inclusive as de ordem moral, bem como as de responsabilidades civil e criminal, as quais serão apuradas em regular processo administrativo ou judicial, sem prejuízo das demais sanções legais cabíveis, conforme art. 87 da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA OITAVA – DISPOSIÇÕES GERAIS

\r\n\r\n

Este TERMO de Confidencialidade é parte integrante e inseparável do CONTRATO PRINCIPAL.

\r\n\r\n

Surgindo divergências quanto à interpretação do disposto neste instrumento, ou quanto à execução das obrigações dele decorrentes, ou constatando-se casos omissos, as partes buscarão solucionar as divergências de acordo com os princípios de boa fé, da eqüidade, da razoabilidade, da economicidade e da moralidade.

\r\n\r\n

O disposto no presente TERMO prevalecerá sempre em caso de dúvida e, salvo expressa determinação em contrário, sobre eventuais disposições constantes de outros instrumentos conexos firmados entre as partes quanto ao sigilo de informações, tal como aqui definidas.

\r\n\r\n

Ao assinar o presente instrumento, a CONTRATADA manifesta sua concordância no sentido de que:

\r\n\r\n

A CONTRATANTE terá o direito de, a qualquer tempo e sob qualquer motivo, auditar e monitorar as atividades da CONTRATADA;

\r\n\r\n

A CONTRATADA deverá disponibilizar, sempre que solicitadas formalmente pela CONTRATANTE, todas as informações requeridas pertinentes ao CONTRATO PRINCIPAL.

\r\n\r\n

A omissão ou tolerância das partes, em exigir o estrito cumprimento das condições estabelecidas neste instrumento, não constituirá novação ou renúncia, nem afetará os direitos, que poderão ser exercidos a qualquer tempo;

\r\n\r\n

Todas as condições, TERMOs e obrigações ora constituídos serão regidos pela legislação e regulamentação brasileiras pertinentes;

\r\n\r\n

O presente TERMO somente poderá ser alterado mediante TERMO aditivo firmado pelas partes;

\r\n\r\n

Alterações do número, natureza e quantidade das informações disponibilizadas para a CONTRATADA não descaracterizarão ou reduzirão o compromisso e as obrigações pactuadas neste TERMO, que permanecerá válido e com todos seus efeitos legais em qualquer uma das situações tipificadas neste instrumento;

\r\n\r\n

O acréscimo, complementação, substituição ou esclarecimento de qualquer uma das informações disponibilizadas para a CONTRATADA, serão incorporados a este TERMO, passando a fazer dele parte integrante, para todos os fins e efeitos, recebendo também a mesma proteção descrita para as informações iniciais disponibilizadas, sendo necessário a formalização de TERMO aditivo a CONTRATO PRINCIPAL; e

\r\n\r\n

Este TERMO não deve ser interpretado como criação ou envolvimento das Partes, ou suas filiadas, nem em obrigação de divulgar INFORMAÇÕES para a outra Parte, nem como obrigação de celebrarem qualquer outro acordo entre si.

\r\n\r\n

 

\r\n\r\n

CLÁUSULA NONA – DO FORO

\r\n\r\n

A CONTRATANTE elege o foro da [digite aqui o nome da cidade], onde está localizada a sede da CONTRATANTE, para dirimir quaisquer dúvidas originadas do presente TERMO, com renúncia expressa a qualquer outro, por mais privilegiado que seja.

\r\n\r\n

 

\r\n\r\n

E, por estarem de acordo, depois de lido e achado conforme, foi o presente @serie@ assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(555,82,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(556,82,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(557,83,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(558,83,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(559,83,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(560,83,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Objeto:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Gestor do Contrato:

\r\n
\r\n

 

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

CNPJ:

\r\n
\r\n

 

\r\n
\r\n

Preposto da Contratada:

\r\n
\r\n

 

\r\n
\r\n

CPF:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

Por este instrumento, os colaboradores abaixo-assinados declaram ter ciência e conhecimento do teor:

\r\n\r\n

do Termo de Compromisso Manutenção de Sigilo em Contrato (SEI nº xxxxxxx) assinado pela CONTRATADA acima identificada; e

\r\n\r\n

das normas de segurança vigentes no âmbito da CONTRATANTE.

\r\n',30,'N','N','S','N','N','N','S','S'),(561,83,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(562,83,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(563,84,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(564,84,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(565,84,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(566,84,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Período da Vigência:

\r\n
\r\n

 

\r\n
\r\n

Nº da OS/OFB/NE:

\r\n
\r\n

 

\r\n
\r\n

Objeto:

\r\n
\r\n

 

\r\n
\r\n

Valor dos Bens/Serviços Recebidos:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

Data da Entrega:

\r\n
\r\n

 

\r\n
\r\n

Data do Recebimento:

\r\n
\r\n

 

\r\n
\r\n

Prazo Originalmente Estipulado:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

TERMOS

\r\n\r\n

Por este instrumento, atestamos, para fins de cumprimento do disposto no art. 34, inciso I, da Instrução Normativa nº 4, de 11 de setembro de 2014, emitida pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, que os serviços e/ou ou bens, integrantes da OS/OFB acima identificada, ou conforme definido no Modelo de Execução do contrato supracitado, foram recebidos nesta data e serão objetos de avaliação quanto à adequação da Solução de Tecnologia da Informação e à conformidade de qualidade, de acordo com os Critérios de Aceitação previamente definidos no Modelo de Gestão do contrato pela Contratante.

\r\n\r\n

Ressaltamos que o recebimento definitivo destes serviços e/ou bens ocorrerá em até ___ dias, desde que não ocorram problemas técnicos ou divergências quanto às especificações constantes do [Contrato / Termo de Referência / Projeto Básico] do Contrato acima identificado.

\r\n\r\n

 

\r\n\r\n

O presente documento segue assinado pelo Agente Fiscalizador do Contrato.

\r\n',30,'N','N','S','N','N','N','S','S'),(567,84,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(568,84,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(569,85,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(570,85,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(571,85,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(572,85,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Período da Vigência:

\r\n
\r\n

 

\r\n
\r\n

Nº da OS/OFB/NE:

\r\n
\r\n

 

\r\n
\r\n

Objeto:

\r\n
\r\n

 

\r\n
\r\n

Valor dos Bens/Serviços Recebidos:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

Data da Entrega:

\r\n
\r\n

 

\r\n
\r\n

Data do Recebimento:

\r\n
\r\n

 

\r\n
\r\n

Prazo Originalmente Estipulado:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

TERMOS

\r\n\r\n

Por este instrumento, em caráter definitivo, atestamos que os serviços e/ou bens acima identificados foram devidamente executados/entregues e atendem às exigências especificadas no [Termo de Referência / Projeto Básico], com eficácia liberatória de todas as obrigações estabelecidas em contratado referentes ao objeto acima mencionado, exceto as garantias legais (art. 73, § 2º, da Lei nº 8.666/1993).

\r\n\r\n

Observações, caso necessário: [digite aqui o texto].

\r\n\r\n

 

\r\n\r\n

Observação: Havendo valor patrimoniável ou complemento financeiro de bem patrimoniado, o Agente Fiscalizador ou o Gestor do Contrato também deve encaminhar este documento à área de patrimônio.

\r\n\r\n

 

\r\n\r\n

O presente documento segue assinado pelo Agente Fiscalizador e pelo Gestor do Contrato.

\r\n',30,'N','N','S','N','N','N','S','S'),(573,85,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(574,85,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(575,86,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(576,86,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(577,86,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(578,86,'Corpo do Texto','

IDENTIFICAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Contrato nº:

\r\n
\r\n

 

\r\n
\r\n

Objeto:

\r\n
\r\n

 

\r\n
\r\n

Contratante:

\r\n
\r\n

@descricao_orgao_origem@

\r\n
\r\n

Contratada:

\r\n
\r\n

 

\r\n
\r\n

CNPJ:

\r\n
\r\n

 

\r\n
\r\n

Período de Vigência:

\r\n
\r\n

 

\r\n
\r\n

Valor da Vigência:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

TERMOS

\r\n\r\n

Por este instrumento, as partes acima identificadas resolvem registrar o encerramento do contrato em epígrafe e ressaltar o que segue:

\r\n\r\n

O presente contrato está sendo encerrado por motivo de [digite aqui o motivo do encerramento do contrato].

\r\n\r\n

As partes concedem-se mutuamente plena, geral, irrestrita e irrevogável quitação de todas as obrigações diretas e indiretas decorrentes deste contrato, não restando mais nada a reclamar de parte a parte, exceto as relacionadas no parágrafo a seguir.

\r\n\r\n

Não estão abrangidas pela quitação ora lançada e podem ser objeto de exigência ou responsabilização, mesmo após o encerramento do vínculo contratual:

\r\n\r\n

As obrigações relacionadas a processos iniciados de penalização contratual;

\r\n\r\n

As garantias sobre bens e serviços entregues ou prestados, tanto legais quanto convencionais;

\r\n\r\n

A reclamação de qualquer tipo sobre defeitos ocultos nos produtos ou serviços entregues ou prestados;

\r\n\r\n

[digitar mais pendências, se houver];

\r\n\r\n

[digitar mais pendências, se houver];

\r\n\r\n

[digitar mais pendências, se houver];

\r\n\r\n

 

\r\n\r\n

E assim tendo lido e concordado com todos os seus termos, para que surta seus efeitos jurídicos, segue o presente documento assinado pelo Gestor do Contrato por parte do @sigla_orgao_origem@ e pelo Representante da Contratada.

\r\n',30,'N','N','S','N','N','N','S','S'),(579,86,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(580,86,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(581,87,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(582,87,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(584,87,'Corpo do Texto','

Aos @dia@ dias do mês de @mes_extenso@ do ano de @ano@, às [[horário]] horas, em sua Sede no @endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, realizou-se a [[identificação da reunião por extenso]] Reunião do [[identificação do órgão deliberativo]] da @descricao_orgao_origem@, sob a Presidência do [[nome de quem presidiu a reunião]] e com o comparecimento dos [[cargos e os nomes dos participantes]]. Registradas as presenças dos [[nomes dos demais presentes]]. O Presidente iniciou os trabalhos dispensando a leitura da Ata da reunião anterior, realizada em [[dia por extenso]] do mês de [[mês por extenso]] do ano de [[ano por extenso]], cuja cópia foi distribuída previamente para análise dos membros. Em discussão e votação, a Ata foi aprovada sem restrições. Durante a Reunião, foram tomadas as seguintes decisões: [[indicação de cada item da pauta e suas respectivas decisões]]. Nada mais havendo a tratar, o Senhor Presidente deu por encerrada a reunião, da qual, para constar, eu, [[nome de quem secretariou a reunião]], lavrei a presente Ata, que, lida e aprovada, vai por todos assinada eletronicamente.

\r\n',20,'N','N','S','N','N','N','S','S'),(585,87,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(586,87,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(587,88,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(588,88,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(589,88,'Corpo do Texto','

DADOS DA REUNIÃO

\r\n\r\n
    \r\n
  • \r\n

    Área Responsável pela Reunião: @hierarquia_unidade_invertida@

    \r\n
  • \r\n
  • \r\n

    Nome do Projeto: [Digite aqui o nome do projeto, se houver. Caso não tenha nome apague esta linha]

    \r\n
  • \r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Data

\r\n
\r\n

Horário de Início

\r\n
\r\n

Horário de Término

\r\n
\r\n

Local

\r\n
\r\n

@dia@/@mes@/@ano@

\r\n
\r\n

24h00min

\r\n
\r\n

24h00min

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

PARTICIPANTES

\r\n\r\n

Internos:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nome

\r\n
\r\n

Unidade

\r\n
\r\n

E-mail

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

​Externos (se houver):

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nome

\r\n
\r\n

Órgão/Instituição/Empresa

\r\n
\r\n

Telefone

\r\n
\r\n

E-mail

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

PAUTA

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

RELATO DA REUNIÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

4

\r\n
\r\n

 

\r\n
\r\n

...

\r\n
\r\n

 

\r\n
\r\n

Extra Pauta

\r\n
\r\n

[Caso tenha discutido assuntos extra pauta, digite aqui o texto do relato correspondente]

\r\n
\r\n

Extra Pauta

\r\n
\r\n

[Caso tenha discutido assuntos extra pauta, digite aqui o texto do relato correspondente]

\r\n
\r\n\r\n

 

\r\n\r\n

AÇÕES

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição

\r\n
\r\n

Responsável

\r\n
\r\n

Data Limite

\r\n
\r\n

1

\r\n
  \r\n

 

\r\n
\r\n

2

\r\n
  \r\n

 

\r\n
\r\n

3

\r\n
  \r\n

 

\r\n
\r\n

4

\r\n
  \r\n

 

\r\n
\r\n

...

\r\n
  \r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

APROVAÇÃO

\r\n\r\n

Segue o presente @serie@ assinado eletronicamente pelos participantes acima identificados.

\r\n\r\n

No caso de algum participante externo não possuir credenciamento de usuário externo ativo no SEI, para igual assinatura eletrônica, os participantes internos signatários certificam que os participantes externos acima identificados participaram da reunião e tomaram conhecimento do teor deste documento.

\r\n',20,'N','N','S','N','N','N','S','S'),(590,88,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(591,88,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(592,89,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(593,89,'Título do Documento','@serie@ Nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(594,89,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(595,89,'Corpo do Texto','

Unidade Gestora: [sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

@serie@ QUE ENTRE SI CELEBRAM A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DO OUTRO ÓRGÃO OU ENTIDADE], VISANDO O [DIGITE AQUI A IDENTIFICAÇÃO RESUMIDA DO OBJETO].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede no [digite aqui o endereço completo da Sede/GR], doravante denominada @sigla_orgao_origem@, neste ato representada por seu Presidente, Senhor [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e por seu Conselheiro(a), Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e o/a [NOME DO OUTRO ÓRGÃO OU ENTIDADE], inscrito(a) no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede no [digite aqui o endereço completo da sede], doravante denominada [SIGLA], neste ato representada por seu/sua [Cargo do Signatário], Senhor(a) [nome completo], [nacionalidade], portador(a) da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], considerando o constante no processo nº @processo@, resolvem celebrar o presente @serie@, mediante as seguintes cláusulas e condições:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente @serie@ tem por objeto [... ....].

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLAUSULA SEGUNDA – DO OBJETIVO

\r\n\r\n

O presente @serie@ visa [...]

\r\n\r\n

CLÁUSULA TERCEIRA – DO FUNDAMENTO LEGAL

\r\n\r\n

O presente @serie@ reger-se-á pelo disposto no art. 116 da Lei nº 8.666, de 21 de junho de 1993 e legislação correlata.

\r\n\r\n

CLÁUSULA QUARTA – DAS OBRIGAÇÕES DOS PARTÍCIPES

\r\n\r\n

São obrigações comuns de ambos os partícipes:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

São obrigações exclusivas da @sigla_orgao_origem@:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

São obrigações exclusivas do órgão/entidade X:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA QUINTA – DA VIGÊNCIA

\r\n\r\n

Este @serie@ entrará em vigor na data de sua assinatura, pelo prazo de [indicar a quantidade de meses] meses, podendo ser prorrogado, a critério dos partícipes, por Termos Aditivos, desde que tal interesse seja manifestado, previamente e por escrito, em até 60 (sessenta) dias antes do término de sua vigência.

\r\n\r\n

CLÁUSULA SEXTA – DA MODIFICAÇÃO

\r\n\r\n

O presente instrumento poderá a qualquer tempo ser modificado, exceto quanto ao seu Objeto, mediante Termos Aditivos, desde que tal interesse seja manifestado por um dos partícipes previamente e por escrito, devendo em qualquer caso haver a anuência da outra parte com a alteração proposta.

\r\n\r\n

CLÁUSULA SÉTIMA – DA DENÚNCIA 

\r\n\r\n

Este @serie@ poderá, a qualquer tempo, ser denunciado pelos PARTÍCIPES, devendo o interessado externar formalmente a sua intenção nesse sentido, com a antecedência mínima de 60 (sessenta) dias da data em que se pretenda que sejam encerradas as atividades, respeitadas as obrigações assumidas com terceiros e saldados os compromissos financeiros entre os PARTÍCIPES, creditando, igualmente, os benefícios adquiridos no período.

\r\n\r\n

CLÁUSULA OITAVA – DA RESCISÃO

\r\n\r\n

A rescisão decorrerá do descumprimento de quaisquer das cláusulas ou condições estabelecidas neste @serie@, devendo o PARTÍCIPE que se julgar prejudicado notificar o outro PARTÍCIPE  para que apresente esclarecimentos  no prazo de 15 (quinze) dias corridos.

\r\n\r\n

Prestados os esclarecimentos, os PARTÍCIPES deverão, por mútuo consenso, decidir pela rescisão ou manutenção do @serie@.

\r\n\r\n

Decorrido o prazo para esclarecimento, caso não haja resposta, o @serie@ será rescindido de pleno direito, independentemente de notificações ou interpelações judiciais ou extrajudiciais. 

\r\n\r\n

CLÁUSULA NONA – DOS RECURSOS FINANCEIROS

\r\n\r\n

O presente @serie@ não envolve a transferência de recursos financeiros entre os partícipes, cabendo a cada um o custeio das despesas inerentes à execução das ações e obrigações sob sua competência.

\r\n\r\n

Cada parte responsabilizar-se-á pela remuneração de seus respectivos servidores, designados para as ações e atividades previstas neste @serie@, como de quaisquer outros encargos a eles pertinentes.

\r\n\r\n

CLÁUSULA DÉCIMA - DA FISCALIZAÇÃO

\r\n\r\n

Ficam os partícipes responsáveis por exercer a fiscalização da execução do objeto deste @serie@, sendo a @sigla_orgao_origem@ representada pela [indicar a unidade que será responsável] e a [ÓRGÃO/ENTIDADE] representada pela [indicar a unidade que será responsável], as quais designarão servidores responsáveis para tanto.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DA PUBLICAÇÃO

\r\n\r\n

O presente @serie@ será publicado, na forma de extrato, até o quinto dia útil do mês subsequente ao da sua assinatura, no Diário Oficial da União, conforme disposto no art. 61, parágrafo único, da Lei nº 8.666/1993, ficando as despesas da publicação a cargo da [indique o nome da parte que fará a publicação do extrato].

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DAS DISPOSIÇÕES GERAIS E CASOS OMISSOS

\r\n\r\n

Os casos omissos e as dúvidas porventura existentes serão dirimidos mediante entendimentos entre os partícipes, formalizados por meio de correspondência.

\r\n\r\n

Os casos omissos deste @serie@ serão resolvidos conforme os preceitos de direito público, aplicando-lhes, supletivamente, os princípios da teoria geral dos contratos e as disposições de direito privado.

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DO FORO

\r\n\r\n

As questões decorrentes da execução do presente @serie@ e dos instrumentos específicos dele decorrentes que não possam ser dirimidas administrativamente serão processadas e julgadas no Foro da [digite aqui o foro do Poder Judiciário], renunciando os partícipes a qualquer outro, por mais privilegiado que seja.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente @serie@ é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(596,89,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(597,89,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(598,89,'Anexos','

ANEXOS AO @serie@

\r\n\r\n

PLANO DE TRABALHO

\r\n\r\n

OBJETO

\r\n\r\n

[Identificação do objeto a ser executado]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

PRODUTOS E METAS

\r\n\r\n

[Descrição das metas a serem atingidas]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

ETAPAS OU FASES DA EXECUÇÃO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

PLANO DE APLICAÇÃO DOS RECURSOS FINANCEIROS [se houver]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Cronograma de desembolso:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CRONOGRAMA DE EXECUÇÃO

\r\n\r\n

A execução global do objeto do @serie@ terá início em [data no formato dd/mm/aaaa] e fim em [data no formato dd/mm/aaaa].

\r\n\r\n

As etapas ou fases previstas para sua execução terão o seguinte cronograma:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n',50,'N','N','N','N','N','N','S','S'),(599,90,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(600,90,'Título do Documento, Processo e Interessado','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

PARECER Nº

\r\n
\r\n

@numeracao_serie@/@ano@/@hierarquia_unidade_invertida@

\r\n
\r\n

PROCESSO Nº

\r\n
\r\n

@processo@

\r\n
\r\n

INTERESSADO:

\r\n
\r\n

@interessados_virgula_espaco@

\r\n
\r\n',10,'S','N','N','S','N','N','S','S'),(601,90,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

ASSUNTO:

\r\n
\r\n

Digite aqui o texto do assunto... .... .

\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

 

\r\n
\r\n

Digite aqui o texto do item da ementa... .... .

\r\n
\r\n\r\n

  

\r\n\r\n

Senhor [[nome do cargo da autoridade a quem o Parecer será submetido]],

\r\n\r\n

 

\r\n\r\n

I. RELATÓRIO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

II. FUNDAMENTAÇÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação. Citação

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

III. CONCLUSÃO

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

Digite aqui o texto do item... .... .

\r\n\r\n

À consideração superior.

\r\n',20,'N','N','S','N','N','N','S','S'),(602,90,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(603,90,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(614,93,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(615,93,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(616,93,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Digite aqui a Ementa...

\r\n
\r\n\r\n

O [DIGITE AQUI O NOME DO CARGO] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. [DIGITE AQUI O DISPOSITIVO] do [DIGITE AQUI A LEGISLAÇÃO APLICADA], aprovado(a) pela [INDIQUE AQUI A NORMA, SEU NÚMERO E DATA], e

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@,

\r\n\r\n

RESOLVE:

\r\n\r\n

Art. 1º  Aprovar ... .... .

\r\n\r\n

CAPÍTULO I

\r\n\r\n

DAS DISPOSIÇÕES GERAIS

\r\n\r\n

Art. 2º  Digite aqui o texto ... .... .

\r\n\r\n

Parágrafo único.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 3º  Digite aqui o texto ... .... .

\r\n\r\n

§ 1º  Digite aqui o texto ... .... :

\r\n\r\n

I - Digite aqui o texto ... .... :

\r\n\r\n

a) Digite aqui o texto ... .... :

\r\n\r\n

b) Digite aqui o texto ... .... :

\r\n\r\n

1. Digite aqui o texto ... .... .

\r\n\r\n

2. Digite aqui o texto ... .... .

\r\n\r\n

c) Digite aqui o texto ... .... :

\r\n\r\n

§ 2º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO II

\r\n\r\n

[DIGITE AQUI O TEXTO DO CAPÍTULO EM CAIXA ALTA]

\r\n\r\n

Seção I

\r\n\r\n

[Digite aqui o Texto da Seção]

\r\n\r\n

Art. 4º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 5º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 6º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 7º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 8º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 9º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO III

\r\n\r\n

DAS DISPOSIÇÕES FINAIS E TRANSITÓRIAS

\r\n\r\n

Art. 10.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 11.  Alterar a [tipo da norma] nº xxx, de dd de mmmmmm de aaaa, que [ementa da norma a ser alterada], que passa a vigorar com as seguintes alterações:

\r\n\r\n

“Art. 2º.............................................................................

\r\n\r\n

I - Digite aqui o texto ... ....;

\r\n\r\n

II - Digite aqui o texto ... ....;

\r\n\r\n

III - Digite aqui o texto ... ....;

\r\n\r\n

.............................................................................” (NR)

\r\n\r\n

“Art. 3º  Digite aqui o texto ... .... .” (NR)

\r\n\r\n

Art. 12.  Revogar ... ... .... .

\r\n\r\n

Art. 13.  Esta @serie@ entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(617,93,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(618,93,'Anexos','

ANEXO I

\r\n\r\n

[DIGITE AQUI O TÍTULO DO ANEXO] - Caso não tenha anexo, apagar todo o conteúdo desta seção

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto:

\r\n\r\n

Item.

\r\n\r\n

Item.

\r\n\r\n

Alínea.

\r\n\r\n

Alínea.

\r\n\r\n

Item.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n',40,'N','N','N','N','N','N','S','S'),(619,93,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(621,94,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@-@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(622,94,'Local e Data do Documento','@cidade_unidade@, @dia@ de @mes_extenso@ de @ano@.',20,'S','N','N','S','N','N','N','S'),(624,94,'Separador de Seções','

  

',30,'S','N','N','N','N','N','S','S'),(625,94,'Corpo do Texto','

A Sua Excelência o Senhor

\r\n\r\n

@nome_destinatario_maiusculas@

\r\n\r\n

@cargo_destinatario@

\r\n\r\n

  

\r\n\r\n

  

\r\n\r\n

Assunto: Texto do Assunto em negrito.

\r\n\r\n

  

\r\n\r\n

Senhor Ministro,

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto:

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n\r\n

Atenciosamente,

\r\n\r\n

  

\r\n',40,'N','N','S','N','N','N','S','S'),(626,94,'Assinatura',NULL,50,'N','S','N','N','N','N','N','S'),(627,94,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(628,95,'Título do Documento','EM nº @numeracao_serie@/@ano@-@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(629,95,'Local e Data do Documento','@cidade_unidade@, @dia@ de @mes_extenso@ de @ano@.',20,'S','N','N','S','N','N','N','S'),(630,95,'Separador de Seções','

  

\r\n

  

\r\n

  

\r\n

  

',30,'S','N','N','N','N','N','S','S'),(631,95,'Corpo do Texto','

Excelentíssimo Senhor Presidente da República.

\r\n\r\n

  

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n\r\n

Respeitosamente,

\r\n\r\n

  

\r\n',50,'N','N','S','N','N','N','S','S'),(632,95,'Assinatura',NULL,60,'N','S','N','N','N','N','N','S'),(633,95,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(634,96,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@-@hierarquia_unidade_invertida@',10,'S','N','N','S','N','N','N','S'),(636,96,'Separador de Seções','

  

\r\n

  

\r\n

  

\r\n

  

',20,'S','N','N','N','N','N','S','S'),(637,96,'Corpo do Texto','

Excelentíssimo Senhor Presidente do Senado Federal,

\r\n\r\n

  

\r\n\r\n

  

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

Texto.

\r\n\r\n

  

\r\n',30,'N','N','S','N','N','N','S','S'),(638,96,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(639,96,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(640,97,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(641,97,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(642,97,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Digite aqui a Ementa...

\r\n
\r\n\r\n

O ______ DO @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. XXX da [indicar a norma pertinente], e pelo art. XXX do [indicar a norma pertinente],

\r\n\r\n

CONSIDERANDO ... ... ...;

\r\n\r\n

CONSIDERANDO os comentários recebidos decorrentes da Consulta Pública nº xxx, de y de mmmmmmm de aaaa, publicada no Diário Oficial da União do dia y de mmmmmmm de aaaa;

\r\n\r\n

CONSIDERANDO deliberação tomada em sua Reunião nº xxx, de y de mmmmmmm de aaaa;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@,

\r\n\r\n

RESOLVE:

\r\n\r\n

Art. 1º  Aprovar, na forma do anexo, o Regulamento de ... .... .

\r\n\r\n

Art. 2º  Alterar a Resolução nº xxx, de dd de mmmmmm de aaaa, que [ementa da resolução a ser alterada], que passa a vigorar com as seguintes alterações:

\r\n\r\n

“Art. 2º .............................................................................

\r\n\r\n

I - Digite aqui o texto ... ....;

\r\n\r\n

II - Digite aqui o texto ... ....;

\r\n\r\n

III - Digite aqui o texto ... ....;

\r\n\r\n

.............................................................................” (NR)

\r\n\r\n

“Art. 3º  Digite aqui o texto ... .... .” (NR)

\r\n\r\n

Art. 3º  Revogar ... ... .... .

\r\n\r\n

Art. 4º  Esta Resolução entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(643,97,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(644,97,'Anexos','

ANEXO I À @serie@

\r\n\r\n

REGULAMENTO DE ... ...

\r\n\r\n

CAPÍTULO I

\r\n\r\n

DAS DISPOSIÇÕES GERAIS

\r\n\r\n

Art. 1º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 2º  Digite aqui o texto ... .... .

\r\n\r\n

Parágrafo único.  Digite aqui o texto ... .... .

\r\n\r\n

Art. 3º  Digite aqui o texto ... .... .

\r\n\r\n

§ 1º  Digite aqui o texto ... .... :

\r\n\r\n

I - Digite aqui o texto ... .... :

\r\n\r\n

a) Digite aqui o texto ... .... :

\r\n\r\n

b) Digite aqui o texto ... .... :

\r\n\r\n

1. Digite aqui o texto ... .... .

\r\n\r\n

2. Digite aqui o texto ... .... .

\r\n\r\n

c) Digite aqui o texto ... .... :

\r\n\r\n

§ 2º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO II

\r\n\r\n

[DIGITE AQUI O TEXTO DO CAPÍTULO EM CAIXA ALTA]

\r\n\r\n

Seção I

\r\n\r\n

[Digite aqui o Texto da Seção]

\r\n\r\n

Art. 4º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 5º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 6º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 7º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 8º  Digite aqui o texto ... .... .

\r\n\r\n

Art. 9º  Digite aqui o texto ... .... .

\r\n\r\n

CAPÍTULO III

\r\n\r\n

DAS DISPOSIÇÕES FINAIS E TRANSITÓRIAS

\r\n\r\n

Art. 10.  Digite aqui o texto ... .... .

\r\n\r\n

  

\r\n\r\n

ANEXO II À @serie@

\r\n\r\n

NORMA DE ... ...

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto:

\r\n\r\n

Item.

\r\n\r\n

Item.

\r\n\r\n

Alínea.

\r\n\r\n

Alínea.

\r\n\r\n

Item.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

DIGITAR O TÍTULO EM CAIXA ALTA

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n\r\n

Digitar texto.

\r\n',40,'N','N','N','N','N','N','S','S'),(645,97,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(646,98,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(647,98,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(648,98,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(649,98,'Corpo do Texto','\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

UNIDADE:

\r\n
\r\n

@hierarquia_unidade_invertida@

\r\n
\r\n

Nº SF

\r\n
\r\n

Nome do Suprido

\r\n
\r\n

Período

\r\n
\r\n

Valor

\r\n
\r\n

Concessão

\r\n
\r\n

Prestação de Contas

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n',30,'N','N','S','N','N','N','S','S'),(650,98,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(651,98,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(652,99,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(653,99,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(654,99,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(655,99,'Corpo do Texto','

definições e abreviaturas (opcional)

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Termo

\r\n
\r\n

Definição

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

objetivo do projeto

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

Premissas

\r\n\r\n

Orientação (apagar): As premissas são fatores que, para fins de planejamento, são considerados verdadeiros, reais ou certos sem prova ou demonstração. As premissas afetam todos os aspectos do planejamento do projeto e fazem parte da elaboração progressiva do projeto. Frequentemente, as equipes do projeto identificam, documentam e validam as premissas durante o processo de planejamento. Esse item consta no Termo de Abertura de Projeto (TAP) e pode ser complementado ou revisado neste documento.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

restrições

\r\n\r\n

Orientação (apagar): Uma restrição é uma limitação aplicável, interna ou externa ao projeto, que afetará o desempenho do projeto ou de um processo. Listar os fatos que não podem ser alterados e que limitam as opções da equipe do projeto. Registrar tudo o que limita as ações/atividades a serem empreendidas/desenvolvidas no projeto, ou seja, tudo o que delimita o universo quanto a: recursos, prazos de execução, políticas, diretrizes, etc. Esse item consta no Termo de Abertura de Projeto (TAP) e pode ser complementado ou revisado neste documento.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

estrutura analítica de projetos (EAP)

\r\n\r\n

Orientação (apagar): Inserir a visão gráfica da EAP.

\r\n\r\n

[Inserir aqui a Imagem da EAP]

\r\n\r\n

dicionário da eap

\r\n\r\n

Orientação (apagar): Descrever para cada entrega da EAP uma descrição do trabalho necessário para realizá-la e a previsão de entrega, de acordo com cronograma do projeto.

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Entrega/Produto

\r\n
\r\n

Descrição da Entrega

\r\n
\r\n

Data Prevista para Entrega

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

papéis e responsabilidades

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nome

\r\n
\r\n

Papel

\r\n
\r\n

Responsabilidades

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

regras de escalonamento

\r\n\r\n

Orientação (apagar): As regras de escalonamento deverão ser definidas conforme a característica de cada projeto. As lacunas podem ser preenchidas com as seguintes opções: aprova, é informado, é informado e encaminha para decisão ou propõe. O gerente do projeto poderá utilizar outras opções que julgar mais conveniente.

\r\n\r\n

As regras de escalonamento estabelecem a hierarquia de decisão sobre os problemas, riscos e mudanças que impactam as principais variáveis dos projetos. Para cada parte envolvida, são apresentadas as circunstâncias nas quais elas devem tomar decisões. As regras estão divididas entre circunstâncias relacionadas a escopo e tempo, conforme apresentam as Tabelas 1 e 2, respectivamente. Nos casos em que um risco, problema ou mudança impactar em mais de uma variável, a decisão deve ser tomada pela maior instância decisória apontada.

\r\n\r\n

Tabela 1: Regras de Escalonamento – Escopo

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Dimensão

\r\n
\r\n

Circunstância

\r\n
\r\n

Líder Técnico

\r\n
\r\n

Gerente do Projeto

\r\n
\r\n

Área de TI

\r\n
\r\n

Gerentes das Áreas Envolvidas

\r\n
\r\n

Todos os projetos

\r\n
\r\n

Quando riscos, problemas ou mudanças impactarem o escopo e implicarem em atrasos de até 10% no cronograma.

\r\n
\r\n

Informa

\r\n
\r\n

Informa

\r\n
\r\n

É informado

\r\n
\r\n

Aprova

\r\n
\r\n

Quando riscos, problemas ou mudanças alterarem o escopo de entregas sem avaliação de impacto ou que implicarem em atraso superior a 10% do cronograma.

\r\n
\r\n

Informa

\r\n
\r\n

Informa

\r\n
\r\n

É informado

\r\n
\r\n

Aprova (Instância máxima)

\r\n
\r\n\r\n

Tabela 2: Regras de Escalonamento - Tempo

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Dimensão

\r\n
\r\n

Circunstância

\r\n
\r\n

Líder Técnico

\r\n
\r\n

Gerente do Projeto

\r\n
\r\n

Área de TI

\r\n
\r\n

Gerentes das Áreas Envolvidas

\r\n
\r\n

Todos os projetos

\r\n
\r\n

Quando riscos, problemas ou mudanças impactarem o cronograma variando em + - 5% do planejado em relação à última linha de base gerada.

\r\n
\r\n

Informa

\r\n
\r\n

Aprova

\r\n
\r\n

É informado

\r\n
\r\n

É informado

\r\n
\r\n

Quando riscos, problemas ou mudanças alterarem o cronograma variando entre 5% e 15% de atraso em relação à última linha de base gerada.

\r\n
\r\n

Informa

\r\n
\r\n

Informa

\r\n
\r\n

É informado

\r\n
\r\n

Aprova

\r\n
\r\n

Quando riscos, problemas ou mudanças impactarem o cronograma variando acima de 15% de atraso em relação à última linha de base gerada.

\r\n
\r\n

Informa

\r\n
\r\n

Informa

\r\n
\r\n

É informado

\r\n
\r\n

Aprova (instância máxima)

\r\n
\r\n\r\n

interface entre projetos

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Interface

\r\n
\r\n

Projetos Relacionados

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

análise dos riscos do projeto

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Passos

\r\n
\r\n

Categorias

\r\n
\r\n

Probabilidade / Impacto

\r\n
\r\n

Estratégia

\r\n
\r\n
    \r\n
  1. \r\n

    Liste os riscos identificados;

    \r\n
  2. \r\n
  3. \r\n

    Categorize-os: Gestão de Projeto, Técnico ou Organizacional;

    \r\n
  4. \r\n
  5. \r\n

    Qualifique-os: Probabilidade, Impacto e Criticidade (Conforme Matriz de Probabilidade e Impacto);

    \r\n
  6. \r\n
  7. \r\n

    Selecione uma estratégia – Mitigar, Evitar, Aceitar, Transferir;

    \r\n
  8. \r\n
  9. \r\n

    Desenvolva uma resposta aos Riscos;

    \r\n
  10. \r\n
  11. \r\n

    Mantenha controle sobre eles.

    \r\n
  12. \r\n
\r\n
\r\n
    \r\n
  1. \r\n

    Gestão de Projeto

    \r\n
  2. \r\n
  3. \r\n

    Técnico

    \r\n
  4. \r\n
  5. \r\n

    Organizacional

    \r\n
  6. \r\n
\r\n
\r\n

MA – Muito Alto(a)

\r\n\r\n

A – Alto(a)

\r\n\r\n

M – Médio(a)

\r\n\r\n

B – Baixo(a)

\r\n\r\n

MB – Muito Baixo(a)

\r\n
\r\n

A – Aceitar

\r\n\r\n

E – Evitar

\r\n\r\n

M – Mitigar

\r\n\r\n

T – Transferir

\r\n
\r\n\r\n

​MATRIZ DE PROBABILIDADE X IMPACTO – (CRITICIDADE)​

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Probabilidade

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Muito alta

\r\n
\r\n

dia

\r\n
\r\n

Alta

\r\n
\r\n

Alta

\r\n
\r\n

Alta

\r\n
\r\n

Alta

\r\n
\r\n

 

\r\n
\r\n

Alta

\r\n
\r\n

Baixa

\r\n
\r\n

Média

\r\n
\r\n

Média

\r\n
\r\n

Alta

\r\n
\r\n

Alta

\r\n
\r\n

 

\r\n
\r\n

Média

\r\n
\r\n

Baixa

\r\n
\r\n

Média

\r\n
\r\n

Média

\r\n
\r\n

Média

\r\n
\r\n

Alta

\r\n
\r\n

 

\r\n
\r\n

Baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Média

\r\n
\r\n

dia

\r\n
\r\n

Alta

\r\n
\r\n

 

\r\n
\r\n

Muito baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Baixa

\r\n
\r\n

Média

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Muito baixo

\r\n
\r\n

Baixo

\r\n
\r\n

Médio

\r\n
\r\n

Alto

\r\n
\r\n

Muito alto

\r\n
\r\n

Impacto

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

FASE 1 – IDENTIFICAÇÃO DOS RISCOS

\r\n
\r\n

Risco

\r\n
\r\n

Entrega/Produto

\r\n
\r\n

Descrição do risco associado

\r\n
\r\n

Criticidade

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

FASE 2 – ANÁLISE E TRATAMENTO DOS RISCOS

\r\n
\r\n

Risco

\r\n
\r\n

Ação (estrategia)

\r\n
\r\n

Responsável

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

plano de aquisição

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Objeto (produto ou serviço)

\r\n
\r\n

Justificativa

\r\n
\r\n

Estimativa de Valor

\r\n
\r\n

Data Limite para Aquisição

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

plano de comunicação

\r\n\r\n

Orientação (apagar): Descrever o processo de comunicação necessário para garantir a geração, coleta, distribuição, armazenamento, recuperação e destinação final das informações sobre o projeto de forma oportuna e adequada. Este item deve conter informações como: divulgação do projeto, reuniões, necessidade de publicação de documentos no Diário Oficial da União, modelos de relatórios;/formulários que devem ser utilizados no projeto, entre outros.

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Evento

\r\n
\r\n

Objetivo

\r\n
\r\n

Responsável

\r\n
\r\n

Público alvo

\r\n
\r\n

Canal

\r\n
\r\n

Periodicidade

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n',30,'N','N','S','N','N','N','S','S'),(656,99,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(657,99,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(658,100,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(659,100,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(660,100,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(661,100,'Corpo do Texto','

projeto

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nome do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Área Responsável pelo Projeto:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

IDENTIFICAÇÃO Da equipe de TRABALHO DO ÓRGÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Patrocinador:

\r\n
\r\n

 

\r\n
\r\n

Gerente do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Substituto do Gerente de Projeto:

\r\n
\r\n

 

\r\n
\r\n

Área Responsável pelo Projeto:

\r\n
\r\n

 

\r\n
\r\n

Analista de Negócio SGI:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

OUTROS SERVIDORES ENVOLVIDOS NO PROJETO

\r\n
\r\n

Servidor

\r\n
\r\n

Função no Projeto

\r\n
\r\n

Área de Lotação

\r\n
\r\n

Ramal

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n

identificação da equipe da EMPRESA TERCEIRIZADA

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Gerente do Projeto:

\r\n
\r\n

 

\r\n
\r\n

Substituto:

\r\n
\r\n

 

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

EQUIPE DA EMPRESA TERCEIRIZADA ENVOLVIDA NO PROJETO

\r\n
\r\n

Nome

\r\n
\r\n

Função no Projeto

\r\n
\r\n

Ramal

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

restrições

\r\n\r\n

Orientação (apagar): Uma restrição é uma limitação aplicável, interna ou externa ao projeto, que afetará o desempenho do projeto ou de um processo. Listar os fatos que não podem ser alterados e que limitam as opções da equipe do projeto. Registrar tudo o que limita as ações/atividades a serem empreendidas/desenvolvidas no projeto, ou seja, tudo o que delimita o universo quanto a: recursos, prazos de execução, políticas, diretrizes, etc.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

premissas

\r\n\r\n

Orientação (apagar): As premissas são fatores que, para fins de planejamento, são considerados verdadeiros, reais ou certos sem prova ou demonstração. As premissas afetam todos os aspectos do planejamento do projeto e fazem parte da elaboração progressiva do projeto. Frequentemente, as equipes do projeto identificam, documentam e validam as premissas durante o processo de planejamento.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

principais entregas do projeto

\r\n\r\n

Orientação (apagar): Listar os principais produtos deste projeto. Inclua datas, locais e quantidades, conforme o caso.

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Principais Entregas

\r\n
\r\n

Data

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

exclusões (não escopo)

\r\n\r\n

Orientação (apagar): Descrever de forma explícita o que está excluído do projeto, para evitar que uma parte interessada possa supor que um produto, serviço ou resultado específico é um produto do projeto.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

orçamento previsto

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

Alinhamento estratégico

\r\n\r\n

Orientação (apagar): Descrever o alinhamento da demanda com os instrumentos de planejamento institucional, como por exemplo: Plano Plurianual (PPA), Planejamento Estratégico (PeT), Plano Diretor de Tecnologia da Informação (PDTI) etc. Esse item consta no Documento de Oficialização da Demanda (DOD) e pode ser complementado ou revisado neste documento.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

partes interessadas

\r\n\r\n

Orientação (apagar): Identificar as pessoas, grupos e/ou órgãos da estrutura organizacional que apresentam algum interesse, favorável ou não, nos resultados do projeto. No campo “requisito de interesse”, identifique qual o interesse da parte no projeto.

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Interessado

\r\n
\r\n

Requisito de Interesse

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

riscos previamente identificados

\r\n\r\n

Orientação (apagar): Identificar eventos ou condições incertos que, se ocorrerem, provocarão efeitos positivos ou negativos nos objetivos do projeto.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

considerações

\r\n\r\n

Orientação (apagar): Listar quaisquer considerações que não tenham sido contempladas nos itens anteriores.

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

[Digite aqui o texto].

\r\n\r\n

  

\r\n',30,'N','N','S','N','N','N','S','S'),(662,100,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(663,100,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(664,101,'Cabeçalho','

  

\r\n\r\n

@descricao_orgao_maiusculas@

\r\n\r\n

  

\r\n',0,'S','N','N','S','S','N','S','S'),(665,101,'Título do Documento','@serie@ Nº @numeracao_serie@',10,'S','N','N','S','N','N','N','S'),(667,101,'Corpo do Texto',NULL,30,'N','N','S','N','N','N','S','S'),(668,101,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(669,101,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(670,102,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(671,102,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(672,102,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(673,102,'Corpo do Texto','

OBJETIVO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no no art. 15, inciso II, da IN 02/2008-SLTI/MP.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

OBJETO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15, inciso III, da IN 02/2008-SLTI/MP.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

JUSTIFICATIVA DA NECESSIDADE DA CONTRATAÇÃO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15 da IN 02/2008-SLTI/MP.

\r\n\r\n

MOTIVAÇÃO DA CONTRATAÇÃO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

BENEFÍCIOS DIRETOS E INDIRETOS QUE RESULTARÃO DA CONTRATAÇÃO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

CONEXÃO ENTRE A CONTRATAÇÃO E O PLANEJAMENTO EXISTENTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

CRITÉRIOS AMBIENTAIS ADOTADOS (SUSTENTABILIDADE)

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Observação (apagar): Conforme estabelece o art. 26, parágrafo único, incisos I e IV, da XXXXXXXXX, os itens abaixo somente são aplicáveis quando for contratação direta (dispensa ou inexigibilidade). Caso se trate de dispensa de licitação, considerar os itens 3.5 a 3.7 abaixo.

\r\n\r\n

CARACTERIZAÇÃO DA SITUAÇÃO EMERGENCIAL OU CALAMITOSA QUE JUSTIFIQUE A DISPENSA

\r\n\r\n

Observação (apagar): Esta seção somente deve constar se for caso de dispensa de licitação.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DOCUMENTO DE APROVAÇÃO DOS PROJETOS DE PESQUISA AOS QUAIS OS BENS SERÃO ALOCADOS

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

RAZÃO DA ESCOLHA DO FORNECEDOR OU EXECUTANTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Observação (apagar): Caso se trate de inexigibilidade de licitação, considerar o item 3.8 abaixo - Nessa forma de contratação direta é de suma importância a caracterização da notória especialização e da singularidade, nos casos de contratação para capacitação, com base no art. 25, inciso II, c/c art. 13, inciso VI, da Lei nº 8.666/93. Quando a contratação tiver como fundamento o art. 25, caput, ou seus inciso I e III, a justificativa deverá ser feita sobre outros requisitos, conforme a regra legal.

\r\n\r\n

RAZÃO DA ESCOLHA DO FORNECEDOR OU EXECUTANTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Quanto à singularidade:

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Quanto à notória especialização:

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DESCRIÇÃO DETALHADA DO OBJETO

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no Decreto nº 5.450/2005, art. 9º, inciso I, e art. 15, inciso IV, da IN 02/2008-SLTI/MP.

\r\n\r\n

DETALHAMENTO DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DETALHAMENTO DA METODOLOGIA DE EXECUÇÃO/ENTREGAS

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

DISPONIBILIDADE ORÇAMENTÁRIA

\r\n\r\n

Observação (apagar): Esta seção deve ser elaborada em conformidade com o disposto no art. 30, inciso IV do Decreto nº 5.450/2005.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição do Objeto

\r\n
\r\n

Valor (R$)

\r\n
\r\n

UGR

\r\n
\r\n

Fonte (Programa/Ação)

\r\n
\r\n

Natureza da Despesa

\r\n
\r\n

ID

\r\n
\r\n

Unitário

\r\n
\r\n

Total

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Global

\r\n
\r\n

 

\r\n
\r\n

----

\r\n
\r\n\r\n

 

\r\n\r\n

RECEBIMENTO DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

UNIDADE DE MEDIDA DO OBJETO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

VALOR ESTIMADO DA CONTRATAÇÃO (REFERENCIAL)

\r\n\r\n

Observação (apagar): Informar a origem dos valores considerados na pesquisa de preços (sistema de preços praticados, mercado, SIASG, internet, entre outros), conforme previsto na IN nº 05/2014 da SLTI/MP.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Item

\r\n
\r\n

Descrição do Item (Objeto)

\r\n
\r\n

CATMAT/CATSER

\r\n
\r\n

Quantidade

\r\n
\r\n

Unidade de Medida

\r\n
\r\n

Valor (R$)

\r\n
\r\n

Unitário

\r\n
\r\n

Total

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Global

\r\n
\r\n

 

\r\n
\r\n\r\n

O detalhamento da pesquisa de preços encontra-se no Informe [digite aqui a identificação do Informe de pesquisa de preço] (SEI nº #######), que fará parte do processo licitatório.

\r\n\r\n

VIGÊNCIA CONTRATUAL

\r\n\r\n

Observação (apagar): Esta seção deverá ser preenchida para todas as contratações que não tenham entrega imediata.

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

OBRIGAÇÕES DA CONTRATADA

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Obrigações Gerais

\r\n
\r\n

Grau de Penalidade em Caso de Descumprimento

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n\r\n

 

\r\n\r\n

OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

SANÇÕES ADMINISTRATIVAS (PENALIDADES)

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

GESTÃO E FISCALIZAÇÃO CONTRATUAL

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

LIQUIDAÇÃO E PAGAMENTOS À CONTRATADA

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

QUALIFICAÇÕES

\r\n\r\n

A qualificação dos proponentes deve ser realizada de acordo com o estabelecido no art. 27 da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

DA GARANTIA CONTRATUAL

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

SIGILO

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

RESCISÃO CONTRATUAL

\r\n\r\n

A inexecução total ou parcial do contrato enseja a sua rescisão, se houver uma das ocorrências prescritas no art. 78 da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

ALTERAÇÕES CONTRATUAIS

\r\n\r\n

Aceitar nas mesmas condições contratuais os acréscimos ou supressões que se fizerem no objeto do presente contrato, até 25% (vinte e cinco por cento) de seu valor inicial atualizado.

\r\n\r\n

DISPOSIÇÕES GERAIS

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

ANEXOS

\r\n\r\n

ANEXO I - Modelo de Planilha de Custos e Formação de Preços (SEI nº #######).

\r\n\r\n

ANEXO II - Modelo de Termo de Recebimento Provisório (SEI nº #######) - Observação (apagar): é obrigatório quando envolver fornecimento de bens.

\r\n\r\n

ANEXO III - Modelo de Termo de Recebimento Definitivo (SEI nº #######) - Observação (apagar): é obrigatório quando envolver fornecimento de bens.

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

ANEXO IV - Digite aqui a descrição do documento (SEI nº #######).

\r\n\r\n

 

\r\n\r\n

Observação (apagar): Caso a autoridade responsável pela Aprovação ultrapassar a maior unidade entre os assinantes abaixo, geralmente por causa de critério de valor da contratação, o ato da Aprovação da conveniência e oportunidade deve ser formalizado em documento próprio.

\r\n\r\n

O presente documento segue assinado pelo servidor Elaborador, pela autoridade Requisitante e pela autoridade responsável pela Aprovação da conveniência e oportunidade, com fulcro no art. 6º, inciso IX, da Lei nº 8.666/1993 e art. 15 da IN nº 02/2008-SLTI/MPOG, cujos fundamentos passam a integrar a presente decisão por força do art. 50, § 1º, da Lei nº 9.784/1999.

\r\n',30,'N','N','S','N','N','N','S','S'),(674,102,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(675,102,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(676,103,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(677,103,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(678,103,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(679,103,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

[NÚMERO]º Termo Aditivo AO CONTRATO Nº x/aaaa DE [DIGITE AQUI SE É DE "PRESTAÇÃO DE SERVIÇOS" OU "FORNECIMENTO DE BENS"], QUE CELEBRAM ENTRE SI A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo da Sede/GR], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], e de outro lado a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA, neste ato representada pelo Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], [profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], resolvem celebrar o presente Termo Aditivo ao Contrato nº X/AAAA, doravante denominado CONTRATO ORIGINAL, que será regido pela Lei nº 8.666, 21 de junho de 1993, e legislação correlata, sob os termos e condições a seguir estabelecidos:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente Termo Aditivo tem por objeto [especificar se é prorrogação, acréscimo, supressão, reequilíbrio econômico-financeiro ou prorrogação com repactuação de preços].

\r\n\r\n

CLÁUSULA SEGUNDA – DO FUNDAMENTO LEGAL

\r\n\r\n

O presente instrumento está amparado no [informar os dispositivos da legislação que permitem a formalização do presente Termo Aditivo].

\r\n\r\n

CLÁUSULA TERCEIRA – DO VALOR DO CONTRATO

\r\n\r\n

Observação (apagar): A Cláusula Terceira deve ser redigida dessa forma caso se trate de Prorrogação.

\r\n\r\n

O valor anual estimado deste Contrato é de R$ [digitar o número e por extenso].

\r\n\r\n

O valor mensal estimado é de R$ [digitar o número e por extenso].

\r\n\r\n

OU

\r\n\r\n

CLÁUSULA TERCEIRA – DO PROCEDIMENTO

\r\n\r\n

Observação (apagar): A Cláusula Terceira deve ser redigida dessa forma caso se trate de acréscimo, supressão, reequilíbrio econômico-financeiro ou prorrogação com repactuação de preços.

\r\n\r\n

Após o procedimento de [acréscimo, supressão, reequilíbrio econômico-financeiro ou repactuação de preços], o valor anual estimado do contrato passará de R$ [digitar o número e por extenso] para R$ [digitar o número e por extenso], a partir de [digite a data no formato dd/mm/aaaa].

\r\n\r\n

O valor mensal estimado deste Contrato será de R$ [digitar o número e por extenso].

\r\n\r\n

Observação (apagar): O subitem abaixo somente deve existir nos casos em que houver Planilha de Custos e Formação de Preços no contrato original.

\r\n\r\n

Passa(m) a vigorar a (s) Planilha (s) de Custos e Formação de Preços anexa(s) a este Termo Aditivo (SEI nº #######), a partir de [digite a data no formato dd/mm/aaaa].

\r\n\r\n

CLÁUSULA QUARTA – DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

Observação (apagar): Esta Cláusula somente deve existir nos casos de prorrogação, acréscimo ou prorrogação com repactuação de preços.

\r\n\r\n

A despesa decorrente do presente Termo Aditivo, no valor total estimado de R$ [digitar o número e por extenso], correrá à conta de créditos orçamentários consignados à CONTRATANTE, disponibilizados na UGR [informar o número][informar o nome]; Programa de Trabalho nº [informar o número]; Natureza de Despesa nº [informar o número da ND][informar a descrição da ND]; Projeto/Atividade nº [informar o número].

\r\n\r\n

Para atender a despesa prevista no exercício em curso foi solicitada Nota de Empenho no valor de R$ [digitar o número e por extenso do valor que será utilizado no presente exercício] e foi emitida a Nota de Empenho nº [informar o número], datada de [digite a data de emissão no formato dd/mm/aaaa], no valor de R$ [digitar o número e por extenso], sem prejuízo da emissão de reforços ou anulações em razão de disponibilidade orçamentária, alterações no Programa de Trabalho ou em decorrência de novas determinações legais.

\r\n\r\n

A parcela de despesa abaixo relacionada, prevista para o exercício subsequente, será alocada à dotação orçamentária prevista para atendimento dessa finalidade, a ser consignada à CONTRATANTE, pela respectiva Lei Orçamentária Anual:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Período de Execução (para o exercício subsequente)

\r\n
\r\n

Valor a ser Empenhado (para o exercício subsequente)

\r\n
\r\n

[digite a data inicial no formato dd/mm/aaaa] a [digite a data final no formato dd/mm/aaaa]

\r\n
\r\n

R$ [digitar o número e por extenso]

\r\n
\r\n\r\n

Em termo aditivo ou apostila, indicar-se-ão os créditos e empenhos que cobrirão a despesa contratual prevista para o exercício subsequente, conforme valor indicado no item anterior.

\r\n\r\n

CLÁUSULA QUINTA – DA RENOVAÇÃO DA GARANTIA

\r\n\r\n

A CONTRATADA deverá apresentar, no prazo máximo de [informar a quantidade de dias, conforme Cláusula de Garantia do Contrato Original] dias [informar se são dias úteis], contados da assinatura do presente Termo Aditivo, garantia correspondente a [informar o percentual]% do valor total estimado do Contrato.

\r\n\r\n

CLÁUSULA SEXTA – DA PUBLICAÇÃO

\r\n\r\n

A CONTRATANTE providenciará a publicação do extrato do presente Termo Aditivo na imprensa oficial até o quinto dia útil do mês seguinte ao de sua assinatura, para ocorrer no prazo de vinte dias daquela data.

\r\n\r\n

CLÁUSULA SÉTIMA – DA RATIFICAÇÃO

\r\n\r\n

Permanecem inalteradas as demais Cláusulas e condições do CONTRATO ORIGINAL e de outros instrumentos não modificadas por este Termo Aditivo.

\r\n\r\n

  

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Termo Aditivo é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(680,103,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(681,103,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(682,104,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(683,104,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(684,104,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(685,104,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

[NÚMERO]º Termo de Apostilamento AO CONTRATO Nº x/aaaa DE [DIGITE AQUI SE É DE "PRESTAÇÃO DE SERVIÇOS" OU "FORNECIMENTO DE BENS"], CELEBRADO ENTRE A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo da Sede/GR], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], vem apostilar o Contrato nº X/AAAA, doravante denominado CONTRATO ORIGINAL, celebrado com a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA,

\r\n\r\n

Observação (apagar): Dependendo do caso concreto, pode-se ter um ou mais “considerandos” dentre os exemplos abaixo.

\r\n\r\n

CONSIDERANDO a aprovação pela autoridade competente do teor do Informe nº [informar a identificação do documento] (SEI nº #######), que analisou o pleito de repactuação do CONTRATO ORIGINAL, solicitado pela CONTRATADA, baseado na Convenção Coletiva de Trabalho entre [especificar os sindicatos envolvidos, o ano correspondente e qualquer outro elemento de identificação], faz-se necessário o seu apostilamento, conforme segue:

\r\n\r\n

E/OU

\r\n\r\n

CONSIDERANDO o teor da [informar a identificação da carta, correspondência ou carta] (SEI nº #######) da CONTRATADA e o teor do Memorando nº [informar a identificação do documento] (SEI nº #######), faz-se necessário reajustar o CONTRATO ORIGINAL, em consonância com o previsto em sua Cláusula XXX [informar a cláusula que trata do reajuste], conforme segue:

\r\n\r\n

E/OU

\r\n\r\n

Observação (apagar): No caso do uso do “considerando” abaixo, o Termo de Apostilamento só conterá o item “DA DOTAÇÃO ORÇAMENTÁRIA”.

\r\n\r\n

CONSIDERANDO o disposto no art. 30, § 4º, da Instrução Normativa nº 2/2008-SLTI/MP, faz-se necessário indicar os créditos e empenhos para cobertura das despesas contratuais previstas para o exercício de @ano@, conforme segue:

\r\n\r\n

DO OBJETO

\r\n\r\n

O presente Termo de Apostilamento tem por objeto [informar se é repactuação de preços e/ou reajuste], a partir de [informar a data inicial], perfazendo o montante estimado de R$ [valor em número e por extenso] e/ou de [informar o percentual no caso de reajuste]%, referente ao período de [informar a data de início e de término no formato dd/mm/aaaa], conforme Planilha de Custos e Formação de Preços anexa a este instrumento (SEI nº #######).

\r\n\r\n

DO FUNDAMENTO LEGAL

\r\n\r\n

O presente instrumento está amparado no [informar os dispositivos da legislação que permitem a formalização do presente Termo de Apostilamento].

\r\n\r\n

Observação (apagar): O item abaixo é aplicável apenas nos casos de repactuação de preços e/ou reajuste.

\r\n\r\n

DO VALOR DO CONTRATO APÓS O PROCEDIMENTO

\r\n\r\n

Após o procedimento [informar se é repactuação de preços e/ou reajuste], o valor global anual estimado do CONTRATO ORIGINAL passará de R$ [informar o valor original] para R$ [informar o valor após o procedimento], a partir de [informar a data inicial no formato dd/mm/aaaa], inclusos todos os custos e despesas contratuais.

\r\n\r\n

O valor mensal estimado do CONTRATO ORIGINAL, a partir de [informar a data inicial no formato dd/mm/aaaa], será de R$ [valor em número e por extenso].

\r\n\r\n

O CONTRATO ORIGINAL passará a dispor como anexo a(s) Planilha(s) de Custos e Formação de Preços anexa(s) ao presente instrumento (SEI nº #######).

\r\n\r\n

DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

A despesa decorrente do presente Termo de Apostilamento, no valor total estimado de R$ [digitar o número e por extenso] para o período de [informar a data de início e de término que coincide com o final da vigência no formato dd/mm/aaaa], correrá à conta de créditos orçamentários consignados à CONTRATANTE, disponibilizados na UGR [informar o número][informar o nome]; Programa de Trabalho nº [informar o número]; Natureza de Despesa nº [informar o número da ND][informar a descrição da ND]; Projeto/Atividade nº [informar o número].

\r\n\r\n

Para atender a despesa prevista com o procedimento, referente ao período de [informar a data de início e de término no formato dd/mm/aaaa], no valor estimado de R$ [digitar o número e por extenso], foi emitida a Nota de Empenho nº [informar o número], datada de [digite a data de emissão no formato dd/mm/aaaa], no valor de R$ [digitar o número e por extenso], sem prejuízo da emissão de reforços ou anulações em razão de disponibilidade orçamentária, alterações no Programa de Trabalho ou em decorrência de novas determinações legais.

\r\n\r\n

A despesa referente ao período [informar o exercício seguinte, no seguinte formato: 1/1/aaaa a dd/mm/aaaa], no valor de R$ [valor em número e por extenso] será alocada à dotação orçamentária prevista para atendimento dessa finalidade, a ser consignada à @descricao_orgao_maiusculas@, pela respectiva Lei Orçamentária Anual.

\r\n\r\n

O valor efetivo do procedimento a ser pago pela CONTRATANTE à CONTRATADA deverá ser apurado com base na execução contratual, a partir de [informar a data de início no formato dd/mm/aaaa].

\r\n\r\n

A fatura a ser apresentada pela CONTRATADA referente ao período de prestação do serviço no mês subsequente à assinatura do presente Termo de Apostilamento já deverá considerar os novos preços tratados neste instrumento.

\r\n\r\n

DA RATIFICAÇÃO

\r\n\r\n

Permanecem inalteradas as demais Cláusulas e condições do CONTRATO ORIGINAL e de outros instrumentos não modificadas por este Termo de Apostilamento.

\r\n\r\n

  

\r\n\r\n

E, para firmeza e prova de assim haverem, após ter sido lido juntamente com seu(s) anexo(s), o presente Termo de Apostilamento é assinado eletronicamente pelos Representantes da Contratante.

\r\n',30,'N','N','S','N','N','N','S','S'),(686,104,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(687,104,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(688,105,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(689,105,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(690,105,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(691,105,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

RESCISÃO AMIGÁVEL AO CONTRATO Nº x/aaaa DE [DIGITE AQUI SE É DE "PRESTAÇÃO DE SERVIÇOS" OU "FORNECIMENTO DE BENS"], QUE CELEBRAM ENTRE SI A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo da Sede/GR], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], e de outro lado a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA, neste ato representada pelo Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], [profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número],

\r\n\r\n

CONSIDERANDO o conteúdo do [identificar o documento da CONTRATANTE que solicitou a rescisão] (SEI nº #######) e o teor do [identificar o documento com a manifestação da CONTRATADA] (SEI nº #######);

\r\n\r\n

resolvem celebrar o presente Termo de Rescisão Amigável ao Contrato nº X/AAAA, doravante denominado CONTRATO ORIGINAL, que será regido pela Lei nº 8.666, 21 de junho de 1993, e legislação correlata, sob os termos e condições a seguir estabelecidos:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente termo tem por objeto a rescisão amigável do CONTRATO ORIGINAL, tendo em vista [informar o motivo que está ensejando a rescisão contratual].

\r\n\r\n

CLÁUSULA SEGUNDA – DO FUNDAMENTO LEGAL

\r\n\r\n

O presente instrumento está amparado no [informar os dispositivos da legislação e do CONTRATO ORIGINAL que permitem a formalização do presente Termo de Rescisão Amigável].

\r\n\r\n

CLÁUSULA TERCEIRA – DO DISTRATO

\r\n\r\n

Por força da presente rescisão, as partes dão por terminado, a partir da assinatura do presente termo, o CONTRATO ORIGINAL, nada mais tendo a reclamar uma da outra, a qualquer título e em qualquer época, relativamente às obrigações contratuais assumidas, exceto as remanescentes até [informar a data do último dia de execução contratual no formato dd/mm/aaaa].

\r\n\r\n

CLÁUSULA QUARTA – DA PUBLICAÇÃO

\r\n\r\n

A CONTRATANTE providenciará a publicação do extrato do presente Termo de Rescisão Amigável na imprensa oficial até o quinto dia útil do mês seguinte ao de sua assinatura, para ocorrer no prazo de vinte dias daquela data.

\r\n\r\n

  

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Termo de Rescisão Amigável é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(692,105,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(693,105,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(694,106,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(695,106,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(696,106,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(697,106,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

rESCISÃO UNILATERAL DO CONTRATO Nº x/aaaa DE [DIGITE AQUI SE É DE "PRESTAÇÃO DE SERVIÇOS" OU "FORNECIMENTO DE BENS"], CELEBRADO ENTRE A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo da Sede/GR], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], vem rescindir unilateralmente o Contrato nº X/AAAA, doravante denominado CONTRATO ORIGINAL, celebrado com a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA,

\r\n\r\n

CONSIDERANDO o conteúdo do [identificar o documento da CONTRATANTE que solicitou a rescisão] (SEI nº #######) e o teor do [identificar o documento com a manifestação da CONTRATADA] (SEI nº #######), conforme segue:

\r\n\r\n

DO OBJETO

\r\n\r\n

O presente termo tem por objeto a rescisão unilateral do CONTRATO ORIGINAL, tendo em vista [informar o motivo que está ensejando a rescisão contratual].

\r\n\r\n

DO FUNDAMENTO LEGAL

\r\n\r\n

O presente instrumento está amparado no [informar os dispositivos da legislação e do CONTRATO ORIGINAL que permitem a formalização do presente Termo de Rescisão Unilateral].

\r\n\r\n

DA POSSIBILIDADE DE APLICAÇÃO DE SANÇÕES ADMINISTRATIVAS

\r\n\r\n

A presente rescisão ocorrerá sem prejuízo das sanções previstas contratualmente.

\r\n\r\n

DOS CRÉDITOS DECORRENTES DO CONTRATO

\r\n\r\n

A CONTRATANTE poderá reter os créditos decorrentes do contrato até o limite dos prejuízos causados à Administração, na forma do art. 80, inciso IV, da Lei nº 8.666, de 21 de junho de 1993.

\r\n\r\n

DO DISTRATO

\r\n\r\n

Por força da presente rescisão, a CONTRATANTE dá por terminado, a partir de [informar a data do último dia de execução contratual no formato dd/mm/aaaa], o CONTRATO ORIGINAL, nada mais tendo a reclamar uma da outra, a qualquer título e em qualquer época, relativamente às obrigações contratuais assumidas, exceto as remanescentes até a presente data.

\r\n\r\n

DA PUBLICAÇÃO

\r\n\r\n

A CONTRATANTE providenciará a publicação do extrato do presente Termo de Rescisão Unilateral na imprensa oficial até o quinto dia útil do mês seguinte ao de sua assinatura, para ocorrer no prazo de vinte dias daquela data.

\r\n\r\n

  

\r\n\r\n

E, para firmeza e prova de assim haverem, após ter sido lido juntamente com seu(s) anexo(s), o presente Termo de Rescisão Unilateral é assinado eletronicamente pelos Representantes da Contratante.

\r\n',30,'N','N','S','N','N','N','S','S'),(698,106,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(699,106,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(700,107,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(701,107,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(702,107,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(703,107,'Corpo do Texto','

Unidade Gestora: [sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

@serie@ QUE ENTRE SI CELEBRAM A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DO OUTRO ÓRGÃO OU ENTIDADE], VISANDO O [DIGITE AQUI A IDENTIFICAÇÃO RESUMIDA DO OBJETO].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede no [digite aqui o endereço completo da Sede/GR], doravante denominada @sigla_orgao_origem@, neste ato representada por seu Presidente, Senhor [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e por seu Conselheiro(a), Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e o/a [NOME DO OUTRO ÓRGÃO OU ENTIDADE], inscrito(a) no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede no [digite aqui o endereço completo da sede], doravante denominada [SIGLA], neste ato representada por seu/sua [Cargo do Signatário], Senhor(a) [nome completo], [nacionalidade], portador(a) da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], considerando o constante no processo nº @processo@, resolvem celebrar o presente @serie@, mediante as seguintes cláusulas e condições:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente @serie@ tem por objeto [... ....].

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLAUSULA SEGUNDA – DO OBJETIVO

\r\n\r\n

O presente @serie@ visa [...]

\r\n\r\n

CLÁUSULA TERCEIRA – DO FUNDAMENTO LEGAL

\r\n\r\n

O presente @serie@ reger-se-á pelo disposto no art. 116 da Lei nº 8.666, de 21 de junho de 1993 e legislação correlata.

\r\n\r\n

CLÁUSULA QUARTA – DAS OBRIGAÇÕES DOS PARTÍCIPES

\r\n\r\n

São obrigações comuns de ambos os partícipes:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

São obrigações exclusivas da @sigla_orgao_origem@:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

São obrigações exclusivas do órgão/entidade X:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA QUINTA – DA VIGÊNCIA

\r\n\r\n

Este @serie@ entrará em vigor na data de sua assinatura, pelo prazo de [indicar a quantidade de meses] meses, podendo ser prorrogado, a critério dos partícipes, por Termos Aditivos, desde que tal interesse seja manifestado, previamente e por escrito, em até 60 (sessenta) dias antes do término de sua vigência.

\r\n\r\n

CLÁUSULA SEXTA – DA MODIFICAÇÃO

\r\n\r\n

O presente instrumento poderá a qualquer tempo ser modificado, exceto quanto ao seu Objeto, mediante Termos Aditivos, desde que tal interesse seja manifestado por um dos partícipes previamente e por escrito, devendo em qualquer caso haver a anuência da outra parte com a alteração proposta.

\r\n\r\n

CLÁUSULA SÉTIMA – DA DENÚNCIA 

\r\n\r\n

Este @serie@ poderá, a qualquer tempo, ser denunciado pelos PARTÍCIPES, devendo o interessado externar formalmente a sua intenção nesse sentido, com a antecedência mínima de 60 (sessenta) dias da data em que se pretenda que sejam encerradas as atividades, respeitadas as obrigações assumidas com terceiros e saldados os compromissos financeiros entre os PARTÍCIPES, creditando, igualmente, os benefícios adquiridos no período.

\r\n\r\n

CLÁUSULA OITAVA – DA RESCISÃO

\r\n\r\n

A rescisão decorrerá do descumprimento de quaisquer das cláusulas ou condições estabelecidas neste @serie@, devendo o PARTÍCIPE que se julgar prejudicado notificar o outro PARTÍCIPE  para que apresente esclarecimentos  no prazo de 15 (quinze) dias corridos.

\r\n\r\n

Prestados os esclarecimentos, os PARTÍCIPES deverão, por mútuo consenso, decidir pela rescisão ou manutenção do @serie@.

\r\n\r\n

Decorrido o prazo para esclarecimento, caso não haja resposta, o @serie@ será rescindido de pleno direito, independentemente de notificações ou interpelações judiciais ou extrajudiciais. 

\r\n\r\n

CLÁUSULA NONA – DOS RECURSOS FINANCEIROS

\r\n\r\n

O presente @serie@ não envolve a transferência de recursos financeiros entre os partícipes, cabendo a cada um o custeio das despesas inerentes à execução das ações e obrigações sob sua competência.

\r\n\r\n

Cada parte responsabilizar-se-á pela remuneração de seus respectivos servidores, designados para as ações e atividades previstas neste @serie@, como de quaisquer outros encargos a eles pertinentes.

\r\n\r\n

CLÁUSULA DÉCIMA - DA FISCALIZAÇÃO

\r\n\r\n

Ficam os partícipes responsáveis por exercer a fiscalização da execução do objeto deste @serie@, sendo a @sigla_orgao_origem@ representada pela [indicar a unidade que será responsável] e a [ÓRGÃO/ENTIDADE] representada pela [indicar a unidade que será responsável], as quais designarão servidores responsáveis para tanto.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DA PUBLICAÇÃO

\r\n\r\n

O presente @serie@ será publicado, na forma de extrato, até o quinto dia útil do mês subsequente ao da sua assinatura, no Diário Oficial da União, conforme disposto no art. 61, parágrafo único, da Lei nº 8.666/1993, ficando as despesas da publicação a cargo da [indique o nome da parte que fará a publicação do extrato].

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DAS DISPOSIÇÕES GERAIS E CASOS OMISSOS

\r\n\r\n

Os casos omissos e as dúvidas porventura existentes serão dirimidos mediante entendimentos entre os partícipes, formalizados por meio de correspondência.

\r\n\r\n

Os casos omissos deste @serie@ serão resolvidos conforme os preceitos de direito público, aplicando-lhes, supletivamente, os princípios da teoria geral dos contratos e as disposições de direito privado.

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DO FORO

\r\n\r\n

As questões decorrentes da execução do presente @serie@ e dos instrumentos específicos dele decorrentes que não possam ser dirimidas administrativamente serão processadas e julgadas no Foro da [digite aqui o foro do Poder Judiciário], renunciando os partícipes a qualquer outro, por mais privilegiado que seja.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente @serie@ é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(704,107,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(705,107,'Anexos','

ANEXOS AO @serie@

\r\n\r\n

PLANO DE TRABALHO

\r\n\r\n

OBJETO

\r\n\r\n

[Identificação do objeto a ser executado]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

PRODUTOS E METAS

\r\n\r\n

[Descrição das metas a serem atingidas]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

ETAPAS OU FASES DA EXECUÇÃO

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

PLANO DE APLICAÇÃO DOS RECURSOS FINANCEIROS [se houver]

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Cronograma de desembolso:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CRONOGRAMA DE EXECUÇÃO

\r\n\r\n

A execução global do objeto do @serie@ terá início em [data no formato dd/mm/aaaa] e fim em [data no formato dd/mm/aaaa].

\r\n\r\n

As etapas ou fases previstas para sua execução terão o seguinte cronograma:

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n',50,'N','N','N','N','N','N','S','S'),(706,107,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(707,108,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(708,108,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(709,108,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(710,108,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
  \r\n

Contrato DE [DIGITE AQUI O OBJETO] QUE CELEBRAM ENTRE SI A @descricao_orgao_maiusculas@ E A [DIGITE AQUI O NOME DA EMPRESA].

\r\n
\r\n\r\n

A @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com endereço na [digite aqui o endereço completo], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número], e de outro lado a [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], doravante denominada CONTRATADA, neste ato representada pelo Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], [profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], resolvem celebrar o presente Contrato, que será regido pela Lei nº 8.666, 21 de junho de 1993, legislação correlata e pelo Edital e anexos do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico] (Processo nº @processo@), sob os termos e condições a seguir estabelecidos:

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

O presente Contrato tem por objeto a execução, pela CONTRATADA, de [digite aqui o tipo de contratação, se prestação de serviços ou fornecimento de bens], conforme especificações e quantitativos estabelecidos no Termo de Referência, Anexo I do Edital do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico], com a finalidade de atender às necessidades da CONTRATANTE.

\r\n\r\n

Integram este Contrato, independente de sua transcrição, o Edital de Licitação, a Proposta da CONTRATADA e demais elementos constantes do referido processo.

\r\n\r\n

O presente Contrato regula-se por suas cláusulas e pelos preceitos de direito público, aplicando-lhe, supletivamente, os princípios da teoria geral dos contratos, as disposições de direito privado e, em especial, o Código Civil – Lei nº 10.406, de 10 de janeiro de 2002, e o Código de Defesa do Consumidor – Lei nº 8.078, de 11 de setembro de 1990.

\r\n\r\n

CLÁUSULA SEGUNDA – DO VALOR DO CONTRATO

\r\n\r\n

A CONTRATANTE pagará à CONTRATADA, pela execução do objeto deste Contrato, o valor global de R$ [digite aqui o valor do contrato].

\r\n\r\n

Quaisquer tributos, encargos, custos ou despesas, diretos ou indiretos, omitidos da proposta da CONTRATADA ou incorretamente cotados, serão considerados como inclusos nos preços, não sendo considerados pleitos de acréscimos, a esse ou a qualquer título, devendo o serviço ser executado sem ônus adicional à CONTRATANTE.

\r\n\r\n

Caso haja equívoco no dimensionamento dos quantitativos da proposta, a CONTRATADA deverá arcar com o ônus decorrente, devendo complementá-los, caso o previsto inicialmente não seja satisfatório para o atendimento ao objeto do Pregão, exceto quando ocorrer algum dos eventos arrolados no art. 57, § 1º, da Lei nº 8.666/1993 (art. 23 da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Os preços constantes da proposta anexa a este Contrato são de exclusiva responsabilidade da CONTRATADA, não lhe assistindo o direito de pleitear qualquer alteração, sob alegação de erro, omissão ou qualquer outro pretexto.

\r\n\r\n

A CONTRATADA é a única responsável pela cotação correta dos encargos tributários na planilha de custos e formação de preços. Portanto, em caso de erro ou cotação incompatível com o regime tributário a que se submete, serão adotadas as orientações a seguir:

\r\n\r\n

cotação de percentual menor que o adequado: o percentual será mantido durante toda a execução contratual;

\r\n\r\n

cotação de percentual maior que o adequado: para atender as orientações dos Acórdãos TCU nº 3.037/2009-Plenário, nº 1.696/2010-2ª Câmara, nº 1.442/2010-2ª Câmara e nº 387/2010-2ª Câmara, o excesso será suprimido, unilateralmente, da planilha e haverá glosa/dedução, quando do pagamento ou da repactuação, para fins de total ressarcimento do débito.

\r\n\r\n

CLÁUSULA TERCEIRA – DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

A despesa com a execução dos serviços de que trata o objeto correrá à conta de créditos orçamentários consignados à CONTRATANTE, para o exercício de [digite aqui o ano do exercício], sob a seguinte classificação: Programa de Trabalho [digite aqui o PT]; Subelemento [digite aqui o subelemento]; ID [digite aqui o ID].

\r\n\r\n

Os valores alocados serão distribuídos na(s) seguinte(s) Natureza(s) de Despesa (ND):

\r\n\r\n

R$ [digite aqui o valor] na ND [digite aqui a ND];

\r\n\r\n

R$ [digite aqui o valor] na ND [digite aqui a ND];

\r\n\r\n

A despesa para os exercícios subsequentes, quando for o caso, será alocada à dotação orçamentária prevista para atendimento desta finalidade, a ser consignada à CONTRATANTE pela Lei Orçamentária Anual.

\r\n\r\n

CLÁUSULA QUARTA – DO EMPENHO DA DESPESA

\r\n\r\n

Os recursos necessários ao atendimento da despesa inerente ao presente Contrato estão regularmente inscritos na(s) Nota(s) de Empenho(s) abaixo, correspondente(s) ao exercício em curso:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Nº Empenho

\r\n
\r\n

Data

\r\n
\r\n

Valor (R$)

\r\n
\r\n

Natureza de Despesa (ND)

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Se a vigência contratual estender-se para o exercício subsequente, será emitida nova nota de empenho.

\r\n\r\n

O crédito orçamentário e o respectivo empenho para atender a parcela da despesa relativa à parte a ser executada em exercício futuro, serão indicados por meio de termos aditivos ou apostilamentos.

\r\n\r\n

CLÁUSULA QUINTA – DA VIGÊNCIA

\r\n\r\n

O prazo de vigência deste Contrato é de [digite aqui o número] meses, contados da sua assinatura, com eficácia após a publicação de seu extrato no Diário Oficial da União.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados, em especial aqueles com dedicação exclusiva de mão de obra.

\r\n\r\n

A critério da CONTRATANTE e com a anuência da CONTRATADA, este Contrato pode ser prorrogado por iguais e sucessivos períodos, mediante Termo Aditivo, até o limite de 60 (sessenta) meses, desde que comprovada a vantajosidade para a Administração das condições e dos preços contratados.

\r\n\r\n

Em caráter excepcional, devidamente justificado no processo e mediante autorização da autoridade superior, o prazo de que trata o item anterior poderá ser prorrogado em até 12 (doze) meses, na forma estabelecida no art. 57, § 4º, da Lei nº 8.666/1993.

\r\n\r\n

A CONTRATADA não tem direito subjetivo à prorrogação contratual, que objetiva a obtenção de preços e condições mais vantajosas para a Administração, conforme estabelece o art. 57, inciso II, da Lei nº 8.666/1993.

\r\n\r\n

A prorrogação somente poderá ocorrer desde que haja autorização formal da autoridade competente e observados os seguintes requisitos:

\r\n\r\n

os serviços tenham sido prestados regularmente;

\r\n\r\n

a Administração mantenha interesse na realização do serviço;

\r\n\r\n

o valor do Contrato permaneça economicamente vantajoso para a Administração; e

\r\n\r\n

a CONTRATADA manifeste expressamente interesse na prorrogação.

\r\n\r\n

Quando da prorrogação contratual, a CONTRATANTE:

\r\n\r\n

realizará negociação contratual para a redução e/ou eliminação dos custos fixos ou variáveis não renováveis que já tenham sido amortizados ou pagos no primeiro ano da contratação;

\r\n\r\n

a pelo menos 60 (sessenta) dias do término da vigência deste Contrato, a CONTRATANTE expedirá comunicado à CONTRATADA para que esta manifeste, dentro de 03 (três) dias, contados do recebimento da consulta, seu interesse na prorrogação do atual Contrato;

\r\n\r\n

se positiva a resposta da CONTRATADA, a CONTRATANTE providenciará, no devido tempo, o respectivo Termo Aditivo;

\r\n\r\n

esta resposta terá caráter irretratável e, portanto, a CONTRATADA dela não poderá, após expressa manifestação neste sentido, alegar arrependimento para reformular a sua decisão;

\r\n\r\n

eventual desistência da CONTRATADA após expressa manifestação de interesse na prorrogação contratual ensejará pela CONTRATANTE a devida aplicação de penalidade, nos termos deste Contrato;

\r\n\r\n

caso a CONTRATADA manifeste, num primeiro momento, por não ter interesse em prorrogar o Contrato e posteriormente venha a se retratar, demonstrando vontade de prorrogá-lo, fica a critério da CONTRATANTE, como faculdade e prerrogativa, proceder à prorrogação ou dar curso a novo processo de licitação.

\r\n\r\n

A CONTRATANTE não prorrogará o Contrato quando a CONTRATADA tiver sido declarada inidônea pela Administração Pública, impedida de participar de procedimentos licitatórios ou contratar no âmbito da Administração Pública Federal ou, ainda, suspensa no âmbito da CONTRATANTE, enquanto perdurarem os efeitos.

\r\n\r\n

A prorrogação do Contrato, quando demonstrada a vantajosidade para a CONTRATANTE, deverá ser promovida mediante celebração de Termo Aditivo, o qual deverá ser submetido à aprovação da consultoria jurídica.

\r\n\r\n

CLÁUSULA SEXTA – DA GARANTIA DE EXECUÇÃO DO CONTRATO

\r\n\r\n

A CONTRATADA deverá apresentar, no prazo máximo de 10 (dez) dias úteis, prorrogáveis por igual período, a critério da CONTRATANTE, contado da assinatura do Contrato, comprovante de prestação de garantia, podendo optar por caução em dinheiro ou títulos da dívida pública, seguro-garantia ou fiança bancária, devendo o valor da garantia corresponder a [digite aqui o percentual, limitado a 5% do valor do contrato] do valor total do Contrato.

\r\n\r\n

A garantia, qualquer que seja a modalidade escolhida, assegurará o pagamento de:

\r\n\r\n

prejuízos advindos do não cumprimento do objeto do Contrato;

\r\n\r\n

prejuízos diretos causados à Administração decorrentes de culpa ou dolo durante a execução do Contrato;

\r\n\r\n

multas moratórias e punitivas aplicadas pela Administração à CONTRATADA; e

\r\n\r\n

obrigações trabalhistas e previdenciárias de qualquer natureza, não adimplidas pela CONTRATADA, quando couber.

\r\n\r\n

A modalidade seguro-garantia somente será aceita se contemplar todos os eventos indicados no item anterior, observada a legislação que rege a matéria.

\r\n\r\n

A garantia em dinheiro deverá ser efetuada na Caixa Econômica Federal em conta específica com correção monetária, em favor do CONTRATANTE.

\r\n\r\n

A inobservância do prazo fixado para apresentação da garantia acarretará a aplicação de multa de 0,07% (sete centésimos por cento) do valor do Contrato por dia de atraso, observado o máximo de 2% (dois por cento).

\r\n\r\n

O atraso superior a 25 (vinte e cinco) dias autoriza a Administração a promover a rescisão do Contrato por descumprimento ou cumprimento irregular de suas cláusulas, conforme dispõem os incisos I e II do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

O garantidor não é parte para figurar em processo administrativo instaurado pela CONTRATANTE com o objetivo de apurar prejuízos e/ou aplicar sanções à CONTRATADA.

\r\n\r\n

A garantia será considerada extinta:

\r\n\r\n

com a devolução da apólice, carta fiança ou autorização para o levantamento de importâncias depositadas em dinheiro a título de garantia, acompanhada de declaração da Administração, mediante termo circunstanciado, de que a contratada cumpriu todas as cláusulas do Contrato; e

\r\n\r\n

após o término da vigência do Contrato (Circular SUSEP nº 477, de 30 de setembro de 2013, art. 8º, inciso I, e SIASG – COMUNICA nº 081380-SLTI/MP, de 1º de setembro de 2014).

\r\n\r\n

A CONTRATANTE executará a garantia na forma prevista na legislação que rege a matéria.

\r\n\r\n

A garantia deverá observar ao estabelecido na Instrução Normativa nº 02/2008-SLTI/MP com alterações posteriores, bem como na legislação que rege a matéria.

\r\n\r\n

Observação: O subitem abaixo deverá constar nas contratações continuadas.

\r\n\r\n

A garantia deve ter validade durante a execução do Contrato, devendo ser renovada a cada prorrogação e complementada a cada alteração contratual que implique em alteração do valor da contratação.

\r\n\r\n

A garantia deverá ser integralizada, no prazo máximo de 10 (dez) dias úteis, sempre que dela forem deduzidos quaisquer valores ou quando houver alteração para acréscimo de objeto.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a reter, a qualquer tempo, a garantia na forma prevista nesta cláusula.

\r\n\r\n

CLÁUSULA SÉTIMA – DA DESCRIÇÃO DETALHADA DOS SERVIÇOS E METODOLOGIAS DE EXECUÇÃO

\r\n\r\n

A descrição e metodologia de execução dos serviços constam do Termo de Referência da contratação.

\r\n\r\n

CLÁUSULA OITAVA – DAS OBRIGAÇÕES DA CONTRATADA

\r\n\r\n

Os serviços objeto do presente Contrato serão executados pela CONTRATADA obedecendo ao disposto no respectivo instrumento convocatório e seus anexos, na Lei nº 8.666/1993 e nas demais normas legais e regulamentares pertinentes, sendo, ainda, suas obrigações:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Obrigações Gerais

\r\n
\r\n

Grau de Penalidade em Caso de Descumprimento

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Digite aqui o texto descritivo da obrigação...

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n

Obriga-se a, sempre que demandado, fazer com que seus prepostos e funcionários efetivem credenciamento como usuário externo no sistema de processo eletrônico da CONTRATANTE, para assinatura de documentos eletrônicos padronizados pela CONTRATANTE.

\r\n
\r\n

[digite o grau de penalidade]

\r\n
\r\n\r\n

 

\r\n\r\n

CLÁUSULA NONA – DAS OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

Digite aqui o texto... .... .

\r\n\r\n

CLÁUSULA DÉCIMA – DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

\r\n\r\n

O acompanhamento e a fiscalização da execução do Contrato consistem na verificação da conformidade da prestação dos serviços e da alocação dos recursos necessários, de forma a assegurar o perfeito cumprimento do Contrato, devendo ser exercido pelo Gestor e pelo Agente Fiscalizador do Contrato, na forma do art. 67 da Lei nº 8.666/1993, do art. 6º do Decreto nº 2.271/1997 e da Instrução Normativa nº 02/2008-SLTI/MP, no que couber.

\r\n\r\n

A gestão do presente Contrato será de responsabilidade da [digite aqui o nome da Unidade que será responsável].

\r\n\r\n

As decisões e providências que ultrapassarem a competência do Agente Fiscalizador deverão ser solicitadas ao Gestor, em tempo hábil, para adoção das medidas convenientes.

\r\n\r\n

A comunicação entre a Gestão e/ou Fiscalização Contratual e a CONTRATADA será por meio escrito, sempre que se entender necessário o registro de ocorrência relacionada com a execução da contratação.

\r\n\r\n

Ao Gestor e Agente Fiscalizador do Contrato designados pela CONTRATANTE caberá o ateste das faturas dos serviços prestados, desde que cumpridas as exigências estabelecidas no Contrato e no Edital de licitação e seus anexos.

\r\n\r\n

O gestor e Agente Fiscalizador do Contrato podem sustar qualquer trabalho/entrega que esteja em desacordo com o especificado, sempre que essa medida se tornar necessária.

\r\n\r\n

A não manutenção das condições de habilitação pelo contratado poderá dar ensejo à rescisão contratual, sem prejuízo das demais sanções.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados, em especial aqueles com dedicação exclusiva de mão de obra.

\r\n\r\n

A análise da documentação fiscal, trabalhista e previdenciária caberá ao gestor ou ao fiscal do Contrato.

\r\n\r\n

A fiscalização dos contratos, no que se refere ao cumprimento das obrigações trabalhistas será realizada com base em critérios estatísticos, levando-se em consideração falhas que impactem o Contrato como um todo e não apenas erros e falhas eventuais no pagamento de alguma vantagem a um determinado empregado (art. 31, § 3º, da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Para a efetiva gestão e fiscalização contratual, a CONTRATADA deverá apresentar os seguintes documentos:

\r\n\r\n

no primeiro mês da prestação dos serviços, e sempre que houver admissão de novos empregados:

\r\n\r\n

relação dos empregados, contendo nome completo, cargo ou função, horário do posto de trabalho, números da carteira de identidade (RG) e da inscrição no Cadastro de Pessoas Físicas (CPF), com indicação dos responsáveis técnicos pela execução dos serviços, quando for o caso;

\r\n\r\n

Carteira de Trabalho e Previdência Social (CTPS) dos empregados admitidos e dos responsáveis técnicos pela execução dos serviços, quando for o caso, devidamente assinada pela contratada; e

\r\n\r\n

exames médicos admissionais dos empregados da contratada que prestarão os serviços;

\r\n\r\n

até o dia trinta do mês seguinte ao da prestação dos serviços ao setor responsável pela fiscalização do Contrato dos seguintes documentos, quando não for possível a verificação da regularidade dos mesmos no Sistema de Cadastro de Fornecedores (SICAF):

\r\n\r\n

prova de regularidade relativa à Seguridade Social;

\r\n\r\n

certidão conjunta relativa aos tributos federais e à Dívida Ativa da União;

\r\n\r\n

certidões que comprovem a regularidade perante as Fazendas Estadual, Distrital e Municipal do domicílio ou sede do contratado;

\r\n\r\n

Certidão de Regularidade do FGTS (CRF); e

\r\n\r\n

Certidão Negativa de Débitos Trabalhistas (CNDT);

\r\n\r\n

quando solicitado pela Administração, de quaisquer dos seguintes documentos:

\r\n\r\n

extrato da conta do INSS e do FGTS de qualquer empregado, a critério da Administração contratante;

\r\n\r\n

cópia da folha de pagamento analítica de qualquer mês da prestação dos serviços, em que conste como tomador o órgão ou entidade contratante;

\r\n\r\n

cópia dos contracheques dos empregados relativos a qualquer mês da prestação dos serviços ou, ainda, quando necessário, cópia de recibos de depósitos bancários;

\r\n\r\n

comprovantes de entrega de benefícios suplementares (vale-transporte, vale alimentação, entre outros), a que estiver obrigada por força de lei ou de convenção ou acordo coletivo de trabalho, relativos a qualquer mês da prestação dos serviços e de qualquer empregado; e

\r\n\r\n

comprovantes de realização de eventuais cursos de treinamento e reciclagem que forem exigidos por lei ou pelo Contrato;

\r\n\r\n

quando da extinção ou rescisão do Contrato, após o último mês de prestação dos serviços, no prazo definido no Contrato:

\r\n\r\n

termos de rescisão dos contratos de trabalho dos empregados prestadores de serviço, devidamente homologados, quando exigível pelo sindicato da categoria;

\r\n\r\n

guias de recolhimento da contribuição previdenciária e do FGTS, referentes às rescisões contratuais;

\r\n\r\n

extratos dos depósitos efetuados nas contas vinculadas individuais do FGTS de cada empregado dispensado; e

\r\n\r\n

exames médicos demissionais dos empregados dispensados.

\r\n\r\n

A Administração deverá analisar a documentação solicitada no subitem “d” do item anterior no prazo de 30 (trinta) dias após o recebimento dos documentos, prorrogáveis por mais 30 (trinta) dias, justificadamente.

\r\n\r\n

Os documentos necessários à comprovação do cumprimento das obrigações sociais trabalhistas exigidos poderão ser apresentados em original ou por qualquer processo de cópia autenticada por cartório competente ou por servidor da Administração.

\r\n\r\n

Quando do encerramento do Contrato, até que a contratada comprove o pagamento das verbas rescisórias ou que os empregados tenham sido realocados em outra atividade de prestação de serviços, sem que ocorra a interrupção do Contrato de trabalho, a CONTRATANTE reterá a garantia prestada e os valores das faturas correspondentes a 1 (um) mês de serviço, podendo utilizá-los para o pagamento direto aos trabalhadores no caso de a CONTRATADA não efetuar os pagamentos em até 2 (dois) meses do encerramento da vigência contratual.

\r\n\r\n

Caberá também ao Gestor ou Agente Fiscalizador do Contrato:

\r\n\r\n

comunicar ao Ministério da Previdência Social e à Receita Federal do Brasil (RFB) qualquer irregularidade no recolhimento das contribuições previdenciárias.

\r\n\r\n

comunicar ao Ministério do Trabalho e Emprego (MTE) qualquer irregularidade no recolhimento do FGTS dos trabalhadores terceirizados.

\r\n\r\n

O descumprimento das obrigações trabalhistas ou a não manutenção das condições de habilitação pelo contratado poderá dar ensejo à rescisão contratual, sem prejuízo das demais sanções.

\r\n\r\n

A Administração poderá conceder um prazo para que a contratada regularize suas obrigações trabalhistas ou suas condições de habilitação, sob pena de rescisão contratual, quando não identificar má-fé ou a incapacidade da empresa de corrigir a situação.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DA LIQUIDAÇÃO E DO PAGAMENTO

\r\n\r\n

Observação (apagar): Atentar para o prazo máximo de 30 dias para pagamento, conforme disposto no artigo 40, XIV, “a”, da Lei nº 8.666/1993. Esse prazo abrange tanto o prazo para a empresa apresentar a Nota Fiscal/Fatura Eletrônica, disciplinado abaixo, como o prazo para o fiscal atestá-la, e demais trâmites burocráticos. Ou seja, é o prazo desde a apresentação até o envio da ordem bancária.

\r\n\r\n

O pagamento será efetuado pela CONTRATANTE no prazo de [definir a periodicidade do pagamento], contatos do dia útil seguinte à data do peticionamento eletrônico da Nota Fiscal/Fatura Eletrônica pela CONTRATADA, que deverá conter o detalhamento dos serviços executados e materiais empregados, conforme disposto no art. 73 da Lei nº 8.666/1993, observado o disposto no art. 35 da Instrução Normativa nº 02/2008-SLTI/MP.

\r\n\r\n

O pagamento será efetuado por meio de ordem bancária para crédito em banco, agência e conta corrente indicados pela CONTRATADA.

\r\n\r\n

Os pagamentos decorrentes de despesas cujos valores não ultrapassem o limite de que trata o inciso II do art. 24 da Lei 8.666, de 1993, deverão ser efetuados no prazo de até 5 (cinco) dias úteis, contados do dia útil seguinte à data do peticionamento eletrônico da Nota Fiscal/Fatura Eletrônica pela CONTRATADA, nos termos do art. 5º, § 3º, da Lei nº 8.666/1993.

\r\n\r\n

A apresentação da Nota Fiscal/Fatura Eletrônica deverá ocorrer no prazo de [definir o prazo para apresentação] dias, contado da data final do período de adimplemento da parcela da contratação a que aquela se referir, devendo estar acompanhada dos documentos mencionados no § 1º do art. 36 da Instrução Normativa nº 02/2008-SLTI/MP.

\r\n\r\n

A apresentação da Nota Fiscal/Fatura Eletrônica e dos demais documentos necessários ao atesto e pagamento deverão ocorrer sempre em conjunto e exclusivamente por meio de peticionamento eletrônico pela CONTRATADA no Sistema Eletrônico de Informações (SEI) da CONTRATANTE, utilizando a funcionalidade de Peticionamento de Processo Novo e o tipo de processo "Gestão de Contrato: Processo de Pagamento".

\r\n\r\n

Para que o peticionamento eletrônico seja possível é impreterível que o representante da CONTRATADA possua cadastro como Usuário Externo no SEI da CONTRATANTE liberado, sendo de sua responsabilidade realizar o referido cadastro, conforme suas normas próprias, acessando a opção "Clique aqui se você ainda não está cadastrado" na página de Acesso Externo do SEI disponibilizado no seguinte endereço: http://localhost/sei/controlador_externo.php?acao=usuario_externo_logar&id_orgao_acesso_externo=0

\r\n\r\n

​​Caso a CONTRATADA não tenha procedido ao mencionado cadastro para realizar o peticionamento eletrônico, não será possível a realização do atesto.

\r\n\r\n

A Nota Fiscal/Fatura Eletrônica, estando regular, será atestada em até 10 (dez) dias úteis, contados do dia útil seguinte à data de seu peticionamento eletrônico pela CONTRATADA.

\r\n\r\n

O pagamento será efetuado em até 10 (dez) dias úteis, contados do dia útil seguinte ao atesto da Nota Fiscal/Fatura Eletrônica.

\r\n\r\n

Para o devido atesto, será necessária a apresentação dos seguintes documentos:

\r\n\r\n

Nota Fiscal/Fatura Eletrônica, com respectivo DANFE e, se aplicável, o arquivo xml correspondente;

\r\n\r\n

O documento de cobrança deverá conter o número do respectivo Contrato, o período da prestação dos serviços, o detalhamento dos serviços executados e o detalhamento dos tributos previstos na legislação tributária federal, estadual e municipal.

\r\n\r\n

Comprovantes da regularidade fiscal e trabalhista, constatada por meio de consulta online ao Sistema de Cadastramento Unificado de Fornecedores (SICAF) e ao sistema do Tribunal Superior do Trabalho (TST), ou, na impossibilidade de acesso aos referidos Sistemas, mediante consulta aos sítios eletrônicos oficiais ou à documentação mencionada no art. 29 da Lei nº 8.666/1993;

\r\n\r\n

Observação (apagar): A alínea abaixo cabe somente em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Para comprovação do detalhamento dos serviços executados, conforme disposto no art. 73 da Lei nº 8.666/1993 (art. 35 da Instrução Normativa nº 02/2008-SLTI/MP), deverá ser apresentada documentação que comprove os pagamentos dos salários e demais verbas trabalhistas, bem como das contribuições previdenciárias e do FGTS, conforme solicitada pela CONTRATANTE.

\r\n\r\n

Havendo erro na apresentação da Nota Fiscal/Fatura Eletrônica ou dos documentos pertinentes à contratação, ou ainda, circunstância que impeça a liquidação da despesa, como por exemplo, obrigação financeira pendente, decorrente de penalidade imposta ou inadimplência, o pagamento ficará sobrestado até que a CONTRATADA providencie as medidas saneadoras. Nesta hipótese, o prazo para pagamento iniciar-se-á após a comprovação da regularização da situação, não acarretando qualquer ônus para a CONTRATANTE.

\r\n\r\n

Verificada a não manutenção das condições de habilitação pelo contratado, perante o SICAF e TST, sem prejuízo do pagamento, a CONTRATANTE notificará, por escrito, a CONTRATADA da ocorrência, para que, no prazo de 5 (cinco) dias úteis, contados do recebimento da notificação, promova a regularização ou apresente sua defesa, sob pena de rescisão do Contrato (Instrução Normativa nº 04/2013-SLTI/MP e Lei nº 12.440, de 11 de julho de 2011).

\r\n\r\n

A existência de registro no SICAF de aplicação de penalidade à empresa CONTRATADA por órgão da Administração Pública não obsta o pagamento.

\r\n\r\n

A Nota Fiscal/Fatura Eletrônica será obrigatoriamente atestada pelo Gestor e Agente Fiscalizador da CONTRATANTE, designados para acompanhar e fiscalizar os serviços, desde que os mesmos tenham sido executados a contento, sem o que não poderá ser feito o pagamento correspondente.

\r\n\r\n

Nenhum pagamento será efetuado à CONTRATADA antes de paga ou relevada a multa que lhe tenha sido aplicada.

\r\n\r\n

A CONTRATANTE pode deduzir do montante a pagar os valores correspondentes a multas ou indenizações devidas pela CONTRATADA, nos termos deste Contrato.

\r\n\r\n

Os documentos de cobrança deverão ser emitidos com o CNPJ indicado no preâmbulo do Contrato. Caso haja mudança do CNPJ, a CONTRATADA deverá solicitar sua alteração, com as devidas justificativas, apresentando a mesma documentação exigida na licitação para análise e aprovação. Após a análise, sendo aprovada a alteração, será formalizada por meio de Termo Aditivo ao Contrato Original.

\r\n\r\n

Caso o documento de cobrança apresente erro ou inconsistência, acarretará a devolução do referido documento, dentro do prazo estipulado para atesto, interrompendo-o quando da devolução, devendo a CONTRATADA encaminhar nova cobrança para o devido atesto.

\r\n\r\n

Sendo identificada cobrança indevida após o pagamento do documento de cobrança, a CONTRATANTE notificará à CONTRATADA para que seja feito o acerto no faturamento do mês subsequente, ou no caso do Contrato já encerrado o imediato reembolso do valor.

\r\n\r\n

Ocorrendo atraso no pagamento, haverá compensação financeira sobre o valor devido, desde que para tanto a CONTRATADA não tenha concorrido de alguma forma e que por essa seja requerida, serão calculados à taxa de 0,5% (meio por cento) ao mês, ou 6% (seis por cento) ao ano, mediante a aplicação da fórmula demonstrada a seguir, para o período compreendido entre a data prevista para o adimplemento da obrigação e a data do efetivo pagamento:

\r\n\r\n

I = (TX/100)/365

\r\n\r\n

EM = I x N x VP

\r\n\r\n

Onde:

\r\n\r\n

I = Índice de atualização financeira;

\r\n\r\n

TX = Percentual da taxa de juros de mora anual;

\r\n\r\n

EM = Encargos Moratórios;

\r\n\r\n

N = Número de dias entre a data prevista para o pagamento e a do efetivo pagamento;

\r\n\r\n

VP = Valor da Parcela em atraso.

\r\n\r\n

Observação: Os itens abaixo cabem somente em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a fazer o desconto nas faturas e a realizar os pagamentos dos salários e demais verbas trabalhistas diretamente aos trabalhadores, bem como das contribuições previdenciárias e do FGTS, quando estes não forem adimplidos, sem prejuízo das sanções cabíveis e a reter, a qualquer tempo, a garantia na forma prevista neste Contrato.

\r\n\r\n

Quando não for possível a realização dos pagamentos a que se refere o item anterior pela CONTRATANTE, esses valores retidos por precaução serão depositados junto à Justiça do Trabalho, com o objetivo de serem utilizados exclusivamente no pagamento de salários e das demais verbas trabalhistas, bem como das contribuições sociais e FGTS.

\r\n\r\n

Haverá o desconto na fatura a ser paga pela Agência, do valor global pago a título de vale-transporte em relação aos empregados que expressamente optaram por não receber o benefício (Orientação Normativa nº 03/2014-SLTI/MP).

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DA ALTERAÇÃO DO CONTRATO

\r\n\r\n

Este Contrato poderá ser alterado, nas hipóteses previstas no art. 65 da Lei nº 8.666/1993, desde que haja interesse do CONTRATANTE, com a apresentação das devidas justificativas.

\r\n\r\n

A CONTRATADA, em decorrência de aumento ou diminuição quantitativa do objeto licitado, e obedecendo-se as condições inicialmente previstas no Contrato, ficará obrigada a aceitar os acréscimos ou supressões que se fizerem necessários à execução dos serviços até o limite de 25% (vinte e cinco por cento) do valor inicial atualizado do Contrato.

\r\n\r\n

Fica facultada, entretanto, a supressão além do limite acima estabelecido, mediante consenso entre os contratantes.

\r\n\r\n

 

\r\n\r\n

Observação: A cláusula abaixo de repactuação somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra. Nas contratações de serviços ou fornecimento de bens com mais de um ano cabe reajuste por índice e não repactuação. Nas contratações com menos de um ano não cabe reajuste.

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DA REPACTUAÇÃO

\r\n\r\n

É admitida a repactuação deste Contrato, desde que seja observado o interregno mínimo de um ano, contado das datas dos orçamentos aos quais a proposta se referir, admitindo-se, como termo inicial, a data do acordo, convenção, dissídio coletivo de trabalho vigente à época da apresentação da proposta, e a data limite para a apresentação da proposta em relação aos demais insumos.

\r\n\r\n

A repactuação poderá ser dividida em tantas parcelas quanto forem necessárias em respeito ao princípio da anualidade do reajuste dos preços da contratação, podendo ser realizada em momentos distintos para discutir a variação de custos que tenham sua anualidade resultante em datas diferenciadas, tais como os custos decorrentes da mão de obra e os custos decorrentes dos insumos necessários à execução do serviço.

\r\n\r\n

Nas repactuações subsequentes à primeira, a anualidade será contada a partir da data do fato gerador que deu ensejo à última repactuação.

\r\n\r\n

As repactuações serão precedidas de solicitação da CONTRATADA, acompanhada de demonstração analítica da alteração dos custos, por meio de apresentação da planilha de custos e formação de preços e do novo acordo, convenção ou dissídio coletivo que fundamentam a repactuação, para a variação de custos relativos à mão de obra vinculada à data base da categoria.

\r\n\r\n

A solicitação da contratada de repactuação dos custos envolvendo insumos e materiais somente poderá ser deferida após o período de um ano, contado da data limite para a apresentação da proposta, utilizando-se, para tanto, o índice Nacional de Preços ao Consumidor Amplo (IPCA/IBGE) e aplicando-se a seguinte fórmula:

\r\n\r\n

R = V ( I - Iº)

\r\n\r\n

Onde:

\r\n\r\n

R = Valor do reajuste procurado;

\r\n\r\n

V = Valor constante da proposta;

\r\n\r\n

I = Índice relativo ao mês do reajustamento;

\r\n\r\n

Iº = Índice relativo ao mês da proposta.

\r\n\r\n

As repactuações de insumos e materiais, descritas no item anterior, subsequentes à primeira, serão efetuadas apenas quando se completarem períodos múltiplos de um ano, contados sempre da última repactuação de insumos e materiais.

\r\n\r\n

No caso de atraso ou não divulgação do índice de reajustamento, a CONTRATANTE pagará à CONTRATADA a importância calculada pela última variação conhecida, liquidando a diferença correspondente tão logo seja divulgado o índice definitivo. Fica a CONTRATADA obrigada a apresentar memória de cálculo referente ao reajustamento de preços do valor remanescente, sempre que este ocorrer.

\r\n\r\n

Nas aferições finais, o índice utilizado para a repactuação dos insumos diversos será, obrigatoriamente, o definitivo.

\r\n\r\n

Caso o índice estabelecido para a repactuação de insumos e materiais venha a ser extinto ou de qualquer forma não possa mais ser utilizado, será adotado, em substituição, o que vier a ser determinado pela legislação então em vigor.

\r\n\r\n

Na ausência de previsão legal quanto ao índice substituto, as partes elegerão novo índice oficial, para reajustamento do preço do valor remanescente dos insumos e materiais, por meio de termo aditivo.

\r\n\r\n

Independentemente do requerimento de repactuação dos custos com insumos e materiais, a CONTRATANTE verificará, a cada anualidade, se houve deflação do índice adotado que justifique o recálculo dos custos em valor menor com o objetivo de manter-se o equilíbrio econômico-financeiro da contratação e promoverá a redução dos valores correspondentes.

\r\n\r\n

As repactuações a que a CONTRATADA fizer jus e não forem solicitadas durante a vigência do Contrato serão objeto de preclusão com a assinatura da prorrogação contratual ou com o encerramento do Contrato.

\r\n\r\n

É vedada a inclusão, por ocasião da repactuação, de benefícios não previstos na proposta inicial, exceto quando se tornarem obrigatórios por força de instrumento legal, sentença normativa, acordo coletivo ou convenção coletiva.

\r\n\r\n

A repactuação será formalizada por meio de apostilamento, salvo quando coincidir com a prorrogação contratual, quando será formalizada por meio de Termo Aditivo ao Contrato vigente.

\r\n\r\n

As repactuações relativas aos custos de mão de obra vinculados à data base de cada categoria serão efetuadas somente com fundamento em Convenção, Acordo Coletivo de Trabalho, Sentença Normativa, ou por força de lei.

\r\n\r\n

A repactuação não interfere no direito das partes de solicitar, a qualquer momento, a manutenção do equilíbrio econômico dos contratos com base no disposto no art. 65 da Lei nº 8.666/1993.

\r\n\r\n

Para o reajuste do vale transporte deverá ser observado as seguintes condições (Orientação Normativa nº 02/2014-SLTI/MP):

\r\n\r\n

a majoração da tarifa de transporte público gera a possibilidade de repactuação do item relativo aos valores pagos a título de vale-transporte;

\r\n\r\n

o início da contagem do prazo de um ano para a primeira repactuação deve tomar como referência a data do orçamento a que a proposta se refere, qual seja, a data do último reajuste de tarifa de transporte público;

\r\n\r\n

os efeitos financeiros da repactuação contratual decorrente da majoração de tarifa de transporte público devem viger a partir da efetiva modificação do valor de tarifa de transporte público.

\r\n\r\n

CLÁUSULA DÉCIMA QUARTA – DAS PENALIDADES

\r\n\r\n

Com fundamento nos arts. 86 e 87 da Lei nº 8.666/1993, bem como no art. 7º da Lei nº 10.520/2002, a CONTRATADA, no curso da execução do Contrato, estará sujeita às seguintes penalidades, garantidos o contraditório e a prévia e ampla defesa:

\r\n\r\n

advertência, com fundamento no art. 87, inciso I, da Lei nº 8.666/1993;

\r\n\r\n

multa, com fundamento no art. 7º da Lei nº 10.520/2002 e art. 87, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

impedimento de licitar e contratar com a Administração Pública Federal e descredenciamento do SICAF pelo prazo de até 5 (cinco) anos, com fundamento no art. 7º da Lei nº 10.520/2002;

\r\n\r\n

suspensão temporária de participação em licitação e impedimento de contratar com a CONTRATANTE, por prazo não superior a 2 (dois) anos, com fundamento no art. 87, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

declaração de inidoneidade para licitar ou contratar com a Administração Pública, com fundamento no art. 87, inciso IV, da Lei nº 8.666/1993.

\r\n\r\n

As sanções previstas nas alíneas “a”, “c”, “d” e “e” do item anterior poderão ser aplicadas juntamente com a da alínea “b”, facultada a defesa prévia do interessado, no respectivo processo, no prazo de 5 (cinco) dias úteis, a contar da ciência da notificação, elevando-se o prazo para 10 (dez) dias úteis, no caso da penalidade prevista na alínea “e”.

\r\n\r\n

Os valores da multa pela ocorrência de atraso injustificado na execução do objeto, assim considerado pelo CONTRATANTE, hipótese em que responderá pela inexecução parcial ou total do Contrato, sem prejuízo da aplicação das demais penalidades e das responsabilidades civil e criminal, são:

\r\n\r\n

[digite aqui o percentual da multa] ao dia sobre o valor mensal do Contrato, limitada a incidência a [digite aqui o número de dias] dias;

\r\n\r\n

[digite aqui o percentual da multa] sobre o valor mensal do Contrato, em caso de atraso por período superior ao previsto na alínea anterior até [digite aqui o número de dias] dias, ou de inexecução parcial da obrigação assumida;

\r\n\r\n

[digite aqui o percentual da multa] sobre o valor mensal do Contrato, em caso de inexecução total da obrigação assumida, podendo ainda ocorrer a não aceitação do objeto, de forma a configurar, nesta hipótese, inexecução total da obrigação assumida, sem prejuízo da rescisão unilateral da avença.

\r\n\r\n

Na ocorrência do descumprimento das obrigações identificadas na Cláusula "Das Obrigações da Contratada" deste Contrato, sem prejuízo da aplicação das demais sanções, serão aplicadas as seguintes penalidades:

\r\n\r\n

advertência ou multa, de acordo com os graus atribuídos, conforme Tabela abaixo, que indicarão o respectivo percentual da penalidade:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Tabela 1 – Graus e Correspondência

\r\n
\r\n

Grau

\r\n
\r\n

Correspondência

\r\n
\r\n

01

\r\n
\r\n

Advertência

\r\n
\r\n

02

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

03

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

04

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

05

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n

06

\r\n
\r\n

[digite aqui o percentual da multa] por dia sobre o valor mensal do Contrato

\r\n
\r\n\r\n

Eventual desistência da CONTRATADA após sua expressa manifestação de interesse na prorrogação contratual ensejará a aplicação pela CONTRATANTE de multa de [digite aqui o percentual da multa] do valor global do Contrato, sem prejuízo das demais penalidades e responsabilidade civil pelos prejuízos causados ao interesse público.

\r\n\r\n

Em caso de reincidência específica na infração de grau 06, Tabela 1, a CONTRATADA estará sujeita à multa de [digite aqui o percentual da multa], ao dia, do valor mensal deste Contrato.

\r\n\r\n

Na hipótese de reincidência específica, pela segunda vez, nas infrações de graus 05 e 06 previstas na Tabela 1, restará caracterizada a inexecução parcial do Contrato e, em nova reincidência, inexecução total do Contrato, ensejando a rescisão unilateral da avença.

\r\n\r\n

O valor da multa aplicada deverá ser descontado por ocasião do pagamento a ser efetuado pela CONTRATANTE, ou recolhido via GRU, podendo ainda ser descontado da garantia oferecida ou cobrado judicialmente.

\r\n\r\n

As penalidades somente poderão ser relevadas nos casos para os quais a CONTRATADA não tenha, de qualquer forma, concorrido ou dado causa, devidamente comprovados por escrito e aceitos pelo CONTRATANTE.

\r\n\r\n

A aplicação das sanções previstas neste Contrato não afeta os processos de responsabilização e aplicação de penalidades decorrentes de atos ilícitos alcançados pela Lei nº 12.846, de 1º de agosto de 2013.

\r\n\r\n

CLÁUSULA DÉCIMA QUINTA – DA RESCISÃO

\r\n\r\n

A inexecução total ou parcial do Contrato enseja a sua rescisão, se houver uma das ocorrências prescritas no art. 78 da Lei nº 8.666/1993.

\r\n\r\n

Os procedimentos de rescisão contratual, tanto os amigáveis, como os determinados por ato unilateral da CONTRATANTE, serão formalmente motivados, asseguradas, à CONTRATADA, na segunda hipótese, a produção de contraditório e a dedução de ampla defesa, mediante prévia e comprovada intimação da intenção da CONTRATANTE para que, se o desejar, a CONTRATADA apresente defesa no prazo de 5 (cinco) dias úteis contados de seu recebimento e, em hipótese de desacolhimento da defesa, interponha recurso hierárquico no prazo de 5 (cinco) dias úteis contados da intimação da decisão rescisória.

\r\n\r\n

Quanto à sua forma a rescisão poderá ser:

\r\n\r\n

por ato unilateral e escrito da Administração, nos casos enumerados nos incisos I a XII e XVII do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

amigável, por acordo entre as partes, reduzidas a termo no processo da licitação, desde que haja conveniência para a Administração.

\r\n\r\n

judicial, nos termos da legislação.

\r\n\r\n

Observação: Os dois itens abaixo somente cabem em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Em conformidade com o disposto no art. 34, § 4º, da Instrução Normativa nº 2/2008-SLTI/MP, o descumprimento total ou parcial das responsabilidades assumidas pela contratada, sobretudo quanto às obrigações e encargos sociais e trabalhistas, ensejará a aplicação de sanções administrativas, previstas no instrumento convocatório e na legislação vigente, podendo culminar em rescisão contratual, conforme disposto nos arts. 77 e 87 da Lei nº 8.666/1993.

\r\n\r\n

Quando da rescisão contratual, a fiscalização do Contrato verificará o pagamento pela CONTRATADA das verbas rescisórias ou a comprovação de que os empregados serão realocados em outra atividade de prestação de serviços, sem que ocorra a interrupção do Contrato de trabalho.

\r\n\r\n

 

\r\n\r\n

Observação: A cláusula abaixo somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

CLÁUSULA DÉCIMA SEXTA – DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTA

\r\n\r\n

Os valores para o pagamento das férias, 13º salário e rescisão contratual dos trabalhadores da contratada serão depositados pela Administração em conta vinculada específica, conforme o disposto no art. 19-A e Anexo VII da Instrução Normativa nº 02/2008-SLTI/MP, bem como nesta Cláusula, somente sendo liberados para o pagamento das verbas relativas à citada Conta.

\r\n\r\n

CLÁUSULA DÉCIMA SÉTIMA – DA FUNDAMENTAÇÃO LEGAL E DA VINCULAÇÃO AO EDITAL E À PROPOSTA

\r\n\r\n

O presente Contrato fundamenta-se:

\r\n\r\n

na Lei nº 8.666/1993;

\r\n\r\n

na Lei nº 10.520/2002 e no Decreto nº 5.450/2005;

\r\n\r\n

na Lei nº 8.078/1990 – Código de Defesa do Consumidor, no que couber;

\r\n\r\n

demais normativos legais atinentes ao tema.

\r\n\r\n

O presente Contrato vincula-se aos termos:

\r\n\r\n

do Edital do Pregão Eletrônico nº [digite aqui o número e ano do Pregão Eletrônico] e seus anexos;

\r\n\r\n

da proposta homologada da CONTRATADA.

\r\n\r\n

CLÁUSULA DÉCIMA OITAVA – DA PUBLICAÇÃO

\r\n\r\n

A publicação do presente Contrato deverá ser providenciada, em extrato no Diário Oficial da União, até o 5º (quinto) dia útil do mês seguinte ao de sua assinatura, para ocorrer no prazo máximo de até 20 (vinte) dias, na forma prevista no parágrafo único do art. 61 da Lei nº 8.666/1993.

\r\n\r\n

CLÁUSULA DÉCIMA NONA – DO FORO

\r\n\r\n

Fica eleito o foro da Seção Judiciária da Justiça Federal de [digite aqui a cidade/Estado da subseção judiciária] para dirimir quaisquer questões oriundas do presente Contrato, com exclusão de qualquer outro.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Contrato é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(711,108,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(712,108,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(713,109,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(714,109,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(715,109,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(716,109,'Corpo do Texto','

OBJETO: Digite aqui o texto... .... .

\r\n\r\n

ÍNDICE

\r\n\r\n
    \r\n
  1. \r\n

    DO OBJETO

    \r\n
  2. \r\n
  3. \r\n

    DA DOTAÇÃO ORÇAMENTÁRIA

    \r\n
  4. \r\n
  5. \r\n

    DA PARTICIPAÇÃO NA LICITAÇÃO

    \r\n
  6. \r\n
  7. \r\n

    DO TRATAMENTO DAS MICROEMPRESAS, EMPRESAS DE PEQUENO PORTE E EQUIPARADOS

    \r\n
  8. \r\n
  9. \r\n

    DO CREDENCIAMENTO

    \r\n
  10. \r\n
  11. \r\n

    DOS PEDIDOS DE ESCLARECIMENTOS E DAS IMPUGNAÇÕES AO EDITAL

    \r\n
  12. \r\n
  13. \r\n

    DA ELABORAÇÃO DA PROPOSTA

    \r\n
  14. \r\n
  15. \r\n

    DO ENVIO DA PROPOSTA DE PREÇOS

    \r\n
  16. \r\n
  17. \r\n

    DA SESSÃO PÚBLICA VIRTUAL, VERIFICAÇÃO DAS PROPOSTAS E FORMULAÇÃO DOS LANCES

    \r\n
  18. \r\n
  19. \r\n

    DO JULGAMENTO DA PROPOSTA DE PREÇOS

    \r\n
  20. \r\n
  21. \r\n

    DA HABILITAÇÃO

    \r\n
  22. \r\n
  23. \r\n

    DOS RECURSOS

    \r\n
  24. \r\n
  25. \r\n

    DA ADJUDICAÇÃO E DA HOMOLOGAÇÃO

    \r\n
  26. \r\n
  27. \r\n

    DAS SANÇÕES DECORRENTES DA LICITAÇÃO

    \r\n
  28. \r\n
  29. \r\n

    DA ANULAÇÃO E DA REVOGAÇÃO DA LICITAÇÃO

    \r\n
  30. \r\n
  31. \r\n

    DOS PRAZOS E CONDIÇÕES PARA ASSINATURA DO CONTRATO

    \r\n
  32. \r\n
  33. \r\n

    DA VIGÊNCIA CONTRATUAL

    \r\n
  34. \r\n
  35. \r\n

    DA GARANTIA CONTRATUAL

    \r\n
  36. \r\n
  37. \r\n

    DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTAS

    \r\n
  38. \r\n
  39. \r\n

    DAS OBRIGAÇÕES DA CONTRATADA

    \r\n
  40. \r\n
  41. \r\n

    DAS OBRIGAÇÕES DA CONTRATANTE

    \r\n
  42. \r\n
  43. \r\n

    DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

    \r\n
  44. \r\n
  45. \r\n

    DA LIQUIDAÇÃO E DO PAGAMENTO

    \r\n
  46. \r\n
  47. \r\n

    DA ALTERAÇÃO DO CONTRATO

    \r\n
  48. \r\n
  49. \r\n

    DA REPACTUAÇÃO/REAJUSTE

    \r\n
  50. \r\n
  51. \r\n

    DAS PENALIDADES

    \r\n
  52. \r\n
  53. \r\n

    DA RESCISÃO

    \r\n
  54. \r\n
  55. \r\n

    DAS DISPOSIÇÕES FINAIS

    \r\n
  56. \r\n
  57. \r\n

    DOS ANEXOS

    \r\n
  58. \r\n
\r\n\r\n

PREÂMBULO

\r\n\r\n

Tipo de Licitação: Digite aqui o texto... .... .

\r\n\r\n

Entrega de propostas: [Digite aqui a data]

\r\n\r\n

A partir da publicação no seguinte endereço eletrônicowww.comprasgovernamentais.gov.br

\r\n\r\n

 

\r\n\r\n

Etapa de Lances: [Digite aqui a data]

\r\n\r\n

Abertura da seção pública:

\r\n\r\n

- Horário: [Digite aqui o horário] (horário oficial de Brasília)

\r\n\r\n

- Localwww.comprasgovernamentais.gov.br

\r\n\r\n

- Código da UASG: [Digite aqui o código]

\r\n\r\n

 

\r\n\r\n

A @descricao_orgao_origem@ - @sigla_orgao_origem@, localizada na [digite aqui o endereço da UASG responsável pela licitação], inscrita no CNPJ sob o nº [digite aqui o CNPJ], mediante o Pregoeiro designado pela [digite aqui o instrumento de designação], torna público que realizará, na data, horário e local acima indicados, licitação na modalidade de PREGÃO, na forma ELETRÔNICA, do tipo "MENOR PREÇO" objetivando [digite aqui o texto do objeto], conforme detalhamentos constantes neste Edital e anexos, consoante o Processo em epígrafe.

\r\n\r\n

Não havendo expediente na data marcada ou havendo fato superveniente impeditivo à realização, a sessão pública será adiada para o primeiro dia útil subsequente, mantidos o mesmo local e horário, salvo comunicação em contrário do pregoeiro.

\r\n\r\n

A presente licitação e consequente contratação serão regidas pelas seguintes normas: [digite aqui as normas pertinentes].

\r\n\r\n

DO OBJETO

\r\n\r\n

O presente Pregão Eletrônico tem por objeto a contratação de empresa para [digite aqui se prestação de serviços ou fornecimento de bens], em regime de [digite aqui a forma de contratação, conforme art. 6º, inciso VIII, da Lei nº 8.666/1993], conforme especificações constantes do Termo de Referência (Anexo I) e demais anexos deste Edital.

\r\n\r\n

Em caso de discordância existente entre as especificações deste objeto descritas no Portal de Compras do Governo Federal (Compras Governamentais) e as especificações constantes deste Edital, prevalecerão as últimas.

\r\n\r\n

DA DOTAÇÃO ORÇAMENTÁRIA

\r\n\r\n

As despesas decorrentes da contratação, objeto desta licitação, correrão a conta dos recursos consignados no Orçamento Geral da União, a cargo da @sigla_orgao_origem@, disponibilizados no Programa de Trabalho (PT) nº [digite aqui o número do PT], Natureza de Despesa [digite aqui o número da ND, até subelemento da despesa].

\r\n\r\n

Sempre que a vigência do Contrato ultrapassar a vigência dos respectivos créditos orçamentários, será providenciada dotação orçamentária própria para cobertura do período subsequente.

\r\n\r\n

DA PARTICIPAÇÃO NA LICITAÇÃO

\r\n\r\n

Poderão participar deste Pregão os interessados que estiverem previamente credenciados no Sistema de Cadastramento Unificado de Fornecedores (SICAF), de acordo com o art. 3º, § 2º, do Decreto nº 5.450, de 31 de maio de 2005, e perante o sistema eletrônico provido pela Secretaria de Logística e Tecnologia da Informação do Ministério do Planejamento, Orçamento e Gestão, por meio do sítio www.comprasgovernamentais.gov.br.

\r\n\r\n

Os interessados em participar do presente Pregão e que não estejam credenciados no SICAF, poderão providenciar tanto o credenciamento quanto o cadastramento no mencionado sistema, nos níveis em que tiver interesse, sendo obrigatório pelo menos o Nível I, relativo ao credenciamento, que é condição indispensável para obtenção de senha para participação em pregões eletrônicos, na forma estabelecida na Instrução Normativa nº 02, de 11 de outubro de 2010, da SLTI/MP, e alterações posteriores, em qualquer unidade de cadastramento dos órgãos/entidades do Governo Federal, integrantes do Sistema de Serviços Gerais (SISG), ou pela Internet, conforme orientações constantes no endereço www.comprasgovernamentais.gov.br, no link Fornecedor > Cadastro, onde deverá solicitar uma senha, caso ainda não a possua, podendo, também, encontrar os manuais com orientações para o cadastramento e a listagem de unidades cadastradoras.

\r\n\r\n

Não será admitida nesta licitação a participação de:

\r\n\r\n

sociedade em processo de recuperação judicial/extrajudicial ou de falência e concordata, insolvência civil, sob concurso de credores, em dissolução ou em liquidação;

\r\n\r\n

sociedades suspensas temporariamente de participar de licitações ou impedidas de contratar quando a penalidade foi aplicada pela @sigla_orgao_origem@, com fundamento no art. 87, inciso III, da Lei nº 8.666, de 21 de junho de 1993;

\r\n\r\n

sociedades impedidas de participar de licitações ou de contratar quando a penalidade foi aplicada por órgão ou entidade da Administração Pública Federal com fundamento no art. 7º da Lei nº 10.520, de 17 de julho de 2002;

\r\n\r\n

sociedades declaradas inidôneas para licitar ou contratar com a Administração Pública, com fundamento no art. 87, inciso IV, da Lei nº 8.666/1993;

\r\n\r\n

sociedades constituídas com o mesmo objeto e da qual participe sócios e/ou administradores de empresas anteriormente declaradas inidôneas, nos termos do art. 46 da Lei nº 8.443, de 16 de julho de 1992, desde que a constituição da sociedade tenha ocorrido após a aplicação da referida sanção e no prazo de sua vigência;

\r\n\r\n

sociedades estrangeiras que não funcionem no País;

\r\n\r\n

sociedades que possuírem, entre seus sócios ou dirigentes, servidor ou membro da @sigla_orgao_origem@, de acordo com o art. 9º, inciso III, da Lei nº 8.666/1993;

\r\n\r\n

sociedades que possuam em seu contrato social ou documento equivalente, finalidade ou objetivo incompatível com o objeto deste Pregão;

\r\n\r\n

sociedades que tenham condenações cíveis por ato de improbidade administrativa.

\r\n\r\n

Para a verificação das ocorrências constantes dos incisos II, III, IV e IX serão obrigatoriamente consultados o Sistema de Cadastramento Unificado e Fornecedores (SICAF), o Cadastro Nacional de Empresas Inidôneas e Suspensas (CEIS) da Controladoria Geral da União (CGU), Portal da Transparência, o Portal do Conselho Nacional de Justiça (CNJ) e Lista de Inidôneos do Tribunal de Contas da União (TCU).

\r\n\r\n

Para participação no presente pregão eletrônico, o licitante deverá manifestar, em campo próprio do sistema eletrônico, que:

\r\n\r\n

está ciente e concorda com as condições contidas no Edital e seus anexos;

\r\n\r\n

cumpre plenamente os requisitos de habilitação e inexistem fatos impeditivos para sua habilitação no certame, está ciente da obrigatoriedade de declarar ocorrências posteriores;

\r\n\r\n

sua proposta está em conformidade com as exigências deste instrumento convocatório (art. 21, § 2º, do Decreto nº 5.450/2005);

\r\n\r\n

não emprega menor de 18 anos em trabalho noturno, perigoso ou insalubre e não emprega menor de 16 anos, salvo menor, a partir de 14 anos, na condição de aprendiz, nos termos do art. 7º, inciso XXXIII, da Constituição Federal;

\r\n\r\n

a proposta foi elaborada de forma independente, nos termos da Instrução Normativa nº 02/2009-SLTI/MP.

\r\n\r\n

A declaração falsa relativa ao cumprimento dos requisitos de habilitação e proposta sujeitará o licitante às sanções previstas neste Edital.

\r\n\r\n

É vedada a contratação com empresa privada que tenha em seu quadro societário servidor público da ativa ou empregado de empresa pública ou sociedade de economia mista, com fundamento no art. 18, inciso VIII, da Lei nº 13.080, de 2 de janeiro de 2015 (LDO 2015).

\r\n\r\n

DO TRATAMENTO DAS MICROEMPRESAS, EMPRESAS DE PEQUENO PORTE E EQUIPARADOS

\r\n\r\n

Na participação de microempresas, empresas de pequeno porte ou equiparados, será observado o disposto na Lei Complementar nº 123, de 14 de dezembro de 2006, alterada pela Lei Complementar nº 147, de 7 de agosto de 2014, notadamente os arts. 42 a 49, bem como no que tange o Decreto nº 6.204, de 5 de setembro de 2007.

\r\n\r\n

O enquadramento como microempresa (ME) ou empresa de pequeno porte (EPP) dar-se-á nas condições do Estatuto Nacional da Microempresa e Empresa de Pequeno Porte, instituído pela Lei Complementar nº 123/2006.

\r\n\r\n

A fruição dos benefícios licitatórios determinados pela Lei Complementar nº 123/2006 independe da habilitação da ME/EPP ou equiparado para a obtenção do regime tributário simplificado, sem prejuízo da cotação de preços pela licitante segundo o regime fiscal correspondente.

\r\n\r\n

As licitantes que se enquadrarem nas situações previstas no art. 3º da Lei Complementar nº 123/2006 e não possuírem quaisquer dos impedimentos do § 4º do citado artigo, deverão apresentar declaração em campo próprio do sistema que cumprem os requisitos legais para a qualificação como ME/EPP ou equiparado, estando aptos a usufruir do tratamento favorecido estabelecido nos arts. 42 a 49 da referida Lei Complementar nº 123/2006, bem como do art. 11 do Decreto nº 6.204/2007.

\r\n\r\n

A não declaração de ME/EPP e equiparado no sistema de Pregão na forma Eletrônica do Portal de Compras do Governo Federal (Compras Governamentais), importará na renúncia ao tratamento consagrado na Lei Complementar nº 123/2006.

\r\n\r\n

A identificação das empresas licitantes ou equiparados na sessão pública do pregão eletrônico só deverá ocorrer após o encerramento dos lances, conforme art. 24, inciso V, do Decreto nº 5.450/2005.

\r\n\r\n

DO CREDENCIAMENTO

\r\n\r\n

O credenciamento é o nível básico do registro cadastral no SICAF, que permite a participação dos interessados na modalidade licitatória Pregão, em sua forma eletrônica.

\r\n\r\n

O credenciamento dar-se-á pela atribuição de chave de identificação e de senha, pessoal e intransferível, para acesso ao sistema eletrônico no endereço www.comprasgovernamentais.gov.br, devendo este credenciamento ser efetuado antes da data prevista para realização do Pregão na forma Eletrônica, nos termos do art. 3º, § 1º, do Decreto nº 5.450/2005.

\r\n\r\n

O credenciamento junto ao provedor do sistema implica a responsabilidade legal do licitante e a presunção de sua capacidade técnica para realização das transações inerentes ao Pregão na forma Eletrônica (art. 3º, § 6º, do Decreto nº 5.450/2005).

\r\n\r\n

O uso da senha de acesso pelo licitante é de sua responsabilidade exclusiva, incluindo qualquer transação efetuada diretamente ou por seu representante, não cabendo ao provedor do sistema ou ao @sigla_orgao_origem@ responsabilidade por eventuais danos decorrentes de uso indevido da senha, ainda que por terceiros (art. 3º, § 5º, do Decreto nº 5.450/2005).

\r\n\r\n

A perda da senha ou a quebra do sigilo deverão ser comunicadas imediatamente ao provedor do sistema, para imediato bloqueio de acesso (art. 3º, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

DOS PEDIDOS DE ESCLARECIMENTOS E DAS IMPUGNAÇÕES AO EDITAL

\r\n\r\n

Até 02 (dois) dias úteis antes da data fixada para abertura da sessão pública virtual, qualquer pessoa poderá impugnar os termos deste instrumento convocatório perante a @sigla_orgao_origem@, exclusivamente por meio eletrônico, via internet, no endereço abaixo informado, cabendo ao pregoeiro, auxiliado pelo setor responsável pela elaboração do Edital, decidir sobre a petição no prazo de até 24 (vinte e quatro) horas (art. 18, caput e seu § 1º, do Decreto nº 5.450/2005): "endereço de e-mail da área de licitação"

\r\n\r\n

Decairá do direito de impugnar os termos do presente Edital o licitante que não o fizer no prazo estabelecido no subitem anterior.

\r\n\r\n

Acolhida a impugnação contra o ato convocatório, será definida e publicada nova data para a realização do certame (art. 18, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

Qualquer solicitação de esclarecimentos referente ao presente certame deverá ser enviada ao pregoeiro, em até 03 (três) dias úteis anteriores à data fixada no preâmbulo deste Instrumento para abertura da sessão pública virtual, exclusivamente por meio eletrônico, via internet, por meio de mensagem eletrônica, no endereço abaixo informado: "endereço de e-mail da área de licitação"

\r\n\r\n

O pregoeiro com suporte técnico do setor responsável pela elaboração do Edital prestará todos os esclarecimentos solicitados pelos interessados nesta licitação.

\r\n\r\n

As decisões sobre as impugnações de que trata o subitem 6.1, bem como os esclarecimentos de que trata o subitem 6.3, serão divulgados pelo pregoeiro a todos os interessados no sítio www.comprasgovernamentais.gov.br, no link Cidadão > Consultas > Pregões > Agendados, podendo o licitante visualizar também no menu principal, acesso restrito, no link Visualizar Impugnação > Esclarecimento > Aviso.

\r\n\r\n

As impugnações e os pedidos de esclarecimentos não suspendem os prazos previstos no certame.

\r\n\r\n

DA ELABORAÇÃO DA PROPOSTA

\r\n\r\n

O licitante deverá elaborar sua proposta contendo o valor global para a execução dos serviços propostos, já considerados e inclusos todos os tributos, fretes, tarifas e despesas decorrentes da execução do objeto, com base no preenchimento da Planilha de Preços e Formação de Custos, com seus próprios valores, conforme formulário constante do Anexo [digite aqui o número do anexo com as planilhas], deste Edital.

\r\n\r\n

Quaisquer tributos, encargos, custos e despesas, diretos ou indiretos, omitidos da proposta ou incorretamente cotados, serão considerados como inclusos nos preços, não sendo considerados pleitos de acréscimos, a esse ou a qualquer título, devendo a execução ser realizada sem ônus adicional à @sigla_orgao_origem@.

\r\n\r\n

A apresentação das propostas implica obrigatoriedade do cumprimento das disposições nelas contidas, assumindo o proponente o compromisso de executar o objeto nos seus termos (art. 22, parágrafo único, da Instrução Normativa nº 02/2008- SLTI/MP).

\r\n\r\n

Caso haja equívoco no dimensionamento dos quantitativos da proposta, a CONTRATADA deverá arcar com o ônus decorrente, devendo complementá-los, caso o previsto inicialmente não seja satisfatório para o atendimento do objeto deste Pregão, exceto quando ocorrer algum dos eventos arrolados no art. 57, § 1º, da Lei nº 8.666/1993 (art. 23 da Instrução Normativa nº 02/2008-SLTI/MP).

\r\n\r\n

Os preços ofertados, tanto na proposta inicial, quanto na etapa de lances, serão de exclusiva responsabilidade do licitante, não lhe assistindo o direito de pleitear qualquer alteração, sob alegação de erro, omissão ou qualquer outro pretexto.

\r\n\r\n

Na preparação de sua proposta comercial, o licitante deverá consignar preços correntes de mercado, sem quaisquer acréscimos em virtude de expectativa inflacionária.

\r\n\r\n

Os preços deverão ser expressos em moeda corrente nacional, o valor unitário em algarismos e o valor global por item em algarismos e por extenso (art. 5º da Lei nº 8.666/1993).

\r\n\r\n

Ocorrendo divergência entre os preços unitários e o preço global do item, prevalecerão os primeiros; no caso de divergência entre os valores numéricos e os valores expressos por extenso, prevalecerão estes últimos.

\r\n\r\n

A oferta deverá ser firme e precisa, limitada, rigorosamente, ao objeto deste Edital, sem conter alternativas de preço ou de qualquer outra condição que induza o julgamento a mais de um resultado, sob pena de desclassificação.

\r\n\r\n

A desclassificação das propostas será sempre fundamentada e registrada no sistema, com possibilidade de acompanhamento online pelos licitantes.

\r\n\r\n

A proposta deverá obedecer aos termos deste Edital e seus Anexos, não sendo considerada aquela que não corresponda às especificações ali contidas ou que estabeleça vínculo à proposta de outro licitante.

\r\n\r\n

A proposta deverá ter prazo mínimo de validade de 60 (sessenta dias) consecutivos, contados da data da apresentação da proposta.

\r\n\r\n

DO ENVIO DA PROPOSTA DE PREÇOS

\r\n\r\n

A participação no Pregão na forma eletrônica dar-se-á por meio da digitação da senha privativa do licitante e subsequente encaminhamento das Propostas de Preços, contendo o valor global do item para execução do objeto e a síntese do objeto da presente licitação, a partir da data da disponibilização do Edital, até o horário limite do início da sessão pública, exclusivamente por meio do sistema eletrônico do sítio www.comprasgovernamentais.gov.br, sendo expressamente vedada a identificação do proponente nas propostas enviadas.

\r\n\r\n

Na proposta encaminhada eletronicamente, o licitante deverá consignar, na forma expressa no sistema eletrônico, o valor global para o período da execução dos serviços propostos, já considerados e inclusos todos os tributos, fretes, tarifas e despesas decorrentes da execução do objeto.

\r\n\r\n

Por ocasião do envio da proposta, o licitante enquadrado como microempresa ou empresa de pequeno porte deverá declarar, em campo próprio do sistema, que atende aos requisitos do art. 3º da Lei Complementar nº 123/2006, a fim de fazer jus aos benefícios previstos na referida Lei.

\r\n\r\n

Até a abertura da sessão, os licitantes poderão retirar ou substituir a proposta anteriormente enviada por meio eletrônico ao sistema (art. 21, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

DA SESSÃO PÚBLICA VIRTUAL, VERIFICAÇÃO DAS PROPOSTAS E FORMULAÇÃO DOS LANCES

\r\n\r\n

Aberta a sessão pública virtual do certame, as propostas de preços serão irretratáveis, não se admitindo retificações ou alterações nos preços ou nas condições estabelecidas, salvo quanto aos lances ofertados, na fase própria do certame.

\r\n\r\n

Após a abertura da sessão pública virtual não caberá desistência da proposta, salvo por motivo justo, decorrente de fato superveniente e aceito pelo pregoeiro.

\r\n\r\n

A abertura da sessão pública deste Pregão, conduzida pelo pregoeiro, ocorrerá na data e na hora indicadas no preâmbulo deste Edital, no sítio www.comprasgovernamentais.gov.br, com a divulgação dos valores das propostas eletrônicas e preparação para início da etapa de lances, sem que sejam identificados os participantes, o que só ocorrerá após o encerramento desta etapa.

\r\n\r\n

A comunicação entre o pregoeiro e os licitantes ocorrerá exclusivamente mediante troca de mensagens, em campo próprio do sistema eletrônico.

\r\n\r\n

O licitante será responsável por todas as transações que forem efetuadas em seu nome no sistema eletrônico, assumindo como firmes e verdadeiras suas propostas e lances (art. 13, inciso III, do Decreto nº 5.450/2005).

\r\n\r\n

Cabe ao licitante acompanhar as operações no sistema eletrônico durante a sessão pública do Pregão, ficando responsável pelo ônus decorrente da perda dos negócios diante da inobservância de qualquer mensagem emitida pelo sistema ou de sua desconexão (art. 13, inciso IV, do Decreto nº 5.450/2005).

\r\n\r\n

A partir do horário previsto no preâmbulo deste Edital, terá início a sessão pública do presente Pregão, na forma Eletrônica, com a divulgação dos valores das propostas eletrônicas e preparação para o início da etapa de lances, sem que sejam identificados os participantes, o que só ocorrerá após o encerramento desta etapa, de acordo com as normas vigentes (art. 22 do Decreto nº 5.450/2005).

\r\n\r\n

Aberta a sessão pública na internet, o pregoeiro verificará as propostas ofertadas conforme previsto no item 9 deste Edital, desclassificando, motivadamente, aquelas que não estejam em conformidade com o estabelecido neste Edital e em seus Anexos (art. 22, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

O pregoeiro não poderá desclassificar propostas em decorrência da oferta de valores acima do preço inicialmente orçado pela @sigla_orgao_origem@ na etapa anterior à formulação de lances (Acórdão TCU nº 934/2007-1ª Câmara).

\r\n\r\n

Após a verificação inicial das propostas, na forma do subitem anterior, o pregoeiro dará início à fase competitiva, quando então os licitantes poderão encaminhar lances, exclusivamente por meio do sistema eletrônico, sendo imediatamente informados do seu recebimento e respectivo horário de registro e valor (art. 24 do Decreto nº 5.450/2005).

\r\n\r\n

Somente poderão ofertar lances os licitantes que tiverem suas propostas classificadas quanto às especificações do objeto e demais requisitos deste Edital e seus Anexos.

\r\n\r\n

Os licitantes poderão oferecer lances sucessivos, observados o horário fixado para a abertura da sessão e as regras de aceitação dos lances estabelecidas neste Edital.

\r\n\r\n

Na fase competitiva, o intervalo entre os lances enviados pelo mesmo licitante não poderá ser inferior a vinte (20) segundos e o intervalo entre lances de licitantes diferentes não poderá ser inferior a três (3) segundos (Instrução Normativa nº 03/2013-SLTI/MP).

\r\n\r\n

Os lances enviados em desacordo com o subitem anterior serão descartados automaticamente pelo sistema (Instrução Normativa nº 03/2011-SLTI/MP).

\r\n\r\n

Os lances enviados pelo mesmo licitante são considerados lances intermediários quando são inferiores ao último por ele ofertado, mas superiores ao menor lance registrado, os quais deverão respeitar o intervalo de vinte (20) segundos. Já os lances inferiores ao menor lance registrado no sistema, são considerados entre lances, os quais deverão respeitar o intervalo de 03 (três) segundos (SIASG-Comunica nº 081380, de 01/09/2014).

\r\n\r\n

Os lances deverão ser oferecidos para o valor global da proposta, observado o disposto neste Edital, em especial os valores de referência dos itens.

\r\n\r\n

Durante o transcurso da sessão pública, os licitantes serão informados, em tempo real, do valor do menor lance registrado que tenha sido apresentado pelos demais licitantes, vedada a identificação do detentor do lance.

\r\n\r\n

O licitante somente poderá ofertar lance cujo valor seja menor do que o último preço por ele ofertado e registrado pelo sistema, na forma do art. 24, § 3º, do Decreto nº 5.450/2005.

\r\n\r\n

Não serão aceitos dois ou mais lances iguais, prevalecendo aquele que for recebido e registrado primeiro (art. 24, § 4º, do Decreto nº 5.450/2005).

\r\n\r\n

No caso de desconexão do pregoeiro no decorrer da etapa de lances, se o sistema eletrônico permanecer acessível aos licitantes, os lances continuarão sendo recebidos, retornando o pregoeiro, assim que possível, às suas funções no certame, sem prejuízo dos atos realizados (art. 24, § 10, do Decreto nº 5.450/2005).

\r\n\r\n

Quando a desconexão do pregoeiro persistir por tempo superior a 10 (dez) minutos, a sessão pública virtual será suspensa e terá reinício somente após comunicação expressa aos participantes, por meio do sistema eletrônico, quando serão divulgadas data e hora para a sua reabertura (art. 24, § 11, do Decreto nº 5.450/2005).

\r\n\r\n

A fase de lances será encerrada pelo pregoeiro, com o encaminhamento pelo sistema eletrônico de aviso de fechamento iminente, após o que transcorrerá período de tempo de até 30 (trinta) minutos, aleatoriamente determinado pelo mencionado sistema, findo o qual será automaticamente encerrada a recepção de lances (art. 24, §§ 6º e 7º, do Decreto nº 5.450/2005).

\r\n\r\n

Não poderá haver desistência da proposta ou dos lances ofertados, salvo por motivo justo, decorrente de fato superveniente e aceito pelo pregoeiro, sujeitando-se o proponente desistente às penalidades constantes do item 14 deste Edital.

\r\n\r\n

O não encaminhamento de lance pelo sistema eletrônico, até o encerramento dessa etapa no sistema, implicará na manutenção do último preço apresentado, para efeito de ordenação das propostas.

\r\n\r\n

DO JULGAMENTO DA PROPOSTA DE PREÇOS

\r\n\r\n

Encerrada a etapa competitiva e ordenadas as propostas na ordem crescente dos preços ofertados e aceitáveis, será aceita a proposta de MENOR PREÇO GLOBAL, respeitados os critérios para classificação estabelecidos neste Edital e devendo a proposta estar em conformidade com o contido no Termo de Referência, Anexo I, e no Anexo [digite aqui o número do anexo com as planilhas de preços].

\r\n\r\n

O pregoeiro poderá encaminhar, pelo sistema eletrônico, contraproposta diretamente ao licitante que tenha apresentado o lance de menor valor, para que seja obtida melhor proposta, observado o critério de julgamento e o valor estimado para a contratação, não se admitindo negociar condições diferentes das previstas neste Edital (art. 24, § 8º, do Decreto nº 5.450/2005).

\r\n\r\n

A negociação será realizada por meio do sistema eletrônico, podendo ser acompanhada pelos demais licitantes (art. 24, § 9º, do Decreto nº 5.450/2005).

\r\n\r\n

Caso não sejam ofertados lances via sistema eletrônico, será verificada a conformidade entre a proposta inicialmente enviada de menor preço e o valor estimado para a contratação, hipótese em que o pregoeiro poderá negociar diretamente com o proponente, por meio da sala de mensagens eletrônicas do sistema de pregão, para que seja obtido preço menor, nos termos do subitem anterior.

\r\n\r\n

Será assegurado, como critério de desempate, preferência de contratação para as microempresas e empresas de pequeno porte, de acordo com o art. 44 da Lei Complementar nº 123/2006.

\r\n\r\n

Entende-se por empate aquelas situações em que as propostas apresentadas pelas microempresas e empresas de pequeno porte sejam iguais ou até 5% (cinco por cento) superiores à proposta mais bem classificada, desde que esta não tenha sido apresentada, também, por uma microempresa ou uma empresa de pequeno porte (art. 44, §§ 1º e 2º, e art. 45, § 2º, da Lei Complementar nº 123/2006).

\r\n\r\n

Ocorrendo o empate, na forma do subitem anterior, será procedido da seguinte forma (art. 45 da Lei Complementar nº 123/2006):

\r\n\r\n

A microempresa ou empresa de pequeno porte mais bem classificada poderá apresentar proposta de preço inferior àquela considerada vencedora do certame, no prazo máximo de 05 (cinco) minutos após o encerramento dos lances, situação em que será adjudicado em seu favor o objeto licitado (art. 45, inciso I e § 3º, da Lei Complementar nº 123/2006);

\r\n\r\n

Não ocorrendo a contratação da microempresa ou empresa de pequeno porte, na forma da alínea anterior, serão convocadas as remanescentes que porventura se enquadrem na situação descrita, na ordem classificatória, para exercício do mesmo direito (art. 45, inciso II, da Lei Complementar nº 123/2006);

\r\n\r\n

No caso de equivalência dos valores apresentados pelas microempresas e empresas de pequeno porte que se encontrem no intervalo de 5% (cinco por cento), será realizado, automaticamente, sorteio entre elas para que se identifique aquela que primeiro poderá apresentar melhor oferta (art. 45, inciso III, da Lei Complementar nº 123/2006).

\r\n\r\n

Na hipótese da não contratação nos termos previstos no subitem anterior, o objeto licitado será adjudicado em favor da proposta originalmente vencedora do certame (art. 45, § 1º, da Lei Complementar nº 123/2006).

\r\n\r\n

O licitante que tenha ofertado o menor preço global deverá enviar, via sistema eletrônico, como anexo, no prazo máximo de cento e vinte (120) minutos, contados da solicitação do pregoeiro, sua proposta, readequada se for o caso, nos termos do lance vencedor, contendo a Planilha de Custos e Formação de Preços devidamente preenchida. Esta planilha deverá conter todos os preços unitários expressos em reais, sendo o valor global final arredondado para duas casas decimais, de modo que o ajuste seja igual ou inferior ao lance ofertado.

\r\n\r\n

O prazo estabelecido no item anterior poderá ser prorrogado por solicitação escrita e justificada da licitante, a ser encaminhada para o e-mail "endereço de e-mail da área de licitação", antes de findo o prazo estabelecido e formalmente aceita pelo pregoeiro.

\r\n\r\n

A Planilha de Custos e Formação de Preços e a Proposta devem ser elaboradas na forma do modelo constante do Anexo [digite aqui o número do anexo com as planilhas de preços], sem emendas, rasuras ou entrelinhas e deverão conter os seguintes elementos:

\r\n\r\n

Identificação do proponente (razão social), número do CNPJ, endereço completo (rua, número, bairro, cidade, estado, CEP), números de telefone, fax, e-mail, com data, nome completo, cargo e assinatura do representante legal da empresa e menção do número do Pregão, na forma Eletrônica;

\r\n\r\n

Detalhamento de todos os elementos que influam no custo operacional, mediante preenchimento da Planilha de Custos e Formação de Preços;

\r\n\r\n

Prazo mínimo de validade de 60 (sessenta) dias consecutivos, contados da data de apresentação da proposta aceita;

\r\n\r\n

Local, data e assinatura da licitante, ou de procurador com poderes específicos para o ato, indicado em instrumento público ou particular.

\r\n\r\n

A proposta deverá contemplar todos os serviços descritos Termo de Referência, Anexo I deste Edital.

\r\n\r\n

O pregoeiro examinará a aceitabilidade da proposta que apresentou menor preço/lance, quanto ao valor estimado para a contratação e a correção das Planilhas de Custos e Formação de Preços, elaboradas e enviadas como anexo pelo sistema eletrônico do pregão, na forma determinada neste Edital, decidindo motivadamente a respeito, conforme definido neste instrumento editalício e seus Anexos.

\r\n\r\n

No caso de alguma falha ou inconsistência no preenchimento das planilhas, o pregoeiro poderá solicitar ao licitante, por mensagem enviada pelo sistema, que complemente, refaça ou efetue a correção necessária, desde que não haja majoração do preço ofertado, no prazo estabelecido na própria mensagem, sob pena de desclassificação da proposta.

\r\n\r\n

Será desclassificada a proposta que:

\r\n\r\n

contiver vícios ou ilegalidades;

\r\n\r\n

não apresentar as especificações técnicas exigidas no Termo de Referência, Anexo I deste Edital;

\r\n\r\n

apresentar preços que sejam manifestamente inexequíveis;

\r\n\r\n

apresentar preço baseado em outras propostas, inclusive com o oferecimento de redução sobre a de menor valor;

\r\n\r\n

apresentar qualquer oferta de vantagem não prevista neste Edital, bem como preço ou vantagem baseada nas ofertas dos demais licitantes;

\r\n\r\n

apresentar valores irrisórios ou de valor zero, incompatíveis com os preços de mercado acrescidos dos respectivos encargos, exceto quando se referirem a materiais e instalações de propriedade do licitante, para os quais ele renuncie à parcela ou à totalidade da remuneração;

\r\n\r\n

não vier a comprovar sua exequibilidade, em especial em relação ao preço e à produtividade apresentada.

\r\n\r\n

O licitante deverá indicar como foram obtidos os valores dos componentes de sua Planilha de Preços, para verificação da exequibilidade.

\r\n\r\n

Consideram-se preços manifestamente inexequíveis aqueles que, comprovadamente, forem insuficientes para a cobertura dos custos decorrentes da contratação pretendida.

\r\n\r\n

A inexequibilidade dos valores referentes a itens isolados da Planilha de Custos, desde que não contrariem instrumentos legais, não caracteriza motivo suficiente para a desclassificação da proposta.

\r\n\r\n

Erro no preenchimento da Planilha não é motivo suficiente para a desclassificação da proposta, quando a Planilha puder ser ajustada sem a necessidade de majoração do preço ofertado, e desde que se comprove que este é suficiente para arcar com todos os custos da contratação.

\r\n\r\n

Se a proposta não for aceitável, se o licitante deixar de reenviar a proposta e as Planilhas de Composição de Custos e Formação de Preços ou, ainda, se não atender às exigências habilitatórias, o pregoeiro examinará a proposta subsequente e, assim sucessivamente, na ordem de classificação, até a apuração de uma proposta que atenda a este Edital.

\r\n\r\n

No caso previsto no item anterior, o pregoeiro poderá negociar com o licitante, para que seja obtido preço melhor.

\r\n\r\n

Encerrada a etapa de lances e aceita a proposta ou, quando for o caso, após efetuar a negociação e obter preço aceitável para o objeto da licitação, o pregoeiro anunciará a proposta vencedora.

\r\n\r\n

A proposta vencedora cujo prazo de validade estiver esgotado poderá ser prorrogada por 60 (sessenta) dias ou prazo superior, desde que haja expressa concordância da empresa.

\r\n\r\n

A licitante classificada em primeiro lugar, na fase de lances, deverá apresentar planilha que demonstre a compatibilidade dos custos para a execução do serviço, devendo ainda observar (Orientação Normativa/SLTI nº 04, de 30 de setembro de 2014):

\r\n\r\n

a planilha de custos será entregue e analisada, no momento da aceitação do lance vencedor, em que poderá ser ajustada, se possível, para refletir corretamente os custos envolvidos na contratação, desde que não haja majoração da proposta. 

\r\n\r\n

quando da análise da planilha de custos, se houver indícios de inexequibilidade, a Administração deverá efetuar diligência, solicitando que a licitante comprove a exequibilidade da proposta.

\r\n\r\n

consideram-se preços inexequíveis aqueles que, comprovadamente, sejam insuficientes para a cobertura dos custos decorrentes da contratação.

\r\n\r\n

caso o licitante não comprove a exequibilidade da proposta, esta será desclassificada.

\r\n\r\n

O pregoeiro poderá solicitar parecer de técnicos pertencentes ao quadro de pessoal da @sigla_orgao_origem@ para orientar sua decisão. Caso o órgão não possua no seu quadro profissionais habilitados para emitir parecer técnico, poderá ser formulado por pessoa física ou jurídica qualificada.

\r\n\r\n

DA HABILITAÇÃO

\r\n\r\n

Para fins de habilitação no certame, o licitante que teve sua proposta de preços aceita deverá satisfazer os requisitos a seguir.

\r\n\r\n

Habilitação Jurídica

\r\n\r\n

A Habilitação Jurídica será comprovada mediante a apresentação da seguinte documentação, exigida conforme a natureza jurídica do licitante:

\r\n\r\n

Cédula de identidade dos representantes legais;

\r\n\r\n

Registro comercial, no caso de empresa individual;

\r\n\r\n

Ato constitutivo, estatuto ou contrato social em vigor, devidamente registrado, em se tratando de sociedades empresárias e, no caso de sociedade por ações e outras que assim o exijam, acompanhado de documentos de eleição de seus administradores;

\r\n\r\n

os documentos em apreço deverão estar acompanhados de todas as alterações ou da consolidação respectiva.

\r\n\r\n

Inscrição do ato constitutivo, no caso de registro civil, acompanhada de prova de diretoria em exercício, caso a licitante se enquadre como sociedade simples; e

\r\n\r\n

Decreto de autorização, em se tratando de empresa ou sociedade estrangeira em funcionamento no País, e ato de registro ou autorização para funcionamento expedido pelo órgão competente quando a atividade assim o exigir.

\r\n\r\n

Regularidade Fiscal e Trabalhista

\r\n\r\n

Relativamente à regularidade fiscal e trabalhista, o licitante deverá apresentar:

\r\n\r\n

prova de inscrição no Cadastro Nacional de Pessoas Jurídicas (CNPJ);

\r\n\r\n

prova de inscrição no cadastro de contribuintes estadual ou municipal ou distrital, conforme o caso, relativa à sede e domicílio do licitante, pertinente ao ramo de atividade que exerce e compatível com o objeto desta licitação;

\r\n\r\n

prova da regularidade perante as Fazendas Estadual e Municipal, ou Distrital, de acordo com o disposto no art. 29, inciso III, da Lei nº 8.666/1993, dentro do prazo de validade;

\r\n\r\n

prova da regularidade dos recolhimentos do FGTS, expedido pela Caixa Econômica Federal, conforme alínea “a” do art. 27 da Lei nº 8.036, de 11 de maio de 1990, devidamente atualizado;

\r\n\r\n

prova da regularidade trabalhista, por meio de certidão negativa de débitos trabalhistas ou certidão positiva de débitos trabalhistas com efeito de negativa, nos termos da regulamentação do Tribunal Superior do Trabalho;

\r\n\r\n

prova de regularidade fiscal perante a Fazenda Nacional, conforme Portaria RFB nº 1.751, de 2 de outubro de 2014, será efetuada mediante apresentação:

\r\n\r\n

da certidão expedida conjuntamente pela Secretaria da Receita Federal do Brasil (RFB) e pela Procuradoria-Geral da Fazenda Nacional (PGFN), referente a todos os créditos tributários federais e à Dívida Ativa da União (DAU) por elas administrados.

\r\n\r\n

a certidão a que se refere a alínea anterior abrange inclusive os créditos tributários relativos às contribuições sociais previstas nas alíneas "a", "b" e "c" do parágrafo único do art. 11 da Lei nº 8.212, de 24 de julho de 1991, às contribuições instituídas a título de substituição e às contribuições devidas, por lei, a terceiros, inclusive inscritas em DAU.

\r\n\r\n

A certidão emitida para pessoa jurídica é válida para o estabelecimento matriz e suas filiais; e

\r\n\r\n

A emissão de certidão para órgãos públicos de qualquer dos Poderes dos Estados, do Distrito Federal e dos Municípios depende da inexistência de pendências em todos os órgãos que compõem a sua estrutura.

\r\n\r\n

Qualificação Técnica

\r\n\r\n

Observação (apagar): Este item fica a critério do requisitante, sendo recomendável que conste nas contratações, especialmente para contratação de serviços continuados com dedicação exclusiva de mão de obra, em observância à Instrução Normativa nº 02/2008-STLI/MP.

\r\n\r\n

A Qualificação Técnica será comprovada mediante a apresentação da seguinte documentação:

\r\n\r\n

Digite aqui o texto...

\r\n\r\n

I -Digite aqui o texto...

\r\n\r\n

II -Digite aqui o texto...

\r\n\r\n

III -Digite aqui o texto...

\r\n\r\n

Qualificação Econômico-Financeira

\r\n\r\n

Observação (apagar): O texto abaixo representa o exigido, podendo ser suprimido quando permitido em lei. Quando for contratações de serviços continuados com dedicação exclusiva de mão de obra, deve ser acrescido do que é exigido na Instrução Normativa nº 02/2008-STLI/MP.

\r\n\r\n

A Qualificação Econômico-Financeira será comprovada mediante a apresentação dos seguintes documentos:

\r\n\r\n

Balanço Patrimonial e Demonstrações Contábeis do último exercício social, já exigíveis e apresentados na forma da lei, que comprovem a boa situação financeira da empresa, vedada a substituição por balancetes ou balanços provisórios, podendo ser atualizados, quando encerrados há mais de 03 (três) meses da data de apresentação da proposta, tomando como base a variação, ocorrida no período, do Índice Geral de Preços - Disponibilidade Interna (IGP-DI), publicado pela Fundação Getúlio Vargas (FGV) ou de outro indicador que o venha substituir. São considerados aceitos na forma da lei, o Balanço Patrimonial e as Demonstrações Contábeis assim apresentadas:

\r\n\r\n

publicado em Diário Oficial; ou

\r\n\r\n

publicado em jornal; ou

\r\n\r\n

por cópia ou fotocópia registrada ou autenticada na Junta Comercial da sede ou domicílio do licitante; ou

\r\n\r\n

por cópia ou fotocópia do Livro Diário devidamente autenticado na Junta Comercial da sede ou domicílio do licitante, ou outro órgão equivalente inclusive com os Termos de Abertura e Encerramento.

\r\n\r\n

A comprovação de boa situação financeira, avaliada automaticamente pelo SICAF, com base na obtenção de Índice de Liquidez Geral (LG) Solvência Geral (SG) e Liquidez Corrente (LC) resultante da aplicação das fórmulas a seguir:

\r\n\r\n

Ativo Circulante + Realizável a Longo Prazo

\r\n\r\n

LG = -----------------------------------------------------------------------

\r\n\r\n

Passivo Circulante + Passivo Não Circulante

\r\n\r\n

 

\r\n\r\n

Ativo Total

\r\n\r\n

SG = -----------------------------------------------------------------------

\r\n\r\n

Passivo Circulante + Passivo Não Circulante

\r\n\r\n

 

\r\n\r\n

Ativo Circulante

\r\n\r\n

LC = -----------------------------------

\r\n\r\n

Passivo Circulante

\r\n\r\n

Serão inabilitadas as empresas que não apresentarem balanço patrimonial e demonstrações contábeis referentes ao último exercício social, comprovando índices de Liquidez Geral (LG), Liquidez Corrente (LC) e Solvência Geral (SG) superiores a 1 (um); e

\r\n\r\n

Certidão Negativa de feitos sobre falência, recuperação judicial ou recuperação extrajudicial, expedida pelo distribuidor da sede do licitante.

\r\n\r\n

A habilitação jurídica e a regularidade fiscal e trabalhista poderão ser comprovadas mediante regular cadastro, habilitação parcial e documentação obrigatória válidas no SICAF, na forma do art. 4º, inciso XIV, da Lei nº 10.520/2002.

\r\n\r\n

A comprovação do cadastro e habilitação parcial no SICAF dar-se-á mediante verificação da validade dos documentos necessários, por meio de consulta online ao referido sistema.

\r\n\r\n

É assegurado ao licitante com algum documento vencido no SICAF o direito de apresentá-lo atualizado, exceto se o próprio cadastro estiver vencido, situação em que toda a documentação exigida deverá ser apresentada.

\r\n\r\n

Se o licitante não estiver regular no SICAF e comprovar, exclusivamente, mediante apresentação do formulário de Recibo de Solicitação de Serviço (RSS), a entrega da documentação à sua Unidade Cadastradora, no prazo regulamentar, o pregoeiro suspenderá os trabalhos para proceder diligência, na forma estabelecida no § 3º do art. 43 da Lei nº 8.666/1993 (art. 37 da Instrução Normativa nº 02/2010-SLTI/MP).

\r\n\r\n

As microempresas e empresas de pequeno porte, por ocasião da participação no presente certame licitatório, deverão apresentar toda a documentação exigida para efeito de comprovação de regularidade fiscal, mesmo que esta apresente alguma restrição.

\r\n\r\n

Havendo alguma restrição na comprovação da regularidade fiscal, será assegurado o prazo de 5 (cinco) dias úteis, cujo termo inicial corresponderá ao momento em que o proponente for declarado o vencedor do certame, prorrogável por igual período, a critério da administração pública, para a regularização da documentação, pagamento ou parcelamento do débito e emissão de eventuais certidões negativas ou positivas com efeito de certidão negativa (redação dada pela Lei Complementar nº 147/2014).

\r\n\r\n

A não regularização da documentação, no prazo acima previsto, implicará na decadência do direito à contratação, sem prejuízo das sanções previstas no item 14 deste Edital, sendo facultado à Administração convocar os licitantes remanescentes, na ordem de classificação, para assinatura do Contrato, ou revogar a licitação (art. 4º, § 4º, do Decreto nº 6.204/2007).

\r\n\r\n

Sob pena de inabilitação, os documentos encaminhados para habilitação deverão estar em nome do licitante com o número do CNPJ e o respectivo endereço.

\r\n\r\n

Se o licitante for a matriz, todos os documentos deverão estar em nome da matriz, e se o licitante for a filial, todos os documentos deverão estar em nome da filial, exceto aqueles documentos que, pela própria natureza, comprovadamente, forem emitidos somente em nome da matriz.

\r\n\r\n

Serão aceitos registros de CNPJ de licitante matriz e filial com diferenças de números de documentos pertinentes ao CND e ao CRF/FGTS, quando for comprovada a centralização do recolhimento dessas contribuições.

\r\n\r\n

Todos os documentos emitidos em língua estrangeira deverão ser entregues acompanhados da tradução para Língua Portuguesa, efetuada por Tradutor Juramentado, e também devidamente consularizados ou registrados no Cartório de Títulos e Documentos.

\r\n\r\n

Documentos de procedência estrangeira, mas emitidos em Língua Portuguesa, também deverão ser apresentados devidamente consularizados ou registrados no Cartório de Títulos e Documentos.

\r\n\r\n

Não será aceito protocolo de entrega ou solicitação de documentos para cumprimento de exigências deste Edital e seus Anexos.

\r\n\r\n

O pregoeiro e a equipe de apoio poderão obter certidões nos sítios oficiais de órgãos e entidades emissoras, constituindo-se em meio legal de prova, na forma do disposto no art. 25, § 4º, do Decreto nº 5.450/2005.

\r\n\r\n

Os documentos de qualificação técnica, bem como quaisquer outros de habilitação complementares que não estejam contemplados no SICAF, deverão ser enviados, via sistema, no prazo de 02 (duas) horas, a partir da solicitação do pregoeiro no sistema eletrônico (Instrução Normativa nº 01/2014-SLTI/MP).

\r\n\r\n

Os documentos referidos neste subitem, juntamente com a proposta vencedora, devidamente assinada, poderão ser solicitados pelo pregoeiro, devendo ser entregues no prazo máximo de 03 (três) dias úteis que se seguirem ao encerramento da sessão pública virtual, podendo ser entregues no protocolo do @sigla_orgao_origem@, por meio de recibo.

\r\n\r\n

Os documentos poderão ser apresentados em original, ou por qualquer processo de cópia (exceto produzida por fac-símile) autenticada por cartório competente ou por servidor da @sigla_orgao_origem@, devidamente identificado com nome, cargo e matrícula.

\r\n\r\n

Caso não sejam apresentados quaisquer dos documentos exigidos para a habilitação no presente certame ou os documentos estejam com a validade expirada, o licitante será considerado inabilitado, não se admitindo complementação posterior.

\r\n\r\n

Caso não conste do documento o respectivo prazo de validade, o documento será considerado válido pelo prazo de 60 (sessenta) dias contados a partir da data de sua emissão, exceto atestados de capacidade técnica.

\r\n\r\n

O disposto neste subitem não se aplica caso o licitante se enquadre nos moldes do subitem 11.3.

\r\n\r\n

O pregoeiro poderá sanar erros ou falhas que não alterem a substância dos documentos e sua validade jurídica, mediante despacho fundamentado, registrado em ata e acessível a todos, atribuindo-lhes validade e eficácia para fins de habilitação e classificação (art. 26, § 3º, do Decreto nº 5.450/2005).

\r\n\r\n

Se a documentação de habilitação estiver incompleta ou contrariar qualquer dispositivo deste Edital e seus Anexos, o pregoeiro considerará o licitante inabilitado e poderá instruir o processo com vistas à aplicação das penalidades cabíveis.

\r\n\r\n

Será consultado o Portal do CNJ e Portal da Transparência para verificação de possíveis condenações cíveis por ato de improbidade administrativa impeditivas da participação no certame (art. 97, caput e parágrafo único, da Lei nº 8.666/1993, SIASG-Comunica, Mensagem nº 068025, de 29/08/2011, e Acórdão TCU nº 1793/2011-P - item 9.5.1.5.2).

\r\n\r\n

Constatado o atendimento pleno às exigências editalícias será declarado o proponente vencedor.

\r\n\r\n

DOS RECURSOS

\r\n\r\n

Declarado o vencedor, o pregoeiro abrirá prazo de 30 (trinta) minutos (Acórdão nº 1990/2008 - Plenário), ou outro superior, durante o qual qualquer licitante poderá, de forma motivada, em campo próprio do sistema, manifestar sua intenção de recorrer.

\r\n\r\n

O pregoeiro fará juízo de admissibilidade da intenção de recorrer manifestada pelos licitantes com relação aos pressupostos recursais (sucumbência, tempestividade, legitimidade, interesse e motivação), abstendo-se de analisar, de antemão, o mérito dos recursos, aceitando-a ou, motivadamente, rejeitando-a, em campo próprio do sistema.

\r\n\r\n

A falta de manifestação imediata e motivada de interpor recurso, por parte do licitante, ao final da sessão pública virtual do Pregão, importará a decadência do direito de recorrer e o pregoeiro encerrará a sessão, procedendo a adjudicação do objeto ao licitante declarado vencedor (art. 26, § 1º, do Decreto nº 5.450/2005).

\r\n\r\n

O recorrente que tiver sua intenção de recorrer deverá apresentar suas razões de recurso, no prazo de 03 (três) dias (art. 26 do Decreto nº 5.450/2005).

\r\n\r\n

O sistema do Pregão, na forma Eletrônica, disponibilizará campo específico para o registro das razões de recurso e enviará mensagem eletrônica, automaticamente, para os demais licitantes, avisando-os do recurso interposto, ficando estes intimados para, querendo, apresentar contrarrazões em igual número de dias, a contar do término do prazo recursal do recorrente (art. 26 do Decreto nº 5.450/2005).

\r\n\r\n

O encaminhamento do registro de recurso, bem como das contrarrazões de recurso, será possível somente por meio eletrônico no Portal de Compras do Governo Federal (Compras Governamentais).

\r\n\r\n

Fica assegurada vista imediata dos autos do processo aos licitantes, com a finalidade de subsidiar a preparação de recursos e contrarrazões, no endereço estabelecido no subitem 11.9.2 deste Edital.

\r\n\r\n

O acolhimento de recurso importará a invalidação apenas dos atos insuscetíveis de aproveitamento (art. 26, § 2º, do Decreto nº 5.450/2005).

\r\n\r\n

DA ADJUDICAÇÃO E DA HOMOLOGAÇÃO

\r\n\r\n

Não havendo interposição de recursos, o pregoeiro encerrará a sessão e fará a adjudicação do objeto do certame, pelo sistema eletrônico do Pregão. Posteriormente, o resultado da licitação e o correspondente processo, devidamente instruído e acompanhado do relatório do pregoeiro, serão submetidos à consideração da autoridade competente para fins de homologação.

\r\n\r\n

Havendo recursos, decididos estes e constatada a regularidade dos atos praticados, a autoridade competente adjudicará o objeto e homologará o procedimento licitatório (art. 8º, incisos V e VI, e art. 27 do Decreto nº 5.450/2005).

\r\n\r\n

DAS SANÇÕES DECORRENTES DA LICITAÇÃO

\r\n\r\n

Com fundamento no art. 7º da Lei nº 10.520/2002 e no art. 28 do Decreto nº 5.450/2005, ficará impedido de licitar e contratar com a União, será descredenciado do SICAF pelo prazo de até 05 (cinco) anos, e será aplicada multa de até 10% (dez por cento) sobre o valor estimado para a contratação, sem prejuízo das demais cominações legais, garantidos o contraditório e a ampla defesa, o licitante que:

\r\n\r\n

não assinar o Contrato no prazo definido neste Edital, quando convocado dentro do prazo de validade de sua proposta;

\r\n\r\n

deixar de entregar documentação exigida neste Edital;

\r\n\r\n

apresentar documentação falsa;

\r\n\r\n

não mantiver a proposta;

\r\n\r\n

comportar-se de modo inidôneo;

\r\n\r\n

fizer declaração falsa; ou

\r\n\r\n

cometer fraude fiscal.

\r\n\r\n

Com fundamento no art. 87 c/c o art. 88 da Lei nº 8.666/1993, poderão ser aplicadas ainda as seguintes penalidades:

\r\n\r\n

suspensão temporária de participação em licitação e impedimento de contratar com a @sigla_orgao_origem@, por prazo não superior a 2 (dois) anos;

\r\n\r\n

declaração de inidoneidade para licitar ou contratar com a Administração Pública.

\r\n\r\n

No processo de aplicação de penalidades é assegurado o direito ao contraditório e à ampla defesa, no prazo de 05 (cinco) dias úteis.

\r\n\r\n

As penalidades serão obrigatoriamente registradas no SICAF (art. 28, parágrafo único, do Decreto nº 5.450/2005).

\r\n\r\n

As penalidades pela negligência na execução ou descumprimento de cláusulas contratuais estão previstas na minuta do respectivo instrumento, que se constitui no Anexo [digite aqui o número do anexo da minuta de contrato, se houver].

\r\n\r\n

A aplicação das sanções previstas neste edital não afeta os processos de responsabilização e aplicação de penalidades decorrentes atos ilícitos alcançados pela Lei nº 12.846, de 1º de agosto de 2013.

\r\n\r\n

DA ANULAÇÃO E DA REVOGAÇÃO DA LICITAÇÃO

\r\n\r\n

A @sigla_orgao_origem@ poderá revogar a presente licitação por razões de interesse público decorrentes de fato superveniente devidamente comprovado, pertinente e suficiente para justificar tal conduta, ou anulá-la por ilegalidade, de ofício ou por provocação de terceiros, mediante parecer escrito e devidamente fundamentado.

\r\n\r\n

DOS PRAZOS E CONDIÇÕES PARA ASSINATURA DO CONTRATO

\r\n\r\n

Observação (apagar): O texto deste item cabe nos casos em que existe termo de contrato nos moldes usuais, devendo ser ajustado para os casos em que não há contrato (quando for nota de empenho de despesa, autorização de compra ou ordem de execução de serviço, conforme previsto no art. 62 da Lei nº 8.666/1993).

\r\n\r\n

A contratação formalizar-se-á mediante a assinatura eletrônica de instrumento particular, observadas as cláusulas e condições deste Edital e da proposta vencedora, conforme a minuta do Contrato que integra este Edital.

\r\n\r\n

Concluído o procedimento licitatório, será o licitante vencedor notificado, por escrito, para assinatura eletrônica do termo de Contrato, do qual farão parte integrante, ainda que não transcritas total ou parcialmente no referido instrumento, as condições estabelecidas neste Edital, a proposta da empresa vencedora e todos os elementos técnicos que serviram de base à licitação.

\r\n\r\n

A assinatura eletrônica do Contrato pela adjudicatária dar-se-á por meio de sistema de processo administrativo eletrônico da @sigla_orgao_origem@ e no prazo de até 5 (cinco) dias úteis, a contar da data de sua convocação pela @sigla_orgao_origem@.

\r\n\r\n

O prazo de convocação poderá ser prorrogado, uma única vez, por igual período, quando solicitado pelo licitante vencedor, por escrito, durante o seu transcurso e desde que ocorra motivo justificado e aceito pela @sigla_orgao_origem@.

\r\n\r\n

É de responsabilidade do licitante vencedor proceder com seu cadastro como usuário externo no mencionado sistema de processo administrativo eletrônico da @sigla_orgao_origem@, conforme suas normas próprias, em tempo hábil para a assinatura do contrato no prazo estabelecido, acessando a opção "Clique aqui se você ainda não está cadastrado" na página de Acesso Externo do link a seguir: http://localhost/sei/controlador_externo.php?acao=usuario_externo_logar&id_orgao_acesso_externo=0

\r\n\r\n

Caso o licitante vencedor não tenha procedido o mencionado cadastro como usuário externo ou não tenha assinado eletronicamente o contrato no referido sistema, poderá ser convocado outro licitante, respeitada a ordem de classificação.

\r\n\r\n

A assinatura do Contrato ficará vinculada à manutenção das condições da habilitação, à plena regularidade fiscal e trabalhista da empresa vencedora e à inexistência de registro perante o Sistema de Cadastramento Unificado de Fornecedores (SICAF) que caracterize impedimento à contratação com a @sigla_orgao_origem@, sendo aplicáveis as penalidades definidas no subitem 14.1, em caso de descumprimento.

\r\n\r\n

É vedada a contratação de empresa privada que tenha em seu quadro societário servidor público da ativa, ou empregado de empresa pública, ou sociedade de economia mista, com fundamento no art. 18, inciso VIII, da Lei nº 13.080, de 2 de janeiro de 2015 (LDO 2015).

\r\n\r\n

Por determinação da Lei nº 10.522, de 19 de julho de 2002, art. 6º, inciso III, antes da celebração do Contrato a @sigla_orgao_origem@ fará consulta prévia obrigatória ao Cadastro Informativo dos Créditos não Quitados de Órgãos e Entidades Federais (CADIN).

\r\n\r\n

A consulta ao SICAF e ao CADIN será feita online, por servidor devidamente credenciado, que deverá imprimir esses documentos e anexá-los aos autos do processo de contratação.

\r\n\r\n

Se o licitante vencedor não comprovar as condições de habilitação consignadas no Edital, ou recusar-se, injustificadamente, a assinar eletronicamente o termo de Contrato no prazo estabelecido, poderá ser convocado outro licitante, respeitada a ordem de classificação, para, após comprovados os requisitos habilitatórios e feita a negociação, assinar o Contrato, sem prejuízo das penalidades previstas neste Edital e no Contrato e das demais cominações legais.

\r\n\r\n

Previamente à emissão da nota de empenho e à contratação, a Administração realizará consulta ao SICAF, CEIS, CNJ e Lista dos Inidôneos do TCU, para identificar possível proibição de contratar com o poder público.

\r\n\r\n

Para efeito do disposto no inciso XI do caput do art. 4º da Instrução Normativa RFB nº 1.234/2012, alterada pela Instrução Normativa RFB nº 1540/2015, a pessoa jurídica deverá, no ato da assinatura do contrato, apresentar à @sigla_orgao_origem@ declaração de acordo com os modelos constantes dos Anexos IV da Instrução Normativa retromencionada, conforme o caso, em 2 (duas) vias, assinada pelo seu representante legal.

\r\n\r\n

A @sigla_orgao_origem@ anexará a 1ª (primeira) via da declaração ao processo ou à documentação que deu origem ao pagamento, para fins de comprovação à Secretaria da Receita Federal do Brasil (RFB), devendo a 2ª (segunda) via ser devolvida ao interessado como recibo.

\r\n\r\n

No caso de pagamento decorrente de contratos de prestação de serviços continuados, a declaração a que se refere o caput deverá ser anexada ao processo ou à documentação que deu origem ao 1º (primeiro) pagamento do contrato, sem prejuízo de o declarante informar, imediatamente, à @sigla_orgao_origem@, qualquer alteração na situação declarada.

\r\n\r\n

A declaração poderá ser apresentada por meio eletrônico, com a utilização de certificação digital disponibilizada pela Infraestrutura de Chaves Públicas Brasileira (ICP-Brasil), desde que no documento eletrônico arquivado pela fonte pagadora conste a assinatura digital do representante legal e respectiva data da assinatura.

\r\n\r\n

Alternativamente à declaração, a @sigla_orgao_origem@ poderá verificar a permanência do contratado no Simples Nacional mediante consulta ao Portal do Simples Nacional e anexar cópia da consulta ao contrato ou documentação que deu origem ao pagamento, sem prejuízo do contratado informar imediatamente ao contratante qualquer alteração da sua permanência no Simples Nacional.

\r\n\r\n

A exigência, ora prevista, aplica-se no caso de prorrogação do contrato ou a cada novo contrato, ainda que nas mesmas condições do anterior.

\r\n\r\n

DA VIGÊNCIA CONTRATUAL

\r\n\r\n

Observação (apagar): O texto deste item cabe nos casos em que existe termo de contrato nos moldes usuais, devendo ser ajustado para os casos em que não há (quando for nota de empenho de despesa, autorização de compra ou ordem de execução de serviço, conforme previsto no art. 62 da Lei nº 8.666/1993).

\r\n\r\n

O prazo de vigência contratual será de [digite aqui a vigência contratual, preferencialmente em meses], contados da sua assinatura, com eficácia após a publicação do seu extrato no Diário Oficial da União.

\r\n\r\n

DA GARANTIA CONTRATUAL

\r\n\r\n

Observação (apagar): Recomendável que conste nas contratações.

\r\n\r\n

A CONTRATADA deverá apresentar, no prazo máximo de 10 (dez) dias úteis, prorrogáveis por igual período, a critério da CONTRATANTE, contado da assinatura do contrato, comprovante de prestação de garantia, podendo optar por caução em dinheiro ou títulos da dívida pública, seguro-garantia ou fiança bancária, devendo o valor da garantia corresponder a [digite aqui o percentual, limitado a 5% do valor do contrato] do valor total do contrato.

\r\n\r\n

A garantia, qualquer que seja a modalidade escolhida, assegurará o pagamento de:

\r\n\r\n

prejuízos advindos do não cumprimento do objeto do Contrato;

\r\n\r\n

prejuízos diretos causados à Administração decorrentes de culpa ou dolo durante a execução do Contrato;

\r\n\r\n

multas moratórias e punitivas aplicadas pela Administração à CONTRATADA; e

\r\n\r\n

obrigações trabalhistas e previdenciárias de qualquer natureza, não adimplidas pela CONTRATADA, quando couber.

\r\n\r\n

A modalidade seguro-garantia somente será aceita se contemplar todos os eventos indicados no item anterior, observada a legislação que rege a matéria.

\r\n\r\n

A garantia em dinheiro deverá ser efetuada na Caixa Econômica Federal em conta específica com correção monetária, em favor do CONTRATANTE.

\r\n\r\n

A inobservância do prazo fixado para apresentação da garantia acarretará a aplicação de multa de 0,07% (sete centésimos por cento) do valor do Contrato por dia de atraso, observado o máximo de 2% (dois por cento).

\r\n\r\n

O atraso superior a 25 (vinte e cinco) dias autoriza a Administração a promover a rescisão do contrato por descumprimento ou cumprimento irregular de suas cláusulas, conforme dispõem os incisos I e II do art. 78 da Lei nº 8.666/1993.

\r\n\r\n

O garantidor não é parte para figurar em processo administrativo instaurado pela CONTRATANTE com o objetivo de apurar prejuízos e/ou aplicar sanções à CONTRATADA.

\r\n\r\n

A garantia será considerada extinta:

\r\n\r\n

com a devolução da apólice, carta fiança ou autorização para o levantamento de importâncias depositadas em dinheiro a título de garantia, acompanhada de declaração da Administração, mediante termo circunstanciado, de que a contratada cumpriu todas as cláusulas do Contrato; e

\r\n\r\n

após o término da vigência do Contrato (Circular SUSEP nº 477, de 30 de setembro de 2013, art. 8º, inciso I, e SIASG-Comunica nº 081380-SLTI/MP, de 1º de setembro de 2014).

\r\n\r\n

A CONTRATANTE executará a garantia na forma prevista na legislação que rege a matéria.

\r\n\r\n

A garantia deverá observar ao estabelecido na Instrução Normativa nº 02/2008-SLTI/MP com alterações posteriores, bem como na legislação que rege a matéria.

\r\n\r\n

A garantia deve ter validade durante a execução do contrato, devendo ser renovada a cada prorrogação e complementada a cada alteração contratual que implique em alteração do valor da contratação.

\r\n\r\n

Observação (apagar): Este subitem acima deverá constar nas contratações continuadas.

\r\n\r\n

A garantia deverá ser integralizada, no prazo máximo de 10 (dez) dias úteis, sempre que dela forem deduzidos quaisquer valores ou quando houver alteração para acréscimo de objeto.

\r\n\r\n

A CONTRATADA autoriza a CONTRATANTE a reter, a qualquer tempo, a garantia na forma prevista neste Item.

\r\n\r\n

DA CONTA-DEPÓSITO VINCULADA PARA A QUITAÇÃO DAS OBRIGAÇÕES TRABALHISTAS

\r\n\r\n

Observação (apagar): Este item somente cabe em casos de contratação de serviços continuados com dedicação exclusiva de mão de obra.

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

Digite aqui o texto....

\r\n\r\n

DAS OBRIGAÇÕES DA CONTRATADA

\r\n\r\n

Os critérios referentes às obrigações da contratada estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS OBRIGAÇÕES DA CONTRATANTE

\r\n\r\n

Os critérios referentes às obrigações da contratante estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DO ACOMPANHAMENTO E DA FISCALIZAÇÃO

\r\n\r\n

Os critérios referentes ao acompanhamento e a fiscalização contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA LIQUIDAÇÃO E DO PAGAMENTO

\r\n\r\n

Os critérios referentes à liquidação e ao pagamento estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA ALTERAÇÃO DO CONTRATO

\r\n\r\n

Os critérios referentes à alteração contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA REPACTUAÇÃO/REAJUSTE

\r\n\r\n

Observação (apagar): Este item somente é necessário nos casos de serviços continuados, com dedicação exclusiva de mão de obra ou com duração maior que um ano.

\r\n\r\n

Os critérios referentes à repactuação contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS PENALIDADES

\r\n\r\n

Os critérios referentes às penalidades sobre a execução contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DA RESCISÃO

\r\n\r\n

Os critérios referentes à rescisão contratual estão previstos no Termo de Referência, Anexo I deste Edital.

\r\n\r\n

DAS DISPOSIÇÕES FINAIS

\r\n\r\n

A participação na presente licitação implica na concordância, por parte do licitante, com todos os termos e condições deste Edital.

\r\n\r\n

Na contagem dos prazos estabelecidos neste Edital, excluir-se-á o dia do início e incluir-se-á o do vencimento, e considerar-se-ão os dias consecutivos, exceto quando estiver explicitamente disposto em contrário.

\r\n\r\n

Só se iniciam e vencem os prazos referidos neste Edital em dia de expediente na @sigla_orgao_origem@.

\r\n\r\n

O desatendimento de exigências formais não essenciais não importará no afastamento do licitante, desde que seja possível a exata compreensão de sua proposta e a perfeita aferição de sua qualificação.

\r\n\r\n

As normas que disciplinam este certame serão sempre interpretadas em favor da ampliação da disputa entre os interessados, sem comprometimento da segurança do futuro contrato.

\r\n\r\n

Nenhuma indenização será devida aos licitantes pela elaboração da proposta ou pela apresentação de documentação exigida no presente Edital.

\r\n\r\n

Da sessão pública virtual, lavrar-se-á ata circunstanciada, na qual serão registradas as ocorrências relevantes e, ao final, deverá ser assinada pelo pregoeiro e pela equipe de apoio, ficando disponível no sistema eletrônico do Portal de Compras do Governo Federal (Compras Governamentais) para os licitantes e para a sociedade.

\r\n\r\n

O licitante vencedor, em decorrência de aumento ou diminuição quantitativa do objeto licitado, e obedecendo-se as condições inicialmente previstas no Contrato, ficará obrigado a aceitar os acréscimos ou supressões que se fizerem necessários na execução dos serviços até o limite de 25% (vinte e cinco por cento) do valor inicial atualizado da contratação.

\r\n\r\n

Fica facultada, entretanto, a supressão além do limite acima estabelecido, mediante consenso entre os contratantes.

\r\n\r\n

A adjudicação ao licitante vencedor e a homologação desta licitação pela autoridade competente não implicam direito à contratação.

\r\n\r\n

É vedado à empresa CONTRATADA caucionar ou utilizar o contrato objeto da presente licitação para qualquer operação financeira, sem prévia e expressa autorização da @sigla_orgao_origem@.

\r\n\r\n

No caso de fusão, cisão ou incorporação da CONTRATADA, a @sigla_orgao_origem@ deverá ser comunicado por escrito sobre estas mudanças, e só aceitará a nova empresa se destas transformações não resultarem prejuízos à execução dos serviços, mantidas as condições de habilitação e a manutenção das condições estabelecidas no contrato original.

\r\n\r\n

A CONTRATADA prestará todos os esclarecimentos que lhe forem solicitados pela Administração, cujas reclamações estrará obrigada a atender prontamente.

\r\n\r\n

O cadastramento da proposta de preços no sistema de pregão do Portal de Compras do Governo Federal (Compras Governamentais) implica em pleno e total conhecimento das condições dos locais onde serão executados os serviços, bem como do Edital e seus Anexos, necessários ao perfeito cumprimento da execução do contrato.

\r\n\r\n

O Edital poderá ser obtido pela Internet, no sítio www.comprasgovernamentais.gov.br.

\r\n\r\n

Caso seja necessária qualquer alteração deste Edital no curso do prazo estabelecido para a realização do Pregão na forma Eletrônica, este será novamente divulgado pelos mesmos meios que o texto original, reabrindo-se o prazo inicialmente estabelecido, exceto quando, inquestionavelmente, a alteração não afetar a formulação das propostas (art. 20 do Decreto nº 5.450/2005).

\r\n\r\n

Os interessados poderão obter o Manual para operação do sistema de Pregão na forma Eletrônica no seguinte endereço: www.comprasgovernamentais.gov.br, no link Fornecedores > Manuais > Pregão Eletrônico.

\r\n\r\n

É facultado ao pregoeiro ou à autoridade superior, em qualquer fase deste Pregão, promover diligências destinadas a esclarecer ou complementar a instrução do processo, vedada a inclusão de documentos que deveriam constar originariamente da proposta ou da documentação.

\r\n\r\n

Os casos omissos serão resolvidos pelo pregoeiro, com base na legislação que rege o presente certame, mencionada no preâmbulo deste Edital.

\r\n\r\n

Para dirimir as questões oriundas desta licitação e da futura contratação, que não puderem ser solucionadas administrativamente, será competente o Foro da Justiça Federal, Subseção Judiciária de Brasília, Seção Judiciária da Justiça Federal de Brasília/DF, excluído qualquer outro, por mais privilegiado que seja.

\r\n\r\n

DOS ANEXOS

\r\n\r\n

Integram este Edital, independentemente de transcrição, os seguintes anexos:

\r\n\r\n

Anexo I – Termo de Referência (SEI nº #######).

\r\n\r\n

Anexo II – Modelo de Planilha de Preços e Formação de Custos (SEI nº #######).

\r\n\r\n

Anexo III – Minuta de Contrato (SEI nº #######).

\r\n\r\n

Anexo IV – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

Anexo V – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

Anexo VI – Digite aqui o texto descritivo do anexo... .... (SEI nº #######).

\r\n\r\n

 

\r\n\r\n

O presente documento segue assinado pelo servidor Elaborador, Pregoeiro (validador) e pela autoridade responsável por sua aprovação, com fulcro no Regimento Interno da @sigla_orgao_origem@, cujos fundamentos passam a integrar a presente decisão por força do art. 50, § 1º, da Lei nº 9.784, de 29 de janeiro de 1999.

\r\n',30,'N','N','S','N','N','N','S','S'),(717,109,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(718,109,'Anexos','

ANEXOS AO @serie@

\r\n\r\n

[Incluir o texto de cada anexo que precisar constar diretamente no teor do @serie@]

\r\n',50,'N','N','N','N','N','N','S','S'),(719,109,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(720,110,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(721,110,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(722,110,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(723,110,'Corpo do Texto','

IDENTIFICAÇÃO DO PROPONENTE

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

1.1. Nome Completo

\r\n
\r\n

1.2. CPF nº

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.3. Telefone

\r\n
\r\n

1.4. Órgão

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.4. Unidade

\r\n
\r\n

1.5. Cargo / Função

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n\r\n

IDENTIFICAÇÃO DO SUPRIDO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

1.1. Nome Completo

\r\n
\r\n

1.2. CPF nº

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.3. Telefone

\r\n
\r\n

1.4. Órgão

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.4. Unidade

\r\n
\r\n

1.5. Cargo / Função

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n\r\n

SUPRIMENTO DE FUNDOS

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

 

\r\n
\r\n

Material de Consumo

\r\n
\r\n

Natureza de Despesa: 339030

\r\n
\r\n

Valor: R$

\r\n
\r\n

 

\r\n
\r\n

Prestação de Serviços por Pessoa Jurídica

\r\n
\r\n

Natureza de Despesa: 339039

\r\n
\r\n

Valor: R$

\r\n
\r\n

 

\r\n
\r\n

Passagens e Despesas com Locomoção

\r\n
\r\n

Natureza de Despesa: 339033

\r\n
\r\n

Valor: R$

\r\n
\r\n

 

\r\n
\r\n

Prestação de Serviços por Pessoa Física

\r\n
\r\n

Natureza de Despesa: 3390.36

\r\n
\r\n

Valor: R$

\r\n
\r\n\r\n

  

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Descrição da Finalidade:

\r\n
\r\n

[Texto descrevendo a finalidade na qual o Suprimento de Fundos será utilizado]

\r\n
\r\n

Justificativa e Fundamentação Legal:

\r\n
\r\n

[Indicar a justificativa da necessidade do Suprimento de Fundos e a fundamentação legal pertinente]

\r\n
\r\n\r\n

  

\r\n\r\n

FORMA DE UTILIZAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Cartão de Pagamento do Governo Federal (CPGF):

\r\n
\r\n

 

\r\n
\r\n

Saque

\r\n
\r\n

R$ 

\r\n
\r\n

 

\r\n
\r\n

Fatura

\r\n
\r\n

R$ 

\r\n
\r\n

NE nº

\r\n
\r\n

 

\r\n
\r\n

Data:

\r\n
 
\r\n

NS nº

\r\n
\r\n

 

\r\n
\r\n

Data:

\r\n
 
\r\n\r\n

  

\r\n\r\n

APLICAÇÃO E PRESTAÇÃO DE CONTAS

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Período de Aplicação:

\r\n
\r\n

DE:

\r\n
\r\n

ATÉ:

\r\n
\r\n

[digitar a data no formato dd/mm/aaaa]

\r\n
\r\n

[digitar a data no formato dd/mm/aaaa]

\r\n
\r\n\r\n

 

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Data para Prestação de Contas:

\r\n
\r\n

[digitar a data no formato dd/mm/aaaa]

\r\n
\r\n\r\n

O proponente e o suprido declaram estar cientes da legislação aplicável à concessão de suprimento de fundos, em especial aos dispositivos que regulam sua finalidade, prazos de utilização e de prestação de contas, bem como do normativo interno que estabelece diretrizes para a concessão e utilização de suprimento de fundos.

\r\n\r\n

Ainda, declaram ter ciência de que o prazo para prestação de contas do presente suprimento de fundos será de no máximo trinta dias contados da data do término do período de aplicação.

\r\n\r\n

  

\r\n\r\n

O presente documento segue assinado pelo Proponente e pelo Suprido acima identificados. Para continuidade do procedimento, este processo deve ser encaminhado ao Ordenador de Despesa competente.

\r\n',30,'N','N','S','N','N','N','S','S'),(724,110,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(725,110,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(726,111,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(727,111,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(728,111,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(729,111,'Corpo do Texto','

Órgão Solicitante

\r\n\r\n

@hierarquia_unidade_invertida@.

\r\n\r\n

DESCRIÇÃO DO MATERIAL OU SERVIÇO

\r\n\r\n

[Digite aqui o texto de descrição do material ou serviço].

\r\n\r\n

[Digite aqui o texto de descrição do material ou serviço].

\r\n\r\n

FINALIDADE

\r\n\r\n

[Digite aqui o texto indicando a finalidade da despesa].

\r\n\r\n

[Digite aqui o texto indicando a finalidade da despesa].

\r\n\r\n

JUSTIFICATIVA PARA REALIZAÇÃO DA DESPESA POR SUPRIMENTO DE FUNDOS

\r\n\r\n

[Digite aqui o texto de justificativa que fundamenta a realização da despesa com o uso de Suprimento de Fundos].

\r\n\r\n

[Digite aqui o texto de justificativa que fundamenta a realização da despesa com o uso de Suprimento de Fundos].

\r\n\r\n

DESPESAS DE PEQUENO VULTO E PRONTO PAGAMENTO

\r\n\r\n

Para despesas de pequeno vulto e pronto pagamento, observar a Tabela dos valores limites abaixo:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Tipo

\r\n
\r\n

Compras e Serviços em Geral

\r\n
\r\n

Suprimento

\r\n
\r\n

Nota Fiscal

\r\n
\r\n

Cartão de Pagamento do Governo Federal (CPGF)

\r\n
\r\n

10% do valor estabelecido na alínea “a” (convite) do inciso II do artigo 23 da Lei nº 8.666/1993, alterada pela Lei nº 9.648/1998./p>

\r\n
\r\n

1% do valor estabelecido na alínea “a” (convite) do inciso II do artigo 23 da Lei nº 8.666/1993, alterada pela Lei nº 9.648/1998.

\r\n
\r\n\r\n

  

\r\n\r\n

O presente documento segue assinado pelo Solicitante da despesa. Para continuidade do procedimento, este processo deve ser encaminhado à unidade do Suprido pertinente.

\r\n',30,'N','N','S','N','N','N','S','S'),(730,111,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(731,111,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(732,112,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(733,112,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(734,112,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(735,112,'Corpo do Texto','

IDENTIFICAÇÃO DO SUPRIDO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

1.1. Nome Completo

\r\n
\r\n

1.2. CPF nº

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.3. Telefone

\r\n
\r\n

1.4. Órgão

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

1.4. Unidade

\r\n
\r\n

1.5. Cargo / Função

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n\r\n

DADOS DO EMPENHO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Número do Empenho:

\r\n
\r\n

[Digite aqui o número de identificação do empenho]

\r\n
\r\n

Data do Empenho:

\r\n
\r\n

[Digite aqui a data do empenho no formato dd/mm/aaaa]

\r\n
\r\n\r\n

  

\r\n\r\n

FORMA DE UTILIZAÇÃO

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Data

\r\n
\r\n

Identificação do Credor

\r\n
\r\n

Número da Nota Fiscal

\r\n
\r\n

Valor

\r\n
\r\n

Saque

\r\n
\r\n

Fatura

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

Total do Suprimento de Fundos Concedido:

\r\n
\r\n

 

\r\n
\r\n

Total da Despesa Realizada (saque/fatura):

\r\n
\r\n

 

\r\n
\r\n

Total não Sacado:

\r\n
\r\n

 

\r\n
\r\n

Total a Recolher:

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n\r\n

O presente documento segue assinado pelo Suprido. Para continuidade do procedimento e aprovação das contas, este processo deve ser encaminhado ao Ordenador de Despesa competente.

\r\n',30,'N','N','S','N','N','N','S','S'),(736,112,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(737,112,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(738,113,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(739,113,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(740,113,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'); +INSERT INTO `secao_modelo` VALUES (741,113,'Corpo do Texto','

PREGÃO ELETRÔNICO PARA REGISTRO DE PREÇOS Nº XX/XXXX

\r\n\r\n

Validade da Ata: XX meses

\r\n\r\n

  

\r\n\r\n

Aos XX dias do mês de XXXXXXXX de @ano@, a União, por intermédio da @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede na [digite aqui o endereço completo], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número],

\r\n\r\n

CONSIDERANDO o disposto na Lei nº 10.520/2002, no Decreto nº 7.892/2013, no Decreto nº 8.250/2014, no Decreto nº 5.450/2005, no Decreto nº 3.722/2001, aplicando-se, subsidiariamente, a Lei nº 8.666/1993, e as demais normas legais correlatas; e

\r\n\r\n

CONSIDERANDO a classificação das propostas apresentadas no Pregão Eletrônico para Registro de Preços em epígrafe, conforme Ata publicada em XX/XX/XXXX, homologada pela autoridade competente,

\r\n\r\n

RESOLVE:

\r\n\r\n

REGISTRAR OS PREÇOS para a eventual contratação dos itens a seguir elencados, conforme Cláusulas abaixo e especificações do Termo de Referência, que passa a fazer parte integrante desta, tendo sido, os referidos preços, oferecidos pela [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], neste ato representada pelo Senhor(a) [digite aqui o nome][nacionalidade][estado civil][profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], cuja proposta foi classificada em primeiro lugar no Grupo XX do certame.

\r\n\r\n

  

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

A presente Ata tem por objeto [digite aqui o objeto da contratação], conforme especificações e condições constantes no Edital e anexos e, ainda, a documentação, as propostas de preços, os lances apresentados pelo licitante classificado em primeiro lugar e os demais fornecedores que tiveram seus preços registrados para a formação de cadastro de reserva (incisos I e II do art. 11 do Decreto nº 7.892/2014), a fim de atender ao quantitativo total estimado para a contratação, observado o preço da proposta vencedora, visando contratações futuras.

\r\n\r\n

Grupo/Itens registrados – Da especificação e do quantitativo a ser fornecido:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Grupo

\r\n
\r\n

Item

\r\n
\r\n

Descrição do Item (Objeto)

\r\n
\r\n

CATMAT

\r\n
\r\n

Quantidade

\r\n
\r\n

Unidade de Medida

\r\n
\r\n

1

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Este instrumento não obriga a CONTRATANTE a firmar contratações nas quantidades estimadas, podendo ocorrer licitações específicas para aquisição do(s) objetos(s), obedecida a legislação pertinente, sendo assegurada ao fornecedor registrado a preferência, em igualdade de condições.

\r\n\r\n

CLÁUSULA SEGUNDA – DA RELAÇÃO DOS FORNECEDORES BENEFICIÁRIOS DO REGISTRO DE PREÇOS

\r\n\r\n

Em decorrência das propostas e lances apresentados e homologados no certame licitatório, ficam registrados, para contratações futuras, os preços unitários e respectivos fornecedores classificados, conforme Relação dos Fornecedores Beneficiários do Registro de Preços, Anexo I desta Ata.

\r\n\r\n

Os fornecedores registrados para formação de cadastro de reserva só se beneficiarão deste Registro de Preços no caso de exclusão do primeiro colocado da Ata, nas hipóteses previstas nos artigos 20 e 21 do Decreto nº 7.892/2013 (§ 1º do art. 11 do Decreto nº 7.892/2013).

\r\n\r\n

CLÁUSULA TERCEIRA – DA UTILIZAÇÃO DA ATA DE REGISTRO DE PREÇOS

\r\n\r\n

Esta Ata de Registro de Preços, durante sua vigência, poderá ser utilizada por qualquer órgão ou entidade da Administração que não tenha participado deste certame, mediante anuência da CONTRATANTE, na forma do art. 22 do Decreto nº 7.892/2013.

\r\n\r\n

Os órgãos e entidades que não participaram do registro de preços, quando desejarem fazer uso da ata de registro de preços, deverão consultar a CONTRATANTE para manifestação sobre a possibilidade de adesão.

\r\n\r\n

Caberá ao fornecedor beneficiário desta ata de registro de preços, observadas as condições nela estabelecidas, optar pela aceitação ou não do fornecimento decorrente de adesão, desde que não prejudique as obrigações presentes e futuras decorrentes desta ata, assumidas com a CONTRATANTE e demais órgãos participantes.

\r\n\r\n

As aquisições ou contratações adicionais decorrentes de adesão a esta ata não poderão exceder, por órgão ou entidade, a cem por cento dos quantitativos dos itens do instrumento convocatório e registrados na ata de registro de preços para a CONTRATANTE e demais órgãos participantes.

\r\n\r\n

O quantitativo decorrente das adesões a esta ata de registro de preços não poderá exceder, na totalidade, ao quíntuplo do quantitativo de cada item registrado na ata de registro de preços para a CONTRATANTE e demais órgãos participantes, independente do número de órgãos não participantes que aderirem.

\r\n\r\n

Após a autorização do órgão gerenciador, o órgão não participante deverá efetivar a aquisição ou contratação solicitada em até noventa dias, observado o prazo de vigência desta ata.

\r\n\r\n

Compete ao órgão não participante os atos relativos à cobrança do cumprimento pelo fornecedor das obrigações contratualmente assumidas e a aplicação, observada a ampla defesa e o contraditório, de eventuais penalidades decorrentes do descumprimento de cláusulas contratuais, em relação às suas próprias contratações, informando as ocorrências à CONTRATANTE.

\r\n\r\n

Os órgãos ou entidades que utilizarem esta Ata de Registro de Preços deverão observar, quanto ao preço unitário, às cláusulas e condições constantes do Edital do Pregão que a precedeu e que integra o presente instrumento de compromisso.

\r\n\r\n

Os Órgãos ou Entidades não participantes, ou caronas, somente poderão efetuar adesões à Ata de Registro de Preços mediante prévia e expressa autorização do órgão gerenciador, conforme determina o art. 22 do Decreto nº 7.892 de 23/01/2013.

\r\n\r\n

CLÁUSULA QUARTA – DA VIGÊNCIA

\r\n\r\n

A vigência da Ata de Registro de Preço será de [digite aqui a quantidade de meses] meses contados da data da sua assinatura, com eficácia legal após a da data da publicação do seu extrato no Diário Oficial da União, tendo início e vencimento em dia de expediente, devendo-se excluir o primeiro e incluir o último.

\r\n\r\n

CLÁUSULA QUINTA – DA REVISÃO DOS PREÇOS REGISTRADOS

\r\n\r\n

Durante a vigência da Ata, os preços registrados serão fixos e irreajustáveis, exceto nas hipóteses previstas nos arts. 17 e 18 do Decreto nº 7.892/2013 e devidamente comprovadas às situações previstas na alínea “d” do inciso II do art. 65 da Lei nº 8.666/1993 ou decorrentes de redução dos preços praticados no mercado.

\r\n\r\n

Mesmo comprovada à ocorrência de situação prevista na alínea “d” do inciso II do art. 65 da Lei nº 8.666/1993, a Administração, se julgar conveniente, poderá optar por revogar a Ata e iniciar outro processo licitatório.

\r\n\r\n

Quando o preço registrado se tornar superior ao preço praticado no mercado por motivo superveniente, o órgão gerenciador definirá o novo preço máximo a ser pago pela Administração e convocará os fornecedores para negociarem a redução dos preços aos valores praticados pelo mercado.

\r\n\r\n

Os fornecedores que não aceitarem reduzir seus preços aos valores praticados pelo mercado serão liberados do compromisso assumido, sem aplicação de penalidade.

\r\n\r\n

A ordem de classificação dos fornecedores que aceitarem reduzir seus preços aos valores de mercado observará a classificação original.

\r\n\r\n

Quando o preço de mercado se tornar superior aos preços registrados e o fornecedor não puder cumprir o compromisso, o órgão gerenciador poderá:

\r\n\r\n

liberar o fornecedor do compromisso assumido, caso a comunicação ocorra antes do pedido de fornecimento, e sem aplicação da penalidade se confirmada a veracidade dos motivos e comprovantes apresentados; e

\r\n\r\n

convocar os demais fornecedores para assegurar igual oportunidade de negociação.

\r\n\r\n

Quando os fornecedores registrados não aceitarem manter o preço originariamente fixado na ata, o órgão gerenciador deverá proceder à revogação da ata de registro de preços, adotando as medidas cabíveis para obtenção da contratação mais vantajosa.

\r\n\r\n

CLÁUSULA SEXTA – DO REMANEJAMENTO DAS QUANTIDADES PREVISTAS PARA OS ITENS COM PREÇOS REGISTRADOS

\r\n\r\n

As quantidades previstas para os itens com preços registrados poderão ser remanejadas pela CONTRATANTE entre os órgãos participantes e não participantes do procedimento licitatório para registro de preços.

\r\n\r\n

O remanejamento somente poderá ser feito de órgão participante para órgão participante e de órgão participante para órgão não participante.

\r\n\r\n

No caso de remanejamento de órgão participante para órgão não participante, serão observados os limites previstos nos §§ 3º e 4º do art. 22 do Decreto nº 7.892, de 23 de janeiro de 2013.

\r\n\r\n

Caberá à CONTRATANTE autorizar o remanejamento solicitado, com a redução do quantitativo inicialmente informado pelo órgão participante, desde que haja prévia anuência do órgão que vier a sofrer redução dos quantitativos informados.

\r\n\r\n

Caso o remanejamento seja feito entre órgãos de Estados ou Municípios distintos, caberá ao fornecedor beneficiário da Ata de Registro de Preços, observadas as condições nela estabelecidas, optar pela aceitação ou não do fornecimento decorrente do remanejamento dos itens.

\r\n\r\n

CLÁUSULA SÉTIMA – DO CANCELAMENTO DO REGISTRO DE PREÇOS

\r\n\r\n

O Fornecedor Beneficiário terá seu registro de preço cancelado na Ata, por intermédio de processo administrativo específico, assegurado o contraditório e ampla defesa:

\r\n\r\n

A pedido, quando:

\r\n\r\n

comprovar está impossibilitado de cumprir as exigências da Ata, por ocorrência de casos fortuitos ou de força maior devidamente comprovados;

\r\n\r\n

o seu preço registrado se tornar, comprovadamente, inexequível em função da elevação dos preços de mercado, dos insumos que compõem o custo das aquisições/contratações, e se a comunicação ocorrer antes do pedido de fornecimento, sem aplicação de penalidade.

\r\n\r\n

Por iniciativa da CONTRATANTE, quando:

\r\n\r\n

o fornecedor não aceitar reduzir o preço registrado, na hipótese deste se tornar superior àqueles praticados no mercado, sem aplicação de penalidade (§ 1º do art. 18 Decreto nº 7.892/2013);

\r\n\r\n

o fornecedor perder qualquer condição de habilitação exigida no processo licitatório, garantida a possibilidade da aplicação de penalidade;

\r\n\r\n

por razões de interesse público, devidamente motivadas e justificadas;

\r\n\r\n

não cumprir as obrigações decorrentes da Ata de Registro de Preço;

\r\n\r\n

o fornecedor não assinar o Contrato ou instrumento equivalente, no prazo estabelecido pela CONTRATANTE, sem justificativa aceitável;

\r\n\r\n

não comparecer ou se recusar a retirar, no prazo estabelecido, os pedidos decorrentes da Ata de Registro de Preço;

\r\n\r\n

caracterizada qualquer hipótese de inexecução total ou parcial das condições estabelecidas na Ata de Registro de Preço ou nos pedidos dela decorrentes;

\r\n\r\n

sofrer sanção prevista nos incisos III ou IV do caput do art. 87 da Lei nº 8.666/1993 ou no art. 7º da Lei nº 10.520/2002 (art. 20, IV, do Decreto nº 7.892/2013).

\r\n\r\n

Ocorrendo qualquer das hipóteses, concluído o processo, a CONTRATANTE fará o devido apostilamento na Ata de Registro de Preço e informará ao Fornecedor Beneficiário a nova ordem de registro.

\r\n\r\n

Esta Ata de Registro de Preço será cancelada automaticamente:

\r\n\r\n

por decurso do prazo de vigência;

\r\n\r\n

quando não restarem fornecedores registrados.

\r\n\r\n

CLÁUSULA OITAVA – DAS CONDIÇÕES PARA O ACEITE DA NOTA DE EMPENHO

\r\n\r\n

As empresas detentoras dos preços registrados poderão ser convidadas a firmar contratações de fornecimento, observadas as condições fixadas neste instrumento, e seus Anexos, e na legislação pertinente.

\r\n\r\n

Para cada fornecimento, a contratação formalizar-se-á mediante emissão de nota de empenho em nome da licitante que tenha firmado esta Ata de Registro de Preços e o titular do órgão ou entidade CONTRATANTE.

\r\n\r\n

A licitante vencedora receberá, por escrito (e-mail ou fax), cópia da Nota de Empenho, para no prazo de 05 (cinco) dias úteis, contados da notificação, promover o aceite, sob pena de decair o direito à contratação, sem prejuízo da aplicação das penalidades cabíveis.

\r\n\r\n

O prazo de convocação poderá ser prorrogado, uma única vez, por igual período, quando solicitado pelo licitante vencedor, por escrito, durante o seu transcurso e desde que ocorra motivo justificado e aceito pela CONTRATANTE.

\r\n\r\n

Em cada fornecimento decorrente desta Ata serão observadas, quanto ao preço unitário, as cláusulas e condições constantes do Edital do Pregão que a precedeu e que integra o presente instrumento de compromisso.

\r\n\r\n

A emissão da Nota de Empenho decorrente do Sistema de Registro de Preços deverá ser assinado no prazo de validade da ata de registro de preços.

\r\n\r\n

CLÁUSULA NONA – DO PREÇO

\r\n\r\n

O preço consignado no contrato será o registrado nesta Ata, conforme registrado no resultado do Pregão Eletrônico.

\r\n\r\n

CLÁUSULA DÉCIMA – DAS OBRIGAÇÕES DO FORNECEDOR BENEFICIÁRIO

\r\n\r\n

Os fornecedores detentores dos preços registrados deverão cumprir o compromisso firmado por intermédio do presente instrumento, nos termos dispostos nos Decretos nº 7.892/2013 e nº 8.250/2014 e no Edital de Pregão e seus anexos, e cumprir, integralmente, todas as cláusulas e condições constantes dos contratos ou instrumentos equivalentes porventura firmados, sob pena de revogação da presente Ata de Registro de Preços, sem prejuízo das aplicações das penalidades cabíveis.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DO RECEBIMENTO E CRITÉRIO DE ACEITAÇÃO DO OBJETO

\r\n\r\n

Os serviços serão recebidos na forma do Termo de Referência, Anexo I do Edital.

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DO PAGAMENTO

\r\n\r\n

O pagamento dar-se-á na forma do edital e do Termo de Referência, Anexo I do Edital.

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DAS PENALIDADES

\r\n\r\n

O descumprimento da Ata de Registro de Preços ensejará aplicação das penalidades estabelecidas no 7º da Lei nº 10.520/2002 e no art. 28 do Decreto nº 5.450/2005, bem como no Edital e Contrato.

\r\n\r\n

É da competência do órgão gerenciador a aplicação das penalidades decorrentes do descumprimento do pactuado nesta ata de registro de preço (art. 5º, inciso X, do Decreto nº 7.892/2013), exceto nas hipóteses em que o descumprimento disser respeito às contratações dos órgãos participantes, caso no qual caberá ao respectivo órgão participante à aplicação da penalidade (art. 6º, parágrafo único, do Decreto nº 7.892/2013).

\r\n\r\n

CLÁUSULA DÉCIMA OITAVA – DAS DISPOSIÇÕES FINAIS

\r\n\r\n

As partes ficam, ainda, adstritas às seguintes disposições:

\r\n\r\n

todas as alterações que se fizerem necessárias serão registradas por intermédio de lavratura de Termo Aditivo à presente ata de Registro de Preços;

\r\n\r\n

integram esta Ata o Fornecedor Beneficiário do Registro de Preços, sua proposta e, ainda, o Edital de Pregão e seus anexos.

\r\n\r\n

É vedado efetuar acréscimos nos quantitativos fixados por esta ata de registro de preços, inclusive o acréscimo de que trata o § 1º do art. 65 da Lei nº 8.666/1993.

\r\n\r\n

Os contratos decorrentes desta ata de registro de preços poderão ser alterados, observado o disposto no art. 65 da Lei nº 8.666/1993.

\r\n\r\n

CLÁUSULA DÉCIMA NONA – DO FORO

\r\n\r\n

Fica eleito o foro da Seção Judiciária da Justiça Federal de [digite aqui a cidade/Estado da subseção judiciária] para dirimir quaisquer questões oriundas do presente Contrato, com exclusão de qualquer outro.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Contrato é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(742,113,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(743,113,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(744,114,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(745,114,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(746,114,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(747,114,'Corpo do Texto','

PREGÃO ELETRÔNICO PARA REGISTRO DE PREÇOS Nº XX/XXXX

\r\n\r\n

Validade da Ata: XX meses

\r\n\r\n

  

\r\n\r\n

Aos XX dias do mês de XXXXXXXX de @ano@, a União, por intermédio da @descricao_orgao_maiusculas@ – @sigla_orgao_origem@, inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], com sede na [digite aqui o endereço completo], doravante denominada CONTRATANTE, por intermédio do seu [Cargo do Signatário 1], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], e do seu [Cargo do Signatário 2], Senhor(a) [digite aqui o nome], [nacionalidade], [estado civil], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação], CPF nº [digite aqui o número],

\r\n\r\n

CONSIDERANDO o disposto na Lei nº 10.520/2002, no Decreto nº 7.892/2013, no Decreto nº 8.250/2014, no Decreto nº 5.450/2005, no Decreto nº 3.722/2001, aplicando-se, subsidiariamente, a Lei nº 8.666/1993, e as demais normas legais correlatas; e

\r\n\r\n

CONSIDERANDO a classificação das propostas apresentadas no Pregão Eletrônico para Registro de Preços em epígrafe, conforme Ata publicada em XX/XX/XXXX, homologada pela autoridade competente,

\r\n\r\n

RESOLVE:

\r\n\r\n

REGISTRAR OS PREÇOS para a eventual contratação dos itens a seguir elencados, conforme Cláusulas abaixo e especificações do Termo de Referência, que passa a fazer parte integrante desta, tendo sido, os referidos preços, oferecidos pela [DIGITE AQUI O NOME DA EMPRESA], inscrita no CNPJ/MF sob o nº [digite aqui o CNPJ], estabelecida à [digite aqui o endereço completo da empresa], neste ato representada pelo Senhor(a) [digite aqui o nome][nacionalidade][estado civil][profissão], portador da Carteira de Identidade nº [digite aqui o número com a Unidade da Federação] e do CPF nº [digite aqui o número], cuja proposta foi classificada em primeiro lugar no Grupo XX do certame.

\r\n\r\n

  

\r\n\r\n

CLÁUSULA PRIMEIRA – DO OBJETO

\r\n\r\n

A presente Ata tem por objeto [digite aqui o objeto da contratação], conforme especificações e condições constantes no Edital e anexos e, ainda, a documentação, as propostas de preços, os lances apresentados pelo licitante classificado em primeiro lugar e os demais fornecedores que tiveram seus preços registrados para a formação de cadastro de reserva (incisos I e II do art. 11 do Decreto nº 7.892/2014), a fim de atender ao quantitativo total estimado para a contratação, observado o preço da proposta vencedora, visando contratações futuras.

\r\n\r\n

Grupo/Itens registrados – Da especificação e do quantitativo a ser fornecido:

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Grupo

\r\n
\r\n

Item

\r\n
\r\n

Descrição do Item (Objeto)

\r\n
\r\n

CATMAT

\r\n
\r\n

Quantidade

\r\n
\r\n

Unidade de Medida

\r\n
\r\n

1

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

3

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

1

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

2

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n

 

\r\n
\r\n\r\n

Este instrumento não obriga a CONTRATANTE a firmar contratações nas quantidades estimadas, podendo ocorrer licitações específicas para aquisição do(s) objetos(s), obedecida a legislação pertinente, sendo assegurada ao fornecedor registrado a preferência, em igualdade de condições.

\r\n\r\n

CLÁUSULA SEGUNDA – DA RELAÇÃO DOS FORNECEDORES BENEFICIÁRIOS DO REGISTRO DE PREÇOS

\r\n\r\n

Em decorrência das propostas e lances apresentados e homologados no certame licitatório, ficam registrados, para contratações futuras, os preços unitários e respectivos fornecedores classificados, conforme Relação dos Fornecedores Beneficiários do Registro de Preços, Anexo I desta Ata.

\r\n\r\n

Os fornecedores registrados para formação de cadastro de reserva só se beneficiarão deste Registro de Preços no caso de exclusão do primeiro colocado da Ata, nas hipóteses previstas nos artigos 20 e 21 do Decreto nº 7.892/2013 (§ 1º do art. 11 do Decreto nº 7.892/2013).

\r\n\r\n

CLÁUSULA TERCEIRA – DA UTILIZAÇÃO DA ATA DE REGISTRO DE PREÇOS

\r\n\r\n

Esta Ata de Registro de Preços, durante sua vigência, poderá ser utilizada por qualquer órgão ou entidade da Administração que não tenha participado deste certame, mediante anuência da CONTRATANTE, na forma do art. 22 do Decreto nº 7.892/2013.

\r\n\r\n

Os órgãos e entidades que não participaram do registro de preços, quando desejarem fazer uso da ata de registro de preços, deverão consultar a CONTRATANTE para manifestação sobre a possibilidade de adesão.

\r\n\r\n

Caberá ao fornecedor beneficiário desta ata de registro de preços, observadas as condições nela estabelecidas, optar pela aceitação ou não do fornecimento decorrente de adesão, desde que não prejudique as obrigações presentes e futuras decorrentes desta ata, assumidas com a CONTRATANTE e demais órgãos participantes.

\r\n\r\n

As aquisições ou contratações adicionais decorrentes de adesão a esta ata não poderão exceder, por órgão ou entidade, a cem por cento dos quantitativos dos itens do instrumento convocatório e registrados na ata de registro de preços para a CONTRATANTE e demais órgãos participantes.

\r\n\r\n

O quantitativo decorrente das adesões a esta ata de registro de preços não poderá exceder, na totalidade, ao quíntuplo do quantitativo de cada item registrado na ata de registro de preços para a CONTRATANTE e demais órgãos participantes, independente do número de órgãos não participantes que aderirem.

\r\n\r\n

Após a autorização do órgão gerenciador, o órgão não participante deverá efetivar a aquisição ou contratação solicitada em até noventa dias, observado o prazo de vigência desta ata.

\r\n\r\n

Compete ao órgão não participante os atos relativos à cobrança do cumprimento pelo fornecedor das obrigações contratualmente assumidas e a aplicação, observada a ampla defesa e o contraditório, de eventuais penalidades decorrentes do descumprimento de cláusulas contratuais, em relação às suas próprias contratações, informando as ocorrências à CONTRATANTE.

\r\n\r\n

Os órgãos ou entidades que utilizarem esta Ata de Registro de Preços deverão observar, quanto ao preço unitário, às cláusulas e condições constantes do Edital do Pregão que a precedeu e que integra o presente instrumento de compromisso.

\r\n\r\n

Os Órgãos ou Entidades não participantes, ou caronas, somente poderão efetuar adesões à Ata de Registro de Preços mediante prévia e expressa autorização do órgão gerenciador, conforme determina o art. 22 do Decreto nº 7.892 de 23/01/2013.

\r\n\r\n

CLÁUSULA QUARTA – DA VIGÊNCIA

\r\n\r\n

A vigência da Ata de Registro de Preço será de [digite aqui a quantidade de meses] meses contados da data da sua assinatura, com eficácia legal após a da data da publicação do seu extrato no Diário Oficial da União, tendo início e vencimento em dia de expediente, devendo-se excluir o primeiro e incluir o último.

\r\n\r\n

CLÁUSULA QUINTA – DA REVISÃO DOS PREÇOS REGISTRADOS

\r\n\r\n

Durante a vigência da Ata, os preços registrados serão fixos e irreajustáveis, exceto nas hipóteses previstas nos arts. 17 e 18 do Decreto nº 7.892/2013 e devidamente comprovadas às situações previstas na alínea “d” do inciso II do art. 65 da Lei nº 8.666/1993 ou decorrentes de redução dos preços praticados no mercado.

\r\n\r\n

Mesmo comprovada à ocorrência de situação prevista na alínea “d” do inciso II do art. 65 da Lei nº 8.666/1993, a Administração, se julgar conveniente, poderá optar por revogar a Ata e iniciar outro processo licitatório.

\r\n\r\n

Quando o preço registrado se tornar superior ao preço praticado no mercado por motivo superveniente, o órgão gerenciador definirá o novo preço máximo a ser pago pela Administração e convocará os fornecedores para negociarem a redução dos preços aos valores praticados pelo mercado.

\r\n\r\n

Os fornecedores que não aceitarem reduzir seus preços aos valores praticados pelo mercado serão liberados do compromisso assumido, sem aplicação de penalidade.

\r\n\r\n

A ordem de classificação dos fornecedores que aceitarem reduzir seus preços aos valores de mercado observará a classificação original.

\r\n\r\n

Quando o preço de mercado se tornar superior aos preços registrados e o fornecedor não puder cumprir o compromisso, o órgão gerenciador poderá:

\r\n\r\n

liberar o fornecedor do compromisso assumido, caso a comunicação ocorra antes do pedido de fornecimento, e sem aplicação da penalidade se confirmada a veracidade dos motivos e comprovantes apresentados; e

\r\n\r\n

convocar os demais fornecedores para assegurar igual oportunidade de negociação.

\r\n\r\n

Quando os fornecedores registrados não aceitarem manter o preço originariamente fixado na ata, o órgão gerenciador deverá proceder à revogação da ata de registro de preços, adotando as medidas cabíveis para obtenção da contratação mais vantajosa.

\r\n\r\n

CLÁUSULA SEXTA – DO REMANEJAMENTO DAS QUANTIDADES PREVISTAS PARA OS ITENS COM PREÇOS REGISTRADOS

\r\n\r\n

As quantidades previstas para os itens com preços registrados poderão ser remanejadas pela CONTRATANTE entre os órgãos participantes e não participantes do procedimento licitatório para registro de preços.

\r\n\r\n

O remanejamento somente poderá ser feito de órgão participante para órgão participante e de órgão participante para órgão não participante.

\r\n\r\n

No caso de remanejamento de órgão participante para órgão não participante, serão observados os limites previstos nos §§ 3º e 4º do art. 22 do Decreto nº 7.892, de 23 de janeiro de 2013.

\r\n\r\n

Caberá à CONTRATANTE autorizar o remanejamento solicitado, com a redução do quantitativo inicialmente informado pelo órgão participante, desde que haja prévia anuência do órgão que vier a sofrer redução dos quantitativos informados.

\r\n\r\n

Caso o remanejamento seja feito entre órgãos de Estados ou Municípios distintos, caberá ao fornecedor beneficiário da Ata de Registro de Preços, observadas as condições nela estabelecidas, optar pela aceitação ou não do fornecimento decorrente do remanejamento dos itens.

\r\n\r\n

CLÁUSULA SÉTIMA – DO CANCELAMENTO DO REGISTRO DE PREÇOS

\r\n\r\n

O Fornecedor Beneficiário terá seu registro de preço cancelado na Ata, por intermédio de processo administrativo específico, assegurado o contraditório e ampla defesa:

\r\n\r\n

A pedido, quando:

\r\n\r\n

comprovar está impossibilitado de cumprir as exigências da Ata, por ocorrência de casos fortuitos ou de força maior devidamente comprovados;

\r\n\r\n

o seu preço registrado se tornar, comprovadamente, inexequível em função da elevação dos preços de mercado, dos insumos que compõem o custo das aquisições/contratações, e se a comunicação ocorrer antes do pedido de fornecimento, sem aplicação de penalidade.

\r\n\r\n

Por iniciativa da CONTRATANTE, quando:

\r\n\r\n

o fornecedor não aceitar reduzir o preço registrado, na hipótese deste se tornar superior àqueles praticados no mercado, sem aplicação de penalidade (§ 1º do art. 18 Decreto nº 7.892/2013);

\r\n\r\n

o fornecedor perder qualquer condição de habilitação exigida no processo licitatório, garantida a possibilidade da aplicação de penalidade;

\r\n\r\n

por razões de interesse público, devidamente motivadas e justificadas;

\r\n\r\n

não cumprir as obrigações decorrentes da Ata de Registro de Preço;

\r\n\r\n

o fornecedor não assinar o Contrato ou instrumento equivalente, no prazo estabelecido pela CONTRATANTE, sem justificativa aceitável;

\r\n\r\n

não comparecer ou se recusar a retirar, no prazo estabelecido, os pedidos decorrentes da Ata de Registro de Preço;

\r\n\r\n

caracterizada qualquer hipótese de inexecução total ou parcial das condições estabelecidas na Ata de Registro de Preço ou nos pedidos dela decorrentes;

\r\n\r\n

sofrer sanção prevista nos incisos III ou IV do caput do art. 87 da Lei nº 8.666/1993 ou no art. 7º da Lei nº 10.520/2002 (art. 20, IV, do Decreto nº 7.892/2013).

\r\n\r\n

Ocorrendo qualquer das hipóteses, concluído o processo, a CONTRATANTE fará o devido apostilamento na Ata de Registro de Preço e informará ao Fornecedor Beneficiário a nova ordem de registro.

\r\n\r\n

Esta Ata de Registro de Preço será cancelada automaticamente:

\r\n\r\n

por decurso do prazo de vigência;

\r\n\r\n

quando não restarem fornecedores registrados.

\r\n\r\n

CLÁUSULA OITAVA – DAS CONDIÇÕES PARA O ACEITE DA NOTA DE EMPENHO

\r\n\r\n

As empresas detentoras dos preços registrados poderão ser convidadas a firmar contratações de fornecimento, observadas as condições fixadas neste instrumento, e seus Anexos, e na legislação pertinente.

\r\n\r\n

Para cada fornecimento, a contratação formalizar-se-á mediante emissão de nota de empenho em nome da licitante que tenha firmado esta Ata de Registro de Preços e o titular do órgão ou entidade CONTRATANTE.

\r\n\r\n

A licitante vencedora receberá, por escrito (e-mail ou fax), cópia da Nota de Empenho, para no prazo de 05 (cinco) dias úteis, contados da notificação, promover o aceite, sob pena de decair o direito à contratação, sem prejuízo da aplicação das penalidades cabíveis.

\r\n\r\n

O prazo de convocação poderá ser prorrogado, uma única vez, por igual período, quando solicitado pelo licitante vencedor, por escrito, durante o seu transcurso e desde que ocorra motivo justificado e aceito pela CONTRATANTE.

\r\n\r\n

Em cada fornecimento decorrente desta Ata serão observadas, quanto ao preço unitário, as cláusulas e condições constantes do Edital do Pregão que a precedeu e que integra o presente instrumento de compromisso.

\r\n\r\n

A emissão da Nota de Empenho decorrente do Sistema de Registro de Preços deverá ser assinado no prazo de validade da ata de registro de preços.

\r\n\r\n

CLÁUSULA NONA – DO PREÇO

\r\n\r\n

O preço consignado no contrato será o registrado nesta Ata, conforme registrado no resultado do Pregão Eletrônico.

\r\n\r\n

CLÁUSULA DÉCIMA – DAS OBRIGAÇÕES DO FORNECEDOR BENEFICIÁRIO

\r\n\r\n

Os fornecedores detentores dos preços registrados deverão cumprir o compromisso firmado por intermédio do presente instrumento, nos termos dispostos nos Decretos nº 7.892/2013 e nº 8.250/2014 e no Edital de Pregão e seus anexos, e cumprir, integralmente, todas as cláusulas e condições constantes dos contratos ou instrumentos equivalentes porventura firmados, sob pena de revogação da presente Ata de Registro de Preços, sem prejuízo das aplicações das penalidades cabíveis.

\r\n\r\n

CLÁUSULA DÉCIMA PRIMEIRA – DO RECEBIMENTO E CRITÉRIO DE ACEITAÇÃO DO OBJETO

\r\n\r\n

Os serviços serão recebidos na forma do Termo de Referência, Anexo I do Edital.

\r\n\r\n

CLÁUSULA DÉCIMA SEGUNDA – DO PAGAMENTO

\r\n\r\n

O pagamento dar-se-á na forma do edital e do Termo de Referência, Anexo I do Edital.

\r\n\r\n

CLÁUSULA DÉCIMA TERCEIRA – DAS PENALIDADES

\r\n\r\n

O descumprimento da Ata de Registro de Preços ensejará aplicação das penalidades estabelecidas no 7º da Lei nº 10.520/2002 e no art. 28 do Decreto nº 5.450/2005, bem como no Edital e Contrato.

\r\n\r\n

É da competência do órgão gerenciador a aplicação das penalidades decorrentes do descumprimento do pactuado nesta ata de registro de preço (art. 5º, inciso X, do Decreto nº 7.892/2013), exceto nas hipóteses em que o descumprimento disser respeito às contratações dos órgãos participantes, caso no qual caberá ao respectivo órgão participante à aplicação da penalidade (art. 6º, parágrafo único, do Decreto nº 7.892/2013).

\r\n\r\n

CLÁUSULA DÉCIMA OITAVA – DAS DISPOSIÇÕES FINAIS

\r\n\r\n

As partes ficam, ainda, adstritas às seguintes disposições:

\r\n\r\n

todas as alterações que se fizerem necessárias serão registradas por intermédio de lavratura de Termo Aditivo à presente ata de Registro de Preços;

\r\n\r\n

integram esta Ata o Fornecedor Beneficiário do Registro de Preços, sua proposta e, ainda, o Edital de Pregão e seus anexos.

\r\n\r\n

É vedado efetuar acréscimos nos quantitativos fixados por esta ata de registro de preços, inclusive o acréscimo de que trata o § 1º do art. 65 da Lei nº 8.666/1993.

\r\n\r\n

Os contratos decorrentes desta ata de registro de preços poderão ser alterados, observado o disposto no art. 65 da Lei nº 8.666/1993.

\r\n\r\n

CLÁUSULA DÉCIMA NONA – DO FORO

\r\n\r\n

Fica eleito o foro da Seção Judiciária da Justiça Federal de [digite aqui a cidade/Estado da subseção judiciária] para dirimir quaisquer questões oriundas do presente Contrato, com exclusão de qualquer outro.

\r\n\r\n

 

\r\n\r\n

E, para firmeza e prova de assim haverem, entre si, ajustado e acordado, após ter sido lido juntamente com seu(s) anexo(s), o presente Contrato é assinado eletronicamente pelas partes.

\r\n',30,'N','N','S','N','N','N','S','S'),(748,114,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(749,114,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(750,114,'Anexos','

ANEXO I

\r\n\r\n

RELAÇÃO DOS FORNECEDORES BENEFICIÁRIOS DO REGISTRO DE PREÇOS

\r\n\r\n

Fornecedor 1.

\r\n\r\n

Fornecedor 2.

\r\n\r\n

Fornecedor 4.

\r\n\r\n

Fornecedor 4.

\r\n',50,'N','N','N','N','N','N','S','S'),(751,113,'Anexos','

ANEXO I

\r\n\r\n

RELAÇÃO DOS FORNECEDORES BENEFICIÁRIOS DO REGISTRO DE PREÇOS

\r\n\r\n

Fornecedor 1.

\r\n\r\n

Fornecedor 2.

\r\n\r\n

Fornecedor 4.

\r\n\r\n

Fornecedor 4.

\r\n',50,'N','N','N','N','N','N','S','S'),(752,115,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(753,115,'Título do Documento','

@serie@

\r\n\r\n

INEXIGIBILIDADE DE LICITAÇÃO Nº @numeracao_serie@/@ano@

\r\n',10,'S','N','N','S','N','N','S','S'),(754,115,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(755,115,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n

  

\r\n\r\n

DO RECONHECIMENTO DA INEXIGIBILIDADE DE LICITAÇÃO

\r\n\r\n

O [digite o nome da autoridade competente por reconhecer] RECONHECE a situação de INEXIGIBILIDADE DE LICITAÇÃO, com fulcro no art. 26, caput, da Lei nº 8.666/1993, fundamentado no [digite o respectivo enquadramento - caput ou inciso da inexigibilidade] do art. 25 da Lei nº 8.666/1993, combinado com [digite o respectivo inciso da inexigibilidade] da mesma Lei, conforme Projeto Básico SEI nº xxxxxxx.

\r\n\r\n

Do Objeto: [digite aqui o objeto da contratação].

\r\n\r\n

A contratação será registrada e publicada no sistema Comprasnet, na situação de Inexigibilidade de Licitação, com amparo na legislação supracitada.

\r\n\r\n

Encaminhe-se o presente documento para RATIFICAÇÃO pelo [digite o nome da autoridade competente por ratificar], nos termos do art. 26 da Lei nº 8.666/1993.

\r\n\r\n

DA RATIFICAÇÃO DA INEXIGIBILIDADE DE LICITAÇÃO E DA AUTORIZAÇÃO DA CONTRATAÇÃO

\r\n\r\n

Justificativa e razão da escolha do fornecedor:

\r\n\r\n

[digite a justificativa e a razão da escolha do fornecedor da contratação constante no Projeto Básico].

\r\n\r\n

[digite a justificativa e a razão da escolha do fornecedor da contratação constante no Projeto Básico].

\r\n\r\n

Base Legal: [digite aqui o fundamento legal que autoriza a inexigibilidade, transcrevendo o dispositivo logo abaixo conforme exemplo]

\r\n\r\n

Art. 25. É inexigível a licitação quando houver inviabilidade de competição, em especial:

\r\n\r\n

II - para a contratação de serviços técnicos enumerados no art. 13 desta Lei, de natureza singular, com profissionais ou empresas de notória especialização, vedada a inexigibilidade para serviços de publicidade e divulgação.

\r\n\r\n

(...)

\r\n\r\n

Art. 13. Para os fins desta Lei, consideram-se serviços técnicos profissionais especializados os trabalhos relativos a:

\r\n\r\n

VI - treinamento e aperfeiçoamento de pessoal;

\r\n\r\n

 

\r\n\r\n

Contratada[digite a razão social da empresa e seu CNPJ]

\r\n\r\n

Valor Total da Contratação: R$ [digite o valor]

\r\n\r\n

Diante dos dados expostos, o [digite o nome da autoridade competente por ratificar] RATIFICA a situação de INEXIGIBILIDADE DE LICITAÇÃO, com fulcro no art. 26, caput, da Lei nº 8.666/1993, fundamentado no [digite o respectivo enquadramento - caput ou inciso da inexigibilidade] do art. 25 da Lei nº 8.666/1993, combinado com [digite o respectivo inciso da inexigibilidade] da mesma Lei, conforme Projeto Básico SEI nº xxxxxxx, e AUTORIZA, com fulcro no Decreto nº 7.689/2012, a contratação [digite aqui o objeto da contratação].

\r\n\r\n

DA EXEQUIBILIDADE DO ATO

\r\n\r\n

Objetivando à exequibilidade deste Ato composto, com vistas a torná-lo apto e disponível para produzir seus regulares efeitos, o mesmo é assinado pelas autoridades que procederam ao reconhecimento e à ratificação acima.

\r\n\r\n

Observação (apagar): O texto abaixo somente será necessário nos casos em que a contratação for acima dos valores previstos no art. 24, incisos I e II, da Lei nº 8666/1993.

\r\n\r\n

Da Publicação:

\r\n\r\n

Publique-se no Diário Oficial da União.

\r\n\r\n

Observação (apagar): O texto abaixo somente será necessário nos casos em que a contratação for até o limite dos valores previstos no art. 24, incisos I e II, da Lei nº 8666/1993.

\r\n\r\n

Da Publicação:

\r\n\r\n

Em observância ao Princípio da Economicidade, entendo que a presente contratação não necessita ser publicada no Diário Oficial da União, conforme estabelece o Acórdão TCU nº 1336/2006-Plenário:

\r\n\r\n

ACORDAM os Ministros do Tribunal de Contas da União, reunidos em Sessão Plenária, em:

\r\n\r\n

9.1. com fundamento no art. 237, inciso VI, conhecer da presente representação, para, no mérito, considerá-la procedente;

\r\n\r\n

9.2. determinar à Secretaria de Controle Interno do TCU que reformule o “SECOI Comunica nº 06/2005”, dando-lhe a seguinte redação: “a eficácia dos atos de dispensa e inexigibilidade de licitação a que se refere o art. 26 da Lei 8.666/93 (art. 24, incisos III a XXIV, e art. 25 da Lei 8.666/93), está condicionada a sua publicação na imprensa oficial, salvo se, em observância ao princípio da economicidade, os valores contratados estiverem dentro dos limites fixados nos arts. 24, I e II, da Lei 8.666/93.  (grifo nosso)

\r\n',30,'N','N','S','N','N','N','S','S'),(756,115,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(757,115,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(758,116,'Cabeçalho','
@timbre_orgao@\r\n

@descricao_orgao_maiusculas@
\r\n@endereco_unidade@, @complemento_endereco_unidade@ @hifen_bairro_unidade@, @cidade_unidade@/@sigla_uf_unidade@, @cep_unidade@
\r\nTelefone: @telefone_unidade@ e Fax: @fax_unidade@ @hifen_sitio_internet_orgao@
\r\n  

\r\n
\r\n',0,'S','N','N','S','S','N','S','S'),(759,116,'Título do Documento','

@serie@

\r\n\r\n

DISPENSA DE LICITAÇÃO Nº @numeracao_serie@/@ano@

\r\n',10,'S','N','N','S','N','N','S','S'),(760,116,'Processo','

Processo nº @processo@

\r\n\r\n

  

\r\n',20,'S','N','N','S','N','N','S','S'),(761,116,'Corpo do Texto','

Unidade Gestora: [digite aqui a sigla da unidade gestora]

\r\n\r\n

  

\r\n\r\n

DO RECONHECIMENTO DA dispensa DE LICITAÇÃO

\r\n\r\n

O [digite o nome da autoridade competente por reconhecer] RECONHECE a situação de DISPENSA DE LICITAÇÃO, com fulcro no art. 26, caput, da Lei nº 8.666/1993, fundamentado no [digite o respectivo enquadramento - inciso da dispensa] do art. 24 da Lei nº 8.666/1993, conforme Projeto Básico SEI nº xxxxxxx.

\r\n\r\n

Do Objeto: [digite aqui o objeto da contratação].

\r\n\r\n

A contratação será registrada e publicada no sistema Comprasnet, na situação de Dispensa de Licitação, com amparo na legislação supracitada.

\r\n\r\n

Encaminhe-se o presente documento para RATIFICAÇÃO pela [digite o nome da autoridade competente por ratificar], nos termos do art. 26 da Lei nº 8.666/1993.

\r\n\r\n

DA RATIFICAÇÃO DA DISPENSA DE LICITAÇÃO E DA AUTORIZAÇÃO DA CONTRATAÇÃO

\r\n\r\n

Justificativa e razão da escolha do fornecedor:

\r\n\r\n

[digite a justificativa e a razão da escolha do fornecedor da contratação constante no Projeto Básico].

\r\n\r\n

[digite a justificativa e a razão da escolha do fornecedor da contratação constante no Projeto Básico].

\r\n\r\n

Base Legal: [digite aqui o fundamento legal que autoriza a dispensa, transcrevendo o dispositivo logo abaixo conforme exemplo]

\r\n\r\n

Art. 24. É dispensável a licitação:

\r\n\r\n

II - para outros serviços e compras de valor até 10% (dez por cento) do limite previsto na alínea "a", do inciso II do artigo anterior e para alienações, nos casos previstos nesta Lei, desde que não se refiram a parcelas de um mesmo serviço, compra ou alienação de maior vulto que possa ser realizada de uma só vez; (Redação dada pela Lei nº 9.648, de 1998)

\r\n\r\n

 

\r\n\r\n

Contratada[digite a razão social da empresa e seu CNPJ]

\r\n\r\n

Valor Total da Contratação: R$ [digite o valor]

\r\n\r\n

Diante dos dados expostos, o [digite o nome da autoridade competente por ratificar] RATIFICA a situação de DISPENSA DE LICITAÇÃO, com fulcro no art. 26, caput, da Lei nº 8.666/1993, fundamentado no [digite o respectivo enquadramento - inciso da dispensa] do art. 24 da Lei nº 8.666/1993, conforme Projeto Básico SEI nº xxxxxxx, e AUTORIZA, com fulcro no Decreto nº 7.689/2012, a contratação [digite aqui o objeto da contratação].

\r\n\r\n

DA EXEQUIBILIDADE DO ATO

\r\n\r\n

Objetivando à exequibilidade deste Ato composto, com vistas a torná-lo apto e disponível para produzir seus regulares efeitos, o mesmo é assinado pelas autoridades que procederam ao reconhecimento e à ratificação acima.

\r\n\r\n

Observação (apagar): O texto abaixo somente será necessário nos casos em que a contratação for acima dos valores previstos no art. 24, incisos I e II, da Lei nº 8666/1993.

\r\n\r\n

Da Publicação:

\r\n\r\n

Publique-se no Diário Oficial da União.

\r\n\r\n

Observação (apagar): O texto abaixo somente será necessário nos casos em que a contratação for até o limite dos valores previstos no art. 24, incisos I e II, da Lei nº 8666/1993.

\r\n\r\n

Da Publicação:

\r\n\r\n

Em observância ao Princípio da Economicidade, entendo que a presente contratação não necessita ser publicada no Diário Oficial da União, conforme estabelece o Acórdão TCU nº 1336/2006-Plenário:

\r\n\r\n

ACORDAM os Ministros do Tribunal de Contas da União, reunidos em Sessão Plenária, em:

\r\n\r\n

9.1. com fundamento no art. 237, inciso VI, conhecer da presente representação, para, no mérito, considerá-la procedente;

\r\n\r\n

9.2. determinar à Secretaria de Controle Interno do TCU que reformule o “SECOI Comunica nº 06/2005”, dando-lhe a seguinte redação: “a eficácia dos atos de dispensa e inexigibilidade de licitação a que se refere o art. 26 da Lei 8.666/93 (art. 24, incisos III a XXIV, e art. 25 da Lei 8.666/93), está condicionada a sua publicação na imprensa oficial, salvo se, em observância ao princípio da economicidade, os valores contratados estiverem dentro dos limites fixados nos arts. 24, I e II, da Lei 8.666/93.  (grifo nosso)

\r\n',30,'N','N','S','N','N','N','S','S'),(762,116,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(763,116,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(764,117,'Cabeçalho','

  

\r\n

@descricao_orgao_maiusculas@

\r\n

  

',0,'S','N','N','S','S','N','S','S'),(765,117,'Título do Documento','@serie@ nº @numeracao_serie@/@ano@',10,'S','N','N','S','N','N','N','S'),(766,117,'Corpo do Texto','

O [DIGITE AQUI O NOME DO CARGO] DA @descricao_orgao_maiusculas@, no uso das atribuições que lhe foram conferidas pelo art. [DIGITE AQUI O DISPOSITIVO] do [DIGITE AQUI A LEGISLAÇÃO APLICADA], aprovado(a) pela [INDIQUE AQUI A NORMA, SEU NÚMERO E DATA], e

\r\n\r\n

CONSIDERANDO o Decreto nº 5.450, de 31 de maio de 2005, que regulamenta o pregão, na forma eletrônica, para aquisição de bens e serviços comuns, e dá outras providências;

\r\n\r\n

CONSIDERANDO a Lei nº 8.666, de 21 de junho de 1993, que regulamenta o art. 37, inciso XXI, da Constituição Federal, institui normas para licitações e contratos da Administração Pública,  e dá outras providências;

\r\n\r\n

CONSIDERANDO o constante dos autos do processo nº @processo@,

\r\n\r\n

DECIDE:

\r\n\r\n

Determinar a abertura do procedimento licitatório, autorizando a sua realização, na modalidade Pregão, na forma eletrônica, tipo menor preço, com fulcro no art. 8º, inciso III, do Decreto nº 5.450/2005 c/c art. 38, da Lei nº 8.666/1993, visando à contratação de [digite aqui a descrição do objeto da contratação], caracterizado como serviço comum, nos moldes do art. 4º do Decreto nº 5.450/2005.

\r\n\r\n

Este documento entra em vigor na data de sua publicação.

\r\n',20,'N','N','S','N','N','N','S','S'),(767,117,'Assinatura',NULL,30,'N','S','N','N','N','N','N','S'),(769,117,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'),(770,118,'Cabeçalho','
@timbre_orgao@
\r\n@descricao_orgao_maiusculas@
\r\n',0,'S','N','N','S','S','N','S','S'),(771,118,'Título do Documento','@serie@',10,'S','N','N','S','N','N','N','S'),(772,118,'Processo','Processo nº @processo@',20,'S','N','N','S','N','N','N','S'),(773,118,'Corpo do Texto','

DADOS DA VIAGEM

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Número da PCDP:

\r\n
\r\n

 

\r\n
\r\n

Data da Partida (indicar a data efetiva):

\r\n
\r\n

 

\r\n
\r\n

Data da Chegada (indicar a data efetiva):

\r\n
\r\n

 

\r\n
\r\n\r\n

  

\r\n\r\n

ATIVIDADES REALIZADAS

\r\n\r\n

Observações: Descrever de forma clara e objetiva os assuntos tratados e resultados alcançados para o Órgão.

\r\n\r\n

[Digite aqui o texto de descrição das atividades realizadas].

\r\n\r\n

[Digite aqui o texto de descrição das atividades realizadas].

\r\n\r\n

  

\r\n\r\n

ORIENTAÇÕES E ENCAMINHAMENTO

\r\n\r\n

A prestação de contas de viagem deve ser efetivada no prazo máximo de 5 (cinco) dias após o retorno do viajante ao órgão.

\r\n\r\n

Ao presente processo devem ser incluídos os canhotos do cartão de embarque ou recibo do passageiro obtido quando realizado check-in via Internet ou declaração fornecida pela empresa de transporte (art. 4º da Portaria nº 505/2009-MP). Os referidos documentos serão anexados, juntamente com este Relatório de Viagem a Serviço, à PCDP correspondente no Sistema de Concessão de Diárias e Passagens (SCDP).

\r\n\r\n

  

\r\n\r\n

O presente documento segue assinado pelo viajante (proposto da viagem), que encaminhará o processo ao solicitante da viagem para fins de registro no SCDP.

\r\n\r\n

  

\r\n',30,'N','N','S','N','N','N','S','S'),(774,118,'Assinatura',NULL,40,'N','S','N','N','N','N','N','S'),(775,118,'Rodapé','
\r\n\r\n\r\n\r\n\r\n\r\n
Referência: Processo nº @processo@SEI nº @documento@
',1000,'S','N','N','S','N','S','S','S'); +/*!40000 ALTER TABLE `secao_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_acesso` +-- + +DROP TABLE IF EXISTS `seq_acesso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_acesso` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_acesso` +-- + +LOCK TABLES `seq_acesso` WRITE; +/*!40000 ALTER TABLE `seq_acesso` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_acesso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_acesso_externo` +-- + +DROP TABLE IF EXISTS `seq_acesso_externo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_acesso_externo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_acesso_externo` +-- + +LOCK TABLES `seq_acesso_externo` WRITE; +/*!40000 ALTER TABLE `seq_acesso_externo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_acesso_externo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_acompanhamento` +-- + +DROP TABLE IF EXISTS `seq_acompanhamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_acompanhamento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_acompanhamento` +-- + +LOCK TABLES `seq_acompanhamento` WRITE; +/*!40000 ALTER TABLE `seq_acompanhamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_acompanhamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_andamento_instalacao` +-- + +DROP TABLE IF EXISTS `seq_andamento_instalacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_andamento_instalacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_andamento_instalacao` +-- + +LOCK TABLES `seq_andamento_instalacao` WRITE; +/*!40000 ALTER TABLE `seq_andamento_instalacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_andamento_instalacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_andamento_marcador` +-- + +DROP TABLE IF EXISTS `seq_andamento_marcador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_andamento_marcador` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_andamento_marcador` +-- + +LOCK TABLES `seq_andamento_marcador` WRITE; +/*!40000 ALTER TABLE `seq_andamento_marcador` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_andamento_marcador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_andamento_situacao` +-- + +DROP TABLE IF EXISTS `seq_andamento_situacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_andamento_situacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_andamento_situacao` +-- + +LOCK TABLES `seq_andamento_situacao` WRITE; +/*!40000 ALTER TABLE `seq_andamento_situacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_andamento_situacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_anexo` +-- + +DROP TABLE IF EXISTS `seq_anexo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_anexo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_anexo` +-- + +LOCK TABLES `seq_anexo` WRITE; +/*!40000 ALTER TABLE `seq_anexo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_anexo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_anotacao` +-- + +DROP TABLE IF EXISTS `seq_anotacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_anotacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_anotacao` +-- + +LOCK TABLES `seq_anotacao` WRITE; +/*!40000 ALTER TABLE `seq_anotacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_anotacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_arquivo_extensao` +-- + +DROP TABLE IF EXISTS `seq_arquivo_extensao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_arquivo_extensao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_arquivo_extensao` +-- + +LOCK TABLES `seq_arquivo_extensao` WRITE; +/*!40000 ALTER TABLE `seq_arquivo_extensao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_arquivo_extensao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_assinante` +-- + +DROP TABLE IF EXISTS `seq_assinante`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_assinante` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=254 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_assinante` +-- + +LOCK TABLES `seq_assinante` WRITE; +/*!40000 ALTER TABLE `seq_assinante` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_assinante` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_assinatura` +-- + +DROP TABLE IF EXISTS `seq_assinatura`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_assinatura` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_assinatura` +-- + +LOCK TABLES `seq_assinatura` WRITE; +/*!40000 ALTER TABLE `seq_assinatura` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_assinatura` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_assunto` +-- + +DROP TABLE IF EXISTS `seq_assunto`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_assunto` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=701 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_assunto` +-- + +LOCK TABLES `seq_assunto` WRITE; +/*!40000 ALTER TABLE `seq_assunto` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_assunto` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_assunto_proxy` +-- + +DROP TABLE IF EXISTS `seq_assunto_proxy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_assunto_proxy` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=514 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_assunto_proxy` +-- + +LOCK TABLES `seq_assunto_proxy` WRITE; +/*!40000 ALTER TABLE `seq_assunto_proxy` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_assunto_proxy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_atividade` +-- + +DROP TABLE IF EXISTS `seq_atividade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_atividade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_atividade` +-- + +LOCK TABLES `seq_atividade` WRITE; +/*!40000 ALTER TABLE `seq_atividade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_atividade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_atributo` +-- + +DROP TABLE IF EXISTS `seq_atributo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_atributo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_atributo` +-- + +LOCK TABLES `seq_atributo` WRITE; +/*!40000 ALTER TABLE `seq_atributo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_atributo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_atributo_andamento` +-- + +DROP TABLE IF EXISTS `seq_atributo_andamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_atributo_andamento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_atributo_andamento` +-- + +LOCK TABLES `seq_atributo_andamento` WRITE; +/*!40000 ALTER TABLE `seq_atributo_andamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_atributo_andamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_atributo_andamento_situaca` +-- + +DROP TABLE IF EXISTS `seq_atributo_andamento_situaca`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_atributo_andamento_situaca` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_atributo_andamento_situaca` +-- + +LOCK TABLES `seq_atributo_andamento_situaca` WRITE; +/*!40000 ALTER TABLE `seq_atributo_andamento_situaca` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_atributo_andamento_situaca` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_atributo_instalacao` +-- + +DROP TABLE IF EXISTS `seq_atributo_instalacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_atributo_instalacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_atributo_instalacao` +-- + +LOCK TABLES `seq_atributo_instalacao` WRITE; +/*!40000 ALTER TABLE `seq_atributo_instalacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_atributo_instalacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_auditoria_protocolo` +-- + +DROP TABLE IF EXISTS `seq_auditoria_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_auditoria_protocolo` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_auditoria_protocolo` +-- + +LOCK TABLES `seq_auditoria_protocolo` WRITE; +/*!40000 ALTER TABLE `seq_auditoria_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_auditoria_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_base_conhecimento` +-- + +DROP TABLE IF EXISTS `seq_base_conhecimento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_base_conhecimento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_base_conhecimento` +-- + +LOCK TABLES `seq_base_conhecimento` WRITE; +/*!40000 ALTER TABLE `seq_base_conhecimento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_base_conhecimento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_bloco` +-- + +DROP TABLE IF EXISTS `seq_bloco`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_bloco` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_bloco` +-- + +LOCK TABLES `seq_bloco` WRITE; +/*!40000 ALTER TABLE `seq_bloco` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_bloco` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_campo_pesquisa` +-- + +DROP TABLE IF EXISTS `seq_campo_pesquisa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_campo_pesquisa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_campo_pesquisa` +-- + +LOCK TABLES `seq_campo_pesquisa` WRITE; +/*!40000 ALTER TABLE `seq_campo_pesquisa` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_campo_pesquisa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_cargo` +-- + +DROP TABLE IF EXISTS `seq_cargo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_cargo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_cargo` +-- + +LOCK TABLES `seq_cargo` WRITE; +/*!40000 ALTER TABLE `seq_cargo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_cargo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_categoria` +-- + +DROP TABLE IF EXISTS `seq_categoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_categoria` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_categoria` +-- + +LOCK TABLES `seq_categoria` WRITE; +/*!40000 ALTER TABLE `seq_categoria` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_categoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_cidade` +-- + +DROP TABLE IF EXISTS `seq_cidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_cidade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5565 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_cidade` +-- + +LOCK TABLES `seq_cidade` WRITE; +/*!40000 ALTER TABLE `seq_cidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_cidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_comentario` +-- + +DROP TABLE IF EXISTS `seq_comentario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_comentario` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_comentario` +-- + +LOCK TABLES `seq_comentario` WRITE; +/*!40000 ALTER TABLE `seq_comentario` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_comentario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_conjunto_estilos` +-- + +DROP TABLE IF EXISTS `seq_conjunto_estilos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_conjunto_estilos` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_conjunto_estilos` +-- + +LOCK TABLES `seq_conjunto_estilos` WRITE; +/*!40000 ALTER TABLE `seq_conjunto_estilos` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_conjunto_estilos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_conjunto_estilos_item` +-- + +DROP TABLE IF EXISTS `seq_conjunto_estilos_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_conjunto_estilos_item` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1643 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_conjunto_estilos_item` +-- + +LOCK TABLES `seq_conjunto_estilos_item` WRITE; +/*!40000 ALTER TABLE `seq_conjunto_estilos_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_conjunto_estilos_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_contato` +-- + +DROP TABLE IF EXISTS `seq_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_contato` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=100000103 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_contato` +-- + +LOCK TABLES `seq_contato` WRITE; +/*!40000 ALTER TABLE `seq_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_controle_interno` +-- + +DROP TABLE IF EXISTS `seq_controle_interno`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_controle_interno` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_controle_interno` +-- + +LOCK TABLES `seq_controle_interno` WRITE; +/*!40000 ALTER TABLE `seq_controle_interno` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_controle_interno` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_controle_prazo` +-- + +DROP TABLE IF EXISTS `seq_controle_prazo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_controle_prazo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_controle_prazo` +-- + +LOCK TABLES `seq_controle_prazo` WRITE; +/*!40000 ALTER TABLE `seq_controle_prazo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_controle_prazo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_controle_unidade` +-- + +DROP TABLE IF EXISTS `seq_controle_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_controle_unidade` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_controle_unidade` +-- + +LOCK TABLES `seq_controle_unidade` WRITE; +/*!40000 ALTER TABLE `seq_controle_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_controle_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_documento` +-- + +DROP TABLE IF EXISTS `seq_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_documento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_documento` +-- + +LOCK TABLES `seq_documento` WRITE; +/*!40000 ALTER TABLE `seq_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_dominio` +-- + +DROP TABLE IF EXISTS `seq_dominio`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_dominio` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_dominio` +-- + +LOCK TABLES `seq_dominio` WRITE; +/*!40000 ALTER TABLE `seq_dominio` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_dominio` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_email_grupo_email` +-- + +DROP TABLE IF EXISTS `seq_email_grupo_email`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_email_grupo_email` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_email_grupo_email` +-- + +LOCK TABLES `seq_email_grupo_email` WRITE; +/*!40000 ALTER TABLE `seq_email_grupo_email` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_email_grupo_email` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_email_sistema` +-- + +DROP TABLE IF EXISTS `seq_email_sistema`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_email_sistema` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_email_sistema` +-- + +LOCK TABLES `seq_email_sistema` WRITE; +/*!40000 ALTER TABLE `seq_email_sistema` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_email_sistema` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_email_unidade` +-- + +DROP TABLE IF EXISTS `seq_email_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_email_unidade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=729 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_email_unidade` +-- + +LOCK TABLES `seq_email_unidade` WRITE; +/*!40000 ALTER TABLE `seq_email_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_email_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_email_utilizado` +-- + +DROP TABLE IF EXISTS `seq_email_utilizado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_email_utilizado` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_email_utilizado` +-- + +LOCK TABLES `seq_email_utilizado` WRITE; +/*!40000 ALTER TABLE `seq_email_utilizado` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_email_utilizado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_estatisticas` +-- + +DROP TABLE IF EXISTS `seq_estatisticas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_estatisticas` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_estatisticas` +-- + +LOCK TABLES `seq_estatisticas` WRITE; +/*!40000 ALTER TABLE `seq_estatisticas` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_estatisticas` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_estilo` +-- + +DROP TABLE IF EXISTS `seq_estilo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_estilo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_estilo` +-- + +LOCK TABLES `seq_estilo` WRITE; +/*!40000 ALTER TABLE `seq_estilo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_estilo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_feed` +-- + +DROP TABLE IF EXISTS `seq_feed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_feed` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_feed` +-- + +LOCK TABLES `seq_feed` WRITE; +/*!40000 ALTER TABLE `seq_feed` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_feed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_feriado` +-- + +DROP TABLE IF EXISTS `seq_feriado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_feriado` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_feriado` +-- + +LOCK TABLES `seq_feriado` WRITE; +/*!40000 ALTER TABLE `seq_feriado` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_feriado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_acompanhamento` +-- + +DROP TABLE IF EXISTS `seq_grupo_acompanhamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_acompanhamento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_acompanhamento` +-- + +LOCK TABLES `seq_grupo_acompanhamento` WRITE; +/*!40000 ALTER TABLE `seq_grupo_acompanhamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_acompanhamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_bloco` +-- + +DROP TABLE IF EXISTS `seq_grupo_bloco`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_bloco` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_bloco` +-- + +LOCK TABLES `seq_grupo_bloco` WRITE; +/*!40000 ALTER TABLE `seq_grupo_bloco` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_bloco` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_contato` +-- + +DROP TABLE IF EXISTS `seq_grupo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_contato` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_contato` +-- + +LOCK TABLES `seq_grupo_contato` WRITE; +/*!40000 ALTER TABLE `seq_grupo_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_email` +-- + +DROP TABLE IF EXISTS `seq_grupo_email`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_email` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_email` +-- + +LOCK TABLES `seq_grupo_email` WRITE; +/*!40000 ALTER TABLE `seq_grupo_email` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_email` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_federacao` +-- + +DROP TABLE IF EXISTS `seq_grupo_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_federacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_federacao` +-- + +LOCK TABLES `seq_grupo_federacao` WRITE; +/*!40000 ALTER TABLE `seq_grupo_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_protocolo_modelo` +-- + +DROP TABLE IF EXISTS `seq_grupo_protocolo_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_protocolo_modelo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_protocolo_modelo` +-- + +LOCK TABLES `seq_grupo_protocolo_modelo` WRITE; +/*!40000 ALTER TABLE `seq_grupo_protocolo_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_protocolo_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_serie` +-- + +DROP TABLE IF EXISTS `seq_grupo_serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_serie` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_serie` +-- + +LOCK TABLES `seq_grupo_serie` WRITE; +/*!40000 ALTER TABLE `seq_grupo_serie` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_grupo_unidade` +-- + +DROP TABLE IF EXISTS `seq_grupo_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_grupo_unidade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_grupo_unidade` +-- + +LOCK TABLES `seq_grupo_unidade` WRITE; +/*!40000 ALTER TABLE `seq_grupo_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_grupo_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_hipotese_legal` +-- + +DROP TABLE IF EXISTS `seq_hipotese_legal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_hipotese_legal` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_hipotese_legal` +-- + +LOCK TABLES `seq_hipotese_legal` WRITE; +/*!40000 ALTER TABLE `seq_hipotese_legal` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_hipotese_legal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_imagem_formato` +-- + +DROP TABLE IF EXISTS `seq_imagem_formato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_imagem_formato` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_imagem_formato` +-- + +LOCK TABLES `seq_imagem_formato` WRITE; +/*!40000 ALTER TABLE `seq_imagem_formato` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_imagem_formato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_infra_auditoria` +-- + +DROP TABLE IF EXISTS `seq_infra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_infra_auditoria` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_infra_auditoria` +-- + +LOCK TABLES `seq_infra_auditoria` WRITE; +/*!40000 ALTER TABLE `seq_infra_auditoria` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_infra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_infra_log` +-- + +DROP TABLE IF EXISTS `seq_infra_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_infra_log` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_infra_log` +-- + +LOCK TABLES `seq_infra_log` WRITE; +/*!40000 ALTER TABLE `seq_infra_log` DISABLE KEYS */; +INSERT INTO `seq_infra_log` VALUES (1,'0'); +/*!40000 ALTER TABLE `seq_infra_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_infra_navegador` +-- + +DROP TABLE IF EXISTS `seq_infra_navegador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_infra_navegador` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_infra_navegador` +-- + +LOCK TABLES `seq_infra_navegador` WRITE; +/*!40000 ALTER TABLE `seq_infra_navegador` DISABLE KEYS */; +INSERT INTO `seq_infra_navegador` VALUES (2,'0'); +/*!40000 ALTER TABLE `seq_infra_navegador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_lembrete` +-- + +DROP TABLE IF EXISTS `seq_lembrete`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_lembrete` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_lembrete` +-- + +LOCK TABLES `seq_lembrete` WRITE; +/*!40000 ALTER TABLE `seq_lembrete` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_lembrete` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_localizador` +-- + +DROP TABLE IF EXISTS `seq_localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_localizador` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_localizador` +-- + +LOCK TABLES `seq_localizador` WRITE; +/*!40000 ALTER TABLE `seq_localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_lugar_localizador` +-- + +DROP TABLE IF EXISTS `seq_lugar_localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_lugar_localizador` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_lugar_localizador` +-- + +LOCK TABLES `seq_lugar_localizador` WRITE; +/*!40000 ALTER TABLE `seq_lugar_localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_lugar_localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_marcador` +-- + +DROP TABLE IF EXISTS `seq_marcador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_marcador` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_marcador` +-- + +LOCK TABLES `seq_marcador` WRITE; +/*!40000 ALTER TABLE `seq_marcador` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_marcador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_md_wssei_notificacao_ativ` +-- + +DROP TABLE IF EXISTS `seq_md_wssei_notificacao_ativ`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_md_wssei_notificacao_ativ` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_md_wssei_notificacao_ativ` +-- + +LOCK TABLES `seq_md_wssei_notificacao_ativ` WRITE; +/*!40000 ALTER TABLE `seq_md_wssei_notificacao_ativ` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_md_wssei_notificacao_ativ` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_modelo` +-- + +DROP TABLE IF EXISTS `seq_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_modelo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_modelo` +-- + +LOCK TABLES `seq_modelo` WRITE; +/*!40000 ALTER TABLE `seq_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_monitoramento_servico` +-- + +DROP TABLE IF EXISTS `seq_monitoramento_servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_monitoramento_servico` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_monitoramento_servico` +-- + +LOCK TABLES `seq_monitoramento_servico` WRITE; +/*!40000 ALTER TABLE `seq_monitoramento_servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_monitoramento_servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_nivel_acesso_permitido` +-- + +DROP TABLE IF EXISTS `seq_nivel_acesso_permitido`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_nivel_acesso_permitido` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3030 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_nivel_acesso_permitido` +-- + +LOCK TABLES `seq_nivel_acesso_permitido` WRITE; +/*!40000 ALTER TABLE `seq_nivel_acesso_permitido` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_nivel_acesso_permitido` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_novidade` +-- + +DROP TABLE IF EXISTS `seq_novidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_novidade` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_novidade` +-- + +LOCK TABLES `seq_novidade` WRITE; +/*!40000 ALTER TABLE `seq_novidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_novidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_numeracao` +-- + +DROP TABLE IF EXISTS `seq_numeracao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_numeracao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_numeracao` +-- + +LOCK TABLES `seq_numeracao` WRITE; +/*!40000 ALTER TABLE `seq_numeracao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_numeracao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_observacao` +-- + +DROP TABLE IF EXISTS `seq_observacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_observacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_observacao` +-- + +LOCK TABLES `seq_observacao` WRITE; +/*!40000 ALTER TABLE `seq_observacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_observacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_operacao_servico` +-- + +DROP TABLE IF EXISTS `seq_operacao_servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_operacao_servico` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_operacao_servico` +-- + +LOCK TABLES `seq_operacao_servico` WRITE; +/*!40000 ALTER TABLE `seq_operacao_servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_operacao_servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_ordenador_despesa` +-- + +DROP TABLE IF EXISTS `seq_ordenador_despesa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_ordenador_despesa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_ordenador_despesa` +-- + +LOCK TABLES `seq_ordenador_despesa` WRITE; +/*!40000 ALTER TABLE `seq_ordenador_despesa` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_ordenador_despesa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_orgao_historico` +-- + +DROP TABLE IF EXISTS `seq_orgao_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_orgao_historico` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_orgao_historico` +-- + +LOCK TABLES `seq_orgao_historico` WRITE; +/*!40000 ALTER TABLE `seq_orgao_historico` DISABLE KEYS */; +INSERT INTO `seq_orgao_historico` VALUES (1,'0'); +/*!40000 ALTER TABLE `seq_orgao_historico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_pais` +-- + +DROP TABLE IF EXISTS `seq_pais`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_pais` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=895 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_pais` +-- + +LOCK TABLES `seq_pais` WRITE; +/*!40000 ALTER TABLE `seq_pais` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_pais` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_participante` +-- + +DROP TABLE IF EXISTS `seq_participante`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_participante` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_participante` +-- + +LOCK TABLES `seq_participante` WRITE; +/*!40000 ALTER TABLE `seq_participante` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_participante` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_pesquisa` +-- + +DROP TABLE IF EXISTS `seq_pesquisa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_pesquisa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_pesquisa` +-- + +LOCK TABLES `seq_pesquisa` WRITE; +/*!40000 ALTER TABLE `seq_pesquisa` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_pesquisa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_protocolo` +-- + +DROP TABLE IF EXISTS `seq_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_protocolo` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_protocolo` +-- + +LOCK TABLES `seq_protocolo` WRITE; +/*!40000 ALTER TABLE `seq_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_protocolo_modelo` +-- + +DROP TABLE IF EXISTS `seq_protocolo_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_protocolo_modelo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_protocolo_modelo` +-- + +LOCK TABLES `seq_protocolo_modelo` WRITE; +/*!40000 ALTER TABLE `seq_protocolo_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_protocolo_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_publicacao` +-- + +DROP TABLE IF EXISTS `seq_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_publicacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_publicacao` +-- + +LOCK TABLES `seq_publicacao` WRITE; +/*!40000 ALTER TABLE `seq_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_rel_protocolo_protocolo` +-- + +DROP TABLE IF EXISTS `seq_rel_protocolo_protocolo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_rel_protocolo_protocolo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_rel_protocolo_protocolo` +-- + +LOCK TABLES `seq_rel_protocolo_protocolo` WRITE; +/*!40000 ALTER TABLE `seq_rel_protocolo_protocolo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_rel_protocolo_protocolo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_rel_unidade_tipo_contato` +-- + +DROP TABLE IF EXISTS `seq_rel_unidade_tipo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_rel_unidade_tipo_contato` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_rel_unidade_tipo_contato` +-- + +LOCK TABLES `seq_rel_unidade_tipo_contato` WRITE; +/*!40000 ALTER TABLE `seq_rel_unidade_tipo_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_rel_unidade_tipo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_retorno_programado` +-- + +DROP TABLE IF EXISTS `seq_retorno_programado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_retorno_programado` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_retorno_programado` +-- + +LOCK TABLES `seq_retorno_programado` WRITE; +/*!40000 ALTER TABLE `seq_retorno_programado` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_retorno_programado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_secao_documento` +-- + +DROP TABLE IF EXISTS `seq_secao_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_secao_documento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_secao_documento` +-- + +LOCK TABLES `seq_secao_documento` WRITE; +/*!40000 ALTER TABLE `seq_secao_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_secao_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_secao_imprensa_nacional` +-- + +DROP TABLE IF EXISTS `seq_secao_imprensa_nacional`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_secao_imprensa_nacional` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_secao_imprensa_nacional` +-- + +LOCK TABLES `seq_secao_imprensa_nacional` WRITE; +/*!40000 ALTER TABLE `seq_secao_imprensa_nacional` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_secao_imprensa_nacional` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_secao_modelo` +-- + +DROP TABLE IF EXISTS `seq_secao_modelo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_secao_modelo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=776 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_secao_modelo` +-- + +LOCK TABLES `seq_secao_modelo` WRITE; +/*!40000 ALTER TABLE `seq_secao_modelo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_secao_modelo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_serie` +-- + +DROP TABLE IF EXISTS `seq_serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_serie` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=283 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_serie` +-- + +LOCK TABLES `seq_serie` WRITE; +/*!40000 ALTER TABLE `seq_serie` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_serie_publicacao` +-- + +DROP TABLE IF EXISTS `seq_serie_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_serie_publicacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_serie_publicacao` +-- + +LOCK TABLES `seq_serie_publicacao` WRITE; +/*!40000 ALTER TABLE `seq_serie_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_serie_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_serie_restricao` +-- + +DROP TABLE IF EXISTS `seq_serie_restricao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_serie_restricao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_serie_restricao` +-- + +LOCK TABLES `seq_serie_restricao` WRITE; +/*!40000 ALTER TABLE `seq_serie_restricao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_serie_restricao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_servico` +-- + +DROP TABLE IF EXISTS `seq_servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_servico` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_servico` +-- + +LOCK TABLES `seq_servico` WRITE; +/*!40000 ALTER TABLE `seq_servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_situacao` +-- + +DROP TABLE IF EXISTS `seq_situacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_situacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_situacao` +-- + +LOCK TABLES `seq_situacao` WRITE; +/*!40000 ALTER TABLE `seq_situacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_situacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tabela_assuntos` +-- + +DROP TABLE IF EXISTS `seq_tabela_assuntos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tabela_assuntos` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tabela_assuntos` +-- + +LOCK TABLES `seq_tabela_assuntos` WRITE; +/*!40000 ALTER TABLE `seq_tabela_assuntos` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tabela_assuntos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tarefa` +-- + +DROP TABLE IF EXISTS `seq_tarefa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tarefa` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tarefa` +-- + +LOCK TABLES `seq_tarefa` WRITE; +/*!40000 ALTER TABLE `seq_tarefa` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tarefa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tarja_assinatura` +-- + +DROP TABLE IF EXISTS `seq_tarja_assinatura`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tarja_assinatura` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tarja_assinatura` +-- + +LOCK TABLES `seq_tarja_assinatura` WRITE; +/*!40000 ALTER TABLE `seq_tarja_assinatura` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tarja_assinatura` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_texto_padrao_interno` +-- + +DROP TABLE IF EXISTS `seq_texto_padrao_interno`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_texto_padrao_interno` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_texto_padrao_interno` +-- + +LOCK TABLES `seq_texto_padrao_interno` WRITE; +/*!40000 ALTER TABLE `seq_texto_padrao_interno` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_texto_padrao_interno` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_conferencia` +-- + +DROP TABLE IF EXISTS `seq_tipo_conferencia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_conferencia` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_conferencia` +-- + +LOCK TABLES `seq_tipo_conferencia` WRITE; +/*!40000 ALTER TABLE `seq_tipo_conferencia` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_conferencia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_contato` +-- + +DROP TABLE IF EXISTS `seq_tipo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_contato` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_contato` +-- + +LOCK TABLES `seq_tipo_contato` WRITE; +/*!40000 ALTER TABLE `seq_tipo_contato` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_formulario` +-- + +DROP TABLE IF EXISTS `seq_tipo_formulario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_formulario` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_formulario` +-- + +LOCK TABLES `seq_tipo_formulario` WRITE; +/*!40000 ALTER TABLE `seq_tipo_formulario` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_formulario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_localizador` +-- + +DROP TABLE IF EXISTS `seq_tipo_localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_localizador` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_localizador` +-- + +LOCK TABLES `seq_tipo_localizador` WRITE; +/*!40000 ALTER TABLE `seq_tipo_localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_proced_restricao` +-- + +DROP TABLE IF EXISTS `seq_tipo_proced_restricao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_proced_restricao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_proced_restricao` +-- + +LOCK TABLES `seq_tipo_proced_restricao` WRITE; +/*!40000 ALTER TABLE `seq_tipo_proced_restricao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_proced_restricao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_procedimento` +-- + +DROP TABLE IF EXISTS `seq_tipo_procedimento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_procedimento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=100000502 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_procedimento` +-- + +LOCK TABLES `seq_tipo_procedimento` WRITE; +/*!40000 ALTER TABLE `seq_tipo_procedimento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_procedimento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tipo_suporte` +-- + +DROP TABLE IF EXISTS `seq_tipo_suporte`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tipo_suporte` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tipo_suporte` +-- + +LOCK TABLES `seq_tipo_suporte` WRITE; +/*!40000 ALTER TABLE `seq_tipo_suporte` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tipo_suporte` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_titulo` +-- + +DROP TABLE IF EXISTS `seq_titulo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_titulo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_titulo` +-- + +LOCK TABLES `seq_titulo` WRITE; +/*!40000 ALTER TABLE `seq_titulo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_titulo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_tratamento` +-- + +DROP TABLE IF EXISTS `seq_tratamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_tratamento` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_tratamento` +-- + +LOCK TABLES `seq_tratamento` WRITE; +/*!40000 ALTER TABLE `seq_tratamento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_tratamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_uf` +-- + +DROP TABLE IF EXISTS `seq_uf`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_uf` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_uf` +-- + +LOCK TABLES `seq_uf` WRITE; +/*!40000 ALTER TABLE `seq_uf` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_uf` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_unidade_historico` +-- + +DROP TABLE IF EXISTS `seq_unidade_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_unidade_historico` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_unidade_historico` +-- + +LOCK TABLES `seq_unidade_historico` WRITE; +/*!40000 ALTER TABLE `seq_unidade_historico` DISABLE KEYS */; +INSERT INTO `seq_unidade_historico` VALUES (1,'0'),(2,'0'),(3,'0'),(4,'0'),(5,'0'),(6,'0'),(7,'0'),(8,'0'),(9,'0'),(10,'0'),(11,'0'),(12,'0'),(13,'0'),(14,'0'),(15,'0'),(16,'0'),(17,'0'),(18,'0'),(19,'0'),(20,'0'),(21,'0'),(22,'0'),(23,'0'),(24,'0'),(25,'0'),(26,'0'),(27,'0'),(28,'0'),(29,'0'),(30,'0'),(31,'0'),(32,'0'),(33,'0'),(34,'0'),(35,'0'),(36,'0'),(37,'0'),(38,'0'),(39,'0'),(40,'0'),(41,'0'),(42,'0'),(43,'0'); +/*!40000 ALTER TABLE `seq_unidade_historico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_unidade_publicacao` +-- + +DROP TABLE IF EXISTS `seq_unidade_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_unidade_publicacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_unidade_publicacao` +-- + +LOCK TABLES `seq_unidade_publicacao` WRITE; +/*!40000 ALTER TABLE `seq_unidade_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_unidade_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_upload` +-- + +DROP TABLE IF EXISTS `seq_upload`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_upload` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_upload` +-- + +LOCK TABLES `seq_upload` WRITE; +/*!40000 ALTER TABLE `seq_upload` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_upload` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_veiculo_imprensa_nacional` +-- + +DROP TABLE IF EXISTS `seq_veiculo_imprensa_nacional`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_veiculo_imprensa_nacional` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_veiculo_imprensa_nacional` +-- + +LOCK TABLES `seq_veiculo_imprensa_nacional` WRITE; +/*!40000 ALTER TABLE `seq_veiculo_imprensa_nacional` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_veiculo_imprensa_nacional` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_veiculo_publicacao` +-- + +DROP TABLE IF EXISTS `seq_veiculo_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_veiculo_publicacao` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_veiculo_publicacao` +-- + +LOCK TABLES `seq_veiculo_publicacao` WRITE; +/*!40000 ALTER TABLE `seq_veiculo_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_veiculo_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_versao_secao_documento` +-- + +DROP TABLE IF EXISTS `seq_versao_secao_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_versao_secao_documento` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_versao_secao_documento` +-- + +LOCK TABLES `seq_versao_secao_documento` WRITE; +/*!40000 ALTER TABLE `seq_versao_secao_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_versao_secao_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_vocativo` +-- + +DROP TABLE IF EXISTS `seq_vocativo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_vocativo` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=64 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_vocativo` +-- + +LOCK TABLES `seq_vocativo` WRITE; +/*!40000 ALTER TABLE `seq_vocativo` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_vocativo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serie` +-- + +DROP TABLE IF EXISTS `serie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serie` ( + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `id_modelo_edoc` int(11) DEFAULT NULL, + `id_grupo_serie` int(11) DEFAULT NULL, + `id_serie` int(11) NOT NULL, + `sin_interessado` char(1) NOT NULL, + `sin_destinatario` char(1) NOT NULL, + `sta_numeracao` char(1) NOT NULL, + `sin_assinatura_publicacao` char(1) NOT NULL, + `id_modelo` int(11) DEFAULT NULL, + `sta_aplicabilidade` char(1) NOT NULL, + `sin_interno` char(1) NOT NULL, + `id_tipo_formulario` int(11) DEFAULT NULL, + `sin_usuario_externo` char(1) NOT NULL, + PRIMARY KEY (`id_serie`), + UNIQUE KEY `ak1_serie` (`nome`,`sin_ativo`), + KEY `fk_serie_modelo` (`id_modelo`), + KEY `i01_serie` (`sin_ativo`,`sta_aplicabilidade`,`sin_interno`), + KEY `fk_serie_tipo_formulario` (`id_tipo_formulario`), + KEY `fk_serie_grupo_serie` (`id_grupo_serie`), + CONSTRAINT `fk_serie_grupo_serie` FOREIGN KEY (`id_grupo_serie`) REFERENCES `grupo_serie` (`id_grupo_serie`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_serie_modelo` FOREIGN KEY (`id_modelo`) REFERENCES `modelo` (`id_modelo`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_serie_tipo_formulario` FOREIGN KEY (`id_tipo_formulario`) REFERENCES `tipo_formulario` (`id_tipo_formulario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serie` +-- + +LOCK TABLES `serie` WRITE; +/*!40000 ALTER TABLE `serie` DISABLE KEYS */; +INSERT INTO `serie` VALUES ('Resolução','Ato normativo com efeitos internos ao órgão que a criou ou a outros órgãos subordinados.','S',NULL,1,1,'N','N','2','S',56,'T','N',NULL,'N'),('Súmula','Expressa decisão quanto à interpretação da legislação e fixa entendimento sobre matérias de competência do Órgão, com efeito vinculativo.','S',NULL,1,2,'N','N','2','S',60,'T','N',NULL,'N'),('Ato','Expressa decisão sobre outorga, expedição, modificação, transferência, prorrogação, adaptação e extinção de concessões, permissões e autorizações para exploração de serviços, uso de recursos escassos e exploração de satélite, e Chamamento Público.','S',NULL,1,3,'S','N','4','S',28,'T','N',NULL,'N'),('Despacho Decisório','Expressa decisão sobre matérias não abrangidas pelos demais instrumentos deliberativos.','S',NULL,1,4,'S','N','3','S',48,'I','N',NULL,'N'),('Despacho','Manifestação de mero expediente, sem cunho decisório, não abrangida pelos demais instrumentos deliberativos, que promove uma providência ordinatória propulsora do processo administrativo.','S',NULL,1,5,'S','N','S','S',39,'T','N',NULL,'N'),('Análise','Como Documento Externo pode ser complementado: Contábil','S',NULL,1,7,'S','N','3','S',36,'T','N',NULL,'N'),('Acórdão','Expressa decisão proferida pelo Conselho Diretor, não abrangida pelos demais instrumentos deliberativos anteriores.','S',NULL,1,8,'S','N','4','S',43,'T','N',NULL,'N'),('Portaria','Expressa decisão relativa a assuntos de interesse interno da Agência.','S',NULL,1,10,'N','N','4','S',57,'T','N',NULL,'N'),('Ofício','Modalidades de comunicação oficial. É expedido para e pelas autoridades. Tem como finalidade o tratamento de assuntos oficiais pelos órgãos da Administração Pública entre si e também com particulares.','S',NULL,1,11,'N','S','3','S',58,'T','N',NULL,'N'),('Memorando','Como Documento Externo pode ser complementado: de Entendimento','S',NULL,1,12,'N','S','3','S',51,'T','N',NULL,'N'),('Memorando-Circular','Mesma definição do Memorando com apenas uma diferença: é encaminhado simultaneamente a mais de um cargo.','S',NULL,1,13,'N','S','3','S',53,'T','N',NULL,'N'),('Comunicado',NULL,'S',NULL,2,14,'N','N','S','S',NULL,'E','N',NULL,'N'),('Nota Técnica','Instrumento de comunicação interna ou externa que expressa um juízo ou opinião sobre questão técnica, com vistas a esclarecer dúvidas ou indagações.','S',NULL,1,15,'S','N','3','S',64,'I','N',NULL,'N'),('Informe','Podendo ser complementado: de Rendimentos','S',NULL,2,16,'N','N','S','S',NULL,'E','N',NULL,'N'),('Referendo',NULL,'S',NULL,1,27,'S','N','3','S',48,'T','N',NULL,'N'),('Parecer (AGU)','Tipo de Documento próprio da AGU (vide anexo à Portaria 1399/2009 da AGU).','S',NULL,1,28,'S','N','3','S',55,'I','N',NULL,'N'),('Cota','Tipo de Documento próprio da AGU (vide anexo à Portaria 1399/2009 da AGU).','S',NULL,1,29,'S','N','3','S',50,'T','N',NULL,'N'),('E-mail','Indicado nos Parâmetros para corresponder ao envio de Correspondência Eletrônica do SEI','S',NULL,1,30,'S','N','3','S',48,'T','N',NULL,'N'),('Balancete','Podendo ser complementado: Financeiro','S',NULL,2,32,'N','N','S','S',NULL,'E','N',NULL,'N'),('Balanço','Podendo ser complementado: Patrimonial - BP; Financeiro','S',NULL,2,33,'N','N','S','S',NULL,'E','N',NULL,'N'),('Boletim','Podendo ser complementado: de Ocorrência; Informativo','S',NULL,2,34,'N','N','S','S',NULL,'E','N',NULL,'N'),('Comprovante','Podendo ser complementado: de Despesa; de Rendimento; de Residência; de Matrícula; de União Estável','S',NULL,2,35,'N','N','S','S',NULL,'E','N',NULL,'N'),('Conta','Podendo ser complementado: Telefônica; de Água; de Luz','S',NULL,2,36,'N','N','S','S',NULL,'E','N',NULL,'N'),('Contrato','Como Documento Externo pode ser complementado: Social','S',NULL,1,37,'S','N','4','S',71,'T','N',NULL,'N'),('Correspondência',NULL,'S',NULL,2,38,'N','N','S','S',NULL,'E','N',NULL,'N'),('Croqui','Podendo ser complementado: de Acesso, Urbano','S',NULL,2,39,'N','N','S','S',NULL,'E','N',NULL,'N'),('Dacon','Demonstrativo de Apuração de Contribuições Sociais','S',NULL,2,40,'N','N','S','S',NULL,'E','N',NULL,'N'),('Decisão','Podendo ser complementado: Administrativa; Judicial','S',NULL,2,41,'N','N','S','S',NULL,'E','N',NULL,'N'),('Defesa','Podendo ser complementado: Administrativa; Judicial','S',NULL,2,42,'N','N','S','S',NULL,'E','N',NULL,'N'),('Degravacão',NULL,'S',NULL,2,43,'N','N','S','S',NULL,'E','N',NULL,'N'),('Demonstração','Podendo ser complementado: de Resultado do Exercício - DRE; de Fluxo de Caixa; Financeira; Contábil','S',NULL,2,44,'N','N','S','S',NULL,'E','N',NULL,'N'),('Denúncia',NULL,'S',NULL,2,45,'N','N','S','S',NULL,'E','N',NULL,'N'),('Abaixo-Assinado','Podendo ser complementado: de Reivindicação','S',NULL,2,46,'N','N','S','S',NULL,'E','N',NULL,'N'),('Alvará','Podendo ser complementado: de Funcionamento; Judicial','S',NULL,2,48,'N','N','S','S',NULL,'E','N',NULL,'N'),('Escrituração','Podendo ser complementado: Contábil Digital - ECD; Fiscal Digital - EFD; Fiscal Digital - EFD-Contribuições','S',NULL,2,49,'N','N','S','S',NULL,'E','N',NULL,'N'),('Estatuto','Podendo ser complementado: Social','S',NULL,2,50,'N','N','S','S',NULL,'E','N',NULL,'N'),('Extrato','Podendo ser complementado: de Sistemas; Bancário','S',NULL,2,51,'N','N','S','S',NULL,'E','N',NULL,'N'),('Áudio','Podendo ser complementado: de Reunião','S',NULL,2,52,'N','N','S','S',NULL,'E','N',NULL,'N'),('Vídeo','Podendo ser complementado: de Reunião','S',NULL,2,53,'N','N','S','S',NULL,'E','N',NULL,'N'),('Laudo','Podendo ser complementado: Médico; Conclusivo','S',NULL,2,54,'N','N','S','S',NULL,'E','N',NULL,'N'),('Licença','Podendo ser complementado: de Estação','S',NULL,2,55,'N','N','S','S',NULL,'E','N',NULL,'N'),('Livro','Podendo ser complementado: Caixa','S',NULL,2,56,'N','N','S','S',NULL,'E','N',NULL,'N'),('Memória','Podendo ser complementado: de Cálculo','S',NULL,2,57,'N','N','S','S',NULL,'E','N',NULL,'N'),('Norma','Podendo ser complementado: Técnica; de Conduta','S',NULL,2,58,'N','N','S','S',NULL,'E','N',NULL,'N'),('Notificação',NULL,'S',NULL,2,59,'N','N','S','S',NULL,'E','N',NULL,'N'),('Procuração',NULL,'S',NULL,2,60,'N','N','S','S',NULL,'E','N',NULL,'N'),('Reclamação',NULL,'S',NULL,2,61,'N','N','S','S',NULL,'E','N',NULL,'N'),('Registro','Podendo ser complementado: de Detalhes de Chamadas - CDR; de Acesso; Comercial','S',NULL,2,62,'N','N','S','S',NULL,'E','N',NULL,'N'),('Relatório','Podendo ser complementado: de Conformidade; de Medições; de Prestação de Contas; de Viagem a Serviço; Fotográfico; Técnico','S',NULL,2,63,'N','N','S','S',NULL,'E','N',NULL,'N'),('Requerimento','Podendo ser complementado: Administrativo; de Adaptação; de Alteração Técnica; de Alteração Técnica; de Autocadastramento de Estação; de Licenciamento de Estação; de Serviço de Telecomunicações','S',NULL,2,64,'N','N','S','S',NULL,'E','N',NULL,'N'),('Requisição','Podendo ser complementado: de Auditoria; de Exclusão; de Segunda Via','S',NULL,2,65,'N','N','S','S',NULL,'E','N',NULL,'N'),('Ata','Podendo ser complementado: de Reunião; de Realização de Pregão','S',NULL,2,67,'N','N','S','S',NULL,'E','N',NULL,'N'),('Edital',NULL,'S',NULL,1,68,'N','N','I','S',70,'T','N',NULL,'N'),('Mandado','Podendo ser complementado: de Busca e Apreensão; de Citação; de Intimação','S',NULL,2,69,'N','N','S','S',NULL,'E','N',NULL,'N'),('Volume',NULL,'S',NULL,2,71,'N','N','S','S',NULL,'E','N',NULL,'N'),('Conteúdo de Mídia','Conteúdo extraído de mídia compactado em arquivo zip','S',NULL,2,72,'N','N','S','S',NULL,'E','N',NULL,'N'),('Plano','Podendo ser complementado: de Serviço; de Contas Contábil','S',NULL,2,73,'N','N','S','S',NULL,'E','N',NULL,'N'),('Atestado','Podendo ser complementado: Médico; de Comparecimento; de Capacidade Técnica','S',NULL,2,74,'N','N','S','S',NULL,'E','N',NULL,'N'),('Prontuário','Podendo ser complementado: Médico; Odontológico','S',NULL,2,75,'N','N','S','S',NULL,'E','N',NULL,'N'),('Resultado','Podendo ser complementado: de Exame Médico; de Contestação','S',NULL,2,76,'N','N','S','S',NULL,'E','N',NULL,'N'),('Diploma','Podendo ser complementado: de Conclusão de Curso','S',NULL,2,77,'N','N','S','S',NULL,'E','N',NULL,'N'),('Material','Podendo ser complementado: Publicitário; de Evento; de Promoção','S',NULL,2,78,'N','N','S','S',NULL,'E','N',NULL,'N'),('Histórico','Podendo ser complementado: Escolar','S',NULL,2,79,'N','N','S','S',NULL,'E','N',NULL,'N'),('Carta','Podendo ser complementado: Convite','S',NULL,2,80,'N','N','S','S',NULL,'E','N',NULL,'N'),('Certidão','Como Documento Externo pode ser complementado: de Tempo de Serviço; de Nascimento; de Casamento; de Óbito; Negativa de Falência ou Concordata; Negativa de Débitos Trabalhistas; Negativa de Débitos Tributários','S',NULL,1,81,'S','N','S','S',27,'T','N',NULL,'N'),('Certificado','Podendo ser complementado: de Conclusão de Curso; de Calibração de Equipamento; de Marca','S',NULL,2,82,'N','N','S','S',NULL,'E','N',NULL,'N'),('Declaração','Como Documento Externo pode ser complementado: de Imposto de Renda; de Conformidade; de Responsabilidade Técnica; de Acumulação de Aposentadoria; de Acumulação de Cargos; de Informações Econômico-Fiscais da Pessoa Jurídica (DIPJ)','S',NULL,1,83,'S','N','S','S',27,'T','N',NULL,'N'),('Fatura',NULL,'S',NULL,2,84,'N','N','S','S',NULL,'E','N',NULL,'N'),('Proposta','Podendo ser complementado: Comercial; de Orçamento; Técnica','S',NULL,2,85,'N','N','S','S',NULL,'E','N',NULL,'N'),('Formulário de Ouvidoria','Formulário de peticionamento da Ouvidoria, disponibilizado no Portal do Órgão.','S',NULL,1,86,'S','N','3','S',48,'I','N',NULL,'N'),('Carteira','Podendo ser complementado: Nacional de Habilitação','S',NULL,2,87,'N','N','S','S',NULL,'E','N',NULL,'N'),('CPF',NULL,'S',NULL,2,88,'N','N','S','S',NULL,'E','N',NULL,'N'),('RG',NULL,'S',NULL,2,89,'N','N','S','S',NULL,'E','N',NULL,'N'),('Termo','Podendo ser complementado: de Opção por Auxílio Financeiro; de Opção para Contribuição ao CPSS; de Conciliação; de Devolução; de Doação; de Recebimento; de Rescisão; de Compromisso de Estágio; de Representação; de Responsabilidade de Instalação - TRI','S',NULL,2,90,'N','N','S','S',NULL,'E','N',NULL,'N'),('Nota','Tipo de Documento próprio da AGU (vide anexo à Portaria 1399/2009 da AGU).\r\n- Como Documento Externo pode ser complementado: Fiscal; Informativa','S',NULL,1,91,'S','N','3','S',61,'T','N',NULL,'N'),('Informação','Tipo de Documento próprio da AGU (vide anexo à Portaria 1399/2009 da AGU).','S',NULL,1,92,'S','N','3','S',62,'T','N',NULL,'N'),('Despacho (AGU)','Tipo de Documento próprio da AGU (vide anexo à Portaria 1399/2009 da AGU).','S',NULL,1,93,'S','N','3','S',63,'T','N',NULL,'N'),('Voto',NULL,'S',NULL,1,94,'S','N','3','S',37,'T','N',NULL,'N'),('Agenda','Podendo ser complementado: de Reunião','S',NULL,2,95,'N','N','S','S',NULL,'E','N',NULL,'N'),('Anotação','Podendo ser complementado: de Responsabilidade Técnica - ART','S',NULL,2,96,'N','N','S','S',NULL,'E','N',NULL,'N'),('Boleto','Podendo ser complementado: de Pagamento; de Cobrança; de Cobrança Registrada; de Cobrança sem Registro','S',NULL,2,97,'N','N','S','S',NULL,'E','N',NULL,'N'),('Credencial','Podendo ser complementado: de Segurança; de Agente de Fiscalização','S',NULL,2,98,'N','N','S','S',NULL,'E','N',NULL,'N'),('Folha','Podendo ser complementado: de Frequência de Estagiário; de Frequência de Servidor','S',NULL,2,99,'N','N','S','S',NULL,'E','N',NULL,'N'),('Lista','Podendo ser complementado: de Presença','S',NULL,2,100,'N','N','S','S',NULL,'E','N',NULL,'N'),('Projeto','Podendo ser complementado: Técnico; Comercial','S',NULL,2,101,'N','N','S','S',NULL,'E','N',NULL,'N'),('Relação','Podendo ser complementado: de Bens Reversíveis - RBR','S',NULL,2,102,'N','N','S','S',NULL,'E','N',NULL,'N'),('Publicação','Podendo ser complementado: no DOU; em Jornal','S',NULL,2,103,'N','N','S','S',NULL,'E','N',NULL,'N'),('Planilha','Podendo ser complementado: de Custos e Formação de Preços','S',NULL,2,104,'N','N','S','S',NULL,'E','N',NULL,'N'),('Convenção','Podendo ser complementado: Coletiva de Trabalho; Internacional','S',NULL,2,105,'N','N','S','S',NULL,'E','N',NULL,'N'),('Acordo','Podendo ser complementado: de Nível de Serviço; Coletivo de Trabalho','S',NULL,2,106,'N','N','S','S',NULL,'E','N',NULL,'N'),('Pedido','Podendo ser complementado: de Reconsideração; de Esclarecimento','S',NULL,2,107,'N','N','S','S',NULL,'E','N',NULL,'N'),('Esclarecimento',NULL,'S',NULL,2,108,'N','N','S','S',NULL,'E','N',NULL,'N'),('Impugnação',NULL,'S',NULL,2,109,'N','N','S','S',NULL,'E','N',NULL,'N'),('Intenção','Podendo ser complementado: de Recurso; de Compra; de Venda','S',NULL,2,110,'N','N','S','S',NULL,'E','N',NULL,'N'),('Recurso','Podendo ser complementado: Administrativo; Judicial','S',NULL,2,111,'N','N','S','S',NULL,'E','N',NULL,'N'),('Contrarrazões','Podendo ser complementado: em Recurso; em Apelação; em Embargos Infringentes','S',NULL,2,112,'N','N','S','S',NULL,'E','N',NULL,'N'),('Manual','Podendo ser complementado: do Usuário; do Sistema; do Equipamento','S',NULL,2,113,'N','N','S','S',NULL,'E','N',NULL,'N'),('Termo de Encerramento de Trâmite Físico',NULL,'S',NULL,1,114,'S','N','S','S',30,'I','N',NULL,'N'),('Apartado','Podendo ser complementado: Sigiloso','S',NULL,2,115,'N','N','S','S',NULL,'E','N',NULL,'N'),('Anais','Podendo ser complementado: de Eventos; de Engenharia','S',NULL,2,116,'N','N','S','S',NULL,'E','N',NULL,'N'),('Anteprojeto','Podendo ser complementado: de Lei','S',NULL,2,117,'N','N','S','S',NULL,'E','N',NULL,'N'),('Apólice','Podendo ser complementado: de Seguro','S',NULL,2,118,'N','N','S','S',NULL,'E','N',NULL,'N'),('Apostila','Podendo ser complementado: de Curso','S',NULL,2,119,'N','N','S','S',NULL,'E','N',NULL,'N'),('Auto','Podendo ser complementado: de Vistoria; de Infração','S',NULL,2,120,'N','N','S','S',NULL,'E','N',NULL,'N'),('Aviso','Podendo ser complementado: de Recebimento; de Sinistro; de Férias','S',NULL,1,121,'N','S','4','S',94,'T','N',NULL,'N'),('Bilhete','Podendo ser complementado: de Pagamento; de Loteria','S',NULL,2,122,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cartaz','Podendo ser complementado: de Evento','S',NULL,2,123,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cédula','Podendo ser complementado: de Identidade; de Crédito Bancário; de Crédito Comercial; de Crédito Imobiliário','S',NULL,2,124,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cheque','Podendo ser complementado: Caução','S',NULL,2,125,'N','N','S','S',NULL,'E','N',NULL,'N'),('Contracheque',NULL,'S',NULL,2,126,'N','N','S','S',NULL,'E','N',NULL,'N'),('Convite','Podendo ser complementado: de Reunião; para Evento; de Casamento','S',NULL,2,127,'N','N','S','S',NULL,'E','N',NULL,'N'),('Crachá','Podendo ser complementado: de Identificação; de Evento','S',NULL,2,128,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cronograma','Podendo ser complementado: de Projeto; de Estudos','S',NULL,2,129,'N','N','S','S',NULL,'E','N',NULL,'N'),('Currículo','Podendo ser complementado: de Candidato','S',NULL,2,130,'N','N','S','S',NULL,'E','N',NULL,'N'),('Decreto',NULL,'S',NULL,2,131,'N','N','S','S',NULL,'E','N',NULL,'N'),('Deliberação','Podendo ser complementado: de Recursos; do Conselho','S',NULL,2,132,'N','N','S','S',NULL,'E','N',NULL,'N'),('Demonstrativo','Podendo ser complementado: Financeiro; de Pagamento; de Arrecadação','S',NULL,2,133,'N','N','S','S',NULL,'E','N',NULL,'N'),('Depoimento','Podendo ser complementado: das Testemunhas','S',NULL,2,134,'N','N','S','S',NULL,'E','N',NULL,'N'),('Diário','Podendo ser complementado: de Justiça; Oficial','S',NULL,2,135,'N','N','S','S',NULL,'E','N',NULL,'N'),('Dissertação','Podendo ser complementado: de Mestrado','S',NULL,2,136,'N','N','S','S',NULL,'E','N',NULL,'N'),('Dossiê','Podendo ser complementado: de Processo; Técnico','S',NULL,2,137,'N','N','S','S',NULL,'E','N',NULL,'N'),('Embargos','Podendo ser complementado: de Declaração; de Execução ou Infringentes','S',NULL,2,138,'N','N','S','S',NULL,'E','N',NULL,'N'),('Emenda','Podendo ser complementado: Constitucional; de Comissão; de Bancada; de Relatoria','S',NULL,2,139,'N','N','S','S',NULL,'E','N',NULL,'N'),('Escala','Podendo ser complementado: de Férias','S',NULL,2,140,'N','N','S','S',NULL,'E','N',NULL,'N'),('Escritura','Podendo ser complementado: Pública; de Imóvel','S',NULL,2,141,'N','N','S','S',NULL,'E','N',NULL,'N'),('Exposição de Motivos',NULL,'S',NULL,1,142,'N','S','4','S',95,'T','N',NULL,'N'),('Ficha','Podendo ser complementado: de Cadastro; de Inscrição','S',NULL,2,143,'N','N','S','S',NULL,'E','N',NULL,'N'),('Fluxograma','Podendo ser complementado: de Processo; de Documentos; de Blocos','S',NULL,2,144,'N','N','S','S',NULL,'E','N',NULL,'N'),('Formulário','Podendo ser complementado: de Contato; de Revisão','S',NULL,2,145,'N','N','S','S',NULL,'E','N',NULL,'N'),('Guia','Podendo ser complementado: de Recolhimento da União','S',NULL,2,146,'N','N','S','S',NULL,'E','N',NULL,'N'),('Inventário','Podendo ser complementado: de Estoque; Extrajudicial; Judicial; em Cartório','S',NULL,2,147,'N','N','S','S',NULL,'E','N',NULL,'N'),('Lei','Podendo ser complementado: Complementar','S',NULL,2,148,'N','N','S','S',NULL,'E','N',NULL,'N'),('Manifesto',NULL,'S',NULL,2,149,'N','N','S','S',NULL,'E','N',NULL,'N'),('Mapa','Podendo ser complementado: de Ruas; de Risco','S',NULL,2,150,'N','N','S','S',NULL,'E','N',NULL,'N'),('Medida Provisória',NULL,'S',NULL,2,151,'N','N','S','S',NULL,'E','N',NULL,'N'),('Memorial','Podendo ser complementado: Descritivo; de Incorporação','S',NULL,2,152,'N','N','S','S',NULL,'E','N',NULL,'N'),('Mensagem','Podendo ser complementado: de Aniversário; de Boas Vindas','S',NULL,1,153,'N','S','4','S',96,'T','N',NULL,'N'),('Moção','Podendo ser complementado: de Apoio; de Pesar; de Repúdio','S',NULL,2,154,'N','N','S','S',NULL,'E','N',NULL,'N'),('Organograma','Podendo ser complementado: da Empresa','S',NULL,2,155,'N','N','S','S',NULL,'E','N',NULL,'N'),('Orientação','Podendo ser complementado: Normativa; Jurisprudencial','S',NULL,2,156,'N','N','S','S',NULL,'E','N',NULL,'N'),('Panfleto','Podendo ser complementado: de Promoção; de Evento','S',NULL,2,157,'N','N','S','S',NULL,'E','N',NULL,'N'),('Passaporte',NULL,'S',NULL,2,158,'N','N','S','S',NULL,'E','N',NULL,'N'),('Pauta','Podendo ser complementado: de Julgamentos; de Audiências; das Seções','S',NULL,2,159,'N','N','S','S',NULL,'E','N',NULL,'N'),('Petição','Podendo ser complementado: Inicial; Incidental','S',NULL,2,160,'N','N','S','S',NULL,'E','N',NULL,'N'),('Planta','Podendo ser complementado: Baixa; de Localização; de Situação','S',NULL,2,161,'N','N','S','S',NULL,'E','N',NULL,'N'),('Precatório','Podendo ser complementado: Alimentar; Federal; Estadual; Municipal','S',NULL,2,162,'N','N','S','S',NULL,'E','N',NULL,'N'),('Programa','Podendo ser complementado: de Governo; de Melhoria','S',NULL,2,163,'N','N','S','S',NULL,'E','N',NULL,'N'),('Prospecto','Podendo ser complementado: de Fundos','S',NULL,2,164,'N','N','S','S',NULL,'E','N',NULL,'N'),('Protocolo','Podendo ser complementado: de Entendimentos; de Entrega','S',NULL,2,165,'N','N','S','S',NULL,'E','N',NULL,'N'),('Prova','Podendo ser complementado: de Conceito; de Proficiência','S',NULL,2,166,'N','N','S','S',NULL,'E','N',NULL,'N'),('Questionário','Podendo ser complementado: de Avaliação; de Pesquisa; Socioeconômico','S',NULL,2,167,'N','N','S','S',NULL,'E','N',NULL,'N'),('Receita',NULL,'S',NULL,2,168,'N','N','S','S',NULL,'E','N',NULL,'N'),('Recibo','Podendo ser complementado: de Pagamento; de Entrega','S',NULL,2,169,'N','N','S','S',NULL,'E','N',NULL,'N'),('Regimento','Podendo ser complementado: Interno','S',NULL,2,170,'N','N','S','S',NULL,'E','N',NULL,'N'),('Regulamento','Podendo ser complementado: Geral; Disciplinar; de Administração','S',NULL,2,171,'N','N','S','S',NULL,'E','N',NULL,'N'),('Release','Podendo ser complementado: de Resultados; de Produtos; de Serviços','S',NULL,2,172,'N','N','S','S',NULL,'E','N',NULL,'N'),('Representação','Podendo ser complementado: Comercial; Processual; Fiscal','S',NULL,2,173,'N','N','S','S',NULL,'E','N',NULL,'N'),('Resumo','Podendo ser complementado: Técnico','S',NULL,2,174,'N','N','S','S',NULL,'E','N',NULL,'N'),('Roteiro','Podendo ser complementado: de Instalação; de Inspeção','S',NULL,2,175,'N','N','S','S',NULL,'E','N',NULL,'N'),('Sentença','Podendo ser complementado: de Mérito; Terminativa; Declaratória; Constitutiva; Condenatória; Mandamental; Executiva','S',NULL,2,176,'N','N','S','S',NULL,'E','N',NULL,'N'),('Sinopse','Podendo ser complementado: do Livro; do Estudo Técnico','S',NULL,2,177,'N','N','S','S',NULL,'E','N',NULL,'N'),('Solicitação','Podendo ser complementado: de Pagamento','S',NULL,2,178,'N','N','S','S',NULL,'E','N',NULL,'N'),('Tabela','Podendo ser complementado: de Visto; de Passaporte; de Certidão','S',NULL,2,179,'N','N','S','S',NULL,'E','N',NULL,'N'),('Telegrama',NULL,'S',NULL,2,180,'N','N','S','S',NULL,'E','N',NULL,'N'),('Tese','Podendo ser complementado: de Doutorado','S',NULL,2,181,'N','N','S','S',NULL,'E','N',NULL,'N'),('Testamento','Podendo ser complementado: Particular; Vital; Cerrado; Conjuntivo','S',NULL,2,182,'N','N','S','S',NULL,'E','N',NULL,'N'),('Título','Podendo ser complementado: de Eleitor; Público; de Capitalização','S',NULL,2,183,'N','N','S','S',NULL,'E','N',NULL,'N'),('Atestado de Capacidade Técnica',NULL,'S',NULL,1,189,'S','N','S','S',27,'I','N',NULL,'N'),('Parecer',NULL,'S',NULL,1,191,'S','N','3','S',90,'T','N',NULL,'N'),('Aviso de Audiência Pública',NULL,'S',NULL,1,192,'S','N','S','S',69,'I','N',NULL,'N'),('Consulta','Podendo ser complementado: Pública; Interna','S',NULL,2,197,'N','N','S','S',NULL,'E','N',NULL,'N'),('Debênture',NULL,'S',NULL,2,198,'N','N','S','S',NULL,'E','N',NULL,'N'),('Diretriz','Podendo ser complementado: Orçamentária','S',NULL,2,199,'N','N','S','S',NULL,'E','N',NULL,'N'),('Folder','Podendo ser complementado: de Evento','S',NULL,2,200,'N','N','S','S',NULL,'E','N',NULL,'N'),('Grade Curricular','Podendo ser complementado: do Curso','S',NULL,2,201,'N','N','S','S',NULL,'E','N',NULL,'N'),('Indicação',NULL,'S',NULL,2,202,'N','N','S','S',NULL,'E','N',NULL,'N'),('Instrução','Podendo ser complementado: Normativa','S',NULL,2,203,'N','N','S','S',NULL,'E','N',NULL,'N'),('Minuta','Podendo ser complementado: de Portaria; de Resolução','S',NULL,2,204,'N','N','S','S',NULL,'E','N',NULL,'N'),('Ofício-Circular',NULL,'S',NULL,2,205,'N','N','S','S',NULL,'E','N',NULL,'N'),('Orçamento','Podendo ser complementado: de Obra; de Serviço','S',NULL,2,206,'N','N','S','S',NULL,'E','N',NULL,'N'),('Ordem','Podendo ser complementado: de Serviço; de Compra; do Dia','S',NULL,2,207,'N','N','S','S',NULL,'E','N',NULL,'N'),('Pronunciamento',NULL,'S',NULL,2,208,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cartão','Podendo ser complementado: de Identificação','S',NULL,2,209,'N','N','S','S',NULL,'E','N',NULL,'N'),('CNPJ',NULL,'S',NULL,2,210,'N','N','S','S',NULL,'E','N',NULL,'N'),('Calendário','Podendo ser complementado: de Reuniões','S',NULL,2,211,'N','N','S','S',NULL,'E','N',NULL,'N'),('Matéria','Podendo ser complementado: para Apreciação','S',NULL,2,212,'N','N','S','S',NULL,'E','N',NULL,'N'),('Movimentação','Podendo ser complementado: de Bens Móveis','S',NULL,2,213,'N','N','S','S',NULL,'E','N',NULL,'N'),('Termo de Referência',NULL,'S',NULL,1,214,'S','N','S','S',72,'I','N',NULL,'N'),('Projeto Básico',NULL,'S',NULL,1,215,'S','N','S','S',102,'I','N',NULL,'N'),('Documento de Oficialização da Demanda (DOD)',NULL,'S',NULL,1,216,'N','N','S','S',73,'I','N',NULL,'N'),('Indicação de Integrante Técnico',NULL,'S',NULL,1,217,'N','N','S','S',74,'I','N',NULL,'N'),('Instituição da Equipe de Planej. da Contratação',NULL,'S',NULL,1,218,'N','N','S','S',75,'I','N',NULL,'N'),('Estudo Técnico Preliminar da Contratação',NULL,'S',NULL,1,219,'S','N','S','S',76,'I','N',NULL,'N'),('Análise de Riscos',NULL,'S',NULL,1,220,'S','N','S','S',77,'I','N',NULL,'N'),('Plano de Inserção',NULL,'S',NULL,1,221,'S','N','S','S',79,'I','N',NULL,'N'),('Ordem de Serviço ou de Fornecimento de Bens',NULL,'S',NULL,1,222,'S','N','4','S',81,'I','N',NULL,'N'),('Plano de Fiscalização',NULL,'S',NULL,1,223,'S','N','S','S',80,'I','N',NULL,'N'),('Termo de Comprom. Manutenção de Sigilo em Contrato',NULL,'S',NULL,1,224,'S','N','S','S',82,'I','N',NULL,'N'),('Termo de Ciência de Manutenção de Sigilo',NULL,'S',NULL,1,225,'S','N','S','S',83,'I','N',NULL,'N'),('Termo de Recebimento Provisório',NULL,'S',NULL,1,226,'S','N','S','S',84,'I','N',NULL,'N'),('Termo de Recebimento Definitivo',NULL,'S',NULL,1,227,'S','N','S','S',85,'I','N',NULL,'N'),('Termo de Encerramento de Contrato',NULL,'S',NULL,1,228,'S','N','S','S',86,'I','N',NULL,'N'),('Ata de Reunião',NULL,'S',NULL,1,229,'S','N','S','S',87,'I','N',NULL,'N'),('Registro de Reunião',NULL,'S',NULL,1,230,'S','N','S','S',88,'I','N',NULL,'N'),('Acordo de Cooperação Técnica',NULL,'S',NULL,1,231,'S','N','4','S',89,'I','N',NULL,'N'),('Convênio',NULL,'S',NULL,1,232,'S','N','4','S',89,'T','N',NULL,'N'),('Minuta de Portaria','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,235,'N','N','S','S',93,'I','N',NULL,'N'),('Minuta de Resolução','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,236,'N','N','S','S',97,'I','N',NULL,'N'),('Relatório de Concessão de Suprimento de Fundos',NULL,'S',NULL,1,237,'N','N','S','S',98,'I','N',NULL,'N'),('Plano de Gerenciamento de Projeto (PGP)',NULL,'S',NULL,1,238,'N','N','S','S',99,'I','N',NULL,'N'),('Termo de Abertura de Projeto (TAP)',NULL,'S',NULL,1,239,'N','N','S','S',100,'I','N',NULL,'N'),('Boletim de Concessão de Diárias',NULL,'S',NULL,1,240,'N','N','I','S',101,'I','N',NULL,'N'),('Minuta de Projeto Básico','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,241,'S','N','S','S',102,'I','N',NULL,'N'),('Termo Aditivo',NULL,'S',NULL,1,242,'S','N','S','S',103,'I','N',NULL,'N'),('Minuta de Termo Aditivo','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,243,'S','N','S','S',103,'I','N',NULL,'N'),('Termo de Apostilamento',NULL,'S',NULL,1,244,'S','N','S','S',104,'I','N',NULL,'N'),('Termo de Rescisão Amigável',NULL,'S',NULL,1,245,'S','N','S','S',105,'I','N',NULL,'N'),('Minuta de Termo de Rescisão Amigável','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,246,'S','N','S','S',105,'I','N',NULL,'N'),('Termo de Rescisão Unilateral',NULL,'S',NULL,1,247,'S','N','S','S',106,'I','N',NULL,'N'),('Minuta de Termo de Rescisão Unilateral','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,248,'S','N','S','S',106,'I','N',NULL,'N'),('Minuta de Convênio','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,249,'S','N','S','S',107,'I','N',NULL,'N'),('Minuta de Acordo de Cooperação Técnica','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,250,'S','N','S','S',107,'I','N',NULL,'N'),('Minuta de Contrato','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,251,'S','N','S','S',108,'I','N',NULL,'N'),('Minuta de Edital','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,252,'N','N','S','S',109,'I','N',NULL,'N'),('Proposta de Concessão de Suprimento de Fundos',NULL,'S',NULL,1,253,'N','N','S','S',110,'I','N',NULL,'N'),('Solicitação de Despesas por Suprimento de Fundos',NULL,'S',NULL,1,254,'N','N','S','S',111,'I','N',NULL,'N'),('Prestação de Contas de Suprimento de Fundos',NULL,'S',NULL,1,255,'N','N','S','S',112,'I','N',NULL,'N'),('Ata de Registro de Preços',NULL,'S',NULL,1,256,'S','N','4','S',113,'I','N',NULL,'N'),('Minuta de Ata de Registro de Preços','Tipo próprio para formalização de minutas deste tipo de documento.','S',NULL,1,257,'S','N','S','S',114,'I','N',NULL,'N'),('Reconhecimento e Ratificação de Inexigibilidade',NULL,'S',NULL,1,258,'S','N','4','S',115,'I','N',NULL,'N'),('Reconhecimento e Ratificação de Dispensa',NULL,'S',NULL,1,259,'S','N','4','S',116,'I','N',NULL,'N'),('Abertura de Procedimento Licitatório',NULL,'S',NULL,1,260,'N','N','4','S',117,'I','N',NULL,'N'),('Relatório de Viagem a Serviço',NULL,'S',NULL,1,261,'N','N','S','S',118,'I','N',NULL,'N'),('Alegações','Podendo ser complementado: Finais','S',NULL,2,262,'N','N','S','S',NULL,'E','N',NULL,'N'),('Anexo',NULL,'S',NULL,2,263,'N','N','S','S',NULL,'E','N',NULL,'N'),('Documento','Podendo ser complementado: de Identificação','S',NULL,2,264,'N','N','S','S',NULL,'E','N',NULL,'N'),('Exposição','Podendo ser complementado: de Motivos','S',NULL,2,265,'N','N','S','S',NULL,'E','N',NULL,'N'),('Folheto','Podendo ser complementado: de Evento','S',NULL,2,266,'N','N','S','S',NULL,'E','N',NULL,'N'),('Listagem',NULL,'S',NULL,2,267,'N','N','S','S',NULL,'E','N',NULL,'N'),('Sumário','Podendo ser complementado: Executivo, de Edição','S',NULL,2,268,'N','N','S','S',NULL,'E','N',NULL,'N'),('Autorização','Podendo ser complementado: de Funcionamento','S',NULL,2,269,'N','N','S','S',NULL,'E','N',NULL,'N'),('Canhoto','Podendo ser complementado: de Embarque','S',NULL,2,270,'N','N','S','S',NULL,'E','N',NULL,'N'),('Confirmação','Podendo ser complementado: de Pagamento','S',NULL,2,271,'N','N','S','S',NULL,'E','N',NULL,'N'),('Cotação','Podendo ser complementado: de Preço','S',NULL,2,272,'N','N','S','S',NULL,'E','N',NULL,'N'),('Inscrição','Podendo ser complementado: no Curso','S',NULL,2,273,'N','N','S','S',NULL,'E','N',NULL,'N'),('Voucher','Podendo ser complementado: de Desconto','S',NULL,2,274,'N','N','S','S',NULL,'E','N',NULL,'N'),('Apresentação','Podendo ser complementado: do Relatório; da Análise','S',NULL,2,275,'N','N','S','S',NULL,'E','N',NULL,'N'),('Diagnóstico','Podendo ser complementado: Médico; de Auditoria','S',NULL,2,276,'N','N','S','S',NULL,'E','N',NULL,'N'),('Exame','Podendo ser complementado: Médico; Laboratorial','S',NULL,2,277,'N','N','S','S',NULL,'E','N',NULL,'N'),('Página','Podendo ser complementado: do Diário Oficial da União','S',NULL,2,278,'N','N','S','S',NULL,'E','N',NULL,'N'),('Estratégia','Podendo ser complementado: da Contratação','S',NULL,2,279,'N','N','S','S',NULL,'E','N',NULL,'N'),('CNH',NULL,'S',NULL,2,280,'N','N','S','S',NULL,'E','N',NULL,'N'),('Processo',NULL,'S',NULL,2,281,'N','N','S','S',NULL,'E','N',NULL,'N'),('Estudo','Podendo ser complementado: Técnico Preliminar da Contratação; Técnico','S',NULL,2,282,'N','N','S','S',NULL,'E','N',NULL,'N'); +/*!40000 ALTER TABLE `serie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serie_escolha` +-- + +DROP TABLE IF EXISTS `serie_escolha`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serie_escolha` ( + `id_serie` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_serie`,`id_unidade`), + KEY `fk_serie_escolha_serie` (`id_serie`), + KEY `fk_serie_escolha_unidade` (`id_unidade`), + CONSTRAINT `fk_serie_escolha_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_serie_escolha_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serie_escolha` +-- + +LOCK TABLES `serie_escolha` WRITE; +/*!40000 ALTER TABLE `serie_escolha` DISABLE KEYS */; +/*!40000 ALTER TABLE `serie_escolha` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serie_publicacao` +-- + +DROP TABLE IF EXISTS `serie_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serie_publicacao` ( + `id_serie_publicacao` int(11) NOT NULL, + `id_serie` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + PRIMARY KEY (`id_serie_publicacao`), + KEY `fk_serie_publicacao_serie` (`id_serie`), + KEY `fk_serie_publicacao_orgao` (`id_orgao`), + CONSTRAINT `fk_serie_publicacao_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`), + CONSTRAINT `fk_serie_publicacao_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serie_publicacao` +-- + +LOCK TABLES `serie_publicacao` WRITE; +/*!40000 ALTER TABLE `serie_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `serie_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `serie_restricao` +-- + +DROP TABLE IF EXISTS `serie_restricao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `serie_restricao` ( + `id_serie_restricao` int(11) NOT NULL, + `id_serie` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `id_unidade` int(11) DEFAULT NULL, + PRIMARY KEY (`id_serie_restricao`), + KEY `fk_serie_restricao_serie` (`id_serie`), + KEY `fk_serie_restricao_orgao` (`id_orgao`), + KEY `fk_serie_restricao_unidade` (`id_unidade`), + CONSTRAINT `fk_serie_restricao_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`), + CONSTRAINT `fk_serie_restricao_serie` FOREIGN KEY (`id_serie`) REFERENCES `serie` (`id_serie`), + CONSTRAINT `fk_serie_restricao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `serie_restricao` +-- + +LOCK TABLES `serie_restricao` WRITE; +/*!40000 ALTER TABLE `serie_restricao` DISABLE KEYS */; +/*!40000 ALTER TABLE `serie_restricao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `servico` +-- + +DROP TABLE IF EXISTS `servico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `servico` ( + `id_servico` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `identificacao` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `servidor` longtext, + `sin_link_externo` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sin_chave_acesso` char(1) NOT NULL, + `sin_servidor` char(1) NOT NULL, + `crc` char(8) DEFAULT NULL, + `chave_acesso` char(60) DEFAULT NULL, + PRIMARY KEY (`id_servico`), + KEY `fk_servico_usuario` (`id_usuario`), + KEY `i02_servico` (`crc`), + CONSTRAINT `fk_servico_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `servico` +-- + +LOCK TABLES `servico` WRITE; +/*!40000 ALTER TABLE `servico` DISABLE KEYS */; +/*!40000 ALTER TABLE `servico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sinalizacao_federacao` +-- + +DROP TABLE IF EXISTS `sinalizacao_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sinalizacao_federacao` ( + `id_instalacao_federacao` varchar(26) NOT NULL, + `id_protocolo_federacao` varchar(26) NOT NULL, + `id_unidade` int(11) NOT NULL, + `dth_sinalizacao` datetime NOT NULL, + `sta_sinalizacao` int(11) DEFAULT NULL, + PRIMARY KEY (`id_instalacao_federacao`,`id_protocolo_federacao`,`id_unidade`), + KEY `fk_sinalizacao_fed_inst_fed` (`id_instalacao_federacao`), + KEY `fk_sinalizacao_fed_prot_fed` (`id_protocolo_federacao`), + KEY `fk_sinalizacao_fed_unidade` (`id_unidade`), + KEY `i01_sinalizacao_federacao` (`id_protocolo_federacao`,`id_unidade`,`sta_sinalizacao`), + CONSTRAINT `fk_sinalizacao_fed_inst_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`), + CONSTRAINT `fk_sinalizacao_fed_prot_fed` FOREIGN KEY (`id_protocolo_federacao`) REFERENCES `protocolo_federacao` (`id_protocolo_federacao`), + CONSTRAINT `fk_sinalizacao_fed_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sinalizacao_federacao` +-- + +LOCK TABLES `sinalizacao_federacao` WRITE; +/*!40000 ALTER TABLE `sinalizacao_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `sinalizacao_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `situacao` +-- + +DROP TABLE IF EXISTS `situacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `situacao` ( + `id_situacao` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_situacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `situacao` +-- + +LOCK TABLES `situacao` WRITE; +/*!40000 ALTER TABLE `situacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `situacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tabela_assuntos` +-- + +DROP TABLE IF EXISTS `tabela_assuntos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tabela_assuntos` ( + `id_tabela_assuntos` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_atual` char(1) NOT NULL, + PRIMARY KEY (`id_tabela_assuntos`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tabela_assuntos` +-- + +LOCK TABLES `tabela_assuntos` WRITE; +/*!40000 ALTER TABLE `tabela_assuntos` DISABLE KEYS */; +INSERT INTO `tabela_assuntos` VALUES (1,'Tabela de Assuntos',NULL,'S'); +/*!40000 ALTER TABLE `tabela_assuntos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tarefa` +-- + +DROP TABLE IF EXISTS `tarefa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tarefa` ( + `id_tarefa` int(11) NOT NULL, + `nome` varchar(250) NOT NULL, + `sin_historico_resumido` char(1) NOT NULL, + `sin_historico_completo` char(1) NOT NULL, + `sin_fechar_andamentos_abertos` char(1) NOT NULL, + `sin_lancar_andamento_fechado` char(1) NOT NULL, + `sin_permite_processo_fechado` char(1) NOT NULL, + `id_tarefa_modulo` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_tarefa`), + UNIQUE KEY `i01_tarefa` (`id_tarefa_modulo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tarefa` +-- + +LOCK TABLES `tarefa` WRITE; +/*!40000 ALTER TABLE `tarefa` DISABLE KEYS */; +INSERT INTO `tarefa` VALUES (1,'Processo @NIVEL_ACESSO@@GRAU_SIGILO@ gerado@DATA_AUTUACAO@@HIPOTESE_LEGAL@','S','S','S','N','N',NULL),(2,'Gerado documento @NIVEL_ACESSO@@GRAU_SIGILO@ @DOCUMENTO@@HIPOTESE_LEGAL@','N','S','S','N','N',NULL),(5,'Assinado Documento @DOCUMENTO@ por @USUARIO@','N','S','S','N','S',NULL),(6,'Cancelamento de assinatura do documento @DOCUMENTO@','N','S','S','N','S',NULL),(7,'@MOTIVO@ do documento @DOCUMENTO@ no veículo @VEICULO@ de @DATA@ @TIPO@','S','S','S','N','N',NULL),(12,'Envio de correspondência eletrônica @DOCUMENTO@','S','S','S','N','N',NULL),(13,'Registro de documento externo @NIVEL_ACESSO@@GRAU_SIGILO@ @DOCUMENTO@@TIPO_CONFERENCIA@@HIPOTESE_LEGAL@','N','S','S','N','N',NULL),(18,'Adicionado processo relacionado @PROCESSO@','N','S','S','N','N',NULL),(19,'Removido relacionamento com o processo @PROCESSO@','N','S','S','N','N',NULL),(20,'Sobrestamento.\r\n@MOTIVO@','S','S','S','N','N',NULL),(21,'Remoção de sobrestamento','S','S','S','N','N',NULL),(24,'Arquivado documento @DOCUMENTO@ no localizador @LOCALIZADOR@','N','S','S','N','S',NULL),(26,'Desarquivado documento @DOCUMENTO@.\r\nRetirado por @USUARIO@.','N','S','S','N','S',NULL),(27,'Migrado documento @DOCUMENTO@ para o localizador @LOCALIZADOR@','N','S','S','N','S',NULL),(28,'Conclusão do processo na unidade','S','S','S','S','N',NULL),(29,'Reabertura do processo na unidade','S','S','S','N','N',NULL),(30,'Arquivo @ANEXO@ anexado no documento @DOCUMENTO@.','N','N','S','N','N',NULL),(31,'Anexo @ANEXO@ removido do documento @DOCUMENTO@.','N','N','S','N','N',NULL),(32,'Processo remetido pela unidade @UNIDADE@','S','S','N','N','N',NULL),(33,'Exclusão do documento @DOCUMENTO@','N','S','S','N','N',NULL),(34,'Processo inserido no bloco @BLOCO@','N','S','S','N','S',NULL),(35,'Documento @DOCUMENTO@ inserido no bloco @BLOCO@','N','S','S','N','S',NULL),(36,'Processo retirado do bloco @BLOCO@','N','S','S','N','S',NULL),(37,'Documento @DOCUMENTO@ retirado do bloco @BLOCO@','N','S','S','N','S',NULL),(38,'Bloco @BLOCO@ disponibilizado para unidade @UNIDADE@','N','S','S','N','S',NULL),(39,'Cancelada disponibilização do bloco @BLOCO@ para a unidade @UNIDADE@','N','S','S','N','S',NULL),(40,'Bloco @BLOCO@ retornado para a unidade @UNIDADE@','N','S','S','N','S',NULL),(41,'Conclusão automática de processo na unidade','N','N','S','S','N',NULL),(42,'Sobrestando o processo @PROCESSO@.\r\n@MOTIVO@','S','S','S','N','N',NULL),(43,'Sobrestado com vínculo ao processo @PROCESSO@.\r\n@MOTIVO@','S','S','S','N','N',NULL),(44,'Deixou de sobrestar o processo @PROCESSO@','S','S','S','N','N',NULL),(45,'Deixou de estar sobrestado ao processo @PROCESSO@','S','S','S','N','N',NULL),(47,'Cancelado agendamento de @MOTIVO@ do documento @DOCUMENTO@ no veículo @VEICULO@ de @DATA@','N','S','S','N','N',NULL),(48,'Processo recebido na unidade','S','S','S','N','N',NULL),(50,'Disponibilizado acesso externo para @DESTINATARIO_NOME@ (@DESTINATARIO_EMAIL@)@VALIDADE@.@VISUALIZACAO@\n@MOTIVO@','S','S','S','N','N',NULL),(51,'Cancelado documento @DOCUMENTO@.\r\n@MOTIVO@','N','S','S','N','N',NULL),(52,'Disponibilizado acesso externo para @INTERESSADO@','N','N','S','N','S',NULL),(53,'Documento @DOCUMENTO@ recebido para arquivamento','N','S','S','N','S',NULL),(54,'Cancelado recebimento do documento @DOCUMENTO@ para arquivamento','N','S','S','N','S',NULL),(55,'Solicitado desarquivamento do documento @DOCUMENTO@','N','S','S','N','S',NULL),(56,'Cancelada solicitação de desarquivamento do documento @DOCUMENTO@','N','S','S','N','S',NULL),(57,'Processo atribuído para @USUARIO@','N','S','S','N','N',NULL),(58,'Alterado nível de acesso geral para @NIVEL_ACESSO@','N','S','S','N','S',NULL),(59,'Removida atribuição do processo','N','S','S','N','N',NULL),(60,'Alterada ordem dos protocolos','N','S','S','N','N',NULL),(61,'Credencial concedida para o usuário @USUARIO@','S','S','N','N','N',NULL),(62,'Processo recebido','S','S','S','N','N',NULL),(63,'Processo concluído','S','S','S','S','N',NULL),(64,'Reabertura do processo','S','S','S','N','N',NULL),(65,'@DESCRICAO@','S','S','S','N','N',NULL),(66,'Transferida credencial para o usuário @USUARIO@','S','S','N','N','N',NULL),(67,'Credencial concedida para o usuário @USUARIO@ (cassada em @DATA_HORA@)','S','S','S','N','N',NULL),(68,'Transferida credencial para o usuário @USUARIO@ (cassada em @DATA_HORA@)','S','S','S','N','N',NULL),(69,'Cassada credencial do usuário @USUARIO@','S','S','S','N','N',NULL),(70,'Conclusão Automática de Processo do Usuário @USUARIO@','N','N','N','S','N',NULL),(71,'Credencial concedida para o usuário @USUARIO@ (anulada em @DATA_HORA@)','S','S','S','N','N',NULL),(72,'Transferida credencial para o usuário @USUARIO@ (anulada em @DATA_HORA@)','S','S','S','N','N',NULL),(73,'Concedida credencial de assinatura no documento @DOCUMENTO@ para o usuário @USUARIO@','S','S','N','N','N',NULL),(74,'Cassada credencial de assinatura no documento @DOCUMENTO@ do usuário @USUARIO@','S','S','S','N','N',NULL),(75,'Concedida credencial de assinatura no documento @DOCUMENTO@ para o usuário @USUARIO@ (cassada em @DATA_HORA@)','S','S','S','N','N',NULL),(76,'Concedida credencial de assinatura no documento @DOCUMENTO@ para o usuário @USUARIO@ (anulada por @USUARIO_ANULACAO@ em @DATA_HORA@)','S','S','S','N','N',NULL),(77,'Renúncia de credencial','S','S','S','S','N',NULL),(78,'Renúncia de credencial (anulada por @USUARIO_ANULACAO@ em @DATA_HORA@)','S','S','S','N','N',NULL),(79,'Credencial concedida para o usuário @USUARIO@ (renunciada em @DATA_HORA@)','S','S','S','N','N',NULL),(80,'Transferida credencial para o usuário @USUARIO@ (renunciada em @DATA_HORA@)','N','S','S','N','N',NULL),(81,'Concedida credencial de assinatura no documento @DOCUMENTO@ para o usuário @USUARIO@ (utilizada em @DATA_HORA@)','S','S','S','N','N',NULL),(82,'Ciência no processo','N','S','S','N','N',NULL),(83,'Ciência no documento @DOCUMENTO@','N','S','S','N','N',NULL),(84,'Documento(s) #DOCUMENTOS# enviado(s) para notificação de #USUARIOS#. Início do prazo em @DATA_INICIO@ finalizando em @DATA_FIM@.','N','S','N','S','N',NULL),(85,'Usuário @USUARIO@ notificado em @DATA@ no(s) documento(s) #DOCUMENTOS#.','N','S','N','S','N',NULL),(86,'Liberada assinatura externa para o usuário @USUARIO_EXTERNO_NOME@ (@USUARIO_EXTERNO_SIGLA@) no documento @DOCUMENTO@@VALIDADE@.@VISUALIZACAO@','S','S','S','N','N',NULL),(87,'Cancelada liberação de assinatura externa para o usuário @USUARIO_EXTERNO_NOME@ (@USUARIO_EXTERNO_SIGLA@) no documento @DOCUMENTO@.\r\n@MOTIVO@','S','S','S','N','N',NULL),(88,'Liberada assinatura externa para o usuário @USUARIO_EXTERNO_NOME@ (@USUARIO_EXTERNO_SIGLA@) no documento @DOCUMENTO@@VALIDADE@.@VISUALIZACAO@\n(cancelada por @USUARIO@ em @DATA_HORA@)','S','S','S','N','N',NULL),(89,'Disponibilizado acesso externo para @DESTINATARIO_NOME@ (@DESTINATARIO_EMAIL@)@VALIDADE@.@VISUALIZACAO@\n@MOTIVO@\n(cancelada por @USUARIO@ em @DATA_HORA@)','S','S','S','N','N',NULL),(90,'Cancelada disponibilização de acesso externo para @DESTINATARIO_NOME@ (@DESTINATARIO_EMAIL@).\r\n@MOTIVO@','S','S','S','N','S',NULL),(95,'Conclusão do bloco @BLOCO@','N','S','S','N','S',NULL),(96,'Reabertura do bloco @BLOCO@','N','S','S','N','S',NULL),(97,'Término do prazo para notificação de #USUARIOS# no(s) documento(s) #DOCUMENTOS# em @DATA@.','N','S','N','S','N',NULL),(98,'Solicitação Atendida','S','S','S','N','S',NULL),(99,'Solicitação não Atendida','S','S','S','N','S',NULL),(100,'Cancelada Sinalização de Atendimento','S','S','S','N','S',NULL),(101,'Processo @PROCESSO@ anexado','S','S','S','N','N',NULL),(102,'Anexado ao processo @PROCESSO@','S','S','S','N','N',NULL),(103,'Processo @PROCESSO@ desanexado.\r\n@MOTIVO@','S','S','S','N','N',NULL),(104,'Desanexado do processo @PROCESSO@.\r\n@MOTIVO@','S','S','S','N','N',NULL),(105,'Alterado nível de acesso do processo para @NIVEL_ACESSO@','N','S','S','N','N',NULL),(106,'Alterado grau de sigilo do processo para @GRAU_SIGILO@','N','S','S','N','N',NULL),(107,'Alterada hipótese legal do processo para @HIPOTESE_LEGAL@','N','S','S','N','N',NULL),(108,'Alterado nível de acesso do documento @DOCUMENTO@ para @NIVEL_ACESSO@','N','S','S','N','N',NULL),(109,'Alterado grau de sigilo do documento @DOCUMENTO@ para @GRAU_SIGILO@','N','S','S','N','N',NULL),(110,'Alterada hipótese legal do documento @DOCUMENTO@ para @HIPOTESE_LEGAL@','N','S','S','N','N',NULL),(111,'Alterado tipo de conferência do documento @DOCUMENTO@ para @TIPO_CONFERENCIA@','N','S','S','N','N',NULL),(112,'Ciência no processo anexado @PROCESSO@','N','S','S','N','N',NULL),(113,'Documento @DOCUMENTO@ movido para o processo @PROCESSO@.\r\n@MOTIVO@','N','S','S','N','N',NULL),(114,'Documento @DOCUMENTO@ movido do processo @PROCESSO@.\r\n@MOTIVO@','N','S','S','N','N',NULL),(115,'Autenticado Documento @DOCUMENTO@ por @USUARIO@','N','S','S','N','N',NULL),(116,'Cancelamento de autenticação do documento @DOCUMENTO@','N','S','S','N','N',NULL),(117,'Cancelamento de credencial por Coordenador de Acervo do usuário @USUARIO@ na unidade','S','S','N','S','S',NULL),(118,'Ativação de credencial por Coordenador de Acervo para o usuário @USUARIO@','S','S','N','N','S',NULL),(119,'Ativação de credencial por Coordenador de Acervo para o usuário @USUARIO@ (cassada em @DATA_HORA@)','S','S','S','N','N',NULL),(120,'Ativação de credencial por Coordenador de Acervo para o usuário @USUARIO@ (anulada em @DATA_HORA@)','S','S','S','N','N',NULL),(121,'Ativação de credencial por Coordenador de Acervo para o usuário @USUARIO@ (renunciada em @DATA_HORA@)','S','S','S','N','N',NULL),(122,'Processo bloqueado','N','S','S','N','N',NULL),(123,'Processo desbloqueado','N','S','S','N','N',NULL),(124,'Correção de encaminhamento para @ORGAO@ (@PROCESSO@)','S','S','S','N','N',NULL),(125,'Cancelado arquivamento do documento @DOCUMENTO@ no localizador @LOCALIZADOR@','N','S','N','S','S',NULL),(126,'Alterado tipo do processo de \"@TIPO_PROCESSO_ANTERIOR@\" para \"@TIPO_PROCESSO_ATUAL@\"','N','S','S','N','N',NULL),(127,'Renovada credencial do usuário @USUARIO@\"','S','S','N','N','N',NULL),(128,'Alterado número do processo de \"@PROTOCOLO_ANTERIOR@\" para \"@PROTOCOLO_ATUAL@\"','N','S','S','N','N',NULL),(129,'Alterada data de autuação do processo de \"@DATA_ANTERIOR@\" para \"@DATA_ATUAL@\"','N','S','S','N','N',NULL),(134,'Processo enviado para @ORGAO_DESTINATARIO@ por @ORGAO_REMETENTE@\n@MOTIVO@','S','S','S','N','N',NULL),(135,'Processo enviado para @ORGAO_DESTINATARIO@ por @ORGAO_REMETENTE@\n@MOTIVO@\n(cancelado por @USUARIO@ em @DATA_HORA@)','S','S','S','N','N',NULL),(136,'Cancelado envio para @ORGAO_DESTINATARIO@ por @ORGAO_REMETENTE@\n@MOTIVO@','S','S','S','N','N',NULL); +/*!40000 ALTER TABLE `tarefa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tarefa_instalacao` +-- + +DROP TABLE IF EXISTS `tarefa_instalacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tarefa_instalacao` ( + `id_tarefa_instalacao` int(11) NOT NULL, + `nome` varchar(250) NOT NULL, + PRIMARY KEY (`id_tarefa_instalacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tarefa_instalacao` +-- + +LOCK TABLES `tarefa_instalacao` WRITE; +/*!40000 ALTER TABLE `tarefa_instalacao` DISABLE KEYS */; +INSERT INTO `tarefa_instalacao` VALUES (1,'Recebida solicitação de registro de @INSTITUICAO@'),(2,'Enviada solicitação de registro para @INSTITUICAO@'),(3,'Recebida de @INSTITUICAO@ solicitação de replicação de registro de @INSTITUICAO_REPLICADA@'),(4,'Enviada para @INSTITUICAO@ solicitação de replicação de registro de @INSTITUICAO_REPLICADA@'),(5,'Liberação enviada para @INSTITUICAO@'),(6,'Bloqueio enviado para @INSTITUICAO@'),(7,'Desativada'),(8,'Reativada'),(9,'Alterado endereço para @ENDERECO@'),(10,'Liberação recebida de @INSTITUICAO@'),(11,'Bloqueio recebido de @INSTITUICAO@'); +/*!40000 ALTER TABLE `tarefa_instalacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tarja_assinatura` +-- + +DROP TABLE IF EXISTS `tarja_assinatura`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tarja_assinatura` ( + `id_tarja_assinatura` int(11) NOT NULL, + `texto` longtext NOT NULL, + `logo` longtext, + `sin_ativo` char(1) NOT NULL, + `sta_tarja_assinatura` char(1) NOT NULL, + PRIMARY KEY (`id_tarja_assinatura`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tarja_assinatura` +-- + +LOCK TABLES `tarja_assinatura` WRITE; +/*!40000 ALTER TABLE `tarja_assinatura` DISABLE KEYS */; +INSERT INTO `tarja_assinatura` VALUES (1,'
@logo_assinatura@

Documento assinado eletronicamente por @nome_assinante@, @tratamento_assinante@, em @data_assinatura@, às @hora_assinatura@, conforme horário oficial de Brasília, com o emprego de certificado digital emitido no âmbito da ICP-Brasil, com fundamento no art. 6º, caput, do Decreto nº 8.539, de 8 de outubro de 2015.
Nº de Série do Certificado: @numero_serie_certificado_digital@

','iVBORw0KGgoAAAANSUhEUgAAAFkAAAA8CAMAAAA67OZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADTtpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMi4yLWMwNjMgNTMuMzUyNjI0LCAyMDA4LzA3LzMwLTE4OjEyOjE4ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6eG1wUmlnaHRzPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvcmlnaHRzLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOklwdGM0eG1wQ29yZT0iaHR0cDovL2lwdGMub3JnL3N0ZC9JcHRjNHhtcENvcmUvMS4wL3htbG5zLyIKICAgeG1wUmlnaHRzOldlYlN0YXRlbWVudD0iIgogICBwaG90b3Nob3A6QXV0aG9yc1Bvc2l0aW9uPSIiPgogICA8ZGM6cmlnaHRzPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6cmlnaHRzPgogICA8ZGM6Y3JlYXRvcj4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGk+QWxiZXJ0byBCaWdhdHRpPC9yZGY6bGk+CiAgICA8L3JkZjpTZXE+CiAgIDwvZGM6Y3JlYXRvcj4KICAgPGRjOnRpdGxlPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6dGl0bGU+CiAgIDx4bXBSaWdodHM6VXNhZ2VUZXJtcz4KICAgIDxyZGY6QWx0PgogICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCIvPgogICAgPC9yZGY6QWx0PgogICA8L3htcFJpZ2h0czpVc2FnZVRlcm1zPgogICA8SXB0YzR4bXBDb3JlOkNyZWF0b3JDb250YWN0SW5mbwogICAgSXB0YzR4bXBDb3JlOkNpQWRyRXh0YWRyPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDaXR5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJSZWdpb249IiIKICAgIElwdGM0eG1wQ29yZTpDaUFkclBjb2RlPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDdHJ5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lUZWxXb3JrPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lFbWFpbFdvcms9IiIKICAgIElwdGM0eG1wQ29yZTpDaVVybFdvcms9IiIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+RO84nQAAAwBQTFRFamts+fn5mp6hc3Nz9fX1U1NTS0tKnaGk6unqzM3P7e3u8fHxuLm7/Pz8lZmc2dnZxcXGWlpavr29wsLCp6eniYmKhYaGZWZmkpaZ0dHS5eXlkZGSrq2utbW2XV1d4uHhfX1+sbGy1dXW3d3dqampgYGCjY2OyMnKYWJihYaIjY6RnZ2ejpGSra+xeHl7lZWVmJiYgoKFpKaptre5vb7Aurq8oaGikpSWmJufh4iKkZKVysrMtrq7ioyOdXZ4fn+ArrGywcLEzc7QiYqMt7W1/v/8mZqcxsbIpqqrZGFhztDSeXp7iIWGnJqalJKSf4CCg4B/amZmoaSm5+fmvLy6ys3OzMzL2tze3dzaa2hny8nH0M7NiYiGbG5v19jYWFVVcG5s2drcxMTD0dPUx8jJ/P79sbO1j46OmZWU1dfXhIKC1NLTd3h68fL0wsTGb3By+vf3YV1d2NjW7u7u6Ojpe3x9fHp54eLkxMLAvLq5/f39+vr63t7fXFtamZiW6urqzMnKwL+98PHvrKytq6qq7evpr62toKKkvr/BOzk42dvad3V06OjmpaSj5efnnZyblpWT/fz6ZWZo9/f3jYyKqquteXd47u3rhYSC5eTisbCueXh2qaimWlhXjImIY2Bfc3Bw////UFBP/v7+/v////7///3+g4SHaGlpYmNj8vPzZ2dn/vz9WFhYtbO0ztDPWltbbW9u/v7/xcPEiouLrayq4+Tms7S2VldX7/DyqKel+/z++Pj4+ff4cXBuuru7u7y+7+/vx8fH8/HysK+wXFxc/fv8s7OztrWzZWRio6Ohl5eZ1NTUZGRkraus2NbX4N/d0dDP3dzc9ff14ODg9/n4oaCg4eHf+/v76+vrQD4+7Ozs/f3/7evsRUJCvLy87vDtysvLXl9fzczNwsPDYGBgw7+/ysjJgH19gH9/29rbwMC/Tk1MlJCPoaCeX1tb6ufo4uPjx8fF5OPht7e3X15cuLe4tLKzn56f09TW1dXTYWJkh4eHZGJj3+Diq6urXLJJJAAAC8BJREFUeNqsmAtYE1cWgAcmJLwSwjMJAYxiQhIeITyEgCGiAioCaiqWaoCiFQVKtgWsJFRapEpFatuodetKHYaQkIiipZVWqqBQ64OqrduGuquVR1sDu62u69JdW/fOZCCJovjttyffl9yZ3PvfM2fOOffcC6UgJ1a5R1GeJI6OjvHx8TQgTCYzLiEsTCgU8qRSQcaN4VNsWWpsndep7u7u2NhY9+7UkpKSJFnqkApBIOTrufFgJDb2MUIQ4xLYAMnjSRf4+koEAoGupLcMdQtVRBs0JA3JImovpVKpUED6SAMCnZhLo1Dmrlzp8hhJxCQkJGRdGhA6nV5aWjrs7T08nJw8Ono6hD7aXZd2ml5ALygoGAb33QPvBs68ACsZIjXkAcBLmpH/RVC7H7xlaZ86qmTcgY47UsKbEW3LU4Mmx9tTJwWYGJFAeh4URXGc2/yUCqJTaGrLRlFi3khIAUMUCxl9Kjj4qFQo1WYeC27ie6KjSK+AMHIsuDu92qpq8wCK+P+6cdasGvRRM6G21yI9hJPdn+Z1vTCfJvZlNccIgQt6IIj2iZ0zjY+Q0SnfGvZ921EiMC645kKjxNOen06NTMaTdH5oklwhl8OHdyyhUWgJudOS+yG9HRl9RGWrzm/FKfRNHYZEWnyCdON0ZHa/Xv8kO9u9FJSlY3DNzclMmtD34rTkVr1xajKKpFgaVIcu9URkkKq7EFW3MEEiZk1L5hsfJqtfrP74lXK3LhTDqQy/r+uOTX7egIUVKbhKvmOGQ7dEKpaxpvN/Np/BsLdzWeJWkDMpi+reAv5NNftIsjjpEekXLgJ0bgUDapf2JIsFnIgj0+o8YkMGuQMtX8SkgbTpyGTSEcTkIuX6CsTcLJkyAlzmRvD1nR1lXhXcJNjl4fTxsBSO9Pfb6IwaFjG3UxxXrKDQHF9B0F+lAp5AOH5BnM5RyF5Gnk9vVbR3lMUmVcBHb05lDXwm4nbhYH/rJBmY1QWAKe65q+avX09CB1LFPMF4VZchWQxH6MdR834+1OZbFg0nKfQhdo5Dch0YcHYu7zFZ/Yk3yG+10blrHo3iGK4G/1JdUWoal6eLm4Hli25FEsSZcTVp0Nh5v+w4BBtbT9u4peFITF1dTMyN7ple8kkD8YL4fCv5mGZRPIWynhjRM0cs0bljHY9VySDo6OmP69sZTvfLZr6raA2iW5+/pjSKsvb34FWrqrZXsM0TobY7iD9iq3N4PLDyuhfxQTMWSHSSdSiJZHCokjIUrXdvw56tTX6uvXx9X9vwpM7Hopes2h7uHh14/LhIEiF0Jf7Y3TcyaGNndSITXDAD1oL/UVaWRCcIDZ8d1eATWgFBg1uD4c4RcpHrg3Z+Z97w5Bv7mFI3b3ag+73AwMAGXwFcSrWQO9oHrWTQ75M9NEdHmlAYdaRLlVYh0GUlgVXY2M+Ajur7onJhp0FA9ukMcsLJ+HM3r3WUht0mgixUnBTVRZA9bcmgc3k4M4FJCxNIujXrSnRiTokSLA16Bn8waGzcA27qI+9znUNuc3LyBp0t4b8yXrjiE2L4VhkcqrE0fduCgmysAeQT+oowaUKYQJecXcLlyETbx0NDIyNFIrZvmhkCZL9rqdedxsijk2QXmnROGUHew1FSSBPkwT47ncHK4UwPFUil4oQbHE4JJw3RdHVpcEGK9WN9ZG519vjs83OCJ1VxuSChlFmax/ZUKLdP6NzZ5/lIrnvh9rhOIpb0LigpgWfa+G0xoymILCt/KO7qhIK4UtYQVuzMT4AhHuEckjxPTxtrEM5IXVKhyxK4z1FEKGWzrOVAsbGpncypPrG2O61nYj6VSxxPKJX4+XFlsor0iJIkRUbPo2SAHPDH0qU6OV3HEbMS34WVUBa9vMvk0ONxcwC5aAR25pYvYQqSomoIdHXc9vmzWNnZiUNHbp6mh4TcPB9UgPvdfSc7skN0agzL7FEnzBKXSNxqeIPw0X6935ZQkS/EGEZYmM5+ueESiQJiEY/isSARxZ8UdbCULLf7A9TYtZ892ZCqE0jZPLFMXAIHHkNyZUFGqLU9z8mpiUz2QS7qgZ0lG1ekVwwGzSfywyrpOrwhj5L0GrCGf384npcIcny05dleEesEYhmHE6FMegC8R2Vm97e1tXViYPIu5Erbd+Q395bHQJ1kdg9R+ezwpWP2+0sql62IVYPprvID1FayI0FGetzHpTpAFqSmGfBnqykY58IKCL7FPvsVMkPkx/ZrMJBOZdZWEzlNtUNQipEN6RdmKSOBMujVwQdWMohnQmeE6hzMCkk8Eoy7vhYb3SU35+Z+Jce81ERyc6shqRCVxpqHPcSlKqwRKhNCoyYsjwXZkwMfrYhQrdam4kBtVyfU2jtXh+mMojWi/4Tj0VfVNwV5wp/BF6CabhSqrfUm+tln9lMT9Fxusgq/2Ws047/BbbU25HjacaK/CWO3oGhKi4n64zcqAnZIiw5EHp7QFEsXVCoB3wjiH7ea+0l/vK+8rcFhkhwfz7SsI2UiTuOlzxcWRbpd2VcYXDx+5nDGT2zDQObezKob3x34MGSraX7tzoLdmffG6wu/smi9sWS9BqWaTIj/SoMJ+50/5mOa9Od4moWM9Cz02r9JPpZhvpoPm3cG5LgeXJzh+aXmVOXBwtU/wzPG8x1q859dQ/7mtTs/LM50sEQAO4nH5nV0SDo6/Li3blVwRposRQ5OTqXFncW7/Xlh5smcr/curjS8nfcnUu1yZ/jtmk085HDm4qVvbArVhsLUXtjMLULdvsjIW2qw2OZqQ0eH732/fUXcW6Dk2Qune1mmtCNTh/NW716c0rOtafM7r3+w695y5/pxTdHu0Zw7t5a9AW/R7jK+tyUneFkm4nPyuYNFZyYqgoGBakxAVVBeLpdfI14HTqbR4nBrqH68viY/p3rpTwfunN/00vszR+T5W7r276aP7ftg2R8av/sh22nxq3Dwpkbko7w1efvcpq7iJ27h5AvMhHmW6V9beKRYQ194STMUkK3xH3JgVakuehxaXfmcBzJj5iztjwuHzGcumRFSQWVBlRqx2wXZxYKVHEYk+BbcFVuaX9CasLSAZ4bmQ+oW0L25GbW6MVX1GE2tgpNFcWHzrNO5iR5YulJVzRjboXd5LbEJHe2oslHv2BRA1J4cFxcWbg2sayd5WLPlzDe7QEy0IN9v/sKbZFG/+MtyEJ1EtKOP6os+rPMEGVF/eHDT6jP1mSnPHFz2cvb1po8ub2k8//Xfzq35x19rRQc3vDOU8d7Oxg+e8WjMKfRHp96IoXZ2jgsThuO9nv353vv/lHM2fPuS16fL/52zfEfBdU7Blpy6+qWXc/K3BHlXnnyZnV97h5V959zfU560H8QiBVsHE9jScGwuauX1xv2d5qK3R683wucuFxaleB0I/jZnA7ItZ3P9pzvza73g1+HzKSnv1S4dy6BOs43G10FA3ooZjup1/crOPzrvFXmTL/3yS/WyZSleL8nlOY0p53Oy92/7Hv7Iq35zfkbKO0s3FednTkO2WCNMKN2Kvxb5b78tTehRFrr+zCjaRY18s+HGgatow1iO57bL/bU9xk8rzz3bQH61IXPxMvIG6jRnCvcJ8h7LPed7hz3QWVVa/38trEJcn2H1DGkQUvb7qxFSsVx90f8ai6ShH/Ynfeh95bZqmvMK3M5Coe8eyyvVfq5WYYs8SlXjDo2AK0SlPgS8D7QRVIVlZrSZapr+xMLiG1LJnscnAIsrt9itUehjDmNsROLUxod8BJJQ1HYQShx1aK1orR1IO/2RRX2nUwW0VrxAQkf+vxLQ6Tl2AzoxO0si8ekG26OYmG7sQK/S3f3evbt3o6MDwebj7NmzMzHpBRIQELAVyIPa2trZPk+SfZ6eZD8HCCHNlnFBLSnjVIByEtSTQGAYVlqO9EDJrzcaGYz+Vj6fPzIY1Nfe7gnqpk5Qkz1WmpyamvxqECgFURX78HQ6MdgHZ+F8vF618MEER5VHIWwCI5igH5tgEEhfu+cTpN/PGzj8fwUYAEHf/4ET3ikCAAAAAElFTkSuQmCC','S','C'),(2,'
@logo_assinatura@

Documento assinado eletronicamente por @nome_assinante@, @tratamento_assinante@, em @data_assinatura@, às @hora_assinatura@, conforme horário oficial de Brasília, com fundamento no art. 6º, § 1º, do Decreto nº 8.539, de 8 de outubro de 2015.

','iVBORw0KGgoAAAANSUhEUgAAAFkAAAA8CAMAAAA67OZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADTtpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMi4yLWMwNjMgNTMuMzUyNjI0LCAyMDA4LzA3LzMwLTE4OjEyOjE4ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6eG1wUmlnaHRzPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvcmlnaHRzLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOklwdGM0eG1wQ29yZT0iaHR0cDovL2lwdGMub3JnL3N0ZC9JcHRjNHhtcENvcmUvMS4wL3htbG5zLyIKICAgeG1wUmlnaHRzOldlYlN0YXRlbWVudD0iIgogICBwaG90b3Nob3A6QXV0aG9yc1Bvc2l0aW9uPSIiPgogICA8ZGM6cmlnaHRzPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6cmlnaHRzPgogICA8ZGM6Y3JlYXRvcj4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGk+QWxiZXJ0byBCaWdhdHRpPC9yZGY6bGk+CiAgICA8L3JkZjpTZXE+CiAgIDwvZGM6Y3JlYXRvcj4KICAgPGRjOnRpdGxlPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6dGl0bGU+CiAgIDx4bXBSaWdodHM6VXNhZ2VUZXJtcz4KICAgIDxyZGY6QWx0PgogICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCIvPgogICAgPC9yZGY6QWx0PgogICA8L3htcFJpZ2h0czpVc2FnZVRlcm1zPgogICA8SXB0YzR4bXBDb3JlOkNyZWF0b3JDb250YWN0SW5mbwogICAgSXB0YzR4bXBDb3JlOkNpQWRyRXh0YWRyPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDaXR5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJSZWdpb249IiIKICAgIElwdGM0eG1wQ29yZTpDaUFkclBjb2RlPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDdHJ5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lUZWxXb3JrPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lFbWFpbFdvcms9IiIKICAgIElwdGM0eG1wQ29yZTpDaVVybFdvcms9IiIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+RO84nQAAAwBQTFRFamts+fn5mp6hc3Nz9fX1U1NTS0tKnaGk6unqzM3P7e3u8fHxuLm7/Pz8lZmc2dnZxcXGWlpavr29wsLCp6eniYmKhYaGZWZmkpaZ0dHS5eXlkZGSrq2utbW2XV1d4uHhfX1+sbGy1dXW3d3dqampgYGCjY2OyMnKYWJihYaIjY6RnZ2ejpGSra+xeHl7lZWVmJiYgoKFpKaptre5vb7Aurq8oaGikpSWmJufh4iKkZKVysrMtrq7ioyOdXZ4fn+ArrGywcLEzc7QiYqMt7W1/v/8mZqcxsbIpqqrZGFhztDSeXp7iIWGnJqalJKSf4CCg4B/amZmoaSm5+fmvLy6ys3OzMzL2tze3dzaa2hny8nH0M7NiYiGbG5v19jYWFVVcG5s2drcxMTD0dPUx8jJ/P79sbO1j46OmZWU1dfXhIKC1NLTd3h68fL0wsTGb3By+vf3YV1d2NjW7u7u6Ojpe3x9fHp54eLkxMLAvLq5/f39+vr63t7fXFtamZiW6urqzMnKwL+98PHvrKytq6qq7evpr62toKKkvr/BOzk42dvad3V06OjmpaSj5efnnZyblpWT/fz6ZWZo9/f3jYyKqquteXd47u3rhYSC5eTisbCueXh2qaimWlhXjImIY2Bfc3Bw////UFBP/v7+/v////7///3+g4SHaGlpYmNj8vPzZ2dn/vz9WFhYtbO0ztDPWltbbW9u/v7/xcPEiouLrayq4+Tms7S2VldX7/DyqKel+/z++Pj4+ff4cXBuuru7u7y+7+/vx8fH8/HysK+wXFxc/fv8s7OztrWzZWRio6Ohl5eZ1NTUZGRkraus2NbX4N/d0dDP3dzc9ff14ODg9/n4oaCg4eHf+/v76+vrQD4+7Ozs/f3/7evsRUJCvLy87vDtysvLXl9fzczNwsPDYGBgw7+/ysjJgH19gH9/29rbwMC/Tk1MlJCPoaCeX1tb6ufo4uPjx8fF5OPht7e3X15cuLe4tLKzn56f09TW1dXTYWJkh4eHZGJj3+Diq6urXLJJJAAAC8BJREFUeNqsmAtYE1cWgAcmJLwSwjMJAYxiQhIeITyEgCGiAioCaiqWaoCiFQVKtgWsJFRapEpFatuodetKHYaQkIiipZVWqqBQ64OqrduGuquVR1sDu62u69JdW/fOZCCJovjttyffl9yZ3PvfM2fOOffcC6UgJ1a5R1GeJI6OjvHx8TQgTCYzLiEsTCgU8qRSQcaN4VNsWWpsndep7u7u2NhY9+7UkpKSJFnqkApBIOTrufFgJDb2MUIQ4xLYAMnjSRf4+koEAoGupLcMdQtVRBs0JA3JImovpVKpUED6SAMCnZhLo1Dmrlzp8hhJxCQkJGRdGhA6nV5aWjrs7T08nJw8Ono6hD7aXZd2ml5ALygoGAb33QPvBs68ACsZIjXkAcBLmpH/RVC7H7xlaZ86qmTcgY47UsKbEW3LU4Mmx9tTJwWYGJFAeh4URXGc2/yUCqJTaGrLRlFi3khIAUMUCxl9Kjj4qFQo1WYeC27ie6KjSK+AMHIsuDu92qpq8wCK+P+6cdasGvRRM6G21yI9hJPdn+Z1vTCfJvZlNccIgQt6IIj2iZ0zjY+Q0SnfGvZ921EiMC645kKjxNOen06NTMaTdH5oklwhl8OHdyyhUWgJudOS+yG9HRl9RGWrzm/FKfRNHYZEWnyCdON0ZHa/Xv8kO9u9FJSlY3DNzclMmtD34rTkVr1xajKKpFgaVIcu9URkkKq7EFW3MEEiZk1L5hsfJqtfrP74lXK3LhTDqQy/r+uOTX7egIUVKbhKvmOGQ7dEKpaxpvN/Np/BsLdzWeJWkDMpi+reAv5NNftIsjjpEekXLgJ0bgUDapf2JIsFnIgj0+o8YkMGuQMtX8SkgbTpyGTSEcTkIuX6CsTcLJkyAlzmRvD1nR1lXhXcJNjl4fTxsBSO9Pfb6IwaFjG3UxxXrKDQHF9B0F+lAp5AOH5BnM5RyF5Gnk9vVbR3lMUmVcBHb05lDXwm4nbhYH/rJBmY1QWAKe65q+avX09CB1LFPMF4VZchWQxH6MdR834+1OZbFg0nKfQhdo5Dch0YcHYu7zFZ/Yk3yG+10blrHo3iGK4G/1JdUWoal6eLm4Hli25FEsSZcTVp0Nh5v+w4BBtbT9u4peFITF1dTMyN7ple8kkD8YL4fCv5mGZRPIWynhjRM0cs0bljHY9VySDo6OmP69sZTvfLZr6raA2iW5+/pjSKsvb34FWrqrZXsM0TobY7iD9iq3N4PLDyuhfxQTMWSHSSdSiJZHCokjIUrXdvw56tTX6uvXx9X9vwpM7Hopes2h7uHh14/LhIEiF0Jf7Y3TcyaGNndSITXDAD1oL/UVaWRCcIDZ8d1eATWgFBg1uD4c4RcpHrg3Z+Z97w5Bv7mFI3b3ag+73AwMAGXwFcSrWQO9oHrWTQ75M9NEdHmlAYdaRLlVYh0GUlgVXY2M+Ajur7onJhp0FA9ukMcsLJ+HM3r3WUht0mgixUnBTVRZA9bcmgc3k4M4FJCxNIujXrSnRiTokSLA16Bn8waGzcA27qI+9znUNuc3LyBp0t4b8yXrjiE2L4VhkcqrE0fduCgmysAeQT+oowaUKYQJecXcLlyETbx0NDIyNFIrZvmhkCZL9rqdedxsijk2QXmnROGUHew1FSSBPkwT47ncHK4UwPFUil4oQbHE4JJw3RdHVpcEGK9WN9ZG519vjs83OCJ1VxuSChlFmax/ZUKLdP6NzZ5/lIrnvh9rhOIpb0LigpgWfa+G0xoymILCt/KO7qhIK4UtYQVuzMT4AhHuEckjxPTxtrEM5IXVKhyxK4z1FEKGWzrOVAsbGpncypPrG2O61nYj6VSxxPKJX4+XFlsor0iJIkRUbPo2SAHPDH0qU6OV3HEbMS34WVUBa9vMvk0ONxcwC5aAR25pYvYQqSomoIdHXc9vmzWNnZiUNHbp6mh4TcPB9UgPvdfSc7skN0agzL7FEnzBKXSNxqeIPw0X6935ZQkS/EGEZYmM5+ueESiQJiEY/isSARxZ8UdbCULLf7A9TYtZ892ZCqE0jZPLFMXAIHHkNyZUFGqLU9z8mpiUz2QS7qgZ0lG1ekVwwGzSfywyrpOrwhj5L0GrCGf384npcIcny05dleEesEYhmHE6FMegC8R2Vm97e1tXViYPIu5Erbd+Q395bHQJ1kdg9R+ezwpWP2+0sql62IVYPprvID1FayI0FGetzHpTpAFqSmGfBnqykY58IKCL7FPvsVMkPkx/ZrMJBOZdZWEzlNtUNQipEN6RdmKSOBMujVwQdWMohnQmeE6hzMCkk8Eoy7vhYb3SU35+Z+Jce81ERyc6shqRCVxpqHPcSlKqwRKhNCoyYsjwXZkwMfrYhQrdam4kBtVyfU2jtXh+mMojWi/4Tj0VfVNwV5wp/BF6CabhSqrfUm+tln9lMT9Fxusgq/2Ws047/BbbU25HjacaK/CWO3oGhKi4n64zcqAnZIiw5EHp7QFEsXVCoB3wjiH7ea+0l/vK+8rcFhkhwfz7SsI2UiTuOlzxcWRbpd2VcYXDx+5nDGT2zDQObezKob3x34MGSraX7tzoLdmffG6wu/smi9sWS9BqWaTIj/SoMJ+50/5mOa9Od4moWM9Cz02r9JPpZhvpoPm3cG5LgeXJzh+aXmVOXBwtU/wzPG8x1q859dQ/7mtTs/LM50sEQAO4nH5nV0SDo6/Li3blVwRposRQ5OTqXFncW7/Xlh5smcr/curjS8nfcnUu1yZ/jtmk085HDm4qVvbArVhsLUXtjMLULdvsjIW2qw2OZqQ0eH732/fUXcW6Dk2Qune1mmtCNTh/NW716c0rOtafM7r3+w695y5/pxTdHu0Zw7t5a9AW/R7jK+tyUneFkm4nPyuYNFZyYqgoGBakxAVVBeLpdfI14HTqbR4nBrqH68viY/p3rpTwfunN/00vszR+T5W7r276aP7ftg2R8av/sh22nxq3Dwpkbko7w1efvcpq7iJ27h5AvMhHmW6V9beKRYQ194STMUkK3xH3JgVakuehxaXfmcBzJj5iztjwuHzGcumRFSQWVBlRqx2wXZxYKVHEYk+BbcFVuaX9CasLSAZ4bmQ+oW0L25GbW6MVX1GE2tgpNFcWHzrNO5iR5YulJVzRjboXd5LbEJHe2oslHv2BRA1J4cFxcWbg2sayd5WLPlzDe7QEy0IN9v/sKbZFG/+MtyEJ1EtKOP6os+rPMEGVF/eHDT6jP1mSnPHFz2cvb1po8ub2k8//Xfzq35x19rRQc3vDOU8d7Oxg+e8WjMKfRHp96IoXZ2jgsThuO9nv353vv/lHM2fPuS16fL/52zfEfBdU7Blpy6+qWXc/K3BHlXnnyZnV97h5V959zfU560H8QiBVsHE9jScGwuauX1xv2d5qK3R683wucuFxaleB0I/jZnA7ItZ3P9pzvza73g1+HzKSnv1S4dy6BOs43G10FA3ooZjup1/crOPzrvFXmTL/3yS/WyZSleL8nlOY0p53Oy92/7Hv7Iq35zfkbKO0s3FednTkO2WCNMKN2Kvxb5b78tTehRFrr+zCjaRY18s+HGgatow1iO57bL/bU9xk8rzz3bQH61IXPxMvIG6jRnCvcJ8h7LPed7hz3QWVVa/38trEJcn2H1DGkQUvb7qxFSsVx90f8ai6ShH/Ynfeh95bZqmvMK3M5Coe8eyyvVfq5WYYs8SlXjDo2AK0SlPgS8D7QRVIVlZrSZapr+xMLiG1LJnscnAIsrt9itUehjDmNsROLUxod8BJJQ1HYQShx1aK1orR1IO/2RRX2nUwW0VrxAQkf+vxLQ6Tl2AzoxO0si8ekG26OYmG7sQK/S3f3evbt3o6MDwebj7NmzMzHpBRIQELAVyIPa2trZPk+SfZ6eZD8HCCHNlnFBLSnjVIByEtSTQGAYVlqO9EDJrzcaGYz+Vj6fPzIY1Nfe7gnqpk5Qkz1WmpyamvxqECgFURX78HQ6MdgHZ+F8vF618MEER5VHIWwCI5igH5tgEEhfu+cTpN/PGzj8fwUYAEHf/4ET3ikCAAAAAElFTkSuQmCC','S','S'),(3,'
@qr_code@

A autenticidade deste documento pode ser conferida no site http://[servidor_php]/sei/controlador_externo.php?acao=documento_conferir&id_orgao_acesso_externo=0, informando o código verificador @codigo_verificador@ e o código CRC @crc_assinatura@.



',NULL,'S','V'),(4,'
@logo_assinatura@

Documento autenticado eletronicamente por @nome_assinante@, @tratamento_assinante@, em @data_assinatura@, às @hora_assinatura@, conforme horário oficial de Brasília, com o emprego de certificado digital emitido no âmbito da ICP-Brasil, com fundamento no art. 3º, caput, da Lei nº 12.682, de 9 de julho de 2012, a partir de @tipo_conferencia@.
Nº de Série do Certificado: @numero_serie_certificado_digital@

','iVBORw0KGgoAAAANSUhEUgAAAFkAAAA8CAMAAAA67OZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADTtpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMi4yLWMwNjMgNTMuMzUyNjI0LCAyMDA4LzA3LzMwLTE4OjEyOjE4ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6eG1wUmlnaHRzPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvcmlnaHRzLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOklwdGM0eG1wQ29yZT0iaHR0cDovL2lwdGMub3JnL3N0ZC9JcHRjNHhtcENvcmUvMS4wL3htbG5zLyIKICAgeG1wUmlnaHRzOldlYlN0YXRlbWVudD0iIgogICBwaG90b3Nob3A6QXV0aG9yc1Bvc2l0aW9uPSIiPgogICA8ZGM6cmlnaHRzPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6cmlnaHRzPgogICA8ZGM6Y3JlYXRvcj4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGk+QWxiZXJ0byBCaWdhdHRpPC9yZGY6bGk+CiAgICA8L3JkZjpTZXE+CiAgIDwvZGM6Y3JlYXRvcj4KICAgPGRjOnRpdGxlPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6dGl0bGU+CiAgIDx4bXBSaWdodHM6VXNhZ2VUZXJtcz4KICAgIDxyZGY6QWx0PgogICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCIvPgogICAgPC9yZGY6QWx0PgogICA8L3htcFJpZ2h0czpVc2FnZVRlcm1zPgogICA8SXB0YzR4bXBDb3JlOkNyZWF0b3JDb250YWN0SW5mbwogICAgSXB0YzR4bXBDb3JlOkNpQWRyRXh0YWRyPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDaXR5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJSZWdpb249IiIKICAgIElwdGM0eG1wQ29yZTpDaUFkclBjb2RlPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDdHJ5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lUZWxXb3JrPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lFbWFpbFdvcms9IiIKICAgIElwdGM0eG1wQ29yZTpDaVVybFdvcms9IiIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+RO84nQAAAwBQTFRFamts+fn5mp6hc3Nz9fX1U1NTS0tKnaGk6unqzM3P7e3u8fHxuLm7/Pz8lZmc2dnZxcXGWlpavr29wsLCp6eniYmKhYaGZWZmkpaZ0dHS5eXlkZGSrq2utbW2XV1d4uHhfX1+sbGy1dXW3d3dqampgYGCjY2OyMnKYWJihYaIjY6RnZ2ejpGSra+xeHl7lZWVmJiYgoKFpKaptre5vb7Aurq8oaGikpSWmJufh4iKkZKVysrMtrq7ioyOdXZ4fn+ArrGywcLEzc7QiYqMt7W1/v/8mZqcxsbIpqqrZGFhztDSeXp7iIWGnJqalJKSf4CCg4B/amZmoaSm5+fmvLy6ys3OzMzL2tze3dzaa2hny8nH0M7NiYiGbG5v19jYWFVVcG5s2drcxMTD0dPUx8jJ/P79sbO1j46OmZWU1dfXhIKC1NLTd3h68fL0wsTGb3By+vf3YV1d2NjW7u7u6Ojpe3x9fHp54eLkxMLAvLq5/f39+vr63t7fXFtamZiW6urqzMnKwL+98PHvrKytq6qq7evpr62toKKkvr/BOzk42dvad3V06OjmpaSj5efnnZyblpWT/fz6ZWZo9/f3jYyKqquteXd47u3rhYSC5eTisbCueXh2qaimWlhXjImIY2Bfc3Bw////UFBP/v7+/v////7///3+g4SHaGlpYmNj8vPzZ2dn/vz9WFhYtbO0ztDPWltbbW9u/v7/xcPEiouLrayq4+Tms7S2VldX7/DyqKel+/z++Pj4+ff4cXBuuru7u7y+7+/vx8fH8/HysK+wXFxc/fv8s7OztrWzZWRio6Ohl5eZ1NTUZGRkraus2NbX4N/d0dDP3dzc9ff14ODg9/n4oaCg4eHf+/v76+vrQD4+7Ozs/f3/7evsRUJCvLy87vDtysvLXl9fzczNwsPDYGBgw7+/ysjJgH19gH9/29rbwMC/Tk1MlJCPoaCeX1tb6ufo4uPjx8fF5OPht7e3X15cuLe4tLKzn56f09TW1dXTYWJkh4eHZGJj3+Diq6urXLJJJAAAC8BJREFUeNqsmAtYE1cWgAcmJLwSwjMJAYxiQhIeITyEgCGiAioCaiqWaoCiFQVKtgWsJFRapEpFatuodetKHYaQkIiipZVWqqBQ64OqrduGuquVR1sDu62u69JdW/fOZCCJovjttyffl9yZ3PvfM2fOOffcC6UgJ1a5R1GeJI6OjvHx8TQgTCYzLiEsTCgU8qRSQcaN4VNsWWpsndep7u7u2NhY9+7UkpKSJFnqkApBIOTrufFgJDb2MUIQ4xLYAMnjSRf4+koEAoGupLcMdQtVRBs0JA3JImovpVKpUED6SAMCnZhLo1Dmrlzp8hhJxCQkJGRdGhA6nV5aWjrs7T08nJw8Ono6hD7aXZd2ml5ALygoGAb33QPvBs68ACsZIjXkAcBLmpH/RVC7H7xlaZ86qmTcgY47UsKbEW3LU4Mmx9tTJwWYGJFAeh4URXGc2/yUCqJTaGrLRlFi3khIAUMUCxl9Kjj4qFQo1WYeC27ie6KjSK+AMHIsuDu92qpq8wCK+P+6cdasGvRRM6G21yI9hJPdn+Z1vTCfJvZlNccIgQt6IIj2iZ0zjY+Q0SnfGvZ921EiMC645kKjxNOen06NTMaTdH5oklwhl8OHdyyhUWgJudOS+yG9HRl9RGWrzm/FKfRNHYZEWnyCdON0ZHa/Xv8kO9u9FJSlY3DNzclMmtD34rTkVr1xajKKpFgaVIcu9URkkKq7EFW3MEEiZk1L5hsfJqtfrP74lXK3LhTDqQy/r+uOTX7egIUVKbhKvmOGQ7dEKpaxpvN/Np/BsLdzWeJWkDMpi+reAv5NNftIsjjpEekXLgJ0bgUDapf2JIsFnIgj0+o8YkMGuQMtX8SkgbTpyGTSEcTkIuX6CsTcLJkyAlzmRvD1nR1lXhXcJNjl4fTxsBSO9Pfb6IwaFjG3UxxXrKDQHF9B0F+lAp5AOH5BnM5RyF5Gnk9vVbR3lMUmVcBHb05lDXwm4nbhYH/rJBmY1QWAKe65q+avX09CB1LFPMF4VZchWQxH6MdR834+1OZbFg0nKfQhdo5Dch0YcHYu7zFZ/Yk3yG+10blrHo3iGK4G/1JdUWoal6eLm4Hli25FEsSZcTVp0Nh5v+w4BBtbT9u4peFITF1dTMyN7ple8kkD8YL4fCv5mGZRPIWynhjRM0cs0bljHY9VySDo6OmP69sZTvfLZr6raA2iW5+/pjSKsvb34FWrqrZXsM0TobY7iD9iq3N4PLDyuhfxQTMWSHSSdSiJZHCokjIUrXdvw56tTX6uvXx9X9vwpM7Hopes2h7uHh14/LhIEiF0Jf7Y3TcyaGNndSITXDAD1oL/UVaWRCcIDZ8d1eATWgFBg1uD4c4RcpHrg3Z+Z97w5Bv7mFI3b3ag+73AwMAGXwFcSrWQO9oHrWTQ75M9NEdHmlAYdaRLlVYh0GUlgVXY2M+Ajur7onJhp0FA9ukMcsLJ+HM3r3WUht0mgixUnBTVRZA9bcmgc3k4M4FJCxNIujXrSnRiTokSLA16Bn8waGzcA27qI+9znUNuc3LyBp0t4b8yXrjiE2L4VhkcqrE0fduCgmysAeQT+oowaUKYQJecXcLlyETbx0NDIyNFIrZvmhkCZL9rqdedxsijk2QXmnROGUHew1FSSBPkwT47ncHK4UwPFUil4oQbHE4JJw3RdHVpcEGK9WN9ZG519vjs83OCJ1VxuSChlFmax/ZUKLdP6NzZ5/lIrnvh9rhOIpb0LigpgWfa+G0xoymILCt/KO7qhIK4UtYQVuzMT4AhHuEckjxPTxtrEM5IXVKhyxK4z1FEKGWzrOVAsbGpncypPrG2O61nYj6VSxxPKJX4+XFlsor0iJIkRUbPo2SAHPDH0qU6OV3HEbMS34WVUBa9vMvk0ONxcwC5aAR25pYvYQqSomoIdHXc9vmzWNnZiUNHbp6mh4TcPB9UgPvdfSc7skN0agzL7FEnzBKXSNxqeIPw0X6935ZQkS/EGEZYmM5+ueESiQJiEY/isSARxZ8UdbCULLf7A9TYtZ892ZCqE0jZPLFMXAIHHkNyZUFGqLU9z8mpiUz2QS7qgZ0lG1ekVwwGzSfywyrpOrwhj5L0GrCGf384npcIcny05dleEesEYhmHE6FMegC8R2Vm97e1tXViYPIu5Erbd+Q395bHQJ1kdg9R+ezwpWP2+0sql62IVYPprvID1FayI0FGetzHpTpAFqSmGfBnqykY58IKCL7FPvsVMkPkx/ZrMJBOZdZWEzlNtUNQipEN6RdmKSOBMujVwQdWMohnQmeE6hzMCkk8Eoy7vhYb3SU35+Z+Jce81ERyc6shqRCVxpqHPcSlKqwRKhNCoyYsjwXZkwMfrYhQrdam4kBtVyfU2jtXh+mMojWi/4Tj0VfVNwV5wp/BF6CabhSqrfUm+tln9lMT9Fxusgq/2Ws047/BbbU25HjacaK/CWO3oGhKi4n64zcqAnZIiw5EHp7QFEsXVCoB3wjiH7ea+0l/vK+8rcFhkhwfz7SsI2UiTuOlzxcWRbpd2VcYXDx+5nDGT2zDQObezKob3x34MGSraX7tzoLdmffG6wu/smi9sWS9BqWaTIj/SoMJ+50/5mOa9Od4moWM9Cz02r9JPpZhvpoPm3cG5LgeXJzh+aXmVOXBwtU/wzPG8x1q859dQ/7mtTs/LM50sEQAO4nH5nV0SDo6/Li3blVwRposRQ5OTqXFncW7/Xlh5smcr/curjS8nfcnUu1yZ/jtmk085HDm4qVvbArVhsLUXtjMLULdvsjIW2qw2OZqQ0eH732/fUXcW6Dk2Qune1mmtCNTh/NW716c0rOtafM7r3+w695y5/pxTdHu0Zw7t5a9AW/R7jK+tyUneFkm4nPyuYNFZyYqgoGBakxAVVBeLpdfI14HTqbR4nBrqH68viY/p3rpTwfunN/00vszR+T5W7r276aP7ftg2R8av/sh22nxq3Dwpkbko7w1efvcpq7iJ27h5AvMhHmW6V9beKRYQ194STMUkK3xH3JgVakuehxaXfmcBzJj5iztjwuHzGcumRFSQWVBlRqx2wXZxYKVHEYk+BbcFVuaX9CasLSAZ4bmQ+oW0L25GbW6MVX1GE2tgpNFcWHzrNO5iR5YulJVzRjboXd5LbEJHe2oslHv2BRA1J4cFxcWbg2sayd5WLPlzDe7QEy0IN9v/sKbZFG/+MtyEJ1EtKOP6os+rPMEGVF/eHDT6jP1mSnPHFz2cvb1po8ub2k8//Xfzq35x19rRQc3vDOU8d7Oxg+e8WjMKfRHp96IoXZ2jgsThuO9nv353vv/lHM2fPuS16fL/52zfEfBdU7Blpy6+qWXc/K3BHlXnnyZnV97h5V959zfU560H8QiBVsHE9jScGwuauX1xv2d5qK3R683wucuFxaleB0I/jZnA7ItZ3P9pzvza73g1+HzKSnv1S4dy6BOs43G10FA3ooZjup1/crOPzrvFXmTL/3yS/WyZSleL8nlOY0p53Oy92/7Hv7Iq35zfkbKO0s3FednTkO2WCNMKN2Kvxb5b78tTehRFrr+zCjaRY18s+HGgatow1iO57bL/bU9xk8rzz3bQH61IXPxMvIG6jRnCvcJ8h7LPed7hz3QWVVa/38trEJcn2H1DGkQUvb7qxFSsVx90f8ai6ShH/Ynfeh95bZqmvMK3M5Coe8eyyvVfq5WYYs8SlXjDo2AK0SlPgS8D7QRVIVlZrSZapr+xMLiG1LJnscnAIsrt9itUehjDmNsROLUxod8BJJQ1HYQShx1aK1orR1IO/2RRX2nUwW0VrxAQkf+vxLQ6Tl2AzoxO0si8ekG26OYmG7sQK/S3f3evbt3o6MDwebj7NmzMzHpBRIQELAVyIPa2trZPk+SfZ6eZD8HCCHNlnFBLSnjVIByEtSTQGAYVlqO9EDJrzcaGYz+Vj6fPzIY1Nfe7gnqpk5Qkz1WmpyamvxqECgFURX78HQ6MdgHZ+F8vF618MEER5VHIWwCI5igH5tgEEhfu+cTpN/PGzj8fwUYAEHf/4ET3ikCAAAAAElFTkSuQmCC','S','A'),(5,'
@logo_assinatura@

Documento autenticado eletronicamente por @nome_assinante@, @tratamento_assinante@, em @data_assinatura@, às @hora_assinatura@, conforme horário oficial de Brasília, com fundamento no art. 6º, § 1º, do Decreto nº 8.539, de 8 de outubro de 2015, a partir de @tipo_conferencia@.

','iVBORw0KGgoAAAANSUhEUgAAAFkAAAA8CAMAAAA67OZ0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADTtpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDQuMi4yLWMwNjMgNTMuMzUyNjI0LCAyMDA4LzA3LzMwLTE4OjEyOjE4ICAgICAgICAiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6eG1wUmlnaHRzPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvcmlnaHRzLyIKICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgIHhtbG5zOklwdGM0eG1wQ29yZT0iaHR0cDovL2lwdGMub3JnL3N0ZC9JcHRjNHhtcENvcmUvMS4wL3htbG5zLyIKICAgeG1wUmlnaHRzOldlYlN0YXRlbWVudD0iIgogICBwaG90b3Nob3A6QXV0aG9yc1Bvc2l0aW9uPSIiPgogICA8ZGM6cmlnaHRzPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6cmlnaHRzPgogICA8ZGM6Y3JlYXRvcj4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGk+QWxiZXJ0byBCaWdhdHRpPC9yZGY6bGk+CiAgICA8L3JkZjpTZXE+CiAgIDwvZGM6Y3JlYXRvcj4KICAgPGRjOnRpdGxlPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6dGl0bGU+CiAgIDx4bXBSaWdodHM6VXNhZ2VUZXJtcz4KICAgIDxyZGY6QWx0PgogICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCIvPgogICAgPC9yZGY6QWx0PgogICA8L3htcFJpZ2h0czpVc2FnZVRlcm1zPgogICA8SXB0YzR4bXBDb3JlOkNyZWF0b3JDb250YWN0SW5mbwogICAgSXB0YzR4bXBDb3JlOkNpQWRyRXh0YWRyPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDaXR5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJSZWdpb249IiIKICAgIElwdGM0eG1wQ29yZTpDaUFkclBjb2RlPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJDdHJ5PSIiCiAgICBJcHRjNHhtcENvcmU6Q2lUZWxXb3JrPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lFbWFpbFdvcms9IiIKICAgIElwdGM0eG1wQ29yZTpDaVVybFdvcms9IiIvPgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+RO84nQAAAwBQTFRFamts+fn5mp6hc3Nz9fX1U1NTS0tKnaGk6unqzM3P7e3u8fHxuLm7/Pz8lZmc2dnZxcXGWlpavr29wsLCp6eniYmKhYaGZWZmkpaZ0dHS5eXlkZGSrq2utbW2XV1d4uHhfX1+sbGy1dXW3d3dqampgYGCjY2OyMnKYWJihYaIjY6RnZ2ejpGSra+xeHl7lZWVmJiYgoKFpKaptre5vb7Aurq8oaGikpSWmJufh4iKkZKVysrMtrq7ioyOdXZ4fn+ArrGywcLEzc7QiYqMt7W1/v/8mZqcxsbIpqqrZGFhztDSeXp7iIWGnJqalJKSf4CCg4B/amZmoaSm5+fmvLy6ys3OzMzL2tze3dzaa2hny8nH0M7NiYiGbG5v19jYWFVVcG5s2drcxMTD0dPUx8jJ/P79sbO1j46OmZWU1dfXhIKC1NLTd3h68fL0wsTGb3By+vf3YV1d2NjW7u7u6Ojpe3x9fHp54eLkxMLAvLq5/f39+vr63t7fXFtamZiW6urqzMnKwL+98PHvrKytq6qq7evpr62toKKkvr/BOzk42dvad3V06OjmpaSj5efnnZyblpWT/fz6ZWZo9/f3jYyKqquteXd47u3rhYSC5eTisbCueXh2qaimWlhXjImIY2Bfc3Bw////UFBP/v7+/v////7///3+g4SHaGlpYmNj8vPzZ2dn/vz9WFhYtbO0ztDPWltbbW9u/v7/xcPEiouLrayq4+Tms7S2VldX7/DyqKel+/z++Pj4+ff4cXBuuru7u7y+7+/vx8fH8/HysK+wXFxc/fv8s7OztrWzZWRio6Ohl5eZ1NTUZGRkraus2NbX4N/d0dDP3dzc9ff14ODg9/n4oaCg4eHf+/v76+vrQD4+7Ozs/f3/7evsRUJCvLy87vDtysvLXl9fzczNwsPDYGBgw7+/ysjJgH19gH9/29rbwMC/Tk1MlJCPoaCeX1tb6ufo4uPjx8fF5OPht7e3X15cuLe4tLKzn56f09TW1dXTYWJkh4eHZGJj3+Diq6urXLJJJAAAC8BJREFUeNqsmAtYE1cWgAcmJLwSwjMJAYxiQhIeITyEgCGiAioCaiqWaoCiFQVKtgWsJFRapEpFatuodetKHYaQkIiipZVWqqBQ64OqrduGuquVR1sDu62u69JdW/fOZCCJovjttyffl9yZ3PvfM2fOOffcC6UgJ1a5R1GeJI6OjvHx8TQgTCYzLiEsTCgU8qRSQcaN4VNsWWpsndep7u7u2NhY9+7UkpKSJFnqkApBIOTrufFgJDb2MUIQ4xLYAMnjSRf4+koEAoGupLcMdQtVRBs0JA3JImovpVKpUED6SAMCnZhLo1Dmrlzp8hhJxCQkJGRdGhA6nV5aWjrs7T08nJw8Ono6hD7aXZd2ml5ALygoGAb33QPvBs68ACsZIjXkAcBLmpH/RVC7H7xlaZ86qmTcgY47UsKbEW3LU4Mmx9tTJwWYGJFAeh4URXGc2/yUCqJTaGrLRlFi3khIAUMUCxl9Kjj4qFQo1WYeC27ie6KjSK+AMHIsuDu92qpq8wCK+P+6cdasGvRRM6G21yI9hJPdn+Z1vTCfJvZlNccIgQt6IIj2iZ0zjY+Q0SnfGvZ921EiMC645kKjxNOen06NTMaTdH5oklwhl8OHdyyhUWgJudOS+yG9HRl9RGWrzm/FKfRNHYZEWnyCdON0ZHa/Xv8kO9u9FJSlY3DNzclMmtD34rTkVr1xajKKpFgaVIcu9URkkKq7EFW3MEEiZk1L5hsfJqtfrP74lXK3LhTDqQy/r+uOTX7egIUVKbhKvmOGQ7dEKpaxpvN/Np/BsLdzWeJWkDMpi+reAv5NNftIsjjpEekXLgJ0bgUDapf2JIsFnIgj0+o8YkMGuQMtX8SkgbTpyGTSEcTkIuX6CsTcLJkyAlzmRvD1nR1lXhXcJNjl4fTxsBSO9Pfb6IwaFjG3UxxXrKDQHF9B0F+lAp5AOH5BnM5RyF5Gnk9vVbR3lMUmVcBHb05lDXwm4nbhYH/rJBmY1QWAKe65q+avX09CB1LFPMF4VZchWQxH6MdR834+1OZbFg0nKfQhdo5Dch0YcHYu7zFZ/Yk3yG+10blrHo3iGK4G/1JdUWoal6eLm4Hli25FEsSZcTVp0Nh5v+w4BBtbT9u4peFITF1dTMyN7ple8kkD8YL4fCv5mGZRPIWynhjRM0cs0bljHY9VySDo6OmP69sZTvfLZr6raA2iW5+/pjSKsvb34FWrqrZXsM0TobY7iD9iq3N4PLDyuhfxQTMWSHSSdSiJZHCokjIUrXdvw56tTX6uvXx9X9vwpM7Hopes2h7uHh14/LhIEiF0Jf7Y3TcyaGNndSITXDAD1oL/UVaWRCcIDZ8d1eATWgFBg1uD4c4RcpHrg3Z+Z97w5Bv7mFI3b3ag+73AwMAGXwFcSrWQO9oHrWTQ75M9NEdHmlAYdaRLlVYh0GUlgVXY2M+Ajur7onJhp0FA9ukMcsLJ+HM3r3WUht0mgixUnBTVRZA9bcmgc3k4M4FJCxNIujXrSnRiTokSLA16Bn8waGzcA27qI+9znUNuc3LyBp0t4b8yXrjiE2L4VhkcqrE0fduCgmysAeQT+oowaUKYQJecXcLlyETbx0NDIyNFIrZvmhkCZL9rqdedxsijk2QXmnROGUHew1FSSBPkwT47ncHK4UwPFUil4oQbHE4JJw3RdHVpcEGK9WN9ZG519vjs83OCJ1VxuSChlFmax/ZUKLdP6NzZ5/lIrnvh9rhOIpb0LigpgWfa+G0xoymILCt/KO7qhIK4UtYQVuzMT4AhHuEckjxPTxtrEM5IXVKhyxK4z1FEKGWzrOVAsbGpncypPrG2O61nYj6VSxxPKJX4+XFlsor0iJIkRUbPo2SAHPDH0qU6OV3HEbMS34WVUBa9vMvk0ONxcwC5aAR25pYvYQqSomoIdHXc9vmzWNnZiUNHbp6mh4TcPB9UgPvdfSc7skN0agzL7FEnzBKXSNxqeIPw0X6935ZQkS/EGEZYmM5+ueESiQJiEY/isSARxZ8UdbCULLf7A9TYtZ892ZCqE0jZPLFMXAIHHkNyZUFGqLU9z8mpiUz2QS7qgZ0lG1ekVwwGzSfywyrpOrwhj5L0GrCGf384npcIcny05dleEesEYhmHE6FMegC8R2Vm97e1tXViYPIu5Erbd+Q395bHQJ1kdg9R+ezwpWP2+0sql62IVYPprvID1FayI0FGetzHpTpAFqSmGfBnqykY58IKCL7FPvsVMkPkx/ZrMJBOZdZWEzlNtUNQipEN6RdmKSOBMujVwQdWMohnQmeE6hzMCkk8Eoy7vhYb3SU35+Z+Jce81ERyc6shqRCVxpqHPcSlKqwRKhNCoyYsjwXZkwMfrYhQrdam4kBtVyfU2jtXh+mMojWi/4Tj0VfVNwV5wp/BF6CabhSqrfUm+tln9lMT9Fxusgq/2Ws047/BbbU25HjacaK/CWO3oGhKi4n64zcqAnZIiw5EHp7QFEsXVCoB3wjiH7ea+0l/vK+8rcFhkhwfz7SsI2UiTuOlzxcWRbpd2VcYXDx+5nDGT2zDQObezKob3x34MGSraX7tzoLdmffG6wu/smi9sWS9BqWaTIj/SoMJ+50/5mOa9Od4moWM9Cz02r9JPpZhvpoPm3cG5LgeXJzh+aXmVOXBwtU/wzPG8x1q859dQ/7mtTs/LM50sEQAO4nH5nV0SDo6/Li3blVwRposRQ5OTqXFncW7/Xlh5smcr/curjS8nfcnUu1yZ/jtmk085HDm4qVvbArVhsLUXtjMLULdvsjIW2qw2OZqQ0eH732/fUXcW6Dk2Qune1mmtCNTh/NW716c0rOtafM7r3+w695y5/pxTdHu0Zw7t5a9AW/R7jK+tyUneFkm4nPyuYNFZyYqgoGBakxAVVBeLpdfI14HTqbR4nBrqH68viY/p3rpTwfunN/00vszR+T5W7r276aP7ftg2R8av/sh22nxq3Dwpkbko7w1efvcpq7iJ27h5AvMhHmW6V9beKRYQ194STMUkK3xH3JgVakuehxaXfmcBzJj5iztjwuHzGcumRFSQWVBlRqx2wXZxYKVHEYk+BbcFVuaX9CasLSAZ4bmQ+oW0L25GbW6MVX1GE2tgpNFcWHzrNO5iR5YulJVzRjboXd5LbEJHe2oslHv2BRA1J4cFxcWbg2sayd5WLPlzDe7QEy0IN9v/sKbZFG/+MtyEJ1EtKOP6os+rPMEGVF/eHDT6jP1mSnPHFz2cvb1po8ub2k8//Xfzq35x19rRQc3vDOU8d7Oxg+e8WjMKfRHp96IoXZ2jgsThuO9nv353vv/lHM2fPuS16fL/52zfEfBdU7Blpy6+qWXc/K3BHlXnnyZnV97h5V959zfU560H8QiBVsHE9jScGwuauX1xv2d5qK3R683wucuFxaleB0I/jZnA7ItZ3P9pzvza73g1+HzKSnv1S4dy6BOs43G10FA3ooZjup1/crOPzrvFXmTL/3yS/WyZSleL8nlOY0p53Oy92/7Hv7Iq35zfkbKO0s3FednTkO2WCNMKN2Kvxb5b78tTehRFrr+zCjaRY18s+HGgatow1iO57bL/bU9xk8rzz3bQH61IXPxMvIG6jRnCvcJ8h7LPed7hz3QWVVa/38trEJcn2H1DGkQUvb7qxFSsVx90f8ai6ShH/Ynfeh95bZqmvMK3M5Coe8eyyvVfq5WYYs8SlXjDo2AK0SlPgS8D7QRVIVlZrSZapr+xMLiG1LJnscnAIsrt9itUehjDmNsROLUxod8BJJQ1HYQShx1aK1orR1IO/2RRX2nUwW0VrxAQkf+vxLQ6Tl2AzoxO0si8ekG26OYmG7sQK/S3f3evbt3o6MDwebj7NmzMzHpBRIQELAVyIPa2trZPk+SfZ6eZD8HCCHNlnFBLSnjVIByEtSTQGAYVlqO9EDJrzcaGYz+Vj6fPzIY1Nfe7gnqpk5Qkz1WmpyamvxqECgFURX78HQ6MdgHZ+F8vF618MEER5VHIWwCI5igH5tgEEhfu+cTpN/PGzj8fwUYAEHf/4ET3ikCAAAAAElFTkSuQmCC','S','H'); +/*!40000 ALTER TABLE `tarja_assinatura` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `texto_padrao_interno` +-- + +DROP TABLE IF EXISTS `texto_padrao_interno`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `texto_padrao_interno` ( + `id_texto_padrao_interno` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(300) DEFAULT NULL, + `conteudo` longtext NOT NULL, + `id_conjunto_estilos` int(11) DEFAULT NULL, + PRIMARY KEY (`id_texto_padrao_interno`), + KEY `fk_texto_padrao_int_conj` (`id_conjunto_estilos`), + KEY `fk_texto_padrao_int_unid` (`id_unidade`), + CONSTRAINT `fk_texto_padrao_int_conj` FOREIGN KEY (`id_conjunto_estilos`) REFERENCES `conjunto_estilos` (`id_conjunto_estilos`), + CONSTRAINT `fk_texto_padrao_int_unid` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `texto_padrao_interno` +-- + +LOCK TABLES `texto_padrao_interno` WRITE; +/*!40000 ALTER TABLE `texto_padrao_interno` DISABLE KEYS */; +/*!40000 ALTER TABLE `texto_padrao_interno` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_conferencia` +-- + +DROP TABLE IF EXISTS `tipo_conferencia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_conferencia` ( + `id_tipo_conferencia` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_tipo_conferencia`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_conferencia` +-- + +LOCK TABLES `tipo_conferencia` WRITE; +/*!40000 ALTER TABLE `tipo_conferencia` DISABLE KEYS */; +INSERT INTO `tipo_conferencia` VALUES (1,'Documento Original','S'),(2,'Cópia Autenticada por Cartório','S'),(3,'Cópia Autenticada Administrativamente','S'),(4,'Cópia Simples','S'); +/*!40000 ALTER TABLE `tipo_conferencia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_contato` +-- + +DROP TABLE IF EXISTS `tipo_contato`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_contato` ( + `id_tipo_contato` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `sin_sistema` char(1) NOT NULL, + `sta_acesso` char(1) NOT NULL, + PRIMARY KEY (`id_tipo_contato`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_contato` +-- + +LOCK TABLES `tipo_contato` WRITE; +/*!40000 ALTER TABLE `tipo_contato` DISABLE KEYS */; +INSERT INTO `tipo_contato` VALUES (1,'Usuários ABC','Usuários ABC','S','S','R'),(2,'Sistemas','Cadastro de sistemas associados.','S','S','N'),(3,'Usuários Externos','Cadastro de usuários externos.','S','N','R'),(4,'Temporário','Cadastro de contextos temporários.','S','N','R'),(5,'Unidades ABC','Unidades ABC','S','S','C'),(6,'Órgãos','Órgãos','S','S','C'),(7,'Unidades ME','Unidades ME','S','S','C'),(8,'Usuários ME','Usuários ME','S','S','R'); +/*!40000 ALTER TABLE `tipo_contato` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_formulario` +-- + +DROP TABLE IF EXISTS `tipo_formulario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_formulario` ( + `id_tipo_formulario` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_tipo_formulario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_formulario` +-- + +LOCK TABLES `tipo_formulario` WRITE; +/*!40000 ALTER TABLE `tipo_formulario` DISABLE KEYS */; +/*!40000 ALTER TABLE `tipo_formulario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_localizador` +-- + +DROP TABLE IF EXISTS `tipo_localizador`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_localizador` ( + `id_tipo_localizador` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `sigla` varchar(20) NOT NULL, + `nome` varchar(50) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id_tipo_localizador`), + UNIQUE KEY `ak1_tipo_localizador` (`sigla`,`id_unidade`), + UNIQUE KEY `ak_tipo_arquivo_nome` (`nome`,`id_unidade`), + KEY `fk_tipo_localizador_unidade` (`id_unidade`), + CONSTRAINT `fk_tipo_localizador_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_localizador` +-- + +LOCK TABLES `tipo_localizador` WRITE; +/*!40000 ALTER TABLE `tipo_localizador` DISABLE KEYS */; +/*!40000 ALTER TABLE `tipo_localizador` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_proced_restricao` +-- + +DROP TABLE IF EXISTS `tipo_proced_restricao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_proced_restricao` ( + `id_tipo_proced_restricao` int(11) NOT NULL, + `id_tipo_procedimento` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `id_unidade` int(11) DEFAULT NULL, + PRIMARY KEY (`id_tipo_proced_restricao`), + KEY `fk_tipo_proced_restr_tipo_proc` (`id_tipo_procedimento`), + KEY `fk_tipo_proced_restr_orgao` (`id_orgao`), + KEY `fk_tipo_proced_restr_unidade` (`id_unidade`), + CONSTRAINT `fk_tipo_proced_restr_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`), + CONSTRAINT `fk_tipo_proced_restr_tipo_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`), + CONSTRAINT `fk_tipo_proced_restr_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_proced_restricao` +-- + +LOCK TABLES `tipo_proced_restricao` WRITE; +/*!40000 ALTER TABLE `tipo_proced_restricao` DISABLE KEYS */; +/*!40000 ALTER TABLE `tipo_proced_restricao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_procedimento` +-- + +DROP TABLE IF EXISTS `tipo_procedimento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_procedimento` ( + `id_tipo_procedimento` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `descricao` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `sta_nivel_acesso_sugestao` char(1) NOT NULL, + `sin_interno` char(1) NOT NULL, + `sin_ouvidoria` char(1) NOT NULL, + `sin_individual` char(1) NOT NULL, + `id_hipotese_legal_sugestao` int(11) DEFAULT NULL, + `sta_grau_sigilo_sugestao` char(1) DEFAULT NULL, + PRIMARY KEY (`id_tipo_procedimento`), + KEY `fk_tipo_proced_hipotese_legal` (`id_hipotese_legal_sugestao`), + KEY `i01_tipo_procedimento` (`id_tipo_procedimento`,`sin_ativo`), + KEY `i02_tipo_procedimento` (`sin_ouvidoria`,`sin_interno`,`sin_ativo`), + CONSTRAINT `fk_tipo_proced_hipotese_legal` FOREIGN KEY (`id_hipotese_legal_sugestao`) REFERENCES `hipotese_legal` (`id_hipotese_legal`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_procedimento` +-- + +LOCK TABLES `tipo_procedimento` WRITE; +/*!40000 ALTER TABLE `tipo_procedimento` DISABLE KEYS */; +INSERT INTO `tipo_procedimento` VALUES (100000101,'Pessoal: Abono Permanência - Concessão',NULL,'S','1','N','N','N',4,NULL),(100000102,'Pessoal: Adicional de Férias (1/3 constitucional)',NULL,'S','1','N','N','N',4,NULL),(100000103,'Pessoal: Adicional de Insalubridade',NULL,'S','0','N','N','N',NULL,NULL),(100000104,'Pessoal: Adicional de Periculosidade',NULL,'S','0','N','N','N',NULL,NULL),(100000105,'Pessoal: Adicional Noturno',NULL,'S','0','N','N','N',NULL,NULL),(100000106,'Pessoal: Adicional por Atividade Penosa',NULL,'S','0','N','N','N',NULL,NULL),(100000107,'Pessoal: Adicional por Serviço Extraordinário',NULL,'S','0','N','N','N',NULL,NULL),(100000108,'Pessoal: Adicional por Tempo de Serviço',NULL,'S','1','N','N','N',4,NULL),(100000109,'Pessoal: Afastamento para Atividade Desportiva','Art. 102, inciso X, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000110,'Pessoal: Afastamento para Curso de Formação',NULL,'S','1','N','N','N',4,NULL),(100000111,'Pessoal: Afastamento para Depor','Art. 102, inciso VI, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000112,'Pessoal: Afastamento para Exercer Mandato Eletivo','Art. 94 Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000113,'Pessoal: Afastamento para Serviço Eleitoral (TRE)','Art. 102, inciso VI, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000114,'Pessoal: Afastamento para Servir como Jurado','Art. 102, inciso VI, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000116,'Pessoal: Afastamento para Pós-Graduação',NULL,'S','1','N','N','N',4,NULL),(100000118,'Pessoal: Afastamento para servir em Organismo Internacional','Art. 102, inciso XI, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000119,'Pessoal: Ajuda de Custo com Mudança de Domicílio','Art. 53 da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000120,'Pessoal: Aposentadoria - Contagem Tempo de Serviço',NULL,'S','1','N','N','N',4,NULL),(100000121,'Pessoal: Aposentadoria - Pensão Temporária',NULL,'S','1','N','N','N',4,NULL),(100000122,'Pessoal: Aposentadoria - Pensão Vitalícia',NULL,'S','1','N','N','N',4,NULL),(100000123,'Pessoal: Assentamento Funcional do Servidor',NULL,'S','1','N','N','N',4,NULL),(100000124,'Pessoal: Saúde - Solicitação de Auxílio-Saúde',NULL,'S','1','N','N','N',4,NULL),(100000125,'Pessoal: Saúde - Plano de Saúde',NULL,'S','1','N','N','N',4,NULL),(100000126,'Pessoal: Saúde - Prontuário Médico',NULL,'S','1','N','N','N',4,NULL),(100000127,'Pessoal: Ausência em razão de Casamento','Art. 97, inciso III, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000128,'Pessoal: Ausência para Alistamento Eleitoral','Art. 97, inciso II, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000129,'Pessoal: Ausência para Doação de Sangue','Art. 97, inciso I, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000130,'Pessoal: Ausência por Falecimento de Familiar','Art. 97, inciso III, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000131,'Pessoal: Auxílio Acidente',NULL,'S','1','N','N','N',4,NULL),(100000132,'Pessoal: Auxílio Alimentação/Refeição',NULL,'S','1','N','N','N',4,NULL),(100000133,'Pessoal: Auxílio Assistência Pré-Escolar/Creche',NULL,'S','1','N','N','N',4,NULL),(100000134,'Pessoal: Auxílio Doença',NULL,'S','1','N','N','N',4,NULL),(100000135,'Pessoal: Auxílio Funeral',NULL,'S','1','N','N','N',4,NULL),(100000136,'Pessoal: Auxílio Moradia','Art. 60-A da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000137,'Pessoal: Auxílio Natalidade',NULL,'S','1','N','N','N',4,NULL),(100000138,'Pessoal: Auxílio Reclusão',NULL,'S','1','N','N','N',4,NULL),(100000139,'Pessoal: Auxílio-Transporte',NULL,'S','1','N','N','N',4,NULL),(100000140,'Pessoal: Avaliação de Desempenho Individual',NULL,'S','1','N','N','N',4,NULL),(100000141,'Pessoal: Avaliação de Desempenho Institucional',NULL,'S','0','N','N','N',NULL,NULL),(100000142,'Pessoal: Avaliação de Estágio Probatório',NULL,'S','1','N','N','N',4,NULL),(100000143,'Pessoal: Averbação de Tempo de Serviço',NULL,'S','1','N','N','N',4,NULL),(100000144,'Pessoal: Bolsa de Estudo de Idioma Estrangeiro',NULL,'S','0','N','N','N',NULL,NULL),(100000145,'Pessoal: Bolsa de Pós-Graduação',NULL,'S','0','N','N','N',NULL,NULL),(100000146,'Pessoal: Cadastro de Dependente no Imposto de Renda',NULL,'S','1','N','N','N',4,NULL),(100000147,'Pessoal: Apresentação de Certificado de Curso',NULL,'S','0','N','N','N',NULL,NULL),(100000148,'Pessoal: Cessão de Servidor para outro Órgão',NULL,'S','0','N','N','N',NULL,NULL),(100000149,'Pessoal: CIPA',NULL,'S','0','N','N','N',NULL,NULL),(100000150,'Pessoal: Coleta de Imagem de Assinatura',NULL,'S','1','N','N','N',4,NULL),(100000151,'Pessoal: Aposentadoria - Concessão',NULL,'S','1','N','N','N',4,NULL),(100000152,'Pessoal: Concurso Público - Exames Admissionais',NULL,'S','1','N','N','N',4,NULL),(100000153,'Pessoal: Concurso Público - Organização',NULL,'S','0','N','N','N',NULL,NULL),(100000154,'Pessoal: Concurso Público - Provas e Títulos',NULL,'S','0','N','N','N',NULL,NULL),(100000155,'Pessoal: Controle de Frequência/Abono de Falta',NULL,'S','1','N','N','N',4,NULL),(100000156,'Pessoal: Controle de Frequência/Cumprir Hora Extra','Cumprimento de Horas Extras','S','1','N','N','N',4,NULL),(100000157,'Pessoal: Controle de Frequência/Folha de Ponto',NULL,'S','1','N','N','N',4,NULL),(100000158,'Pessoal: Curso no Exterior - com ônus',NULL,'S','0','N','N','N',NULL,NULL),(100000159,'Pessoal: Curso Promovido pela própria Instituição',NULL,'S','0','N','N','N',NULL,NULL),(100000160,'Pessoal: Curso Promovido por outra Instituição',NULL,'S','0','N','N','N',NULL,NULL),(100000161,'Pessoal: Curso de Pós-Graduação',NULL,'S','0','N','N','N',NULL,NULL),(100000162,'Pessoal: Delegação de Competência',NULL,'S','0','N','N','N',NULL,NULL),(100000163,'Pessoal: Desconto da Contribuição para o INSS',NULL,'S','1','N','N','N',4,NULL),(100000164,'Pessoal: Desconto de Contribuição Associativa',NULL,'S','1','N','N','N',4,NULL),(100000165,'Pessoal: Desconto de Contribuição Sindical',NULL,'S','1','N','N','N',4,NULL),(100000166,'Pessoal: Desconto de Empréstimo Consignado',NULL,'S','1','N','N','N',4,NULL),(100000167,'Pessoal: Desconto de Pensão Alimentícia',NULL,'S','1','N','N','N',4,NULL),(100000169,'Pessoal: Desconto do IRPF Retido na Fonte',NULL,'S','1','N','N','N',4,NULL),(100000170,'Pessoal: Nomeação/Exoneração de Cargo Comissionado e Designação/Dispensa de Substituto',NULL,'S','0','N','N','N',NULL,NULL),(100000172,'Pessoal: Emissão de Certidões e Declarações',NULL,'S','1','N','N','N',4,NULL),(100000173,'Pessoal: Emissão de Procuração',NULL,'S','1','N','N','N',4,NULL),(100000174,'Pessoal: Encargo Patronal - Contribuição para INSS',NULL,'S','0','N','N','N',NULL,NULL),(100000175,'Pessoal: Estágio - Dossiê do Estagiário',NULL,'S','0','N','N','N',NULL,NULL),(100000176,'Pessoal: Estágio - Planejamento/Organização Geral',NULL,'S','0','N','N','N',NULL,NULL),(100000177,'Pessoal: Estágio de Servidor no Brasil',NULL,'S','0','N','N','N',NULL,NULL),(100000178,'Pessoal: Estágio de Servidor no Exterior',NULL,'S','0','N','N','N',NULL,NULL),(100000179,'Pessoal: Exoneração de Cargo Efetivo',NULL,'S','0','N','N','N',NULL,NULL),(100000181,'Pessoal: Falecimento de Servidor',NULL,'S','0','N','N','N',NULL,NULL),(100000182,'Pessoal: Férias - Alteração',NULL,'S','0','N','N','N',NULL,NULL),(100000183,'Pessoal: Férias - Interrupção',NULL,'S','0','N','N','N',NULL,NULL),(100000184,'Pessoal: Férias - Solicitação',NULL,'S','0','N','N','N',NULL,NULL),(100000185,'Pessoal: Ficha Financeira',NULL,'S','1','N','N','N',4,NULL),(100000186,'Pessoal: Folha de Pagamento',NULL,'S','1','N','N','N',4,NULL),(100000187,'Pessoal: Gratificação de Desempenho',NULL,'S','1','N','N','N',4,NULL),(100000188,'Pessoal: Gratificação Natalina (Décimo Terceiro)',NULL,'S','1','N','N','N',4,NULL),(100000189,'Pessoal: Gratificação por Encargo - Curso/Concurso',NULL,'S','0','N','N','N',NULL,NULL),(100000190,'Pessoal: Horário de Expediente - Definição',NULL,'S','0','N','N','N',NULL,NULL),(100000191,'Pessoal: Horário de Expediente - Escala de Plantão',NULL,'S','0','N','N','N',NULL,NULL),(100000192,'Pessoal: Horário Especial - Familiar Deficiente','Art. 98, § 3º, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000193,'Pessoal: Horário Especial - Instrutor de Curso','Art. 98, § 4º, da Lei nº 8.112/1990.','S','0','N','N','N',NULL,NULL),(100000194,'Pessoal: Horário Especial - Servidor Deficiente','Art. 98, § 2º, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000195,'Pessoal: Horário Especial - Servidor Estudante','Art. 98, § 1º, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000196,'Pessoal: Indenização de Transporte (meio próprio)','Art. 60 da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000197,'Pessoal: Saúde - Inspeção Periódica',NULL,'S','1','N','N','N',4,NULL),(100000198,'Pessoal: Licença Adotante','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000199,'Pessoal: Licença Gestante','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000200,'Pessoal: Licença Paternidade','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000201,'Pessoal: Licença para Atividade Política','Art. 81, inciso IV, Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000202,'Pessoal: Licença para Capacitação','Art. 81, inciso V, Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000203,'Pessoal: Licença para Mandato Classista','Art. 81, inciso VII, Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000204,'Pessoal: Licença para Serviço Militar','Art. 81, inciso III, da Lei nº 8.112/1990.','S','0','N','N','N',NULL,NULL),(100000205,'Pessoal: Licença para Tratamento da Própria Saúde','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000206,'Pessoal: Licença por Acidente em Serviço','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000207,'Pessoal: Licença por Afastamento do Cônjuge','Art. 84 da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000208,'Pessoal: Licença por Doença em Pessoa da Família','Art. 83 da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000209,'Pessoal: Licença por Doença Profissional','Art. 102, inciso VIII, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000210,'Pessoal: Licença Prêmio por Assiduidade','Redação anterior do art. 81, inciso V, Lei nº 8.112/1990. Em razão de possível direito adquirido, muitos servidores ainda usufruem este tipo de licença.','S','1','N','N','N',4,NULL),(100000211,'Pessoal: Licença para Tratar de Interesses Particulares','Art. 81, inciso VI, Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000212,'Pessoal: Licenças por Aborto/Natimorto','Art. 102, inciso VIII, c/c art. 207, § 3º e § 4º, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000213,'Pessoal: Movimentação de Servidor',NULL,'S','1','N','N','N',4,NULL),(100000214,'Pessoal: Movimento Reivindicatório',NULL,'S','0','N','N','N',NULL,NULL),(100000215,'Pessoal: Negociação Sindical e Acordo Coletivo',NULL,'S','0','N','N','N',NULL,NULL),(100000217,'Pessoal: Normatização Interna',NULL,'S','0','N','N','N',NULL,NULL),(100000218,'Pessoal: Ocupação de Imóvel Funcional',NULL,'S','0','N','N','N',NULL,NULL),(100000219,'Pessoal: Orientações e Diretrizes Gerais',NULL,'S','0','N','N','N',NULL,NULL),(100000220,'Pessoal: Pagamento de Provento',NULL,'S','1','N','N','N',4,NULL),(100000221,'Pessoal: Pagamento de Remuneração',NULL,'S','1','N','N','N',4,NULL),(100000222,'Pessoal: Penalidade Advertência','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000223,'Pessoal: Penalidade Cassação de Aposentadoria','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000224,'Pessoal: Penalidade Demissão de Cargo Efetivo','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000225,'Pessoal: Penalidade Destituição Cargo em Comissão','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000226,'Pessoal: Penalidade Disponibilidade','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000227,'Pessoal: Penalidade Suspensão','Aplicação de penalidade. O registro das penalidades disciplinares deverá ser feito na pasta de assentamento individual do servidor.','S','1','N','N','N',4,NULL),(100000228,'Pessoal: Pensão por Morte de Servidor',NULL,'S','1','N','N','N',4,NULL),(100000229,'Pessoal: Planejamento da Força de Trabalho',NULL,'S','0','N','N','N',NULL,NULL),(100000230,'Pessoal: Prêmios de Reconhecimento',NULL,'S','0','N','N','N',NULL,NULL),(100000231,'Pessoal: Prevenção de Acidentes no Trabalho',NULL,'S','0','N','N','N',NULL,NULL),(100000232,'Pessoal: Progressão e Promoção (Quadro Efetivo)',NULL,'S','0','N','N','N',NULL,NULL),(100000233,'Pessoal: Progressão e Promoção (Quadro Específico)',NULL,'S','0','N','N','N',NULL,NULL),(100000234,'Pessoal: Provimento - Nomeação para Cargo Efetivo',NULL,'S','0','N','N','N',NULL,NULL),(100000235,'Pessoal: Provimento - Nomeação para Cargo em Comissão',NULL,'S','0','N','N','N',NULL,NULL),(100000236,'Pessoal: Provimento - por Aproveitamento',NULL,'S','0','N','N','N',NULL,NULL),(100000237,'Pessoal: Provimento - por Readaptação',NULL,'S','0','N','N','N',NULL,NULL),(100000238,'Pessoal: Provimento - por Recondução',NULL,'S','0','N','N','N',NULL,NULL),(100000239,'Pessoal: Provimento - por Reintegração',NULL,'S','0','N','N','N',NULL,NULL),(100000240,'Pessoal: Provimento - por Reversão',NULL,'S','0','N','N','N',NULL,NULL),(100000241,'Finanças: Reembolso/Ressarcimento',NULL,'S','0','N','N','N',NULL,NULL),(100000242,'Pessoal: Relação com Conselho Profissional',NULL,'S','0','N','N','N',NULL,NULL),(100000243,'Pessoal: Remoção a Pedido - Concurso Interno','Art. 36, parágrafo único, inciso III, alínea \"c\", da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000244,'Pessoal: Remoção a Pedido com Mudança de Sede','Art. 36, parágrafo único, inciso II, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000245,'Pessoal: Remoção a Pedido para Acompanhar Cônjuge','Art. 36, parágrafo único, inciso III, alínea \"a\", da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000246,'Pessoal: Remoção a Pedido por Motivo de Saúde','Art. 36, parágrafo único, inciso III, alínea \"b\", da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000247,'Pessoal: Remoção a Pedido sem Mudança de Sede','Art. 36, parágrafo único, inciso II, da Lei nº 8.112/1990.','S','1','N','N','N',4,NULL),(100000248,'Pessoal: Remoção de Ofício com Mudança de Sede','Art. 36, parágrafo único, inciso I, da Lei nº 8.112/1990.','S','0','N','N','N',NULL,NULL),(100000249,'Pessoal: Remoção de Ofício sem Mudança de Sede','Art. 36, parágrafo único, inciso I, da Lei nº 8.112/1990.','S','0','N','N','N',NULL,NULL),(100000250,'Pessoal: Requisição de Servidor Externo',NULL,'S','0','N','N','N',NULL,NULL),(100000251,'Pessoal: Requisição de Servidor Interno',NULL,'S','0','N','N','N',NULL,NULL),(100000252,'Pessoal: Restruturação de Cargos e Funções',NULL,'S','0','N','N','N',NULL,NULL),(100000253,'Pessoal: Retribuição por Cargo em Comissão',NULL,'S','0','N','N','N',NULL,NULL),(100000254,'Pessoal: Salário-Família',NULL,'S','1','N','N','N',4,NULL),(100000255,'Pessoal: Subsidiar Ação Judicial',NULL,'S','0','N','N','N',NULL,NULL),(100000256,'Arrecadação: Cobrança',NULL,'S','0','N','N','N',NULL,NULL),(100000257,'Arrecadação: Cumprimento de Ação Judicial',NULL,'S','0','N','N','N',NULL,NULL),(100000258,'Arrecadação: Encaminhamento para Dívida Ativa',NULL,'S','0','N','N','N',NULL,NULL),(100000259,'Arrecadação: Normatização Interna',NULL,'S','0','N','N','N',NULL,NULL),(100000260,'Arrecadação: Notificação/Comunicado',NULL,'S','0','N','N','N',NULL,NULL),(100000261,'Arrecadação: Receita',NULL,'S','0','N','N','N',NULL,NULL),(100000262,'Arrecadação: Regularização de Indébitos',NULL,'S','0','N','N','N',NULL,NULL),(100000263,'Arrecadação: Restituição/Compensação',NULL,'S','0','N','N','N',NULL,NULL),(100000264,'Arrecadação: Subsidiar Ação Judicial',NULL,'S','0','N','N','N',NULL,NULL),(100000265,'Contabilidade: Análise Contábil',NULL,'S','0','N','N','N',NULL,NULL),(100000266,'Contabilidade: Conformidade de Gestão',NULL,'S','0','N','N','N',NULL,NULL),(100000267,'Contabilidade: Contratos e Garantias',NULL,'S','0','N','N','N',NULL,NULL),(100000268,'Suprimento de Fundos: Concessão e Prestação de Contas',NULL,'S','0','N','N','N',NULL,NULL),(100000269,'Contabilidade: DIRF',NULL,'S','0','N','N','N',NULL,NULL),(100000270,'Contabilidade: Encerramento do Exercício',NULL,'S','0','N','N','N',NULL,NULL),(100000271,'Contabilidade: Fechamento Contábil - Estoque',NULL,'S','0','N','N','N',NULL,NULL),(100000272,'Contabilidade: Fechamento Contábil Patrimonial',NULL,'S','0','N','N','N',NULL,NULL),(100000273,'Contabilidade: Manuais',NULL,'S','0','N','N','N',NULL,NULL),(100000274,'Contabilidade: Normatização Interna',NULL,'S','0','N','N','N',NULL,NULL),(100000275,'Contabilidade: Prestação de Contas',NULL,'S','0','N','N','N',NULL,NULL),(100000276,'Finanças: Execução Financeira',NULL,'S','0','N','N','N',NULL,NULL),(100000277,'Finanças: Normatização Interna',NULL,'S','0','N','N','N',NULL,NULL),(100000278,'Gestão da Informação: Arrecadação',NULL,'S','0','N','N','N',NULL,NULL),(100000279,'Orçamento: Acompanhamento de Despesa Mensal',NULL,'S','0','N','N','N',NULL,NULL),(100000280,'Orçamento: Contingenciamento',NULL,'S','0','N','N','N',NULL,NULL),(100000281,'Orçamento: Créditos Adicionais',NULL,'S','0','N','N','N',NULL,NULL),(100000282,'Orçamento: Descentralização de Créditos',NULL,'S','0','N','N','N',NULL,NULL),(100000283,'Orçamento: Manuais',NULL,'S','0','N','N','N',NULL,NULL),(100000284,'Orçamento: Programação Orçamentária',NULL,'S','0','N','N','N',NULL,NULL),(100000285,'Viagem: Exterior - Prestação de Contas',NULL,'S','0','N','N','N',NULL,NULL),(100000286,'Viagem: Publicação de Boletim',NULL,'S','0','N','N','N',NULL,NULL),(100000287,'Viagem: No País - Prestação de Contas',NULL,'S','0','N','N','N',NULL,NULL),(100000288,'Infraestrutura: Abastecimento de Água e Esgoto',NULL,'S','0','N','N','N',NULL,NULL),(100000289,'Pessoal: Vacância - Posse em Cargo Inacumulável',NULL,'S','0','N','N','N',NULL,NULL),(100000290,'Infraestrutura: Fornecimento de Energia Elétrica',NULL,'S','0','N','N','N',NULL,NULL),(100000291,'Material: Desfazimento de Material Permanente',NULL,'S','0','N','N','N',NULL,NULL),(100000292,'Material: Desfazimento de Material de Consumo',NULL,'S','0','N','N','N',NULL,NULL),(100000293,'Material: Movimentação de Material de Consumo',NULL,'S','0','N','N','N',NULL,NULL),(100000294,'Material: Inventário de Material de Consumo',NULL,'S','0','N','N','N',NULL,NULL),(100000295,'Material: Inventário de Material Permanente',NULL,'S','0','N','N','N',NULL,NULL),(100000296,'Patrimônio: Gestão de Bens Imóveis',NULL,'S','0','N','N','N',NULL,NULL),(100000297,'Segurança Institucional: Automação e Controle Predial',NULL,'S','0','N','N','N',NULL,NULL),(100000298,'Segurança Institucional: Controle de Acesso/Portaria',NULL,'S','0','N','N','N',NULL,NULL),(100000299,'Segurança Institucional: Controle de Acesso/Garagem',NULL,'S','0','N','N','N',NULL,NULL),(100000300,'Segurança Institucional: Prevenção contra Incêndio',NULL,'S','0','N','N','N',NULL,NULL),(100000301,'Segurança Institucional: Projeto contra Incêndio',NULL,'S','0','N','N','N',NULL,NULL),(100000302,'Segurança Institucional: Serviço de Vigilância',NULL,'S','0','N','N','N',NULL,NULL),(100000303,'Corregedoria: Correição',NULL,'S','1','N','N','N',7,NULL),(100000304,'Licitação: Plano de Aquisições',NULL,'S','0','N','N','N',NULL,NULL),(100000305,'Convênios/Ajustes: Formalização/Alteração com Repasse',NULL,'S','0','N','N','N',NULL,NULL),(100000306,'Convênios/Ajustes: Formalização/Alteração sem Repasse',NULL,'S','0','N','N','N',NULL,NULL),(100000307,'Convênios/Ajustes: Acompanhamento da Execução',NULL,'S','0','N','N','N',NULL,NULL),(100000308,'Gestão de Contrato: Supressão Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000309,'Gestão de Contrato: Aplicação de Sanção Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000310,'Gestão de Contrato: Revisão Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000311,'Gestão de Contrato: Execução de Garantia',NULL,'S','0','N','N','N',NULL,NULL),(100000312,'Gestão de Contrato: Processo de Pagamento',NULL,'S','0','N','N','N',NULL,NULL),(100000313,'Gestão de Contrato: Prorrogação Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000314,'Gestão de Contrato: Reajuste ou Repactuação Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000315,'Gestão de Contrato: Rescisão Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000316,'Gestão de Contrato: Acompanhamento da Execução',NULL,'S','0','N','N','N',NULL,NULL),(100000317,'Licitação: Pregão Eletrônico',NULL,'S','0','N','N','N',NULL,NULL),(100000318,'Licitação: Pregão Eletrônico-Registro de Preço',NULL,'S','0','N','N','N',NULL,NULL),(100000319,'Licitação: Pregão Presencial',NULL,'S','0','N','N','N',NULL,NULL),(100000320,'Licitação: Concorrência',NULL,'S','0','N','N','N',NULL,NULL),(100000321,'Licitação: Concorrência-Registro de Preço',NULL,'S','0','N','N','N',NULL,NULL),(100000322,'Licitação: Tomada de Preços',NULL,'S','0','N','N','N',NULL,NULL),(100000323,'Licitação: Convite',NULL,'S','0','N','N','N',NULL,NULL),(100000324,'Licitação: Regime Diferenciado de Contratação-RDC',NULL,'S','0','N','N','N',NULL,NULL),(100000325,'Licitação: Concurso',NULL,'S','0','N','N','N',NULL,NULL),(100000326,'Licitação: Leilão',NULL,'S','0','N','N','N',NULL,NULL),(100000327,'Corregedoria: Procedimento Geral',NULL,'S','1','N','N','N',7,NULL),(100000328,'Licitação: Adesão a Ata de RP-Participante',NULL,'S','0','N','N','N',NULL,NULL),(100000329,'Licitação: Adesão a Ata de RP-Não Participante',NULL,'S','0','N','N','N',NULL,NULL),(100000330,'Licitação: Dispensa - Até R$ 8 mil',NULL,'S','0','N','N','N',NULL,NULL),(100000331,'Licitação: Dispensa - Acima de R$ 8 mil',NULL,'S','0','N','N','N',NULL,NULL),(100000332,'Licitação: Inexigibilidade',NULL,'S','0','N','N','N',NULL,NULL),(100000333,'Ouvidoria: Elogio à atuação do Órgão','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000334,'Ouvidoria: Crítica à atuação do Órgão','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000335,'Ouvidoria: Denúncia contra a atuação do Órgão','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000336,'Ouvidoria: Reclamação à atuação do Órgão','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000337,'Ouvidoria: Agradecimento ao Órgão','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000338,'Ouvidoria: Pedido de Informação','Tipo de processo utilizado pelo formulário de peticionamento da Ouvidoria. - Exclusivo da ouvidoria','S','0','N','S','N',NULL,NULL),(100000339,'Gestão e Controle: Executar Auditoria Interna','Analisar a fidedignidade das informações que tramitam nos processos do Órgão, identificar necessidade de pontos de controle de não conformidades, suas causas, qualificar e quantificar as perdas e recomendar ações corretivas e preventivas.','S','0','N','N','N',NULL,NULL),(100000340,'Gestão e Controle: Demandas de Órgãos de Controle','Administrar demandas e acompanhar as deliberações dos órgãos de controle do Governo Federal.','S','0','N','N','N',NULL,NULL),(100000341,'Comunicação: Pedido de Apoio Institucional','Pedidos para utilização da logomarca do Órgão em eventos institucionais promovidos por terceiros, sejam públicos ou privados.','S','0','N','N','N',NULL,NULL),(100000342,'Comunicação: Evento Institucional Público Externo','Processo para recebimento de pedidos de apoio para a realização de eventos institucionais direcionados ao público externo, por exemplo, Audiências Públicas e Sessões Públicas.','S','0','N','N','N',NULL,NULL),(100000343,'Comunicação: Publicidade Legal','Demandas para publicação em veículos de comunicação de grande circulação, para fins de publicidade exigida por lei, por exemplo, avisos de realização de pregões e de audiências públicas.','S','0','N','N','N',NULL,NULL),(100000344,'Comunicação: Publicidade Institucional','Demandas para a realização de ações de comunicação para disseminar - para os públicos interno ou externo - informações sobre determinados temas de maior relevância.','S','0','N','N','N',NULL,NULL),(100000345,'Comunicação: Evento Institucional Público Interno','Pedidos de apoio para a realização de eventos institucionais direcionados ao público interno, por exemplo, Aniversário do Órgão ou eventos da Semana do Servidor Público.','S','0','N','N','N',NULL,NULL),(100000346,'Acompanhamento Legislativo: Senado Federal','Acompanhar processo legislativo a fim de promover os interesses do Órgão, incluindo encaminhamento de pareceres sobre projetos de lei, interação presencial com parlamentares e participação em audiências públicas.','S','0','N','N','N',NULL,NULL),(100000347,'Acompanhamento Legislativo: Câmara dos Deputados','Acompanhar processo legislativo a fim de promover os interesses do Órgão, incluindo encaminhamento de pareceres sobre projetos de lei, interação presencial com parlamentares e participação em audiências públicas.','S','0','N','N','N',NULL,NULL),(100000348,'Acompanhamento Legislativo: Congresso Nacional','Acompanhar processo legislativo a fim de promover os interesses do Órgão, incluindo encaminhamento de pareceres sobre projetos de lei, interação presencial com parlamentares e participação em audiências públicas.','S','0','N','N','N',NULL,NULL),(100000349,'Acompanhamento Legislativo: Estadual/Distrital','Acompanhar processo legislativo a fim de promover os interesses do Órgão, incluindo encaminhamento de pareceres sobre projetos de lei, interação presencial com parlamentares e participação em audiências públicas.','S','0','N','N','N',NULL,NULL),(100000350,'Acompanhamento Legislativo: Municipal','Acompanhar processo legislativo a fim de promover os interesses do Órgão, incluindo encaminhamento de pareceres sobre projetos de lei, interação presencial com parlamentares e participação em audiências públicas.','S','0','N','N','N',NULL,NULL),(100000351,'Demanda Externa: Senador','Atender solicitações parlamentares, como pedidos de informação, consulta a processos, agenda com presidente ou demais gestores do Órgão e visita técnica.','S','0','N','N','N',NULL,NULL),(100000352,'Demanda Externa: Deputado Federal','Atender solicitações parlamentares, como pedidos de informação, consulta a processos, agenda com presidente ou demais gestores do Órgão e visita técnica.','S','0','N','N','N',NULL,NULL),(100000353,'Demanda Externa: Deputado Estadual/Distrital','Atender solicitações parlamentares, como pedidos de informação, consulta a processos, agenda com presidente ou demais gestores do Órgão e visita técnica.','S','0','N','N','N',NULL,NULL),(100000354,'Demanda Externa: Vereador/Câmara Municipal','Atender solicitações parlamentares, como pedidos de informação, consulta a processos, agenda com presidente ou demais gestores do Órgão e visita técnica.','S','0','N','N','N',NULL,NULL),(100000355,'Demanda Externa: Orgãos Governamentais Federais','Atender solicitações institucionais de órgãos governamentais federais, como pedidos de informação, agenda com presidente ou demais gestores do Órgão, visita técnica, reuniões, esclarecimento de dúvidas ou outros questionamentos.','S','0','N','N','N',NULL,NULL),(100000356,'Demanda Externa: Orgãos Governamentais Estaduais','Atender solicitações institucionais de órgãos governamentais estaduais, como pedidos de informação, agenda com presidente ou demais gestores do Órgão, visita técnica, reuniões, esclarecimento de dúvidas ou outros questionamentos.','S','0','N','N','N',NULL,NULL),(100000357,'Demanda Externa: Orgãos Governamentais Municipais','Atender solicitações institucionais de órgãos governamentais municipais, como pedidos de informação, agenda com presidente ou demais gestores do Órgão, visita técnica, reuniões, esclarecimento de dúvidas ou outros questionamentos.','S','0','N','N','N',NULL,NULL),(100000358,'Demanda Externa: Outros Orgãos Públicos','Atender solicitações institucionais de outros órgãos governamentais, como pedidos de informação, agenda com presidente ou demais gestores do Órgão, visita técnica, reuniões, esclarecimento de dúvidas ou outros questionamentos.','S','0','N','N','N',NULL,NULL),(100000359,'Arrecadação: Parcelamento Administrativo',NULL,'S','0','N','N','N',NULL,NULL),(100000360,'Corregedoria: Análise Prescricional de Processo',NULL,'S','1','N','N','N',7,NULL),(100000361,'Corregedoria: Investigação Preliminar',NULL,'S','1','N','N','N',7,NULL),(100000362,'Corregedoria: Sindicância Punitiva',NULL,'S','1','N','N','N',7,NULL),(100000363,'Corregedoria: Processo Administrativo Disciplinar',NULL,'S','1','N','N','N',7,NULL),(100000364,'Corregedoria: Avaliação para Estabilidade',NULL,'S','1','N','N','N',7,NULL),(100000365,'Gestão da Informação: Credenciamento de Segurança','Credenciamento para acesso a documentos classificados.','S','0','N','N','N',NULL,NULL),(100000366,'Gestão da Informação: Normatização Interna',NULL,'S','0','N','N','N',NULL,NULL),(100000367,'Gestão da Informação: Rol Anual de Informações Classificadas','Processo de divulgação anual do rol de informações classificadas.','S','0','N','N','N',NULL,NULL),(100000368,'Gestão da Informação: Avaliação/Destinação de Documentos',NULL,'S','0','N','N','N',NULL,NULL),(100000369,'Gestão da Informação: Reconstituição Documental','Reconstituição de processos ou documentos perdidos ou danificados.','S','0','N','N','N',NULL,NULL),(100000370,'Patrimônio: Cobrança de Acervo Bibliográfico',NULL,'S','0','N','N','N',NULL,NULL),(100000371,'Patrimônio: Gestão de Acervo Bibliográfico',NULL,'S','0','N','N','N',NULL,NULL),(100000372,'Gestão de Projetos: Planejamento e Execução',NULL,'S','0','N','N','N',NULL,NULL),(100000373,'Gestão de Processos: Mapeamento e Modelagem',NULL,'S','0','N','N','N',NULL,NULL),(100000374,'Gestão e Controle: Coordenação - Demandas Internas',NULL,'S','0','N','N','N',NULL,NULL),(100000375,'Gestão e Controle: Coordenação - Demandas Externas',NULL,'S','0','N','N','N',NULL,NULL),(100000376,'Planejamento Estratégico: Gestão do Plano Estratégico','Gestão do plano estratégico do Órgão.','S','0','N','N','N',NULL,NULL),(100000377,'Planejamento Estratégico: Gestão de Risco','Gestão dos riscos e controle de riscos com vista ao alcance dos objetivos estratégicos.','S','0','N','N','N',NULL,NULL),(100000378,'Planejamento Estratégico: Inteligência Estratégica','Monitoramento dos objetivos estratégicos, cenários prospectivos e estratégias dos atores que impactam no alcance do objetivos estratégicos.','S','0','N','N','N',NULL,NULL),(100000379,'Planejamento Estratégico: Elaboração do Plano Estratégico','Elaboração das propostas do plano estratégico do Órgão.','S','0','N','N','N',NULL,NULL),(100000380,'Planejamento Estratégico: Elaboração do Plano Operacional','Consolidação do Plano Operacional do Órgão.','S','0','N','N','N',NULL,NULL),(100000381,'Acesso à Informação: Demanda do e-SIC','Tratamento de demandas e recursos do e-SIC.','S','0','N','N','N',NULL,NULL),(100000382,'Demanda Externa: Cidadão (Pessoa Física)',NULL,'S','0','N','N','N',NULL,NULL),(100000383,'Gestão de Contrato: Pagamento Direto a Terceiros',NULL,'S','0','N','N','N',NULL,NULL),(100000384,'Gestão de TI: CITI',NULL,'S','0','N','N','N',NULL,NULL),(100000385,'Demanda Externa: Judiciário',NULL,'S','0','N','N','N',NULL,NULL),(100000386,'Demanda Externa: Ministério Público Estadual',NULL,'S','0','N','N','N',NULL,NULL),(100000387,'Demanda Externa: Ministério Público Federal',NULL,'S','0','N','N','N',NULL,NULL),(100000388,'Demanda Externa: Outras Entidades Privadas',NULL,'S','0','N','N','N',NULL,NULL),(100000389,'Gestão da Informação: Controle de Malote',NULL,'S','0','N','N','N',NULL,NULL),(100000390,'Suprimento de Fundos: Solicitação de Despesa',NULL,'S','0','N','N','N',NULL,NULL),(100000391,'Material: Movimentação de Material Permanente',NULL,'S','0','N','N','N',NULL,NULL),(100000392,'Pessoal: Saúde - Exclusão de Auxílio-Saúde',NULL,'S','0','N','N','N',NULL,NULL),(100000393,'Pessoal: Saúde - Pagamento de Auxílio-Saúde',NULL,'S','0','N','N','N',NULL,NULL),(100000394,'Pessoal: Saúde - Cadastro de Dependente Estudante no Auxílio-Saúde',NULL,'S','0','N','N','N',NULL,NULL),(100000395,'Pessoal: Saúde - Auxílio-Saúde GEAP',NULL,'S','0','N','N','N',NULL,NULL),(100000396,'Pessoal: Saúde - Atestado de Comparecimento',NULL,'S','0','N','N','N',NULL,NULL),(100000397,'Pessoal: Saúde - Ressarcimento ao Erário',NULL,'S','0','N','N','N',NULL,NULL),(100000398,'Pessoal: Saúde - Pagamento de Retroativo',NULL,'S','0','N','N','N',NULL,NULL),(100000399,'Pessoal: Saúde e Qualidade de Vida no Trabalho',NULL,'S','0','N','N','N',NULL,NULL),(100000400,'Pessoal: Ressarcimento ao Erário',NULL,'S','0','N','N','N',NULL,NULL),(100000401,'Gestão de Contrato: Consulta à Procuradoria/Conjur',NULL,'S','0','N','N','N',NULL,NULL),(100000402,'Gestão de Contrato: Acréscimo Contratual',NULL,'S','0','N','N','N',NULL,NULL),(100000403,'Gestão de Contrato: Alterações Contratuais Conjuntas',NULL,'S','0','N','N','N',NULL,NULL),(100000404,'Gestão de Contrato: Outras Alterações Contratuais não Relacionadas',NULL,'S','0','N','N','N',NULL,NULL),(100000405,'Pessoal: Abono Permanência - Revisão',NULL,'S','0','N','N','N',NULL,NULL),(100000406,'Pessoal: Aposentadoria - Revisão',NULL,'S','0','N','N','N',NULL,NULL),(100000407,'Pessoal: Plano de Capacitação',NULL,'S','0','N','N','N',NULL,NULL),(100000408,'Licitação: Aplicação de Sanção decorrente de Procedimento Licitatório',NULL,'S','0','N','N','N',NULL,NULL),(100000409,'Gestão da Informação: Cadastro de Usuário Externo no SEI',NULL,'S','0','N','N','N',NULL,NULL),(100000410,'Pessoal: Saúde - Lançamento Mensal do Auxílio-Saúde no SIAPE',NULL,'S','0','N','N','N',NULL,NULL),(100000411,'Gestão da Informação: Segurança da Informação e Comunicações',NULL,'S','0','N','N','N',NULL,NULL),(100000412,'Ética: Processo de Apuração Ética',NULL,'S','0','N','N','N',NULL,NULL),(100000413,'Ética: Análise de Conflito de Interesse',NULL,'S','0','N','N','N',NULL,NULL),(100000414,'Pessoal: Curso no Exterior - ônus limitado',NULL,'S','0','N','N','N',NULL,NULL),(100000415,'Pessoal: Curso no Exterior - sem ônus',NULL,'S','0','N','N','N',NULL,NULL),(100000416,'Planejamento Estratégico: Acompanhamento do Plano Operacional',NULL,'S','0','N','N','N',NULL,NULL),(100000417,'Licitação: Consulta',NULL,'S','0','N','N','N',NULL,NULL),(100000418,'Infraestrutura: Apoio de Engenharia Civil',NULL,'S','0','N','N','N',NULL,NULL),(100000419,'Gestão da Informação: Gestão Documental',NULL,'S','0','N','N','N',NULL,NULL),(100000420,'Relações Internacionais: Composição de Delegação - com ônus',NULL,'S','0','N','N','N',NULL,NULL),(100000421,'Relações Internacionais: Composição de Delegação - ônus limitado',NULL,'S','0','N','N','N',NULL,NULL),(100000422,'Relações Internacionais: Composição de Delegação - sem ônus',NULL,'S','0','N','N','N',NULL,NULL),(100000423,'Relações Internacionais: Cooperação Internacional',NULL,'S','0','N','N','N',NULL,NULL),(100000424,'Processo Reservado à Área-Meio 318',NULL,'N','0','N','N','N',NULL,NULL),(100000425,'Processo Reservado à Área-Meio 319',NULL,'N','0','N','N','N',NULL,NULL),(100000426,'Processo Reservado à Área-Meio 320',NULL,'N','0','N','N','N',NULL,NULL),(100000427,'Processo Reservado à Área-Meio 321',NULL,'N','0','N','N','N',NULL,NULL),(100000428,'Processo Reservado à Área-Meio 322',NULL,'N','0','N','N','N',NULL,NULL),(100000429,'Processo Reservado à Área-Meio 323',NULL,'N','0','N','N','N',NULL,NULL),(100000430,'Processo Reservado à Área-Meio 324',NULL,'N','0','N','N','N',NULL,NULL),(100000431,'Processo Reservado à Área-Meio 325',NULL,'N','0','N','N','N',NULL,NULL),(100000432,'Processo Reservado à Área-Meio 326',NULL,'N','0','N','N','N',NULL,NULL),(100000433,'Processo Reservado à Área-Meio 327',NULL,'N','0','N','N','N',NULL,NULL),(100000434,'Processo Reservado à Área-Meio 328',NULL,'N','0','N','N','N',NULL,NULL),(100000435,'Processo Reservado à Área-Meio 329',NULL,'N','0','N','N','N',NULL,NULL),(100000436,'Processo Reservado à Área-Meio 330',NULL,'N','0','N','N','N',NULL,NULL),(100000437,'Processo Reservado à Área-Meio 331',NULL,'N','0','N','N','N',NULL,NULL),(100000438,'Processo Reservado à Área-Meio 332',NULL,'N','0','N','N','N',NULL,NULL),(100000439,'Processo Reservado à Área-Meio 333',NULL,'N','0','N','N','N',NULL,NULL),(100000440,'Processo Reservado à Área-Meio 334',NULL,'N','0','N','N','N',NULL,NULL),(100000441,'Processo Reservado à Área-Meio 335',NULL,'N','0','N','N','N',NULL,NULL),(100000442,'Processo Reservado à Área-Meio 336',NULL,'N','0','N','N','N',NULL,NULL),(100000443,'Processo Reservado à Área-Meio 337',NULL,'N','0','N','N','N',NULL,NULL),(100000444,'Processo Reservado à Área-Meio 338',NULL,'N','0','N','N','N',NULL,NULL),(100000445,'Processo Reservado à Área-Meio 339',NULL,'N','0','N','N','N',NULL,NULL),(100000446,'Processo Reservado à Área-Meio 340',NULL,'N','0','N','N','N',NULL,NULL),(100000447,'Processo Reservado à Área-Meio 341',NULL,'N','0','N','N','N',NULL,NULL),(100000448,'Processo Reservado à Área-Meio 342',NULL,'N','0','N','N','N',NULL,NULL),(100000449,'Processo Reservado à Área-Meio 343',NULL,'N','0','N','N','N',NULL,NULL),(100000450,'Processo Reservado à Área-Meio 344',NULL,'N','0','N','N','N',NULL,NULL),(100000451,'Processo Reservado à Área-Meio 345',NULL,'N','0','N','N','N',NULL,NULL),(100000452,'Processo Reservado à Área-Meio 346',NULL,'N','0','N','N','N',NULL,NULL),(100000453,'Processo Reservado à Área-Meio 347',NULL,'N','0','N','N','N',NULL,NULL),(100000454,'Processo Reservado à Área-Meio 348',NULL,'N','0','N','N','N',NULL,NULL),(100000455,'Processo Reservado à Área-Meio 349',NULL,'N','0','N','N','N',NULL,NULL),(100000456,'Processo Reservado à Área-Meio 350',NULL,'N','0','N','N','N',NULL,NULL),(100000457,'Processo Reservado à Área-Meio 351',NULL,'N','0','N','N','N',NULL,NULL),(100000458,'Processo Reservado à Área-Meio 352',NULL,'N','0','N','N','N',NULL,NULL),(100000459,'Processo Reservado à Área-Meio 353',NULL,'N','0','N','N','N',NULL,NULL),(100000460,'Processo Reservado à Área-Meio 354',NULL,'N','0','N','N','N',NULL,NULL),(100000461,'Processo Reservado à Área-Meio 355',NULL,'N','0','N','N','N',NULL,NULL),(100000462,'Processo Reservado à Área-Meio 356',NULL,'N','0','N','N','N',NULL,NULL),(100000463,'Processo Reservado à Área-Meio 357',NULL,'N','0','N','N','N',NULL,NULL),(100000464,'Processo Reservado à Área-Meio 358',NULL,'N','0','N','N','N',NULL,NULL),(100000465,'Processo Reservado à Área-Meio 359',NULL,'N','0','N','N','N',NULL,NULL),(100000466,'Processo Reservado à Área-Meio 360',NULL,'N','0','N','N','N',NULL,NULL),(100000467,'Processo Reservado à Área-Meio 361',NULL,'N','0','N','N','N',NULL,NULL),(100000468,'Processo Reservado à Área-Meio 362',NULL,'N','0','N','N','N',NULL,NULL),(100000469,'Processo Reservado à Área-Meio 363',NULL,'N','0','N','N','N',NULL,NULL),(100000470,'Processo Reservado à Área-Meio 364',NULL,'N','0','N','N','N',NULL,NULL),(100000471,'Processo Reservado à Área-Meio 365',NULL,'N','0','N','N','N',NULL,NULL),(100000472,'Processo Reservado à Área-Meio 366',NULL,'N','0','N','N','N',NULL,NULL),(100000473,'Processo Reservado à Área-Meio 367',NULL,'N','0','N','N','N',NULL,NULL),(100000474,'Processo Reservado à Área-Meio 368',NULL,'N','0','N','N','N',NULL,NULL),(100000475,'Processo Reservado à Área-Meio 369',NULL,'N','0','N','N','N',NULL,NULL),(100000476,'Processo Reservado à Área-Meio 370',NULL,'N','0','N','N','N',NULL,NULL),(100000477,'Processo Reservado à Área-Meio 371',NULL,'N','0','N','N','N',NULL,NULL),(100000478,'Processo Reservado à Área-Meio 372',NULL,'N','0','N','N','N',NULL,NULL),(100000479,'Processo Reservado à Área-Meio 373',NULL,'N','0','N','N','N',NULL,NULL),(100000480,'Processo Reservado à Área-Meio 374',NULL,'N','0','N','N','N',NULL,NULL),(100000481,'Processo Reservado à Área-Meio 375',NULL,'N','0','N','N','N',NULL,NULL),(100000482,'Processo Reservado à Área-Meio 376',NULL,'N','0','N','N','N',NULL,NULL),(100000483,'Processo Reservado à Área-Meio 377',NULL,'N','0','N','N','N',NULL,NULL),(100000484,'Processo Reservado à Área-Meio 378',NULL,'N','0','N','N','N',NULL,NULL),(100000485,'Processo Reservado à Área-Meio 379',NULL,'N','0','N','N','N',NULL,NULL),(100000486,'Processo Reservado à Área-Meio 380',NULL,'N','0','N','N','N',NULL,NULL),(100000487,'Processo Reservado à Área-Meio 381',NULL,'N','0','N','N','N',NULL,NULL),(100000488,'Processo Reservado à Área-Meio 382',NULL,'N','0','N','N','N',NULL,NULL),(100000489,'Processo Reservado à Área-Meio 383',NULL,'N','0','N','N','N',NULL,NULL),(100000490,'Processo Reservado à Área-Meio 384',NULL,'N','0','N','N','N',NULL,NULL),(100000491,'Processo Reservado à Área-Meio 385',NULL,'N','0','N','N','N',NULL,NULL),(100000492,'Processo Reservado à Área-Meio 386',NULL,'N','0','N','N','N',NULL,NULL),(100000493,'Processo Reservado à Área-Meio 387',NULL,'N','0','N','N','N',NULL,NULL),(100000494,'Processo Reservado à Área-Meio 388',NULL,'N','0','N','N','N',NULL,NULL),(100000495,'Processo Reservado à Área-Meio 389',NULL,'N','0','N','N','N',NULL,NULL),(100000496,'Processo Reservado à Área-Meio 390',NULL,'N','0','N','N','N',NULL,NULL),(100000497,'Processo Reservado à Área-Meio 391',NULL,'N','0','N','N','N',NULL,NULL),(100000498,'Processo Reservado à Área-Meio 392',NULL,'N','0','N','N','N',NULL,NULL),(100000499,'Processo Reservado à Área-Meio 393',NULL,'N','0','N','N','N',NULL,NULL),(100000500,'Processo Reservado à Área-Meio 394',NULL,'N','0','N','N','N',NULL,NULL),(100000501,'SEI Federação','Aplicado automaticamente em processos recebidos pelo SEI Federação.','S','1','S','N','N',NULL,NULL); +/*!40000 ALTER TABLE `tipo_procedimento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_procedimento_escolha` +-- + +DROP TABLE IF EXISTS `tipo_procedimento_escolha`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_procedimento_escolha` ( + `id_tipo_procedimento` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_tipo_procedimento`,`id_unidade`), + KEY `fk_tipo_proc_escolha_tipo_proc` (`id_tipo_procedimento`), + KEY `fk_tipo_proc_escolha_unidade` (`id_unidade`), + CONSTRAINT `fk_tipo_proc_escolha_tipo_proc` FOREIGN KEY (`id_tipo_procedimento`) REFERENCES `tipo_procedimento` (`id_tipo_procedimento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_tipo_proc_escolha_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_procedimento_escolha` +-- + +LOCK TABLES `tipo_procedimento_escolha` WRITE; +/*!40000 ALTER TABLE `tipo_procedimento_escolha` DISABLE KEYS */; +/*!40000 ALTER TABLE `tipo_procedimento_escolha` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_suporte` +-- + +DROP TABLE IF EXISTS `tipo_suporte`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_suporte` ( + `id_tipo_suporte` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_tipo_suporte`), + UNIQUE KEY `ak1_tipo_suporte` (`nome`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_suporte` +-- + +LOCK TABLES `tipo_suporte` WRITE; +/*!40000 ALTER TABLE `tipo_suporte` DISABLE KEYS */; +INSERT INTO `tipo_suporte` VALUES (1,'Papel','S'),(2,'CD / DVD','S'),(3,'Fita VHS','S'),(4,'Disquete','S'),(5,'Fita Cassete','S'),(6,'Fita Magnética','S'),(7,'HD (Hard Disk)','S'),(8,'Pen Drive / Cartão de Memória','S'); +/*!40000 ALTER TABLE `tipo_suporte` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `titulo` +-- + +DROP TABLE IF EXISTS `titulo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `titulo` ( + `id_titulo` int(11) NOT NULL, + `expressao` varchar(100) NOT NULL, + `abreviatura` varchar(20) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_titulo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `titulo` +-- + +LOCK TABLES `titulo` WRITE; +/*!40000 ALTER TABLE `titulo` DISABLE KEYS */; +/*!40000 ALTER TABLE `titulo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tratamento` +-- + +DROP TABLE IF EXISTS `tratamento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tratamento` ( + `id_tratamento` int(11) NOT NULL, + `expressao` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_tratamento`), + KEY `ie1_tratamento` (`id_tratamento`,`sin_ativo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tratamento` +-- + +LOCK TABLES `tratamento` WRITE; +/*!40000 ALTER TABLE `tratamento` DISABLE KEYS */; +INSERT INTO `tratamento` VALUES (1,'A Sua Excelência o Senhor','S'),(2,'Ao Senhor','S'),(3,'A Senhora','S'),(4,'A Sua Excelência a Senhora','S'); +/*!40000 ALTER TABLE `tratamento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `uf` +-- + +DROP TABLE IF EXISTS `uf`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `uf` ( + `id_uf` int(11) NOT NULL, + `sigla` char(2) DEFAULT NULL, + `nome` varchar(50) NOT NULL, + `id_pais` int(11) NOT NULL, + `codigo_ibge` int(11) DEFAULT NULL, + PRIMARY KEY (`id_uf`), + KEY `fk_uf_pais` (`id_pais`), + CONSTRAINT `fk_uf_pais` FOREIGN KEY (`id_pais`) REFERENCES `pais` (`id_pais`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `uf` +-- + +LOCK TABLES `uf` WRITE; +/*!40000 ALTER TABLE `uf` DISABLE KEYS */; +INSERT INTO `uf` VALUES (1,'RO','Rondônia',76,11),(2,'AC','Acre',76,12),(3,'AM','Amazonas',76,13),(4,'RR','Roraima',76,14),(5,'PA','Pará',76,15),(6,'AP','Amapá',76,16),(7,'TO','Tocantins',76,17),(8,'MA','Maranhão',76,21),(9,'PI','Piauí',76,22),(10,'CE','Ceará',76,23),(11,'RN','Rio Grande do Norte',76,24),(12,'PB','Paraíba',76,25),(13,'PE','Pernambuco',76,26),(14,'AL','Alagoas',76,27),(15,'SE','Sergipe',76,28),(16,'BA','Bahia',76,29),(17,'MG','Minas Gerais',76,31),(18,'ES','Espírito Santo',76,32),(19,'RJ','Rio de Janeiro',76,33),(20,'SP','São Paulo',76,35),(21,'PR','Paraná',76,41),(22,'SC','Santa Catarina',76,42),(23,'RS','Rio Grande do Sul',76,43),(24,'MS','Mato Grosso do Sul',76,50),(25,'MT','Mato Grosso',76,51),(26,'GO','Goiás',76,52),(27,'DF','Distrito Federal',76,53); +/*!40000 ALTER TABLE `uf` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unidade` +-- + +DROP TABLE IF EXISTS `unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `unidade` ( + `id_unidade` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_mail_pendencia` char(1) NOT NULL, + `id_orgao` int(11) NOT NULL, + `sin_envio_processo` char(1) NOT NULL, + `sin_arquivamento` char(1) NOT NULL, + `sin_ouvidoria` char(1) NOT NULL, + `sin_protocolo` char(1) NOT NULL, + `codigo_sei` varchar(10) DEFAULT NULL, + `id_contato` int(11) NOT NULL, + `idx_unidade` varchar(500) DEFAULT NULL, + `id_origem` varchar(50) DEFAULT NULL, + `id_unidade_federacao` varchar(26) DEFAULT NULL, + PRIMARY KEY (`id_unidade`), + KEY `fk_unidade_orgao` (`id_orgao`), + KEY `i01_unidade` (`sin_ativo`,`id_orgao`,`sin_protocolo`,`sin_ouvidoria`,`sin_envio_processo`), + KEY `i02_unidade` (`sin_ativo`,`sigla`), + KEY `fk_unidade_contato` (`id_contato`), + KEY `fk_unidade_unidade_federacao` (`id_unidade_federacao`), + CONSTRAINT `fk_unidade_contato` FOREIGN KEY (`id_contato`) REFERENCES `contato` (`id_contato`), + CONSTRAINT `fk_unidade_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_unidade_unidade_federacao` FOREIGN KEY (`id_unidade_federacao`) REFERENCES `unidade_federacao` (`id_unidade_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unidade` +-- + +LOCK TABLES `unidade` WRITE; +/*!40000 ALTER TABLE `unidade` DISABLE KEYS */; +INSERT INTO `unidade` VALUES (110000001,'S','TESTE','Unidade de Teste 1','N',0,'S','N','N','N','90',100000006,'teste unidade de teste 1',NULL,NULL),(110000002,'S','TESTE_1_1','Unidade de Testes 1.1','N',0,'S','N','N','N','91',100000007,'teste_1_1 unidade de testes 1.1',NULL,NULL),(110000003,'S','TESTE_1_2','Unidade de Testes 1.2','N',0,'S','N','N','N','92',100000008,'teste_1_2 unidade de testes 1.2',NULL,NULL),(110000004,'S','Un-2022-06-10-14-34-29','Unidade 2022-06-1014-34-29','N',0,'S','N','N','N',NULL,100000011,'un-2022-06-10-14-34-29 unidade 2022-06-1014-34-29',NULL,NULL),(110000005,'S','Un-2022-06-10-14-34-37','Unidade 2022-06-1014-34-37','N',0,'S','N','N','N',NULL,100000012,'un-2022-06-10-14-34-37 unidade 2022-06-1014-34-37',NULL,NULL),(110000006,'S','Un-2022-06-10-14-34-45','Unidade 2022-06-1014-34-45','N',0,'S','N','N','N',NULL,100000013,'un-2022-06-10-14-34-45 unidade 2022-06-1014-34-45',NULL,NULL),(110000007,'S','Un-2022-06-10-14-34-52','Unidade 2022-06-1014-34-52','N',0,'S','N','N','N',NULL,100000014,'un-2022-06-10-14-34-52 unidade 2022-06-1014-34-52',NULL,NULL),(110000008,'S','Un-2022-06-10-14-34-58','Unidade 2022-06-1014-34-58','N',0,'S','N','N','N',NULL,100000015,'un-2022-06-10-14-34-58 unidade 2022-06-1014-34-58',NULL,NULL),(110000009,'S','Un-2022-06-10-14-35-4','Unidade 2022-06-1014-35-4','N',0,'S','N','N','N',NULL,100000016,'un-2022-06-10-14-35-4 unidade 2022-06-1014-35-4',NULL,NULL),(110000010,'S','Un-2022-06-10-14-35-11','Unidade 2022-06-1014-35-11','N',0,'S','N','N','N',NULL,100000017,'un-2022-06-10-14-35-11 unidade 2022-06-1014-35-11',NULL,NULL),(110000011,'S','Un-2022-06-10-14-35-17','Unidade 2022-06-1014-35-17','N',0,'S','N','N','N',NULL,100000018,'un-2022-06-10-14-35-17 unidade 2022-06-1014-35-17',NULL,NULL),(110000012,'S','Un-2022-06-10-14-35-25','Unidade 2022-06-1014-35-25','N',0,'S','N','N','N',NULL,100000019,'un-2022-06-10-14-35-25 unidade 2022-06-1014-35-25',NULL,NULL),(110000013,'S','Un-2022-06-10-14-35-31','Unidade 2022-06-1014-35-31','N',0,'S','N','N','N',NULL,100000020,'un-2022-06-10-14-35-31 unidade 2022-06-1014-35-31',NULL,NULL),(110000014,'S','Un-2022-06-10-14-35-37','Unidade 2022-06-1014-35-37','N',0,'S','N','N','N',NULL,100000021,'un-2022-06-10-14-35-37 unidade 2022-06-1014-35-37',NULL,NULL),(110000015,'S','Un-2022-06-10-14-35-45','Unidade 2022-06-1014-35-45','N',0,'S','N','N','N',NULL,100000022,'un-2022-06-10-14-35-45 unidade 2022-06-1014-35-45',NULL,NULL),(110000016,'S','Un-2022-06-10-14-35-51','Unidade 2022-06-1014-35-51','N',0,'S','N','N','N',NULL,100000023,'un-2022-06-10-14-35-51 unidade 2022-06-1014-35-51',NULL,NULL),(110000017,'S','Un-2022-06-10-14-35-57','Unidade 2022-06-1014-35-57','N',0,'S','N','N','N',NULL,100000024,'un-2022-06-10-14-35-57 unidade 2022-06-1014-35-57',NULL,NULL),(110000018,'S','Un-2022-06-10-14-36-4','Unidade 2022-06-1014-36-4','N',0,'S','N','N','N',NULL,100000025,'un-2022-06-10-14-36-4 unidade 2022-06-1014-36-4',NULL,NULL),(110000019,'S','Un-2022-06-10-14-36-10','Unidade 2022-06-1014-36-10','N',0,'S','N','N','N',NULL,100000026,'un-2022-06-10-14-36-10 unidade 2022-06-1014-36-10',NULL,NULL),(110000020,'S','Un-2022-06-10-14-36-17','Unidade 2022-06-1014-36-17','N',0,'S','N','N','N',NULL,100000027,'un-2022-06-10-14-36-17 unidade 2022-06-1014-36-17',NULL,NULL),(110000021,'S','Un-2022-06-10-14-36-25','Unidade 2022-06-1014-36-25','N',0,'S','N','N','N',NULL,100000028,'un-2022-06-10-14-36-25 unidade 2022-06-1014-36-25',NULL,NULL),(110000022,'S','Un-2022-06-10-14-36-30','Unidade 2022-06-1014-36-30','N',0,'S','N','N','N',NULL,100000030,'un-2022-06-10-14-36-30 unidade 2022-06-1014-36-30',NULL,NULL),(110000023,'S','Un-2022-06-10-14-36-37','Unidade 2022-06-1014-36-37','N',0,'S','N','N','N',NULL,100000033,'un-2022-06-10-14-36-37 unidade 2022-06-1014-36-37',NULL,NULL),(110000024,'S','Un-2022-06-10-14-36-43','Unidade 2022-06-1014-36-43','N',0,'S','N','N','N',NULL,100000035,'un-2022-06-10-14-36-43 unidade 2022-06-1014-36-43',NULL,NULL),(110000025,'S','Un-2022-06-10-14-36-50','Unidade 2022-06-1014-36-50','N',0,'S','N','N','N',NULL,100000037,'un-2022-06-10-14-36-50 unidade 2022-06-1014-36-50',NULL,NULL),(110000026,'S','Un-2022-06-10-14-36-55','Unidade 2022-06-1014-36-55','N',0,'S','N','N','N',NULL,100000039,'un-2022-06-10-14-36-55 unidade 2022-06-1014-36-55',NULL,NULL),(110000027,'S','Un-2022-06-10-14-37-1','Unidade 2022-06-1014-37-1','N',0,'S','N','N','N',NULL,100000041,'un-2022-06-10-14-37-1 unidade 2022-06-1014-37-1',NULL,NULL),(110000028,'S','Un-2022-06-10-14-37-8','Unidade 2022-06-1014-37-8','N',0,'S','N','N','N',NULL,100000043,'un-2022-06-10-14-37-8 unidade 2022-06-1014-37-8',NULL,NULL),(110000029,'S','Un-2022-06-10-14-37-13','Unidade 2022-06-1014-37-13','N',0,'S','N','N','N',NULL,100000045,'un-2022-06-10-14-37-13 unidade 2022-06-1014-37-13',NULL,NULL),(110000030,'S','Un-2022-06-10-14-37-18','Unidade 2022-06-1014-37-18','N',0,'S','N','N','N',NULL,100000047,'un-2022-06-10-14-37-18 unidade 2022-06-1014-37-18',NULL,NULL),(110000031,'S','Un-2022-06-10-14-37-24','Unidade 2022-06-1014-37-24','N',0,'S','N','N','N',NULL,100000049,'un-2022-06-10-14-37-24 unidade 2022-06-1014-37-24',NULL,NULL),(110000032,'S','Un-2022-06-10-14-37-29','Unidade 2022-06-1014-37-29','N',0,'S','N','N','N',NULL,100000051,'un-2022-06-10-14-37-29 unidade 2022-06-1014-37-29',NULL,NULL),(110000033,'S','Un-2022-06-10-14-37-36','Unidade 2022-06-1014-37-36','N',0,'S','N','N','N',NULL,100000053,'un-2022-06-10-14-37-36 unidade 2022-06-1014-37-36',NULL,NULL),(110000034,'S','Un-2022-06-10-14-37-42','Unidade 2022-06-1014-37-42','N',0,'S','N','N','N',NULL,100000055,'un-2022-06-10-14-37-42 unidade 2022-06-1014-37-42',NULL,NULL),(110000035,'S','Un-2022-06-10-14-37-47','Unidade 2022-06-1014-37-47','N',0,'S','N','N','N',NULL,100000057,'un-2022-06-10-14-37-47 unidade 2022-06-1014-37-47',NULL,NULL),(110000036,'S','Un-2022-06-10-14-37-52','Unidade 2022-06-1014-37-52','N',0,'S','N','N','N',NULL,100000059,'un-2022-06-10-14-37-52 unidade 2022-06-1014-37-52',NULL,NULL),(110000037,'S','Un-2022-06-10-14-37-57','Unidade 2022-06-1014-37-57','N',0,'S','N','N','N',NULL,100000061,'un-2022-06-10-14-37-57 unidade 2022-06-1014-37-57',NULL,NULL),(110000038,'S','Un-2022-06-10-14-38-2','Unidade 2022-06-1014-38-2','N',0,'S','N','N','N',NULL,100000063,'un-2022-06-10-14-38-2 unidade 2022-06-1014-38-2',NULL,NULL),(110000039,'S','Un-2022-06-10-14-38-8','Unidade 2022-06-1014-38-8','N',0,'S','N','N','N',NULL,100000066,'un-2022-06-10-14-38-8 unidade 2022-06-1014-38-8',NULL,NULL),(110000040,'S','Un-2022-06-10-14-38-13','Unidade 2022-06-1014-38-13','N',0,'S','N','N','N',NULL,100000068,'un-2022-06-10-14-38-13 unidade 2022-06-1014-38-13',NULL,NULL),(110000041,'S','Un-2022-06-10-14-38-18','Unidade 2022-06-1014-38-18','N',0,'S','N','N','N',NULL,100000070,'un-2022-06-10-14-38-18 unidade 2022-06-1014-38-18',NULL,NULL),(110000042,'S','Un-2022-06-10-14-38-24','Unidade 2022-06-1014-38-24','N',0,'S','N','N','N',NULL,100000072,'un-2022-06-10-14-38-24 unidade 2022-06-1014-38-24',NULL,NULL),(110000043,'S','Un-2022-06-10-14-38-29','Unidade 2022-06-1014-38-29','N',0,'S','N','N','N',NULL,100000074,'un-2022-06-10-14-38-29 unidade 2022-06-1014-38-29',NULL,NULL); +/*!40000 ALTER TABLE `unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unidade_federacao` +-- + +DROP TABLE IF EXISTS `unidade_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `unidade_federacao` ( + `id_unidade_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_unidade_federacao`), + KEY `fk_unidade_fed_instalacao_fed` (`id_instalacao_federacao`), + CONSTRAINT `fk_unidade_fed_instalacao_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unidade_federacao` +-- + +LOCK TABLES `unidade_federacao` WRITE; +/*!40000 ALTER TABLE `unidade_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `unidade_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unidade_historico` +-- + +DROP TABLE IF EXISTS `unidade_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `unidade_historico` ( + `id_unidade_historico` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `dta_inicio` datetime NOT NULL, + `dta_fim` datetime DEFAULT NULL, + PRIMARY KEY (`id_unidade_historico`), + UNIQUE KEY `i02_unidade_historico` (`dta_inicio`,`dta_fim`,`id_unidade`), + KEY `fk_unidade_historico_unidade` (`id_unidade`), + KEY `fk_unidade_historico_orgao` (`id_orgao`), + CONSTRAINT `fk_unidade_historico_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`), + CONSTRAINT `fk_unidade_historico_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unidade_historico` +-- + +LOCK TABLES `unidade_historico` WRITE; +/*!40000 ALTER TABLE `unidade_historico` DISABLE KEYS */; +INSERT INTO `unidade_historico` VALUES (1,110000001,0,'TESTE','Unidade de Teste 1','2022-06-10 00:00:00',NULL),(2,110000002,0,'TESTE_1_1','Unidade de Testes 1.1','2022-06-10 00:00:00',NULL),(3,110000003,0,'TESTE_1_2','Unidade de Testes 1.2','2022-06-10 00:00:00',NULL),(4,110000004,0,'Un-2022-06-10-14-34-29','Unidade 2022-06-1014-34-29','2022-06-10 00:00:00',NULL),(5,110000005,0,'Un-2022-06-10-14-34-37','Unidade 2022-06-1014-34-37','2022-06-10 00:00:00',NULL),(6,110000006,0,'Un-2022-06-10-14-34-45','Unidade 2022-06-1014-34-45','2022-06-10 00:00:00',NULL),(7,110000007,0,'Un-2022-06-10-14-34-52','Unidade 2022-06-1014-34-52','2022-06-10 00:00:00',NULL),(8,110000008,0,'Un-2022-06-10-14-34-58','Unidade 2022-06-1014-34-58','2022-06-10 00:00:00',NULL),(9,110000009,0,'Un-2022-06-10-14-35-4','Unidade 2022-06-1014-35-4','2022-06-10 00:00:00',NULL),(10,110000010,0,'Un-2022-06-10-14-35-11','Unidade 2022-06-1014-35-11','2022-06-10 00:00:00',NULL),(11,110000011,0,'Un-2022-06-10-14-35-17','Unidade 2022-06-1014-35-17','2022-06-10 00:00:00',NULL),(12,110000012,0,'Un-2022-06-10-14-35-25','Unidade 2022-06-1014-35-25','2022-06-10 00:00:00',NULL),(13,110000013,0,'Un-2022-06-10-14-35-31','Unidade 2022-06-1014-35-31','2022-06-10 00:00:00',NULL),(14,110000014,0,'Un-2022-06-10-14-35-37','Unidade 2022-06-1014-35-37','2022-06-10 00:00:00',NULL),(15,110000015,0,'Un-2022-06-10-14-35-45','Unidade 2022-06-1014-35-45','2022-06-10 00:00:00',NULL),(16,110000016,0,'Un-2022-06-10-14-35-51','Unidade 2022-06-1014-35-51','2022-06-10 00:00:00',NULL),(17,110000017,0,'Un-2022-06-10-14-35-57','Unidade 2022-06-1014-35-57','2022-06-10 00:00:00',NULL),(18,110000018,0,'Un-2022-06-10-14-36-4','Unidade 2022-06-1014-36-4','2022-06-10 00:00:00',NULL),(19,110000019,0,'Un-2022-06-10-14-36-10','Unidade 2022-06-1014-36-10','2022-06-10 00:00:00',NULL),(20,110000020,0,'Un-2022-06-10-14-36-17','Unidade 2022-06-1014-36-17','2022-06-10 00:00:00',NULL),(21,110000021,0,'Un-2022-06-10-14-36-25','Unidade 2022-06-1014-36-25','2022-06-10 00:00:00',NULL),(22,110000022,0,'Un-2022-06-10-14-36-30','Unidade 2022-06-1014-36-30','2022-06-10 00:00:00',NULL),(23,110000023,0,'Un-2022-06-10-14-36-37','Unidade 2022-06-1014-36-37','2022-06-10 00:00:00',NULL),(24,110000024,0,'Un-2022-06-10-14-36-43','Unidade 2022-06-1014-36-43','2022-06-10 00:00:00',NULL),(25,110000025,0,'Un-2022-06-10-14-36-50','Unidade 2022-06-1014-36-50','2022-06-10 00:00:00',NULL),(26,110000026,0,'Un-2022-06-10-14-36-55','Unidade 2022-06-1014-36-55','2022-06-10 00:00:00',NULL),(27,110000027,0,'Un-2022-06-10-14-37-1','Unidade 2022-06-1014-37-1','2022-06-10 00:00:00',NULL),(28,110000028,0,'Un-2022-06-10-14-37-8','Unidade 2022-06-1014-37-8','2022-06-10 00:00:00',NULL),(29,110000029,0,'Un-2022-06-10-14-37-13','Unidade 2022-06-1014-37-13','2022-06-10 00:00:00',NULL),(30,110000030,0,'Un-2022-06-10-14-37-18','Unidade 2022-06-1014-37-18','2022-06-10 00:00:00',NULL),(31,110000031,0,'Un-2022-06-10-14-37-24','Unidade 2022-06-1014-37-24','2022-06-10 00:00:00',NULL),(32,110000032,0,'Un-2022-06-10-14-37-29','Unidade 2022-06-1014-37-29','2022-06-10 00:00:00',NULL),(33,110000033,0,'Un-2022-06-10-14-37-36','Unidade 2022-06-1014-37-36','2022-06-10 00:00:00',NULL),(34,110000034,0,'Un-2022-06-10-14-37-42','Unidade 2022-06-1014-37-42','2022-06-10 00:00:00',NULL),(35,110000035,0,'Un-2022-06-10-14-37-47','Unidade 2022-06-1014-37-47','2022-06-10 00:00:00',NULL),(36,110000036,0,'Un-2022-06-10-14-37-52','Unidade 2022-06-1014-37-52','2022-06-10 00:00:00',NULL),(37,110000037,0,'Un-2022-06-10-14-37-57','Unidade 2022-06-1014-37-57','2022-06-10 00:00:00',NULL),(38,110000038,0,'Un-2022-06-10-14-38-2','Unidade 2022-06-1014-38-2','2022-06-10 00:00:00',NULL),(39,110000039,0,'Un-2022-06-10-14-38-8','Unidade 2022-06-1014-38-8','2022-06-10 00:00:00',NULL),(40,110000040,0,'Un-2022-06-10-14-38-13','Unidade 2022-06-1014-38-13','2022-06-10 00:00:00',NULL),(41,110000041,0,'Un-2022-06-10-14-38-18','Unidade 2022-06-1014-38-18','2022-06-10 00:00:00',NULL),(42,110000042,0,'Un-2022-06-10-14-38-24','Unidade 2022-06-1014-38-24','2022-06-10 00:00:00',NULL),(43,110000043,0,'Un-2022-06-10-14-38-29','Unidade 2022-06-1014-38-29','2022-06-10 00:00:00',NULL); +/*!40000 ALTER TABLE `unidade_historico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unidade_publicacao` +-- + +DROP TABLE IF EXISTS `unidade_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `unidade_publicacao` ( + `id_unidade_publicacao` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_unidade_publicacao`), + KEY `fk_unidade_publicacao_unidade` (`id_unidade`), + CONSTRAINT `fk_unidade_publicacao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unidade_publicacao` +-- + +LOCK TABLES `unidade_publicacao` WRITE; +/*!40000 ALTER TABLE `unidade_publicacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `unidade_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `usuario` +-- + +DROP TABLE IF EXISTS `usuario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `usuario` ( + `id_usuario` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sigla` varchar(100) NOT NULL, + `nome` varchar(100) NOT NULL, + `id_contato` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `idx_usuario` varchar(500) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `senha` char(60) DEFAULT NULL, + `sin_acessibilidade` char(1) NOT NULL, + `id_origem` varchar(50) DEFAULT NULL, + `nome_registro_civil` varchar(100) NOT NULL, + `nome_social` varchar(100) DEFAULT NULL, + `id_usuario_federacao` varchar(26) DEFAULT NULL, + PRIMARY KEY (`id_usuario`), + KEY `i01_usuario` (`id_orgao`,`sta_tipo`,`sigla`,`idx_usuario`,`sin_ativo`), + KEY `fk_usuario_contato` (`id_contato`), + KEY `fk_usuario_orgao` (`id_orgao`), + KEY `i02_usuario` (`id_contato`,`sta_tipo`), + KEY `fk_usuario_usuario_federacao` (`id_usuario_federacao`), + CONSTRAINT `fk_usuario_contato` FOREIGN KEY (`id_contato`) REFERENCES `contato` (`id_contato`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_usuario_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_usuario_usuario_federacao` FOREIGN KEY (`id_usuario_federacao`) REFERENCES `usuario_federacao` (`id_usuario_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `usuario` +-- + +LOCK TABLES `usuario` WRITE; +/*!40000 ALTER TABLE `usuario` DISABLE KEYS */; +INSERT INTO `usuario` VALUES (1,'S','SEI','Sistema Eletrônico de Informações',100000002,0,'sei sistema eletronico de informacoes','1',NULL,'N',NULL,'Sistema Eletrônico de Informações',NULL,NULL),(2,'S','SIP','Sistema de Permissões',100000003,0,'sip sistema de permissoes','1',NULL,'N',NULL,'Sistema de Permissões',NULL,NULL),(3,'S','INTRANET','INTRANET',100000004,0,'intranet intranet','1',NULL,'N',NULL,'INTRANET',NULL,NULL),(4,'S','INTERNET','INTERNET',100000005,0,'internet internet','1',NULL,'N',NULL,'INTERNET',NULL,NULL),(100000001,'S','teste','Usuário de Testes',100000009,0,'teste usuario de testes','0',NULL,'N',NULL,'Usuário de Testes',NULL,NULL),(100000002,'S','usuario3','Usuario de Teste 3',100000029,0,'usuario3 usuario de teste 3','0',NULL,'N',NULL,'Usuario de Teste 3',NULL,NULL),(100000003,'S','usuario4','Usuario de Teste 4',100000031,0,'usuario4 usuario de teste 4','0',NULL,'N',NULL,'Usuario de Teste 4',NULL,NULL),(100000004,'S','usuario1','Usuario de Teste 1',100000077,0,'usuario1 usuario de teste 1','0',NULL,'N',NULL,'Usuario de Teste 1',NULL,NULL),(100000005,'S','usuario5','Usuario de Teste 5',100000032,0,'usuario5 usuario de teste 5','0',NULL,'N',NULL,'Usuario de Teste 5',NULL,NULL),(100000006,'S','usuario2','Usuario de Teste 2',100000081,0,'usuario2 usuario de teste 2','0',NULL,'N',NULL,'Usuario de Teste 2',NULL,NULL),(100000007,'S','usuario6','Usuario de Teste 6',100000034,0,'usuario6 usuario de teste 6','0',NULL,'N',NULL,'Usuario de Teste 6',NULL,NULL),(100000008,'S','usuario7','Usuario de Teste 7',100000036,0,'usuario7 usuario de teste 7','0',NULL,'N',NULL,'Usuario de Teste 7',NULL,NULL),(100000009,'S','usuario8','Usuario de Teste 8',100000038,0,'usuario8 usuario de teste 8','0',NULL,'N',NULL,'Usuario de Teste 8',NULL,NULL),(100000010,'S','usuario9','Usuario de Teste 9',100000040,0,'usuario9 usuario de teste 9','0',NULL,'N',NULL,'Usuario de Teste 9',NULL,NULL),(100000011,'S','usuario10','Usuario de Teste 10',100000042,0,'usuario10 usuario de teste 10','0',NULL,'N',NULL,'Usuario de Teste 10',NULL,NULL),(100000012,'S','usuario11','Usuario de Teste 11',100000044,0,'usuario11 usuario de teste 11','0',NULL,'N',NULL,'Usuario de Teste 11',NULL,NULL),(100000013,'S','usuario12','Usuario de Teste 12',100000046,0,'usuario12 usuario de teste 12','0',NULL,'N',NULL,'Usuario de Teste 12',NULL,NULL),(100000014,'S','usuario13','Usuario de Teste 13',100000048,0,'usuario13 usuario de teste 13','0',NULL,'N',NULL,'Usuario de Teste 13',NULL,NULL),(100000015,'S','usuario14','Usuario de Teste 14',100000050,0,'usuario14 usuario de teste 14','0',NULL,'N',NULL,'Usuario de Teste 14',NULL,NULL),(100000016,'S','usuario15','Usuario de Teste 15',100000052,0,'usuario15 usuario de teste 15','0',NULL,'N',NULL,'Usuario de Teste 15',NULL,NULL),(100000017,'S','usuario16','Usuario de Teste 16',100000054,0,'usuario16 usuario de teste 16','0',NULL,'N',NULL,'Usuario de Teste 16',NULL,NULL),(100000018,'S','usuario17','Usuario de Teste 17',100000056,0,'usuario17 usuario de teste 17','0',NULL,'N',NULL,'Usuario de Teste 17',NULL,NULL),(100000019,'S','usuario18','Usuario de Teste 18',100000058,0,'usuario18 usuario de teste 18','0',NULL,'N',NULL,'Usuario de Teste 18',NULL,NULL),(100000020,'S','usuario19','Usuario de Teste 19',100000060,0,'usuario19 usuario de teste 19','0',NULL,'N',NULL,'Usuario de Teste 19',NULL,NULL),(100000021,'S','usuario20','Usuario de Teste 20',100000062,0,'usuario20 usuario de teste 20','0',NULL,'N',NULL,'Usuario de Teste 20',NULL,NULL),(100000022,'S','usuario21','Usuario de Teste 21',100000064,0,'usuario21 usuario de teste 21','0',NULL,'N',NULL,'Usuario de Teste 21',NULL,NULL),(100000023,'S','usuario22','Usuario de Teste 22',100000065,0,'usuario22 usuario de teste 22','0',NULL,'N',NULL,'Usuario de Teste 22',NULL,NULL),(100000024,'S','usuario23','Usuario de Teste 23',100000067,0,'usuario23 usuario de teste 23','0',NULL,'N',NULL,'Usuario de Teste 23',NULL,NULL),(100000025,'S','usuario24','Usuario de Teste 24',100000069,0,'usuario24 usuario de teste 24','0',NULL,'N',NULL,'Usuario de Teste 24',NULL,NULL),(100000026,'S','usuario25','Usuario de Teste 25',100000071,0,'usuario25 usuario de teste 25','0',NULL,'N',NULL,'Usuario de Teste 25',NULL,NULL),(100000027,'S','usuario26','Usuario de Teste 26',100000073,0,'usuario26 usuario de teste 26','0',NULL,'N',NULL,'Usuario de Teste 26',NULL,NULL),(100000028,'S','usuario27','Usuario de Teste 27',100000075,0,'usuario27 usuario de teste 27','0',NULL,'N',NULL,'Usuario de Teste 27',NULL,NULL),(100000029,'S','usuario28','Usuario de Teste 28',100000076,0,'usuario28 usuario de teste 28','0',NULL,'N',NULL,'Usuario de Teste 28',NULL,NULL),(100000030,'S','usuario29','Usuario de Teste 29',100000078,0,'usuario29 usuario de teste 29','0',NULL,'N',NULL,'Usuario de Teste 29',NULL,NULL),(100000031,'S','usuario30','Usuario de Teste 30',100000079,0,'usuario30 usuario de teste 30','0',NULL,'N',NULL,'Usuario de Teste 30',NULL,NULL),(100000032,'S','usuario31','Usuario de Teste 31',100000080,0,'usuario31 usuario de teste 31','0',NULL,'N',NULL,'Usuario de Teste 31',NULL,NULL),(100000033,'S','usuario32','Usuario de Teste 32',100000082,0,'usuario32 usuario de teste 32','0',NULL,'N',NULL,'Usuario de Teste 32',NULL,NULL),(100000034,'S','usuario33','Usuario de Teste 33',100000083,0,'usuario33 usuario de teste 33','0',NULL,'N',NULL,'Usuario de Teste 33',NULL,NULL),(100000035,'S','usuario34','Usuario de Teste 34',100000084,0,'usuario34 usuario de teste 34','0',NULL,'N',NULL,'Usuario de Teste 34',NULL,NULL),(100000036,'S','usuario35','Usuario de Teste 35',100000085,0,'usuario35 usuario de teste 35','0',NULL,'N',NULL,'Usuario de Teste 35',NULL,NULL),(100000037,'S','usuario36','Usuario de Teste 36',100000086,0,'usuario36 usuario de teste 36','0',NULL,'N',NULL,'Usuario de Teste 36',NULL,NULL),(100000038,'S','usuario37','Usuario de Teste 37',100000087,0,'usuario37 usuario de teste 37','0',NULL,'N',NULL,'Usuario de Teste 37',NULL,NULL),(100000039,'S','usuario38','Usuario de Teste 38',100000088,0,'usuario38 usuario de teste 38','0',NULL,'N',NULL,'Usuario de Teste 38',NULL,NULL),(100000040,'S','usuario39','Usuario de Teste 39',100000089,0,'usuario39 usuario de teste 39','0',NULL,'N',NULL,'Usuario de Teste 39',NULL,NULL),(100000041,'S','usuario40','Usuario de Teste 40',100000090,0,'usuario40 usuario de teste 40','0',NULL,'N',NULL,'Usuario de Teste 40',NULL,NULL),(100000042,'S','usuario41','Usuario de Teste 41',100000091,0,'usuario41 usuario de teste 41','0',NULL,'N',NULL,'Usuario de Teste 41',NULL,NULL),(100000043,'S','usuario42','Usuario de Teste 42',100000092,0,'usuario42 usuario de teste 42','0',NULL,'N',NULL,'Usuario de Teste 42',NULL,NULL),(100000044,'S','usuario43','Usuario de Teste 43',100000093,0,'usuario43 usuario de teste 43','0',NULL,'N',NULL,'Usuario de Teste 43',NULL,NULL),(100000045,'S','usuario44','Usuario de Teste 44',100000094,0,'usuario44 usuario de teste 44','0',NULL,'N',NULL,'Usuario de Teste 44',NULL,NULL),(100000046,'S','usuario45','Usuario de Teste 45',100000095,0,'usuario45 usuario de teste 45','0',NULL,'N',NULL,'Usuario de Teste 45',NULL,NULL),(100000047,'S','usuario46','Usuario de Teste 46',100000096,0,'usuario46 usuario de teste 46','0',NULL,'N',NULL,'Usuario de Teste 46',NULL,NULL),(100000048,'S','usuario47','Usuario de Teste 47',100000097,0,'usuario47 usuario de teste 47','0',NULL,'N',NULL,'Usuario de Teste 47',NULL,NULL),(100000049,'S','usuario48','Usuario de Teste 48',100000098,0,'usuario48 usuario de teste 48','0',NULL,'N',NULL,'Usuario de Teste 48',NULL,NULL),(100000050,'S','usuario49','Usuario de Teste 49',100000099,0,'usuario49 usuario de teste 49','0',NULL,'N',NULL,'Usuario de Teste 49',NULL,NULL),(100000051,'S','usuario50','Usuario de Teste 50',100000100,0,'usuario50 usuario de teste 50','0',NULL,'N',NULL,'Usuario de Teste 50',NULL,NULL),(100000052,'S','usuario51','Usuario de Teste 51',100000101,0,'usuario51 usuario de teste 51','0',NULL,'N',NULL,'Usuario de Teste 51',NULL,NULL),(100000053,'S','usuario52','Usuario de Teste 52',100000102,0,'usuario52 usuario de teste 52','0',NULL,'N',NULL,'Usuario de Teste 52',NULL,NULL); +/*!40000 ALTER TABLE `usuario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `usuario_federacao` +-- + +DROP TABLE IF EXISTS `usuario_federacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `usuario_federacao` ( + `id_usuario_federacao` varchar(26) NOT NULL, + `id_instalacao_federacao` varchar(26) NOT NULL, + `sigla` varchar(100) NOT NULL, + `nome` varchar(100) NOT NULL, + PRIMARY KEY (`id_usuario_federacao`), + KEY `fk_usuario_fed_instalacao_fed` (`id_instalacao_federacao`), + CONSTRAINT `fk_usuario_fed_instalacao_fed` FOREIGN KEY (`id_instalacao_federacao`) REFERENCES `instalacao_federacao` (`id_instalacao_federacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `usuario_federacao` +-- + +LOCK TABLES `usuario_federacao` WRITE; +/*!40000 ALTER TABLE `usuario_federacao` DISABLE KEYS */; +/*!40000 ALTER TABLE `usuario_federacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `veiculo_imprensa_nacional` +-- + +DROP TABLE IF EXISTS `veiculo_imprensa_nacional`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `veiculo_imprensa_nacional` ( + `id_veiculo_imprensa_nacional` int(11) NOT NULL, + `sigla` varchar(15) NOT NULL, + `descricao` varchar(250) NOT NULL, + PRIMARY KEY (`id_veiculo_imprensa_nacional`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `veiculo_imprensa_nacional` +-- + +LOCK TABLES `veiculo_imprensa_nacional` WRITE; +/*!40000 ALTER TABLE `veiculo_imprensa_nacional` DISABLE KEYS */; +INSERT INTO `veiculo_imprensa_nacional` VALUES (1,'DOU','Diário Oficial da União'); +/*!40000 ALTER TABLE `veiculo_imprensa_nacional` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `veiculo_publicacao` +-- + +DROP TABLE IF EXISTS `veiculo_publicacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `veiculo_publicacao` ( + `id_veiculo_publicacao` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `descricao` varchar(500) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + `sin_fonte_feriados` char(1) NOT NULL, + `sin_permite_extraordinaria` char(1) NOT NULL, + `web_service` varchar(250) DEFAULT NULL, + `sin_exibir_pesquisa_interna` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_veiculo_publicacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `veiculo_publicacao` +-- + +LOCK TABLES `veiculo_publicacao` WRITE; +/*!40000 ALTER TABLE `veiculo_publicacao` DISABLE KEYS */; +INSERT INTO `veiculo_publicacao` VALUES (1,'Boletim de Serviço Eletrônico','Boletim de Serviço dos documentos de processos eletrônicos do órgão','I','N','N',NULL,'S','S'); +/*!40000 ALTER TABLE `veiculo_publicacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `velocidade_transferencia` +-- + +DROP TABLE IF EXISTS `velocidade_transferencia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `velocidade_transferencia` ( + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `velocidade` bigint(20) NOT NULL, + PRIMARY KEY (`id_usuario`), + KEY `fk_velocidade_transf_unidade` (`id_unidade`), + CONSTRAINT `fk_velocidade_transf_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`), + CONSTRAINT `fk_velocidade_transf_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `velocidade_transferencia` +-- + +LOCK TABLES `velocidade_transferencia` WRITE; +/*!40000 ALTER TABLE `velocidade_transferencia` DISABLE KEYS */; +/*!40000 ALTER TABLE `velocidade_transferencia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `versao_secao_documento` +-- + +DROP TABLE IF EXISTS `versao_secao_documento`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `versao_secao_documento` ( + `id_versao_secao_documento` bigint(20) NOT NULL, + `id_secao_documento` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `conteudo` longtext, + `dth_atualizacao` datetime NOT NULL, + `versao` int(11) DEFAULT NULL, + `sin_ultima` char(1) NOT NULL, + PRIMARY KEY (`id_versao_secao_documento`), + KEY `i01_versao_secao_documento` (`id_secao_documento`,`versao`), + KEY `fk_versao_secao_doc_usuario` (`id_usuario`), + KEY `fk_versao_secao_doc_unidade` (`id_unidade`), + KEY `fk_versao_sec_doc_sec_doc` (`id_secao_documento`), + CONSTRAINT `fk_versao_sec_doc_sec_doc` FOREIGN KEY (`id_secao_documento`) REFERENCES `secao_documento` (`id_secao_documento`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_versao_secao_doc_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_versao_secao_doc_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `versao_secao_documento` +-- + +LOCK TABLES `versao_secao_documento` WRITE; +/*!40000 ALTER TABLE `versao_secao_documento` DISABLE KEYS */; +/*!40000 ALTER TABLE `versao_secao_documento` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `vocativo` +-- + +DROP TABLE IF EXISTS `vocativo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `vocativo` ( + `id_vocativo` int(11) NOT NULL, + `expressao` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_vocativo`), + KEY `ie1_vocativo` (`id_vocativo`,`sin_ativo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `vocativo` +-- + +LOCK TABLES `vocativo` WRITE; +/*!40000 ALTER TABLE `vocativo` DISABLE KEYS */; +INSERT INTO `vocativo` VALUES (1,'Senhor Almirante','S'),(2,'Senhor Brigadeiro','S'),(3,'Senhor Chefe de Gabinete','S'),(4,'Senhor','S'),(5,'Senhora','S'),(6,'Senhor Cônsul','S'),(7,'Senhora Consulesa','S'),(8,'Senhor Coordenador','S'),(9,'Senhora Coordenadora','S'),(10,'Senhora Coordenadora-Geral','S'),(11,'Senhor Coordenador-Geral','S'),(12,'Senhora Delegada','S'),(13,'Senhor Delegado','S'),(14,'Senhora Deputada','S'),(15,'Senhor Deputado','S'),(16,'Senhor Desembargador','S'),(17,'Senhora Desembargadora','S'),(18,'Senhor Diretor','S'),(19,'Senhora Diretora','S'),(20,'Senhor Embaixador','S'),(21,'Senhora Embaixadora','S'),(22,'Senhor General','S'),(23,'Senhor Governador','S'),(24,'Senhora Governadora','S'),(25,'Senhor Juiz','S'),(26,'Senhora Juíza','S'),(27,'Senhor Marechal','S'),(28,'Senhora Ministra','S'),(29,'Senhor Chefe da Casa Militar','S'),(30,'Senhora Prefeita','S'),(31,'Senhor Prefeito','S'),(32,'Senhora Presidenta','S'),(33,'Senhora Presidenta da Assembleia Legislativa','S'),(34,'Senhora Presidenta da Câmara Legislativa','S'),(35,'Senhora Presidenta da Câmara Municipal','S'),(36,'Excelentíssima Senhora Presidenta da República','S'),(37,'Excelentíssima Senhora Presidenta','S'),(38,'Senhor Presidente','S'),(39,'Senhor Presidente da Assembleia Legislativa','S'),(40,'Senhor Presidente da Câmara Legislativa','S'),(41,'Senhor Presidente da Câmara Municipal','S'),(42,'Excelentíssimo Senhor Presidente da República','S'),(43,'Excelentíssimo Senhor Presidente','S'),(44,'Senhor Procurador','S'),(45,'Senhora Procuradora','S'),(46,'Senhor Promotor','S'),(47,'Senhora Promotora','S'),(48,'Magnífico Reitor','S'),(49,'Magnífica Reitora','S'),(50,'Senhora Secretária','S'),(51,'Senhor Secretário','S'),(52,'Senhor Senador','S'),(53,'Senhora Senadora','S'),(54,'Senhor Superintendente','S'),(55,'Senhora Superintendente','S'),(56,'Senhor Vereador','S'),(57,'Senhora Vereadora','S'),(58,'Senhor Vice-Presidente','S'),(59,'Senhor Vice-Presidente da República','S'),(60,'Senhor Vice-Reitor','S'),(61,'Senhora Vice-Reitora','S'),(62,'Senhor Gerente','S'),(63,'Senhora Gerente','S'); +/*!40000 ALTER TABLE `vocativo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Current Database: `sip` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `sip` /*!40100 DEFAULT CHARACTER SET latin1 */; + +USE `sip`; + +-- +-- Table structure for table `administrador_sistema` +-- + +DROP TABLE IF EXISTS `administrador_sistema`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `administrador_sistema` ( + `id_usuario` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + PRIMARY KEY (`id_usuario`,`id_sistema`), + KEY `fk_admin_sistema_sistema` (`id_sistema`), + KEY `fk_admin_sistema_usuario` (`id_usuario`), + CONSTRAINT `fk_admin_sistema_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_admin_sistema_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `administrador_sistema` +-- + +LOCK TABLES `administrador_sistema` WRITE; +/*!40000 ALTER TABLE `administrador_sistema` DISABLE KEYS */; +INSERT INTO `administrador_sistema` VALUES (100000001,100000099),(100000001,100000100); +/*!40000 ALTER TABLE `administrador_sistema` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `codigo_acesso` +-- + +DROP TABLE IF EXISTS `codigo_acesso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `codigo_acesso` ( + `id_codigo_acesso` varchar(26) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_usuario_desativacao` int(11) DEFAULT NULL, + `id_sistema` int(11) NOT NULL, + `chave_geracao` varchar(32) NOT NULL, + `dth_geracao` datetime NOT NULL, + `chave_ativacao` varchar(60) DEFAULT NULL, + `dth_envio_ativacao` datetime DEFAULT NULL, + `dth_ativacao` datetime DEFAULT NULL, + `chave_desativacao` varchar(60) DEFAULT NULL, + `dth_envio_desativacao` datetime DEFAULT NULL, + `dth_desativacao` datetime DEFAULT NULL, + `dth_acesso` datetime DEFAULT NULL, + `email` varchar(100) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_codigo_acesso`), + KEY `fk_codigo_acesso_usuario` (`id_usuario`), + KEY `fk_cod_acesso_usu_desativacao` (`id_usuario_desativacao`), + KEY `fk_codigo_acesso_sistema` (`id_sistema`), + KEY `i01_codigo_acesso` (`dth_ativacao`), + CONSTRAINT `fk_cod_acesso_usu_desativacao` FOREIGN KEY (`id_usuario_desativacao`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_codigo_acesso_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`), + CONSTRAINT `fk_codigo_acesso_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `codigo_acesso` +-- + +LOCK TABLES `codigo_acesso` WRITE; +/*!40000 ALTER TABLE `codigo_acesso` DISABLE KEYS */; +/*!40000 ALTER TABLE `codigo_acesso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `codigo_bloqueio` +-- + +DROP TABLE IF EXISTS `codigo_bloqueio`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `codigo_bloqueio` ( + `id_codigo_bloqueio` varchar(26) NOT NULL, + `id_codigo_acesso` varchar(26) NOT NULL, + `chave_bloqueio` varchar(60) NOT NULL, + `dth_envio` datetime NOT NULL, + `dth_bloqueio` datetime DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_codigo_bloqueio`), + KEY `fk_cod_bloqueio_cod_acesso` (`id_codigo_acesso`), + KEY `i01_codigo_bloqueio` (`dth_envio`), + CONSTRAINT `fk_cod_bloqueio_cod_acesso` FOREIGN KEY (`id_codigo_acesso`) REFERENCES `codigo_acesso` (`id_codigo_acesso`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `codigo_bloqueio` +-- + +LOCK TABLES `codigo_bloqueio` WRITE; +/*!40000 ALTER TABLE `codigo_bloqueio` DISABLE KEYS */; +/*!40000 ALTER TABLE `codigo_bloqueio` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `coordenador_perfil` +-- + +DROP TABLE IF EXISTS `coordenador_perfil`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `coordenador_perfil` ( + `id_perfil` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + PRIMARY KEY (`id_perfil`,`id_usuario`,`id_sistema`), + KEY `fk_coordenador_perfil_perfil` (`id_perfil`,`id_sistema`), + KEY `fk_coordenador_perfil_usuario` (`id_usuario`), + CONSTRAINT `fk_coordenador_perfil_perfil` FOREIGN KEY (`id_perfil`, `id_sistema`) REFERENCES `perfil` (`id_perfil`, `id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_coordenador_perfil_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `coordenador_perfil` +-- + +LOCK TABLES `coordenador_perfil` WRITE; +/*!40000 ALTER TABLE `coordenador_perfil` DISABLE KEYS */; +/*!40000 ALTER TABLE `coordenador_perfil` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `coordenador_unidade` +-- + +DROP TABLE IF EXISTS `coordenador_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `coordenador_unidade` ( + `id_sistema` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + PRIMARY KEY (`id_sistema`,`id_usuario`,`id_unidade`), + KEY `fk_coordenador_unidade_sistema` (`id_sistema`), + KEY `fk_coordenador_unidade_unidade` (`id_unidade`), + KEY `fk_coordenador_unidade_usuario` (`id_usuario`), + CONSTRAINT `fk_coordenador_unidade_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_coordenador_unidade_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_coordenador_unidade_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `coordenador_unidade` +-- + +LOCK TABLES `coordenador_unidade` WRITE; +/*!40000 ALTER TABLE `coordenador_unidade` DISABLE KEYS */; +/*!40000 ALTER TABLE `coordenador_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dispositivo_acesso` +-- + +DROP TABLE IF EXISTS `dispositivo_acesso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `dispositivo_acesso` ( + `id_dispositivo_acesso` varchar(26) NOT NULL, + `id_codigo_acesso` varchar(26) NOT NULL, + `chave_dispositivo` varchar(60) NOT NULL, + `chave_acesso` varchar(60) DEFAULT NULL, + `dth_liberacao` datetime DEFAULT NULL, + `user_agent` varchar(500) NOT NULL, + `dth_acesso` datetime NOT NULL, + `ip_acesso` varchar(39) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_dispositivo_acesso`), + KEY `fk_disp_acesso_cod_acesso` (`id_codigo_acesso`), + KEY `i01_dispositivo_acesso` (`dth_acesso`), + KEY `i02_dispositivo_acesso` (`dth_liberacao`), + CONSTRAINT `fk_disp_acesso_cod_acesso` FOREIGN KEY (`id_codigo_acesso`) REFERENCES `codigo_acesso` (`id_codigo_acesso`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dispositivo_acesso` +-- + +LOCK TABLES `dispositivo_acesso` WRITE; +/*!40000 ALTER TABLE `dispositivo_acesso` DISABLE KEYS */; +/*!40000 ALTER TABLE `dispositivo_acesso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dtproperties` +-- + +DROP TABLE IF EXISTS `dtproperties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `dtproperties` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `objectid` int(11) DEFAULT NULL, + `property` varchar(64) NOT NULL, + `value` varchar(255) DEFAULT NULL, + `uvalue` varchar(510) DEFAULT NULL, + `lvalue` tinyblob, + `version` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`,`property`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dtproperties` +-- + +LOCK TABLES `dtproperties` WRITE; +/*!40000 ALTER TABLE `dtproperties` DISABLE KEYS */; +/*!40000 ALTER TABLE `dtproperties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `email_sistema` +-- + +DROP TABLE IF EXISTS `email_sistema`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `email_sistema` ( + `id_email_sistema` int(11) NOT NULL, + `id_email_sistema_modulo` varchar(50) DEFAULT NULL, + `de` varchar(250) NOT NULL, + `para` varchar(250) NOT NULL, + `assunto` varchar(250) NOT NULL, + `conteudo` longtext NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_email_sistema`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `email_sistema` +-- + +LOCK TABLES `email_sistema` WRITE; +/*!40000 ALTER TABLE `email_sistema` DISABLE KEYS */; +INSERT INTO `email_sistema` VALUES (1,NULL,'@sigla_sistema@/@sigla_orgao_sistema@ <@email_sistema@>','@nome_usuario@ <@email_usuario@>','Ativação da Autenticação em 2 Fatores','A autenticação em 2 fatores foi solicitada para sua conta no sistema @sigla_sistema@/@sigla_orgao_sistema@ em @data@ às @hora@.\n\nClique no link abaixo para ativá-la:\n\n@endereco_ativacao@','Ativação da Autenticação em 2 Fatores','S'),(2,NULL,'@sigla_sistema@/@sigla_orgao_sistema@ <@email_sistema@>','@nome_usuario@ <@email_usuario@>','Desativação da Autenticação em 2 Fatores','A desativação da autenticação em 2 fatores foi solicitada para sua conta no sistema @sigla_sistema@/@sigla_orgao_sistema@ em @data@ às @hora@.\n\nClique no link abaixo para desativá-la:\n\n@endereco_desativacao@','Desativação da Autenticação em 2 Fatores','S'),(3,NULL,'@sigla_sistema@/@sigla_orgao_sistema@ <@email_sistema@>','@email_usuario@','Alerta de Segurança','Sua conta no sistema @sigla_sistema@/@sigla_orgao_sistema@ foi acessada a partir de um novo dispositivo em @data@ às @hora@.\n\nSe você não reconhece esta atividade altere imediatamente a sua senha ou clique no link abaixo para bloquear sua conta no sistema:\n\n@endereco_bloqueio@','Alerta de segurança sobre acesso em outro dispositivo','S'),(4,NULL,'@sigla_sistema@/@sigla_orgao_sistema@ <@email_sistema@>','@email_usuario@','Aviso de Bloqueio','Sua conta no sistema @sigla_sistema@/@sigla_orgao_sistema@ foi bloqueada em @data@ às @hora@.','Bloqueio do usuário por link em e-mail de alerta de segurança','S'); +/*!40000 ALTER TABLE `email_sistema` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `hierarquia` +-- + +DROP TABLE IF EXISTS `hierarquia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `hierarquia` ( + `id_hierarquia` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(200) DEFAULT NULL, + `dta_inicio` datetime NOT NULL, + `dta_fim` datetime DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_hierarquia`), + UNIQUE KEY `i01_hierarquia` (`id_hierarquia`,`sin_ativo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `hierarquia` +-- + +LOCK TABLES `hierarquia` WRITE; +/*!40000 ALTER TABLE `hierarquia` DISABLE KEYS */; +INSERT INTO `hierarquia` VALUES (100000018,'SEI','Unidades Organizacionais','2014-01-06 00:00:00',NULL,'S'); +/*!40000 ALTER TABLE `hierarquia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_agendamento_tarefa` +-- + +DROP TABLE IF EXISTS `infra_agendamento_tarefa`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_agendamento_tarefa` ( + `id_infra_agendamento_tarefa` int(11) NOT NULL, + `descricao` varchar(500) NOT NULL, + `comando` varchar(255) NOT NULL, + `sta_periodicidade_execucao` char(1) NOT NULL, + `periodicidade_complemento` varchar(200) DEFAULT NULL, + `dth_ultima_execucao` datetime DEFAULT NULL, + `dth_ultima_conclusao` datetime DEFAULT NULL, + `sin_sucesso` char(1) NOT NULL, + `parametro` varchar(250) DEFAULT NULL, + `email_erro` varchar(250) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_agendamento_tarefa`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_agendamento_tarefa` +-- + +LOCK TABLES `infra_agendamento_tarefa` WRITE; +/*!40000 ALTER TABLE `infra_agendamento_tarefa` DISABLE KEYS */; +INSERT INTO `infra_agendamento_tarefa` VALUES (1,'Remover dados temporários de login','AgendamentoRN::removerDadosLogin','D','1','2014-11-14 08:05:06','2014-11-14 08:05:06','S',NULL,NULL,'S'),(2,'Teste de agendamento SIP','AgendamentoRN::testarAgendamento','N','0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55','2014-11-14 08:05:03','2014-11-14 08:05:04','S',NULL,NULL,'S'),(3,'Replicar todos os usuários para o SEI','AgendamentoRN::replicarTodosUsuariosSEI','D','6',NULL,NULL,'N',NULL,NULL,'N'),(4,'Replicar todas as unidades da hierarquia para o SEI','AgendamentoRN::replicarUnidadesHierarquiaSEI','D','5',NULL,NULL,'N',NULL,NULL,'N'),(5,'Replica regras de auditoria para o SEI.','AgendamentoRN::replicarRegrasAuditoriaSEI','D','7',NULL,NULL,'N',NULL,NULL,'S'); +/*!40000 ALTER TABLE `infra_agendamento_tarefa` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_auditoria` +-- + +DROP TABLE IF EXISTS `infra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_auditoria` ( + `id_infra_auditoria` bigint(20) NOT NULL, + `recurso` varchar(50) NOT NULL, + `dth_acesso` datetime NOT NULL, + `ip` varchar(39) DEFAULT NULL, + `id_usuario` int(11) DEFAULT NULL, + `sigla_usuario` varchar(100) DEFAULT NULL, + `nome_usuario` varchar(100) DEFAULT NULL, + `id_orgao_usuario` int(11) DEFAULT NULL, + `sigla_orgao_usuario` varchar(30) DEFAULT NULL, + `id_usuario_emulador` int(11) DEFAULT NULL, + `sigla_usuario_emulador` varchar(100) DEFAULT NULL, + `nome_usuario_emulador` varchar(100) DEFAULT NULL, + `id_orgao_usuario_emulador` int(11) DEFAULT NULL, + `sigla_orgao_usuario_emulador` varchar(30) DEFAULT NULL, + `id_unidade` int(11) DEFAULT NULL, + `sigla_unidade` varchar(30) DEFAULT NULL, + `descricao_unidade` varchar(250) DEFAULT NULL, + `id_orgao_unidade` int(11) DEFAULT NULL, + `sigla_orgao_unidade` varchar(30) DEFAULT NULL, + `servidor` varchar(250) DEFAULT NULL, + `user_agent` longtext, + `requisicao` longtext, + `operacao` longtext, + PRIMARY KEY (`id_infra_auditoria`), + KEY `i01_infra_auditoria` (`recurso`), + KEY `i02_infra_auditoria` (`dth_acesso`), + KEY `i03_infra_auditoria` (`sigla_usuario`), + KEY `i04_infra_auditoria` (`sigla_unidade`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_auditoria` +-- + +LOCK TABLES `infra_auditoria` WRITE; +/*!40000 ALTER TABLE `infra_auditoria` DISABLE KEYS */; +INSERT INTO `infra_auditoria` VALUES (1,'recurso_cadastrar','2022-06-10 11:33:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = perfil_importar\nDescricao = [null]\nCaminho = controlador.php?acao=perfil_importar\nSinAtivo = S)'),(2,'recurso_cadastrar','2022-06-10 11:33:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = perfil_comparar\nDescricao = [null]\nCaminho = controlador.php?acao=perfil_comparar\nSinAtivo = S)'),(3,'item_menu_cadastrar','2022-06-10 11:33:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = 100000078\nIdItemMenuPai = 100005402\nIdSistema = 100000099\nIdRecurso = 100015552\nRotulo = Comparar\nDescricao = [null]\nSequencia = 80\nSinNovaJanela = N\nSinAtivo = S)'),(4,'recurso_cadastrar','2022-06-10 11:33:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = anexo_download\nDescricao = [null]\nCaminho = controlador.php?acao=anexo_download\nSinAtivo = S)'),(5,'login_padrao','2022-06-10 11:34:13','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = d1ae27528687434885bf88b64be7be9362c820ffdc9a4a1b813420e7b0fb6e0fcf124f77238b1f662dbfb76707049e81aa7da9e4725dc051648ff339dcd8dbe3\nIdSistema = 100000099\nLogin = 10/06/2022 11:34:13\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = 7ad9e5dd254891279c631f52e1b042d030b89555016ff35555b2c1c5401342a7016bda69bc462dcd1ab3a2de82eeeb9515b643b2fa01f4faec0faf990ef39178\nHashUsuario = 68be8ed255ccb6fe78c03faa6dd9b3bc9245e0ffa7b1009bbe56557a348fa0694a105bc99416d7b98405bcf19ec77a8c81fed57befa1beacc13988e075f13d98\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(6,'login_padrao','2022-06-10 11:34:15','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = 248e1d9a10b6935e7e5014409884757d14374f62bcb9814697c6a74019931a5b5c7625f41c1b1f2dc77913583d62899f00444adf5e00574a9e116acd1a65189a\nIdSistema = 100000100\nLogin = 10/06/2022 11:34:15\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = ee767d36afb604b4b20784b124834d2ba81daf2f780dafc282a64c802cbd862dbe56d4b7abac738f09fa78617ed4590157933de4d3c43e404c204721fe9978c9\nHashUsuario = 8fa97f318cd45e5f9b0a7894a874b19d157c303eef6e174708537d9d3eaee7bd80cac06f6ef2b01190ccf4417e8f493d8570ba0ad869822e0f1d81316d85c975\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SEI\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sei/inicializar.php\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(7,'usuario_cadastrar','2022-06-10 11:34:16','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario3\n [txtNome] => Usuario de Teste 3\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario3\nNome = Usuario de Teste 3\nIdOrigem = [vazio])'),(8,'login_padrao','2022-06-10 11:34:17','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = 5677fe0920a1c92d72e8711c98948e21bb3aa57a5d9ca2bfb09cfac55eb65521d26127179579865bf962577192d7a504345bb68e32633aa4a24a3ed9264386a2\nIdSistema = 100000099\nLogin = 10/06/2022 11:34:16\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = 18d5d04a0b2bc29c44b337e4bcad2e46f545b903cc0e37c8ba398a00c141f5ab1b5e4a67028de4526b30720610847dbebf90131aab7964d4b5be48359ef6a67f\nHashUsuario = 51b78a48408b652e036620c50d5418017d9b12278b43464fd0a8aab99f5791c4303bd1b2a1a197e3ef0f89503f5d025a5ffbc14995050e207d97017adee6a0c7\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(9,'usuario_cadastrar','2022-06-10 11:34:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario4\n [txtNome] => Usuario de Teste 4\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario4\nNome = Usuario de Teste 4\nIdOrigem = [vazio])'),(10,'usuario_cadastrar','2022-06-10 11:34:20','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => f4b1aa3a6023dc964d61de7cb0896fe10049194b2d9a1426d470a67091e37f61\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario1\n [txtNome] => Usuario de Teste 1\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario1\nNome = Usuario de Teste 1\nIdOrigem = [vazio])'),(11,'usuario_cadastrar','2022-06-10 11:34:22','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario5\n [txtNome] => Usuario de Teste 5\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario5\nNome = Usuario de Teste 5\nIdOrigem = [vazio])'),(12,'usuario_cadastrar','2022-06-10 11:34:22','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => f4b1aa3a6023dc964d61de7cb0896fe10049194b2d9a1426d470a67091e37f61\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario2\n [txtNome] => Usuario de Teste 2\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario2\nNome = Usuario de Teste 2\nIdOrigem = [vazio])'),(13,'login_remover','2022-06-10 11:34:23','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = 5677fe0920a1c92d72e8711c98948e21bb3aa57a5d9ca2bfb09cfac55eb65521d26127179579865bf962577192d7a504345bb68e32633aa4a24a3ed9264386a2\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000099\nSiglaOrgaoSistema = ME\nSiglaSistema = SIP\nHashInterno = 18d5d04a0b2bc29c44b337e4bcad2e46f545b903cc0e37c8ba398a00c141f5ab1b5e4a67028de4526b30720610847dbebf90131aab7964d4b5be48359ef6a67f\nHashUsuario = 51b78a48408b652e036620c50d5418017d9b12278b43464fd0a8aab99f5791c4303bd1b2a1a197e3ef0f89503f5d025a5ffbc14995050e207d97017adee6a0c7\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(14,'usuario_cadastrar','2022-06-10 11:34:24','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario6\n [txtNome] => Usuario de Teste 6\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario6\nNome = Usuario de Teste 6\nIdOrigem = [vazio])'),(15,'login_padrao','2022-06-10 11:34:27','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = 920a112a55cc2d3459095c01b162f819e9df9669f6bd2fcbfdb415b6effdf475b900ee524d02fd7d2e262ca48f7ae8e748c6504ed891c26532956c94bef9ed0e\nIdSistema = 100000099\nLogin = 10/06/2022 11:34:26\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = c2c022d477b7c7848c972f3d2b656fe6bbba49683533cd6f21e4c44da5d69a501ae2ef9306fde8bc6ee8c10a941ccfeb541b74b8642ea124fad8559190b8858d\nHashUsuario = 1a4df64cb4e09c593a9082396c13884d04ce09b785aac55699c0642719bc0369c41c5d983e2da3da4967f14d54013d07631d6734378be2f5fff4103b4689d818\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(16,'usuario_cadastrar','2022-06-10 11:34:28','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario7\n [txtNome] => Usuario de Teste 7\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario7\nNome = Usuario de Teste 7\nIdOrigem = [vazio])'),(17,'unidade_cadastrar','2022-06-10 11:34:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-34-29\n [txtDescricao] => Unidade 2022-06-1014-34-29\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-34-29\nDescricao = Unidade 2022-06-1014-34-29\nSinGlobal = N)'),(18,'usuario_cadastrar','2022-06-10 11:34:30','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario8\n [txtNome] => Usuario de Teste 8\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario8\nNome = Usuario de Teste 8\nIdOrigem = [vazio])'),(19,'usuario_cadastrar','2022-06-10 11:34:33','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario9\n [txtNome] => Usuario de Teste 9\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario9\nNome = Usuario de Teste 9\nIdOrigem = [vazio])'),(20,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:34:34','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000004\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000004\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(21,'usuario_cadastrar','2022-06-10 11:34:35','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario10\n [txtNome] => Usuario de Teste 10\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario10\nNome = Usuario de Teste 10\nIdOrigem = [vazio])'),(22,'unidade_cadastrar','2022-06-10 11:34:38','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-34-37\n [txtDescricao] => Unidade 2022-06-1014-34-37\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-34-37\nDescricao = Unidade 2022-06-1014-34-37\nSinGlobal = N)'),(23,'usuario_cadastrar','2022-06-10 11:34:39','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario11\n [txtNome] => Usuario de Teste 11\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario11\nNome = Usuario de Teste 11\nIdOrigem = [vazio])'),(24,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:34:41','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000005\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000005\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(25,'usuario_cadastrar','2022-06-10 11:34:41','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario12\n [txtNome] => Usuario de Teste 12\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario12\nNome = Usuario de Teste 12\nIdOrigem = [vazio])'),(26,'usuario_cadastrar','2022-06-10 11:34:43','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario13\n [txtNome] => Usuario de Teste 13\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario13\nNome = Usuario de Teste 13\nIdOrigem = [vazio])'),(27,'unidade_cadastrar','2022-06-10 11:34:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-34-45\n [txtDescricao] => Unidade 2022-06-1014-34-45\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-34-45\nDescricao = Unidade 2022-06-1014-34-45\nSinGlobal = N)'),(28,'usuario_cadastrar','2022-06-10 11:34:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario14\n [txtNome] => Usuario de Teste 14\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario14\nNome = Usuario de Teste 14\nIdOrigem = [vazio])'),(29,'usuario_cadastrar','2022-06-10 11:34:48','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario15\n [txtNome] => Usuario de Teste 15\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario15\nNome = Usuario de Teste 15\nIdOrigem = [vazio])'),(30,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:34:49','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000006\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000006\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(31,'usuario_cadastrar','2022-06-10 11:34:51','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario16\n [txtNome] => Usuario de Teste 16\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario16\nNome = Usuario de Teste 16\nIdOrigem = [vazio])'),(32,'unidade_cadastrar','2022-06-10 11:34:53','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-34-52\n [txtDescricao] => Unidade 2022-06-1014-34-52\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-34-52\nDescricao = Unidade 2022-06-1014-34-52\nSinGlobal = N)'),(33,'usuario_cadastrar','2022-06-10 11:34:54','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario17\n [txtNome] => Usuario de Teste 17\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario17\nNome = Usuario de Teste 17\nIdOrigem = [vazio])'),(34,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:34:56','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000007\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000007\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(35,'usuario_cadastrar','2022-06-10 11:34:56','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario18\n [txtNome] => Usuario de Teste 18\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario18\nNome = Usuario de Teste 18\nIdOrigem = [vazio])'),(36,'usuario_cadastrar','2022-06-10 11:34:58','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario19\n [txtNome] => Usuario de Teste 19\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario19\nNome = Usuario de Teste 19\nIdOrigem = [vazio])'),(37,'unidade_cadastrar','2022-06-10 11:34:59','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-34-58\n [txtDescricao] => Unidade 2022-06-1014-34-58\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-34-58\nDescricao = Unidade 2022-06-1014-34-58\nSinGlobal = N)'),(38,'usuario_cadastrar','2022-06-10 11:35:00','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario20\n [txtNome] => Usuario de Teste 20\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario20\nNome = Usuario de Teste 20\nIdOrigem = [vazio])'),(39,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000008\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000008\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(40,'usuario_cadastrar','2022-06-10 11:35:03','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario21\n [txtNome] => Usuario de Teste 21\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario21\nNome = Usuario de Teste 21\nIdOrigem = [vazio])'),(41,'unidade_cadastrar','2022-06-10 11:35:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-4\n [txtDescricao] => Unidade 2022-06-1014-35-4\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-4\nDescricao = Unidade 2022-06-1014-35-4\nSinGlobal = N)'),(42,'usuario_cadastrar','2022-06-10 11:35:06','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario22\n [txtNome] => Usuario de Teste 22\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario22\nNome = Usuario de Teste 22\nIdOrigem = [vazio])'),(43,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:08','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000009\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000009\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(44,'usuario_cadastrar','2022-06-10 11:35:08','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario23\n [txtNome] => Usuario de Teste 23\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario23\nNome = Usuario de Teste 23\nIdOrigem = [vazio])'),(45,'usuario_cadastrar','2022-06-10 11:35:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario24\n [txtNome] => Usuario de Teste 24\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario24\nNome = Usuario de Teste 24\nIdOrigem = [vazio])'),(46,'unidade_cadastrar','2022-06-10 11:35:11','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-11\n [txtDescricao] => Unidade 2022-06-1014-35-11\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-11\nDescricao = Unidade 2022-06-1014-35-11\nSinGlobal = N)'),(47,'usuario_cadastrar','2022-06-10 11:35:13','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario25\n [txtNome] => Usuario de Teste 25\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario25\nNome = Usuario de Teste 25\nIdOrigem = [vazio])'),(48,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000010\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000010\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(49,'usuario_cadastrar','2022-06-10 11:35:16','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario26\n [txtNome] => Usuario de Teste 26\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario26\nNome = Usuario de Teste 26\nIdOrigem = [vazio])'),(50,'unidade_cadastrar','2022-06-10 11:35:18','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-17\n [txtDescricao] => Unidade 2022-06-1014-35-17\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-17\nDescricao = Unidade 2022-06-1014-35-17\nSinGlobal = N)'),(51,'usuario_cadastrar','2022-06-10 11:35:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario27\n [txtNome] => Usuario de Teste 27\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario27\nNome = Usuario de Teste 27\nIdOrigem = [vazio])'),(52,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:22','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000011\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000011\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(53,'usuario_cadastrar','2022-06-10 11:35:23','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario28\n [txtNome] => Usuario de Teste 28\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario28\nNome = Usuario de Teste 28\nIdOrigem = [vazio])'),(54,'usuario_cadastrar','2022-06-10 11:35:25','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario29\n [txtNome] => Usuario de Teste 29\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario29\nNome = Usuario de Teste 29\nIdOrigem = [vazio])'),(55,'unidade_cadastrar','2022-06-10 11:35:26','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-25\n [txtDescricao] => Unidade 2022-06-1014-35-25\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-25\nDescricao = Unidade 2022-06-1014-35-25\nSinGlobal = N)'),(56,'usuario_cadastrar','2022-06-10 11:35:27','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario30\n [txtNome] => Usuario de Teste 30\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario30\nNome = Usuario de Teste 30\nIdOrigem = [vazio])'),(57,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:28','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000012\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000012\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(58,'usuario_cadastrar','2022-06-10 11:35:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario31\n [txtNome] => Usuario de Teste 31\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario31\nNome = Usuario de Teste 31\nIdOrigem = [vazio])'),(59,'usuario_cadastrar','2022-06-10 11:35:32','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario32\n [txtNome] => Usuario de Teste 32\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario32\nNome = Usuario de Teste 32\nIdOrigem = [vazio])'),(60,'unidade_cadastrar','2022-06-10 11:35:32','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-31\n [txtDescricao] => Unidade 2022-06-1014-35-31\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-31\nDescricao = Unidade 2022-06-1014-35-31\nSinGlobal = N)'),(61,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:35','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000013\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000013\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(62,'usuario_cadastrar','2022-06-10 11:35:35','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario33\n [txtNome] => Usuario de Teste 33\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario33\nNome = Usuario de Teste 33\nIdOrigem = [vazio])'),(63,'usuario_cadastrar','2022-06-10 11:35:37','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario34\n [txtNome] => Usuario de Teste 34\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario34\nNome = Usuario de Teste 34\nIdOrigem = [vazio])'),(64,'unidade_cadastrar','2022-06-10 11:35:38','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-37\n [txtDescricao] => Unidade 2022-06-1014-35-37\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-37\nDescricao = Unidade 2022-06-1014-35-37\nSinGlobal = N)'),(65,'usuario_cadastrar','2022-06-10 11:35:40','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario35\n [txtNome] => Usuario de Teste 35\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario35\nNome = Usuario de Teste 35\nIdOrigem = [vazio])'),(66,'usuario_cadastrar','2022-06-10 11:35:42','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario36\n [txtNome] => Usuario de Teste 36\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario36\nNome = Usuario de Teste 36\nIdOrigem = [vazio])'),(67,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:42','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000014\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000014\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(68,'usuario_cadastrar','2022-06-10 11:35:44','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario37\n [txtNome] => Usuario de Teste 37\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario37\nNome = Usuario de Teste 37\nIdOrigem = [vazio])'),(69,'unidade_cadastrar','2022-06-10 11:35:45','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-45\n [txtDescricao] => Unidade 2022-06-1014-35-45\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-45\nDescricao = Unidade 2022-06-1014-35-45\nSinGlobal = N)'),(70,'usuario_cadastrar','2022-06-10 11:35:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario38\n [txtNome] => Usuario de Teste 38\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario38\nNome = Usuario de Teste 38\nIdOrigem = [vazio])'),(71,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:48','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000015\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000015\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(72,'usuario_cadastrar','2022-06-10 11:35:48','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario39\n [txtNome] => Usuario de Teste 39\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario39\nNome = Usuario de Teste 39\nIdOrigem = [vazio])'),(73,'usuario_cadastrar','2022-06-10 11:35:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario40\n [txtNome] => Usuario de Teste 40\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario40\nNome = Usuario de Teste 40\nIdOrigem = [vazio])'),(74,'unidade_cadastrar','2022-06-10 11:35:52','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-51\n [txtDescricao] => Unidade 2022-06-1014-35-51\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-51\nDescricao = Unidade 2022-06-1014-35-51\nSinGlobal = N)'),(75,'usuario_cadastrar','2022-06-10 11:35:52','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario41\n [txtNome] => Usuario de Teste 41\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario41\nNome = Usuario de Teste 41\nIdOrigem = [vazio])'),(76,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:35:54','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000016\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000016\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(77,'usuario_cadastrar','2022-06-10 11:35:55','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario42\n [txtNome] => Usuario de Teste 42\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario42\nNome = Usuario de Teste 42\nIdOrigem = [vazio])'),(78,'unidade_cadastrar','2022-06-10 11:35:58','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-35-57\n [txtDescricao] => Unidade 2022-06-1014-35-57\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-35-57\nDescricao = Unidade 2022-06-1014-35-57\nSinGlobal = N)'),(79,'usuario_cadastrar','2022-06-10 11:35:58','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario43\n [txtNome] => Usuario de Teste 43\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario43\nNome = Usuario de Teste 43\nIdOrigem = [vazio])'),(80,'usuario_cadastrar','2022-06-10 11:36:00','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario44\n [txtNome] => Usuario de Teste 44\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario44\nNome = Usuario de Teste 44\nIdOrigem = [vazio])'),(81,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000017\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000017\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(82,'usuario_cadastrar','2022-06-10 11:36:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario45\n [txtNome] => Usuario de Teste 45\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario45\nNome = Usuario de Teste 45\nIdOrigem = [vazio])'),(83,'usuario_cadastrar','2022-06-10 11:36:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario46\n [txtNome] => Usuario de Teste 46\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario46\nNome = Usuario de Teste 46\nIdOrigem = [vazio])'),(84,'unidade_cadastrar','2022-06-10 11:36:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-4\n [txtDescricao] => Unidade 2022-06-1014-36-4\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-4\nDescricao = Unidade 2022-06-1014-36-4\nSinGlobal = N)'),(85,'usuario_cadastrar','2022-06-10 11:36:07','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario47\n [txtNome] => Usuario de Teste 47\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario47\nNome = Usuario de Teste 47\nIdOrigem = [vazio])'),(86,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:08','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000018\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000018\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(87,'usuario_cadastrar','2022-06-10 11:36:09','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario48\n [txtNome] => Usuario de Teste 48\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario48\nNome = Usuario de Teste 48\nIdOrigem = [vazio])'),(88,'unidade_cadastrar','2022-06-10 11:36:11','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-10\n [txtDescricao] => Unidade 2022-06-1014-36-10\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-10\nDescricao = Unidade 2022-06-1014-36-10\nSinGlobal = N)'),(89,'usuario_cadastrar','2022-06-10 11:36:12','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario49\n [txtNome] => Usuario de Teste 49\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario49\nNome = Usuario de Teste 49\nIdOrigem = [vazio])'),(90,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000019\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000019\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(91,'usuario_cadastrar','2022-06-10 11:36:15','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario50\n [txtNome] => Usuario de Teste 50\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario50\nNome = Usuario de Teste 50\nIdOrigem = [vazio])'),(92,'usuario_cadastrar','2022-06-10 11:36:17','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario51\n [txtNome] => Usuario de Teste 51\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario51\nNome = Usuario de Teste 51\nIdOrigem = [vazio])'),(93,'unidade_cadastrar','2022-06-10 11:36:18','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-17\n [txtDescricao] => Unidade 2022-06-1014-36-17\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-17\nDescricao = Unidade 2022-06-1014-36-17\nSinGlobal = N)'),(94,'usuario_cadastrar','2022-06-10 11:36:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => usuario_cadastrar\n [acao_origem] => usuario_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b3e56a429bdff88f39815d2d627912eb3c9bd56d55836fc4e78445cbbc9b1a29\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUsuario] => Salvar\n [selOrgao] => 0\n [txtSigla] => usuario52\n [txtNome] => Usuario de Teste 52\n [txtIdOrigem] => \n [hdnIdUsuario] => \n)\n','UsuarioRN::cadastrarControlado(\n UsuarioDTO:\nSinAtivo = S\nIdUsuario = [null]\nIdOrgao = 0\nSigla = usuario52\nNome = Usuario de Teste 52\nIdOrigem = [vazio])'),(95,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:21','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000020\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000020\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(96,'login_padrao','2022-06-10 11:36:22','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = ba03f199ea84795afe648f10087626545658ba629162c6e7c442e600b86130a31a6294530123c13330b86f829ef9d7a2cb5163a9ac1d4bdfe21f58509b09606f\nIdSistema = 100000099\nLogin = 10/06/2022 11:36:22\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = ac640c46c27abcafe155c714d28976b40102dd9230e934e1f1252ce8705ceb5e4d847fef46f2a8ebb52d561e12eab349b7cd222f25557ed2bac3e1203fa53ad2\nHashUsuario = 75cf0ad206fc84bab5c6bf6a5cc0672407af4794dfa3ab4c04beccad18db3538dbf63fe3da958698cb1d78cc8760c2b3c1fb5be567a932aaf419396745072fb9\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(97,'unidade_cadastrar','2022-06-10 11:36:25','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-25\n [txtDescricao] => Unidade 2022-06-1014-36-25\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-25\nDescricao = Unidade 2022-06-1014-36-25\nSinGlobal = N)'),(98,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:27','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000021\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000021\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(99,'permissao_cadastrar','2022-06-10 11:36:28','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario3\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => \n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => \n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000002\n [hdnSiglaUsuario] => usuario3\n [hdnNomeUsuario] => Usuario de Teste 3\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000002\nSiglaUsuario = usuario3\nNomeUsuario = Usuario de Teste 3\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(100,'unidade_cadastrar','2022-06-10 11:36:31','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-30\n [txtDescricao] => Unidade 2022-06-1014-36-30\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-30\nDescricao = Unidade 2022-06-1014-36-30\nSinGlobal = N)'),(101,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:34','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000022\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000022\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(102,'permissao_cadastrar','2022-06-10 11:36:34','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario4\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000003\n [hdnSiglaUsuario] => usuario4\n [hdnNomeUsuario] => Usuario de Teste 4\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000003\nSiglaUsuario = usuario4\nNomeUsuario = Usuario de Teste 4\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(103,'unidade_cadastrar','2022-06-10 11:36:38','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-37\n [txtDescricao] => Unidade 2022-06-1014-36-37\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-37\nDescricao = Unidade 2022-06-1014-36-37\nSinGlobal = N)'),(104,'permissao_cadastrar','2022-06-10 11:36:40','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario5\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000005\n [hdnSiglaUsuario] => usuario5\n [hdnNomeUsuario] => Usuario de Teste 5\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000005\nSiglaUsuario = usuario5\nNomeUsuario = Usuario de Teste 5\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(105,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:40','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000023\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000023\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(106,'unidade_cadastrar','2022-06-10 11:36:44','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-43\n [txtDescricao] => Unidade 2022-06-1014-36-43\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-43\nDescricao = Unidade 2022-06-1014-36-43\nSinGlobal = N)'),(107,'permissao_cadastrar','2022-06-10 11:36:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario6\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000007\n [hdnSiglaUsuario] => usuario6\n [hdnNomeUsuario] => Usuario de Teste 6\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000007\nSiglaUsuario = usuario6\nNomeUsuario = Usuario de Teste 6\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(108,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:47','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000024\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000024\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(109,'unidade_cadastrar','2022-06-10 11:36:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-50\n [txtDescricao] => Unidade 2022-06-1014-36-50\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-50\nDescricao = Unidade 2022-06-1014-36-50\nSinGlobal = N)'),(110,'permissao_cadastrar','2022-06-10 11:36:51','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario7\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000008\n [hdnSiglaUsuario] => usuario7\n [hdnNomeUsuario] => Usuario de Teste 7\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000008\nSiglaUsuario = usuario7\nNomeUsuario = Usuario de Teste 7\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(111,'login_remover','2022-06-10 11:36:52','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = 248e1d9a10b6935e7e5014409884757d14374f62bcb9814697c6a74019931a5b5c7625f41c1b1f2dc77913583d62899f00444adf5e00574a9e116acd1a65189a\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000100\nSiglaOrgaoSistema = ME\nSiglaSistema = SEI\nHashInterno = ee767d36afb604b4b20784b124834d2ba81daf2f780dafc282a64c802cbd862dbe56d4b7abac738f09fa78617ed4590157933de4d3c43e404c204721fe9978c9\nHashUsuario = 8fa97f318cd45e5f9b0a7894a874b19d157c303eef6e174708537d9d3eaee7bd80cac06f6ef2b01190ccf4417e8f493d8570ba0ad869822e0f1d81316d85c975\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(112,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:53','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000025\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000025\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(113,'unidade_cadastrar','2022-06-10 11:36:56','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-36-55\n [txtDescricao] => Unidade 2022-06-1014-36-55\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-36-55\nDescricao = Unidade 2022-06-1014-36-55\nSinGlobal = N)'),(114,'permissao_cadastrar','2022-06-10 11:36:57','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario8\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000009\n [hdnSiglaUsuario] => usuario8\n [hdnNomeUsuario] => Usuario de Teste 8\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000009\nSiglaUsuario = usuario8\nNomeUsuario = Usuario de Teste 8\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(115,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:36:59','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000026\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000026\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(116,'permissao_cadastrar','2022-06-10 11:37:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario9\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000010\n [hdnSiglaUsuario] => usuario9\n [hdnNomeUsuario] => Usuario de Teste 9\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000010\nSiglaUsuario = usuario9\nNomeUsuario = Usuario de Teste 9\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(117,'unidade_cadastrar','2022-06-10 11:37:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-1\n [txtDescricao] => Unidade 2022-06-1014-37-1\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-1\nDescricao = Unidade 2022-06-1014-37-1\nSinGlobal = N)'),(118,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:04','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000027\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000027\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(119,'permissao_cadastrar','2022-06-10 11:37:07','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario10\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000011\n [hdnSiglaUsuario] => usuario10\n [hdnNomeUsuario] => Usuario de Teste 10\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000011\nSiglaUsuario = usuario10\nNomeUsuario = Usuario de Teste 10\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(120,'unidade_cadastrar','2022-06-10 11:37:08','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-8\n [txtDescricao] => Unidade 2022-06-1014-37-8\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-8\nDescricao = Unidade 2022-06-1014-37-8\nSinGlobal = N)'),(121,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:11','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000028\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000028\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(122,'permissao_cadastrar','2022-06-10 11:37:13','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario11\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000012\n [hdnSiglaUsuario] => usuario11\n [hdnNomeUsuario] => Usuario de Teste 11\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000012\nSiglaUsuario = usuario11\nNomeUsuario = Usuario de Teste 11\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(123,'unidade_cadastrar','2022-06-10 11:37:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-13\n [txtDescricao] => Unidade 2022-06-1014-37-13\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-13\nDescricao = Unidade 2022-06-1014-37-13\nSinGlobal = N)'),(124,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:16','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000029\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000029\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(125,'permissao_cadastrar','2022-06-10 11:37:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario12\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000013\n [hdnSiglaUsuario] => usuario12\n [hdnNomeUsuario] => Usuario de Teste 12\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000013\nSiglaUsuario = usuario12\nNomeUsuario = Usuario de Teste 12\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(126,'unidade_cadastrar','2022-06-10 11:37:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-18\n [txtDescricao] => Unidade 2022-06-1014-37-18\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-18\nDescricao = Unidade 2022-06-1014-37-18\nSinGlobal = N)'),(127,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:21','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000030\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000030\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(128,'permissao_cadastrar','2022-06-10 11:37:24','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario13\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000014\n [hdnSiglaUsuario] => usuario13\n [hdnNomeUsuario] => Usuario de Teste 13\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000014\nSiglaUsuario = usuario13\nNomeUsuario = Usuario de Teste 13\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(129,'unidade_cadastrar','2022-06-10 11:37:25','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-24\n [txtDescricao] => Unidade 2022-06-1014-37-24\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-24\nDescricao = Unidade 2022-06-1014-37-24\nSinGlobal = N)'),(130,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:27','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000031\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000031\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(131,'permissao_cadastrar','2022-06-10 11:37:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario14\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000015\n [hdnSiglaUsuario] => usuario14\n [hdnNomeUsuario] => Usuario de Teste 14\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000015\nSiglaUsuario = usuario14\nNomeUsuario = Usuario de Teste 14\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(132,'unidade_cadastrar','2022-06-10 11:37:30','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-29\n [txtDescricao] => Unidade 2022-06-1014-37-29\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-29\nDescricao = Unidade 2022-06-1014-37-29\nSinGlobal = N)'),(133,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:33','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000032\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000032\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(134,'permissao_cadastrar','2022-06-10 11:37:34','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario15\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000016\n [hdnSiglaUsuario] => usuario15\n [hdnNomeUsuario] => Usuario de Teste 15\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000016\nSiglaUsuario = usuario15\nNomeUsuario = Usuario de Teste 15\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(135,'unidade_cadastrar','2022-06-10 11:37:37','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-36\n [txtDescricao] => Unidade 2022-06-1014-37-36\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-36\nDescricao = Unidade 2022-06-1014-37-36\nSinGlobal = N)'),(136,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:39','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000033\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000033\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(137,'permissao_cadastrar','2022-06-10 11:37:40','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario16\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000017\n [hdnSiglaUsuario] => usuario16\n [hdnNomeUsuario] => Usuario de Teste 16\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000017\nSiglaUsuario = usuario16\nNomeUsuario = Usuario de Teste 16\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(138,'unidade_cadastrar','2022-06-10 11:37:43','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-42\n [txtDescricao] => Unidade 2022-06-1014-37-42\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-42\nDescricao = Unidade 2022-06-1014-37-42\nSinGlobal = N)'),(139,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:45','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000034\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000034\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(140,'permissao_cadastrar','2022-06-10 11:37:45','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario17\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000018\n [hdnSiglaUsuario] => usuario17\n [hdnNomeUsuario] => Usuario de Teste 17\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000018\nSiglaUsuario = usuario17\nNomeUsuario = Usuario de Teste 17\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(141,'unidade_cadastrar','2022-06-10 11:37:48','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-47\n [txtDescricao] => Unidade 2022-06-1014-37-47\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-47\nDescricao = Unidade 2022-06-1014-37-47\nSinGlobal = N)'),(142,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000035\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000035\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(143,'permissao_cadastrar','2022-06-10 11:37:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario18\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000019\n [hdnSiglaUsuario] => usuario18\n [hdnNomeUsuario] => Usuario de Teste 18\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000019\nSiglaUsuario = usuario18\nNomeUsuario = Usuario de Teste 18\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(144,'unidade_cadastrar','2022-06-10 11:37:53','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-52\n [txtDescricao] => Unidade 2022-06-1014-37-52\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-52\nDescricao = Unidade 2022-06-1014-37-52\nSinGlobal = N)'),(145,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:37:55','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000036\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000036\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(146,'permissao_cadastrar','2022-06-10 11:37:55','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario19\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000020\n [hdnSiglaUsuario] => usuario19\n [hdnNomeUsuario] => Usuario de Teste 19\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000020\nSiglaUsuario = usuario19\nNomeUsuario = Usuario de Teste 19\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(147,'unidade_cadastrar','2022-06-10 11:37:58','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-37-57\n [txtDescricao] => Unidade 2022-06-1014-37-57\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-37-57\nDescricao = Unidade 2022-06-1014-37-57\nSinGlobal = N)'),(148,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:00','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000037\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000037\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(149,'permissao_cadastrar','2022-06-10 11:38:00','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario20\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000021\n [hdnSiglaUsuario] => usuario20\n [hdnNomeUsuario] => Usuario de Teste 20\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000021\nSiglaUsuario = usuario20\nNomeUsuario = Usuario de Teste 20\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(150,'unidade_cadastrar','2022-06-10 11:38:03','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-2\n [txtDescricao] => Unidade 2022-06-1014-38-2\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-2\nDescricao = Unidade 2022-06-1014-38-2\nSinGlobal = N)'),(151,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000038\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000038\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(152,'permissao_cadastrar','2022-06-10 11:38:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario21\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000022\n [hdnSiglaUsuario] => usuario21\n [hdnNomeUsuario] => Usuario de Teste 21\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000022\nSiglaUsuario = usuario21\nNomeUsuario = Usuario de Teste 21\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(153,'unidade_cadastrar','2022-06-10 11:38:08','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-8\n [txtDescricao] => Unidade 2022-06-1014-38-8\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-8\nDescricao = Unidade 2022-06-1014-38-8\nSinGlobal = N)'),(154,'permissao_cadastrar','2022-06-10 11:38:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario22\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000023\n [hdnSiglaUsuario] => usuario22\n [hdnNomeUsuario] => Usuario de Teste 22\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000023\nSiglaUsuario = usuario22\nNomeUsuario = Usuario de Teste 22\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(155,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000039\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000039\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(156,'unidade_cadastrar','2022-06-10 11:38:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-13\n [txtDescricao] => Unidade 2022-06-1014-38-13\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-13\nDescricao = Unidade 2022-06-1014-38-13\nSinGlobal = N)'),(157,'permissao_cadastrar','2022-06-10 11:38:15','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario23\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000024\n [hdnSiglaUsuario] => usuario23\n [hdnNomeUsuario] => Usuario de Teste 23\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000024\nSiglaUsuario = usuario23\nNomeUsuario = Usuario de Teste 23\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(158,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:16','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000040\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000040\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(159,'unidade_cadastrar','2022-06-10 11:38:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-18\n [txtDescricao] => Unidade 2022-06-1014-38-18\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-18\nDescricao = Unidade 2022-06-1014-38-18\nSinGlobal = N)'),(160,'permissao_cadastrar','2022-06-10 11:38:20','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario24\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000025\n [hdnSiglaUsuario] => usuario24\n [hdnNomeUsuario] => Usuario de Teste 24\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000025\nSiglaUsuario = usuario24\nNomeUsuario = Usuario de Teste 24\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(161,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:21','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000041\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000041\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(162,'unidade_cadastrar','2022-06-10 11:38:24','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-24\n [txtDescricao] => Unidade 2022-06-1014-38-24\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-24\nDescricao = Unidade 2022-06-1014-38-24\nSinGlobal = N)'),(163,'permissao_cadastrar','2022-06-10 11:38:25','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario25\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000026\n [hdnSiglaUsuario] => usuario25\n [hdnNomeUsuario] => Usuario de Teste 25\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000026\nSiglaUsuario = usuario25\nNomeUsuario = Usuario de Teste 25\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(164,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:26','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000042\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000042\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(165,'unidade_cadastrar','2022-06-10 11:38:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => unidade_cadastrar\n [acao_origem] => unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => d203db8f22ab9a25b26550256eec394b2c702ea5e614954d854c9ac7fb8b7c9e\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarUnidade] => Salvar\n [selOrgao] => 0\n [txtSigla] => Un-2022-06-10-14-38-29\n [txtDescricao] => Unidade 2022-06-1014-38-29\n [txtIdOrigem] => \n [hdnIdUnidade] => \n)\n','UnidadeRN::cadastrarControlado(\n UnidadeDTO:\nSinAtivo = S\nIdUnidade = [null]\nIdOrgao = 0\nIdOrigem = [vazio]\nSigla = Un-2022-06-10-14-38-29\nDescricao = Unidade 2022-06-1014-38-29\nSinGlobal = N)'),(166,'permissao_cadastrar','2022-06-10 11:38:30','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario26\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000027\n [hdnSiglaUsuario] => usuario26\n [hdnNomeUsuario] => Usuario de Teste 26\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000027\nSiglaUsuario = usuario26\nNomeUsuario = Usuario de Teste 26\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(167,'rel_hierarquia_unidade_cadastrar','2022-06-10 11:38:32','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => rel_hierarquia_unidade_cadastrar\n [acao_origem] => rel_hierarquia_unidade_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 72b4a681dbe1a3c9bba4ba92aec9f5c71af60b3d22aebdf3e93ce873f97efd06\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarHierarquiaUnidade] => Salvar\n [selHierarquia] => 100000018\n [chkRaiz] => on\n [selUnidadeSuperior] => null\n [selOrgao] => 0\n [selUnidade] => 110000043\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdHierarquia] => 100000018\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnDataInicio] => \n)\n','RelHierarquiaUnidadeRN::cadastrarControlado(\n RelHierarquiaUnidadeDTO:\nSinAtivo = S\nIdHierarquia = 100000018\nIdHierarquiaPai = [null]\nIdUnidadePai = [null]\nIdOrgaoUnidade = 0\nIdUnidade = 110000043\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(168,'login_remover','2022-06-10 11:38:33','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = 920a112a55cc2d3459095c01b162f819e9df9669f6bd2fcbfdb415b6effdf475b900ee524d02fd7d2e262ca48f7ae8e748c6504ed891c26532956c94bef9ed0e\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000099\nSiglaOrgaoSistema = ME\nSiglaSistema = SIP\nHashInterno = c2c022d477b7c7848c972f3d2b656fe6bbba49683533cd6f21e4c44da5d69a501ae2ef9306fde8bc6ee8c10a941ccfeb541b74b8642ea124fad8559190b8858d\nHashUsuario = 1a4df64cb4e09c593a9082396c13884d04ce09b785aac55699c0642719bc0369c41c5d983e2da3da4967f14d54013d07631d6734378be2f5fff4103b4689d818\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(169,'permissao_cadastrar','2022-06-10 11:38:35','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario27\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000028\n [hdnSiglaUsuario] => usuario27\n [hdnNomeUsuario] => Usuario de Teste 27\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000028\nSiglaUsuario = usuario27\nNomeUsuario = Usuario de Teste 27\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(170,'login_padrao','2022-06-10 11:38:37','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = 6e02960d1b5e0fa59be65bee58754fc37bdcf148ef452dd5cd18f6cc3b0626033d5fd9299a63d520e09a88405981ff00baccd25df383198746092c257c05a259\nIdSistema = 100000099\nLogin = 10/06/2022 11:38:37\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = 503da1ba2b141087f13134a7235511c015092e72a50341626b33a9b648b2945eb466b23c8415c9401c490dc972f75900497b704a2246a4de32f487bfb6ad9d14\nHashUsuario = 6513d8d1bc589624ac019e04769a743d447abef07d3ac1f2438f0dfc2937b76aa090aa880c1f7347b6c6983b18dde056bb9941a07d8c1ac41f80397e7b3ddd8e\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(171,'permissao_cadastrar','2022-06-10 11:38:41','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario28\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000029\n [hdnSiglaUsuario] => usuario28\n [hdnNomeUsuario] => Usuario de Teste 28\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000029\nSiglaUsuario = usuario28\nNomeUsuario = Usuario de Teste 28\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(172,'permissao_cadastrar','2022-06-10 11:38:42','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6585bf5cdab7443616a87b2cc98631efd2a432e29ab2f7b629684ce7ed3ab82\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000001\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario1\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => \n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => \n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000004\n [hdnSiglaUsuario] => usuario1\n [hdnNomeUsuario] => Usuario de Teste 1\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000001\nIdOrgaoUsuario = 0\nIdUsuario = 100000004\nSiglaUsuario = usuario1\nNomeUsuario = Usuario de Teste 1\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(173,'login_remover','2022-06-10 11:38:43','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = 6e02960d1b5e0fa59be65bee58754fc37bdcf148ef452dd5cd18f6cc3b0626033d5fd9299a63d520e09a88405981ff00baccd25df383198746092c257c05a259\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000099\nSiglaOrgaoSistema = ME\nSiglaSistema = SIP\nHashInterno = 503da1ba2b141087f13134a7235511c015092e72a50341626b33a9b648b2945eb466b23c8415c9401c490dc972f75900497b704a2246a4de32f487bfb6ad9d14\nHashUsuario = 6513d8d1bc589624ac019e04769a743d447abef07d3ac1f2438f0dfc2937b76aa090aa880c1f7347b6c6983b18dde056bb9941a07d8c1ac41f80397e7b3ddd8e\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(174,'login_padrao','2022-06-10 11:38:45','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = 2e9c76eb2eb05d62b1ce0f68acef0aa92f0b06ad980ecf4a47faa4edfbdb2ed15f214162a2fb58d57c533ed6bcaf9252486ea1ee8cdcd5df976fb02b1698b0e8\nIdSistema = 100000099\nLogin = 10/06/2022 11:38:45\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = de9dddde4bbff4c46b0fc44ec45fa9b87816d325cd567a29f29fbe6f618f3534503d3fdc8436b701c9db607dfd60502955772aa22be7510693c8cb5046a05eed\nHashUsuario = 2d8df6550a6f053d0e5bb91c4fdd0022fd90636e129e4763517de1eb42aabedbfab3a5fb708ff035dc3407362224c4c2991184394a61d3a7ba0bc0a6872e3c88\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(175,'permissao_cadastrar','2022-06-10 11:38:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario29\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000030\n [hdnSiglaUsuario] => usuario29\n [hdnNomeUsuario] => Usuario de Teste 29\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000030\nSiglaUsuario = usuario29\nNomeUsuario = Usuario de Teste 29\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(176,'permissao_cadastrar','2022-06-10 11:38:50','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => fa04e28dd56f731ba5081f057c54dace8af95d3118ba9a03edeec412aeca7221\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000002\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario1\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => \n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => \n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000004\n [hdnSiglaUsuario] => usuario1\n [hdnNomeUsuario] => Usuario de Teste 1\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000002\nIdOrgaoUsuario = 0\nIdUsuario = 100000004\nSiglaUsuario = usuario1\nNomeUsuario = Usuario de Teste 1\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(177,'login_remover','2022-06-10 11:38:51','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = 2e9c76eb2eb05d62b1ce0f68acef0aa92f0b06ad980ecf4a47faa4edfbdb2ed15f214162a2fb58d57c533ed6bcaf9252486ea1ee8cdcd5df976fb02b1698b0e8\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000099\nSiglaOrgaoSistema = ME\nSiglaSistema = SIP\nHashInterno = de9dddde4bbff4c46b0fc44ec45fa9b87816d325cd567a29f29fbe6f618f3534503d3fdc8436b701c9db607dfd60502955772aa22be7510693c8cb5046a05eed\nHashUsuario = 2d8df6550a6f053d0e5bb91c4fdd0022fd90636e129e4763517de1eb42aabedbfab3a5fb708ff035dc3407362224c4c2991184394a61d3a7ba0bc0a6872e3c88\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(178,'permissao_cadastrar','2022-06-10 11:38:51','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario30\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000031\n [hdnSiglaUsuario] => usuario30\n [hdnNomeUsuario] => Usuario de Teste 30\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000031\nSiglaUsuario = usuario30\nNomeUsuario = Usuario de Teste 30\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(179,'login_padrao','2022-06-10 11:38:53','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = e7e59cc8358a6d0d6c92d09c33960ccf8d4fb5950154b61c1d0461c632d10127a827aca46cb3a12d0c27d62564c5434600a41acba06755a68b00688d000045c1\nIdSistema = 100000099\nLogin = 10/06/2022 11:38:53\nIdUsuario = 100000001\nIdContexto = [null]\nIdGrupoRede = [null]\nIdUsuarioEmulador = [null]\nHashInterno = 873340f3cf03192593185a99cbe469c6fdfb83e4661557504570c0b8446228479eea87a5300dd61f0060c41bb0e77b5212ee295d94f267cc494b696aee087127\nHashUsuario = 2b13d628ce92cfbdae6038ed71ff11d6fe7986d92d8c75695e33a723ef233002b1b1f253466a92c4119f52aada6abdb6c2fd7c52f7aef4c71417121503391e15\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nDnUsuario = [null]\nSinValidado = N\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ME\nDescricaoOrgaoUsuario = ME\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nSiglaSistema = SIP\nPaginaInicialSistema = http://sei3.nuvem.gov.br/sip\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ME\nDescricaoOrgaoSistema = ME\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(180,'permissao_cadastrar','2022-06-10 11:38:57','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario31\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000032\n [hdnSiglaUsuario] => usuario31\n [hdnNomeUsuario] => Usuario de Teste 31\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000032\nSiglaUsuario = usuario31\nNomeUsuario = Usuario de Teste 31\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(181,'permissao_cadastrar','2022-06-10 11:38:59','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => 126dac3c4100c0012e9b2038d1bd91043640b7b10845f9e57f9b94171c04f707\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario2\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => \n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => \n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => \n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000006\n [hdnSiglaUsuario] => usuario2\n [hdnNomeUsuario] => Usuario de Teste 2\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000006\nSiglaUsuario = usuario2\nNomeUsuario = Usuario de Teste 2\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(182,'login_remover','2022-06-10 11:38:59','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ME',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'sei3.nuvem.gov.br (127.0.0.1)','PHP-SOAP/5.6.40','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = e7e59cc8358a6d0d6c92d09c33960ccf8d4fb5950154b61c1d0461c632d10127a827aca46cb3a12d0c27d62564c5434600a41acba06755a68b00688d000045c1\nIdUsuario = 100000001\nIdContexto = [null]\nIdSistema = 100000099\nSiglaOrgaoSistema = ME\nSiglaSistema = SIP\nHashInterno = 873340f3cf03192593185a99cbe469c6fdfb83e4661557504570c0b8446228479eea87a5300dd61f0060c41bb0e77b5212ee295d94f267cc494b696aee087127\nHashUsuario = 2b13d628ce92cfbdae6038ed71ff11d6fe7986d92d8c75695e33a723ef233002b1b1f253466a92c4119f52aada6abdb6c2fd7c52f7aef4c71417121503391e15\nHashAgente = d7fb5ecbd9423714d73313d7da0afca87fce6f91b48d92721742f0a681f9ade85422956168a947bc93636e65d28da4720e0dbb54c960514bf5284d1fc2736986\nIdOrgaoUsuario = 0\nSiglaUsuario = teste\nNomeUsuario = Usuário de Testes\nIdOrigemUsuario = [null]\nIdOrgaoContexto = [null]\nSiglaOrgaoContexto = [null]\nDescricaoOrgaoContexto = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nIdUsuarioEmulador = [null]\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null])'),(183,'permissao_cadastrar','2022-06-10 11:39:02','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario32\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000033\n [hdnSiglaUsuario] => usuario32\n [hdnNomeUsuario] => Usuario de Teste 32\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000033\nSiglaUsuario = usuario32\nNomeUsuario = Usuario de Teste 32\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(184,'permissao_cadastrar','2022-06-10 11:39:07','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario33\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000034\n [hdnSiglaUsuario] => usuario33\n [hdnNomeUsuario] => Usuario de Teste 33\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000034\nSiglaUsuario = usuario33\nNomeUsuario = Usuario de Teste 33\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(185,'permissao_cadastrar','2022-06-10 11:39:11','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario34\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000035\n [hdnSiglaUsuario] => usuario34\n [hdnNomeUsuario] => Usuario de Teste 34\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000035\nSiglaUsuario = usuario34\nNomeUsuario = Usuario de Teste 34\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(186,'permissao_cadastrar','2022-06-10 11:39:17','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario35\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000036\n [hdnSiglaUsuario] => usuario35\n [hdnNomeUsuario] => Usuario de Teste 35\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000036\nSiglaUsuario = usuario35\nNomeUsuario = Usuario de Teste 35\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(187,'permissao_cadastrar','2022-06-10 11:39:22','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario36\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000037\n [hdnSiglaUsuario] => usuario36\n [hdnNomeUsuario] => Usuario de Teste 36\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000037\nSiglaUsuario = usuario36\nNomeUsuario = Usuario de Teste 36\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(188,'permissao_cadastrar','2022-06-10 11:39:26','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario37\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000038\n [hdnSiglaUsuario] => usuario37\n [hdnNomeUsuario] => Usuario de Teste 37\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000038\nSiglaUsuario = usuario37\nNomeUsuario = Usuario de Teste 37\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(189,'permissao_cadastrar','2022-06-10 11:39:31','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario38\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000039\n [hdnSiglaUsuario] => usuario38\n [hdnNomeUsuario] => Usuario de Teste 38\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000039\nSiglaUsuario = usuario38\nNomeUsuario = Usuario de Teste 38\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(190,'permissao_cadastrar','2022-06-10 11:39:36','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario39\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000040\n [hdnSiglaUsuario] => usuario39\n [hdnNomeUsuario] => Usuario de Teste 39\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000040\nSiglaUsuario = usuario39\nNomeUsuario = Usuario de Teste 39\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(191,'permissao_cadastrar','2022-06-10 11:39:41','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario40\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000041\n [hdnSiglaUsuario] => usuario40\n [hdnNomeUsuario] => Usuario de Teste 40\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000041\nSiglaUsuario = usuario40\nNomeUsuario = Usuario de Teste 40\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(192,'permissao_cadastrar','2022-06-10 11:39:46','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario41\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000042\n [hdnSiglaUsuario] => usuario41\n [hdnNomeUsuario] => Usuario de Teste 41\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000042\nSiglaUsuario = usuario41\nNomeUsuario = Usuario de Teste 41\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(193,'permissao_cadastrar','2022-06-10 11:39:51','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario42\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000043\n [hdnSiglaUsuario] => usuario42\n [hdnNomeUsuario] => Usuario de Teste 42\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000043\nSiglaUsuario = usuario42\nNomeUsuario = Usuario de Teste 42\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(194,'permissao_cadastrar','2022-06-10 11:39:56','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario43\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000044\n [hdnSiglaUsuario] => usuario43\n [hdnNomeUsuario] => Usuario de Teste 43\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000044\nSiglaUsuario = usuario43\nNomeUsuario = Usuario de Teste 43\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(195,'permissao_cadastrar','2022-06-10 11:40:01','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario44\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000045\n [hdnSiglaUsuario] => usuario44\n [hdnNomeUsuario] => Usuario de Teste 44\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000045\nSiglaUsuario = usuario44\nNomeUsuario = Usuario de Teste 44\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(196,'permissao_cadastrar','2022-06-10 11:40:05','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario45\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000046\n [hdnSiglaUsuario] => usuario45\n [hdnNomeUsuario] => Usuario de Teste 45\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000046\nSiglaUsuario = usuario45\nNomeUsuario = Usuario de Teste 45\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(197,'permissao_cadastrar','2022-06-10 11:40:10','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario46\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000047\n [hdnSiglaUsuario] => usuario46\n [hdnNomeUsuario] => Usuario de Teste 46\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000047\nSiglaUsuario = usuario46\nNomeUsuario = Usuario de Teste 46\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(198,'permissao_cadastrar','2022-06-10 11:40:14','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario47\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000048\n [hdnSiglaUsuario] => usuario47\n [hdnNomeUsuario] => Usuario de Teste 47\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000048\nSiglaUsuario = usuario47\nNomeUsuario = Usuario de Teste 47\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(199,'permissao_cadastrar','2022-06-10 11:40:19','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario48\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000049\n [hdnSiglaUsuario] => usuario48\n [hdnNomeUsuario] => Usuario de Teste 48\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000049\nSiglaUsuario = usuario48\nNomeUsuario = Usuario de Teste 48\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(200,'permissao_cadastrar','2022-06-10 11:40:24','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario49\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000050\n [hdnSiglaUsuario] => usuario49\n [hdnNomeUsuario] => Usuario de Teste 49\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000050\nSiglaUsuario = usuario49\nNomeUsuario = Usuario de Teste 49\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(201,'permissao_cadastrar','2022-06-10 11:40:29','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario50\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000051\n [hdnSiglaUsuario] => usuario50\n [hdnNomeUsuario] => Usuario de Teste 50\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000051\nSiglaUsuario = usuario50\nNomeUsuario = Usuario de Teste 50\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(202,'permissao_cadastrar','2022-06-10 11:40:35','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario51\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000052\n [hdnSiglaUsuario] => usuario51\n [hdnNomeUsuario] => Usuario de Teste 51\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000052\nSiglaUsuario = usuario51\nNomeUsuario = Usuario de Teste 51\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(203,'permissao_cadastrar','2022-06-10 11:40:39','10.209.42.147',100000001,'teste','Usuário de Testes',0,'ME',NULL,NULL,NULL,NULL,NULL,110000001,'TESTE','Unidade de Teste 1',0,'ME','sei3.nuvem.gov.br (10.42.188.255)','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36','GET - Array\n(\n [acao] => permissao_cadastrar\n [acao_origem] => permissao_cadastrar\n [infra_sistema] => 100000099\n [infra_unidade_atual] => 110000001\n [infra_hash] => b6a14be450835c41a7de014416c3ec4fab4e340d9931d657eddc7a2e935f43a0\n)\n\nPOST - Array\n(\n [hdnInfraTipoPagina] => 1\n [sbmCadastrarPermissao] => Salvar\n [selOrgaoSistema] => 0\n [selSistema] => 100000100\n [selOrgaoUnidade] => 0\n [selUnidade] => 110000003\n [selOrgaoUsuario] => 0\n [txtUsuario] => usuario52\n [selPerfil] => 100000938\n [selTipoPermissao] => 1\n [txtDataInicio] => 10/06/2022\n [txtDataFim] => \n [hdnIdPerfil] => 100000938\n [hdnIdOrgaoSistema] => 0\n [hdnIdSistema] => 100000100\n [hdnIdOrgaoUnidade] => 0\n [hdnIdUnidade] => 110000003\n [hdnIdOrgaoUsuario] => 0\n [hdnIdUsuario] => 100000053\n [hdnSiglaUsuario] => usuario52\n [hdnNomeUsuario] => Usuario de Teste 52\n)\n','PermissaoRN::cadastrarControlado(\n PermissaoDTO:\nIdOrgaoSistema = 0\nIdSistema = 100000100\nIdOrgaoUnidade = 0\nIdUnidade = 110000003\nIdOrgaoUsuario = 0\nIdUsuario = 100000053\nSiglaUsuario = usuario52\nNomeUsuario = Usuario de Teste 52\nIdPerfil = 100000938\nIdTipoPermissao = 1\nSinSubunidades = N\nDataInicio = 10/06/2022\nDataFim = [vazio])'),(204,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = modulo_listar\nDescricao = [null]\nCaminho = controlador.php?acao=modulo_listar\nSinAtivo = S)'),(205,'item_menu_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = 100000078\nIdItemMenuPai = 100005400\nIdSistema = 100000099\nIdRecurso = 100015554\nRotulo = Módulos\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(206,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = infra_atributo_cache_listar\nDescricao = [null]\nCaminho = controlador.php?acao=infra_atributo_cache_listar\nSinAtivo = S)'),(207,'item_menu_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = 100000078\nIdItemMenuPai = 100005400\nIdSistema = 100000099\nIdRecurso = 100015555\nRotulo = Cache em Memória\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(208,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = infra_atributo_cache_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=infra_atributo_cache_excluir\nSinAtivo = S)'),(209,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = infra_atributo_cache_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=infra_atributo_cache_consultar\nSinAtivo = S)'),(210,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = infra_acesso_usuario_listar\nDescricao = [null]\nCaminho = controlador.php?acao=infra_acesso_usuario_listar\nSinAtivo = S)'),(211,'recurso_cadastrar','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = infra_trocar_unidade\nDescricao = [null]\nCaminho = controlador.php?acao=infra_trocar_unidade\nSinAtivo = S)'),(212,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005426\n})'),(213,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(214,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014318\n})'),(215,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(216,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014321\n})'),(217,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(218,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014320\n})'),(219,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(220,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014322\n})'),(221,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005434\n})'),(222,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(223,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014319\n})'),(224,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(225,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014323\n})'),(226,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005608\n})'),(227,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(228,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100015189\n})'),(229,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005445\n})'),(230,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(231,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014425\n})'),(232,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(233,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014426\n})'),(234,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(235,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014427\n})'),(236,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(237,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014430\n})'),(238,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005447\n})'),(239,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(240,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014428\n})'),(241,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(242,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014429\n})'),(243,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(244,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014431\n})'),(245,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(246,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014432\n})'),(247,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(248,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014434\n})'),(249,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000078\nIdItemMenu = 100005455\n})'),(250,'item_menu_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(251,'recurso_excluir','2022-06-10 13:27:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014433\n})'),(252,'recurso_cadastrar','2022-06-10 13:27:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = login_listar\nDescricao = [null]\nCaminho = controlador.php?acao=login_listar\nSinAtivo = S)'),(253,'item_menu_cadastrar','2022-06-10 13:27:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000099\nIdRecurso = 100015560\nRotulo = Acessos\nDescricao = [null]\nIcone = [null]\nSequencia = 140\nSinNovaJanela = N\nSinAtivo = S)'),(254,'recurso_cadastrar','2022-06-10 13:27:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = login_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=login_consultar\nSinAtivo = S)'),(255,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = email_sistema_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=email_sistema_alterar\nSinAtivo = S)'),(256,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = email_sistema_listar\nDescricao = [null]\nCaminho = controlador.php?acao=email_sistema_listar\nSinAtivo = S)'),(257,'item_menu_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000099\nIdRecurso = 100015563\nRotulo = E-mails do Sistema\nDescricao = [null]\nIcone = [null]\nSequencia = 130\nSinNovaJanela = N\nSinAtivo = S)'),(258,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = email_sistema_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=email_sistema_consultar\nSinAtivo = S)'),(259,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = email_sistema_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=email_sistema_desativar\nSinAtivo = S)'),(260,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = email_sistema_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=email_sistema_reativar\nSinAtivo = S)'),(261,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = ajuda_variaveis_email_sistema\nDescricao = [null]\nCaminho = controlador.php?acao=ajuda_variaveis_email_sistema\nSinAtivo = S)'),(262,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_acesso_listar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_acesso_listar\nSinAtivo = S)'),(263,'item_menu_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000078\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000099\nIdRecurso = 100015568\nRotulo = Autenticação em 2 Fatores\nDescricao = [null]\nIcone = [null]\nSequencia = 160\nSinNovaJanela = N\nSinAtivo = S)'),(264,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_acesso_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_acesso_consultar\nSinAtivo = S)'),(265,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_acesso_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_acesso_excluir\nSinAtivo = S)'),(266,'recurso_cadastrar','2022-06-10 13:27:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_acesso_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_acesso_desativar\nSinAtivo = S)'),(267,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_acesso_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_acesso_reativar\nSinAtivo = S)'),(268,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = dispositivo_acesso_listar\nDescricao = [null]\nCaminho = controlador.php?acao=dispositivo_acesso_listar\nSinAtivo = S)'),(269,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = dispositivo_acesso_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=dispositivo_acesso_consultar\nSinAtivo = S)'),(270,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_bloqueio_listar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_bloqueio_listar\nSinAtivo = S)'),(271,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = codigo_bloqueio_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=codigo_bloqueio_consultar\nSinAtivo = S)'),(272,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = usuario_historico_listar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_historico_listar\nSinAtivo = S)'),(273,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = usuario_historico_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_historico_consultar\nSinAtivo = S)'),(274,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = usuario_historico_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_historico_cadastrar\nSinAtivo = S)'),(275,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = usuario_bloquear\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_bloquear\nSinAtivo = S)'),(276,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = usuario_desbloquear\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_desbloquear\nSinAtivo = S)'),(277,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = sistema_gerar_chave_acesso\nDescricao = [null]\nCaminho = controlador.php?acao=sistema_gerar_chave_acesso\nSinAtivo = S)'),(278,'recurso_cadastrar','2022-06-10 13:27:28',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000099\nNome = sistema_servico_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=sistema_servico_selecionar\nSinAtivo = S)'),(279,'login_padrao','2022-06-10 13:33:41','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ABC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'localhost (127.0.0.1)','PHP-SOAP/7.3.28','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::logarControlado(\n LoginDTO:\nIdLogin = d207f92c2fe2b1627d4f1259a872e18952a1fdefd8cae088b32b84cfc6a8baa9d2617b0bcee16bb3352be77321afaef059ae7a8247b92e0268ac30b944d85297\nIdSistema = 100000100\nLogin = 10/06/2022 13:33:40\nIdUsuario = 100000001\nIdUsuarioEmulador = [null]\nIdCodigoAcesso = [null]\nIdDispositivoAcesso = [null]\nHashInterno = 342e6ab7d3d298b886ac2b9cad64937179a085f2986b3d6728d2466d6042aaa4e369ae96d8735df23cbb799ef9cb635d7c55c320eb56c7bff0aeb3b0476ce4d8\nHashUsuario = 640dac94ae5e5c108a68aaf8d844acac14be991b5b0ed68fc056407382f5728389bdcc3cbbf9c2da82fa720b62ab35b99263cfdc5155fb5726829accdc60f8cd\nHashAgente = fea94743f988cdb74573813650216e8c8160a366053e0434154c80d0878f51667594763976629dddd7de2eb4f38bb0fd5d5fb63edad7538e4dac29a534eb2e34\nHttpClientIp = [null]\nHttpXForwardedFor = [null]\nRemoteAddr = 172.21.0.1\nUserAgent = Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36\nStaLogin = C\nSiglaUsuario = teste\nIdOrgaoUsuario = 0\nSiglaOrgaoUsuario = ABC\nDescricaoOrgaoUsuario = ABC\nNomeUsuario = Usuário de Testes\nNomeRegistroCivilUsuario = Usuário de Testes\nNomeSocialUsuario = [null]\nIdOrigemUsuario = [null]\nSinBloqueadoUsuario = N\nSiglaSistema = SEI\nDescricaoSistema = Sistema Eletrônico de Informações\nPaginaInicialSistema = http://localhost:8000/sei/inicializar.php\nIdOrgaoSistema = 0\nSiglaOrgaoSistema = ABC\nDescricaoOrgaoSistema = ABC\nSiglaUsuarioEmulador = [null]\nNomeUsuarioEmulador = [null]\nIdOrgaoUsuarioEmulador = [null]\nSiglaOrgaoUsuarioEmulador = [null]\nDescricaoOrgaoUsuarioEmulador = [null]\nUltimoLogin = 10/06/2022 13:29:21\nInfraSessaoDTO = InfraSessaoDTO\nHierarquia = [null])'),(280,'item_menu_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000100\nIdRecurso = [null]\nRotulo = Blocos\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(281,'recurso_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acompanhamento_gerenciar\nDescricao = [null]\nCaminho = controlador.php?acao=acompanhamento_gerenciar\nSinAtivo = S)'),(282,'recurso_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acompanhamento_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=acompanhamento_selecionar\nSinAtivo = S)'),(283,'recurso_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acompanhamento_alterar_grupo\nDescricao = [null]\nCaminho = controlador.php?acao=acompanhamento_alterar_grupo\nSinAtivo = S)'),(284,'recurso_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_marcador_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_marcador_alterar\nSinAtivo = S)'),(285,'recurso_cadastrar','2022-06-10 13:33:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_marcador_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_marcador_cadastrar\nSinAtivo = S)'),(286,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_marcador_remover\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_marcador_remover\nSinAtivo = S)'),(287,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = marcador_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=marcador_selecionar\nSinAtivo = S)'),(288,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = painel_controle_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=painel_controle_configurar\nSinAtivo = S)'),(289,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = painel_controle_visualizar\nDescricao = [null]\nCaminho = controlador.php?acao=painel_controle_visualizar\nSinAtivo = S)'),(290,'item_menu_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000100\nIdRecurso = 100015592\nRotulo = Painel de Controle\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(291,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = procedimento_configurar_detalhe\nDescricao = [null]\nCaminho = controlador.php?acao=procedimento_configurar_detalhe\nSinAtivo = S)'),(292,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_marcador_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_marcador_cadastrar\nSinAtivo = S)'),(293,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_marcador_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_marcador_configurar\nSinAtivo = S)'),(294,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_marcador_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_marcador_excluir\nSinAtivo = S)'),(295,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_marcador_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_marcador_listar\nSinAtivo = S)'),(296,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_marcador_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_marcador_selecionar\nSinAtivo = S)'),(297,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_acomp_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_acomp_cadastrar\nSinAtivo = S)'),(298,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_acomp_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_acomp_configurar\nSinAtivo = S)'),(299,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_acomp_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_acomp_excluir\nSinAtivo = S)'),(300,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_acomp_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_acomp_listar\nSinAtivo = S)'),(301,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_acomp_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_acomp_selecionar\nSinAtivo = S)'),(302,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_usuario_unidade_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_usuario_unidade_cadastrar\nSinAtivo = S)'),(303,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_usuario_unidade_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_usuario_unidade_configurar\nSinAtivo = S)'),(304,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_usuario_unidade_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_usuario_unidade_excluir\nSinAtivo = S)'),(305,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_usuario_unidade_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_usuario_unidade_listar\nSinAtivo = S)'),(306,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_usuario_unidade_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_usuario_unidade_selecionar\nSinAtivo = S)'),(307,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_tipo_proced_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_tipo_proced_cadastrar\nSinAtivo = S)'),(308,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_tipo_proced_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_tipo_proced_configurar\nSinAtivo = S)'),(309,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_tipo_proced_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_tipo_proced_excluir\nSinAtivo = S)'),(310,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_tipo_proced_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_tipo_proced_listar\nSinAtivo = S)'),(311,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_tipo_proced_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_tipo_proced_selecionar\nSinAtivo = S)'),(312,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = arquivamento_cancelar\nDescricao = [null]\nCaminho = controlador.php?acao=arquivamento_cancelar\nSinAtivo = S)'),(313,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_historico_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_historico_alterar\nSinAtivo = S)'),(314,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_historico_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_historico_cadastrar\nSinAtivo = S)'),(315,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_historico_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_historico_excluir\nSinAtivo = S)'),(316,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_historico_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_historico_alterar\nSinAtivo = S)'),(317,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_historico_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_historico_cadastrar\nSinAtivo = S)'),(318,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_historico_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_historico_excluir\nSinAtivo = S)'),(319,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_historico_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_historico_consultar\nSinAtivo = S)'),(320,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_historico_listar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_historico_listar\nSinAtivo = S)'),(321,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_historico_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_historico_consultar\nSinAtivo = S)'),(322,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_historico_listar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_historico_listar\nSinAtivo = S)'),(323,'item_menu_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005479\nIdSistema = 100000100\nIdRecurso = [null]\nRotulo = Títulos\nDescricao = [null]\nIcone = [null]\nSequencia = 90\nSinNovaJanela = N\nSinAtivo = S)'),(324,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_listar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_listar\nSinAtivo = S)'),(325,'item_menu_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005679\nIdSistema = 100000100\nIdRecurso = 100015625\nRotulo = Listar\nDescricao = [null]\nIcone = [null]\nSequencia = 2\nSinNovaJanela = N\nSinAtivo = S)'),(326,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_consultar\nSinAtivo = S)'),(327,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_cadastrar\nSinAtivo = S)'),(328,'item_menu_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005679\nIdSistema = 100000100\nIdRecurso = 100015627\nRotulo = Novo\nDescricao = [null]\nIcone = [null]\nSequencia = 1\nSinNovaJanela = N\nSinAtivo = S)'),(329,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_alterar\nSinAtivo = S)'),(330,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_excluir\nSinAtivo = S)'),(331,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_desativar\nSinAtivo = S)'),(332,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_reativar\nSinAtivo = S)'),(333,'item_menu_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005679\nIdSistema = 100000100\nIdRecurso = 100015631\nRotulo = Reativar\nDescricao = [null]\nIcone = [null]\nSequencia = 3\nSinNovaJanela = N\nSinAtivo = S)'),(334,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = titulo_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=titulo_selecionar\nSinAtivo = S)'),(335,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = contato_gerar_relatorios\nDescricao = [null]\nCaminho = controlador.php?acao=contato_gerar_relatorios\nSinAtivo = S)'),(336,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = editor_simular\nDescricao = [null]\nCaminho = controlador.php?acao=editor_simular\nSinAtivo = S)'),(337,'recurso_cadastrar','2022-06-10 13:33:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_definir\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_definir\nSinAtivo = S)'),(338,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_concluir\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_concluir\nSinAtivo = S)'),(339,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_cadastrar\nSinAtivo = S)'),(340,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_alterar\nSinAtivo = S)'),(341,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_excluir\nSinAtivo = S)'),(342,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_consultar\nSinAtivo = S)'),(343,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = controle_prazo_listar\nDescricao = [null]\nCaminho = controlador.php?acao=controle_prazo_listar\nSinAtivo = S)'),(344,'item_menu_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = [null]\nIdItemMenuPai = [null]\nIdSistema = 100000100\nIdRecurso = 100015641\nRotulo = Controle de Prazos\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(345,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = comentario_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=comentario_cadastrar\nSinAtivo = S)'),(346,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = comentario_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=comentario_alterar\nSinAtivo = S)'),(347,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = comentario_listar\nDescricao = [null]\nCaminho = controlador.php?acao=comentario_listar\nSinAtivo = S)'),(348,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = comentario_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=comentario_consultar\nSinAtivo = S)'),(349,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = comentario_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=comentario_excluir\nSinAtivo = S)'),(350,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = infra_acesso_usuario_listar\nDescricao = [null]\nCaminho = controlador.php?acao=infra_acesso_usuario_listar\nSinAtivo = S)'),(351,'item_menu_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005479\nIdSistema = 100000100\nIdRecurso = [null]\nRotulo = Categorias\nDescricao = [null]\nIcone = [null]\nSequencia = 100\nSinNovaJanela = N\nSinAtivo = S)'),(352,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_consultar\nSinAtivo = S)'),(353,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_listar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_listar\nSinAtivo = S)'),(354,'item_menu_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005684\nIdSistema = 100000100\nIdRecurso = 100015649\nRotulo = Listar\nDescricao = [null]\nIcone = [null]\nSequencia = 20\nSinNovaJanela = N\nSinAtivo = S)'),(355,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_cadastrar\nSinAtivo = S)'),(356,'item_menu_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005684\nIdSistema = 100000100\nIdRecurso = 100015650\nRotulo = Nova\nDescricao = [null]\nIcone = [null]\nSequencia = 10\nSinNovaJanela = N\nSinAtivo = S)'),(357,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_alterar\nSinAtivo = S)'),(358,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_excluir\nSinAtivo = S)'),(359,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_desativar\nSinAtivo = S)'),(360,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = categoria_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=categoria_reativar\nSinAtivo = S)'),(361,'item_menu_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005684\nIdSistema = 100000100\nIdRecurso = 100015654\nRotulo = Reativar\nDescricao = [null]\nIcone = [null]\nSequencia = 30\nSinNovaJanela = N\nSinAtivo = S)'),(362,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = procedimento_credencial_renovar\nDescricao = [null]\nCaminho = controlador.php?acao=procedimento_credencial_renovar\nSinAtivo = S)'),(363,'item_menu_alterar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::alterarControlado(\n ItemMenuDTO:\nRotulo = Favoritos\nIdMenu = 100000079\nIdItemMenu = 100005600)'),(364,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_modelo_gerenciar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_modelo_gerenciar\nSinAtivo = S)'),(365,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_navegar\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_navegar\nSinAtivo = S)'),(366,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_priorizar\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_priorizar\nSinAtivo = S)'),(367,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_revisar\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_revisar\nSinAtivo = S)'),(368,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_atribuir\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_atribuir\nSinAtivo = S)'),(369,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_comentar\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_comentar\nSinAtivo = S)'),(370,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_acesso_ext_serie_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_acesso_ext_serie_cadastrar\nSinAtivo = S)'),(371,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_acesso_ext_serie_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_acesso_ext_serie_consultar\nSinAtivo = S)'),(372,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_acesso_ext_serie_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_acesso_ext_serie_excluir\nSinAtivo = S)'),(373,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_acesso_ext_serie_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_acesso_ext_serie_listar\nSinAtivo = S)'),(374,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_acesso_ext_serie_detalhar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_acesso_ext_serie_detalhar\nSinAtivo = S)'),(375,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_cadastrar\nSinAtivo = S)'),(376,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_alterar\nSinAtivo = S)'),(377,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_consultar\nSinAtivo = S)'),(378,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_excluir\nSinAtivo = S)'),(379,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_listar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_listar\nSinAtivo = S)'),(380,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_desativar\nSinAtivo = S)'),(381,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_bloco_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_bloco_reativar\nSinAtivo = S)'),(382,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = bloco_alterar_grupo\nDescricao = [null]\nCaminho = controlador.php?acao=bloco_alterar_grupo\nSinAtivo = S)'),(383,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_bloco_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_bloco_cadastrar\nSinAtivo = S)'),(384,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_bloco_configurar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_bloco_configurar\nSinAtivo = S)'),(385,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_bloco_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_bloco_excluir\nSinAtivo = S)'),(386,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_bloco_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_bloco_listar\nSinAtivo = S)'),(387,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_usuario_grupo_bloco_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_usuario_grupo_bloco_selecionar\nSinAtivo = S)'),(388,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = serie_selecionar_acesso_externo\nDescricao = [null]\nCaminho = controlador.php?acao=serie_selecionar_acesso_externo\nSinAtivo = S)'),(389,'recurso_cadastrar','2022-06-10 13:33:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = servico_gerar_chave_acesso\nDescricao = [null]\nCaminho = controlador.php?acao=servico_gerar_chave_acesso\nSinAtivo = S)'),(390,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_listar\nSinAtivo = S)'),(391,'item_menu_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005471\nIdSistema = 100000100\nIdRecurso = 100015682\nRotulo = Instalações Federação\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(392,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_consultar\nSinAtivo = S)'),(393,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_cadastrar\nSinAtivo = S)'),(394,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_alterar\nSinAtivo = S)'),(395,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_excluir\nSinAtivo = S)'),(396,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_desativar\nSinAtivo = S)'),(397,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_reativar\nSinAtivo = S)'),(398,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_liberar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_liberar\nSinAtivo = S)'),(399,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_bloquear\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_bloquear\nSinAtivo = S)'),(400,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_selecionar\nSinAtivo = S)'),(401,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = instalacao_federacao_verificar_conexao\nDescricao = [null]\nCaminho = controlador.php?acao=instalacao_federacao_verificar_conexao\nSinAtivo = S)'),(402,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_instalacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_instalacao_cadastrar\nSinAtivo = S)'),(403,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_instalacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_instalacao_excluir\nSinAtivo = S)'),(404,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_instalacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_instalacao_listar\nSinAtivo = S)'),(405,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamento_instalacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=andamento_instalacao_consultar\nSinAtivo = S)'),(406,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_cadastrar\nSinAtivo = S)'),(407,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_alterar\nSinAtivo = S)'),(408,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_consultar\nSinAtivo = S)'),(409,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_listar\nSinAtivo = S)'),(410,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_excluir\nSinAtivo = S)'),(411,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_gerenciar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_gerenciar\nSinAtivo = S)'),(412,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_enviar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_enviar\nSinAtivo = S)'),(413,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_cancelar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_cancelar\nSinAtivo = S)'),(414,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_desativar\nSinAtivo = S)'),(415,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acesso_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=acesso_federacao_reativar\nSinAtivo = S)'),(416,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = tarefa_instalacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=tarefa_instalacao_listar\nSinAtivo = S)'),(417,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = tarefa_instalacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=tarefa_instalacao_consultar\nSinAtivo = S)'),(418,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = atributo_instalacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=atributo_instalacao_cadastrar\nSinAtivo = S)'),(419,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = atributo_instalacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=atributo_instalacao_listar\nSinAtivo = S)'),(420,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = atributo_instalacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=atributo_instalacao_consultar\nSinAtivo = S)'),(421,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = atributo_instalacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=atributo_instalacao_excluir\nSinAtivo = S)'),(422,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_cadastrar\nSinAtivo = S)'),(423,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_alterar\nSinAtivo = S)'),(424,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_excluir\nSinAtivo = S)'),(425,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_consultar\nSinAtivo = S)'),(426,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_listar\nSinAtivo = S)'),(427,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_selecionar\nSinAtivo = S)'),(428,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_desativar\nSinAtivo = S)'),(429,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = orgao_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=orgao_federacao_reativar\nSinAtivo = S)'),(430,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_cadastrar\nSinAtivo = S)'),(431,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_alterar\nSinAtivo = S)'),(432,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_excluir\nSinAtivo = S)'),(433,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_consultar\nSinAtivo = S)'),(434,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_listar\nSinAtivo = S)'),(435,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_selecionar\nSinAtivo = S)'),(436,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_desativar\nSinAtivo = S)'),(437,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = unidade_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=unidade_federacao_reativar\nSinAtivo = S)'),(438,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_cadastrar\nSinAtivo = S)'),(439,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_alterar\nSinAtivo = S)'),(440,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_excluir\nSinAtivo = S)'),(441,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_consultar\nSinAtivo = S)'),(442,'recurso_cadastrar','2022-06-10 13:33:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_listar\nSinAtivo = S)'),(443,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_selecionar\nSinAtivo = S)'),(444,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_desativar\nSinAtivo = S)'),(445,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = usuario_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=usuario_federacao_reativar\nSinAtivo = S)'),(446,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_cadastrar\nSinAtivo = S)'),(447,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_alterar\nSinAtivo = S)'),(448,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_excluir\nSinAtivo = S)'),(449,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_consultar\nSinAtivo = S)'),(450,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_listar\nSinAtivo = S)'),(451,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = protocolo_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=protocolo_federacao_selecionar\nSinAtivo = S)'),(452,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_cadastrar\nSinAtivo = S)'),(453,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_alterar\nSinAtivo = S)'),(454,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_excluir\nSinAtivo = S)'),(455,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_consultar\nSinAtivo = S)'),(456,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_listar\nSinAtivo = S)'),(457,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = acao_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=acao_federacao_desativar\nSinAtivo = S)'),(458,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = parametro_acao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=parametro_acao_federacao_cadastrar\nSinAtivo = S)'),(459,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = parametro_acao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=parametro_acao_federacao_excluir\nSinAtivo = S)'),(460,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = parametro_acao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=parametro_acao_federacao_consultar\nSinAtivo = S)'),(461,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = parametro_acao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=parametro_acao_federacao_listar\nSinAtivo = S)'),(462,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = processo_consulta_federacao\nDescricao = [null]\nCaminho = controlador.php?acao=processo_consulta_federacao\nSinAtivo = S)'),(463,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = documento_consulta_federacao\nDescricao = [null]\nCaminho = controlador.php?acao=documento_consulta_federacao\nSinAtivo = S)'),(464,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = andamentos_consulta_federacao\nDescricao = [null]\nCaminho = controlador.php?acao=andamentos_consulta_federacao\nSinAtivo = S)'),(465,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_cadastrar\nSinAtivo = S)'),(466,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_alterar\nSinAtivo = S)'),(467,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_consultar\nSinAtivo = S)'),(468,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_excluir\nSinAtivo = S)'),(469,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_listar\nSinAtivo = S)'),(470,'item_menu_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005660\nIdSistema = 100000100\nIdRecurso = 100015760\nRotulo = Federação\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(471,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_selecionar\nSinAtivo = S)'),(472,'item_menu_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005659\nIdSistema = 100000100\nIdRecurso = [null]\nRotulo = Federação\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(473,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_cadastrar\nSinAtivo = S)'),(474,'item_menu_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005690\nIdSistema = 100000100\nIdRecurso = 100015762\nRotulo = Novo\nDescricao = [null]\nIcone = [null]\nSequencia = 10\nSinNovaJanela = N\nSinAtivo = S)'),(475,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_alterar\nSinAtivo = S)'),(476,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_consultar\nSinAtivo = S)'),(477,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_excluir\nSinAtivo = S)'),(478,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_listar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_listar\nSinAtivo = S)'),(479,'item_menu_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005690\nIdSistema = 100000100\nIdRecurso = 100015766\nRotulo = Listar\nDescricao = [null]\nIcone = [null]\nSequencia = 20\nSinNovaJanela = N\nSinAtivo = S)'),(480,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_desativar\nSinAtivo = S)'),(481,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_reativar\nSinAtivo = S)'),(482,'item_menu_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005690\nIdSistema = 100000100\nIdRecurso = 100015768\nRotulo = Reativar\nDescricao = [null]\nIcone = [null]\nSequencia = 30\nSinNovaJanela = N\nSinAtivo = S)'),(483,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = grupo_federacao_institucional_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=grupo_federacao_institucional_selecionar\nSinAtivo = S)'),(484,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_grupo_fed_orgao_fed_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_grupo_fed_orgao_fed_cadastrar\nSinAtivo = S)'),(485,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_grupo_fed_orgao_fed_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_grupo_fed_orgao_fed_excluir\nSinAtivo = S)'),(486,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_grupo_fed_orgao_fed_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_grupo_fed_orgao_fed_listar\nSinAtivo = S)'),(487,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_grupo_fed_orgao_fed_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_grupo_fed_orgao_fed_selecionar\nSinAtivo = S)'),(488,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = sinalizacao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=sinalizacao_federacao_cadastrar\nSinAtivo = S)'),(489,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = sinalizacao_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=sinalizacao_federacao_alterar\nSinAtivo = S)'),(490,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = sinalizacao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=sinalizacao_federacao_consultar\nSinAtivo = S)'),(491,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = sinalizacao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=sinalizacao_federacao_excluir\nSinAtivo = S)'),(492,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = sinalizacao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=sinalizacao_federacao_listar\nSinAtivo = S)'),(493,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_sinalizacao_fed_unidade_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_sinalizacao_fed_unidade_cadastrar\nSinAtivo = S)'),(494,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_sinalizacao_fed_unidade_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_sinalizacao_fed_unidade_alterar\nSinAtivo = S)'),(495,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_sinalizacao_fed_unidade_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_sinalizacao_fed_unidade_consultar\nSinAtivo = S)'),(496,'recurso_cadastrar','2022-06-10 13:33:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_sinalizacao_fed_unidade_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=rel_sinalizacao_fed_unidade_excluir\nSinAtivo = S)'),(497,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = rel_sinalizacao_fed_unidade_listar\nDescricao = [null]\nCaminho = controlador.php?acao=rel_sinalizacao_fed_unidade_listar\nSinAtivo = S)'),(498,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_agendar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_agendar\nSinAtivo = S)'),(499,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_replicar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_replicar\nSinAtivo = S)'),(500,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_cadastrar\nSinAtivo = S)'),(501,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_alterar\nSinAtivo = S)'),(502,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_consultar\nSinAtivo = S)'),(503,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_excluir\nSinAtivo = S)'),(504,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_listar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_listar\nSinAtivo = S)'),(505,'item_menu_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005460\nIdSistema = 100000100\nIdRecurso = 100015790\nRotulo = Replicações Federação\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(506,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_desativar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_desativar\nSinAtivo = S)'),(507,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = replicacao_federacao_reativar\nDescricao = [null]\nCaminho = controlador.php?acao=replicacao_federacao_reativar\nSinAtivo = S)'),(508,'item_menu_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(509,'recurso_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100014691\n})'),(510,'item_menu_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(511,'recurso_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100015270\n})'),(512,'recurso_alterar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::alterarControlado(\n RecursoDTO:\nIdRecurso = 100015455\nCaminho = controlador.php?acao=procedimento_acervo_sigilosos_unidade\nNome = procedimento_acervo_sigilosos_unidade)'),(513,'item_menu_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (1) {\n [0] => \n ItemMenuDTO:\nIdMenu = 100000079\nIdItemMenu = 100005595\n})'),(514,'item_menu_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(515,'recurso_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100015118\n})'),(516,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = procedimento_acervo_sigilosos_global\nDescricao = [null]\nCaminho = controlador.php?acao=procedimento_acervo_sigilosos_global\nSinAtivo = S)'),(517,'item_menu_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::cadastrarControlado(\n ItemMenuDTO:\nIdItemMenu = [null]\nIdMenu = 100000079\nIdMenuPai = 100000079\nIdItemMenuPai = 100005471\nIdSistema = 100000100\nIdRecurso = 100015793\nRotulo = Acervo Global de Sigilosos\nDescricao = [null]\nIcone = [null]\nSequencia = 0\nSinNovaJanela = N\nSinAtivo = S)'),(518,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_cadastrar\nSinAtivo = S)'),(519,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_alterar\nSinAtivo = S)'),(520,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_consultar\nSinAtivo = S)'),(521,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_excluir\nSinAtivo = S)'),(522,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_listar\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_listar\nSinAtivo = S)'),(523,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = pesquisa_selecionar\nDescricao = [null]\nCaminho = controlador.php?acao=pesquisa_selecionar\nSinAtivo = S)'),(524,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = campo_pesquisa_cadastrar\nDescricao = [null]\nCaminho = controlador.php?acao=campo_pesquisa_cadastrar\nSinAtivo = S)'),(525,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = campo_pesquisa_alterar\nDescricao = [null]\nCaminho = controlador.php?acao=campo_pesquisa_alterar\nSinAtivo = S)'),(526,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = campo_pesquisa_consultar\nDescricao = [null]\nCaminho = controlador.php?acao=campo_pesquisa_consultar\nSinAtivo = S)'),(527,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = campo_pesquisa_excluir\nDescricao = [null]\nCaminho = controlador.php?acao=campo_pesquisa_excluir\nSinAtivo = S)'),(528,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = campo_pesquisa_listar\nDescricao = [null]\nCaminho = controlador.php?acao=campo_pesquisa_listar\nSinAtivo = S)'),(529,'item_menu_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','ItemMenuRN::excluirControlado(\nArray (0) {\n})'),(530,'recurso_excluir','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::excluirControlado(\nArray (1) {\n [0] => \n RecursoDTO:\nIdRecurso = 100015006\n})'),(531,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = infra_trocar_unidade\nDescricao = [null]\nCaminho = controlador.php?acao=infra_trocar_unidade\nSinAtivo = S)'),(532,'recurso_cadastrar','2022-06-10 13:33:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','RecursoRN::cadastrarControlado(\n RecursoDTO:\nIdRecurso = [null]\nIdSistema = 100000100\nNome = aviso_mostrar\nDescricao = [null]\nCaminho = controlador.php?acao=aviso_mostrar\nSinAtivo = S)'),(533,'login_remover','2022-06-10 13:34:03','127.0.0.1',1,'SIP','Sistema de Permissões',0,'ABC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'localhost (127.0.0.1)','PHP-SOAP/7.3.28','GET - Array\n(\n)\n\nPOST - Array\n(\n)\n','LoginRN::removerLoginControlado(\n LoginDTO:\nIdLogin = d207f92c2fe2b1627d4f1259a872e18952a1fdefd8cae088b32b84cfc6a8baa9d2617b0bcee16bb3352be77321afaef059ae7a8247b92e0268ac30b944d85297\nIdUsuario = 100000001\nIdSistema = 100000100\nHashInterno = 342e6ab7d3d298b886ac2b9cad64937179a085f2986b3d6728d2466d6042aaa4e369ae96d8735df23cbb799ef9cb635d7c55c320eb56c7bff0aeb3b0476ce4d8\nHashUsuario = 640dac94ae5e5c108a68aaf8d844acac14be991b5b0ed68fc056407382f5728389bdcc3cbbf9c2da82fa720b62ab35b99263cfdc5155fb5726829accdc60f8cd\nHashAgente = fea94743f988cdb74573813650216e8c8160a366053e0434154c80d0878f51667594763976629dddd7de2eb4f38bb0fd5d5fb63edad7538e4dac29a534eb2e34)'); +/*!40000 ALTER TABLE `infra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_log` +-- + +DROP TABLE IF EXISTS `infra_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_log` ( + `id_infra_log` bigint(20) NOT NULL, + `dth_log` datetime DEFAULT NULL, + `texto_log` longtext NOT NULL, + `ip` varchar(39) DEFAULT NULL, + `sta_tipo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_log`), + KEY `i01_infra_log` (`sta_tipo`,`dth_log`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_log` +-- + +LOCK TABLES `infra_log` WRITE; +/*!40000 ALTER TABLE `infra_log` DISABLE KEYS */; +INSERT INTO `infra_log` VALUES (1,'2022-06-10 13:29:21','Web Service:\nErro validando acesso no Sistema de Permissões.\n\nDetalhes:\nSipWS\n\n\n\nTrace:\n\\n0 /opt/sip/web/ws/SipWS.php(35): SipUtilWS->validarAcessoServico(\'7babf862e12bd48...\', NULL, 100000100)\n\\n1 [internal function]: SipWS->validarLogin(\'7babf862e12bd48...\', \'652ff247edf6532...\', 100000100, 100000001, \'af65c8b4d374a60...\')\n\\n2 /opt/sip/web/ws/SipWS.php(992): SoapServer->handle()\n\\n3 {main}','127.0.0.1','E'),(2,'2022-06-10 13:33:51','Descrição:\nULTIMA VERSAO 3.0.3.3 JA ESTA INSTALADA\n\nMensagem:\nULTIMA VERSAO 3.0.3.3 JA ESTA INSTALADA\n\nTrilha de Processamento:\n#0 /opt/infra/infra_php/InfraScriptVersao.php(233): InfraScript->processarErro(\'ERRO ATUALIZAND...\', Object(InfraException))\n#1 /opt/sip/scripts/atualizar_versao_sip.php(615): InfraScriptVersao->atualizarVersao()\n#2 {main}\n\nTrilha de Processamento Original:\n\\n0 /opt/infra/infra_php/InfraScriptVersao.php(348): InfraScript->processarErro(\'ULTIMA VERSAO 3...\')\n\\n1 /opt/infra/infra_php/InfraRN.php(140): InfraScriptVersao->atualizarVersaoInternoConectado(Object(BancoSip))\n\\n2 /opt/infra/infra_php/InfraScriptVersao.php(231): InfraRN->__call(\'atualizarVersao...\', Array)\n\\n3 /opt/sip/scripts/atualizar_versao_sip.php(615): InfraScriptVersao->atualizarVersao()\n\\n4 {main}',NULL,'E'); +/*!40000 ALTER TABLE `infra_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_parametro` +-- + +DROP TABLE IF EXISTS `infra_parametro`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_parametro` ( + `nome` varchar(50) NOT NULL, + `valor` varchar(1024) DEFAULT NULL, + PRIMARY KEY (`nome`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_parametro` +-- + +LOCK TABLES `infra_parametro` WRITE; +/*!40000 ALTER TABLE `infra_parametro` DISABLE KEYS */; +INSERT INTO `infra_parametro` VALUES ('EMAIL_ADMINISTRADOR','teste@dominio.gov.br'),('EMAIL_SISTEMA','naoresponda@dominio.gov.br'),('ID_PERFIL_SIP_ADMINISTRADOR_SIP','100000931'),('ID_PERFIL_SIP_ADMINISTRADOR_SISTEMA','100000933'),('ID_PERFIL_SIP_BASICO','100000932'),('ID_PERFIL_SIP_COORDENADOR_PERFIL','100000936'),('ID_PERFIL_SIP_COORDENADOR_UNIDADE','100000946'),('ID_SISTEMA_SEI','100000100'),('ID_SISTEMA_SIP','100000099'),('ID_USUARIO_SIP','1'),('SEI_VERSAO','4.0.3'),('SIP_2_FATORES_SUFIXOS_EMAIL_NAO_PERMTIDOS','.jus.br, .gov.br'),('SIP_2_FATORES_TEMPO_DIAS_LINK_BLOQUEIO','10'),('SIP_2_FATORES_TEMPO_DIAS_VALIDADE_DISPOSITIVO','45'),('SIP_2_FATORES_TEMPO_MINUTOS_LINK_HABILITACAO','60'),('SIP_EMAIL_SISTEMA',''),('SIP_MSG_USUARIO_BLOQUEADO','Usuário bloqueado.'),('SIP_NUM_HISTORICO_ULTIMOS_ACESSOS','10'),('SIP_TEMPO_DIAS_HISTORICO_ACESSOS','90'),('SIP_VERSAO','3.0.12'); +/*!40000 ALTER TABLE `infra_parametro` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_regra_auditoria` +-- + +DROP TABLE IF EXISTS `infra_regra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_regra_auditoria` ( + `id_infra_regra_auditoria` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_infra_regra_auditoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_regra_auditoria` +-- + +LOCK TABLES `infra_regra_auditoria` WRITE; +/*!40000 ALTER TABLE `infra_regra_auditoria` DISABLE KEYS */; +INSERT INTO `infra_regra_auditoria` VALUES (1,'Geral','S'); +/*!40000 ALTER TABLE `infra_regra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_regra_auditoria_recurso` +-- + +DROP TABLE IF EXISTS `infra_regra_auditoria_recurso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_regra_auditoria_recurso` ( + `id_infra_regra_auditoria` int(11) NOT NULL, + `recurso` varchar(50) NOT NULL, + PRIMARY KEY (`id_infra_regra_auditoria`,`recurso`), + KEY `fk_inf_reg_aud_rec_inf_reg_aud` (`id_infra_regra_auditoria`), + CONSTRAINT `fk_inf_reg_aud_rec_inf_reg_aud` FOREIGN KEY (`id_infra_regra_auditoria`) REFERENCES `infra_regra_auditoria` (`id_infra_regra_auditoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_regra_auditoria_recurso` +-- + +LOCK TABLES `infra_regra_auditoria_recurso` WRITE; +/*!40000 ALTER TABLE `infra_regra_auditoria_recurso` DISABLE KEYS */; +INSERT INTO `infra_regra_auditoria_recurso` VALUES (1,'administrador_sistema_cadastrar'),(1,'administrador_sistema_excluir'),(1,'codigo_acesso_desativar'),(1,'codigo_acesso_excluir'),(1,'codigo_acesso_reativar'),(1,'coordenador_perfil_cadastrar'),(1,'coordenador_perfil_excluir'),(1,'coordenador_unidade_cadastrar'),(1,'coordenador_unidade_excluir'),(1,'hierarquia_alterar'),(1,'hierarquia_cadastrar'),(1,'hierarquia_clonar'),(1,'hierarquia_desativar'),(1,'hierarquia_excluir'),(1,'infra_auditoria_listar'),(1,'item_menu_alterar'),(1,'item_menu_cadastrar'),(1,'item_menu_desativar'),(1,'item_menu_excluir'),(1,'login_padrao'),(1,'login_remover'),(1,'login_unificado'),(1,'menu_alterar'),(1,'menu_cadastrar'),(1,'menu_desativar'),(1,'menu_excluir'),(1,'orgao_alterar'),(1,'orgao_cadastrar'),(1,'orgao_desativar'),(1,'orgao_excluir'),(1,'perfil_alterar'),(1,'perfil_cadastrar'),(1,'perfil_clonar'),(1,'perfil_desativar'),(1,'perfil_excluir'),(1,'perfil_montar'),(1,'permissao_alterar'),(1,'permissao_atribuir_em_bloco'),(1,'permissao_cadastrar'),(1,'permissao_copiar'),(1,'permissao_delegar'),(1,'permissao_excluir'),(1,'recurso_alterar'),(1,'recurso_cadastrar'),(1,'recurso_desativar'),(1,'recurso_excluir'),(1,'recurso_gerar'),(1,'recurso_reativar'),(1,'regra_auditoria_alterar'),(1,'regra_auditoria_cadastrar'),(1,'regra_auditoria_desativar'),(1,'regra_auditoria_excluir'),(1,'regra_auditoria_reativar'),(1,'rel_hierarquia_unidade_alterar'),(1,'rel_hierarquia_unidade_cadastrar'),(1,'rel_hierarquia_unidade_desativar'),(1,'rel_hierarquia_unidade_excluir'),(1,'rel_hierarquia_unidade_reativar'),(1,'servidor_autenticacao_alterar'),(1,'servidor_autenticacao_cadastrar'),(1,'servidor_autenticacao_excluir'),(1,'sistema_alterar'),(1,'sistema_cadastrar'),(1,'sistema_clonar'),(1,'sistema_desativar'),(1,'sistema_excluir'),(1,'sistema_gerar_chave_acesso'),(1,'sistema_importar'),(1,'tipo_permissao_alterar'),(1,'tipo_permissao_cadastrar'),(1,'tipo_permissao_excluir'),(1,'unidade_alterar'),(1,'unidade_cadastrar'),(1,'unidade_desativar'),(1,'unidade_excluir'),(1,'unidade_reativar'),(1,'usuario_alterar'),(1,'usuario_cadastrar'),(1,'usuario_desativar'),(1,'usuario_excluir'),(1,'usuario_reativar'); +/*!40000 ALTER TABLE `infra_regra_auditoria_recurso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `infra_sequencia` +-- + +DROP TABLE IF EXISTS `infra_sequencia`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `infra_sequencia` ( + `nome_tabela` varchar(30) NOT NULL, + `qtd_incremento` int(11) NOT NULL, + `num_atual` int(11) NOT NULL, + `num_maximo` int(11) NOT NULL, + PRIMARY KEY (`nome_tabela`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `infra_sequencia` +-- + +LOCK TABLES `infra_sequencia` WRITE; +/*!40000 ALTER TABLE `infra_sequencia` DISABLE KEYS */; +INSERT INTO `infra_sequencia` VALUES ('contexto',1,71,999999999),('grupo_rede',1,360,999999999),('hierarquia',1,100000018,199999999),('infra_agendamento_tarefa',1,5,999999999),('item_menu',1,100005695,199999999),('menu',1,100000079,199999999),('orgao',1,0,999999999),('perfil',1,100000949,199999999),('recurso',1,100015806,199999999),('regra_auditoria',1,5,999999999),('servidor_autenticacao',1,2,999999999),('sistema',1,100000100,199999999),('tipo_permissao',1,3,999999999),('unidade',1,110000043,199999999),('usuario',1,100000053,199999999); +/*!40000 ALTER TABLE `infra_sequencia` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_menu` +-- + +DROP TABLE IF EXISTS `item_menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `item_menu` ( + `id_menu` int(11) NOT NULL, + `id_item_menu` int(11) NOT NULL, + `id_sistema` int(11) DEFAULT NULL, + `id_menu_pai` int(11) DEFAULT NULL, + `id_item_menu_pai` int(11) DEFAULT NULL, + `id_recurso` int(11) DEFAULT NULL, + `rotulo` varchar(50) NOT NULL, + `descricao` varchar(200) DEFAULT NULL, + `sequencia` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sin_nova_janela` char(1) NOT NULL, + `icone` varchar(250) DEFAULT NULL, + PRIMARY KEY (`id_menu`,`id_item_menu`), + UNIQUE KEY `i04_item_menu` (`id_menu`,`id_item_menu`,`sin_ativo`), + KEY `fk_item_menu_item_menu` (`id_menu_pai`,`id_item_menu_pai`), + KEY `i05_item_menu` (`id_recurso`), + KEY `fk_item_menu_menu` (`id_menu`), + KEY `fk_item_menu_recurso` (`id_sistema`,`id_recurso`), + CONSTRAINT `fk_item_menu_item_menu` FOREIGN KEY (`id_menu_pai`, `id_item_menu_pai`) REFERENCES `item_menu` (`id_menu`, `id_item_menu`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_item_menu_menu` FOREIGN KEY (`id_menu`) REFERENCES `menu` (`id_menu`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_item_menu_recurso` FOREIGN KEY (`id_sistema`, `id_recurso`) REFERENCES `recurso` (`id_sistema`, `id_recurso`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_menu` +-- + +LOCK TABLES `item_menu` WRITE; +/*!40000 ALTER TABLE `item_menu` DISABLE KEYS */; +INSERT INTO `item_menu` VALUES (100000078,100005399,100000099,NULL,NULL,NULL,'Menus','Menus',0,'S','N','menu.svg'),(100000078,100005400,100000099,NULL,NULL,NULL,'Infra',NULL,999,'S','N','infra.svg'),(100000078,100005401,100000099,NULL,NULL,NULL,'Órgãos','Órgãos',0,'S','N','orgao.svg'),(100000078,100005402,100000099,NULL,NULL,NULL,'Perfis','Perfis',0,'S','N','perfil.svg'),(100000078,100005403,100000099,NULL,NULL,NULL,'Sistemas','Sistemas',0,'S','N','sistema.svg'),(100000078,100005404,100000099,NULL,NULL,NULL,'Usuários','Usuários',0,'S','N','usuario.svg'),(100000078,100005405,100000099,NULL,NULL,NULL,'Unidades','Unidades',0,'S','N','unidade.svg'),(100000078,100005406,100000099,NULL,NULL,NULL,'Recursos','Recursos',0,'S','N','recurso.svg'),(100000078,100005407,100000099,NULL,NULL,NULL,'Contextos','Contextos',0,'S','N',NULL),(100000078,100005408,100000099,NULL,NULL,NULL,'Permissões','Permissões',0,'S','N','permissao.svg'),(100000078,100005409,100000099,NULL,NULL,NULL,'Hierarquias','Hierarquias',0,'S','N','hierarquia.svg'),(100000078,100005410,100000099,100000078,100005400,100014405,'Log',NULL,0,'S','N',NULL),(100000078,100005411,100000099,100000078,100005399,100014369,'Novo','Cadastro de Menu',1,'S','N',NULL),(100000078,100005412,100000099,100000078,100005401,100014312,'Novo','Cadastro de Órgão',1,'S','N',NULL),(100000078,100005413,100000099,100000078,100005402,100014359,'Novo','Cadastro de Perfil',10,'S','N',NULL),(100000078,100005414,100000099,NULL,NULL,NULL,'Grupos de Rede',NULL,0,'S','N',NULL),(100000078,100005415,100000099,100000078,100005399,100014370,'Listar','Lista de Menus',2,'S','N',NULL),(100000078,100005416,100000099,100000078,100005399,100014375,'Montar',NULL,30,'S','N',NULL),(100000078,100005417,100000099,100000078,100005401,100014313,'Listar','Lista de Órgãos',2,'S','N',NULL),(100000078,100005418,100000099,100000078,100005403,100014301,'Novo','Cadastro de Sistema',1,'S','N',NULL),(100000078,100005419,100000099,100000078,100005404,100014327,'Novo','Cadastro de Usuário',1,'S','N',NULL),(100000078,100005420,100000099,100000078,100005405,100014344,'Nova','Cadastro de Unidade',10,'S','N',NULL),(100000078,100005421,100000099,100000078,100005406,100014353,'Novo','Cadastro de Recurso',10,'S','N',NULL),(100000078,100005422,100000099,100000078,100005402,100014360,'Listar','Lista de Perfis',20,'S','N',NULL),(100000078,100005423,100000099,100000078,100005402,100014395,'Clonar',NULL,30,'S','N',NULL),(100000078,100005424,100000099,100000078,100005402,100014365,'Montar','Montagem dos Recursos do Perfil',40,'S','N',NULL),(100000078,100005425,100000099,NULL,NULL,NULL,'Desenvolvimento',NULL,0,'S','N',NULL),(100000078,100005427,100000099,100000078,100005408,100014379,'Nova','Cadastro de Permissão',10,'S','N',NULL),(100000078,100005428,100000099,100000078,100005403,100014302,'Listar','Lista de Sistemas',2,'S','N',NULL),(100000078,100005429,100000099,100000078,100005403,100014393,'Clonar',NULL,3,'S','N',NULL),(100000078,100005430,100000099,100000078,100005404,100014328,'Listar','Lista de Usuários',2,'S','N',NULL),(100000078,100005431,100000099,100000078,100005405,100014345,'Listar','Lista de Unidades',20,'S','N',NULL),(100000078,100005432,100000099,100000078,100005406,100014354,'Listar','Lista de Recursos',20,'S','N',NULL),(100000078,100005433,100000099,100000078,100005408,NULL,'Tipos','Tipos de Permissão',40,'S','N',NULL),(100000078,100005435,100000099,100000078,100005409,100014333,'Nova','Cadastro de Hierarquia',1,'S','N',NULL),(100000078,100005436,100000099,100000078,100005400,100014418,'Parâmetros',NULL,0,'S','N',NULL),(100000078,100005437,100000099,100000078,100005400,100014423,'Sequências',NULL,0,'S','N',NULL),(100000078,100005438,100000099,100000078,100005403,100014394,'Importar',NULL,4,'S','N',NULL),(100000078,100005439,100000099,100000078,100005404,100014407,'Reativar',NULL,12,'S','N',NULL),(100000078,100005440,100000099,100000078,100005405,100014408,'Reativar',NULL,30,'S','N',NULL),(100000078,100005441,100000099,100000078,100005406,100014409,'Reativar',NULL,30,'S','N',NULL),(100000078,100005442,100000099,100000078,100005409,100014334,'Listar','Lista de Hierarquias',2,'S','N',NULL),(100000078,100005443,100000099,100000078,100005409,100014340,'Montar',NULL,30,'S','N',NULL),(100000078,100005444,100000099,100000078,100005408,100014381,'Pessoais','Lista de Permissões Pessoais',30,'S','N',NULL),(100000078,100005446,100000099,100000078,100005402,100014367,'Coordenadores','Lista de Coordenadores de Perfis',50,'S','N',NULL),(100000078,100005449,100000099,100000078,100005405,100014351,'Coordenadores','Lista de Coordenadores de Unidades',40,'S','N',NULL),(100000078,100005450,100000099,100000078,100005433,100014307,'Novo','Cadastro de Tipo de Permissão',1,'S','N',NULL),(100000078,100005451,100000099,100000078,100005408,100014380,'Administradas','Lista de Permissões Administradas',20,'S','N',NULL),(100000078,100005452,100000099,100000078,100005403,100014325,'Administradores','Lista de Administradores de Sistemas',4,'S','N',NULL),(100000078,100005453,100000099,100000078,100005433,100014308,'Listar','Lista de Tipo de Permissão',2,'S','N',NULL),(100000078,100005454,100000099,100000078,100005406,100014396,'Gerar Padrão PHP',NULL,40,'S','N',NULL),(100000078,100005456,100000099,100000078,100005408,100014412,'Atribuição em Bloco',NULL,15,'S','N',NULL),(100000078,100005606,100000099,100000078,100005400,100015187,'Auditoria',NULL,0,'S','N',NULL),(100000078,100005607,100000099,100000078,100005402,100015188,'Reativar',NULL,30,'S','N',NULL),(100000078,100005609,100000099,100000078,100005400,100015193,'Agendamentos',NULL,0,'S','N',NULL),(100000078,100005610,100000099,100000078,100005400,100015198,'Comparação de Bancos',NULL,0,'S','N',NULL),(100000078,100005611,100000099,NULL,NULL,100015203,'Regras de Auditoria',NULL,0,'S','N','regra_auditoria.svg'),(100000078,100005618,100000099,100000078,100005401,100015265,'Reativar',NULL,30,'S','N',NULL),(100000078,100005637,100000099,NULL,NULL,100015368,'Servidores de Autenticação',NULL,0,'S','N','servidor_autenticacao.svg'),(100000078,100005650,100000099,100000078,100005403,100015451,'Reativar',NULL,2,'S','N',NULL),(100000078,100005651,100000099,100000078,100005409,100015452,'Reativar',NULL,2,'S','N',NULL),(100000078,100005671,100000099,100000078,100005402,100015552,'Comparar',NULL,80,'S','N',NULL),(100000078,100005672,100000099,100000078,100005400,100015554,'Módulos',NULL,0,'S','N',NULL),(100000078,100005673,100000099,100000078,100005400,100015555,'Cache em Memória',NULL,0,'S','N',NULL),(100000078,100005674,100000099,NULL,NULL,100015560,'Acessos',NULL,0,'S','N','acesso.svg'),(100000078,100005675,100000099,NULL,NULL,100015563,'E-mails do Sistema',NULL,0,'S','N','email.svg'),(100000078,100005676,100000099,NULL,NULL,100015568,'Autenticação em 2 Fatores',NULL,0,'S','N','2fa.svg'),(100000079,100005460,100000100,NULL,NULL,NULL,'Infra',NULL,999,'S','N','infra.svg'),(100000079,100005462,100000100,NULL,NULL,100014783,'Pesquisa',NULL,0,'S','N','pesquisa.svg'),(100000079,100005463,100000100,NULL,100005471,100015529,'Tabela de Assuntos',NULL,0,'S','N',NULL),(100000079,100005464,100000100,NULL,NULL,NULL,'Relatórios',NULL,0,'S','N','relatorios.svg'),(100000079,100005465,100000100,100000079,100005460,100014561,'Log',NULL,0,'S','N',NULL),(100000079,100005466,100000100,NULL,NULL,NULL,'Estatísticas',NULL,0,'S','N','estatisticas.svg'),(100000079,100005467,100000100,NULL,NULL,100014925,'Arquivamento',NULL,0,'S','N','arquivamento.svg'),(100000079,100005470,100000100,NULL,NULL,NULL,'Localizadores',NULL,0,'S','N',NULL),(100000079,100005471,100000100,NULL,NULL,NULL,'Administração',NULL,0,'S','N','administracao.svg'),(100000079,100005472,100000100,NULL,100005677,100014815,'Internos',NULL,0,'S','N',NULL),(100000079,100005474,100000100,NULL,NULL,100014926,'Desarquivamento',NULL,0,'S','N','desarquivamento.svg'),(100000079,100005476,100000100,NULL,NULL,100014749,'Iniciar Processo',NULL,0,'S','N','iniciar_processo.svg'),(100000079,100005477,100000100,NULL,100005677,100014820,'Reunião',NULL,0,'S','N',NULL),(100000079,100005478,100000100,NULL,NULL,100014898,'Retorno Programado',NULL,0,'S','N','retorno_programado.svg'),(100000079,100005479,100000100,NULL,100005471,NULL,'Contatos',NULL,0,'S','N',NULL),(100000079,100005480,100000100,100000079,100005460,100014746,'Parâmetros',NULL,0,'S','N',NULL),(100000079,100005481,100000100,100000079,100005460,100014755,'Sequências',NULL,0,'S','N',NULL),(100000079,100005483,100000100,100000079,100005667,NULL,'Estados',NULL,20,'S','N',NULL),(100000079,100005484,100000100,NULL,NULL,100014914,'Base de Conhecimento',NULL,0,'S','N','base_conhecimento.svg'),(100000079,100005485,100000100,NULL,100005677,100014812,'Assinatura',NULL,0,'S','N',NULL),(100000079,100005487,100000100,100000079,100005470,100014623,'Novo',NULL,10,'S','N',NULL),(100000079,100005488,100000100,NULL,NULL,100014751,'Controle de Processos',NULL,0,'S','N','controle_processos.svg'),(100000079,100005489,100000100,NULL,NULL,100014862,'Processos Sobrestados',NULL,0,'S','N','processos_sobrestados.svg'),(100000079,100005490,100000100,100000079,100005470,NULL,'Tipos',NULL,30,'S','N',NULL),(100000079,100005491,100000100,100000079,100005466,100014947,'Unidade',NULL,20,'S','N',NULL),(100000079,100005492,100000100,100000079,100005470,100014626,'Listar',NULL,20,'S','N',NULL),(100000079,100005493,100000100,100000079,100005471,100014799,'Órgãos',NULL,0,'S','N',NULL),(100000079,100005494,100000100,100000079,100005471,NULL,'Tipos de Documento',NULL,0,'S','N',NULL),(100000079,100005495,100000100,NULL,NULL,100014934,'Acompanhamento Especial',NULL,0,'S','N','acompanhamento_especial.svg'),(100000079,100005496,100000100,100000079,100005470,NULL,'Lugares',NULL,40,'S','N',NULL),(100000079,100005497,100000100,100000079,100005667,NULL,'Cidades',NULL,30,'S','N',NULL),(100000079,100005498,100000100,100000079,100005471,NULL,'Unidades',NULL,0,'S','N',NULL),(100000079,100005499,100000100,100000079,100005466,100014907,'Ouvidoria',NULL,10,'S','N',NULL),(100000079,100005500,100000100,100000079,100005471,NULL,'Usuários',NULL,0,'S','N',NULL),(100000079,100005501,100000100,100000079,100005471,100014857,'Novidades',NULL,0,'S','N',NULL),(100000079,100005502,100000100,100000079,100005483,100014489,'Novo',NULL,10,'S','N',NULL),(100000079,100005503,100000100,100000079,100005660,100014539,'Contatos',NULL,0,'S','N',NULL),(100000079,100005504,100000100,100000079,100005479,NULL,'Cargos',NULL,70,'S','N',NULL),(100000079,100005505,100000100,100000079,100005460,100014762,'Atributos de Sessão',NULL,0,'S','N',NULL),(100000079,100005506,100000100,100000079,100005490,100014594,'Novo',NULL,10,'S','N',NULL),(100000079,100005507,100000100,100000079,100005483,100014492,'Listar',NULL,20,'S','N',NULL),(100000079,100005509,100000100,100000079,100005494,100014646,'Novo',NULL,10,'S','N',NULL),(100000079,100005510,100000100,100000079,100005479,100014515,'Reativar',NULL,30,'S','N',NULL),(100000079,100005511,100000100,100000079,100005490,100014597,'Listar',NULL,20,'S','N',NULL),(100000079,100005512,100000100,100000079,100005496,100014610,'Novo',NULL,10,'S','N',NULL),(100000079,100005513,100000100,100000079,100005497,100014495,'Nova',NULL,10,'S','N',NULL),(100000079,100005514,100000100,100000079,100005479,100014511,'Listar',NULL,20,'S','N',NULL),(100000079,100005515,100000100,100000079,100005479,NULL,'Vocativos',NULL,100,'S','N',NULL),(100000079,100005516,100000100,100000079,100005494,100014649,'Listar',NULL,20,'S','N',NULL),(100000079,100005517,100000100,100000079,100005494,NULL,'Grupos',NULL,40,'S','N',NULL),(100000079,100005519,100000100,100000079,100005490,100014601,'Reativar',NULL,30,'S','N',NULL),(100000079,100005520,100000100,100000079,100005496,100014613,'Listar',NULL,20,'S','N',NULL),(100000079,100005521,100000100,100000079,100005497,100014498,'Listar',NULL,20,'S','N',NULL),(100000079,100005522,100000100,100000079,100005498,100014525,'Listar',NULL,10,'S','N',NULL),(100000079,100005523,100000100,100000079,100005470,NULL,'Suportes',NULL,50,'S','N',NULL),(100000079,100005524,100000100,100000079,100005479,NULL,'Tratamentos',NULL,90,'S','N',NULL),(100000079,100005525,100000100,100000079,100005500,100014519,'Listar',NULL,10,'S','N',NULL),(100000079,100005526,100000100,100000079,100005471,NULL,'Tipos de Processo',NULL,0,'S','N',NULL),(100000079,100005527,100000100,100000079,100005494,100014653,'Reativar',NULL,30,'S','N',NULL),(100000079,100005528,100000100,100000079,100005479,100014508,'Novo',NULL,10,'S','N',NULL),(100000079,100005529,100000100,100000079,100005496,100014617,'Reativar',NULL,30,'S','N',NULL),(100000079,100005530,100000100,100000079,100005498,100014529,'Reativar',NULL,20,'S','N',NULL),(100000079,100005533,100000100,100000079,100005504,100014448,'Novo',NULL,10,'S','N',NULL),(100000079,100005534,100000100,100000079,100005464,100014801,'Contatos Temporários',NULL,10,'S','N',NULL),(100000079,100005535,100000100,100000079,100005500,100014577,'Reativar',NULL,20,'S','N',NULL),(100000079,100005538,100000100,100000079,100005504,100014451,'Listar',NULL,20,'S','N',NULL),(100000079,100005541,100000100,100000079,100005515,100014464,'Novo',NULL,10,'S','N',NULL),(100000079,100005542,100000100,100000079,100005517,100014765,'Novo',NULL,10,'S','N',NULL),(100000079,100005543,100000100,100000079,100005471,100014903,'Ordenadores de Despesa',NULL,0,'S','N',NULL),(100000079,100005544,100000100,100000079,100005479,NULL,'Tipos',NULL,40,'S','N',NULL),(100000079,100005545,100000100,100000079,100005504,100014455,'Reativar',NULL,30,'S','N',NULL),(100000079,100005546,100000100,100000079,100005523,100014602,'Novo',NULL,10,'S','N',NULL),(100000079,100005548,100000100,100000079,100005524,100014472,'Novo',NULL,10,'S','N',NULL),(100000079,100005549,100000100,100000079,100005515,100014467,'Listar',NULL,20,'S','N',NULL),(100000079,100005550,100000100,100000079,100005471,100014795,'Assinaturas das Unidades',NULL,0,'S','N',NULL),(100000079,100005551,100000100,100000079,100005526,100014441,'Novo',NULL,10,'S','N',NULL),(100000079,100005552,100000100,100000079,100005517,100014768,'Listar',NULL,20,'S','N',NULL),(100000079,100005553,100000100,100000079,100005523,100014605,'Listar',NULL,20,'S','N',NULL),(100000079,100005554,100000100,100000079,100005524,100014475,'Listar',NULL,20,'S','N',NULL),(100000079,100005555,100000100,100000079,100005515,100014471,'Reativar',NULL,30,'S','N',NULL),(100000079,100005556,100000100,100000079,100005526,100014444,'Listar',NULL,20,'S','N',NULL),(100000079,100005557,100000100,100000079,100005517,100014772,'Reativar',NULL,30,'S','N',NULL),(100000079,100005558,100000100,100000079,100005523,100014609,'Reativar',NULL,30,'S','N',NULL),(100000079,100005559,100000100,100000079,100005524,100014479,'Reativar',NULL,30,'S','N',NULL),(100000079,100005560,100000100,100000079,100005526,100014480,'Reativar',NULL,30,'S','N',NULL),(100000079,100005561,100000100,100000079,100005471,100014967,'Critérios de Controle Interno',NULL,0,'S','N',NULL),(100000079,100005562,100000100,100000079,100005544,100014481,'Novo',NULL,10,'S','N',NULL),(100000079,100005563,100000100,100000079,100005544,100014484,'Listar',NULL,20,'S','N',NULL),(100000079,100005565,100000100,100000079,100005544,100014488,'Reativar',NULL,30,'S','N',NULL),(100000079,100005570,100000100,100000079,100005471,NULL,'Sistemas',NULL,0,'S','N',NULL),(100000079,100005571,100000100,100000079,100005570,100015036,'Novo',NULL,10,'S','N',NULL),(100000079,100005572,100000100,100000079,100005570,100015039,'Listar',NULL,20,'S','N',NULL),(100000079,100005573,100000100,100000079,100005570,100015042,'Reativar',NULL,30,'S','N',NULL),(100000079,100005574,100000100,NULL,100005660,100014955,'E-Mail',NULL,0,'S','N',NULL),(100000079,100005575,100000100,100000079,100005471,NULL,'Editor',NULL,0,'S','N',NULL),(100000079,100005576,100000100,100000079,100005575,NULL,'Modelos',NULL,10,'S','N',NULL),(100000079,100005577,100000100,100000079,100005576,100015043,'Novo',NULL,10,'S','N',NULL),(100000079,100005578,100000100,100000079,100005576,100015047,'Listar',NULL,20,'S','N',NULL),(100000079,100005579,100000100,100000079,100005576,100015050,'Reativar',NULL,30,'S','N',NULL),(100000079,100005580,100000100,100000079,100005576,100015051,'Clonar',NULL,40,'S','N',NULL),(100000079,100005581,100000100,100000079,100005575,100015056,'Estilos',NULL,20,'S','N',NULL),(100000079,100005582,100000100,100000079,100005575,100015087,'Tarjas',NULL,30,'S','N',NULL),(100000079,100005583,100000100,100000079,100005471,NULL,'Extensões de Arquivos Permitidas',NULL,0,'S','N',NULL),(100000079,100005584,100000100,100000079,100005583,100015089,'Nova',NULL,10,'S','N',NULL),(100000079,100005585,100000100,100000079,100005583,100015092,'Listar',NULL,20,'S','N',NULL),(100000079,100005586,100000100,100000079,100005583,100015095,'Reativar',NULL,30,'S','N',NULL),(100000079,100005587,100000100,100000079,100005667,NULL,'Países',NULL,10,'S','N',NULL),(100000079,100005588,100000100,100000079,100005587,100015096,'Novo',NULL,10,'S','N',NULL),(100000079,100005589,100000100,100000079,100005587,100015100,'Listar',NULL,20,'S','N',NULL),(100000079,100005590,100000100,100000079,100005659,NULL,'E-Mail',NULL,0,'S','N',NULL),(100000079,100005591,100000100,100000079,100005590,100015102,'Novo',NULL,10,'S','N',NULL),(100000079,100005592,100000100,100000079,100005590,100015106,'Listar',NULL,20,'S','N',NULL),(100000079,100005593,100000100,100000079,100005590,100015109,'Reativar',NULL,30,'S','N',NULL),(100000079,100005594,100000100,100000079,100005494,100015113,'Numeração',NULL,40,'S','N',NULL),(100000079,100005596,100000100,100000079,100005471,NULL,'Usuários Externos',NULL,0,'S','N',NULL),(100000079,100005597,100000100,100000079,100005596,100015122,'Listar',NULL,10,'S','N',NULL),(100000079,100005598,100000100,100000079,100005596,100015125,'Reativar',NULL,20,'S','N',NULL),(100000079,100005599,100000100,NULL,NULL,100015137,'Inspeção Administrativa',NULL,0,'S','N','inspecao_administrativa.svg'),(100000079,100005600,100000100,NULL,NULL,100015159,'Favoritos',NULL,0,'S','N','favoritos.svg'),(100000079,100005601,100000100,100000079,100005460,100015160,'Navegadores',NULL,0,'S','N',NULL),(100000079,100005602,100000100,NULL,NULL,100015166,'Textos Padrão',NULL,0,'S','N','texto_padrao.svg'),(100000079,100005604,100000100,100000079,100005460,100015169,'Indexação',NULL,0,'S','N',NULL),(100000079,100005605,100000100,100000079,100005471,100015172,'E-mails do Sistema',NULL,0,'S','N',NULL),(100000079,100005612,100000100,100000079,100005460,100015235,'Auditoria',NULL,0,'S','N',NULL),(100000079,100005613,100000100,100000079,100005460,100015239,'Agendamentos',NULL,0,'S','N',NULL),(100000079,100005614,100000100,100000079,100005460,100015244,'Comparação de Bancos',NULL,0,'S','N',NULL),(100000079,100005619,100000100,100000079,100005471,100015269,'Histórico',NULL,0,'S','N',NULL),(100000079,100005620,100000100,NULL,NULL,100015273,'Acompanhamento Ouvidoria',NULL,0,'S','N',NULL),(100000079,100005621,100000100,100000079,100005471,NULL,'Veículos de Publicação',NULL,0,'S','N',NULL),(100000079,100005623,100000100,100000079,100005471,100015289,'Feriados',NULL,0,'S','N',NULL),(100000079,100005624,100000100,100000079,100005621,100015290,'Novo',NULL,10,'S','N',NULL),(100000079,100005625,100000100,100000079,100005621,100015291,'Listar',NULL,20,'S','N',NULL),(100000079,100005626,100000100,100000079,100005621,100015295,'Reativar',NULL,30,'S','N',NULL),(100000079,100005627,100000100,100000079,100005621,100015302,'Imprensa Nacional',NULL,40,'S','N',NULL),(100000079,100005628,100000100,100000079,100005471,NULL,'Tipos de Conferência',NULL,0,'S','N',NULL),(100000079,100005629,100000100,100000079,100005628,100015345,'Novo',NULL,10,'S','N',NULL),(100000079,100005630,100000100,100000079,100005628,100015348,'Listar',NULL,20,'S','N',NULL),(100000079,100005631,100000100,100000079,100005628,100015351,'Reativar',NULL,30,'S','N',NULL),(100000079,100005632,100000100,100000079,100005466,100015352,'Desempenho de Processos',NULL,30,'S','N',NULL),(100000079,100005633,100000100,100000079,100005471,NULL,'Hipóteses Legais',NULL,0,'S','N',NULL),(100000079,100005634,100000100,100000079,100005633,100015355,'Nova',NULL,10,'S','N',NULL),(100000079,100005635,100000100,100000079,100005633,100015359,'Listar',NULL,20,'S','N',NULL),(100000079,100005636,100000100,100000079,100005633,100015362,'Reativar',NULL,30,'S','N',NULL),(100000079,100005638,100000100,100000079,100005460,100015376,'Velocidades de Transferência de Dados',NULL,0,'S','N',NULL),(100000079,100005639,100000100,100000079,100005575,NULL,'Formatos de Imagem Permitidos',NULL,40,'S','N',NULL),(100000079,100005640,100000100,100000079,100005639,100015380,'Novo',NULL,10,'S','N',NULL),(100000079,100005641,100000100,100000079,100005639,100015382,'Listar',NULL,20,'S','N',NULL),(100000079,100005642,100000100,100000079,100005639,100015386,'Reativar',NULL,30,'S','N',NULL),(100000079,100005643,100000100,NULL,100005660,100015405,'Envio',NULL,0,'S','N',NULL),(100000079,100005644,100000100,100000079,100005659,NULL,'Envio',NULL,0,'S','N',NULL),(100000079,100005645,100000100,100000079,100005644,100015409,'Novo',NULL,10,'S','N',NULL),(100000079,100005646,100000100,100000079,100005644,100015411,'Listar',NULL,20,'S','N',NULL),(100000079,100005647,100000100,100000079,100005644,100015416,'Reativar',NULL,30,'S','N',NULL),(100000079,100005648,100000100,100000079,100005471,100015426,'Pontos de Controle',NULL,0,'S','N',NULL),(100000079,100005649,100000100,NULL,NULL,100015450,'Pontos de Controle',NULL,0,'S','N','pontos_controle.svg'),(100000079,100005652,100000100,100000079,100005464,100015455,'Acervo de Sigilosos da Unidade',NULL,0,'S','N',NULL),(100000079,100005653,100000100,100000079,100005460,100015456,'Módulos',NULL,0,'S','N',NULL),(100000079,100005654,100000100,100000079,100005460,100015459,'Cache em Memória',NULL,0,'S','N',NULL),(100000079,100005655,100000100,100000079,100005471,NULL,'Tipos de Formulários',NULL,0,'S','N',NULL),(100000079,100005656,100000100,100000079,100005655,100015472,'Listar',NULL,0,'S','N',NULL),(100000079,100005657,100000100,100000079,100005655,100015474,'Novo',NULL,0,'S','N',NULL),(100000079,100005658,100000100,100000079,100005655,100015478,'Reativar',NULL,0,'S','N',NULL),(100000079,100005659,100000100,100000079,100005471,NULL,'Grupos Institucionais',NULL,0,'S','N',NULL),(100000079,100005660,100000100,NULL,NULL,NULL,'Grupos',NULL,0,'S','N','grupos.svg'),(100000079,100005661,100000100,NULL,NULL,100014511,'Contatos',NULL,0,'S','N','contatos.svg'),(100000079,100005662,100000100,100000079,100005659,100014539,'Contatos',NULL,0,'S','N',NULL),(100000079,100005663,100000100,100000079,100005662,100015486,'Novo',NULL,10,'S','N',NULL),(100000079,100005664,100000100,100000079,100005662,100015489,'Reativar',NULL,30,'S','N',NULL),(100000079,100005665,100000100,100000079,100005662,100015491,'Listar',NULL,20,'S','N',NULL),(100000079,100005666,100000100,100000079,100005570,100015493,'Monitoramento de Serviços',NULL,40,'S','N',NULL),(100000079,100005667,100000100,100000079,100005471,NULL,'Países, Estados e Cidades',NULL,0,'S','N',NULL),(100000079,100005668,100000100,NULL,NULL,100015502,'Marcadores',NULL,0,'S','N','marcadores.svg'),(100000079,100005669,100000100,100000079,100005466,100015542,'Arquivamento',NULL,0,'S','N',NULL),(100000079,100005670,100000100,100000079,100005498,100015549,'Migrar Dados',NULL,30,'S','N',NULL),(100000079,100005677,100000100,NULL,NULL,NULL,'Blocos',NULL,0,'S','N','blocos.svg'),(100000079,100005678,100000100,NULL,NULL,100015592,'Painel de Controle',NULL,0,'S','N','painel_controle.svg'),(100000079,100005679,100000100,100000079,100005479,NULL,'Títulos',NULL,90,'S','N',NULL),(100000079,100005680,100000100,100000079,100005679,100015625,'Listar',NULL,2,'S','N',NULL),(100000079,100005681,100000100,100000079,100005679,100015627,'Novo',NULL,1,'S','N',NULL),(100000079,100005682,100000100,100000079,100005679,100015631,'Reativar',NULL,3,'S','N',NULL),(100000079,100005683,100000100,NULL,NULL,100015641,'Controle de Prazos',NULL,0,'S','N','controle_prazo.svg'),(100000079,100005684,100000100,100000079,100005479,NULL,'Categorias',NULL,100,'S','N',NULL),(100000079,100005685,100000100,100000079,100005684,100015649,'Listar',NULL,20,'S','N',NULL),(100000079,100005686,100000100,100000079,100005684,100015650,'Nova',NULL,10,'S','N',NULL),(100000079,100005687,100000100,100000079,100005684,100015654,'Reativar',NULL,30,'S','N',NULL),(100000079,100005688,100000100,100000079,100005471,100015682,'Instalações Federação',NULL,0,'S','N',NULL),(100000079,100005689,100000100,100000079,100005660,100015760,'Federação',NULL,0,'S','N',NULL),(100000079,100005690,100000100,100000079,100005659,NULL,'Federação',NULL,0,'S','N',NULL),(100000079,100005691,100000100,100000079,100005690,100015762,'Novo',NULL,10,'S','N',NULL),(100000079,100005692,100000100,100000079,100005690,100015766,'Listar',NULL,20,'S','N',NULL),(100000079,100005693,100000100,100000079,100005690,100015768,'Reativar',NULL,30,'S','N',NULL),(100000079,100005694,100000100,100000079,100005460,100015790,'Replicações Federação',NULL,0,'S','N',NULL),(100000079,100005695,100000100,100000079,100005471,100015793,'Acervo Global de Sigilosos',NULL,0,'S','N',NULL); +/*!40000 ALTER TABLE `item_menu` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `login` +-- + +DROP TABLE IF EXISTS `login`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `login` ( + `id_login` char(128) NOT NULL, + `id_sistema` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `dth_login` datetime NOT NULL, + `hash_interno` char(128) NOT NULL, + `hash_usuario` char(128) NOT NULL, + `hash_agente` char(128) NOT NULL, + `id_usuario_emulador` int(11) DEFAULT NULL, + `http_client_ip` varchar(39) DEFAULT NULL, + `remote_addr` varchar(39) DEFAULT NULL, + `http_x_forwarded_for` varchar(39) DEFAULT NULL, + `sta_login` char(1) NOT NULL, + `user_agent` varchar(500) NOT NULL, + `id_dispositivo_acesso` varchar(26) DEFAULT NULL, + `id_codigo_acesso` varchar(26) DEFAULT NULL, + PRIMARY KEY (`id_login`,`id_usuario`,`id_sistema`), + KEY `fk_login_usuario_emulador` (`id_usuario_emulador`), + KEY `fk_login_sistema` (`id_sistema`), + KEY `fk_login_usuario` (`id_usuario`), + KEY `i04_login` (`id_login`,`id_sistema`,`id_usuario`,`sta_login`), + KEY `i05_login` (`id_login`,`id_sistema`,`id_usuario`,`dth_login`), + KEY `i06_login` (`hash_usuario`,`dth_login`,`sta_login`), + KEY `i07_login` (`dth_login`), + KEY `fk_login_dispositivo_acesso` (`id_dispositivo_acesso`), + KEY `fk_login_codigo_acesso` (`id_codigo_acesso`), + CONSTRAINT `fk_login_codigo_acesso` FOREIGN KEY (`id_codigo_acesso`) REFERENCES `codigo_acesso` (`id_codigo_acesso`), + CONSTRAINT `fk_login_dispositivo_acesso` FOREIGN KEY (`id_dispositivo_acesso`) REFERENCES `dispositivo_acesso` (`id_dispositivo_acesso`), + CONSTRAINT `fk_login_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_login_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_login_usuario_emulador` FOREIGN KEY (`id_usuario_emulador`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `login` +-- + +LOCK TABLES `login` WRITE; +/*!40000 ALTER TABLE `login` DISABLE KEYS */; +INSERT INTO `login` VALUES ('652ff247edf6532ca2ef4110c56ea3b45e2226825ecc61cdbbc1df137ce75e8c8d6ff1f1acc432af527c4a97fee820998b9170541394ce2ec5c6526746067cec',100000100,100000001,'2022-06-10 13:29:21','9df16ec9a672f63bf0da931403693434be182872acab30975188394220c2536b4269ae09b54c8b79c424b6eac4ad7cc93dfe228354cc3433e46d9efc062641f6','0b74b82d4678b78509606f37a06caf8bdbe2c58a4e9a2e24212ccfde37148f1cc45d7f8afddeab9803bb8d8475179e004102fc6ddab6acb648e66790b4ebf855','af65c8b4d374a60660dcbfd2da3b89c2b083c5715d4d72863439d3e200f02189ee1a3b3321f88d235edcae038719309ed2121c753bea79d68df5848d504a55d8',NULL,NULL,'172.20.0.1',NULL,'C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:100.0) Gecko/20100101 Firefox/100.0',NULL,NULL),('d207f92c2fe2b1627d4f1259a872e18952a1fdefd8cae088b32b84cfc6a8baa9d2617b0bcee16bb3352be77321afaef059ae7a8247b92e0268ac30b944d85297',100000100,100000001,'2022-06-10 13:33:40','342e6ab7d3d298b886ac2b9cad64937179a085f2986b3d6728d2466d6042aaa4e369ae96d8735df23cbb799ef9cb635d7c55c320eb56c7bff0aeb3b0476ce4d8','640dac94ae5e5c108a68aaf8d844acac14be991b5b0ed68fc056407382f5728389bdcc3cbbf9c2da82fa720b62ab35b99263cfdc5155fb5726829accdc60f8cd','fea94743f988cdb74573813650216e8c8160a366053e0434154c80d0878f51667594763976629dddd7de2eb4f38bb0fd5d5fb63edad7538e4dac29a534eb2e34',NULL,NULL,'172.21.0.1',NULL,'R','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36',NULL,NULL); +/*!40000 ALTER TABLE `login` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `menu` +-- + +DROP TABLE IF EXISTS `menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `menu` ( + `id_menu` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(200) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_menu`), + UNIQUE KEY `i02_menu` (`id_menu`,`sin_ativo`), + KEY `fk_menu_sistema` (`id_sistema`), + CONSTRAINT `fk_menu_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `menu` +-- + +LOCK TABLES `menu` WRITE; +/*!40000 ALTER TABLE `menu` DISABLE KEYS */; +INSERT INTO `menu` VALUES (100000078,100000099,'Principal','Menu do Sistema de Permissões','S'),(100000079,100000100,'Principal',NULL,'S'); +/*!40000 ALTER TABLE `menu` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `orgao` +-- + +DROP TABLE IF EXISTS `orgao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `orgao` ( + `id_orgao` int(11) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sin_autenticar` char(1) NOT NULL, + `ordem` int(11) NOT NULL, + PRIMARY KEY (`id_orgao`), + UNIQUE KEY `ak_orgao_sigla` (`sigla`), + UNIQUE KEY `i01_orgao` (`id_orgao`,`sin_ativo`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `orgao` +-- + +LOCK TABLES `orgao` WRITE; +/*!40000 ALTER TABLE `orgao` DISABLE KEYS */; +INSERT INTO `orgao` VALUES (0,'ABC','ABC','S','N',0); +/*!40000 ALTER TABLE `orgao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `perfil` +-- + +DROP TABLE IF EXISTS `perfil`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `perfil` ( + `id_perfil` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `nome` varchar(100) NOT NULL, + `descricao` longtext, + `sin_coordenado` char(1) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_perfil`,`id_sistema`), + UNIQUE KEY `ak_perfil_nome` (`nome`,`id_sistema`), + KEY `fk_perfil_sistema` (`id_sistema`), + CONSTRAINT `fk_perfil_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `perfil` +-- + +LOCK TABLES `perfil` WRITE; +/*!40000 ALTER TABLE `perfil` DISABLE KEYS */; +INSERT INTO `perfil` VALUES (100000931,100000099,'Administrador SIP','Administrador','N','S'),(100000932,100000099,'Básico','Básico','N','S'),(100000933,100000099,'Administrador de Sistema',NULL,'N','S'),(100000935,100000099,'Administrador de Hierarquia',NULL,'N','S'),(100000936,100000099,'Coordenador de Perfil','Básico','N','S'),(100000937,100000099,'Cadastro de Usuários e Unidades',NULL,'N','S'),(100000938,100000100,'Básico','Acesso aos recursos básicos para qualquer usuário no SEI. Pode ser combinado com outros perfis, mas sempre tem que ser concedido para qualquer outro perfil funcionar corretamente.','N','S'),(100000939,100000100,'Administrador','Acesso aos recursos de gestão de tabelas básicas da instituição, relatórios de gerenciamento e configurações gerais do SEI.','N','S'),(100000940,100000100,'Informática','Acesso aos recursos específicos para quem trabalha com suporte de informática do SEI.','N','S'),(100000941,100000100,'Arquivamento','Acesso aos recursos específicos para quem trabalha com arquivamento de vias físicas de documentos.','N','S'),(100000944,100000100,'Ouvidoria','Acesso aos recursos específicos para quem trabalha na Ouvidoria do órgão.','N','S'),(100000945,100000100,'Inspeção','Acesso aos recursos específicos para quem trabalha com inspeção administrativa no órgão.','N','S'),(100000946,100000099,'Coordenador de Unidade',NULL,'N','S'),(100000947,100000100,'Colaborador (Básico sem Assinatura)','Acesso aos recursos básicos para qualquer usuário no SEI, porém, sem permissão para assinatura de documentos.','N','S'),(100000949,100000100,'Acervo de Sigilosos da Unidade',NULL,'N','S'); +/*!40000 ALTER TABLE `perfil` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `permissao` +-- + +DROP TABLE IF EXISTS `permissao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `permissao` ( + `id_perfil` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `id_usuario` int(11) NOT NULL, + `id_unidade` int(11) NOT NULL, + `id_tipo_permissao` int(11) NOT NULL, + `dta_inicio` datetime NOT NULL, + `dta_fim` datetime DEFAULT NULL, + `sin_subunidades` char(1) NOT NULL DEFAULT 'N', + PRIMARY KEY (`id_perfil`,`id_sistema`,`id_usuario`,`id_unidade`), + KEY `fk_permissao_perfil` (`id_perfil`,`id_sistema`), + KEY `fk_permissao_tipo_permissao` (`id_tipo_permissao`), + KEY `fk_permissao_unidade` (`id_unidade`), + KEY `fk_permissao_usuario` (`id_usuario`), + CONSTRAINT `fk_permissao_perfil` FOREIGN KEY (`id_perfil`, `id_sistema`) REFERENCES `perfil` (`id_perfil`, `id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_permissao_tipo_permissao` FOREIGN KEY (`id_tipo_permissao`) REFERENCES `tipo_permissao` (`id_tipo_permissao`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_permissao_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_permissao_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `permissao` +-- + +LOCK TABLES `permissao` WRITE; +/*!40000 ALTER TABLE `permissao` DISABLE KEYS */; +INSERT INTO `permissao` VALUES (100000931,100000099,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000932,100000099,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000933,100000099,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000938,100000100,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000938,100000100,100000002,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000003,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000004,110000001,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000004,110000002,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000005,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000006,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000007,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000008,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000009,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000010,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000011,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000012,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000013,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000014,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000015,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000016,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000017,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000018,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000019,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000020,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000021,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000022,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000023,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000024,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000025,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000026,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000027,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000028,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000029,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000030,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000031,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000032,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000033,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000034,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000035,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000036,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000037,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000038,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000039,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000040,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000041,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000042,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000043,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000044,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000045,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000046,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000047,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000048,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000049,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000050,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000051,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000052,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000938,100000100,100000053,110000003,1,'2022-06-10 00:00:00',NULL,'N'),(100000939,100000100,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000940,100000100,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000941,100000100,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'),(100000945,100000100,100000001,110000000,1,'2016-11-28 00:00:00',NULL,'N'); +/*!40000 ALTER TABLE `permissao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `recurso` +-- + +DROP TABLE IF EXISTS `recurso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `recurso` ( + `id_sistema` int(11) NOT NULL, + `id_recurso` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `descricao` varchar(200) DEFAULT NULL, + `caminho` varchar(255) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_sistema`,`id_recurso`), + UNIQUE KEY `ak_recurso_nome` (`nome`,`id_sistema`), + UNIQUE KEY `i02_recurso` (`id_sistema`,`id_recurso`,`sin_ativo`), + KEY `i03_recurso` (`id_sistema`,`sin_ativo`,`id_recurso`,`nome`), + KEY `i04_recurso` (`id_recurso`,`sin_ativo`), + KEY `fk_recurso_sistema` (`id_sistema`), + CONSTRAINT `fk_recurso_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `recurso` +-- + +LOCK TABLES `recurso` WRITE; +/*!40000 ALTER TABLE `recurso` DISABLE KEYS */; +INSERT INTO `recurso` VALUES (100000099,100014301,'sistema_cadastrar','Cadastro de Sistema','controlador.php?acao=sistema_cadastrar','S'),(100000099,100014302,'sistema_listar','Lista de Sistemas','controlador.php?acao=sistema_listar','S'),(100000099,100014303,'sistema_consultar','Consulta de Sistema','controlador.php?acao=sistema_consultar','S'),(100000099,100014304,'sistema_alterar','Alteração de Sistema','controlador.php?acao=sistema_alterar','S'),(100000099,100014305,'sistema_excluir','Exclusão de Sistema','controlador.php?acao=sistema_excluir','S'),(100000099,100014306,'sistema_desativar','Desativação de Sistema','controlador.php?acao=sistema_desativar','S'),(100000099,100014307,'tipo_permissao_cadastrar','Cadastro de Tipo de Permissão','controlador.php?acao=tipo_permissao_cadastrar','S'),(100000099,100014308,'tipo_permissao_listar','Lista de Tipos de Permissão','controlador.php?acao=tipo_permissao_listar','S'),(100000099,100014309,'tipo_permissao_consultar','Consulta de Tipo de Permissão','controlador.php?acao=tipo_permissao_consultar','S'),(100000099,100014310,'tipo_permissao_alterar','Alteração de Tipo de Permissão','controlador.php?acao=tipo_permissao_alterar','S'),(100000099,100014311,'tipo_permissao_excluir','Exclusão de Tipo de Permissão','controlador.php?acao=tipo_permissao_excluir','S'),(100000099,100014312,'orgao_cadastrar','Cadastro de Órgão','controlador.php?acao=orgao_cadastrar','S'),(100000099,100014313,'orgao_listar','Lista de Órgãos','controlador.php?acao=orgao_listar','S'),(100000099,100014314,'orgao_consultar','Consulta de Órgão','controlador.php?acao=orgao_consultar','S'),(100000099,100014315,'orgao_alterar','Alteração de Órgão','controlador.php?acao=orgao_alterar','S'),(100000099,100014316,'orgao_excluir','Exclusão de Órgão','controlador.php?acao=orgao_excluir','S'),(100000099,100014317,'orgao_desativar','Desativação de Órgão','controlador.php?acao=orgao_desativar','S'),(100000099,100014324,'administrador_sistema_cadastrar','Cadastro de Administrador de Sistema','controlador.php?acao=administrador_sistema_cadastrar','S'),(100000099,100014325,'administrador_sistema_listar','Lista de Administradores de Sistemas','controlador.php?acao=administrador_sistema_listar','S'),(100000099,100014326,'administrador_sistema_excluir','Exclusão de Administrador de Sistema','controlador.php?acao=administrador_sistema_excluir','S'),(100000099,100014327,'usuario_cadastrar','Cadastro de Usuário','controlador.php?acao=usuario_cadastrar','S'),(100000099,100014328,'usuario_listar','Lista de Usuários','controlador.php?acao=usuario_listar','S'),(100000099,100014329,'usuario_consultar','Consulta de Usuário','controlador.php?acao=usuario_consultar','S'),(100000099,100014330,'usuario_alterar','Alteração de Usuário','controlador.php?acao=usuario_alterar','S'),(100000099,100014331,'usuario_excluir','Exclusão de Usuário','controlador.php?acao=usuario_excluir','S'),(100000099,100014332,'usuario_desativar','Desativação de Usuário','controlador.php?acao=usuario_desativar','S'),(100000099,100014333,'hierarquia_cadastrar','Cadastro de Hierarquia','controlador.php?acao=hierarquia_cadastrar','S'),(100000099,100014334,'hierarquia_listar','Lista de Hierarquias','controlador.php?acao=hierarquia_listar','S'),(100000099,100014335,'hierarquia_consultar','Consulta de Hierarquia','controlador.php?acao=hierarquia_consultar','S'),(100000099,100014336,'hierarquia_alterar','Alteração de Hierarquia','controlador.php?acao=hierarquia_alterar','S'),(100000099,100014337,'hierarquia_excluir','Exclusão de Hierarquia','controlador.php?acao=hierarquia_excluir','S'),(100000099,100014338,'hierarquia_desativar','Desativação de Hierarquia','controlador.php?acao=hierarquia_desativar','S'),(100000099,100014339,'rel_hierarquia_unidade_cadastrar','Cadastro de Unidades na Hierarquia','controlador.php?acao=rel_hierarquia_unidade_cadastrar','S'),(100000099,100014340,'rel_hierarquia_unidade_listar','Lista de Unidades da Hierarquia','controlador.php?acao=rel_hierarquia_unidade_listar','S'),(100000099,100014341,'rel_hierarquia_unidade_alterar','Alteração de Unidade na Hierarquia','controlador.php?acao=rel_hierarquia_unidade_alterar','S'),(100000099,100014342,'rel_hierarquia_unidade_excluir','Exclusão de Unidade na Hierarquia','controlador.php?acao=rel_hierarquia_unidade_excluir','S'),(100000099,100014343,'rel_hierarquia_unidade_desativar','Desativação de Unidade na Hierarquia','controlador.php?acao=rel_hierarquia_unidade_desativar','S'),(100000099,100014344,'unidade_cadastrar','Cadastro de Unidade','controlador.php?acao=unidade_cadastrar','S'),(100000099,100014345,'unidade_listar','Lista de Unidades','controlador.php?acao=unidade_listar','S'),(100000099,100014346,'unidade_consultar','Consulta de Unidade','controlador.php?acao=unidade_consutar','S'),(100000099,100014347,'unidade_alterar','Alteração de Unidade','controlador.php?acao=unidade_alterar','S'),(100000099,100014348,'unidade_excluir','Exclusão de Unidade','controlador.php?acao=unidade_excluir','S'),(100000099,100014349,'unidade_desativar','Desativação de Unidade','controlador.php?acao=unidade_desativar','S'),(100000099,100014350,'coordenador_unidade_cadastrar','Cadastro de Coordenador de Unidade','controlador.php?acao=coordenador_unidade_cadastrar','S'),(100000099,100014351,'coordenador_unidade_listar','Lista de Coordenadores de Unidades','controlador.php?acao=coordenador_unidade_listar','S'),(100000099,100014352,'coordenador_unidade_excluir','Exclusão de Coordenador de Unidade','controlador.php?acao=coordenador_unidade_excluir','S'),(100000099,100014353,'recurso_cadastrar','Cadastro de Recurso','controlador.php?acao=recurso_cadastrar','S'),(100000099,100014354,'recurso_listar','Lista de Recursos','controlador.php?acao=recurso_listar','S'),(100000099,100014355,'recurso_consultar','Consulta de Recurso','controlador.php?acao=recurso_consultar','S'),(100000099,100014356,'recurso_alterar','Alteração de Recurso','controlador.php?acao=recurso_alterar','S'),(100000099,100014357,'recurso_excluir','Exclusão de Recurso','controlador.php?acao=recurso_excluir','S'),(100000099,100014358,'recurso_desativar','Desativação de Recurso','controlador.php?acao=recurso_desativar','S'),(100000099,100014359,'perfil_cadastrar','Cadastro de Perfil','controlador.php?acao=perfil_cadastrar','S'),(100000099,100014360,'perfil_listar','Lista de Perfis','controlador.php?acao=perfil_listar','S'),(100000099,100014361,'perfil_consultar','Consulta de Perfil','controlador.php?acao=perfil_consultar','S'),(100000099,100014362,'perfil_alterar','Alteração de Perfil','controlador.php?acao=perfil_alterar','S'),(100000099,100014363,'perfil_excluir','Exclusão de Perfil','controlador.php?acao=perfil_excluir','S'),(100000099,100014364,'perfil_desativar','Desativação de Perfil','controlador.php?acao=perfil_desativar','S'),(100000099,100014365,'perfil_montar','Montagem de Perfil','controlador.php?acao=perfil_montar','S'),(100000099,100014366,'coordenador_perfil_cadastrar','Cadastro de Coordenador de Perfil','controlador.php?acao=coordenador_perfil_cadastrar','S'),(100000099,100014367,'coordenador_perfil_listar','Lista de Coordenadores de Perfis','controlador.php?acao=coordenador_perfil_listar','S'),(100000099,100014368,'coordenador_perfil_excluir','Exclusão de Coordenador de Perfil','controlador.php?acao=coordenador_perfil_excluir','S'),(100000099,100014369,'menu_cadastrar','Cadastro de Menu','controlador.php?acao=menu_cadastrar','S'),(100000099,100014370,'menu_listar','Lista de Menus','controlador.php?acao=menu_listar','S'),(100000099,100014371,'menu_alterar','Alteração de Menu','controlador.php?acao=menu_alterar','S'),(100000099,100014372,'menu_excluir','Exclusão de Menu','controlador.php?acao=menu_excluir','S'),(100000099,100014373,'menu_desativar','Desativação de Menu','controlador.php?acao=menu_desativar','S'),(100000099,100014374,'item_menu_cadastrar','Cadastro de Item de Menu','controlador.php?acao=item_menu_cadastrar','S'),(100000099,100014375,'item_menu_listar','Lista de Itens de Menu','controlador.php?acao=item_menu_listar','S'),(100000099,100014376,'item_menu_alterar','Alteração de Item de Menu','controlador.php?acao=item_menu_alterar','S'),(100000099,100014377,'item_menu_excluir','Exclusão de Item de Menu','controlador.php?acao=item_menu_excluir','S'),(100000099,100014378,'item_menu_desativar','Desativação de Item de Menu','controlador.php?acao=item_menu_desativar','S'),(100000099,100014379,'permissao_cadastrar','Cadastro de Permissão','controlador.php?acao=permissao_cadastrar','S'),(100000099,100014380,'permissao_listar_administradas','Lista de Permissões Administradas','controlador.php?acao=permissao_listar_administradas','S'),(100000099,100014381,'permissao_listar_pessoais','Lista de Permissões Pessoais','controlador.php?acao=permissao_listar_pessoais','S'),(100000099,100014382,'permissao_consultar','Consulta de Permissão','controlador.php?acao=permissao_consultar','S'),(100000099,100014383,'permissao_alterar','Alteração de Permissão','controlador.php?acao=permissao_alterar','S'),(100000099,100014384,'permissao_copiar','Cópia de Permissões','controlador.php?acao=permissao_copiar','S'),(100000099,100014385,'permissao_excluir','Exclusão de Permissão','controlador.php?acao=permissao_excluir','S'),(100000099,100014386,'permissao_delegar','Delegação de Permissões','controlador.php?acao=permissao_delegar','S'),(100000099,100014387,'rel_perfil_recurso_cadastrar','Cadastro de Recurso de Perfil','controlador.php?acao=rel_perfil_recurso_cadastrar','S'),(100000099,100014388,'rel_perfil_recurso_listar','Lista de Recursos de Perfil','controlador.php?acao=rel_perfil_recurso_listar','S'),(100000099,100014389,'rel_perfil_recurso_excluir','Exclusão de Recurso de Perfil','controlador.php?acao=rel_perfil_recurso_excluir','S'),(100000099,100014390,'rel_perfil_item_menu_cadastrar','Cadastro de Item de Menu em Perfil','controlador.php?acao=rel_perfil_item_menu_cadastrar','S'),(100000099,100014391,'rel_perfil_item_menu_listar','Lista de Itens de Menu em Perfil','controlador.php?acao=rel_perfil_item_menu_listar','S'),(100000099,100014392,'rel_perfil_item_menu_excluir','Exclusão de Item de Menu em Perfil','controlador.php?acao=rel_perfil_item_menu_excluir','S'),(100000099,100014393,'sistema_clonar',NULL,'controlador.php?acao=sistema_clonar','S'),(100000099,100014394,'sistema_importar',NULL,'controlador.php?acao=sistema_importar','S'),(100000099,100014395,'perfil_clonar',NULL,'controlador.php?acao=perfil_clonar','S'),(100000099,100014396,'recurso_gerar',NULL,'controlador.php?acao=recurso_gerar','S'),(100000099,100014405,'infra_log_listar',NULL,'controlador.php?acao=infra_log_listar','S'),(100000099,100014406,'infra_log_excluir',NULL,'controlador.php?acao=infra_log_excluir','S'),(100000099,100014407,'usuario_reativar',NULL,'controlador.php?acao=usuario_reativar','S'),(100000099,100014408,'unidade_reativar',NULL,'controlador.php?acao=unidade_reativar','S'),(100000099,100014409,'recurso_reativar',NULL,'controlador.php?acao=recurso_reativar','S'),(100000099,100014410,'rel_hierarquia_unidade_reativar',NULL,'controlador.php?acao=rel_hierarquia_unidade_reativar','S'),(100000099,100014412,'permissao_atribuir_em_bloco',NULL,'controlador.php?acao=permissao_atribuir_em_bloco','S'),(100000099,100014414,'hierarquia_clonar',NULL,'controlador.php?acao=hierarquia_clonar','S'),(100000099,100014415,'infra_parametro_cadastrar',NULL,'controlador.php?acao=infra_parametro_cadastrar','S'),(100000099,100014416,'infra_parametro_alterar',NULL,'controlador.php?acao=infra_parametro_alterar','S'),(100000099,100014417,'infra_parametro_consultar',NULL,'controlador.php?acao=infra_parametro_consultar','S'),(100000099,100014418,'infra_parametro_listar',NULL,'controlador.php?acao=infra_parametro_listar','S'),(100000099,100014419,'infra_parametro_excluir',NULL,'controlador.php?acao=infra_parametro_excluir','S'),(100000099,100014420,'infra_sequencia_cadastrar',NULL,'controlador.php?acao=infra_sequencia_cadastrar','S'),(100000099,100014421,'infra_sequencia_alterar',NULL,'controlador.php?acao=infra_sequencia_alterar','S'),(100000099,100014422,'infra_sequencia_consultar',NULL,'controlador.php?acao=infra_sequencia_consultar','S'),(100000099,100014423,'infra_sequencia_listar',NULL,'controlador.php?acao=infra_sequencia_listar','S'),(100000099,100014424,'infra_sequencia_excluir',NULL,'controlador.php?acao=infra_sequencia_excluir','S'),(100000099,100015173,'login_padrao',NULL,'controlador.php?acao=login_padrao','S'),(100000099,100015174,'login_unificado',NULL,'controlador.php?acao=login_unificado','S'),(100000099,100015175,'login_remover',NULL,'controlador.php?acao=login_remover','S'),(100000099,100015176,'infra_regra_auditoria_cadastrar',NULL,'controlador.php?acao=infra_regra_auditoria_cadastrar','S'),(100000099,100015177,'infra_regra_auditoria_alterar',NULL,'controlador.php?acao=infra_regra_auditoria_alterar','S'),(100000099,100015178,'infra_regra_auditoria_consultar',NULL,'controlador.php?acao=infra_regra_auditoria_consultar','S'),(100000099,100015179,'infra_regra_auditoria_listar',NULL,'controlador.php?acao=infra_regra_auditoria_listar','S'),(100000099,100015180,'infra_regra_auditoria_excluir',NULL,'controlador.php?acao=infra_regra_auditoria_excluir','S'),(100000099,100015181,'infra_regra_auditoria_desativar',NULL,'controlador.php?acao=infra_regra_auditoria_desativar','S'),(100000099,100015182,'infra_regra_auditoria_reativar',NULL,'controlador.php?acao=infra_regra_auditoria_reativar','S'),(100000099,100015183,'infra_regra_auditoria_recurso_cadastrar',NULL,'controlador.php?acao=infra_regra_auditoria_recurso_cadastrar','S'),(100000099,100015184,'infra_regra_auditoria_recurso_listar',NULL,'controlador.php?acao=infra_regra_auditoria_recurso_listar','S'),(100000099,100015185,'infra_regra_auditoria_recurso_excluir',NULL,'controlador.php?acao=infra_regra_auditoria_recurso_excluir','S'),(100000099,100015186,'infra_auditoria_cadastrar',NULL,'controlador.php?acao=infra_auditoria_cadastrar','S'),(100000099,100015187,'infra_auditoria_listar',NULL,'controlador.php?acao=infra_auditoria_listar','S'),(100000099,100015188,'perfil_reativar',NULL,'controlador.php?acao=perfil_reativar','S'),(100000099,100015190,'infra_agendamento_tarefa_cadastrar',NULL,'controlador.php?acao=infra_agendamento_tarefa_cadastrar','S'),(100000099,100015191,'infra_agendamento_tarefa_alterar',NULL,'controlador.php?acao=infra_agendamento_tarefa_alterar','S'),(100000099,100015192,'infra_agendamento_tarefa_consultar',NULL,'controlador.php?acao=infra_agendamento_tarefa_consultar','S'),(100000099,100015193,'infra_agendamento_tarefa_listar',NULL,'controlador.php?acao=infra_agendamento_tarefa_listar','S'),(100000099,100015194,'infra_agendamento_tarefa_excluir',NULL,'controlador.php?acao=infra_agendamento_tarefa_excluir','S'),(100000099,100015195,'infra_agendamento_tarefa_executar',NULL,'controlador.php?acao=infra_agendamento_tarefa_executar','S'),(100000099,100015196,'infra_agendamento_tarefa_desativar',NULL,'controlador.php?acao=infra_agendamento_tarefa_desativar','S'),(100000099,100015197,'infra_agendamento_tarefa_reativar',NULL,'controlador.php?acao=infra_agendamento_tarefa_reativar','S'),(100000099,100015198,'infra_banco_comparar',NULL,'controlador.php?acao=infra_banco_comparar','S'),(100000099,100015199,'recurso_selecionar_auditoria',NULL,'controlador.php?acao=recurso_selecionar_auditoria','S'),(100000099,100015200,'regra_auditoria_cadastrar',NULL,'controlador.php?acao=regra_auditoria_cadastrar','S'),(100000099,100015201,'regra_auditoria_alterar',NULL,'controlador.php?acao=regra_auditoria_alterar','S'),(100000099,100015202,'regra_auditoria_consultar',NULL,'controlador.php?acao=regra_auditoria_consultar','S'),(100000099,100015203,'regra_auditoria_listar',NULL,'controlador.php?acao=regra_auditoria_listar','S'),(100000099,100015204,'regra_auditoria_excluir',NULL,'controlador.php?acao=regra_auditoria_excluir','S'),(100000099,100015205,'regra_auditoria_desativar',NULL,'controlador.php?acao=regra_auditoria_desativar','S'),(100000099,100015206,'regra_auditoria_reativar',NULL,'controlador.php?acao=regra_auditoria_reativar','S'),(100000099,100015207,'rel_regra_auditoria_recurso_cadastrar',NULL,'controlador.php?acao=rel_regra_auditoria_recurso_cadastrar','S'),(100000099,100015208,'rel_regra_auditoria_recurso_consultar',NULL,'controlador.php?acao=rel_regra_auditoria_recurso_consultar','S'),(100000099,100015209,'rel_regra_auditoria_recurso_excluir',NULL,'controlador.php?acao=rel_regra_auditoria_recurso_excluir','S'),(100000099,100015210,'rel_regra_auditoria_recurso_listar',NULL,'controlador.php?acao=rel_regra_auditoria_recurso_listar','S'),(100000099,100015259,'sistema_upload',NULL,'controlador.php?acao=sistema_upload','S'),(100000099,100015265,'orgao_reativar',NULL,'controlador.php?acao=orgao_reativar','S'),(100000099,100015363,'servidor_autenticacao_cadastrar',NULL,'controlador.php?acao=servidor_autenticacao_cadastrar','S'),(100000099,100015364,'servidor_autenticacao_alterar',NULL,'controlador.php?acao=servidor_autenticacao_alterar','S'),(100000099,100015365,'servidor_autenticacao_excluir',NULL,'controlador.php?acao=servidor_autenticacao_excluir','S'),(100000099,100015366,'servidor_autenticacao_selecionar',NULL,'controlador.php?acao=servidor_autenticacao_selecionar','S'),(100000099,100015367,'servidor_autenticacao_consultar',NULL,'controlador.php?acao=servidor_autenticacao_consultar','S'),(100000099,100015368,'servidor_autenticacao_listar',NULL,'controlador.php?acao=servidor_autenticacao_listar','S'),(100000099,100015369,'rel_orgao_autenticacao_cadastrar',NULL,'controlador.php?acao=rel_orgao_autenticacao_cadastrar','S'),(100000099,100015370,'rel_orgao_autenticacao_excluir',NULL,'controlador.php?acao=rel_orgao_autenticacao_excluir','S'),(100000099,100015371,'rel_orgao_autenticacao_listar',NULL,'controlador.php?acao=rel_orgao_autenticacao_listar','S'),(100000099,100015451,'sistema_reativar',NULL,'controlador.php?acao=sistema_reativar','S'),(100000099,100015452,'hierarquia_reativar',NULL,'controlador.php?acao=hierarquia_reativar','S'),(100000099,100015551,'perfil_importar',NULL,'controlador.php?acao=perfil_importar','S'),(100000099,100015552,'perfil_comparar',NULL,'controlador.php?acao=perfil_comparar','S'),(100000099,100015554,'modulo_listar',NULL,'controlador.php?acao=modulo_listar','S'),(100000099,100015555,'infra_atributo_cache_listar',NULL,'controlador.php?acao=infra_atributo_cache_listar','S'),(100000099,100015556,'infra_atributo_cache_excluir',NULL,'controlador.php?acao=infra_atributo_cache_excluir','S'),(100000099,100015557,'infra_atributo_cache_consultar',NULL,'controlador.php?acao=infra_atributo_cache_consultar','S'),(100000099,100015558,'infra_acesso_usuario_listar',NULL,'controlador.php?acao=infra_acesso_usuario_listar','S'),(100000099,100015559,'infra_trocar_unidade',NULL,'controlador.php?acao=infra_trocar_unidade','S'),(100000099,100015560,'login_listar',NULL,'controlador.php?acao=login_listar','S'),(100000099,100015561,'login_consultar',NULL,'controlador.php?acao=login_consultar','S'),(100000099,100015562,'email_sistema_alterar',NULL,'controlador.php?acao=email_sistema_alterar','S'),(100000099,100015563,'email_sistema_listar',NULL,'controlador.php?acao=email_sistema_listar','S'),(100000099,100015564,'email_sistema_consultar',NULL,'controlador.php?acao=email_sistema_consultar','S'),(100000099,100015565,'email_sistema_desativar',NULL,'controlador.php?acao=email_sistema_desativar','S'),(100000099,100015566,'email_sistema_reativar',NULL,'controlador.php?acao=email_sistema_reativar','S'),(100000099,100015567,'ajuda_variaveis_email_sistema',NULL,'controlador.php?acao=ajuda_variaveis_email_sistema','S'),(100000099,100015568,'codigo_acesso_listar',NULL,'controlador.php?acao=codigo_acesso_listar','S'),(100000099,100015569,'codigo_acesso_consultar',NULL,'controlador.php?acao=codigo_acesso_consultar','S'),(100000099,100015570,'codigo_acesso_excluir',NULL,'controlador.php?acao=codigo_acesso_excluir','S'),(100000099,100015571,'codigo_acesso_desativar',NULL,'controlador.php?acao=codigo_acesso_desativar','S'),(100000099,100015572,'codigo_acesso_reativar',NULL,'controlador.php?acao=codigo_acesso_reativar','S'),(100000099,100015573,'dispositivo_acesso_listar',NULL,'controlador.php?acao=dispositivo_acesso_listar','S'),(100000099,100015574,'dispositivo_acesso_consultar',NULL,'controlador.php?acao=dispositivo_acesso_consultar','S'),(100000099,100015575,'codigo_bloqueio_listar',NULL,'controlador.php?acao=codigo_bloqueio_listar','S'),(100000099,100015576,'codigo_bloqueio_consultar',NULL,'controlador.php?acao=codigo_bloqueio_consultar','S'),(100000099,100015577,'usuario_historico_listar',NULL,'controlador.php?acao=usuario_historico_listar','S'),(100000099,100015578,'usuario_historico_consultar',NULL,'controlador.php?acao=usuario_historico_consultar','S'),(100000099,100015579,'usuario_historico_cadastrar',NULL,'controlador.php?acao=usuario_historico_cadastrar','S'),(100000099,100015580,'usuario_bloquear',NULL,'controlador.php?acao=usuario_bloquear','S'),(100000099,100015581,'usuario_desbloquear',NULL,'controlador.php?acao=usuario_desbloquear','S'),(100000099,100015582,'sistema_gerar_chave_acesso',NULL,'controlador.php?acao=sistema_gerar_chave_acesso','S'),(100000099,100015583,'sistema_servico_selecionar',NULL,'controlador.php?acao=sistema_servico_selecionar','S'),(100000100,100014435,'procedimento_gerar',NULL,'controlador.php?acao=procedimento_gerar','S'),(100000100,100014436,'procedimento_alterar',NULL,'controlador.php?acao=procedimento_alterar','S'),(100000100,100014437,'procedimento_consultar',NULL,'controlador.php?acao=procedimento_consultar','S'),(100000100,100014438,'procedimento_listar',NULL,'controlador.php?acao=procedimento_listar','S'),(100000100,100014439,'procedimento_selecionar',NULL,'controlador.php?acao=procedimento_selecionar','S'),(100000100,100014440,'procedimento_excluir',NULL,'controlador.php?acao=procedimento_excluir','S'),(100000100,100014441,'tipo_procedimento_cadastrar',NULL,'controlador.php?acao=tipo_procedimento_cadastrar','S'),(100000100,100014442,'tipo_procedimento_alterar',NULL,'controlador.php?acao=tipo_procedimento_alterar','S'),(100000100,100014443,'tipo_procedimento_consultar',NULL,'controlador.php?acao=tipo_procedimento_consultar','S'),(100000100,100014444,'tipo_procedimento_listar',NULL,'controlador.php?acao=tipo_procedimento_listar','S'),(100000100,100014445,'tipo_procedimento_selecionar',NULL,'controlador.php?acao=tipo_procedimento_selecionar','S'),(100000100,100014446,'tipo_procedimento_excluir',NULL,'controlador.php?acao=tipo_procedimento_excluir','S'),(100000100,100014447,'tipo_procedimento_desativar',NULL,'controlador.php?acao=tipo_procedimento_desativar','S'),(100000100,100014448,'cargo_cadastrar',NULL,'controlador.php?acao=cargo_cadastrar','S'),(100000100,100014449,'cargo_alterar',NULL,'controlador.php?acao=cargo_alterar','S'),(100000100,100014450,'cargo_consultar',NULL,'controlador.php?acao=cargo_consultar','S'),(100000100,100014451,'cargo_listar',NULL,'controlador.php?acao=cargo_listar','S'),(100000100,100014452,'cargo_selecionar',NULL,'controlador.php?acao=cargo_selecionar','S'),(100000100,100014453,'cargo_excluir',NULL,'controlador.php?acao=cargo_excluir','S'),(100000100,100014454,'cargo_desativar',NULL,'controlador.php?acao=cargo_desativar','S'),(100000100,100014455,'cargo_reativar',NULL,'controlador.php?acao=cargo_reativar','S'),(100000100,100014464,'vocativo_cadastrar',NULL,'controlador.php?acao=vocativo_cadastrar','S'),(100000100,100014465,'vocativo_alterar',NULL,'controlador.php?acao=vocativo_alterar','S'),(100000100,100014466,'vocativo_consultar',NULL,'controlador.php?acao=vocativo_consultar','S'),(100000100,100014467,'vocativo_listar',NULL,'controlador.php?acao=vocativo_listar','S'),(100000100,100014468,'vocativo_selecionar',NULL,'controlador.php?acao=vocativo_selecionar','S'),(100000100,100014469,'vocativo_excluir',NULL,'controlador.php?acao=vocativo_excluir','S'),(100000100,100014470,'vocativo_desativar',NULL,'controlador.php?acao=vocativo_desativar','S'),(100000100,100014471,'vocativo_reativar',NULL,'controlador.php?acao=vocativo_reativar','S'),(100000100,100014472,'tratamento_cadastrar',NULL,'controlador.php?acao=tratamento_cadastrar','S'),(100000100,100014473,'tratamento_alterar',NULL,'controlador.php?acao=tratamento_alterar','S'),(100000100,100014474,'tratamento_consultar',NULL,'controlador.php?acao=tratamento_consultar','S'),(100000100,100014475,'tratamento_listar',NULL,'controlador.php?acao=tratamento_listar','S'),(100000100,100014476,'tratamento_selecionar',NULL,'controlador.php?acao=tratamento_selecionar','S'),(100000100,100014477,'tratamento_excluir',NULL,'controlador.php?acao=tratamento_excluir','S'),(100000100,100014478,'tratamento_desativar',NULL,'controlador.php?acao=tratamento_desativar','S'),(100000100,100014479,'tratamento_reativar',NULL,'controlador.php?acao=tratamento_reativar','S'),(100000100,100014480,'tipo_procedimento_reativar',NULL,'controlador.php?acao=tipo_procedimento_reativar','S'),(100000100,100014481,'tipo_contato_cadastrar',NULL,'controlador.php?acao=tipo_contato_cadastrar','S'),(100000100,100014482,'tipo_contato_alterar',NULL,'controlador.php?acao=tipo_contato_alterar','S'),(100000100,100014483,'tipo_contato_consultar',NULL,'controlador.php?acao=tipo_contato_consultar','S'),(100000100,100014484,'tipo_contato_listar',NULL,'controlador.php?acao=tipo_contato_listar','S'),(100000100,100014485,'tipo_contato_selecionar',NULL,'controlador.php?acao=tipo_contato_selecionar','S'),(100000100,100014486,'tipo_contato_excluir',NULL,'controlador.php?acao=tipo_contato_excluir','S'),(100000100,100014487,'tipo_contato_desativar',NULL,'controlador.php?acao=tipo_contato_desativar','S'),(100000100,100014488,'tipo_contato_reativar',NULL,'controlador.php?acao=tipo_contato_reativar','S'),(100000100,100014489,'uf_cadastrar',NULL,'controlador.php?acao=uf_cadastrar','S'),(100000100,100014490,'uf_alterar',NULL,'controlador.php?acao=uf_alterar','S'),(100000100,100014491,'uf_consultar',NULL,'controlador.php?acao=uf_consultar','S'),(100000100,100014492,'uf_listar',NULL,'controlador.php?acao=uf_listar','S'),(100000100,100014493,'uf_selecionar',NULL,'controlador.php?acao=uf_selecionar','S'),(100000100,100014494,'uf_excluir',NULL,'controlador.php?acao=uf_excluir','S'),(100000100,100014495,'cidade_cadastrar',NULL,'controlador.php?acao=cidade_cadastrar','S'),(100000100,100014496,'cidade_alterar',NULL,'controlador.php?acao=cidade_alterar','S'),(100000100,100014497,'cidade_consultar',NULL,'controlador.php?acao=cidade_consultar','S'),(100000100,100014498,'cidade_listar',NULL,'controlador.php?acao=cidade_listar','S'),(100000100,100014499,'cidade_selecionar',NULL,'controlador.php?acao=cidade_selecionar','S'),(100000100,100014500,'cidade_excluir',NULL,'controlador.php?acao=cidade_excluir','S'),(100000100,100014508,'contato_cadastrar',NULL,'controlador.php?acao=contato_cadastrar&sin_contexto=N','S'),(100000100,100014509,'contato_alterar',NULL,'controlador.php?acao=contato_alterar','S'),(100000100,100014510,'contato_consultar',NULL,'controlador.php?acao=contato_consultar','S'),(100000100,100014511,'contato_listar',NULL,'controlador.php?acao=contato_listar','S'),(100000100,100014512,'contato_selecionar',NULL,'controlador.php?acao=contato_selecionar','S'),(100000100,100014513,'contato_excluir',NULL,'controlador.php?acao=contato_excluir','S'),(100000100,100014514,'contato_desativar',NULL,'controlador.php?acao=contato_desativar','S'),(100000100,100014515,'contato_reativar',NULL,'controlador.php?acao=contato_reativar','S'),(100000100,100014516,'usuario_cadastrar',NULL,'controlador.php?acao=usuario_cadastrar','S'),(100000100,100014517,'usuario_alterar',NULL,'controlador.php?acao=usuario_alterar','S'),(100000100,100014518,'usuario_consultar',NULL,'controlador.php?acao=usuario_consultar','S'),(100000100,100014519,'usuario_listar',NULL,'controlador.php?acao=usuario_listar','S'),(100000100,100014520,'usuario_selecionar',NULL,'controlador.php?acao=usuario_selecionar','S'),(100000100,100014521,'usuario_excluir',NULL,'controlador.php?acao=usuario_excluir','S'),(100000100,100014522,'unidade_cadastrar',NULL,'controlador.php?acao=unidade_cadastrar','S'),(100000100,100014523,'unidade_alterar',NULL,'controlador.php?acao=unidade_alterar','S'),(100000100,100014524,'unidade_consultar',NULL,'controlador.php?acao=unidade_consultar','S'),(100000100,100014525,'unidade_listar',NULL,'controlador.php?acao=unidade_listar','S'),(100000100,100014526,'unidade_selecionar_todas',NULL,'controlador.php?acao=unidade_selecionar_todas','S'),(100000100,100014527,'unidade_excluir',NULL,'controlador.php?acao=unidade_excluir','S'),(100000100,100014528,'unidade_desativar',NULL,'controlador.php?acao=unidade_desativar','S'),(100000100,100014529,'unidade_reativar',NULL,'controlador.php?acao=unidade_reativar','S'),(100000100,100014530,'rel_grupo_contato_cadastrar',NULL,'controlador.php?acao=rel_grupo_contato_cadastrar','S'),(100000100,100014531,'rel_grupo_contato_alterar',NULL,'controlador.php?acao=rel_grupo_contato_alterar','S'),(100000100,100014532,'rel_grupo_contato_consultar',NULL,'controlador.php?acao=rel_grupo_contato_consultar','S'),(100000100,100014533,'rel_grupo_contato_listar',NULL,'controlador.php?acao=rel_grupo_contato_listar','S'),(100000100,100014534,'rel_grupo_contato_selecionar',NULL,'controlador.php?acao=rel_grupo_contato_selecionar','S'),(100000100,100014535,'rel_grupo_contato_excluir',NULL,'controlador.php?acao=rel_grupo_contato_excluir','S'),(100000100,100014536,'grupo_contato_cadastrar',NULL,'controlador.php?acao=grupo_contato_cadastrar','S'),(100000100,100014537,'grupo_contato_alterar',NULL,'controlador.php?acao=grupo_contato_alterar','S'),(100000100,100014538,'grupo_contato_consultar',NULL,'controlador.php?acao=grupo_contato_consultar','S'),(100000100,100014539,'grupo_contato_listar',NULL,'controlador.php?acao=grupo_contato_listar','S'),(100000100,100014540,'grupo_contato_selecionar',NULL,'controlador.php?acao=grupo_contato_selecionar','S'),(100000100,100014541,'grupo_contato_excluir',NULL,'controlador.php?acao=grupo_contato_excluir','S'),(100000100,100014542,'assunto_cadastrar',NULL,'controlador.php?acao=assunto_cadastrar','S'),(100000100,100014543,'assunto_alterar',NULL,'controlador.php?acao=assunto_alterar','S'),(100000100,100014544,'assunto_consultar',NULL,'controlador.php?acao=assunto_consultar','S'),(100000100,100014545,'assunto_listar',NULL,'controlador.php?acao=assunto_listar','S'),(100000100,100014546,'assunto_selecionar',NULL,'controlador.php?acao=assunto_selecionar','S'),(100000100,100014547,'assunto_excluir',NULL,'controlador.php?acao=assunto_excluir','S'),(100000100,100014548,'assunto_desativar',NULL,'controlador.php?acao=assunto_desativar','S'),(100000100,100014549,'assunto_reativar',NULL,'controlador.php?acao=assunto_reativar','S'),(100000100,100014550,'protocolo_gerar',NULL,'controlador.php?acao=protocolo_cadastrar','S'),(100000100,100014551,'protocolo_alterar',NULL,'controlador.php?acao=protocolo_alterar','S'),(100000100,100014552,'protocolo_consultar',NULL,'controlador.php?acao=protocolo_consultar','S'),(100000100,100014553,'protocolo_listar',NULL,'controlador.php?acao=protocolo_listar','S'),(100000100,100014554,'protocolo_selecionar',NULL,'controlador.php?acao=protocolo_selecionar','S'),(100000100,100014555,'protocolo_excluir',NULL,'controlador.php?acao=protocolo_excluir','S'),(100000100,100014556,'contato_imprimir_etiquetas',NULL,'controlador.php?acao=contato_imprimir_etiquetas','S'),(100000100,100014557,'contato_pdf_etiquetas',NULL,'controlador.php?acao=contato_pdf_etiquetas','S'),(100000100,100014558,'rel_unidade_tipo_contato_cadastrar',NULL,'controlador.php?acao=rel_unidade_tipo_contato_cadastrar','S'),(100000100,100014559,'rel_unidade_tipo_contato_listar',NULL,'controlador.php?acao=rel_unidade_tipo_contato_listar','S'),(100000100,100014560,'rel_unidade_tipo_contato_excluir',NULL,'controlador.php?acao=rel_unidade_tipo_contato_excluir','S'),(100000100,100014561,'infra_log_listar',NULL,'controlador.php?acao=infra_log_listar','S'),(100000100,100014562,'rel_tipo_procedimento_assunto_cadastrar',NULL,'controlador.php?acao=rel_tipo_procedimento_assunto_cadastrar','S'),(100000100,100014563,'rel_tipo_procedimento_assunto_listar',NULL,'controlador.php?acao=rel_tipo_procedimento_assunto_listar','S'),(100000100,100014564,'rel_tipo_procedimento_assunto_excluir',NULL,'controlador.php?acao=rel_tipo_procedimento_assunto_excluir','S'),(100000100,100014565,'infra_log_excluir',NULL,'controlador.php?acao=infra_log_excluir','S'),(100000100,100014566,'participante_cadastrar',NULL,'controlador.php?acao=participante_cadastrar','S'),(100000100,100014567,'participante_alterar',NULL,'controlador.php?acao=participante_alterar','S'),(100000100,100014568,'participante_consultar',NULL,'controlador.php?acao=participante_consultar','S'),(100000100,100014569,'participante_listar',NULL,'controlador.php?acao=participante_listar','S'),(100000100,100014570,'participante_selecionar',NULL,'controlador.php?acao=participante_selecionar','S'),(100000100,100014571,'participante_excluir',NULL,'controlador.php?acao=participante_excluir','S'),(100000100,100014572,'rel_protocolo_assunto_cadastrar',NULL,'controlador.php?acao=rel_protocolo_assunto_cadastrar','S'),(100000100,100014573,'rel_protocolo_assunto_consultar',NULL,'controlador.php?acao=rel_protocolo_assunto_consultar','S'),(100000100,100014574,'rel_protocolo_assunto_listar',NULL,'controlador.php?acao=rel_protocolo_assunto_listar','S'),(100000100,100014575,'rel_protocolo_assunto_excluir',NULL,'controlador.php?acao=rel_protocolo_assunto_excluir','S'),(100000100,100014576,'usuario_desativar',NULL,'controlador.php?acao=usuario_desativar','S'),(100000100,100014577,'usuario_reativar',NULL,'controlador.php?acao=usuario_reativar','S'),(100000100,100014578,'atributo_cadastrar',NULL,'controlador.php?acao=atributo_cadastrar','S'),(100000100,100014579,'atributo_alterar',NULL,'controlador.php?acao=atributo_alterar','S'),(100000100,100014580,'atributo_consultar',NULL,'controlador.php?acao=atributo_consultar','S'),(100000100,100014581,'atributo_listar',NULL,'controlador.php?acao=atributo_listar','S'),(100000100,100014582,'atributo_selecionar',NULL,'controlador.php?acao=atributo_selecionar','S'),(100000100,100014583,'atributo_excluir',NULL,'controlador.php?acao=atributo_excluir','S'),(100000100,100014584,'atributo_desativar',NULL,'controlador.php?acao=atributo_desativar','S'),(100000100,100014585,'atributo_reativar',NULL,'controlador.php?acao=atributo_reativar','S'),(100000100,100014586,'dominio_cadastrar',NULL,'controlador.php?acao=dominio_cadastrar','S'),(100000100,100014587,'dominio_alterar',NULL,'controlador.php?acao=dominio_alterar','S'),(100000100,100014588,'dominio_consultar',NULL,'controlador.php?acao=dominio_consultar','S'),(100000100,100014589,'dominio_listar',NULL,'controlador.php?acao=dominio_listar','S'),(100000100,100014590,'dominio_selecionar',NULL,'controlador.php?acao=dominio_selecionar','S'),(100000100,100014591,'dominio_excluir',NULL,'controlador.php?acao=dominio_excluir','S'),(100000100,100014592,'dominio_desativar',NULL,'controlador.php?acao=dominio_desativar','S'),(100000100,100014593,'dominio_reativar',NULL,'controlador.php?acao=dominio_reativar','S'),(100000100,100014594,'tipo_localizador_cadastrar',NULL,'controlador.php?acao=tipo_localizador_cadastrar','S'),(100000100,100014595,'tipo_localizador_alterar',NULL,'controlador.php?acao=tipo_localizador_alterar','S'),(100000100,100014596,'tipo_localizador_consultar',NULL,'controlador.php?acao=tipo_localizador_consultar','S'),(100000100,100014597,'tipo_localizador_listar',NULL,'controlador.php?acao=tipo_localizador_listar','S'),(100000100,100014598,'tipo_localizador_selecionar',NULL,'controlador.php?acao=tipo_localizador_selecionar','S'),(100000100,100014599,'tipo_localizador_excluir',NULL,'controlador.php?acao=tipo_localizador_excluir','S'),(100000100,100014600,'tipo_localizador_desativar',NULL,'controlador.php?acao=tipo_localizador_desativar','S'),(100000100,100014601,'tipo_localizador_reativar',NULL,'controlador.php?acao=tipo_localizador_reativar','S'),(100000100,100014602,'tipo_suporte_cadastrar',NULL,'controlador.php?acao=tipo_suporte_cadastrar','S'),(100000100,100014603,'tipo_suporte_alterar',NULL,'controlador.php?acao=tipo_suporte_alterar','S'),(100000100,100014604,'tipo_suporte_consultar',NULL,'controlador.php?acao=tipo_suporte_consultar','S'),(100000100,100014605,'tipo_suporte_listar',NULL,'controlador.php?acao=tipo_suporte_listar','S'),(100000100,100014606,'tipo_suporte_selecionar',NULL,'controlador.php?acao=tipo_suporte_selecionar','S'),(100000100,100014607,'tipo_suporte_excluir',NULL,'controlador.php?acao=tipo_suporte_excluir','S'),(100000100,100014608,'tipo_suporte_desativar',NULL,'controlador.php?acao=tipo_suporte_desativar','S'),(100000100,100014609,'tipo_suporte_reativar',NULL,'controlador.php?acao=tipo_suporte_reativar','S'),(100000100,100014610,'lugar_localizador_cadastrar',NULL,'controlador.php?acao=lugar_localizador_cadastrar','S'),(100000100,100014611,'lugar_localizador_alterar',NULL,'controlador.php?acao=lugar_localizador_alterar','S'),(100000100,100014612,'lugar_localizador_consultar',NULL,'controlador.php?acao=lugar_localizador_consultar','S'),(100000100,100014613,'lugar_localizador_listar',NULL,'controlador.php?acao=lugar_localizador_listar','S'),(100000100,100014614,'lugar_localizador_selecionar',NULL,'controlador.php?acao=lugar_localizador_selecionar','S'),(100000100,100014615,'lugar_localizador_excluir',NULL,'controlador.php?acao=lugar_localizador_excluir','S'),(100000100,100014616,'lugar_localizador_desativar',NULL,'controlador.php?acao=lugar_localizador_desativar','S'),(100000100,100014617,'lugar_localizador_reativar',NULL,'controlador.php?acao=lugar_localizador_reativar','S'),(100000100,100014618,'rel_protocolo_dominio_cadastrar',NULL,'controlador.php?acao=rel_protocolo_dominio_cadastrar','S'),(100000100,100014619,'rel_protocolo_dominio_consultar',NULL,'controlador.php?acao=rel_protocolo_dominio_consultar','S'),(100000100,100014620,'rel_protocolo_dominio_listar',NULL,'controlador.php?acao=rel_protocolo_dominio_listar','S'),(100000100,100014621,'rel_protocolo_dominio_selecionar',NULL,'controlador.php?acao=rel_protocolo_dominio_selecionar','S'),(100000100,100014622,'rel_protocolo_dominio_excluir',NULL,'controlador.php?acao=rel_protocolo_dominio_excluir','S'),(100000100,100014623,'localizador_cadastrar',NULL,'controlador.php?acao=localizador_cadastrar','S'),(100000100,100014624,'localizador_alterar',NULL,'controlador.php?acao=localizador_alterar','S'),(100000100,100014625,'localizador_consultar',NULL,'controlador.php?acao=localizador_consultar','S'),(100000100,100014626,'localizador_listar',NULL,'controlador.php?acao=localizador_listar','S'),(100000100,100014627,'localizador_selecionar',NULL,'controlador.php?acao=localizador_selecionar','S'),(100000100,100014628,'localizador_excluir',NULL,'controlador.php?acao=localizador_excluir','S'),(100000100,100014629,'atividade_consultar',NULL,'controlador.php?acao=atividade_consultar','S'),(100000100,100014630,'atividade_listar',NULL,'controlador.php?acao=atividade_listar','S'),(100000100,100014631,'atividade_excluir',NULL,'controlador.php?acao=atividade_excluir','S'),(100000100,100014632,'anexo_cadastrar',NULL,'controlador.php?acao=anexo_cadastrar','S'),(100000100,100014633,'anexo_consultar',NULL,'controlador.php?acao=anexo_consultar','S'),(100000100,100014634,'anexo_listar',NULL,'controlador.php?acao=anexo_listar','S'),(100000100,100014635,'anexo_excluir',NULL,'controlador.php?acao=anexo_excluir','S'),(100000100,100014636,'procedimento_upload_anexo',NULL,'controlador.php?acao=procedimento_upload_anexo','S'),(100000100,100014637,'observacao_cadastrar',NULL,'controlador.php?acao=observacao_cadastrar','S'),(100000100,100014638,'observacao_alterar',NULL,'controlador.php?acao=observacao_alterar','S'),(100000100,100014639,'observacao_consultar',NULL,'controlador.php?acao=observacao_consultar','S'),(100000100,100014640,'observacao_listar',NULL,'controlador.php?acao=observacao_listar','S'),(100000100,100014641,'observacao_selecionar',NULL,'controlador.php?acao=observacao_selecionar','S'),(100000100,100014642,'observacao_excluir',NULL,'controlador.php?acao=observacao_excluir','S'),(100000100,100014643,'procedimento_download_anexo',NULL,'controlador.php?acao=procedimento_download_anexo','S'),(100000100,100014644,'procedimento_remover_anexo',NULL,'controlador.php?acao=procedimento_remover_anexo','S'),(100000100,100014646,'serie_cadastrar',NULL,'controlador.php?acao=serie_cadastrar','S'),(100000100,100014647,'serie_alterar',NULL,'controlador.php?acao=serie_alterar','S'),(100000100,100014648,'serie_consultar',NULL,'controlador.php?acao=serie_consultar','S'),(100000100,100014649,'serie_listar',NULL,'controlador.php?acao=serie_listar','S'),(100000100,100014650,'serie_selecionar',NULL,'controlador.php?acao=serie_selecionar','S'),(100000100,100014651,'serie_excluir',NULL,'controlador.php?acao=serie_excluir','S'),(100000100,100014652,'serie_desativar',NULL,'controlador.php?acao=serie_desativar','S'),(100000100,100014653,'serie_reativar',NULL,'controlador.php?acao=serie_reativar','S'),(100000100,100014657,'procedimento_atualizar_andamento',NULL,'controlador.php?acao=procedimento_atualizar_andamento','S'),(100000100,100014658,'documento_assinar',NULL,'controlador.php?acao=documento_assinar','S'),(100000100,100014659,'procedimento_concluir',NULL,'controlador.php?acao=procedimento_concluir','S'),(100000100,100014660,'procedimento_enviar',NULL,'controlador.php?acao=procedimento_enviar','S'),(100000100,100014669,'documento_gerar',NULL,'controlador.php?acao=documento_gerar','S'),(100000100,100014670,'documento_alterar',NULL,'controlador.php?acao=documento_alterar','S'),(100000100,100014671,'documento_consultar',NULL,'controlador.php?acao=documento_consultar','S'),(100000100,100014672,'documento_listar',NULL,'controlador.php?acao=documento_listar','S'),(100000100,100014673,'documento_selecionar',NULL,'controlador.php?acao=documento_selecionar','S'),(100000100,100014674,'documento_excluir',NULL,'controlador.php?acao=documento_excluir','S'),(100000100,100014675,'documento_download_anexo',NULL,'controlador.php?acao=documento_download_anexo','S'),(100000100,100014676,'documento_upload_anexo',NULL,'controlador.php?acao=documento_upload_anexo','S'),(100000100,100014677,'documento_remover_anexo',NULL,'controlador.php?acao=documento_remover_anexo','S'),(100000100,100014681,'rel_protocolo_protocolo_cadastrar',NULL,'controlador.php?acao=rel_protocolo_protocolo_cadastrar','S'),(100000100,100014682,'rel_protocolo_protocolo_consultar',NULL,'controlador.php?acao=rel_protocolo_protocolo_consultar','S'),(100000100,100014683,'rel_protocolo_protocolo_listar',NULL,'controlador.php?acao=rel_protocolo_protocolo_listar','S'),(100000100,100014684,'rel_protocolo_protocolo_excluir',NULL,'controlador.php?acao=rel_protocolo_protocolo_excluir','S'),(100000100,100014688,'procedimento_consultar_historico',NULL,'controlador.php?acao=procedimento_consultar_historico','S'),(100000100,100014690,'rel_unidade_serie_unidade_cadastrar',NULL,'controlador.php?acao=rel_unidade_serie_unidade_cadastrar','S'),(100000100,100014693,'procedimento_reabrir',NULL,'controlador.php?acao=procedimento_reabrir','S'),(100000100,100014696,'documento_enviar_email',NULL,'controlador.php?acao=documento_enviar_email','S'),(100000100,100014698,'email_upload_anexo',NULL,'controlador.php?acao=email_upload_anexo','S'),(100000100,100014699,'rel_protocolo_unidade_cadastrar',NULL,'controlador.php?acao=rel_protocolo_unidade_cadastrar','S'),(100000100,100014700,'rel_protocolo_unidade_listar',NULL,'controlador.php?acao=rel_protocolo_unidade_listar','S'),(100000100,100014701,'rel_protocolo_unidade_excluir',NULL,'controlador.php?acao=rel_protocolo_unidade_excluir','S'),(100000100,100014702,'documento_receber',NULL,'controlador.php?acao=documento_receber','S'),(100000100,100014703,'documento_alterar_recebido',NULL,'controlador.php?acao=documento_alterar_recebido','S'),(100000100,100014704,'documento_consultar_recebido',NULL,'controlador.php?acao=documento_consultar_recebido','S'),(100000100,100014705,'procedimento_vincular',NULL,'controlador.php?acao=procedimento_vincular','S'),(100000100,100014706,'procedimento_pendencia_selecionar',NULL,'controlador.php?acao=procedimento_pendencia_selecionar','S'),(100000100,100014707,'procedimento_sobrestar',NULL,'controlador.php?acao=procedimento_sobrestar','S'),(100000100,100014708,'procedimento_remover_sobrestamento',NULL,'controlador.php?acao=procedimento_remover_sobrestamento','S'),(100000100,100014709,'procedimento_relacionar',NULL,'controlador.php?acao=procedimento_relacionar','S'),(100000100,100014710,'procedimento_excluir_relacionamento',NULL,'controlador.php?acao=procedimento_excluir_relacionamento','S'),(100000100,100014711,'publicacao_agendar',NULL,'controlador.php?acao=publicacao_agendar','S'),(100000100,100014712,'publicacao_alterar_agendamento',NULL,'controlador.php?acao=publicacao_alterar_agendamento','S'),(100000100,100014713,'publicacao_listar',NULL,'controlador.php?acao=publicacao_listar','S'),(100000100,100014719,'publicacao_cancelar_agendamento',NULL,'controlador.php?acao=publicacao_cancelar_agendamento','S'),(100000100,100014722,'publicacao_consultar_agendamento',NULL,'controlador.php?acao=publicacao_consultar_agendamento','S'),(100000100,100014725,'procedimento_autuar',NULL,'controlador.php?acao=procedimento_autuar','S'),(100000100,100014726,'procedimento_imprimir_etiqueta',NULL,'controlador.php?acao=procedimento_imprimir_etiqueta','S'),(100000100,100014727,'procedimento_imprimir_etiqueta_pdf',NULL,'controlador.php?acao=procedimento_imprimir_etiqueta_pdf','S'),(100000100,100014728,'arquivamento_arquivar',NULL,'controlador.php?acao=arquivamento_arquivar','S'),(100000100,100014729,'arquivamento_desarquivar',NULL,'controlador.php?acao=arquivamento_desarquivar','S'),(100000100,100014730,'localizador_imprimir_etiqueta',NULL,'controlador.php?acao=localizador_imprimir_etiqueta','S'),(100000100,100014731,'localizador_imprimir_etiqueta_pdf',NULL,'controlador.php?acao=localizador_imprimir_etiqueta_pdf','S'),(100000100,100014732,'localizador_protocolos_listar',NULL,'controlador.php?acao=localizador_protocolos_listar','S'),(100000100,100014733,'localizador_protocolos_imprimir',NULL,'controlador.php?acao=localizador_protocolos_imprimir','S'),(100000100,100014734,'localizador_protocolos_imprimir_pdf',NULL,'controlador.php?acao=localizador_protocolos_imprimir_pdf','S'),(100000100,100014736,'arquivamento_migrar_localizador',NULL,'controlador.php?acao=arquivamento_migrar_localizador','S'),(100000100,100014738,'rel_protocolo_assunto_alterar',NULL,'controlador.php?acao=rel_protocolo_assunto_alterar','S'),(100000100,100014740,'publicacao_gerar_relacionada',NULL,'controlador.php?acao=publicacao_gerar_relacionada','S'),(100000100,100014741,'documento_gerado_selecionar',NULL,'controlador.php?acao=documento_gerado_selecionar','S'),(100000100,100014742,'documento_recebido_selecionar',NULL,'controlador.php?acao=documento_recebido_selecionar','S'),(100000100,100014743,'infra_parametro_cadastrar',NULL,'controlador.php?acao=infra_parametro_cadastrar','S'),(100000100,100014744,'infra_parametro_alterar',NULL,'controlador.php?acao=infra_parametro_alterar','S'),(100000100,100014745,'infra_parametro_consultar',NULL,'controlador.php?acao=infra_parametro_consultar','S'),(100000100,100014746,'infra_parametro_listar',NULL,'controlador.php?acao=infra_parametro_listar','S'),(100000100,100014747,'infra_parametro_selecionar',NULL,'controlador.php?acao=infra_parametro_selecionar','S'),(100000100,100014748,'infra_parametro_excluir',NULL,'controlador.php?acao=infra_parametro_excluir','S'),(100000100,100014749,'procedimento_escolher_tipo',NULL,'controlador.php?acao=procedimento_escolher_tipo','S'),(100000100,100014750,'procedimento_analisar',NULL,'controlador.php?acao=procedimento_analisar','S'),(100000100,100014751,'procedimento_controlar',NULL,'controlador.php?acao=procedimento_controlar&reset=1','S'),(100000100,100014752,'infra_sequencia_cadastrar',NULL,'controlador.php?acao=infra_sequencia_cadastrar','S'),(100000100,100014753,'infra_sequencia_alterar',NULL,'controlador.php?acao=infra_sequencia_alterar','S'),(100000100,100014754,'infra_sequencia_consultar',NULL,'controlador.php?acao=infra_sequencia_consultar','S'),(100000100,100014755,'infra_sequencia_listar',NULL,'controlador.php?acao=infra_sequencia_listar','S'),(100000100,100014756,'infra_sequencia_excluir',NULL,'controlador.php?acao=infra_sequencia_excluir','S'),(100000100,100014757,'procedimento_trabalhar',NULL,'controlador.php?acao=procedimento_trabalhar','S'),(100000100,100014759,'arvore_visualizar',NULL,'controlador.php?acao=arvore_visualizar','S'),(100000100,100014760,'infra_atributo_sessao_cadastrar',NULL,'controlador.php?acao=infra_atributo_sessao_cadastrar','S'),(100000100,100014761,'infra_atributo_sessao_alterar',NULL,'controlador.php?acao=infra_atributo_sessao_alterar','S'),(100000100,100014762,'infra_atributo_sessao_listar',NULL,'controlador.php?acao=infra_atributo_sessao_listar','S'),(100000100,100014763,'infra_atributo_sessao_excluir',NULL,'controlador.php?acao=infra_atributo_sessao_excluir','S'),(100000100,100014764,'infra_atributo_sessao_reativar',NULL,'controlador.php?acao=infra_atributo_sessao_reativar','S'),(100000100,100014765,'grupo_serie_cadastrar',NULL,'controlador.php?acao=grupo_serie_cadastrar','S'),(100000100,100014766,'grupo_serie_alterar',NULL,'controlador.php?acao=grupo_serie_alterar','S'),(100000100,100014767,'grupo_serie_consultar',NULL,'controlador.php?acao=grupo_serie_consultar','S'),(100000100,100014768,'grupo_serie_listar',NULL,'controlador.php?acao=grupo_serie_listar','S'),(100000100,100014769,'grupo_serie_selecionar',NULL,'controlador.php?acao=grupo_serie_selecionar','S'),(100000100,100014770,'grupo_serie_excluir',NULL,'controlador.php?acao=grupo_serie_excluir','S'),(100000100,100014771,'grupo_serie_desativar',NULL,'controlador.php?acao=grupo_serie_desativar','S'),(100000100,100014772,'grupo_serie_reativar',NULL,'controlador.php?acao=grupo_serie_reativar','S'),(100000100,100014773,'documento_escolher_tipo',NULL,'controlador.php?acao=documento_escolher_tipo','S'),(100000100,100014774,'bloco_cadastrar',NULL,'controlador.php?acao=bloco_cadastrar','S'),(100000100,100014775,'bloco_alterar',NULL,'controlador.php?acao=bloco_alterar','S'),(100000100,100014776,'bloco_consultar',NULL,'controlador.php?acao=bloco_consultar','S'),(100000100,100014777,'bloco_selecionar_processo',NULL,'controlador.php?acao=bloco_selecionar_processo','S'),(100000100,100014778,'bloco_excluir',NULL,'controlador.php?acao=bloco_excluir','S'),(100000100,100014779,'bloco_desativar',NULL,'controlador.php?acao=bloco_desativar','S'),(100000100,100014780,'bloco_reativar',NULL,'controlador.php?acao=bloco_reativar','S'),(100000100,100014781,'rel_bloco_protocolo_cadastrar',NULL,'controlador.php?acao=rel_bloco_protocolo_cadastrar','S'),(100000100,100014782,'bloco_selecionar_documento',NULL,'controlador.php?acao=bloco_selecionar_documento','S'),(100000100,100014783,'protocolo_pesquisar',NULL,'controlador.php?acao=protocolo_pesquisar','S'),(100000100,100014784,'agente_carregar',NULL,'controlador_edoc.php?acao=agente_carregar','S'),(100000100,100014785,'procedimento_listar_relacionamentos',NULL,'controlador.php?acao=procedimento_listar_relacionamentos','S'),(100000100,100014786,'protocolo_pesquisa_rapida',NULL,'controlador.php?acao=protocolo_pesquisa_rapida','S'),(100000100,100014787,'assinatura_cadastrar',NULL,'controlador.php?acao=assinatura_cadastrar','S'),(100000100,100014788,'assinatura_alterar',NULL,'controlador.php?acao=assinatura_alterar','S'),(100000100,100014789,'assinatura_consultar',NULL,'controlador.php?acao=assinatura_consultar','S'),(100000100,100014790,'assinatura_listar',NULL,'controlador.php?acao=assinatura_listar','S'),(100000100,100014791,'assinatura_excluir',NULL,'controlador.php?acao=assinatura_excluir','S'),(100000100,100014792,'assinante_cadastrar',NULL,'controlador.php?acao=assinante_cadastrar','S'),(100000100,100014793,'assinante_alterar',NULL,'controlador.php?acao=assinante_alterar','S'),(100000100,100014794,'assinante_consultar',NULL,'controlador.php?acao=assinante_consultar','S'),(100000100,100014795,'assinante_listar',NULL,'controlador.php?acao=assinante_listar','S'),(100000100,100014796,'assinante_selecionar',NULL,'controlador.php?acao=assinante_selecionar','S'),(100000100,100014797,'assinante_excluir',NULL,'controlador.php?acao=assinante_excluir','S'),(100000100,100014798,'orgao_consultar',NULL,'controlador.php?acao=orgao_consultar','S'),(100000100,100014799,'orgao_listar',NULL,'controlador.php?acao=orgao_listar','S'),(100000100,100014800,'contato_alterar_temporario',NULL,'controlador.php?acao=contato_alterar_temporario','S'),(100000100,100014801,'contato_relatorio_temporarios',NULL,'controlador.php?acao=contato_relatorio_temporarios','S'),(100000100,100014802,'documento_visualizar',NULL,'controlador.php?acao=documento_visualizar','S'),(100000100,100014803,'rel_bloco_protocolo_consultar',NULL,'controlador.php?acao=rel_bloco_protocolo_consultar','S'),(100000100,100014804,'rel_bloco_protocolo_listar',NULL,'controlador.php?acao=rel_bloco_protocolo_listar','S'),(100000100,100014805,'rel_bloco_protocolo_excluir',NULL,'controlador.php?acao=rel_bloco_protocolo_excluir','S'),(100000100,100014806,'rel_bloco_unidade_cadastrar',NULL,'controlador.php?acao=rel_bloco_unidade_cadastrar','S'),(100000100,100014807,'rel_bloco_unidade_listar',NULL,'controlador.php?acao=rel_bloco_unidade_listar','S'),(100000100,100014808,'rel_bloco_unidade_excluir',NULL,'controlador.php?acao=rel_bloco_unidade_excluir','S'),(100000100,100014809,'bloco_cancelar_disponibilizacao',NULL,'controlador.php?acao=bloco_cancelar_disponibilizacao','S'),(100000100,100014810,'documento_processar',NULL,'controlador.php?acao=documento_processar','S'),(100000100,100014811,'bloco_assinatura_cadastrar',NULL,'controlador.php?acao=bloco_assinatura_cadastrar','S'),(100000100,100014812,'bloco_assinatura_listar',NULL,'controlador.php?acao=bloco_assinatura_listar','S'),(100000100,100014813,'bloco_assinatura_listar_disponibilizados',NULL,'controlador.php?acao=bloco_assinatura_listar_disponibilizados','S'),(100000100,100014814,'bloco_interno_cadastrar',NULL,'controlador.php?acao=bloco_interno_cadastrar','S'),(100000100,100014815,'bloco_interno_listar',NULL,'controlador.php?acao=bloco_interno_listar','S'),(100000100,100014816,'bloco_interno_listar_disponibilizados',NULL,'controlador.php?acao=bloco_interno_listar_disponibilizados','S'),(100000100,100014817,'bloco_disponibilizar',NULL,'controlador.php?acao=bloco_disponibilizar','S'),(100000100,100014818,'rel_bloco_unidade_consultar',NULL,'controlador.php?acao=rel_bloco_unidade_consultar','S'),(100000100,100014819,'bloco_reuniao_cadastrar',NULL,'controlador.php?acao=bloco_reuniao_cadastrar','S'),(100000100,100014820,'bloco_reuniao_listar',NULL,'controlador.php?acao=bloco_reuniao_listar','S'),(100000100,100014821,'bloco_reuniao_listar_disponibilizados',NULL,'controlador.php?acao=bloco_reuniao_listar_disponibilizados','S'),(100000100,100014822,'bloco_listar',NULL,'controlador.php?acao=bloco_listar','S'),(100000100,100014824,'atributo_andamento_cadastrar',NULL,'controlador.php?acao=atributo_andamento_cadastrar','S'),(100000100,100014825,'atributo_andamento_consultar',NULL,'controlador.php?acao=atributo_andamento_consultar','S'),(100000100,100014826,'atributo_andamento_listar',NULL,'controlador.php?acao=atributo_andamento_listar','S'),(100000100,100014827,'atributo_andamento_excluir',NULL,'controlador.php?acao=atributo_andamento_excluir','S'),(100000100,100014828,'documento_imprimir_word',NULL,'controlador.php?acao=documento_imprimir_word','S'),(100000100,100014829,'contato_excluir_temporario',NULL,'controlador.php?acao=contato_excluir_temporario','S'),(100000100,100014830,'contato_desativar_temporario',NULL,'controlador.php?acao=contato_desativar_temporario','S'),(100000100,100014831,'rel_assinante_unidade_cadastrar',NULL,'controlador.php?acao=rel_assinante_unidade_cadastrar','S'),(100000100,100014832,'rel_assinante_unidade_alterar',NULL,'controlador.php?acao=rel_assinante_unidade_alterar','S'),(100000100,100014833,'rel_assinante_unidade_consultar',NULL,'controlador.php?acao=rel_assinante_unidade_consultar','S'),(100000100,100014834,'rel_assinante_unidade_listar',NULL,'controlador.php?acao=rel_assinante_unidade_listar','S'),(100000100,100014835,'rel_assinante_unidade_excluir',NULL,'controlador.php?acao=rel_assinante_unidade_excluir','S'),(100000100,100014836,'unidade_selecionar_outras',NULL,'controlador.php?acao=unidade_selecionar_outras','S'),(100000100,100014837,'bloco_assinatura_alterar',NULL,'controlador.php?acao=bloco_assinatura_alterar','S'),(100000100,100014838,'bloco_reuniao_alterar',NULL,'controlador.php?acao=bloco_reuniao_alterar','S'),(100000100,100014839,'bloco_interno_alterar',NULL,'controlador.php?acao=bloco_interno_alterar','S'),(100000100,100014840,'rel_bloco_protocolo_alterar',NULL,'controlador.php?acao=rel_bloco_protocolo_alterar','S'),(100000100,100014841,'bloco_retornar',NULL,'controlador.php?acao=bloco_retornar','S'),(100000100,100014843,'procedimento_duplicar',NULL,'controlador.php?acao=procedimento_duplicar','S'),(100000100,100014845,'bloco_concluir',NULL,'controlador.php?acao=bloco_concluir','S'),(100000100,100014847,'anotacao_cadastrar',NULL,'controlador.php?acao=anotacao_cadastrar','S'),(100000100,100014848,'anotacao_alterar',NULL,'controlador.php?acao=anotacao_alterar','S'),(100000100,100014849,'anotacao_consultar',NULL,'controlador.php?acao=anotacao_consultar','S'),(100000100,100014850,'anotacao_registrar',NULL,'controlador.php?acao=anotacao_registrar','S'),(100000100,100014851,'anotacao_excluir',NULL,'controlador.php?acao=anotacao_excluir','S'),(100000100,100014852,'anotacao_listar',NULL,'controlador.php?acao=anotacao_listar','S'),(100000100,100014853,'atributo_andamento_alterar',NULL,'controlador.php?acao=atributo_andamento_alterar','S'),(100000100,100014854,'novidade_cadastrar',NULL,'controlador.php?acao=novidade_cadastrar','S'),(100000100,100014855,'novidade_alterar',NULL,'controlador.php?acao=novidade_alterar','S'),(100000100,100014856,'novidade_consultar',NULL,'controlador.php?acao=novidade_consultar','S'),(100000100,100014857,'novidade_listar',NULL,'controlador.php?acao=novidade_listar','S'),(100000100,100014858,'novidade_excluir',NULL,'controlador.php?acao=novidade_excluir','S'),(100000100,100014859,'novidade_cancelar_liberacao',NULL,'controlador.php?acao=novidade_cancelar_liberacao','S'),(100000100,100014860,'novidade_liberar',NULL,'controlador.php?acao=novidade_liberar','S'),(100000100,100014861,'novidade_mostrar',NULL,'controlador.php?acao=novidade_mostrar','S'),(100000100,100014862,'procedimento_sobrestado_listar',NULL,'controlador.php?acao=procedimento_sobrestado_listar','S'),(100000100,100014863,'arvore_ordenar',NULL,'controlador.php?acao=arvore_ordenar','S'),(100000100,100014864,'email_unidade_cadastrar',NULL,'controlador.php?acao=email_unidade_cadastrar','S'),(100000100,100014865,'email_unidade_alterar',NULL,'controlador.php?acao=email_unidade_alterar','S'),(100000100,100014866,'email_unidade_consultar',NULL,'controlador.php?acao=email_unidade_consultar','S'),(100000100,100014867,'email_unidade_listar',NULL,'controlador.php?acao=email_unidade_listar','S'),(100000100,100014868,'email_unidade_excluir',NULL,'controlador.php?acao=email_unidade_excluir','S'),(100000100,100014869,'acesso_externo_cadastrar',NULL,'controlador.php?acao=acesso_externo_cadastrar','S'),(100000100,100014870,'acesso_externo_consultar',NULL,'controlador.php?acao=acesso_externo_consultar','S'),(100000100,100014871,'acesso_externo_listar',NULL,'controlador.php?acao=acesso_externo_listar','S'),(100000100,100014872,'orgao_alterar',NULL,'controlador.php?acao=orgao_alterar','S'),(100000100,100014873,'procedimento_enviar_email',NULL,'controlador.php?acao=procedimento_enviar_email','S'),(100000100,100014874,'email_enviar',NULL,'controlador.php?acao=email_enviar','S'),(100000100,100014875,'protocolo_cancelar',NULL,'controlador.php?acao=protocolo_cancelar','S'),(100000100,100014876,'base_conhecimento_cadastrar',NULL,'controlador.php?acao=base_conhecimento_cadastrar','S'),(100000100,100014877,'base_conhecimento_alterar',NULL,'controlador.php?acao=base_conhecimento_alterar','S'),(100000100,100014878,'base_conhecimento_consultar',NULL,'controlador.php?acao=base_conhecimento_consultar','S'),(100000100,100014879,'base_conhecimento_listar',NULL,'controlador.php?acao=base_conhecimento_listar','S'),(100000100,100014880,'base_conhecimento_excluir',NULL,'controlador.php?acao=base_conhecimento_excluir','S'),(100000100,100014881,'base_conhecimento_processar',NULL,'controlador.php?acao=base_conhecimento_processar','S'),(100000100,100014883,'feed_cadastrar',NULL,'controlador.php?acao=feed_cadastrar','S'),(100000100,100014884,'feed_listar',NULL,'controlador.php?acao=feed_listar','S'),(100000100,100014885,'feed_excluir',NULL,'controlador.php?acao=feed_excluir','S'),(100000100,100014886,'rel_protocolo_atributo_cadastrar',NULL,'controlador.php?acao=rel_protocolo_atributo_cadastrar','S'),(100000100,100014887,'rel_protocolo_atributo_listar',NULL,'controlador.php?acao=rel_protocolo_atributo_listar','S'),(100000100,100014888,'rel_protocolo_atributo_excluir',NULL,'controlador.php?acao=rel_protocolo_atributo_excluir','S'),(100000100,100014892,'documento_imprimir_web',NULL,'controlador.php?acao=documento_imprimir_web','S'),(100000100,100014893,'procedimento_controlar_visualizacao',NULL,'controlador.php?acao=procedimento_controlar_visualizacao','S'),(100000100,100014895,'retorno_programado_cadastrar',NULL,'controlador.php?acao=retorno_programado_cadastrar','S'),(100000100,100014896,'retorno_programado_alterar',NULL,'controlador.php?acao=retorno_programado_alterar','S'),(100000100,100014897,'retorno_programado_consultar',NULL,'controlador.php?acao=retorno_programado_consultar','S'),(100000100,100014898,'retorno_programado_listar',NULL,'controlador.php?acao=retorno_programado_listar','S'),(100000100,100014899,'retorno_programado_excluir',NULL,'controlador.php?acao=retorno_programado_excluir','S'),(100000100,100014900,'ordenador_despesa_cadastrar',NULL,'controlador.php?acao=ordenador_despesa_cadastrar','S'),(100000100,100014901,'ordenador_despesa_alterar',NULL,'controlador.php?acao=ordenador_despesa_alterar','S'),(100000100,100014902,'ordenador_despesa_consultar',NULL,'controlador.php?acao=ordenador_despesa_consultar','S'),(100000100,100014903,'ordenador_despesa_listar',NULL,'controlador.php?acao=ordenador_despesa_listar','S'),(100000100,100014904,'ordenador_despesa_excluir',NULL,'controlador.php?acao=ordenador_despesa_excluir','S'),(100000100,100014905,'siscom_grupo_listar',NULL,'controlador.php?acao=siscom_grupo_listar','S'),(100000100,100014906,'responder_formulario_ouvidoria',NULL,'controlador.php?acao=responder_formulario_ouvidoria','S'),(100000100,100014907,'gerar_estatisticas_ouvidoria',NULL,'controlador.php?acao=gerar_estatisticas_ouvidoria','S'),(100000100,100014908,'procedimento_reencaminhar_ouvidoria',NULL,'controlador.php?acao=procedimento_reencaminhar_ouvidoria','S'),(100000100,100014909,'rel_bloco_unidade_alterar',NULL,'controlador.php?acao=rel_bloco_unidade_alterar','S'),(100000100,100014910,'base_conhecimento_cancelar_liberacao',NULL,'controlador.php?acao=base_conhecimento_cancelar_liberacao','S'),(100000100,100014911,'base_conhecimento_download_anexo',NULL,'controlador.php?acao=base_conhecimento_download_anexo','S'),(100000100,100014912,'base_conhecimento_liberar',NULL,'controlador.php?acao=base_conhecimento_liberar','S'),(100000100,100014913,'base_conhecimento_nova_versao',NULL,'controlador.php?acao=base_conhecimento_nova_versao','S'),(100000100,100014914,'base_conhecimento_pesquisar',NULL,'controlador.php?acao=base_conhecimento_pesquisar','S'),(100000100,100014915,'base_conhecimento_selecionar',NULL,'controlador.php?acao=base_conhecimento_selecionar','S'),(100000100,100014916,'base_conhecimento_upload_anexo',NULL,'controlador.php?acao=base_conhecimento_upload_anexo','S'),(100000100,100014917,'base_conhecimento_versoes',NULL,'controlador.php?acao=base_conhecimento_versoes','S'),(100000100,100014918,'base_conhecimento_visualizar',NULL,'controlador.php?acao=base_conhecimento_visualizar','S'),(100000100,100014919,'arquivamento_receber',NULL,'controlador.php?acao=arquivamento_receber','S'),(100000100,100014920,'arquivamento_cancelar_recebimento',NULL,'controlador.php?acao=arquivamento_cancelar_recebimento','S'),(100000100,100014923,'arquivamento_solicitar_desarquivamento',NULL,'controlador.php?acao=arquivamento_solicitar_desarquivamento','S'),(100000100,100014924,'arquivamento_cancelar_solicitacao_desarquivamento',NULL,'controlador.php?acao=arquivamento_cancelar_solicitacao_desarquivamento','S'),(100000100,100014925,'arquivamento_listar',NULL,'controlador.php?acao=arquivamento_listar','S'),(100000100,100014926,'arquivamento_desarquivamento_listar',NULL,'controlador.php?acao=arquivamento_desarquivamento_listar','S'),(100000100,100014927,'rel_base_conhec_tipo_proced_cadastrar',NULL,'controlador.php?acao=rel_base_conhec_tipo_proced_cadastrar','S'),(100000100,100014928,'rel_base_conhec_tipo_proced_listar',NULL,'controlador.php?acao=rel_base_conhec_tipo_proced_listar','S'),(100000100,100014929,'rel_base_conhec_tipo_proced_excluir',NULL,'controlador.php?acao=rel_base_conhec_tipo_proced_excluir','S'),(100000100,100014930,'base_conhecimento_listar_associadas',NULL,'controlador.php?acao=base_conhecimento_listar_associadas','S'),(100000100,100014931,'acompanhamento_cadastrar',NULL,'controlador.php?acao=acompanhamento_cadastrar','S'),(100000100,100014932,'acompanhamento_alterar',NULL,'controlador.php?acao=acompanhamento_alterar','S'),(100000100,100014933,'acompanhamento_consultar',NULL,'controlador.php?acao=acompanhamento_consultar','S'),(100000100,100014934,'acompanhamento_listar',NULL,'controlador.php?acao=acompanhamento_listar','S'),(100000100,100014935,'acompanhamento_excluir',NULL,'controlador.php?acao=acompanhamento_excluir','S'),(100000100,100014936,'grupo_acompanhamento_cadastrar',NULL,'controlador.php?acao=grupo_acompanhamento_cadastrar','S'),(100000100,100014937,'grupo_acompanhamento_alterar',NULL,'controlador.php?acao=grupo_acompanhamento_alterar','S'),(100000100,100014938,'grupo_acompanhamento_consultar',NULL,'controlador.php?acao=grupo_acompanhamento_consultar','S'),(100000100,100014939,'grupo_acompanhamento_listar',NULL,'controlador.php?acao=grupo_acompanhamento_listar','S'),(100000100,100014940,'grupo_acompanhamento_excluir',NULL,'controlador.php?acao=grupo_acompanhamento_excluir','S'),(100000100,100014941,'atividade_enviar',NULL,'controlador.php?acao=atividade_enviar','S'),(100000100,100014942,'atividade_gerar',NULL,'controlador.php?acao=atividade_gerar','S'),(100000100,100014947,'gerar_estatisticas_unidade',NULL,'controlador.php?acao=gerar_estatisticas_unidade','S'),(100000100,100014948,'estatisticas_detalhar_unidade',NULL,'controlador.php?acao=estatisticas_detalhar_unidade','S'),(100000100,100014949,'estatisticas_detalhar_ouvidoria',NULL,'controlador.php?acao=estatisticas_detalhar_ouvidoria','S'),(100000100,100014951,'contato_substituir_temporario',NULL,'controlador.php?acao=contato_substituir_temporario','S'),(100000100,100014952,'grupo_email_cadastrar',NULL,'controlador.php?acao=grupo_email_cadastrar','S'),(100000100,100014953,'grupo_email_alterar',NULL,'controlador.php?acao=grupo_email_alterar','S'),(100000100,100014954,'grupo_email_consultar',NULL,'controlador.php?acao=grupo_email_consultar','S'),(100000100,100014955,'grupo_email_listar',NULL,'controlador.php?acao=grupo_email_listar','S'),(100000100,100014956,'grupo_email_selecionar',NULL,'controlador.php?acao=grupo_email_selecionar','S'),(100000100,100014957,'grupo_email_excluir',NULL,'controlador.php?acao=grupo_email_excluir','S'),(100000100,100014963,'orgao_selecionar',NULL,'controlador.php?acao=orgao_selecionar','S'),(100000100,100014964,'controle_interno_cadastrar',NULL,'controlador.php?acao=controle_interno_cadastrar','S'),(100000100,100014965,'controle_interno_alterar',NULL,'controlador.php?acao=controle_interno_alterar','S'),(100000100,100014966,'controle_interno_consultar',NULL,'controlador.php?acao=controle_interno_consultar','S'),(100000100,100014967,'controle_interno_listar',NULL,'controlador.php?acao=controle_interno_listar','S'),(100000100,100014968,'controle_interno_excluir',NULL,'controlador.php?acao=controle_interno_excluir','S'),(100000100,100014969,'rel_controle_interno_orgao_cadastrar',NULL,'controlador.php?acao=rel_controle_interno_orgao_cadastrar','S'),(100000100,100014970,'rel_controle_interno_orgao_listar',NULL,'controlador.php?acao=rel_controle_interno_orgao_listar','S'),(100000100,100014971,'rel_controle_interno_orgao_excluir',NULL,'controlador.php?acao=rel_controle_interno_orgao_excluir','S'),(100000100,100014972,'rel_controle_interno_serie_cadastrar',NULL,'controlador.php?acao=rel_controle_interno_serie_cadastrar','S'),(100000100,100014973,'rel_controle_interno_serie_listar',NULL,'controlador.php?acao=rel_controle_interno_serie_listar','S'),(100000100,100014974,'rel_controle_interno_serie_excluir',NULL,'controlador.php?acao=rel_controle_interno_serie_excluir','S'),(100000100,100014975,'rel_controle_interno_unidade_cadastrar',NULL,'controlador.php?acao=rel_controle_interno_unidade_cadastrar','S'),(100000100,100014976,'rel_controle_interno_unidade_listar',NULL,'controlador.php?acao=rel_controle_interno_unidade_listar','S'),(100000100,100014977,'rel_controle_interno_unidade_excluir',NULL,'controlador.php?acao=rel_controle_interno_unidade_excluir','S'),(100000100,100014978,'bloco_escolher',NULL,'controlador.php?acao=bloco_escolher','S'),(100000100,100014979,'procedimento_atribuicao_cadastrar',NULL,'controlador.php?acao=procedimento_atribuicao_cadastrar','S'),(100000100,100014980,'procedimento_atribuicao_listar',NULL,'controlador.php?acao=procedimento_atribuicao_listar','S'),(100000100,100014981,'procedimento_atribuicao_alterar',NULL,'controlador.php?acao=procedimento_atribuicao_alterar','S'),(100000100,100014982,'bloco_reabrir',NULL,'controlador.php?acao=bloco_reabrir','S'),(100000100,100014984,'nivel_acesso_permitido_cadastrar',NULL,'controlador.php?acao=nivel_acesso_permitido_cadastrar','S'),(100000100,100014985,'nivel_acesso_permitido_listar',NULL,'controlador.php?acao=nivel_acesso_permitido_listar','S'),(100000100,100014986,'nivel_acesso_permitido_excluir',NULL,'controlador.php?acao=nivel_acesso_permitido_excluir','S'),(100000100,100014987,'acesso_cadastrar',NULL,'controlador.php?acao=acesso_cadastrar','S'),(100000100,100014988,'acesso_listar',NULL,'controlador.php?acao=acesso_listar','S'),(100000100,100014989,'acesso_excluir',NULL,'controlador.php?acao=acesso_excluir','S'),(100000100,100014991,'procedimento_credencial_conceder',NULL,'controlador.php?acao=procedimento_credencial_conceder','S'),(100000100,100014992,'procedimento_credencial_listar',NULL,'controlador.php?acao=procedimento_credencial_listar','S'),(100000100,100014993,'procedimento_credencial_transferir',NULL,'controlador.php?acao=procedimento_credencial_transferir','S'),(100000100,100014994,'indexacao_protocolo_cadastrar',NULL,'controlador.php?acao=indexacao_protocolo_cadastrar','S'),(100000100,100014995,'indexacao_protocolo_alterar',NULL,'controlador.php?acao=indexacao_protocolo_alterar','S'),(100000100,100014996,'indexacao_protocolo_listar',NULL,'controlador.php?acao=indexacao_protocolo_listar','S'),(100000100,100014997,'indexacao_protocolo_excluir',NULL,'controlador.php?acao=indexacao_protocolo_excluir','S'),(100000100,100014998,'indexacao_base_conhecimento_cadastrar',NULL,'controlador.php?acao=indexacao_base_conhecimento_cadastrar','S'),(100000100,100014999,'indexacao_base_conhecimento_alterar',NULL,'controlador.php?acao=indexacao_base_conhecimento_alterar','S'),(100000100,100015000,'indexacao_base_conhecimento_listar',NULL,'controlador.php?acao=indexacao_base_conhecimento_listar','S'),(100000100,100015001,'indexacao_base_conhecimento_excluir',NULL,'controlador.php?acao=indexacao_base_conhecimento_excluir','S'),(100000100,100015007,'procedimento_credencial_gerenciar',NULL,'controlador.php?acao=procedimento_credencial_gerenciar','S'),(100000100,100015008,'procedimento_credencial_cassar',NULL,'controlador.php?acao=procedimento_credencial_cassar','S'),(100000100,100015009,'procedimento_receber',NULL,'controlador.php?acao=procedimento_receber','S'),(100000100,100015010,'procedimento_ciencia',NULL,'controlador.php?acao=procedimento_ciencia','S'),(100000100,100015011,'documento_ciencia',NULL,'controlador.php?acao=documento_ciencia','S'),(100000100,100015012,'protocolo_ciencia_listar',NULL,'controlador.php?acao=protocolo_ciencia_listar','S'),(100000100,100015014,'credencial_assinatura_conceder',NULL,'controlador.php?acao=credencial_assinatura_conceder','S'),(100000100,100015015,'credencial_assinatura_cassar',NULL,'controlador.php?acao=credencial_assinatura_cassar','S'),(100000100,100015016,'credencial_assinatura_gerenciar',NULL,'controlador.php?acao=credencial_assinatura_gerenciar','S'),(100000100,100015017,'serie_escolha_cadastrar',NULL,'controlador.php?acao=serie_escolha_cadastrar','S'),(100000100,100015018,'serie_escolha_listar',NULL,'controlador.php?acao=serie_escolha_listar','S'),(100000100,100015019,'serie_escolha_excluir',NULL,'controlador.php?acao=serie_escolha_excluir','S'),(100000100,100015020,'tipo_procedimento_escolha_cadastrar',NULL,'controlador.php?acao=tipo_procedimento_escolha_cadastrar','S'),(100000100,100015021,'tipo_procedimento_escolha_listar',NULL,'controlador.php?acao=tipo_procedimento_escolha_listar','S'),(100000100,100015022,'tipo_procedimento_escolha_excluir',NULL,'controlador.php?acao=tipo_procedimento_escolha_excluir','S'),(100000100,100015023,'procedimento_credencial_renunciar',NULL,'controlador.php?acao=procedimento_credencial_renunciar','S'),(100000100,100015024,'servico_cadastrar',NULL,'controlador.php?acao=servico_cadastrar','S'),(100000100,100015025,'servico_alterar',NULL,'controlador.php?acao=servico_alterar','S'),(100000100,100015026,'servico_consultar',NULL,'controlador.php?acao=servico_consultar','S'),(100000100,100015027,'servico_excluir',NULL,'controlador.php?acao=servico_excluir','S'),(100000100,100015028,'servico_listar',NULL,'controlador.php?acao=servico_listar','S'),(100000100,100015029,'servico_desativar',NULL,'controlador.php?acao=servico_desativar','S'),(100000100,100015030,'servico_reativar',NULL,'controlador.php?acao=servico_reativar','S'),(100000100,100015031,'operacao_servico_cadastrar',NULL,'controlador.php?acao=operacao_servico_cadastrar','S'),(100000100,100015032,'operacao_servico_alterar',NULL,'controlador.php?acao=operacao_servico_alterar','S'),(100000100,100015033,'operacao_servico_consultar',NULL,'controlador.php?acao=operacao_servico_consultar','S'),(100000100,100015034,'operacao_servico_listar',NULL,'controlador.php?acao=operacao_servico_listar','S'),(100000100,100015035,'operacao_servico_excluir',NULL,'controlador.php?acao=operacao_servico_excluir','S'),(100000100,100015036,'usuario_sistema_cadastrar',NULL,'controlador.php?acao=usuario_sistema_cadastrar','S'),(100000100,100015037,'usuario_sistema_alterar',NULL,'controlador.php?acao=usuario_sistema_alterar','S'),(100000100,100015038,'usuario_sistema_consultar',NULL,'controlador.php?acao=usuario_sistema_consultar','S'),(100000100,100015039,'usuario_sistema_listar',NULL,'controlador.php?acao=usuario_sistema_listar','S'),(100000100,100015040,'usuario_sistema_excluir',NULL,'controlador.php?acao=usuario_sistema_excluir','S'),(100000100,100015041,'usuario_sistema_desativar',NULL,'controlador.php?acao=usuario_sistema_desativar','S'),(100000100,100015042,'usuario_sistema_reativar',NULL,'controlador.php?acao=usuario_sistema_reativar','S'),(100000100,100015043,'modelo_cadastrar',NULL,'controlador.php?acao=modelo_cadastrar','S'),(100000100,100015044,'modelo_alterar',NULL,'controlador.php?acao=modelo_alterar','S'),(100000100,100015045,'modelo_consultar',NULL,'controlador.php?acao=modelo_consultar','S'),(100000100,100015046,'modelo_selecionar',NULL,'controlador.php?acao=modelo_selecionar','S'),(100000100,100015047,'modelo_listar',NULL,'controlador.php?acao=modelo_listar','S'),(100000100,100015048,'modelo_excluir',NULL,'controlador.php?acao=modelo_excluir','S'),(100000100,100015049,'modelo_desativar',NULL,'controlador.php?acao=modelo_desativar','S'),(100000100,100015050,'modelo_reativar',NULL,'controlador.php?acao=modelo_reativar','S'),(100000100,100015051,'modelo_clonar',NULL,'controlador.php?acao=modelo_clonar','S'),(100000100,100015052,'estilo_cadastrar',NULL,'controlador.php?acao=estilo_cadastrar','S'),(100000100,100015053,'estilo_alterar',NULL,'controlador.php?acao=estilo_alterar','S'),(100000100,100015054,'estilo_consultar',NULL,'controlador.php?acao=estilo_consultar','S'),(100000100,100015055,'estilo_selecionar',NULL,'controlador.php?acao=estilo_selecionar','S'),(100000100,100015056,'estilo_listar',NULL,'controlador.php?acao=estilo_listar','S'),(100000100,100015057,'estilo_excluir',NULL,'controlador.php?acao=estilo_excluir','S'),(100000100,100015058,'secao_modelo_cadastrar',NULL,'controlador.php?acao=secao_modelo_cadastrar','S'),(100000100,100015059,'secao_modelo_alterar',NULL,'controlador.php?acao=secao_modelo_alterar','S'),(100000100,100015060,'secao_modelo_consultar',NULL,'controlador.php?acao=secao_modelo_consultar','S'),(100000100,100015061,'secao_modelo_selecionar',NULL,'controlador.php?acao=secao_modelo_selecionar','S'),(100000100,100015062,'secao_modelo_listar',NULL,'controlador.php?acao=secao_modelo_listar','S'),(100000100,100015063,'secao_modelo_excluir',NULL,'controlador.php?acao=secao_modelo_excluir','S'),(100000100,100015064,'rel_secao_modelo_estilo_cadastrar',NULL,'controlador.php?acao=rel_secao_modelo_estilo_cadastrar','S'),(100000100,100015065,'rel_secao_modelo_estilo_alterar',NULL,'controlador.php?acao=rel_secao_modelo_estilo_alterar','S'),(100000100,100015066,'rel_secao_modelo_estilo_consultar',NULL,'controlador.php?acao=rel_secao_modelo_estilo_consultar','S'),(100000100,100015067,'rel_secao_modelo_estilo_selecionar',NULL,'controlador.php?acao=rel_secao_modelo_estilo_selecionar','S'),(100000100,100015068,'rel_secao_modelo_estilo_listar',NULL,'controlador.php?acao=rel_secao_modelo_estilo_listar','S'),(100000100,100015069,'rel_secao_modelo_estilo_excluir',NULL,'controlador.php?acao=rel_secao_modelo_estilo_excluir','S'),(100000100,100015070,'secao_documento_cadastrar',NULL,'controlador.php?acao=secao_documento_cadastrar','S'),(100000100,100015071,'secao_documento_alterar',NULL,'controlador.php?acao=secao_documento_alterar','S'),(100000100,100015072,'secao_documento_consultar',NULL,'controlador.php?acao=secao_documento_consultar','S'),(100000100,100015073,'secao_documento_listar',NULL,'controlador.php?acao=secao_documento_listar','S'),(100000100,100015074,'secao_documento_excluir',NULL,'controlador.php?acao=secao_documento_excluir','S'),(100000100,100015075,'versao_secao_documento_cadastrar',NULL,'controlador.php?acao=versao_secao_documento_cadastrar','S'),(100000100,100015076,'versao_secao_documento_alterar',NULL,'controlador.php?acao=versao_secao_documento_alterar','S'),(100000100,100015077,'versao_secao_documento_consultar',NULL,'controlador.php?acao=versao_secao_documento_consultar','S'),(100000100,100015078,'versao_secao_documento_listar',NULL,'controlador.php?acao=versao_secao_documento_listar','S'),(100000100,100015079,'versao_secao_documento_excluir',NULL,'controlador.php?acao=versao_secao_documento_excluir','S'),(100000100,100015080,'editor_montar',NULL,'controlador.php?acao=editor_montar','S'),(100000100,100015081,'editor_salvar',NULL,'controlador.php?acao=editor_salvar','S'),(100000100,100015082,'editor_visualizar_codigo_fonte',NULL,'controlador.php?acao=editor_visualizar_codigo_fonte','S'),(100000100,100015083,'documento_visualizar_conteudo_assinatura',NULL,'controlador.php?acao=documento_visualizar_conteudo_assinatura','S'),(100000100,100015084,'tarja_assinatura_consultar',NULL,'controlador.php?acao=tarja_assinatura_consultar','S'),(100000100,100015085,'tarja_assinatura_alterar',NULL,'controlador.php?acao=tarja_assinatura_alterar','S'),(100000100,100015086,'tarja_assinatura_upload',NULL,'controlador.php?acao=tarja_assinatura_upload','S'),(100000100,100015087,'tarja_assinatura_listar',NULL,'controlador.php?acao=tarja_assinatura_listar','S'),(100000100,100015088,'unidade_selecionar_envio_processo',NULL,'controlador.php?acao=unidade_selecionar_envio_processo','S'),(100000100,100015089,'arquivo_extensao_cadastrar',NULL,'controlador.php?acao=arquivo_extensao_cadastrar','S'),(100000100,100015090,'arquivo_extensao_alterar',NULL,'controlador.php?acao=arquivo_extensao_alterar','S'),(100000100,100015091,'arquivo_extensao_consultar',NULL,'controlador.php?acao=arquivo_extensao_consultar','S'),(100000100,100015092,'arquivo_extensao_listar',NULL,'controlador.php?acao=arquivo_extensao_listar','S'),(100000100,100015093,'arquivo_extensao_excluir',NULL,'controlador.php?acao=arquivo_extensao_excluir','S'),(100000100,100015094,'arquivo_extensao_desativar',NULL,'controlador.php?acao=arquivo_extensao_desativar','S'),(100000100,100015095,'arquivo_extensao_reativar',NULL,'controlador.php?acao=arquivo_extensao_reativar','S'),(100000100,100015096,'pais_cadastrar',NULL,'controlador.php?acao=pais_cadastrar','S'),(100000100,100015097,'pais_alterar',NULL,'controlador.php?acao=pais_alterar','S'),(100000100,100015098,'pais_consultar',NULL,'controlador.php?acao=pais_consultar','S'),(100000100,100015099,'pais_selecionar',NULL,'controlador.php?acao=pais_selecionar','S'),(100000100,100015100,'pais_listar',NULL,'controlador.php?acao=pais_listar','S'),(100000100,100015101,'pais_excluir',NULL,'controlador.php?acao=pais_excluir','S'),(100000100,100015102,'grupo_email_institucional_cadastrar',NULL,'controlador.php?acao=grupo_email_institucional_cadastrar','S'),(100000100,100015103,'grupo_email_institucional_alterar',NULL,'controlador.php?acao=grupo_email_institucional_alterar','S'),(100000100,100015104,'grupo_email_institucional_consultar',NULL,'controlador.php?acao=grupo_email_institucional_consultar','S'),(100000100,100015105,'grupo_email_institucional_selecionar',NULL,'controlador.php?acao=grupo_email_institucional_selecionar','S'),(100000100,100015106,'grupo_email_institucional_listar',NULL,'controlador.php?acao=grupo_email_institucional_listar','S'),(100000100,100015107,'grupo_email_institucional_excluir',NULL,'controlador.php?acao=grupo_email_institucional_excluir','S'),(100000100,100015108,'grupo_email_institucional_desativar',NULL,'controlador.php?acao=grupo_email_institucional_desativar','S'),(100000100,100015109,'grupo_email_institucional_reativar',NULL,'controlador.php?acao=grupo_email_institucional_reativar','S'),(100000100,100015110,'numeracao_cadastrar',NULL,'controlador.php?acao=numeracao_cadastrar','S'),(100000100,100015111,'numeracao_alterar',NULL,'controlador.php?acao=numeracao_alterar','S'),(100000100,100015112,'numeracao_consultar',NULL,'controlador.php?acao=numeracao_consultar','S'),(100000100,100015113,'numeracao_listar',NULL,'controlador.php?acao=numeracao_listar','S'),(100000100,100015114,'numeracao_excluir',NULL,'controlador.php?acao=numeracao_excluir','S'),(100000100,100015115,'numeracao_ajustar',NULL,'controlador.php?acao=numeracao_ajustar','S'),(100000100,100015116,'arquivamento_pesquisar',NULL,'controlador.php?acao=arquivamento_pesquisar','S'),(100000100,100015117,'procedimento_historico_total',NULL,'controlador.php?acao=procedimento_historico_total','S'),(100000100,100015119,'usuario_externo_cadastrar',NULL,'controlador.php?acao=usuario_externo_cadastrar','S'),(100000100,100015120,'usuario_externo_alterar',NULL,'controlador.php?acao=usuario_externo_alterar','S'),(100000100,100015121,'usuario_externo_consultar',NULL,'controlador.php?acao=usuario_externo_consultar','S'),(100000100,100015122,'usuario_externo_listar',NULL,'controlador.php?acao=usuario_externo_listar','S'),(100000100,100015123,'usuario_externo_excluir',NULL,'controlador.php?acao=usuario_externo_excluir','S'),(100000100,100015124,'usuario_externo_desativar',NULL,'controlador.php?acao=usuario_externo_desativar','S'),(100000100,100015125,'usuario_externo_reativar',NULL,'controlador.php?acao=usuario_externo_reativar','S'),(100000100,100015126,'acesso_externo_gerenciar',NULL,'controlador.php?acao=acesso_externo_gerenciar','S'),(100000100,100015127,'acesso_externo_disponibilizar',NULL,'controlador.php?acao=acesso_externo_disponibilizar','S'),(100000100,100015128,'acesso_externo_cancelar',NULL,'controlador.php?acao=acesso_externo_cancelar','S'),(100000100,100015129,'assinatura_externa_gerenciar',NULL,'controlador.php?acao=assinatura_externa_gerenciar','S'),(100000100,100015130,'assinatura_externa_liberar',NULL,'controlador.php?acao=assinatura_externa_liberar','S'),(100000100,100015131,'assinatura_externa_cancelar',NULL,'controlador.php?acao=assinatura_externa_cancelar','S'),(100000100,100015132,'atividade_alterar',NULL,'controlador.php?acao=atividade_alterar','S'),(100000100,100015133,'orgao_upload',NULL,'controlador.php?acao=orgao_upload','S'),(100000100,100015134,'rel_controle_interno_tipo_proc_cadastrar',NULL,'controlador.php?acao=rel_controle_interno_tipo_proc_cadastrar','S'),(100000100,100015135,'rel_controle_interno_tipo_proc_excluir',NULL,'controlador.php?acao=rel_controle_interno_tipo_proc_excluir','S'),(100000100,100015136,'rel_controle_interno_tipo_proc_listar',NULL,'controlador.php?acao=rel_controle_interno_tipo_proc_listar','S'),(100000100,100015137,'inspecao_administrativa_gerar',NULL,'controlador.php?acao=inspecao_administrativa_gerar','S'),(100000100,100015138,'inspecao_administrativa_detalhar',NULL,'controlador.php?acao=inspecao_administrativa_detalhar','S'),(100000100,100015139,'inspecao_administrativa_geral',NULL,'controlador.php?acao=inspecao_administrativa_geral','S'),(100000100,100015140,'inspecao_administrativa_orgao',NULL,'controlador.php?acao=inspecao_administrativa_orgao','S'),(100000100,100015141,'estatisticas_cadastrar',NULL,'controlador.php?acao=estatisticas_cadastrar','S'),(100000100,100015142,'estatisticas_consultar',NULL,'controlador.php?acao=estatisticas_consultar','S'),(100000100,100015143,'estatisticas_listar',NULL,'controlador.php?acao=estatisticas_listar','S'),(100000100,100015144,'estatisticas_excluir',NULL,'controlador.php?acao=estatisticas_excluir','S'),(100000100,100015145,'procedimento_gerar_pdf',NULL,'controlador.php?acao=procedimento_gerar_pdf','S'),(100000100,100015146,'exibir_arquivo',NULL,'controlador.php?acao=exibir_arquivo','S'),(100000100,100015147,'documento_versao_listar',NULL,'controlador.php?acao=documento_versao_listar','S'),(100000100,100015148,'documento_versao_recuperar',NULL,'controlador.php?acao=documento_versao_recuperar','S'),(100000100,100015149,'grupo_protocolo_modelo_alterar',NULL,'controlador.php?acao=grupo_protocolo_modelo_alterar','S'),(100000100,100015150,'grupo_protocolo_modelo_cadastrar',NULL,'controlador.php?acao=grupo_protocolo_modelo_cadastrar','S'),(100000100,100015151,'grupo_protocolo_modelo_consultar',NULL,'controlador.php?acao=grupo_protocolo_modelo_consultar','S'),(100000100,100015152,'grupo_protocolo_modelo_excluir',NULL,'controlador.php?acao=grupo_protocolo_modelo_excluir','S'),(100000100,100015153,'grupo_protocolo_modelo_listar',NULL,'controlador.php?acao=grupo_protocolo_modelo_listar','S'),(100000100,100015154,'protocolo_modelo_alterar',NULL,'controlador.php?acao=protocolo_modelo_alterar','S'),(100000100,100015155,'protocolo_modelo_cadastrar',NULL,'controlador.php?acao=protocolo_modelo_cadastrar','S'),(100000100,100015156,'protocolo_modelo_consultar',NULL,'controlador.php?acao=protocolo_modelo_consultar','S'),(100000100,100015157,'protocolo_modelo_excluir',NULL,'controlador.php?acao=protocolo_modelo_excluir','S'),(100000100,100015158,'documento_modelo_selecionar',NULL,'controlador.php?acao=documento_modelo_selecionar','S'),(100000100,100015159,'protocolo_modelo_listar',NULL,'controlador.php?acao=protocolo_modelo_listar','S'),(100000100,100015160,'infra_navegador_listar',NULL,'controlador.php?acao=infra_navegador_listar','S'),(100000100,100015161,'texto_padrao_interno_alterar',NULL,'controlador.php?acao=texto_padrao_interno_alterar','S'),(100000100,100015162,'texto_padrao_interno_cadastrar',NULL,'controlador.php?acao=texto_padrao_interno_cadastrar','S'),(100000100,100015163,'texto_padrao_interno_consultar',NULL,'controlador.php?acao=texto_padrao_interno_consultar','S'),(100000100,100015164,'texto_padrao_interno_excluir',NULL,'controlador.php?acao=texto_padrao_interno_excluir','S'),(100000100,100015165,'texto_padrao_interno_selecionar',NULL,'controlador.php?acao=texto_padrao_interno_selecionar','S'),(100000100,100015166,'texto_padrao_interno_listar',NULL,'controlador.php?acao=texto_padrao_interno_listar','S'),(100000100,100015169,'indexar',NULL,'controlador.php?acao=indexar','S'),(100000100,100015170,'email_sistema_consultar',NULL,'controlador.php?acao=email_sistema_consultar','S'),(100000100,100015171,'email_sistema_alterar',NULL,'controlador.php?acao=email_sistema_alterar','S'),(100000100,100015172,'email_sistema_listar',NULL,'controlador.php?acao=email_sistema_listar','S'),(100000100,100015211,'usuario_externo_logar',NULL,'controlador_externo.php?acao=usuario_externo_logar','S'),(100000100,100015212,'usuario_externo_enviar_cadastro',NULL,'controlador_externo.php?acao=usuario_externo_enviar_cadastro','S'),(100000100,100015213,'usuario_externo_alterar_senha',NULL,'controlador_externo.php?acao=usuario_externo_alterar_senha','S'),(100000100,100015214,'usuario_externo_sair',NULL,'controlador_externo.php?acao=usuario_externo_sair','S'),(100000100,100015215,'usuario_externo_gerar_senha',NULL,'controlador_externo.php?acao=usuario_externo_gerar_senha','S'),(100000100,100015216,'processo_consulta_externa',NULL,'controlador_externo.php?acao=processo_consulta_externa','S'),(100000100,100015217,'documento_consulta_externa',NULL,'controlador_externo.php?acao=documento_consulta_externa','S'),(100000100,100015218,'acesso_externo_excluir',NULL,'controlador.php?acao=acesso_externo_excluir','S'),(100000100,100015219,'procedimento_visualizar',NULL,'controlador.php?acao=procedimento_visualizar','S'),(100000100,100015220,'infra_regra_auditoria_cadastrar',NULL,'controlador.php?acao=infra_regra_auditoria_cadastrar','S'),(100000100,100015222,'infra_regra_auditoria_consultar',NULL,'controlador.php?acao=infra_regra_auditoria_consultar','S'),(100000100,100015223,'infra_regra_auditoria_listar',NULL,'controlador.php?acao=infra_regra_auditoria_listar','S'),(100000100,100015227,'infra_regra_auditoria_recurso_cadastrar',NULL,'controlador.php?acao=infra_regra_auditoria_recurso_cadastrar','S'),(100000100,100015228,'infra_regra_auditoria_recurso_listar',NULL,'controlador.php?acao=infra_regra_auditoria_recurso_listar','S'),(100000100,100015230,'auditoria_protocolo_cadastrar',NULL,'controlador.php?acao=auditoria_protocolo_cadastrar','S'),(100000100,100015231,'auditoria_protocolo_consultar',NULL,'controlador.php?acao=auditoria_protocolo_consultar','S'),(100000100,100015232,'auditoria_protocolo_listar',NULL,'controlador.php?acao=auditoria_protocolo_listar','S'),(100000100,100015233,'auditoria_protocolo_excluir',NULL,'controlador.php?acao=auditoria_protocolo_excluir','S'),(100000100,100015234,'infra_auditoria_cadastrar',NULL,'controlador.php?acao=infra_auditoria_cadastrar','S'),(100000100,100015235,'infra_auditoria_listar',NULL,'controlador.php?acao=infra_auditoria_listar','S'),(100000100,100015236,'infra_agendamento_tarefa_cadastrar',NULL,'controlador.php?acao=infra_agendamento_tarefa_cadastrar','S'),(100000100,100015237,'infra_agendamento_tarefa_alterar',NULL,'controlador.php?acao=infra_agendamento_tarefa_alterar','S'),(100000100,100015238,'infra_agendamento_tarefa_consultar',NULL,'controlador.php?acao=infra_agendamento_tarefa_consultar','S'),(100000100,100015239,'infra_agendamento_tarefa_listar',NULL,'controlador.php?acao=infra_agendamento_tarefa_listar','S'),(100000100,100015240,'infra_agendamento_tarefa_excluir',NULL,'controlador.php?acao=infra_agendamento_tarefa_excluir','S'),(100000100,100015241,'infra_agendamento_tarefa_executar',NULL,'controlador.php?acao=infra_agendamento_tarefa_executar','S'),(100000100,100015242,'infra_agendamento_tarefa_desativar',NULL,'controlador.php?acao=infra_agendamento_tarefa_desativar','S'),(100000100,100015243,'infra_agendamento_tarefa_reativar',NULL,'controlador.php?acao=infra_agendamento_tarefa_reativar','S'),(100000100,100015244,'infra_banco_comparar',NULL,'controlador.php?acao=infra_banco_comparar','S'),(100000100,100015246,'conjunto_estilos_cadastrar',NULL,'controlador.php?acao=conjunto_estilos_cadastrar','S'),(100000100,100015247,'conjunto_estilos_alterar',NULL,'controlador.php?acao=conjunto_estilos_alterar','S'),(100000100,100015248,'conjunto_estilos_consultar',NULL,'controlador.php?acao=conjunto_estilos_consultar','S'),(100000100,100015249,'conjunto_estilos_listar',NULL,'controlador.php?acao=conjunto_estilos_listar','S'),(100000100,100015250,'conjunto_estilos_item_cadastrar',NULL,'controlador.php?acao=conjunto_estilos_item_cadastrar','S'),(100000100,100015251,'conjunto_estilos_item_alterar',NULL,'controlador.php?acao=conjunto_estilos_item_alterar','S'),(100000100,100015252,'conjunto_estilos_item_consultar',NULL,'controlador.php?acao=conjunto_estilos_item_consultar','S'),(100000100,100015253,'conjunto_estilos_item_listar',NULL,'controlador.php?acao=conjunto_estilos_item_listar','S'),(100000100,100015254,'pesquisa_solr_ajuda',NULL,'controlador.php?acao=pesquisa_solr_ajuda','S'),(100000100,100015267,'procedimento_paginar',NULL,'controlador.php?acao=procedimento_paginar','S'),(100000100,100015268,'tarefa_consultar',NULL,'controlador.php?acao=tarefa_consultar','S'),(100000100,100015269,'tarefa_listar',NULL,'controlador.php?acao=tarefa_listar','S'),(100000100,100015271,'tarefa_configurar_historico',NULL,'controlador.php?acao=tarefa_configurar_historico','S'),(100000100,100015272,'procedimento_finalizar_ouvidoria',NULL,'controlador.php?acao=procedimento_finalizar_ouvidoria','S'),(100000100,100015273,'acompanhamento_listar_ouvidoria',NULL,'controlador.php?acao=acompanhamento_listar_ouvidoria','S'),(100000100,100015274,'acompanhamento_gerar_grafico_ouvidoria',NULL,'controlador.php?acao=acompanhamento_gerar_grafico_ouvidoria','S'),(100000100,100015275,'acompanhamento_detalhar_ouvidoria',NULL,'controlador.php?acao=acompanhamento_detalhar_ouvidoria','S'),(100000100,100015276,'alerta_cadastrar',NULL,'controlador.php?acao=alerta_cadastrar','S'),(100000100,100015277,'alerta_alterar',NULL,'controlador.php?acao=alerta_alterar','S'),(100000100,100015278,'alerta_consultar',NULL,'controlador.php?acao=alerta_consultar','S'),(100000100,100015279,'alerta_listar',NULL,'controlador.php?acao=alerta_listar','S'),(100000100,100015280,'alerta_excluir',NULL,'controlador.php?acao=alerta_excluir','S'),(100000100,100015281,'rel_serie_veiculo_publicacao_consultar',NULL,'controlador.php?acao=rel_serie_veiculo_publicacao_consultar','S'),(100000100,100015282,'rel_serie_veiculo_publicacao_listar',NULL,'controlador.php?acao=rel_serie_veiculo_publicacao_listar','S'),(100000100,100015283,'rel_serie_veiculo_publicacao_cadastrar',NULL,'controlador.php?acao=rel_serie_veiculo_publicacao_cadastrar','S'),(100000100,100015284,'rel_serie_veiculo_publicacao_excluir',NULL,'controlador.php?acao=rel_serie_veiculo_publicacao_excluir','S'),(100000100,100015285,'feriado_cadastrar',NULL,'controlador.php?acao=feriado_cadastrar','S'),(100000100,100015286,'feriado_alterar',NULL,'controlador.php?acao=feriado_alterar','S'),(100000100,100015287,'feriado_excluir',NULL,'controlador.php?acao=feriado_excluir','S'),(100000100,100015288,'feriado_consultar',NULL,'controlador.php?acao=feriado_consultar','S'),(100000100,100015289,'feriado_listar',NULL,'controlador.php?acao=feriado_listar','S'),(100000100,100015290,'veiculo_publicacao_cadastrar',NULL,'controlador.php?acao=veiculo_publicacao_cadastrar','S'),(100000100,100015291,'veiculo_publicacao_listar',NULL,'controlador.php?acao=veiculo_publicacao_listar','S'),(100000100,100015292,'veiculo_publicacao_alterar',NULL,'controlador.php?acao=veiculo_publicacao_alterar','S'),(100000100,100015293,'veiculo_publicacao_excluir',NULL,'controlador.php?acao=veiculo_publicacao_excluir','S'),(100000100,100015294,'veiculo_publicacao_desativar',NULL,'controlador.php?acao=veiculo_publicacao_desativar','S'),(100000100,100015295,'veiculo_publicacao_reativar',NULL,'controlador.php?acao=veiculo_publicacao_reativar','S'),(100000100,100015296,'veiculo_publicacao_consultar',NULL,'controlador.php?acao=veiculo_publicacao_consultar','S'),(100000100,100015297,'veiculo_publicacao_selecionar',NULL,'controlador.php?acao=veiculo_publicacao_selecionar','S'),(100000100,100015298,'veiculo_imprensa_nacional_cadastrar',NULL,'controlador.php?acao=veiculo_imprensa_nacional_cadastrar','S'),(100000100,100015299,'veiculo_imprensa_nacional_alterar',NULL,'controlador.php?acao=veiculo_imprensa_nacional_alterar','S'),(100000100,100015300,'veiculo_imprensa_nacional_excluir',NULL,'controlador.php?acao=veiculo_imprensa_nacional_excluir','S'),(100000100,100015301,'veiculo_imprensa_nacional_consultar',NULL,'controlador.php?acao=veiculo_imprensa_nacional_consultar','S'),(100000100,100015302,'veiculo_imprensa_nacional_listar',NULL,'controlador.php?acao=veiculo_imprensa_nacional_listar','S'),(100000100,100015303,'veiculo_imprensa_nacional_selecionar',NULL,'controlador.php?acao=veiculo_imprensa_nacional_selecionar','S'),(100000100,100015304,'secao_imprensa_nacional_cadastrar',NULL,'controlador.php?acao=secao_imprensa_nacional_cadastrar','S'),(100000100,100015305,'secao_imprensa_nacional_alterar',NULL,'controlador.php?acao=secao_imprensa_nacional_alterar','S'),(100000100,100015306,'secao_imprensa_nacional_excluir',NULL,'controlador.php?acao=secao_imprensa_nacional_excluir','S'),(100000100,100015307,'secao_imprensa_nacional_consultar',NULL,'controlador.php?acao=secao_imprensa_nacional_consultar','S'),(100000100,100015308,'secao_imprensa_nacional_listar',NULL,'controlador.php?acao=secao_imprensa_nacional_listar','S'),(100000100,100015309,'secao_imprensa_nacional_selecionar',NULL,'controlador.php?acao=secao_imprensa_nacional_selecionar','S'),(100000100,100015318,'publicacao_legado_consultar',NULL,'controlador.php?acao=publicacao_legado_consultar','S'),(100000100,100015319,'publicacao_legado_listar',NULL,'controlador.php?acao=publicacao_legado_listar','S'),(100000100,100015320,'documento_mover',NULL,'controlador.php?acao=documento_mover','S'),(100000100,100015321,'rel_protocolo_protocolo_alterar',NULL,'controlador.php?acao=rel_protocolo_protocolo_alterar','S'),(100000100,100015322,'serie_publicacao_cadastrar',NULL,'controlador.php?acao=serie_publicacao_cadastrar','S'),(100000100,100015323,'serie_publicacao_consultar',NULL,'controlador.php?acao=serie_publicacao_consultar','S'),(100000100,100015324,'serie_publicacao_listar',NULL,'controlador.php?acao=serie_publicacao_listar','S'),(100000100,100015325,'unidade_publicacao_cadastrar',NULL,'controlador.php?acao=unidade_publicacao_cadastrar','S'),(100000100,100015326,'unidade_publicacao_consultar',NULL,'controlador.php?acao=unidade_publicacao_consultar','S'),(100000100,100015327,'unidade_publicacao_listar',NULL,'controlador.php?acao=unidade_publicacao_listar','S'),(100000100,100015328,'procedimento_anexar',NULL,'controlador.php?acao=procedimento_anexar','S'),(100000100,100015329,'procedimento_desanexar',NULL,'controlador.php?acao=procedimento_desanexar','S'),(100000100,100015330,'procedimento_listar_anexados',NULL,'controlador.php?acao=procedimento_listar_anexados','S'),(100000100,100015331,'procedimento_anexado_ciencia',NULL,'controlador.php?acao=procedimento_anexado_ciencia','S'),(100000100,100015332,'protocolo_visualizar',NULL,'controlador.php?acao=protocolo_visualizar','S'),(100000100,100015333,'estatisticas_detalhar_desempenho',NULL,'controlador.php?acao=estatisticas_detalhar_desempenho','S'),(100000100,100015334,'estatisticas_detalhar_desempenho_procedimento',NULL,'controlador.php?acao=estatisticas_detalhar_desempenho_procedimento','S'),(100000100,100015335,'responder_formulario_corregedoria',NULL,'controlador.php?acao=responder_formulario_corregedoria','S'),(100000100,100015336,'tarja_assinatura_montar',NULL,'controlador.php?acao=tarja_assinatura_montar','S'),(100000100,100015337,'email_sistema_desativar',NULL,'controlador.php?acao=email_sistema_desativar','S'),(100000100,100015338,'email_sistema_reativar',NULL,'controlador.php?acao=email_sistema_reativar','S'),(100000100,100015339,'indexacao_publicacao_cadastrar',NULL,'controlador.php?acao=indexacao_publicacao_cadastrar','S'),(100000100,100015340,'indexacao_publicacao_listar',NULL,'controlador.php?acao=indexacao_publicacao_listar','S'),(100000100,100015341,'indexacao_publicacao_excluir',NULL,'controlador.php?acao=indexacao_publicacao_excluir','S'),(100000100,100015342,'rel_serie_assunto_cadastrar',NULL,'controlador.php?acao=rel_serie_assunto_cadastrar','S'),(100000100,100015343,'rel_serie_assunto_excluir',NULL,'controlador.php?acao=rel_serie_assunto_excluir','S'),(100000100,100015344,'rel_serie_assunto_listar',NULL,'controlador.php?acao=rel_serie_assunto_listar','S'),(100000100,100015345,'tipo_conferencia_cadastrar',NULL,'controlador.php?acao=tipo_conferencia_cadastrar','S'),(100000100,100015346,'tipo_conferencia_alterar',NULL,'controlador.php?acao=tipo_conferencia_alterar','S'),(100000100,100015347,'tipo_conferencia_consultar',NULL,'controlador.php?acao=tipo_conferencia_consultar','S'),(100000100,100015348,'tipo_conferencia_listar',NULL,'controlador.php?acao=tipo_conferencia_listar','S'),(100000100,100015349,'tipo_conferencia_excluir',NULL,'controlador.php?acao=tipo_conferencia_excluir','S'),(100000100,100015350,'tipo_conferencia_desativar',NULL,'controlador.php?acao=tipo_conferencia_desativar','S'),(100000100,100015351,'tipo_conferencia_reativar',NULL,'controlador.php?acao=tipo_conferencia_reativar','S'),(100000100,100015352,'gerar_estatisticas_desempenho_processos',NULL,'controlador.php?acao=gerar_estatisticas_desempenho_processos','S'),(100000100,100015353,'assinatura_verificar',NULL,'controlador.php?acao=assinatura_verificar','S'),(100000100,100015354,'assinatura_download_p7s',NULL,'controlador.php?acao=assinatura_download_p7s','S'),(100000100,100015355,'hipotese_legal_cadastrar',NULL,'controlador.php?acao=hipotese_legal_cadastrar','S'),(100000100,100015356,'hipotese_legal_alterar',NULL,'controlador.php?acao=hipotese_legal_alterar','S'),(100000100,100015357,'hipotese_legal_consultar',NULL,'controlador.php?acao=hipotese_legal_consultar','S'),(100000100,100015358,'hipotese_legal_selecionar',NULL,'controlador.php?acao=hipotese_legal_selecionar','S'),(100000100,100015359,'hipotese_legal_listar',NULL,'controlador.php?acao=hipotese_legal_listar','S'),(100000100,100015360,'hipotese_legal_excluir',NULL,'controlador.php?acao=hipotese_legal_excluir','S'),(100000100,100015361,'hipotese_legal_desativar',NULL,'controlador.php?acao=hipotese_legal_desativar','S'),(100000100,100015362,'hipotese_legal_reativar',NULL,'controlador.php?acao=hipotese_legal_reativar','S'),(100000100,100015372,'velocidade_transferencia_cadastrar',NULL,'controlador.php?acao=velocidade_transferencia_cadastrar','S'),(100000100,100015373,'velocidade_transferencia_alterar',NULL,'controlador.php?acao=velocidade_transferencia_alterar','S'),(100000100,100015374,'velocidade_transferencia_consultar',NULL,'controlador.php?acao=velocidade_transferencia_consultar','S'),(100000100,100015375,'velocidade_transferencia_excluir',NULL,'controlador.php?acao=velocidade_transferencia_excluir','S'),(100000100,100015376,'velocidade_transferencia_listar',NULL,'controlador.php?acao=velocidade_transferencia_listar','S'),(100000100,100015377,'assinatura_digital_ajuda',NULL,'controlador.php?acao=assinatura_digital_ajuda','S'),(100000100,100015378,'unidade_selecionar_reabertura_processo',NULL,'controlador.php?acao=unidade_selecionar_reabertura_processo','S'),(100000100,100015379,'editor_imagem_upload',NULL,'controlador.php?acao=editor_imagem_upload','S'),(100000100,100015380,'imagem_formato_cadastrar',NULL,'controlador.php?acao=imagem_formato_cadastrar','S'),(100000100,100015381,'imagem_formato_consultar',NULL,'controlador.php?acao=imagem_formato_consultar','S'),(100000100,100015382,'imagem_formato_listar',NULL,'controlador.php?acao=imagem_formato_listar','S'),(100000100,100015383,'imagem_formato_alterar',NULL,'controlador.php?acao=imagem_formato_alterar','S'),(100000100,100015384,'imagem_formato_excluir',NULL,'controlador.php?acao=imagem_formato_excluir','S'),(100000100,100015385,'imagem_formato_desativar',NULL,'controlador.php?acao=imagem_formato_desativar','S'),(100000100,100015386,'imagem_formato_reativar',NULL,'controlador.php?acao=imagem_formato_reativar','S'),(100000100,100015387,'rel_secao_mod_cj_estilos_item_cadastrar',NULL,'controlador.php?acao=rel_secao_mod_cj_estilos_item_cadastrar','S'),(100000100,100015388,'rel_secao_mod_cj_estilos_item_alterar',NULL,'controlador.php?acao=rel_secao_mod_cj_estilos_item_alterar','S'),(100000100,100015389,'rel_secao_mod_cj_estilos_item_excluir',NULL,'controlador.php?acao=rel_secao_mod_cj_estilos_item_excluir','S'),(100000100,100015390,'rel_secao_mod_cj_estilos_item_consultar',NULL,'controlador.php?acao=rel_secao_mod_cj_estilos_item_consultar','S'),(100000100,100015391,'rel_secao_mod_cj_estilos_item_listar',NULL,'controlador.php?acao=rel_secao_mod_cj_estilos_item_listar','S'),(100000100,100015392,'secao_modelo_desativar',NULL,'controlador.php?acao=secao_modelo_desativar','S'),(100000100,100015393,'secao_modelo_reativar',NULL,'controlador.php?acao=secao_modelo_reativar','S'),(100000100,100015394,'email_utilizado_cadastrar',NULL,'controlador.php?acao=email_utilizado_cadastrar','S'),(100000100,100015395,'email_utilizado_listar',NULL,'controlador.php?acao=email_utilizado_listar','S'),(100000100,100015396,'email_utilizado_excluir',NULL,'controlador.php?acao=email_utilizado_excluir','S'),(100000100,100015397,'procedimento_gerar_zip',NULL,'controlador.php?acao=procedimento_gerar_zip','S'),(100000100,100015398,'unidade_publicacao_excluir',NULL,'controlador.php?acao=unidade_publicacao_excluir','S'),(100000100,100015399,'serie_publicacao_excluir',NULL,'controlador.php?acao=serie_publicacao_excluir','S'),(100000100,100015400,'grupo_unidade_cadastrar',NULL,'controlador.php?acao=grupo_unidade_cadastrar','S'),(100000100,100015401,'grupo_unidade_alterar',NULL,'controlador.php?acao=grupo_unidade_alterar','S'),(100000100,100015402,'grupo_unidade_consultar',NULL,'controlador.php?acao=grupo_unidade_consultar','S'),(100000100,100015403,'grupo_unidade_selecionar',NULL,'controlador.php?acao=grupo_unidade_selecionar','S'),(100000100,100015404,'grupo_unidade_excluir',NULL,'controlador.php?acao=grupo_unidade_excluir','S'),(100000100,100015405,'grupo_unidade_listar',NULL,'controlador.php?acao=grupo_unidade_listar','S'),(100000100,100015406,'rel_grupo_unidade_unidade_cadastrar',NULL,'controlador.php?acao=rel_grupo_unidade_unidade_cadastrar','S'),(100000100,100015407,'rel_grupo_unidade_unidade_excluir',NULL,'controlador.php?acao=rel_grupo_unidade_unidade_excluir','S'),(100000100,100015408,'rel_grupo_unidade_unidade_listar',NULL,'controlador.php?acao=rel_grupo_unidade_unidade_listar','S'),(100000100,100015409,'grupo_unidade_institucional_cadastrar',NULL,'controlador.php?acao=grupo_unidade_institucional_cadastrar','S'),(100000100,100015410,'grupo_unidade_institucional_consultar',NULL,'controlador.php?acao=grupo_unidade_institucional_consultar','S'),(100000100,100015411,'grupo_unidade_institucional_listar',NULL,'controlador.php?acao=grupo_unidade_institucional_listar','S'),(100000100,100015412,'grupo_unidade_institucional_selecionar',NULL,'controlador.php?acao=grupo_unidade_institucional_selecionar','S'),(100000100,100015413,'grupo_unidade_institucional_alterar',NULL,'controlador.php?acao=grupo_unidade_institucional_alterar','S'),(100000100,100015414,'grupo_unidade_institucional_excluir',NULL,'controlador.php?acao=grupo_unidade_institucional_excluir','S'),(100000100,100015415,'grupo_unidade_institucional_desativar',NULL,'controlador.php?acao=grupo_unidade_institucional_desativar','S'),(100000100,100015416,'grupo_unidade_institucional_reativar',NULL,'controlador.php?acao=grupo_unidade_institucional_reativar','S'),(100000100,100015417,'unidade_tramitacao_selecionar',NULL,'controlador.php?acao=unidade_tramitacao_selecionar','S'),(100000100,100015418,'email_encaminhar',NULL,'controlador.php?acao=email_encaminhar','S'),(100000100,100015419,'procedimento_escolher_tipo_relacionado',NULL,'controlador.php?acao=procedimento_escolher_tipo_relacionado','S'),(100000100,100015420,'procedimento_gerar_relacionado',NULL,'controlador.php?acao=procedimento_gerar_relacionado','S'),(100000100,100015421,'responder_formulario',NULL,'controlador.php?acao=responder_formulario','S'),(100000100,100015422,'documento_gerar_multiplo',NULL,'controlador.php?acao=documento_gerar_multiplo','S'),(100000100,100015423,'situacao_cadastrar',NULL,'controlador.php?acao=situacao_cadastrar','S'),(100000100,100015424,'situacao_alterar',NULL,'controlador.php?acao=situacao_alterar','S'),(100000100,100015425,'situacao_consultar',NULL,'controlador.php?acao=situacao_consultar','S'),(100000100,100015426,'situacao_listar',NULL,'controlador.php?acao=situacao_listar','S'),(100000100,100015427,'situacao_desativar',NULL,'controlador.php?acao=situacao_desativar','S'),(100000100,100015428,'situacao_reativar',NULL,'controlador.php?acao=situacao_reativar','S'),(100000100,100015429,'situacao_excluir',NULL,'controlador.php?acao=situacao_excluir','S'),(100000100,100015430,'andamento_situacao_lancar',NULL,'controlador.php?acao=andamento_situacao_lancar','S'),(100000100,100015431,'andamento_situacao_consultar',NULL,'controlador.php?acao=andamento_situacao_consultar','S'),(100000100,100015432,'andamento_situacao_listar',NULL,'controlador.php?acao=andamento_situacao_listar','S'),(100000100,100015433,'andamento_situacao_excluir',NULL,'controlador.php?acao=andamento_situacao_excluir','S'),(100000100,100015442,'rel_situacao_unidade_cadastrar',NULL,'controlador.php?acao=rel_situacao_unidade_cadastrar','S'),(100000100,100015443,'rel_situacao_unidade_consultar',NULL,'controlador.php?acao=rel_situacao_unidade_consultar','S'),(100000100,100015444,'rel_situacao_unidade_listar',NULL,'controlador.php?acao=rel_situacao_unidade_listar','S'),(100000100,100015445,'rel_situacao_unidade_excluir',NULL,'controlador.php?acao=rel_situacao_unidade_excluir','S'),(100000100,100015446,'andamento_situacao_gerenciar',NULL,'controlador.php?acao=andamento_situacao_gerenciar','S'),(100000100,100015447,'controle_unidade_gerar_grafico',NULL,'controlador.php?acao=controle_unidade_gerar_grafico','S'),(100000100,100015448,'controle_unidade_listar',NULL,'controlador.php?acao=controle_unidade_listar','S'),(100000100,100015449,'controle_unidade_detalhar',NULL,'controlador.php?acao=controle_unidade_detalhar','S'),(100000100,100015450,'controle_unidade_gerar',NULL,'controlador.php?acao=controle_unidade_gerar','S'),(100000100,100015453,'procedimento_credencial_cancelar',NULL,'controlador.php?acao=procedimento_credencial_cancelar','S'),(100000100,100015454,'procedimento_credencial_ativar',NULL,'controlador.php?acao=procedimento_credencial_ativar','S'),(100000100,100015455,'procedimento_acervo_sigilosos_unidade',NULL,'controlador.php?acao=procedimento_acervo_sigilosos_unidade','S'),(100000100,100015456,'modulo_listar',NULL,'controlador.php?acao=modulo_listar','S'),(100000100,100015457,'infra_atributo_cache_consultar',NULL,'controlador.php?acao=infra_atributo_cache_consultar','S'),(100000100,100015458,'infra_atributo_cache_excluir',NULL,'controlador.php?acao=infra_atributo_cache_excluir','S'),(100000100,100015459,'infra_atributo_cache_listar',NULL,'controlador.php?acao=infra_atributo_cache_listar','S'),(100000100,100015460,'email_utilizado_consultar',NULL,'controlador.php?acao=email_utilizado_consultar','S'),(100000100,100015461,'nivel_acesso_permitido_consultar',NULL,'controlador.php?acao=nivel_acesso_permitido_consultar','S'),(100000100,100015462,'tipo_procedimento_escolha_consultar',NULL,'controlador.php?acao=tipo_procedimento_escolha_consultar','S'),(100000100,100015463,'serie_escolha_consultar',NULL,'controlador.php?acao=serie_escolha_consultar','S'),(100000100,100015464,'acesso_consultar',NULL,'controlador.php?acao=acesso_consultar','S'),(100000100,100015465,'procedimento_pesquisar',NULL,'controlador.php?acao=procedimento_pesquisar','S'),(100000100,100015466,'acesso_externo_protocolo_selecionar',NULL,'controlador.php?acao=acesso_externo_protocolo_selecionar','S'),(100000100,100015467,'acesso_externo_protocolo_detalhe',NULL,'controlador.php?acao=acesso_externo_protocolo_detalhe','S'),(100000100,100015468,'rel_acesso_ext_protocolo_cadastrar',NULL,'controlador.php?acao=rel_acesso_ext_protocolo_cadastrar','S'),(100000100,100015469,'rel_acesso_ext_protocolo_consultar',NULL,'controlador.php?acao=rel_acesso_ext_protocolo_consultar','S'),(100000100,100015470,'rel_acesso_ext_protocolo_listar',NULL,'controlador.php?acao=rel_acesso_ext_protocolo_listar','S'),(100000100,100015471,'rel_acesso_ext_protocolo_excluir',NULL,'controlador.php?acao=rel_acesso_ext_protocolo_excluir','S'),(100000100,100015472,'tipo_formulario_listar',NULL,'controlador.php?acao=tipo_formulario_listar','S'),(100000100,100015473,'tipo_formulario_consultar',NULL,'controlador.php?acao=tipo_formulario_consultar','S'),(100000100,100015474,'tipo_formulario_cadastrar',NULL,'controlador.php?acao=tipo_formulario_cadastrar','S'),(100000100,100015475,'tipo_formulario_alterar',NULL,'controlador.php?acao=tipo_formulario_alterar','S'),(100000100,100015476,'tipo_formulario_excluir',NULL,'controlador.php?acao=tipo_formulario_excluir','S'),(100000100,100015477,'tipo_formulario_desativar',NULL,'controlador.php?acao=tipo_formulario_desativar','S'),(100000100,100015478,'tipo_formulario_reativar',NULL,'controlador.php?acao=tipo_formulario_reativar','S'),(100000100,100015479,'tipo_formulario_visualizar',NULL,'controlador.php?acao=tipo_formulario_visualizar','S'),(100000100,100015480,'tipo_formulario_clonar',NULL,'controlador.php?acao=tipo_formulario_clonar','S'),(100000100,100015481,'rel_protocolo_atributo_alterar',NULL,'controlador.php?acao=rel_protocolo_atributo_alterar','S'),(100000100,100015482,'documento_gerar_circular',NULL,'controlador.php?acao=documento_gerar_circular','S'),(100000100,100015483,'documento_email_circular',NULL,'controlador.php?acao=documento_email_circular','S'),(100000100,100015484,'email_enviar_circular',NULL,'controlador.php?acao=email_enviar_circular','S'),(100000100,100015485,'grupo_contato_institucional_alterar',NULL,'controlador.php?acao=grupo_contato_institucional_alterar','S'),(100000100,100015486,'grupo_contato_institucional_cadastrar',NULL,'controlador.php?acao=grupo_contato_institucional_cadastrar','S'),(100000100,100015487,'grupo_contato_institucional_desativar',NULL,'controlador.php?acao=grupo_contato_institucional_desativar','S'),(100000100,100015488,'grupo_contato_institucional_excluir',NULL,'controlador.php?acao=grupo_contato_institucional_excluir','S'),(100000100,100015489,'grupo_contato_institucional_reativar',NULL,'controlador.php?acao=grupo_contato_institucional_reativar','S'),(100000100,100015490,'grupo_contato_institucional_consultar',NULL,'controlador.php?acao=grupo_contato_institucional_consultar','S'),(100000100,100015491,'grupo_contato_institucional_listar',NULL,'controlador.php?acao=grupo_contato_institucional_listar','S'),(100000100,100015492,'grupo_contato_institucional_selecionar',NULL,'controlador.php?acao=grupo_contato_institucional_selecionar','S'),(100000100,100015493,'monitoramento_servico_listar',NULL,'controlador.php?acao=monitoramento_servico_listar','S'),(100000100,100015494,'monitoramento_servico_excluir',NULL,'controlador.php?acao=monitoramento_servico_excluir','S'),(100000100,100015495,'contato_definir',NULL,'controlador.php?acao=contato_definir','S'),(100000100,100015496,'formulario_gerar',NULL,'controlador.php?acao=formulario_gerar','S'),(100000100,100015497,'formulario_alterar',NULL,'controlador.php?acao=formulario_alterar','S'),(100000100,100015498,'formulario_consultar',NULL,'controlador.php?acao=formulario_consultar','S'),(100000100,100015499,'marcador_cadastrar',NULL,'controlador.php?acao=marcador_cadastrar','S'),(100000100,100015500,'marcador_alterar',NULL,'controlador.php?acao=marcador_alterar','S'),(100000100,100015501,'marcador_consultar',NULL,'controlador.php?acao=marcador_consultar','S'),(100000100,100015502,'marcador_listar',NULL,'controlador.php?acao=marcador_listar','S'),(100000100,100015503,'marcador_excluir',NULL,'controlador.php?acao=marcador_excluir','S'),(100000100,100015504,'marcador_desativar',NULL,'controlador.php?acao=marcador_desativar','S'),(100000100,100015505,'marcador_reativar',NULL,'controlador.php?acao=marcador_reativar','S'),(100000100,100015506,'andamento_marcador_gerenciar',NULL,'controlador.php?acao=andamento_marcador_gerenciar','S'),(100000100,100015507,'andamento_marcador_consultar',NULL,'controlador.php?acao=andamento_marcador_consultar','S'),(100000100,100015508,'andamento_marcador_listar',NULL,'controlador.php?acao=andamento_marcador_listar','S'),(100000100,100015509,'andamento_marcador_excluir',NULL,'controlador.php?acao=andamento_marcador_excluir','S'),(100000100,100015510,'usuario_validar_acesso',NULL,'controlador.php?acao=usuario_validar_acesso','S'),(100000100,100015511,'serie_restricao_cadastrar',NULL,'controlador.php?acao=serie_restricao_cadastrar','S'),(100000100,100015512,'serie_restricao_consultar',NULL,'controlador.php?acao=serie_restricao_consultar','S'),(100000100,100015513,'serie_restricao_listar',NULL,'controlador.php?acao=serie_restricao_listar','S'),(100000100,100015514,'serie_restricao_excluir',NULL,'controlador.php?acao=serie_restricao_excluir','S'),(100000100,100015515,'tipo_proced_restricao_cadastrar',NULL,'controlador.php?acao=tipo_proced_restricao_cadastrar','S'),(100000100,100015516,'tipo_proced_restricao_consultar',NULL,'controlador.php?acao=tipo_proced_restricao_consultar','S'),(100000100,100015517,'tipo_proced_restricao_listar',NULL,'controlador.php?acao=tipo_proced_restricao_listar','S'),(100000100,100015518,'tipo_proced_restricao_excluir',NULL,'controlador.php?acao=tipo_proced_restricao_excluir','S'),(100000100,100015519,'assunto_proxy_cadastrar',NULL,'controlador.php?acao=assunto_proxy_cadastrar','S'),(100000100,100015520,'assunto_proxy_alterar',NULL,'controlador.php?acao=assunto_proxy_alterar','S'),(100000100,100015521,'assunto_proxy_excluir',NULL,'controlador.php?acao=assunto_proxy_excluir','S'),(100000100,100015522,'assunto_proxy_consultar',NULL,'controlador.php?acao=assunto_proxy_consultar','S'),(100000100,100015523,'assunto_proxy_listar',NULL,'controlador.php?acao=assunto_proxy_listar','S'),(100000100,100015524,'tabela_assuntos_ativar',NULL,'controlador.php?acao=tabela_assuntos_ativar','S'),(100000100,100015525,'tabela_assuntos_cadastrar',NULL,'controlador.php?acao=tabela_assuntos_cadastrar','S'),(100000100,100015526,'tabela_assuntos_alterar',NULL,'controlador.php?acao=tabela_assuntos_alterar','S'),(100000100,100015527,'tabela_assuntos_excluir',NULL,'controlador.php?acao=tabela_assuntos_excluir','S'),(100000100,100015528,'tabela_assuntos_consultar',NULL,'controlador.php?acao=tabela_assuntos_consultar','S'),(100000100,100015529,'tabela_assuntos_listar',NULL,'controlador.php?acao=tabela_assuntos_listar','S'),(100000100,100015530,'procedimento_bloquear',NULL,'controlador.php?acao=procedimento_bloquear','S'),(100000100,100015531,'procedimento_desbloquear',NULL,'controlador.php?acao=procedimento_desbloquear','S'),(100000100,100015532,'unidade_selecionar_orgao',NULL,'controlador.php?acao=unidade_selecionar_orgao','S'),(100000100,100015533,'rel_tipo_procedimento_assunto_consultar',NULL,'controlador.php?acao=rel_tipo_procedimento_assunto_consultar','S'),(100000100,100015534,'rel_serie_assunto_consultar',NULL,'controlador.php?acao=rel_serie_assunto_consultar','S'),(100000100,100015535,'mapeamento_assunto_gerenciar',NULL,'controlador.php?acao=mapeamento_assunto_gerenciar','S'),(100000100,100015536,'mapeamento_assunto_cadastrar',NULL,'controlador.php?acao=mapeamento_assunto_cadastrar','S'),(100000100,100015537,'mapeamento_assunto_excluir',NULL,'controlador.php?acao=mapeamento_assunto_excluir','S'),(100000100,100015538,'mapeamento_assunto_consultar',NULL,'controlador.php?acao=mapeamento_assunto_consultar','S'),(100000100,100015539,'mapeamento_assunto_listar',NULL,'controlador.php?acao=mapeamento_assunto_listar','S'),(100000100,100015540,'arquivamento_excluir',NULL,'controlador.php?acao=arquivamento_excluir','S'),(100000100,100015541,'arquivamento_consultar',NULL,'controlador.php?acao=arquivamento_consultar','S'),(100000100,100015542,'gerar_estatisticas_arquivamento',NULL,'controlador.php?acao=gerar_estatisticas_arquivamento','S'),(100000100,100015543,'estatisticas_detalhar_arquivamento',NULL,'controlador.php?acao=estatisticas_detalhar_arquivamento','S'),(100000100,100015544,'documento_cancelar',NULL,'controlador.php?acao=documento_cancelar','S'),(100000100,100015545,'documento_versao_comparar',NULL,'controlador.php?acao=documento_versao_comparar','S'),(100000100,100015546,'ajuda_variaveis_secao_modelo',NULL,'controlador.php?acao=ajuda_variaveis_secao_modelo','S'),(100000100,100015547,'ajuda_variaveis_tarjas',NULL,'controlador.php?acao=ajuda_variaveis_tarjas','S'),(100000100,100015548,'ajuda_variaveis_email_sistema',NULL,'controlador.php?acao=ajuda_variaveis_email_sistema','S'),(100000100,100015549,'unidade_migrar',NULL,'controlador.php?acao=unidade_migrar','S'),(100000100,100015550,'estatisticas_grafico_exibir',NULL,'controlador.php?acao=estatisticas_grafico_exibir','S'),(100000100,100015553,'anexo_download',NULL,'controlador.php?acao=anexo_download','S'),(100000100,100015584,'acompanhamento_gerenciar',NULL,'controlador.php?acao=acompanhamento_gerenciar','S'),(100000100,100015585,'acompanhamento_selecionar',NULL,'controlador.php?acao=acompanhamento_selecionar','S'),(100000100,100015586,'acompanhamento_alterar_grupo',NULL,'controlador.php?acao=acompanhamento_alterar_grupo','S'),(100000100,100015587,'andamento_marcador_alterar',NULL,'controlador.php?acao=andamento_marcador_alterar','S'),(100000100,100015588,'andamento_marcador_cadastrar',NULL,'controlador.php?acao=andamento_marcador_cadastrar','S'),(100000100,100015589,'andamento_marcador_remover',NULL,'controlador.php?acao=andamento_marcador_remover','S'),(100000100,100015590,'marcador_selecionar',NULL,'controlador.php?acao=marcador_selecionar','S'),(100000100,100015591,'painel_controle_configurar',NULL,'controlador.php?acao=painel_controle_configurar','S'),(100000100,100015592,'painel_controle_visualizar',NULL,'controlador.php?acao=painel_controle_visualizar','S'),(100000100,100015593,'procedimento_configurar_detalhe',NULL,'controlador.php?acao=procedimento_configurar_detalhe','S'),(100000100,100015594,'rel_usuario_marcador_cadastrar',NULL,'controlador.php?acao=rel_usuario_marcador_cadastrar','S'),(100000100,100015595,'rel_usuario_marcador_configurar',NULL,'controlador.php?acao=rel_usuario_marcador_configurar','S'),(100000100,100015596,'rel_usuario_marcador_excluir',NULL,'controlador.php?acao=rel_usuario_marcador_excluir','S'),(100000100,100015597,'rel_usuario_marcador_listar',NULL,'controlador.php?acao=rel_usuario_marcador_listar','S'),(100000100,100015598,'rel_usuario_marcador_selecionar',NULL,'controlador.php?acao=rel_usuario_marcador_selecionar','S'),(100000100,100015599,'rel_usuario_grupo_acomp_cadastrar',NULL,'controlador.php?acao=rel_usuario_grupo_acomp_cadastrar','S'),(100000100,100015600,'rel_usuario_grupo_acomp_configurar',NULL,'controlador.php?acao=rel_usuario_grupo_acomp_configurar','S'),(100000100,100015601,'rel_usuario_grupo_acomp_excluir',NULL,'controlador.php?acao=rel_usuario_grupo_acomp_excluir','S'),(100000100,100015602,'rel_usuario_grupo_acomp_listar',NULL,'controlador.php?acao=rel_usuario_grupo_acomp_listar','S'),(100000100,100015603,'rel_usuario_grupo_acomp_selecionar',NULL,'controlador.php?acao=rel_usuario_grupo_acomp_selecionar','S'),(100000100,100015604,'rel_usuario_usuario_unidade_cadastrar',NULL,'controlador.php?acao=rel_usuario_usuario_unidade_cadastrar','S'),(100000100,100015605,'rel_usuario_usuario_unidade_configurar',NULL,'controlador.php?acao=rel_usuario_usuario_unidade_configurar','S'),(100000100,100015606,'rel_usuario_usuario_unidade_excluir',NULL,'controlador.php?acao=rel_usuario_usuario_unidade_excluir','S'),(100000100,100015607,'rel_usuario_usuario_unidade_listar',NULL,'controlador.php?acao=rel_usuario_usuario_unidade_listar','S'),(100000100,100015608,'rel_usuario_usuario_unidade_selecionar',NULL,'controlador.php?acao=rel_usuario_usuario_unidade_selecionar','S'),(100000100,100015609,'rel_usuario_tipo_proced_cadastrar',NULL,'controlador.php?acao=rel_usuario_tipo_proced_cadastrar','S'),(100000100,100015610,'rel_usuario_tipo_proced_configurar',NULL,'controlador.php?acao=rel_usuario_tipo_proced_configurar','S'),(100000100,100015611,'rel_usuario_tipo_proced_excluir',NULL,'controlador.php?acao=rel_usuario_tipo_proced_excluir','S'),(100000100,100015612,'rel_usuario_tipo_proced_listar',NULL,'controlador.php?acao=rel_usuario_tipo_proced_listar','S'),(100000100,100015613,'rel_usuario_tipo_proced_selecionar',NULL,'controlador.php?acao=rel_usuario_tipo_proced_selecionar','S'),(100000100,100015614,'arquivamento_cancelar',NULL,'controlador.php?acao=arquivamento_cancelar','S'),(100000100,100015615,'orgao_historico_alterar',NULL,'controlador.php?acao=orgao_historico_alterar','S'),(100000100,100015616,'orgao_historico_cadastrar',NULL,'controlador.php?acao=orgao_historico_cadastrar','S'),(100000100,100015617,'orgao_historico_excluir',NULL,'controlador.php?acao=orgao_historico_excluir','S'),(100000100,100015618,'unidade_historico_alterar',NULL,'controlador.php?acao=unidade_historico_alterar','S'),(100000100,100015619,'unidade_historico_cadastrar',NULL,'controlador.php?acao=unidade_historico_cadastrar','S'),(100000100,100015620,'unidade_historico_excluir',NULL,'controlador.php?acao=unidade_historico_excluir','S'),(100000100,100015621,'orgao_historico_consultar',NULL,'controlador.php?acao=orgao_historico_consultar','S'),(100000100,100015622,'orgao_historico_listar',NULL,'controlador.php?acao=orgao_historico_listar','S'),(100000100,100015623,'unidade_historico_consultar',NULL,'controlador.php?acao=unidade_historico_consultar','S'),(100000100,100015624,'unidade_historico_listar',NULL,'controlador.php?acao=unidade_historico_listar','S'),(100000100,100015625,'titulo_listar',NULL,'controlador.php?acao=titulo_listar','S'),(100000100,100015626,'titulo_consultar',NULL,'controlador.php?acao=titulo_consultar','S'),(100000100,100015627,'titulo_cadastrar',NULL,'controlador.php?acao=titulo_cadastrar','S'),(100000100,100015628,'titulo_alterar',NULL,'controlador.php?acao=titulo_alterar','S'),(100000100,100015629,'titulo_excluir',NULL,'controlador.php?acao=titulo_excluir','S'),(100000100,100015630,'titulo_desativar',NULL,'controlador.php?acao=titulo_desativar','S'),(100000100,100015631,'titulo_reativar',NULL,'controlador.php?acao=titulo_reativar','S'),(100000100,100015632,'titulo_selecionar',NULL,'controlador.php?acao=titulo_selecionar','S'),(100000100,100015633,'contato_gerar_relatorios',NULL,'controlador.php?acao=contato_gerar_relatorios','S'),(100000100,100015634,'editor_simular',NULL,'controlador.php?acao=editor_simular','S'),(100000100,100015635,'controle_prazo_definir',NULL,'controlador.php?acao=controle_prazo_definir','S'),(100000100,100015636,'controle_prazo_concluir',NULL,'controlador.php?acao=controle_prazo_concluir','S'),(100000100,100015637,'controle_prazo_cadastrar',NULL,'controlador.php?acao=controle_prazo_cadastrar','S'),(100000100,100015638,'controle_prazo_alterar',NULL,'controlador.php?acao=controle_prazo_alterar','S'),(100000100,100015639,'controle_prazo_excluir',NULL,'controlador.php?acao=controle_prazo_excluir','S'),(100000100,100015640,'controle_prazo_consultar',NULL,'controlador.php?acao=controle_prazo_consultar','S'),(100000100,100015641,'controle_prazo_listar',NULL,'controlador.php?acao=controle_prazo_listar','S'),(100000100,100015642,'comentario_cadastrar',NULL,'controlador.php?acao=comentario_cadastrar','S'),(100000100,100015643,'comentario_alterar',NULL,'controlador.php?acao=comentario_alterar','S'),(100000100,100015644,'comentario_listar',NULL,'controlador.php?acao=comentario_listar','S'),(100000100,100015645,'comentario_consultar',NULL,'controlador.php?acao=comentario_consultar','S'),(100000100,100015646,'comentario_excluir',NULL,'controlador.php?acao=comentario_excluir','S'),(100000100,100015647,'infra_acesso_usuario_listar',NULL,'controlador.php?acao=infra_acesso_usuario_listar','S'),(100000100,100015648,'categoria_consultar',NULL,'controlador.php?acao=categoria_consultar','S'),(100000100,100015649,'categoria_listar',NULL,'controlador.php?acao=categoria_listar','S'),(100000100,100015650,'categoria_cadastrar',NULL,'controlador.php?acao=categoria_cadastrar','S'),(100000100,100015651,'categoria_alterar',NULL,'controlador.php?acao=categoria_alterar','S'),(100000100,100015652,'categoria_excluir',NULL,'controlador.php?acao=categoria_excluir','S'),(100000100,100015653,'categoria_desativar',NULL,'controlador.php?acao=categoria_desativar','S'),(100000100,100015654,'categoria_reativar',NULL,'controlador.php?acao=categoria_reativar','S'),(100000100,100015655,'procedimento_credencial_renovar',NULL,'controlador.php?acao=procedimento_credencial_renovar','S'),(100000100,100015656,'protocolo_modelo_gerenciar',NULL,'controlador.php?acao=protocolo_modelo_gerenciar','S'),(100000100,100015657,'bloco_navegar',NULL,'controlador.php?acao=bloco_navegar','S'),(100000100,100015658,'bloco_priorizar',NULL,'controlador.php?acao=bloco_priorizar','S'),(100000100,100015659,'bloco_revisar',NULL,'controlador.php?acao=bloco_revisar','S'),(100000100,100015660,'bloco_atribuir',NULL,'controlador.php?acao=bloco_atribuir','S'),(100000100,100015661,'bloco_comentar',NULL,'controlador.php?acao=bloco_comentar','S'),(100000100,100015662,'rel_acesso_ext_serie_cadastrar',NULL,'controlador.php?acao=rel_acesso_ext_serie_cadastrar','S'),(100000100,100015663,'rel_acesso_ext_serie_consultar',NULL,'controlador.php?acao=rel_acesso_ext_serie_consultar','S'),(100000100,100015664,'rel_acesso_ext_serie_excluir',NULL,'controlador.php?acao=rel_acesso_ext_serie_excluir','S'),(100000100,100015665,'rel_acesso_ext_serie_listar',NULL,'controlador.php?acao=rel_acesso_ext_serie_listar','S'),(100000100,100015666,'rel_acesso_ext_serie_detalhar',NULL,'controlador.php?acao=rel_acesso_ext_serie_detalhar','S'),(100000100,100015667,'grupo_bloco_cadastrar',NULL,'controlador.php?acao=grupo_bloco_cadastrar','S'),(100000100,100015668,'grupo_bloco_alterar',NULL,'controlador.php?acao=grupo_bloco_alterar','S'),(100000100,100015669,'grupo_bloco_consultar',NULL,'controlador.php?acao=grupo_bloco_consultar','S'),(100000100,100015670,'grupo_bloco_excluir',NULL,'controlador.php?acao=grupo_bloco_excluir','S'),(100000100,100015671,'grupo_bloco_listar',NULL,'controlador.php?acao=grupo_bloco_listar','S'),(100000100,100015672,'grupo_bloco_desativar',NULL,'controlador.php?acao=grupo_bloco_desativar','S'),(100000100,100015673,'grupo_bloco_reativar',NULL,'controlador.php?acao=grupo_bloco_reativar','S'),(100000100,100015674,'bloco_alterar_grupo',NULL,'controlador.php?acao=bloco_alterar_grupo','S'),(100000100,100015675,'rel_usuario_grupo_bloco_cadastrar',NULL,'controlador.php?acao=rel_usuario_grupo_bloco_cadastrar','S'),(100000100,100015676,'rel_usuario_grupo_bloco_configurar',NULL,'controlador.php?acao=rel_usuario_grupo_bloco_configurar','S'),(100000100,100015677,'rel_usuario_grupo_bloco_excluir',NULL,'controlador.php?acao=rel_usuario_grupo_bloco_excluir','S'),(100000100,100015678,'rel_usuario_grupo_bloco_listar',NULL,'controlador.php?acao=rel_usuario_grupo_bloco_listar','S'),(100000100,100015679,'rel_usuario_grupo_bloco_selecionar',NULL,'controlador.php?acao=rel_usuario_grupo_bloco_selecionar','S'),(100000100,100015680,'serie_selecionar_acesso_externo',NULL,'controlador.php?acao=serie_selecionar_acesso_externo','S'),(100000100,100015681,'servico_gerar_chave_acesso',NULL,'controlador.php?acao=servico_gerar_chave_acesso','S'),(100000100,100015682,'instalacao_federacao_listar',NULL,'controlador.php?acao=instalacao_federacao_listar','S'),(100000100,100015683,'instalacao_federacao_consultar',NULL,'controlador.php?acao=instalacao_federacao_consultar','S'),(100000100,100015684,'instalacao_federacao_cadastrar',NULL,'controlador.php?acao=instalacao_federacao_cadastrar','S'),(100000100,100015685,'instalacao_federacao_alterar',NULL,'controlador.php?acao=instalacao_federacao_alterar','S'),(100000100,100015686,'instalacao_federacao_excluir',NULL,'controlador.php?acao=instalacao_federacao_excluir','S'),(100000100,100015687,'instalacao_federacao_desativar',NULL,'controlador.php?acao=instalacao_federacao_desativar','S'),(100000100,100015688,'instalacao_federacao_reativar',NULL,'controlador.php?acao=instalacao_federacao_reativar','S'),(100000100,100015689,'instalacao_federacao_liberar',NULL,'controlador.php?acao=instalacao_federacao_liberar','S'),(100000100,100015690,'instalacao_federacao_bloquear',NULL,'controlador.php?acao=instalacao_federacao_bloquear','S'),(100000100,100015691,'instalacao_federacao_selecionar',NULL,'controlador.php?acao=instalacao_federacao_selecionar','S'),(100000100,100015692,'instalacao_federacao_verificar_conexao',NULL,'controlador.php?acao=instalacao_federacao_verificar_conexao','S'),(100000100,100015693,'andamento_instalacao_cadastrar',NULL,'controlador.php?acao=andamento_instalacao_cadastrar','S'),(100000100,100015694,'andamento_instalacao_excluir',NULL,'controlador.php?acao=andamento_instalacao_excluir','S'),(100000100,100015695,'andamento_instalacao_listar',NULL,'controlador.php?acao=andamento_instalacao_listar','S'),(100000100,100015696,'andamento_instalacao_consultar',NULL,'controlador.php?acao=andamento_instalacao_consultar','S'),(100000100,100015697,'acesso_federacao_cadastrar',NULL,'controlador.php?acao=acesso_federacao_cadastrar','S'),(100000100,100015698,'acesso_federacao_alterar',NULL,'controlador.php?acao=acesso_federacao_alterar','S'),(100000100,100015699,'acesso_federacao_consultar',NULL,'controlador.php?acao=acesso_federacao_consultar','S'),(100000100,100015700,'acesso_federacao_listar',NULL,'controlador.php?acao=acesso_federacao_listar','S'),(100000100,100015701,'acesso_federacao_excluir',NULL,'controlador.php?acao=acesso_federacao_excluir','S'),(100000100,100015702,'acesso_federacao_gerenciar',NULL,'controlador.php?acao=acesso_federacao_gerenciar','S'),(100000100,100015703,'acesso_federacao_enviar',NULL,'controlador.php?acao=acesso_federacao_enviar','S'),(100000100,100015704,'acesso_federacao_cancelar',NULL,'controlador.php?acao=acesso_federacao_cancelar','S'),(100000100,100015705,'acesso_federacao_desativar',NULL,'controlador.php?acao=acesso_federacao_desativar','S'),(100000100,100015706,'acesso_federacao_reativar',NULL,'controlador.php?acao=acesso_federacao_reativar','S'),(100000100,100015707,'tarefa_instalacao_listar',NULL,'controlador.php?acao=tarefa_instalacao_listar','S'),(100000100,100015708,'tarefa_instalacao_consultar',NULL,'controlador.php?acao=tarefa_instalacao_consultar','S'),(100000100,100015709,'atributo_instalacao_cadastrar',NULL,'controlador.php?acao=atributo_instalacao_cadastrar','S'),(100000100,100015710,'atributo_instalacao_listar',NULL,'controlador.php?acao=atributo_instalacao_listar','S'),(100000100,100015711,'atributo_instalacao_consultar',NULL,'controlador.php?acao=atributo_instalacao_consultar','S'),(100000100,100015712,'atributo_instalacao_excluir',NULL,'controlador.php?acao=atributo_instalacao_excluir','S'),(100000100,100015713,'orgao_federacao_cadastrar',NULL,'controlador.php?acao=orgao_federacao_cadastrar','S'),(100000100,100015714,'orgao_federacao_alterar',NULL,'controlador.php?acao=orgao_federacao_alterar','S'),(100000100,100015715,'orgao_federacao_excluir',NULL,'controlador.php?acao=orgao_federacao_excluir','S'),(100000100,100015716,'orgao_federacao_consultar',NULL,'controlador.php?acao=orgao_federacao_consultar','S'),(100000100,100015717,'orgao_federacao_listar',NULL,'controlador.php?acao=orgao_federacao_listar','S'),(100000100,100015718,'orgao_federacao_selecionar',NULL,'controlador.php?acao=orgao_federacao_selecionar','S'),(100000100,100015719,'orgao_federacao_desativar',NULL,'controlador.php?acao=orgao_federacao_desativar','S'),(100000100,100015720,'orgao_federacao_reativar',NULL,'controlador.php?acao=orgao_federacao_reativar','S'),(100000100,100015721,'unidade_federacao_cadastrar',NULL,'controlador.php?acao=unidade_federacao_cadastrar','S'),(100000100,100015722,'unidade_federacao_alterar',NULL,'controlador.php?acao=unidade_federacao_alterar','S'),(100000100,100015723,'unidade_federacao_excluir',NULL,'controlador.php?acao=unidade_federacao_excluir','S'),(100000100,100015724,'unidade_federacao_consultar',NULL,'controlador.php?acao=unidade_federacao_consultar','S'),(100000100,100015725,'unidade_federacao_listar',NULL,'controlador.php?acao=unidade_federacao_listar','S'),(100000100,100015726,'unidade_federacao_selecionar',NULL,'controlador.php?acao=unidade_federacao_selecionar','S'),(100000100,100015727,'unidade_federacao_desativar',NULL,'controlador.php?acao=unidade_federacao_desativar','S'),(100000100,100015728,'unidade_federacao_reativar',NULL,'controlador.php?acao=unidade_federacao_reativar','S'),(100000100,100015729,'usuario_federacao_cadastrar',NULL,'controlador.php?acao=usuario_federacao_cadastrar','S'),(100000100,100015730,'usuario_federacao_alterar',NULL,'controlador.php?acao=usuario_federacao_alterar','S'),(100000100,100015731,'usuario_federacao_excluir',NULL,'controlador.php?acao=usuario_federacao_excluir','S'),(100000100,100015732,'usuario_federacao_consultar',NULL,'controlador.php?acao=usuario_federacao_consultar','S'),(100000100,100015733,'usuario_federacao_listar',NULL,'controlador.php?acao=usuario_federacao_listar','S'),(100000100,100015734,'usuario_federacao_selecionar',NULL,'controlador.php?acao=usuario_federacao_selecionar','S'),(100000100,100015735,'usuario_federacao_desativar',NULL,'controlador.php?acao=usuario_federacao_desativar','S'),(100000100,100015736,'usuario_federacao_reativar',NULL,'controlador.php?acao=usuario_federacao_reativar','S'),(100000100,100015737,'protocolo_federacao_cadastrar',NULL,'controlador.php?acao=protocolo_federacao_cadastrar','S'),(100000100,100015738,'protocolo_federacao_alterar',NULL,'controlador.php?acao=protocolo_federacao_alterar','S'),(100000100,100015739,'protocolo_federacao_excluir',NULL,'controlador.php?acao=protocolo_federacao_excluir','S'),(100000100,100015740,'protocolo_federacao_consultar',NULL,'controlador.php?acao=protocolo_federacao_consultar','S'),(100000100,100015741,'protocolo_federacao_listar',NULL,'controlador.php?acao=protocolo_federacao_listar','S'),(100000100,100015742,'protocolo_federacao_selecionar',NULL,'controlador.php?acao=protocolo_federacao_selecionar','S'),(100000100,100015743,'acao_federacao_cadastrar',NULL,'controlador.php?acao=acao_federacao_cadastrar','S'),(100000100,100015744,'acao_federacao_alterar',NULL,'controlador.php?acao=acao_federacao_alterar','S'),(100000100,100015745,'acao_federacao_excluir',NULL,'controlador.php?acao=acao_federacao_excluir','S'),(100000100,100015746,'acao_federacao_consultar',NULL,'controlador.php?acao=acao_federacao_consultar','S'),(100000100,100015747,'acao_federacao_listar',NULL,'controlador.php?acao=acao_federacao_listar','S'),(100000100,100015748,'acao_federacao_desativar',NULL,'controlador.php?acao=acao_federacao_desativar','S'),(100000100,100015749,'parametro_acao_federacao_cadastrar',NULL,'controlador.php?acao=parametro_acao_federacao_cadastrar','S'),(100000100,100015750,'parametro_acao_federacao_excluir',NULL,'controlador.php?acao=parametro_acao_federacao_excluir','S'),(100000100,100015751,'parametro_acao_federacao_consultar',NULL,'controlador.php?acao=parametro_acao_federacao_consultar','S'),(100000100,100015752,'parametro_acao_federacao_listar',NULL,'controlador.php?acao=parametro_acao_federacao_listar','S'),(100000100,100015753,'processo_consulta_federacao',NULL,'controlador.php?acao=processo_consulta_federacao','S'),(100000100,100015754,'documento_consulta_federacao',NULL,'controlador.php?acao=documento_consulta_federacao','S'),(100000100,100015755,'andamentos_consulta_federacao',NULL,'controlador.php?acao=andamentos_consulta_federacao','S'),(100000100,100015756,'grupo_federacao_cadastrar',NULL,'controlador.php?acao=grupo_federacao_cadastrar','S'),(100000100,100015757,'grupo_federacao_alterar',NULL,'controlador.php?acao=grupo_federacao_alterar','S'),(100000100,100015758,'grupo_federacao_consultar',NULL,'controlador.php?acao=grupo_federacao_consultar','S'),(100000100,100015759,'grupo_federacao_excluir',NULL,'controlador.php?acao=grupo_federacao_excluir','S'),(100000100,100015760,'grupo_federacao_listar',NULL,'controlador.php?acao=grupo_federacao_listar','S'),(100000100,100015761,'grupo_federacao_selecionar',NULL,'controlador.php?acao=grupo_federacao_selecionar','S'),(100000100,100015762,'grupo_federacao_institucional_cadastrar',NULL,'controlador.php?acao=grupo_federacao_institucional_cadastrar','S'),(100000100,100015763,'grupo_federacao_institucional_alterar',NULL,'controlador.php?acao=grupo_federacao_institucional_alterar','S'),(100000100,100015764,'grupo_federacao_institucional_consultar',NULL,'controlador.php?acao=grupo_federacao_institucional_consultar','S'),(100000100,100015765,'grupo_federacao_institucional_excluir',NULL,'controlador.php?acao=grupo_federacao_institucional_excluir','S'),(100000100,100015766,'grupo_federacao_institucional_listar',NULL,'controlador.php?acao=grupo_federacao_institucional_listar','S'),(100000100,100015767,'grupo_federacao_institucional_desativar',NULL,'controlador.php?acao=grupo_federacao_institucional_desativar','S'),(100000100,100015768,'grupo_federacao_institucional_reativar',NULL,'controlador.php?acao=grupo_federacao_institucional_reativar','S'),(100000100,100015769,'grupo_federacao_institucional_selecionar',NULL,'controlador.php?acao=grupo_federacao_institucional_selecionar','S'),(100000100,100015770,'rel_grupo_fed_orgao_fed_cadastrar',NULL,'controlador.php?acao=rel_grupo_fed_orgao_fed_cadastrar','S'),(100000100,100015771,'rel_grupo_fed_orgao_fed_excluir',NULL,'controlador.php?acao=rel_grupo_fed_orgao_fed_excluir','S'),(100000100,100015772,'rel_grupo_fed_orgao_fed_listar',NULL,'controlador.php?acao=rel_grupo_fed_orgao_fed_listar','S'),(100000100,100015773,'rel_grupo_fed_orgao_fed_selecionar',NULL,'controlador.php?acao=rel_grupo_fed_orgao_fed_selecionar','S'),(100000100,100015774,'sinalizacao_federacao_cadastrar',NULL,'controlador.php?acao=sinalizacao_federacao_cadastrar','S'),(100000100,100015775,'sinalizacao_federacao_alterar',NULL,'controlador.php?acao=sinalizacao_federacao_alterar','S'),(100000100,100015776,'sinalizacao_federacao_consultar',NULL,'controlador.php?acao=sinalizacao_federacao_consultar','S'),(100000100,100015777,'sinalizacao_federacao_excluir',NULL,'controlador.php?acao=sinalizacao_federacao_excluir','S'),(100000100,100015778,'sinalizacao_federacao_listar',NULL,'controlador.php?acao=sinalizacao_federacao_listar','S'),(100000100,100015779,'rel_sinalizacao_fed_unidade_cadastrar',NULL,'controlador.php?acao=rel_sinalizacao_fed_unidade_cadastrar','S'),(100000100,100015780,'rel_sinalizacao_fed_unidade_alterar',NULL,'controlador.php?acao=rel_sinalizacao_fed_unidade_alterar','S'),(100000100,100015781,'rel_sinalizacao_fed_unidade_consultar',NULL,'controlador.php?acao=rel_sinalizacao_fed_unidade_consultar','S'),(100000100,100015782,'rel_sinalizacao_fed_unidade_excluir',NULL,'controlador.php?acao=rel_sinalizacao_fed_unidade_excluir','S'),(100000100,100015783,'rel_sinalizacao_fed_unidade_listar',NULL,'controlador.php?acao=rel_sinalizacao_fed_unidade_listar','S'),(100000100,100015784,'replicacao_federacao_agendar',NULL,'controlador.php?acao=replicacao_federacao_agendar','S'),(100000100,100015785,'replicacao_federacao_replicar',NULL,'controlador.php?acao=replicacao_federacao_replicar','S'),(100000100,100015786,'replicacao_federacao_cadastrar',NULL,'controlador.php?acao=replicacao_federacao_cadastrar','S'),(100000100,100015787,'replicacao_federacao_alterar',NULL,'controlador.php?acao=replicacao_federacao_alterar','S'),(100000100,100015788,'replicacao_federacao_consultar',NULL,'controlador.php?acao=replicacao_federacao_consultar','S'),(100000100,100015789,'replicacao_federacao_excluir',NULL,'controlador.php?acao=replicacao_federacao_excluir','S'),(100000100,100015790,'replicacao_federacao_listar',NULL,'controlador.php?acao=replicacao_federacao_listar','S'),(100000100,100015791,'replicacao_federacao_desativar',NULL,'controlador.php?acao=replicacao_federacao_desativar','S'),(100000100,100015792,'replicacao_federacao_reativar',NULL,'controlador.php?acao=replicacao_federacao_reativar','S'),(100000100,100015793,'procedimento_acervo_sigilosos_global',NULL,'controlador.php?acao=procedimento_acervo_sigilosos_global','S'),(100000100,100015794,'pesquisa_cadastrar',NULL,'controlador.php?acao=pesquisa_cadastrar','S'),(100000100,100015795,'pesquisa_alterar',NULL,'controlador.php?acao=pesquisa_alterar','S'),(100000100,100015796,'pesquisa_consultar',NULL,'controlador.php?acao=pesquisa_consultar','S'),(100000100,100015797,'pesquisa_excluir',NULL,'controlador.php?acao=pesquisa_excluir','S'),(100000100,100015798,'pesquisa_listar',NULL,'controlador.php?acao=pesquisa_listar','S'),(100000100,100015799,'pesquisa_selecionar',NULL,'controlador.php?acao=pesquisa_selecionar','S'),(100000100,100015800,'campo_pesquisa_cadastrar',NULL,'controlador.php?acao=campo_pesquisa_cadastrar','S'),(100000100,100015801,'campo_pesquisa_alterar',NULL,'controlador.php?acao=campo_pesquisa_alterar','S'),(100000100,100015802,'campo_pesquisa_consultar',NULL,'controlador.php?acao=campo_pesquisa_consultar','S'),(100000100,100015803,'campo_pesquisa_excluir',NULL,'controlador.php?acao=campo_pesquisa_excluir','S'),(100000100,100015804,'campo_pesquisa_listar',NULL,'controlador.php?acao=campo_pesquisa_listar','S'),(100000100,100015805,'infra_trocar_unidade',NULL,'controlador.php?acao=infra_trocar_unidade','S'),(100000100,100015806,'aviso_mostrar',NULL,'controlador.php?acao=aviso_mostrar','S'); +/*!40000 ALTER TABLE `recurso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `recurso_vinculado` +-- + +DROP TABLE IF EXISTS `recurso_vinculado`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `recurso_vinculado` ( + `id_sistema` int(11) NOT NULL, + `id_recurso` int(11) NOT NULL, + `id_sistema_vinculado` int(11) NOT NULL, + `id_recurso_vinculado` int(11) NOT NULL, + `tipo_vinculo` int(11) NOT NULL, + PRIMARY KEY (`id_sistema`,`id_recurso`,`id_sistema_vinculado`,`id_recurso_vinculado`), + KEY `fk_recurso_vinculado_recurso_1` (`id_sistema_vinculado`,`id_recurso_vinculado`), + KEY `fk_recurso_vinculado_recurso_2` (`id_recurso`,`id_sistema`), + CONSTRAINT `fk_recurso_vinculado_recurso_1` FOREIGN KEY (`id_sistema_vinculado`, `id_recurso_vinculado`) REFERENCES `recurso` (`id_sistema`, `id_recurso`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_recurso_vinculado_recurso_2` FOREIGN KEY (`id_sistema`, `id_recurso`) REFERENCES `recurso` (`id_sistema`, `id_recurso`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `recurso_vinculado` +-- + +LOCK TABLES `recurso_vinculado` WRITE; +/*!40000 ALTER TABLE `recurso_vinculado` DISABLE KEYS */; +/*!40000 ALTER TABLE `recurso_vinculado` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `regra_auditoria` +-- + +DROP TABLE IF EXISTS `regra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `regra_auditoria` ( + `id_regra_auditoria` int(11) NOT NULL, + `descricao` varchar(250) NOT NULL, + `id_sistema` int(11) NOT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_regra_auditoria`), + KEY `fk_auditoria_sistema` (`id_sistema`), + CONSTRAINT `fk_auditoria_sistema` FOREIGN KEY (`id_sistema`) REFERENCES `sistema` (`id_sistema`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `regra_auditoria` +-- + +LOCK TABLES `regra_auditoria` WRITE; +/*!40000 ALTER TABLE `regra_auditoria` DISABLE KEYS */; +INSERT INTO `regra_auditoria` VALUES (1,'Geral',100000099,'S'),(2,'Geral',100000100,'S'),(3,'Acessos e Usuários Externos',100000100,'S'),(4,'Visualização de Processos',100000100,'S'),(5,'Visualização de Documentos',100000100,'S'); +/*!40000 ALTER TABLE `regra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_hierarquia_unidade` +-- + +DROP TABLE IF EXISTS `rel_hierarquia_unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_hierarquia_unidade` ( + `id_unidade` int(11) NOT NULL, + `id_hierarquia` int(11) NOT NULL, + `id_hierarquia_pai` int(11) DEFAULT NULL, + `id_unidade_pai` int(11) DEFAULT NULL, + `dta_inicio` datetime NOT NULL, + `dta_fim` datetime DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + PRIMARY KEY (`id_unidade`,`id_hierarquia`), + UNIQUE KEY `i04_rel_hierarquia_unidade` (`id_unidade`,`id_hierarquia`,`sin_ativo`), + KEY `fk_rel_hie_uni_hierarquia` (`id_hierarquia`), + KEY `fk_rel_hie_uni_rel_hie_uni` (`id_unidade_pai`,`id_hierarquia_pai`), + KEY `fk_rel_hie_uni_unidade` (`id_unidade`), + CONSTRAINT `fk_rel_hie_uni_hierarquia` FOREIGN KEY (`id_hierarquia`) REFERENCES `hierarquia` (`id_hierarquia`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_hie_uni_rel_hie_uni` FOREIGN KEY (`id_unidade_pai`, `id_hierarquia_pai`) REFERENCES `rel_hierarquia_unidade` (`id_unidade`, `id_hierarquia`), + CONSTRAINT `fk_rel_hie_uni_unidade` FOREIGN KEY (`id_unidade`) REFERENCES `unidade` (`id_unidade`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_hierarquia_unidade` +-- + +LOCK TABLES `rel_hierarquia_unidade` WRITE; +/*!40000 ALTER TABLE `rel_hierarquia_unidade` DISABLE KEYS */; +INSERT INTO `rel_hierarquia_unidade` VALUES (110000001,100000018,NULL,NULL,'2013-11-06 00:00:00',NULL,'S'),(110000002,100000018,100000018,110000001,'2014-01-01 00:00:00',NULL,'S'),(110000003,100000018,100000018,110000001,'2014-01-01 00:00:00',NULL,'S'),(110000004,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000005,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000006,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000007,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000008,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000009,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000010,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000011,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000012,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000013,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000014,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000015,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000016,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000017,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000018,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000019,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000020,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000021,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000022,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000023,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000024,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000025,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000026,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000027,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000028,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000029,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000030,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000031,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000032,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000033,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000034,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000035,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000036,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000037,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000038,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000039,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000040,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000041,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000042,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'),(110000043,100000018,NULL,NULL,'2022-06-10 00:00:00',NULL,'S'); +/*!40000 ALTER TABLE `rel_hierarquia_unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_orgao_autenticacao` +-- + +DROP TABLE IF EXISTS `rel_orgao_autenticacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_orgao_autenticacao` ( + `id_orgao` int(11) NOT NULL, + `id_servidor_autenticacao` int(11) NOT NULL, + `sequencia` int(11) NOT NULL, + PRIMARY KEY (`id_orgao`,`id_servidor_autenticacao`), + KEY `fk_rel_orgao_aut_autenticacao` (`id_servidor_autenticacao`), + KEY `fk_rel_orgao_aut_orgao` (`id_orgao`), + CONSTRAINT `fk_rel_orgao_aut_autenticacao` FOREIGN KEY (`id_servidor_autenticacao`) REFERENCES `servidor_autenticacao` (`id_servidor_autenticacao`), + CONSTRAINT `fk_rel_orgao_aut_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_orgao_autenticacao` +-- + +LOCK TABLES `rel_orgao_autenticacao` WRITE; +/*!40000 ALTER TABLE `rel_orgao_autenticacao` DISABLE KEYS */; +INSERT INTO `rel_orgao_autenticacao` VALUES (0,1,0); +/*!40000 ALTER TABLE `rel_orgao_autenticacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_perfil_item_menu` +-- + +DROP TABLE IF EXISTS `rel_perfil_item_menu`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_perfil_item_menu` ( + `id_perfil` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `id_menu` int(11) NOT NULL, + `id_item_menu` int(11) NOT NULL, + `id_recurso` int(11) NOT NULL, + PRIMARY KEY (`id_menu`,`id_item_menu`,`id_perfil`,`id_sistema`,`id_recurso`), + KEY `i01_rel_perfil_item_menu` (`id_perfil`,`id_sistema`), + KEY `fk_rel_perfil_item_menu_it_men` (`id_item_menu`,`id_menu`), + KEY `fk_rel_per_ite_men_rel_per_rec` (`id_perfil`,`id_sistema`,`id_recurso`), + CONSTRAINT `fk_rel_per_ite_men_rel_per_rec` FOREIGN KEY (`id_perfil`, `id_sistema`, `id_recurso`) REFERENCES `rel_perfil_recurso` (`id_perfil`, `id_sistema`, `id_recurso`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_perfil_item_menu_it_men` FOREIGN KEY (`id_menu`, `id_item_menu`) REFERENCES `item_menu` (`id_menu`, `id_item_menu`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_perfil_item_menu` +-- + +LOCK TABLES `rel_perfil_item_menu` WRITE; +/*!40000 ALTER TABLE `rel_perfil_item_menu` DISABLE KEYS */; +INSERT INTO `rel_perfil_item_menu` VALUES (100000931,100000099,100000078,100005410,100014405),(100000931,100000099,100000078,100005411,100014369),(100000931,100000099,100000078,100005412,100014312),(100000931,100000099,100000078,100005413,100014359),(100000931,100000099,100000078,100005415,100014370),(100000931,100000099,100000078,100005416,100014375),(100000931,100000099,100000078,100005417,100014313),(100000931,100000099,100000078,100005418,100014301),(100000931,100000099,100000078,100005419,100014327),(100000931,100000099,100000078,100005420,100014344),(100000931,100000099,100000078,100005421,100014353),(100000931,100000099,100000078,100005422,100014360),(100000931,100000099,100000078,100005423,100014395),(100000931,100000099,100000078,100005424,100014365),(100000931,100000099,100000078,100005427,100014379),(100000931,100000099,100000078,100005428,100014302),(100000931,100000099,100000078,100005429,100014393),(100000931,100000099,100000078,100005430,100014328),(100000931,100000099,100000078,100005431,100014345),(100000931,100000099,100000078,100005432,100014354),(100000931,100000099,100000078,100005435,100014333),(100000931,100000099,100000078,100005436,100014418),(100000931,100000099,100000078,100005437,100014423),(100000931,100000099,100000078,100005438,100014394),(100000931,100000099,100000078,100005439,100014407),(100000931,100000099,100000078,100005440,100014408),(100000931,100000099,100000078,100005441,100014409),(100000931,100000099,100000078,100005442,100014334),(100000931,100000099,100000078,100005443,100014340),(100000931,100000099,100000078,100005444,100014381),(100000931,100000099,100000078,100005446,100014367),(100000931,100000099,100000078,100005449,100014351),(100000931,100000099,100000078,100005450,100014307),(100000931,100000099,100000078,100005451,100014380),(100000931,100000099,100000078,100005452,100014325),(100000931,100000099,100000078,100005453,100014308),(100000931,100000099,100000078,100005454,100014396),(100000931,100000099,100000078,100005606,100015187),(100000931,100000099,100000078,100005607,100015188),(100000931,100000099,100000078,100005609,100015193),(100000931,100000099,100000078,100005610,100015198),(100000931,100000099,100000078,100005618,100015265),(100000931,100000099,100000078,100005637,100015368),(100000931,100000099,100000078,100005650,100015451),(100000931,100000099,100000078,100005651,100015452),(100000931,100000099,100000078,100005672,100015554),(100000931,100000099,100000078,100005673,100015555),(100000931,100000099,100000078,100005674,100015560),(100000931,100000099,100000078,100005675,100015563),(100000931,100000099,100000078,100005676,100015568),(100000932,100000099,100000078,100005444,100014381),(100000933,100000099,100000078,100005411,100014369),(100000933,100000099,100000078,100005413,100014359),(100000933,100000099,100000078,100005415,100014370),(100000933,100000099,100000078,100005416,100014375),(100000933,100000099,100000078,100005417,100014313),(100000933,100000099,100000078,100005421,100014353),(100000933,100000099,100000078,100005422,100014360),(100000933,100000099,100000078,100005423,100014395),(100000933,100000099,100000078,100005424,100014365),(100000933,100000099,100000078,100005427,100014379),(100000933,100000099,100000078,100005428,100014302),(100000933,100000099,100000078,100005430,100014328),(100000933,100000099,100000078,100005431,100014345),(100000933,100000099,100000078,100005432,100014354),(100000933,100000099,100000078,100005441,100014409),(100000933,100000099,100000078,100005442,100014334),(100000933,100000099,100000078,100005444,100014381),(100000933,100000099,100000078,100005446,100014367),(100000933,100000099,100000078,100005449,100014351),(100000933,100000099,100000078,100005451,100014380),(100000933,100000099,100000078,100005452,100014325),(100000933,100000099,100000078,100005454,100014396),(100000933,100000099,100000078,100005456,100014412),(100000933,100000099,100000078,100005611,100015203),(100000933,100000099,100000078,100005671,100015552),(100000935,100000099,100000078,100005420,100014344),(100000935,100000099,100000078,100005431,100014345),(100000935,100000099,100000078,100005440,100014408),(100000935,100000099,100000078,100005443,100014340),(100000935,100000099,100000078,100005449,100014351),(100000936,100000099,100000078,100005427,100014379),(100000936,100000099,100000078,100005444,100014381),(100000936,100000099,100000078,100005451,100014380),(100000936,100000099,100000078,100005456,100014412),(100000937,100000099,100000078,100005419,100014327),(100000937,100000099,100000078,100005420,100014344),(100000937,100000099,100000078,100005430,100014328),(100000937,100000099,100000078,100005431,100014345),(100000937,100000099,100000078,100005439,100014407),(100000937,100000099,100000078,100005440,100014408),(100000938,100000100,100000079,100005462,100014783),(100000938,100000100,100000079,100005472,100014815),(100000938,100000100,100000079,100005476,100014749),(100000938,100000100,100000079,100005477,100014820),(100000938,100000100,100000079,100005478,100014898),(100000938,100000100,100000079,100005484,100014914),(100000938,100000100,100000079,100005485,100014812),(100000938,100000100,100000079,100005488,100014751),(100000938,100000100,100000079,100005489,100014862),(100000938,100000100,100000079,100005491,100014947),(100000938,100000100,100000079,100005495,100014934),(100000938,100000100,100000079,100005503,100014539),(100000938,100000100,100000079,100005574,100014955),(100000938,100000100,100000079,100005600,100015159),(100000938,100000100,100000079,100005602,100015166),(100000938,100000100,100000079,100005632,100015352),(100000938,100000100,100000079,100005643,100015405),(100000938,100000100,100000079,100005649,100015450),(100000938,100000100,100000079,100005661,100014511),(100000938,100000100,100000079,100005668,100015502),(100000938,100000100,100000079,100005678,100015592),(100000938,100000100,100000079,100005683,100015641),(100000938,100000100,100000079,100005689,100015760),(100000939,100000100,100000079,100005463,100015529),(100000939,100000100,100000079,100005493,100014799),(100000939,100000100,100000079,100005501,100014857),(100000939,100000100,100000079,100005502,100014489),(100000939,100000100,100000079,100005507,100014492),(100000939,100000100,100000079,100005509,100014646),(100000939,100000100,100000079,100005510,100014515),(100000939,100000100,100000079,100005513,100014495),(100000939,100000100,100000079,100005514,100014511),(100000939,100000100,100000079,100005516,100014649),(100000939,100000100,100000079,100005521,100014498),(100000939,100000100,100000079,100005522,100014525),(100000939,100000100,100000079,100005525,100014519),(100000939,100000100,100000079,100005527,100014653),(100000939,100000100,100000079,100005528,100014508),(100000939,100000100,100000079,100005530,100014529),(100000939,100000100,100000079,100005533,100014448),(100000939,100000100,100000079,100005534,100014801),(100000939,100000100,100000079,100005535,100014577),(100000939,100000100,100000079,100005538,100014451),(100000939,100000100,100000079,100005545,100014455),(100000939,100000100,100000079,100005548,100014472),(100000939,100000100,100000079,100005550,100014795),(100000939,100000100,100000079,100005551,100014441),(100000939,100000100,100000079,100005552,100014768),(100000939,100000100,100000079,100005554,100014475),(100000939,100000100,100000079,100005556,100014444),(100000939,100000100,100000079,100005557,100014772),(100000939,100000100,100000079,100005559,100014479),(100000939,100000100,100000079,100005560,100014480),(100000939,100000100,100000079,100005562,100014481),(100000939,100000100,100000079,100005563,100014484),(100000939,100000100,100000079,100005565,100014488),(100000939,100000100,100000079,100005571,100015036),(100000939,100000100,100000079,100005572,100015039),(100000939,100000100,100000079,100005573,100015042),(100000939,100000100,100000079,100005577,100015043),(100000939,100000100,100000079,100005578,100015047),(100000939,100000100,100000079,100005579,100015050),(100000939,100000100,100000079,100005580,100015051),(100000939,100000100,100000079,100005581,100015056),(100000939,100000100,100000079,100005582,100015087),(100000939,100000100,100000079,100005584,100015089),(100000939,100000100,100000079,100005585,100015092),(100000939,100000100,100000079,100005586,100015095),(100000939,100000100,100000079,100005588,100015096),(100000939,100000100,100000079,100005589,100015100),(100000939,100000100,100000079,100005591,100015102),(100000939,100000100,100000079,100005592,100015106),(100000939,100000100,100000079,100005593,100015109),(100000939,100000100,100000079,100005594,100015113),(100000939,100000100,100000079,100005597,100015122),(100000939,100000100,100000079,100005598,100015125),(100000939,100000100,100000079,100005599,100015137),(100000939,100000100,100000079,100005605,100015172),(100000939,100000100,100000079,100005619,100015269),(100000939,100000100,100000079,100005623,100015289),(100000939,100000100,100000079,100005624,100015290),(100000939,100000100,100000079,100005625,100015291),(100000939,100000100,100000079,100005626,100015295),(100000939,100000100,100000079,100005627,100015302),(100000939,100000100,100000079,100005629,100015345),(100000939,100000100,100000079,100005630,100015348),(100000939,100000100,100000079,100005631,100015351),(100000939,100000100,100000079,100005634,100015355),(100000939,100000100,100000079,100005635,100015359),(100000939,100000100,100000079,100005636,100015362),(100000939,100000100,100000079,100005640,100015380),(100000939,100000100,100000079,100005641,100015382),(100000939,100000100,100000079,100005642,100015386),(100000939,100000100,100000079,100005645,100015409),(100000939,100000100,100000079,100005646,100015411),(100000939,100000100,100000079,100005647,100015416),(100000939,100000100,100000079,100005648,100015426),(100000939,100000100,100000079,100005656,100015472),(100000939,100000100,100000079,100005657,100015474),(100000939,100000100,100000079,100005658,100015478),(100000939,100000100,100000079,100005662,100014539),(100000939,100000100,100000079,100005663,100015486),(100000939,100000100,100000079,100005664,100015489),(100000939,100000100,100000079,100005665,100015491),(100000939,100000100,100000079,100005666,100015493),(100000939,100000100,100000079,100005670,100015549),(100000939,100000100,100000079,100005680,100015625),(100000939,100000100,100000079,100005681,100015627),(100000939,100000100,100000079,100005682,100015631),(100000939,100000100,100000079,100005685,100015649),(100000939,100000100,100000079,100005686,100015650),(100000939,100000100,100000079,100005687,100015654),(100000939,100000100,100000079,100005688,100015682),(100000939,100000100,100000079,100005691,100015762),(100000939,100000100,100000079,100005692,100015766),(100000939,100000100,100000079,100005693,100015768),(100000939,100000100,100000079,100005695,100015793),(100000940,100000100,100000079,100005465,100014561),(100000940,100000100,100000079,100005480,100014746),(100000940,100000100,100000079,100005481,100014755),(100000940,100000100,100000079,100005489,100014862),(100000940,100000100,100000079,100005505,100014762),(100000940,100000100,100000079,100005522,100014525),(100000940,100000100,100000079,100005525,100014519),(100000940,100000100,100000079,100005530,100014529),(100000940,100000100,100000079,100005535,100014577),(100000940,100000100,100000079,100005561,100014967),(100000940,100000100,100000079,100005601,100015160),(100000940,100000100,100000079,100005604,100015169),(100000940,100000100,100000079,100005612,100015235),(100000940,100000100,100000079,100005613,100015239),(100000940,100000100,100000079,100005614,100015244),(100000940,100000100,100000079,100005638,100015376),(100000940,100000100,100000079,100005653,100015456),(100000940,100000100,100000079,100005654,100015459),(100000940,100000100,100000079,100005694,100015790),(100000941,100000100,100000079,100005467,100014925),(100000941,100000100,100000079,100005474,100014926),(100000941,100000100,100000079,100005487,100014623),(100000941,100000100,100000079,100005492,100014626),(100000941,100000100,100000079,100005506,100014594),(100000941,100000100,100000079,100005511,100014597),(100000941,100000100,100000079,100005512,100014610),(100000941,100000100,100000079,100005519,100014601),(100000941,100000100,100000079,100005520,100014613),(100000941,100000100,100000079,100005529,100014617),(100000941,100000100,100000079,100005546,100014602),(100000941,100000100,100000079,100005553,100014605),(100000941,100000100,100000079,100005558,100014609),(100000941,100000100,100000079,100005669,100015542),(100000944,100000100,100000079,100005499,100014907),(100000944,100000100,100000079,100005620,100015273),(100000945,100000100,100000079,100005599,100015137),(100000946,100000099,100000078,100005427,100014379),(100000946,100000099,100000078,100005444,100014381),(100000946,100000099,100000078,100005451,100014380),(100000946,100000099,100000078,100005456,100014412),(100000947,100000100,100000079,100005462,100014783),(100000947,100000100,100000079,100005472,100014815),(100000947,100000100,100000079,100005476,100014749),(100000947,100000100,100000079,100005477,100014820),(100000947,100000100,100000079,100005478,100014898),(100000947,100000100,100000079,100005484,100014914),(100000947,100000100,100000079,100005485,100014812),(100000947,100000100,100000079,100005488,100014751),(100000947,100000100,100000079,100005489,100014862),(100000947,100000100,100000079,100005491,100014947),(100000947,100000100,100000079,100005495,100014934),(100000947,100000100,100000079,100005574,100014955),(100000947,100000100,100000079,100005600,100015159),(100000947,100000100,100000079,100005602,100015166),(100000947,100000100,100000079,100005632,100015352),(100000947,100000100,100000079,100005643,100015405),(100000947,100000100,100000079,100005649,100015450),(100000947,100000100,100000079,100005661,100014511),(100000949,100000100,100000079,100005652,100015455); +/*!40000 ALTER TABLE `rel_perfil_item_menu` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_perfil_recurso` +-- + +DROP TABLE IF EXISTS `rel_perfil_recurso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_perfil_recurso` ( + `id_perfil` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `id_recurso` int(11) NOT NULL, + PRIMARY KEY (`id_perfil`,`id_sistema`,`id_recurso`), + KEY `fk_rel_perfil_recurso_perfil` (`id_perfil`,`id_sistema`), + KEY `fk_rel_perfil_recurso_recurso` (`id_sistema`,`id_recurso`), + CONSTRAINT `fk_rel_perfil_recurso_perfil` FOREIGN KEY (`id_perfil`, `id_sistema`) REFERENCES `perfil` (`id_perfil`, `id_sistema`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_rel_perfil_recurso_recurso` FOREIGN KEY (`id_sistema`, `id_recurso`) REFERENCES `recurso` (`id_sistema`, `id_recurso`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_perfil_recurso` +-- + +LOCK TABLES `rel_perfil_recurso` WRITE; +/*!40000 ALTER TABLE `rel_perfil_recurso` DISABLE KEYS */; +INSERT INTO `rel_perfil_recurso` VALUES (100000931,100000099,100014301),(100000931,100000099,100014302),(100000931,100000099,100014303),(100000931,100000099,100014304),(100000931,100000099,100014305),(100000931,100000099,100014306),(100000931,100000099,100014307),(100000931,100000099,100014308),(100000931,100000099,100014309),(100000931,100000099,100014310),(100000931,100000099,100014311),(100000931,100000099,100014312),(100000931,100000099,100014313),(100000931,100000099,100014314),(100000931,100000099,100014315),(100000931,100000099,100014316),(100000931,100000099,100014317),(100000931,100000099,100014324),(100000931,100000099,100014325),(100000931,100000099,100014326),(100000931,100000099,100014327),(100000931,100000099,100014328),(100000931,100000099,100014329),(100000931,100000099,100014330),(100000931,100000099,100014331),(100000931,100000099,100014332),(100000931,100000099,100014333),(100000931,100000099,100014334),(100000931,100000099,100014335),(100000931,100000099,100014336),(100000931,100000099,100014337),(100000931,100000099,100014338),(100000931,100000099,100014339),(100000931,100000099,100014340),(100000931,100000099,100014341),(100000931,100000099,100014342),(100000931,100000099,100014343),(100000931,100000099,100014344),(100000931,100000099,100014345),(100000931,100000099,100014346),(100000931,100000099,100014347),(100000931,100000099,100014348),(100000931,100000099,100014349),(100000931,100000099,100014350),(100000931,100000099,100014351),(100000931,100000099,100014352),(100000931,100000099,100014353),(100000931,100000099,100014354),(100000931,100000099,100014355),(100000931,100000099,100014356),(100000931,100000099,100014357),(100000931,100000099,100014358),(100000931,100000099,100014359),(100000931,100000099,100014360),(100000931,100000099,100014361),(100000931,100000099,100014362),(100000931,100000099,100014363),(100000931,100000099,100014364),(100000931,100000099,100014365),(100000931,100000099,100014366),(100000931,100000099,100014367),(100000931,100000099,100014368),(100000931,100000099,100014369),(100000931,100000099,100014370),(100000931,100000099,100014371),(100000931,100000099,100014372),(100000931,100000099,100014373),(100000931,100000099,100014374),(100000931,100000099,100014375),(100000931,100000099,100014376),(100000931,100000099,100014377),(100000931,100000099,100014378),(100000931,100000099,100014379),(100000931,100000099,100014380),(100000931,100000099,100014381),(100000931,100000099,100014382),(100000931,100000099,100014383),(100000931,100000099,100014384),(100000931,100000099,100014385),(100000931,100000099,100014386),(100000931,100000099,100014387),(100000931,100000099,100014388),(100000931,100000099,100014389),(100000931,100000099,100014390),(100000931,100000099,100014391),(100000931,100000099,100014392),(100000931,100000099,100014393),(100000931,100000099,100014394),(100000931,100000099,100014395),(100000931,100000099,100014396),(100000931,100000099,100014405),(100000931,100000099,100014406),(100000931,100000099,100014407),(100000931,100000099,100014408),(100000931,100000099,100014409),(100000931,100000099,100014410),(100000931,100000099,100014414),(100000931,100000099,100014415),(100000931,100000099,100014416),(100000931,100000099,100014417),(100000931,100000099,100014418),(100000931,100000099,100014419),(100000931,100000099,100014420),(100000931,100000099,100014421),(100000931,100000099,100014422),(100000931,100000099,100014423),(100000931,100000099,100014424),(100000931,100000099,100015187),(100000931,100000099,100015188),(100000931,100000099,100015190),(100000931,100000099,100015191),(100000931,100000099,100015192),(100000931,100000099,100015193),(100000931,100000099,100015194),(100000931,100000099,100015195),(100000931,100000099,100015196),(100000931,100000099,100015197),(100000931,100000099,100015198),(100000931,100000099,100015259),(100000931,100000099,100015265),(100000931,100000099,100015363),(100000931,100000099,100015364),(100000931,100000099,100015365),(100000931,100000099,100015366),(100000931,100000099,100015368),(100000931,100000099,100015369),(100000931,100000099,100015370),(100000931,100000099,100015451),(100000931,100000099,100015452),(100000931,100000099,100015554),(100000931,100000099,100015555),(100000931,100000099,100015556),(100000931,100000099,100015557),(100000931,100000099,100015560),(100000931,100000099,100015562),(100000931,100000099,100015563),(100000931,100000099,100015565),(100000931,100000099,100015566),(100000931,100000099,100015567),(100000931,100000099,100015568),(100000931,100000099,100015570),(100000931,100000099,100015571),(100000931,100000099,100015572),(100000931,100000099,100015580),(100000931,100000099,100015581),(100000931,100000099,100015582),(100000931,100000099,100015583),(100000932,100000099,100014302),(100000932,100000099,100014303),(100000932,100000099,100014308),(100000932,100000099,100014313),(100000932,100000099,100014325),(100000932,100000099,100014340),(100000932,100000099,100014351),(100000932,100000099,100014355),(100000932,100000099,100014359),(100000932,100000099,100014360),(100000932,100000099,100014365),(100000932,100000099,100014367),(100000932,100000099,100014370),(100000932,100000099,100014375),(100000932,100000099,100014379),(100000932,100000099,100014381),(100000932,100000099,100014382),(100000932,100000099,100014386),(100000932,100000099,100014387),(100000932,100000099,100014388),(100000932,100000099,100015178),(100000932,100000099,100015179),(100000932,100000099,100015184),(100000932,100000099,100015186),(100000932,100000099,100015371),(100000932,100000099,100015558),(100000932,100000099,100015559),(100000932,100000099,100015560),(100000932,100000099,100015561),(100000932,100000099,100015563),(100000932,100000099,100015564),(100000932,100000099,100015568),(100000932,100000099,100015569),(100000932,100000099,100015573),(100000932,100000099,100015574),(100000932,100000099,100015575),(100000932,100000099,100015576),(100000932,100000099,100015577),(100000932,100000099,100015578),(100000932,100000099,100015579),(100000933,100000099,100014302),(100000933,100000099,100014303),(100000933,100000099,100014304),(100000933,100000099,100014308),(100000933,100000099,100014309),(100000933,100000099,100014313),(100000933,100000099,100014314),(100000933,100000099,100014324),(100000933,100000099,100014325),(100000933,100000099,100014326),(100000933,100000099,100014328),(100000933,100000099,100014329),(100000933,100000099,100014334),(100000933,100000099,100014335),(100000933,100000099,100014340),(100000933,100000099,100014345),(100000933,100000099,100014346),(100000933,100000099,100014350),(100000933,100000099,100014351),(100000933,100000099,100014352),(100000933,100000099,100014353),(100000933,100000099,100014354),(100000933,100000099,100014355),(100000933,100000099,100014356),(100000933,100000099,100014357),(100000933,100000099,100014358),(100000933,100000099,100014359),(100000933,100000099,100014360),(100000933,100000099,100014361),(100000933,100000099,100014362),(100000933,100000099,100014363),(100000933,100000099,100014364),(100000933,100000099,100014365),(100000933,100000099,100014366),(100000933,100000099,100014367),(100000933,100000099,100014368),(100000933,100000099,100014369),(100000933,100000099,100014370),(100000933,100000099,100014371),(100000933,100000099,100014372),(100000933,100000099,100014373),(100000933,100000099,100014374),(100000933,100000099,100014375),(100000933,100000099,100014376),(100000933,100000099,100014377),(100000933,100000099,100014378),(100000933,100000099,100014379),(100000933,100000099,100014380),(100000933,100000099,100014381),(100000933,100000099,100014382),(100000933,100000099,100014383),(100000933,100000099,100014384),(100000933,100000099,100014385),(100000933,100000099,100014386),(100000933,100000099,100014387),(100000933,100000099,100014388),(100000933,100000099,100014389),(100000933,100000099,100014390),(100000933,100000099,100014391),(100000933,100000099,100014392),(100000933,100000099,100014395),(100000933,100000099,100014396),(100000933,100000099,100014409),(100000933,100000099,100014412),(100000933,100000099,100015176),(100000933,100000099,100015177),(100000933,100000099,100015180),(100000933,100000099,100015181),(100000933,100000099,100015182),(100000933,100000099,100015183),(100000933,100000099,100015185),(100000933,100000099,100015188),(100000933,100000099,100015199),(100000933,100000099,100015200),(100000933,100000099,100015201),(100000933,100000099,100015202),(100000933,100000099,100015203),(100000933,100000099,100015204),(100000933,100000099,100015205),(100000933,100000099,100015206),(100000933,100000099,100015207),(100000933,100000099,100015208),(100000933,100000099,100015209),(100000933,100000099,100015210),(100000933,100000099,100015551),(100000933,100000099,100015552),(100000933,100000099,100015582),(100000933,100000099,100015583),(100000935,100000099,100014334),(100000935,100000099,100014335),(100000935,100000099,100014339),(100000935,100000099,100014340),(100000935,100000099,100014341),(100000935,100000099,100014342),(100000935,100000099,100014343),(100000935,100000099,100014344),(100000935,100000099,100014345),(100000935,100000099,100014346),(100000935,100000099,100014347),(100000935,100000099,100014348),(100000935,100000099,100014349),(100000935,100000099,100014350),(100000935,100000099,100014351),(100000935,100000099,100014352),(100000935,100000099,100014408),(100000935,100000099,100014410),(100000936,100000099,100014302),(100000936,100000099,100014303),(100000936,100000099,100014308),(100000936,100000099,100014313),(100000936,100000099,100014314),(100000936,100000099,100014325),(100000936,100000099,100014334),(100000936,100000099,100014335),(100000936,100000099,100014340),(100000936,100000099,100014355),(100000936,100000099,100014359),(100000936,100000099,100014360),(100000936,100000099,100014365),(100000936,100000099,100014370),(100000936,100000099,100014375),(100000936,100000099,100014379),(100000936,100000099,100014380),(100000936,100000099,100014381),(100000936,100000099,100014382),(100000936,100000099,100014383),(100000936,100000099,100014384),(100000936,100000099,100014385),(100000936,100000099,100014386),(100000936,100000099,100014387),(100000936,100000099,100014388),(100000936,100000099,100014412),(100000936,100000099,100015558),(100000937,100000099,100014327),(100000937,100000099,100014328),(100000937,100000099,100014330),(100000937,100000099,100014331),(100000937,100000099,100014332),(100000937,100000099,100014344),(100000937,100000099,100014345),(100000937,100000099,100014347),(100000937,100000099,100014348),(100000937,100000099,100014349),(100000937,100000099,100014407),(100000937,100000099,100014408),(100000938,100000100,100014435),(100000938,100000100,100014436),(100000938,100000100,100014437),(100000938,100000100,100014438),(100000938,100000100,100014439),(100000938,100000100,100014440),(100000938,100000100,100014443),(100000938,100000100,100014444),(100000938,100000100,100014445),(100000938,100000100,100014450),(100000938,100000100,100014451),(100000938,100000100,100014452),(100000938,100000100,100014466),(100000938,100000100,100014467),(100000938,100000100,100014468),(100000938,100000100,100014474),(100000938,100000100,100014475),(100000938,100000100,100014476),(100000938,100000100,100014483),(100000938,100000100,100014484),(100000938,100000100,100014485),(100000938,100000100,100014491),(100000938,100000100,100014492),(100000938,100000100,100014493),(100000938,100000100,100014497),(100000938,100000100,100014498),(100000938,100000100,100014499),(100000938,100000100,100014508),(100000938,100000100,100014509),(100000938,100000100,100014510),(100000938,100000100,100014511),(100000938,100000100,100014512),(100000938,100000100,100014513),(100000938,100000100,100014514),(100000938,100000100,100014515),(100000938,100000100,100014518),(100000938,100000100,100014519),(100000938,100000100,100014520),(100000938,100000100,100014524),(100000938,100000100,100014525),(100000938,100000100,100014526),(100000938,100000100,100014530),(100000938,100000100,100014531),(100000938,100000100,100014532),(100000938,100000100,100014533),(100000938,100000100,100014534),(100000938,100000100,100014535),(100000938,100000100,100014536),(100000938,100000100,100014537),(100000938,100000100,100014538),(100000938,100000100,100014539),(100000938,100000100,100014540),(100000938,100000100,100014541),(100000938,100000100,100014544),(100000938,100000100,100014545),(100000938,100000100,100014546),(100000938,100000100,100014550),(100000938,100000100,100014551),(100000938,100000100,100014552),(100000938,100000100,100014553),(100000938,100000100,100014554),(100000938,100000100,100014555),(100000938,100000100,100014556),(100000938,100000100,100014557),(100000938,100000100,100014559),(100000938,100000100,100014563),(100000938,100000100,100014566),(100000938,100000100,100014567),(100000938,100000100,100014568),(100000938,100000100,100014569),(100000938,100000100,100014570),(100000938,100000100,100014571),(100000938,100000100,100014572),(100000938,100000100,100014573),(100000938,100000100,100014574),(100000938,100000100,100014575),(100000938,100000100,100014580),(100000938,100000100,100014581),(100000938,100000100,100014582),(100000938,100000100,100014588),(100000938,100000100,100014589),(100000938,100000100,100014590),(100000938,100000100,100014596),(100000938,100000100,100014597),(100000938,100000100,100014598),(100000938,100000100,100014604),(100000938,100000100,100014605),(100000938,100000100,100014606),(100000938,100000100,100014612),(100000938,100000100,100014613),(100000938,100000100,100014614),(100000938,100000100,100014618),(100000938,100000100,100014619),(100000938,100000100,100014620),(100000938,100000100,100014621),(100000938,100000100,100014622),(100000938,100000100,100014625),(100000938,100000100,100014626),(100000938,100000100,100014627),(100000938,100000100,100014629),(100000938,100000100,100014630),(100000938,100000100,100014631),(100000938,100000100,100014632),(100000938,100000100,100014633),(100000938,100000100,100014634),(100000938,100000100,100014635),(100000938,100000100,100014636),(100000938,100000100,100014637),(100000938,100000100,100014638),(100000938,100000100,100014639),(100000938,100000100,100014640),(100000938,100000100,100014641),(100000938,100000100,100014642),(100000938,100000100,100014643),(100000938,100000100,100014644),(100000938,100000100,100014648),(100000938,100000100,100014649),(100000938,100000100,100014650),(100000938,100000100,100014657),(100000938,100000100,100014658),(100000938,100000100,100014659),(100000938,100000100,100014660),(100000938,100000100,100014669),(100000938,100000100,100014670),(100000938,100000100,100014671),(100000938,100000100,100014672),(100000938,100000100,100014673),(100000938,100000100,100014674),(100000938,100000100,100014675),(100000938,100000100,100014676),(100000938,100000100,100014677),(100000938,100000100,100014681),(100000938,100000100,100014682),(100000938,100000100,100014683),(100000938,100000100,100014684),(100000938,100000100,100014688),(100000938,100000100,100014693),(100000938,100000100,100014696),(100000938,100000100,100014698),(100000938,100000100,100014699),(100000938,100000100,100014700),(100000938,100000100,100014701),(100000938,100000100,100014702),(100000938,100000100,100014703),(100000938,100000100,100014704),(100000938,100000100,100014705),(100000938,100000100,100014706),(100000938,100000100,100014707),(100000938,100000100,100014708),(100000938,100000100,100014709),(100000938,100000100,100014710),(100000938,100000100,100014711),(100000938,100000100,100014712),(100000938,100000100,100014713),(100000938,100000100,100014719),(100000938,100000100,100014722),(100000938,100000100,100014725),(100000938,100000100,100014726),(100000938,100000100,100014727),(100000938,100000100,100014732),(100000938,100000100,100014738),(100000938,100000100,100014740),(100000938,100000100,100014741),(100000938,100000100,100014742),(100000938,100000100,100014745),(100000938,100000100,100014746),(100000938,100000100,100014747),(100000938,100000100,100014749),(100000938,100000100,100014750),(100000938,100000100,100014751),(100000938,100000100,100014754),(100000938,100000100,100014755),(100000938,100000100,100014757),(100000938,100000100,100014759),(100000938,100000100,100014767),(100000938,100000100,100014768),(100000938,100000100,100014769),(100000938,100000100,100014773),(100000938,100000100,100014774),(100000938,100000100,100014775),(100000938,100000100,100014776),(100000938,100000100,100014777),(100000938,100000100,100014778),(100000938,100000100,100014779),(100000938,100000100,100014780),(100000938,100000100,100014781),(100000938,100000100,100014782),(100000938,100000100,100014783),(100000938,100000100,100014784),(100000938,100000100,100014785),(100000938,100000100,100014786),(100000938,100000100,100014787),(100000938,100000100,100014788),(100000938,100000100,100014789),(100000938,100000100,100014790),(100000938,100000100,100014791),(100000938,100000100,100014794),(100000938,100000100,100014795),(100000938,100000100,100014798),(100000938,100000100,100014799),(100000938,100000100,100014802),(100000938,100000100,100014803),(100000938,100000100,100014804),(100000938,100000100,100014805),(100000938,100000100,100014806),(100000938,100000100,100014807),(100000938,100000100,100014808),(100000938,100000100,100014809),(100000938,100000100,100014810),(100000938,100000100,100014811),(100000938,100000100,100014812),(100000938,100000100,100014813),(100000938,100000100,100014814),(100000938,100000100,100014815),(100000938,100000100,100014816),(100000938,100000100,100014817),(100000938,100000100,100014818),(100000938,100000100,100014819),(100000938,100000100,100014820),(100000938,100000100,100014821),(100000938,100000100,100014822),(100000938,100000100,100014824),(100000938,100000100,100014825),(100000938,100000100,100014826),(100000938,100000100,100014827),(100000938,100000100,100014828),(100000938,100000100,100014833),(100000938,100000100,100014834),(100000938,100000100,100014836),(100000938,100000100,100014837),(100000938,100000100,100014838),(100000938,100000100,100014839),(100000938,100000100,100014840),(100000938,100000100,100014841),(100000938,100000100,100014843),(100000938,100000100,100014845),(100000938,100000100,100014847),(100000938,100000100,100014848),(100000938,100000100,100014849),(100000938,100000100,100014850),(100000938,100000100,100014851),(100000938,100000100,100014852),(100000938,100000100,100014853),(100000938,100000100,100014856),(100000938,100000100,100014857),(100000938,100000100,100014861),(100000938,100000100,100014862),(100000938,100000100,100014864),(100000938,100000100,100014865),(100000938,100000100,100014866),(100000938,100000100,100014867),(100000938,100000100,100014868),(100000938,100000100,100014869),(100000938,100000100,100014870),(100000938,100000100,100014871),(100000938,100000100,100014873),(100000938,100000100,100014874),(100000938,100000100,100014875),(100000938,100000100,100014876),(100000938,100000100,100014877),(100000938,100000100,100014878),(100000938,100000100,100014879),(100000938,100000100,100014880),(100000938,100000100,100014881),(100000938,100000100,100014886),(100000938,100000100,100014887),(100000938,100000100,100014888),(100000938,100000100,100014892),(100000938,100000100,100014893),(100000938,100000100,100014895),(100000938,100000100,100014896),(100000938,100000100,100014897),(100000938,100000100,100014898),(100000938,100000100,100014899),(100000938,100000100,100014905),(100000938,100000100,100014906),(100000938,100000100,100014909),(100000938,100000100,100014911),(100000938,100000100,100014912),(100000938,100000100,100014913),(100000938,100000100,100014914),(100000938,100000100,100014915),(100000938,100000100,100014916),(100000938,100000100,100014917),(100000938,100000100,100014918),(100000938,100000100,100014923),(100000938,100000100,100014925),(100000938,100000100,100014927),(100000938,100000100,100014928),(100000938,100000100,100014929),(100000938,100000100,100014930),(100000938,100000100,100014931),(100000938,100000100,100014932),(100000938,100000100,100014933),(100000938,100000100,100014934),(100000938,100000100,100014935),(100000938,100000100,100014936),(100000938,100000100,100014937),(100000938,100000100,100014938),(100000938,100000100,100014939),(100000938,100000100,100014940),(100000938,100000100,100014941),(100000938,100000100,100014942),(100000938,100000100,100014947),(100000938,100000100,100014948),(100000938,100000100,100014952),(100000938,100000100,100014953),(100000938,100000100,100014954),(100000938,100000100,100014955),(100000938,100000100,100014956),(100000938,100000100,100014957),(100000938,100000100,100014963),(100000938,100000100,100014966),(100000938,100000100,100014967),(100000938,100000100,100014970),(100000938,100000100,100014973),(100000938,100000100,100014976),(100000938,100000100,100014978),(100000938,100000100,100014979),(100000938,100000100,100014980),(100000938,100000100,100014981),(100000938,100000100,100014982),(100000938,100000100,100014985),(100000938,100000100,100014987),(100000938,100000100,100014988),(100000938,100000100,100014989),(100000938,100000100,100014991),(100000938,100000100,100014992),(100000938,100000100,100014993),(100000938,100000100,100014994),(100000938,100000100,100014995),(100000938,100000100,100014996),(100000938,100000100,100014997),(100000938,100000100,100014998),(100000938,100000100,100014999),(100000938,100000100,100015000),(100000938,100000100,100015001),(100000938,100000100,100015007),(100000938,100000100,100015008),(100000938,100000100,100015009),(100000938,100000100,100015010),(100000938,100000100,100015011),(100000938,100000100,100015012),(100000938,100000100,100015014),(100000938,100000100,100015015),(100000938,100000100,100015016),(100000938,100000100,100015017),(100000938,100000100,100015018),(100000938,100000100,100015019),(100000938,100000100,100015020),(100000938,100000100,100015021),(100000938,100000100,100015022),(100000938,100000100,100015023),(100000938,100000100,100015045),(100000938,100000100,100015046),(100000938,100000100,100015047),(100000938,100000100,100015054),(100000938,100000100,100015055),(100000938,100000100,100015056),(100000938,100000100,100015060),(100000938,100000100,100015061),(100000938,100000100,100015062),(100000938,100000100,100015066),(100000938,100000100,100015067),(100000938,100000100,100015068),(100000938,100000100,100015070),(100000938,100000100,100015071),(100000938,100000100,100015072),(100000938,100000100,100015073),(100000938,100000100,100015074),(100000938,100000100,100015075),(100000938,100000100,100015076),(100000938,100000100,100015077),(100000938,100000100,100015078),(100000938,100000100,100015079),(100000938,100000100,100015080),(100000938,100000100,100015081),(100000938,100000100,100015084),(100000938,100000100,100015087),(100000938,100000100,100015088),(100000938,100000100,100015091),(100000938,100000100,100015092),(100000938,100000100,100015098),(100000938,100000100,100015099),(100000938,100000100,100015100),(100000938,100000100,100015104),(100000938,100000100,100015105),(100000938,100000100,100015106),(100000938,100000100,100015110),(100000938,100000100,100015111),(100000938,100000100,100015112),(100000938,100000100,100015113),(100000938,100000100,100015121),(100000938,100000100,100015122),(100000938,100000100,100015126),(100000938,100000100,100015127),(100000938,100000100,100015128),(100000938,100000100,100015129),(100000938,100000100,100015130),(100000938,100000100,100015131),(100000938,100000100,100015132),(100000938,100000100,100015136),(100000938,100000100,100015141),(100000938,100000100,100015142),(100000938,100000100,100015143),(100000938,100000100,100015144),(100000938,100000100,100015145),(100000938,100000100,100015146),(100000938,100000100,100015147),(100000938,100000100,100015148),(100000938,100000100,100015149),(100000938,100000100,100015150),(100000938,100000100,100015151),(100000938,100000100,100015152),(100000938,100000100,100015153),(100000938,100000100,100015154),(100000938,100000100,100015155),(100000938,100000100,100015156),(100000938,100000100,100015157),(100000938,100000100,100015158),(100000938,100000100,100015159),(100000938,100000100,100015161),(100000938,100000100,100015162),(100000938,100000100,100015163),(100000938,100000100,100015164),(100000938,100000100,100015165),(100000938,100000100,100015166),(100000938,100000100,100015170),(100000938,100000100,100015172),(100000938,100000100,100015218),(100000938,100000100,100015219),(100000938,100000100,100015222),(100000938,100000100,100015223),(100000938,100000100,100015228),(100000938,100000100,100015230),(100000938,100000100,100015231),(100000938,100000100,100015232),(100000938,100000100,100015233),(100000938,100000100,100015234),(100000938,100000100,100015248),(100000938,100000100,100015249),(100000938,100000100,100015252),(100000938,100000100,100015253),(100000938,100000100,100015254),(100000938,100000100,100015267),(100000938,100000100,100015268),(100000938,100000100,100015269),(100000938,100000100,100015271),(100000938,100000100,100015276),(100000938,100000100,100015277),(100000938,100000100,100015278),(100000938,100000100,100015279),(100000938,100000100,100015280),(100000938,100000100,100015281),(100000938,100000100,100015282),(100000938,100000100,100015288),(100000938,100000100,100015289),(100000938,100000100,100015291),(100000938,100000100,100015296),(100000938,100000100,100015297),(100000938,100000100,100015301),(100000938,100000100,100015302),(100000938,100000100,100015303),(100000938,100000100,100015307),(100000938,100000100,100015308),(100000938,100000100,100015309),(100000938,100000100,100015318),(100000938,100000100,100015319),(100000938,100000100,100015320),(100000938,100000100,100015321),(100000938,100000100,100015322),(100000938,100000100,100015323),(100000938,100000100,100015324),(100000938,100000100,100015325),(100000938,100000100,100015326),(100000938,100000100,100015327),(100000938,100000100,100015328),(100000938,100000100,100015330),(100000938,100000100,100015331),(100000938,100000100,100015332),(100000938,100000100,100015333),(100000938,100000100,100015334),(100000938,100000100,100015335),(100000938,100000100,100015336),(100000938,100000100,100015339),(100000938,100000100,100015340),(100000938,100000100,100015341),(100000938,100000100,100015344),(100000938,100000100,100015347),(100000938,100000100,100015348),(100000938,100000100,100015352),(100000938,100000100,100015357),(100000938,100000100,100015358),(100000938,100000100,100015359),(100000938,100000100,100015372),(100000938,100000100,100015373),(100000938,100000100,100015374),(100000938,100000100,100015377),(100000938,100000100,100015378),(100000938,100000100,100015379),(100000938,100000100,100015381),(100000938,100000100,100015382),(100000938,100000100,100015390),(100000938,100000100,100015391),(100000938,100000100,100015394),(100000938,100000100,100015395),(100000938,100000100,100015396),(100000938,100000100,100015397),(100000938,100000100,100015400),(100000938,100000100,100015401),(100000938,100000100,100015402),(100000938,100000100,100015403),(100000938,100000100,100015404),(100000938,100000100,100015405),(100000938,100000100,100015406),(100000938,100000100,100015407),(100000938,100000100,100015408),(100000938,100000100,100015410),(100000938,100000100,100015411),(100000938,100000100,100015412),(100000938,100000100,100015417),(100000938,100000100,100015418),(100000938,100000100,100015419),(100000938,100000100,100015420),(100000938,100000100,100015421),(100000938,100000100,100015422),(100000938,100000100,100015425),(100000938,100000100,100015426),(100000938,100000100,100015430),(100000938,100000100,100015431),(100000938,100000100,100015432),(100000938,100000100,100015433),(100000938,100000100,100015443),(100000938,100000100,100015444),(100000938,100000100,100015446),(100000938,100000100,100015447),(100000938,100000100,100015448),(100000938,100000100,100015449),(100000938,100000100,100015450),(100000938,100000100,100015460),(100000938,100000100,100015461),(100000938,100000100,100015462),(100000938,100000100,100015463),(100000938,100000100,100015464),(100000938,100000100,100015465),(100000938,100000100,100015466),(100000938,100000100,100015467),(100000938,100000100,100015468),(100000938,100000100,100015469),(100000938,100000100,100015470),(100000938,100000100,100015471),(100000938,100000100,100015472),(100000938,100000100,100015473),(100000938,100000100,100015481),(100000938,100000100,100015482),(100000938,100000100,100015483),(100000938,100000100,100015484),(100000938,100000100,100015490),(100000938,100000100,100015491),(100000938,100000100,100015492),(100000938,100000100,100015495),(100000938,100000100,100015496),(100000938,100000100,100015497),(100000938,100000100,100015498),(100000938,100000100,100015499),(100000938,100000100,100015500),(100000938,100000100,100015501),(100000938,100000100,100015502),(100000938,100000100,100015503),(100000938,100000100,100015504),(100000938,100000100,100015505),(100000938,100000100,100015506),(100000938,100000100,100015507),(100000938,100000100,100015508),(100000938,100000100,100015509),(100000938,100000100,100015510),(100000938,100000100,100015512),(100000938,100000100,100015513),(100000938,100000100,100015516),(100000938,100000100,100015517),(100000938,100000100,100015522),(100000938,100000100,100015523),(100000938,100000100,100015528),(100000938,100000100,100015529),(100000938,100000100,100015530),(100000938,100000100,100015531),(100000938,100000100,100015532),(100000938,100000100,100015533),(100000938,100000100,100015534),(100000938,100000100,100015538),(100000938,100000100,100015539),(100000938,100000100,100015541),(100000938,100000100,100015544),(100000938,100000100,100015545),(100000938,100000100,100015546),(100000938,100000100,100015553),(100000938,100000100,100015584),(100000938,100000100,100015585),(100000938,100000100,100015586),(100000938,100000100,100015587),(100000938,100000100,100015588),(100000938,100000100,100015589),(100000938,100000100,100015590),(100000938,100000100,100015591),(100000938,100000100,100015592),(100000938,100000100,100015593),(100000938,100000100,100015594),(100000938,100000100,100015595),(100000938,100000100,100015596),(100000938,100000100,100015597),(100000938,100000100,100015598),(100000938,100000100,100015599),(100000938,100000100,100015600),(100000938,100000100,100015601),(100000938,100000100,100015602),(100000938,100000100,100015603),(100000938,100000100,100015604),(100000938,100000100,100015605),(100000938,100000100,100015606),(100000938,100000100,100015607),(100000938,100000100,100015608),(100000938,100000100,100015609),(100000938,100000100,100015610),(100000938,100000100,100015611),(100000938,100000100,100015612),(100000938,100000100,100015613),(100000938,100000100,100015621),(100000938,100000100,100015622),(100000938,100000100,100015623),(100000938,100000100,100015624),(100000938,100000100,100015625),(100000938,100000100,100015626),(100000938,100000100,100015632),(100000938,100000100,100015633),(100000938,100000100,100015635),(100000938,100000100,100015636),(100000938,100000100,100015637),(100000938,100000100,100015638),(100000938,100000100,100015639),(100000938,100000100,100015640),(100000938,100000100,100015641),(100000938,100000100,100015642),(100000938,100000100,100015643),(100000938,100000100,100015644),(100000938,100000100,100015645),(100000938,100000100,100015646),(100000938,100000100,100015647),(100000938,100000100,100015648),(100000938,100000100,100015649),(100000938,100000100,100015655),(100000938,100000100,100015656),(100000938,100000100,100015657),(100000938,100000100,100015658),(100000938,100000100,100015659),(100000938,100000100,100015660),(100000938,100000100,100015661),(100000938,100000100,100015662),(100000938,100000100,100015663),(100000938,100000100,100015664),(100000938,100000100,100015665),(100000938,100000100,100015666),(100000938,100000100,100015667),(100000938,100000100,100015668),(100000938,100000100,100015669),(100000938,100000100,100015670),(100000938,100000100,100015671),(100000938,100000100,100015672),(100000938,100000100,100015673),(100000938,100000100,100015674),(100000938,100000100,100015675),(100000938,100000100,100015676),(100000938,100000100,100015677),(100000938,100000100,100015678),(100000938,100000100,100015679),(100000938,100000100,100015680),(100000938,100000100,100015682),(100000938,100000100,100015683),(100000938,100000100,100015684),(100000938,100000100,100015685),(100000938,100000100,100015691),(100000938,100000100,100015695),(100000938,100000100,100015696),(100000938,100000100,100015697),(100000938,100000100,100015698),(100000938,100000100,100015699),(100000938,100000100,100015700),(100000938,100000100,100015701),(100000938,100000100,100015702),(100000938,100000100,100015703),(100000938,100000100,100015705),(100000938,100000100,100015706),(100000938,100000100,100015707),(100000938,100000100,100015708),(100000938,100000100,100015710),(100000938,100000100,100015711),(100000938,100000100,100015713),(100000938,100000100,100015714),(100000938,100000100,100015715),(100000938,100000100,100015716),(100000938,100000100,100015717),(100000938,100000100,100015718),(100000938,100000100,100015719),(100000938,100000100,100015720),(100000938,100000100,100015721),(100000938,100000100,100015722),(100000938,100000100,100015723),(100000938,100000100,100015724),(100000938,100000100,100015725),(100000938,100000100,100015726),(100000938,100000100,100015727),(100000938,100000100,100015728),(100000938,100000100,100015729),(100000938,100000100,100015730),(100000938,100000100,100015731),(100000938,100000100,100015732),(100000938,100000100,100015733),(100000938,100000100,100015734),(100000938,100000100,100015735),(100000938,100000100,100015736),(100000938,100000100,100015737),(100000938,100000100,100015738),(100000938,100000100,100015739),(100000938,100000100,100015740),(100000938,100000100,100015741),(100000938,100000100,100015742),(100000938,100000100,100015743),(100000938,100000100,100015744),(100000938,100000100,100015745),(100000938,100000100,100015746),(100000938,100000100,100015747),(100000938,100000100,100015748),(100000938,100000100,100015749),(100000938,100000100,100015750),(100000938,100000100,100015751),(100000938,100000100,100015752),(100000938,100000100,100015753),(100000938,100000100,100015754),(100000938,100000100,100015755),(100000938,100000100,100015756),(100000938,100000100,100015757),(100000938,100000100,100015758),(100000938,100000100,100015759),(100000938,100000100,100015760),(100000938,100000100,100015761),(100000938,100000100,100015764),(100000938,100000100,100015766),(100000938,100000100,100015769),(100000938,100000100,100015770),(100000938,100000100,100015771),(100000938,100000100,100015772),(100000938,100000100,100015773),(100000938,100000100,100015774),(100000938,100000100,100015775),(100000938,100000100,100015776),(100000938,100000100,100015777),(100000938,100000100,100015778),(100000938,100000100,100015779),(100000938,100000100,100015780),(100000938,100000100,100015781),(100000938,100000100,100015782),(100000938,100000100,100015783),(100000938,100000100,100015784),(100000938,100000100,100015785),(100000938,100000100,100015786),(100000938,100000100,100015787),(100000938,100000100,100015788),(100000938,100000100,100015789),(100000938,100000100,100015790),(100000938,100000100,100015791),(100000938,100000100,100015792),(100000938,100000100,100015794),(100000938,100000100,100015795),(100000938,100000100,100015796),(100000938,100000100,100015797),(100000938,100000100,100015798),(100000938,100000100,100015799),(100000938,100000100,100015800),(100000938,100000100,100015801),(100000938,100000100,100015802),(100000938,100000100,100015803),(100000938,100000100,100015804),(100000938,100000100,100015805),(100000938,100000100,100015806),(100000939,100000100,100014441),(100000939,100000100,100014442),(100000939,100000100,100014443),(100000939,100000100,100014444),(100000939,100000100,100014445),(100000939,100000100,100014446),(100000939,100000100,100014447),(100000939,100000100,100014448),(100000939,100000100,100014449),(100000939,100000100,100014450),(100000939,100000100,100014451),(100000939,100000100,100014452),(100000939,100000100,100014453),(100000939,100000100,100014454),(100000939,100000100,100014455),(100000939,100000100,100014464),(100000939,100000100,100014465),(100000939,100000100,100014466),(100000939,100000100,100014467),(100000939,100000100,100014468),(100000939,100000100,100014469),(100000939,100000100,100014470),(100000939,100000100,100014471),(100000939,100000100,100014472),(100000939,100000100,100014473),(100000939,100000100,100014474),(100000939,100000100,100014475),(100000939,100000100,100014476),(100000939,100000100,100014477),(100000939,100000100,100014478),(100000939,100000100,100014479),(100000939,100000100,100014480),(100000939,100000100,100014481),(100000939,100000100,100014482),(100000939,100000100,100014483),(100000939,100000100,100014484),(100000939,100000100,100014485),(100000939,100000100,100014486),(100000939,100000100,100014487),(100000939,100000100,100014488),(100000939,100000100,100014489),(100000939,100000100,100014490),(100000939,100000100,100014491),(100000939,100000100,100014492),(100000939,100000100,100014493),(100000939,100000100,100014494),(100000939,100000100,100014495),(100000939,100000100,100014496),(100000939,100000100,100014497),(100000939,100000100,100014498),(100000939,100000100,100014499),(100000939,100000100,100014500),(100000939,100000100,100014508),(100000939,100000100,100014509),(100000939,100000100,100014510),(100000939,100000100,100014511),(100000939,100000100,100014512),(100000939,100000100,100014513),(100000939,100000100,100014514),(100000939,100000100,100014515),(100000939,100000100,100014516),(100000939,100000100,100014517),(100000939,100000100,100014519),(100000939,100000100,100014521),(100000939,100000100,100014522),(100000939,100000100,100014523),(100000939,100000100,100014524),(100000939,100000100,100014525),(100000939,100000100,100014527),(100000939,100000100,100014528),(100000939,100000100,100014529),(100000939,100000100,100014530),(100000939,100000100,100014531),(100000939,100000100,100014532),(100000939,100000100,100014533),(100000939,100000100,100014534),(100000939,100000100,100014535),(100000939,100000100,100014536),(100000939,100000100,100014537),(100000939,100000100,100014538),(100000939,100000100,100014539),(100000939,100000100,100014540),(100000939,100000100,100014541),(100000939,100000100,100014542),(100000939,100000100,100014543),(100000939,100000100,100014545),(100000939,100000100,100014547),(100000939,100000100,100014548),(100000939,100000100,100014549),(100000939,100000100,100014556),(100000939,100000100,100014557),(100000939,100000100,100014558),(100000939,100000100,100014559),(100000939,100000100,100014560),(100000939,100000100,100014562),(100000939,100000100,100014564),(100000939,100000100,100014576),(100000939,100000100,100014577),(100000939,100000100,100014578),(100000939,100000100,100014579),(100000939,100000100,100014583),(100000939,100000100,100014584),(100000939,100000100,100014585),(100000939,100000100,100014586),(100000939,100000100,100014587),(100000939,100000100,100014591),(100000939,100000100,100014592),(100000939,100000100,100014593),(100000939,100000100,100014596),(100000939,100000100,100014597),(100000939,100000100,100014598),(100000939,100000100,100014646),(100000939,100000100,100014647),(100000939,100000100,100014648),(100000939,100000100,100014649),(100000939,100000100,100014650),(100000939,100000100,100014651),(100000939,100000100,100014652),(100000939,100000100,100014653),(100000939,100000100,100014765),(100000939,100000100,100014766),(100000939,100000100,100014767),(100000939,100000100,100014768),(100000939,100000100,100014769),(100000939,100000100,100014770),(100000939,100000100,100014771),(100000939,100000100,100014772),(100000939,100000100,100014778),(100000939,100000100,100014792),(100000939,100000100,100014793),(100000939,100000100,100014794),(100000939,100000100,100014795),(100000939,100000100,100014796),(100000939,100000100,100014797),(100000939,100000100,100014798),(100000939,100000100,100014799),(100000939,100000100,100014800),(100000939,100000100,100014801),(100000939,100000100,100014829),(100000939,100000100,100014830),(100000939,100000100,100014831),(100000939,100000100,100014832),(100000939,100000100,100014833),(100000939,100000100,100014834),(100000939,100000100,100014835),(100000939,100000100,100014854),(100000939,100000100,100014855),(100000939,100000100,100014856),(100000939,100000100,100014857),(100000939,100000100,100014858),(100000939,100000100,100014859),(100000939,100000100,100014860),(100000939,100000100,100014861),(100000939,100000100,100014863),(100000939,100000100,100014872),(100000939,100000100,100014900),(100000939,100000100,100014901),(100000939,100000100,100014902),(100000939,100000100,100014903),(100000939,100000100,100014904),(100000939,100000100,100014910),(100000939,100000100,100014951),(100000939,100000100,100014952),(100000939,100000100,100014953),(100000939,100000100,100014954),(100000939,100000100,100014955),(100000939,100000100,100014956),(100000939,100000100,100014957),(100000939,100000100,100014984),(100000939,100000100,100014986),(100000939,100000100,100015024),(100000939,100000100,100015025),(100000939,100000100,100015026),(100000939,100000100,100015027),(100000939,100000100,100015028),(100000939,100000100,100015029),(100000939,100000100,100015030),(100000939,100000100,100015031),(100000939,100000100,100015032),(100000939,100000100,100015033),(100000939,100000100,100015034),(100000939,100000100,100015035),(100000939,100000100,100015036),(100000939,100000100,100015037),(100000939,100000100,100015038),(100000939,100000100,100015039),(100000939,100000100,100015040),(100000939,100000100,100015041),(100000939,100000100,100015042),(100000939,100000100,100015043),(100000939,100000100,100015044),(100000939,100000100,100015047),(100000939,100000100,100015048),(100000939,100000100,100015049),(100000939,100000100,100015050),(100000939,100000100,100015051),(100000939,100000100,100015052),(100000939,100000100,100015053),(100000939,100000100,100015056),(100000939,100000100,100015057),(100000939,100000100,100015058),(100000939,100000100,100015059),(100000939,100000100,100015063),(100000939,100000100,100015064),(100000939,100000100,100015065),(100000939,100000100,100015069),(100000939,100000100,100015083),(100000939,100000100,100015085),(100000939,100000100,100015086),(100000939,100000100,100015087),(100000939,100000100,100015089),(100000939,100000100,100015090),(100000939,100000100,100015092),(100000939,100000100,100015093),(100000939,100000100,100015094),(100000939,100000100,100015095),(100000939,100000100,100015096),(100000939,100000100,100015097),(100000939,100000100,100015100),(100000939,100000100,100015101),(100000939,100000100,100015102),(100000939,100000100,100015103),(100000939,100000100,100015106),(100000939,100000100,100015107),(100000939,100000100,100015108),(100000939,100000100,100015109),(100000939,100000100,100015113),(100000939,100000100,100015114),(100000939,100000100,100015115),(100000939,100000100,100015119),(100000939,100000100,100015120),(100000939,100000100,100015122),(100000939,100000100,100015123),(100000939,100000100,100015124),(100000939,100000100,100015125),(100000939,100000100,100015133),(100000939,100000100,100015137),(100000939,100000100,100015138),(100000939,100000100,100015139),(100000939,100000100,100015171),(100000939,100000100,100015172),(100000939,100000100,100015246),(100000939,100000100,100015247),(100000939,100000100,100015250),(100000939,100000100,100015251),(100000939,100000100,100015269),(100000939,100000100,100015283),(100000939,100000100,100015284),(100000939,100000100,100015285),(100000939,100000100,100015286),(100000939,100000100,100015287),(100000939,100000100,100015289),(100000939,100000100,100015290),(100000939,100000100,100015291),(100000939,100000100,100015292),(100000939,100000100,100015293),(100000939,100000100,100015294),(100000939,100000100,100015295),(100000939,100000100,100015298),(100000939,100000100,100015299),(100000939,100000100,100015300),(100000939,100000100,100015302),(100000939,100000100,100015304),(100000939,100000100,100015305),(100000939,100000100,100015306),(100000939,100000100,100015329),(100000939,100000100,100015337),(100000939,100000100,100015338),(100000939,100000100,100015342),(100000939,100000100,100015343),(100000939,100000100,100015345),(100000939,100000100,100015346),(100000939,100000100,100015348),(100000939,100000100,100015349),(100000939,100000100,100015350),(100000939,100000100,100015351),(100000939,100000100,100015353),(100000939,100000100,100015354),(100000939,100000100,100015355),(100000939,100000100,100015356),(100000939,100000100,100015359),(100000939,100000100,100015360),(100000939,100000100,100015361),(100000939,100000100,100015362),(100000939,100000100,100015380),(100000939,100000100,100015382),(100000939,100000100,100015383),(100000939,100000100,100015384),(100000939,100000100,100015385),(100000939,100000100,100015386),(100000939,100000100,100015387),(100000939,100000100,100015388),(100000939,100000100,100015389),(100000939,100000100,100015392),(100000939,100000100,100015393),(100000939,100000100,100015398),(100000939,100000100,100015399),(100000939,100000100,100015409),(100000939,100000100,100015411),(100000939,100000100,100015413),(100000939,100000100,100015414),(100000939,100000100,100015415),(100000939,100000100,100015416),(100000939,100000100,100015423),(100000939,100000100,100015424),(100000939,100000100,100015426),(100000939,100000100,100015427),(100000939,100000100,100015428),(100000939,100000100,100015429),(100000939,100000100,100015442),(100000939,100000100,100015445),(100000939,100000100,100015472),(100000939,100000100,100015474),(100000939,100000100,100015475),(100000939,100000100,100015476),(100000939,100000100,100015477),(100000939,100000100,100015478),(100000939,100000100,100015479),(100000939,100000100,100015480),(100000939,100000100,100015485),(100000939,100000100,100015486),(100000939,100000100,100015487),(100000939,100000100,100015488),(100000939,100000100,100015489),(100000939,100000100,100015491),(100000939,100000100,100015493),(100000939,100000100,100015494),(100000939,100000100,100015511),(100000939,100000100,100015514),(100000939,100000100,100015515),(100000939,100000100,100015518),(100000939,100000100,100015519),(100000939,100000100,100015520),(100000939,100000100,100015521),(100000939,100000100,100015524),(100000939,100000100,100015525),(100000939,100000100,100015526),(100000939,100000100,100015527),(100000939,100000100,100015529),(100000939,100000100,100015535),(100000939,100000100,100015536),(100000939,100000100,100015537),(100000939,100000100,100015547),(100000939,100000100,100015548),(100000939,100000100,100015549),(100000939,100000100,100015614),(100000939,100000100,100015615),(100000939,100000100,100015616),(100000939,100000100,100015617),(100000939,100000100,100015618),(100000939,100000100,100015619),(100000939,100000100,100015620),(100000939,100000100,100015625),(100000939,100000100,100015627),(100000939,100000100,100015628),(100000939,100000100,100015629),(100000939,100000100,100015630),(100000939,100000100,100015631),(100000939,100000100,100015634),(100000939,100000100,100015649),(100000939,100000100,100015650),(100000939,100000100,100015651),(100000939,100000100,100015652),(100000939,100000100,100015653),(100000939,100000100,100015654),(100000939,100000100,100015681),(100000939,100000100,100015682),(100000939,100000100,100015686),(100000939,100000100,100015687),(100000939,100000100,100015688),(100000939,100000100,100015689),(100000939,100000100,100015690),(100000939,100000100,100015692),(100000939,100000100,100015693),(100000939,100000100,100015694),(100000939,100000100,100015704),(100000939,100000100,100015709),(100000939,100000100,100015712),(100000939,100000100,100015762),(100000939,100000100,100015763),(100000939,100000100,100015765),(100000939,100000100,100015766),(100000939,100000100,100015767),(100000939,100000100,100015768),(100000939,100000100,100015793),(100000940,100000100,100014484),(100000940,100000100,100014509),(100000940,100000100,100014516),(100000940,100000100,100014517),(100000940,100000100,100014518),(100000940,100000100,100014519),(100000940,100000100,100014520),(100000940,100000100,100014521),(100000940,100000100,100014522),(100000940,100000100,100014523),(100000940,100000100,100014524),(100000940,100000100,100014525),(100000940,100000100,100014526),(100000940,100000100,100014527),(100000940,100000100,100014528),(100000940,100000100,100014529),(100000940,100000100,100014559),(100000940,100000100,100014561),(100000940,100000100,100014565),(100000940,100000100,100014576),(100000940,100000100,100014577),(100000940,100000100,100014578),(100000940,100000100,100014579),(100000940,100000100,100014580),(100000940,100000100,100014581),(100000940,100000100,100014582),(100000940,100000100,100014583),(100000940,100000100,100014584),(100000940,100000100,100014585),(100000940,100000100,100014707),(100000940,100000100,100014708),(100000940,100000100,100014711),(100000940,100000100,100014712),(100000940,100000100,100014719),(100000940,100000100,100014740),(100000940,100000100,100014743),(100000940,100000100,100014744),(100000940,100000100,100014745),(100000940,100000100,100014746),(100000940,100000100,100014747),(100000940,100000100,100014748),(100000940,100000100,100014752),(100000940,100000100,100014753),(100000940,100000100,100014754),(100000940,100000100,100014755),(100000940,100000100,100014756),(100000940,100000100,100014760),(100000940,100000100,100014761),(100000940,100000100,100014762),(100000940,100000100,100014763),(100000940,100000100,100014764),(100000940,100000100,100014799),(100000940,100000100,100014862),(100000940,100000100,100014883),(100000940,100000100,100014884),(100000940,100000100,100014885),(100000940,100000100,100014893),(100000940,100000100,100014910),(100000940,100000100,100014964),(100000940,100000100,100014965),(100000940,100000100,100014966),(100000940,100000100,100014967),(100000940,100000100,100014968),(100000940,100000100,100014969),(100000940,100000100,100014970),(100000940,100000100,100014971),(100000940,100000100,100014972),(100000940,100000100,100014973),(100000940,100000100,100014974),(100000940,100000100,100014975),(100000940,100000100,100014976),(100000940,100000100,100014977),(100000940,100000100,100015082),(100000940,100000100,100015083),(100000940,100000100,100015117),(100000940,100000100,100015134),(100000940,100000100,100015135),(100000940,100000100,100015160),(100000940,100000100,100015169),(100000940,100000100,100015235),(100000940,100000100,100015236),(100000940,100000100,100015237),(100000940,100000100,100015238),(100000940,100000100,100015239),(100000940,100000100,100015240),(100000940,100000100,100015241),(100000940,100000100,100015242),(100000940,100000100,100015243),(100000940,100000100,100015244),(100000940,100000100,100015375),(100000940,100000100,100015376),(100000940,100000100,100015398),(100000940,100000100,100015399),(100000940,100000100,100015456),(100000940,100000100,100015457),(100000940,100000100,100015458),(100000940,100000100,100015459),(100000940,100000100,100015790),(100000941,100000100,100014594),(100000941,100000100,100014595),(100000941,100000100,100014596),(100000941,100000100,100014597),(100000941,100000100,100014598),(100000941,100000100,100014599),(100000941,100000100,100014600),(100000941,100000100,100014601),(100000941,100000100,100014602),(100000941,100000100,100014603),(100000941,100000100,100014605),(100000941,100000100,100014607),(100000941,100000100,100014608),(100000941,100000100,100014609),(100000941,100000100,100014610),(100000941,100000100,100014611),(100000941,100000100,100014612),(100000941,100000100,100014613),(100000941,100000100,100014614),(100000941,100000100,100014615),(100000941,100000100,100014616),(100000941,100000100,100014617),(100000941,100000100,100014623),(100000941,100000100,100014624),(100000941,100000100,100014625),(100000941,100000100,100014626),(100000941,100000100,100014627),(100000941,100000100,100014628),(100000941,100000100,100014728),(100000941,100000100,100014729),(100000941,100000100,100014730),(100000941,100000100,100014731),(100000941,100000100,100014732),(100000941,100000100,100014733),(100000941,100000100,100014734),(100000941,100000100,100014736),(100000941,100000100,100014919),(100000941,100000100,100014920),(100000941,100000100,100014923),(100000941,100000100,100014924),(100000941,100000100,100014925),(100000941,100000100,100014926),(100000941,100000100,100015116),(100000941,100000100,100015540),(100000941,100000100,100015542),(100000941,100000100,100015543),(100000941,100000100,100015550),(100000944,100000100,100014893),(100000944,100000100,100014907),(100000944,100000100,100014908),(100000944,100000100,100014949),(100000944,100000100,100015272),(100000944,100000100,100015273),(100000944,100000100,100015274),(100000944,100000100,100015275),(100000945,100000100,100015137),(100000945,100000100,100015138),(100000945,100000100,100015140),(100000946,100000099,100014302),(100000946,100000099,100014303),(100000946,100000099,100014308),(100000946,100000099,100014313),(100000946,100000099,100014314),(100000946,100000099,100014325),(100000946,100000099,100014334),(100000946,100000099,100014335),(100000946,100000099,100014340),(100000946,100000099,100014355),(100000946,100000099,100014359),(100000946,100000099,100014360),(100000946,100000099,100014365),(100000946,100000099,100014370),(100000946,100000099,100014375),(100000946,100000099,100014379),(100000946,100000099,100014380),(100000946,100000099,100014381),(100000946,100000099,100014382),(100000946,100000099,100014383),(100000946,100000099,100014384),(100000946,100000099,100014385),(100000946,100000099,100014386),(100000946,100000099,100014387),(100000946,100000099,100014388),(100000946,100000099,100014412),(100000946,100000099,100015558),(100000947,100000100,100014435),(100000947,100000100,100014436),(100000947,100000100,100014437),(100000947,100000100,100014438),(100000947,100000100,100014439),(100000947,100000100,100014440),(100000947,100000100,100014443),(100000947,100000100,100014444),(100000947,100000100,100014445),(100000947,100000100,100014450),(100000947,100000100,100014451),(100000947,100000100,100014452),(100000947,100000100,100014466),(100000947,100000100,100014467),(100000947,100000100,100014468),(100000947,100000100,100014474),(100000947,100000100,100014475),(100000947,100000100,100014476),(100000947,100000100,100014483),(100000947,100000100,100014484),(100000947,100000100,100014485),(100000947,100000100,100014491),(100000947,100000100,100014492),(100000947,100000100,100014493),(100000947,100000100,100014497),(100000947,100000100,100014498),(100000947,100000100,100014499),(100000947,100000100,100014508),(100000947,100000100,100014509),(100000947,100000100,100014510),(100000947,100000100,100014511),(100000947,100000100,100014512),(100000947,100000100,100014513),(100000947,100000100,100014514),(100000947,100000100,100014515),(100000947,100000100,100014518),(100000947,100000100,100014519),(100000947,100000100,100014520),(100000947,100000100,100014524),(100000947,100000100,100014525),(100000947,100000100,100014526),(100000947,100000100,100014530),(100000947,100000100,100014531),(100000947,100000100,100014532),(100000947,100000100,100014533),(100000947,100000100,100014534),(100000947,100000100,100014535),(100000947,100000100,100014536),(100000947,100000100,100014537),(100000947,100000100,100014538),(100000947,100000100,100014539),(100000947,100000100,100014540),(100000947,100000100,100014541),(100000947,100000100,100014544),(100000947,100000100,100014545),(100000947,100000100,100014546),(100000947,100000100,100014550),(100000947,100000100,100014551),(100000947,100000100,100014552),(100000947,100000100,100014553),(100000947,100000100,100014554),(100000947,100000100,100014555),(100000947,100000100,100014556),(100000947,100000100,100014557),(100000947,100000100,100014559),(100000947,100000100,100014563),(100000947,100000100,100014566),(100000947,100000100,100014567),(100000947,100000100,100014568),(100000947,100000100,100014569),(100000947,100000100,100014570),(100000947,100000100,100014571),(100000947,100000100,100014572),(100000947,100000100,100014573),(100000947,100000100,100014574),(100000947,100000100,100014575),(100000947,100000100,100014580),(100000947,100000100,100014581),(100000947,100000100,100014582),(100000947,100000100,100014588),(100000947,100000100,100014589),(100000947,100000100,100014590),(100000947,100000100,100014596),(100000947,100000100,100014597),(100000947,100000100,100014598),(100000947,100000100,100014604),(100000947,100000100,100014605),(100000947,100000100,100014606),(100000947,100000100,100014612),(100000947,100000100,100014613),(100000947,100000100,100014614),(100000947,100000100,100014618),(100000947,100000100,100014619),(100000947,100000100,100014620),(100000947,100000100,100014621),(100000947,100000100,100014622),(100000947,100000100,100014625),(100000947,100000100,100014626),(100000947,100000100,100014627),(100000947,100000100,100014629),(100000947,100000100,100014630),(100000947,100000100,100014631),(100000947,100000100,100014632),(100000947,100000100,100014633),(100000947,100000100,100014634),(100000947,100000100,100014635),(100000947,100000100,100014636),(100000947,100000100,100014637),(100000947,100000100,100014638),(100000947,100000100,100014639),(100000947,100000100,100014640),(100000947,100000100,100014641),(100000947,100000100,100014642),(100000947,100000100,100014643),(100000947,100000100,100014644),(100000947,100000100,100014648),(100000947,100000100,100014649),(100000947,100000100,100014650),(100000947,100000100,100014657),(100000947,100000100,100014659),(100000947,100000100,100014660),(100000947,100000100,100014669),(100000947,100000100,100014670),(100000947,100000100,100014671),(100000947,100000100,100014672),(100000947,100000100,100014673),(100000947,100000100,100014674),(100000947,100000100,100014675),(100000947,100000100,100014676),(100000947,100000100,100014677),(100000947,100000100,100014681),(100000947,100000100,100014682),(100000947,100000100,100014683),(100000947,100000100,100014684),(100000947,100000100,100014688),(100000947,100000100,100014693),(100000947,100000100,100014696),(100000947,100000100,100014698),(100000947,100000100,100014699),(100000947,100000100,100014700),(100000947,100000100,100014701),(100000947,100000100,100014702),(100000947,100000100,100014703),(100000947,100000100,100014704),(100000947,100000100,100014705),(100000947,100000100,100014706),(100000947,100000100,100014707),(100000947,100000100,100014708),(100000947,100000100,100014709),(100000947,100000100,100014710),(100000947,100000100,100014711),(100000947,100000100,100014712),(100000947,100000100,100014713),(100000947,100000100,100014719),(100000947,100000100,100014722),(100000947,100000100,100014725),(100000947,100000100,100014726),(100000947,100000100,100014727),(100000947,100000100,100014732),(100000947,100000100,100014738),(100000947,100000100,100014740),(100000947,100000100,100014741),(100000947,100000100,100014742),(100000947,100000100,100014745),(100000947,100000100,100014746),(100000947,100000100,100014747),(100000947,100000100,100014749),(100000947,100000100,100014750),(100000947,100000100,100014751),(100000947,100000100,100014754),(100000947,100000100,100014755),(100000947,100000100,100014757),(100000947,100000100,100014759),(100000947,100000100,100014767),(100000947,100000100,100014768),(100000947,100000100,100014769),(100000947,100000100,100014773),(100000947,100000100,100014774),(100000947,100000100,100014775),(100000947,100000100,100014776),(100000947,100000100,100014777),(100000947,100000100,100014778),(100000947,100000100,100014779),(100000947,100000100,100014780),(100000947,100000100,100014781),(100000947,100000100,100014782),(100000947,100000100,100014783),(100000947,100000100,100014784),(100000947,100000100,100014785),(100000947,100000100,100014786),(100000947,100000100,100014787),(100000947,100000100,100014788),(100000947,100000100,100014789),(100000947,100000100,100014790),(100000947,100000100,100014794),(100000947,100000100,100014795),(100000947,100000100,100014798),(100000947,100000100,100014799),(100000947,100000100,100014802),(100000947,100000100,100014803),(100000947,100000100,100014804),(100000947,100000100,100014805),(100000947,100000100,100014806),(100000947,100000100,100014807),(100000947,100000100,100014808),(100000947,100000100,100014809),(100000947,100000100,100014810),(100000947,100000100,100014811),(100000947,100000100,100014812),(100000947,100000100,100014813),(100000947,100000100,100014814),(100000947,100000100,100014815),(100000947,100000100,100014816),(100000947,100000100,100014817),(100000947,100000100,100014818),(100000947,100000100,100014819),(100000947,100000100,100014820),(100000947,100000100,100014821),(100000947,100000100,100014822),(100000947,100000100,100014824),(100000947,100000100,100014825),(100000947,100000100,100014826),(100000947,100000100,100014827),(100000947,100000100,100014828),(100000947,100000100,100014833),(100000947,100000100,100014834),(100000947,100000100,100014836),(100000947,100000100,100014837),(100000947,100000100,100014838),(100000947,100000100,100014839),(100000947,100000100,100014840),(100000947,100000100,100014841),(100000947,100000100,100014843),(100000947,100000100,100014845),(100000947,100000100,100014847),(100000947,100000100,100014848),(100000947,100000100,100014849),(100000947,100000100,100014850),(100000947,100000100,100014851),(100000947,100000100,100014852),(100000947,100000100,100014853),(100000947,100000100,100014856),(100000947,100000100,100014857),(100000947,100000100,100014861),(100000947,100000100,100014862),(100000947,100000100,100014864),(100000947,100000100,100014865),(100000947,100000100,100014866),(100000947,100000100,100014867),(100000947,100000100,100014868),(100000947,100000100,100014869),(100000947,100000100,100014870),(100000947,100000100,100014871),(100000947,100000100,100014873),(100000947,100000100,100014874),(100000947,100000100,100014875),(100000947,100000100,100014876),(100000947,100000100,100014877),(100000947,100000100,100014878),(100000947,100000100,100014879),(100000947,100000100,100014880),(100000947,100000100,100014881),(100000947,100000100,100014886),(100000947,100000100,100014887),(100000947,100000100,100014888),(100000947,100000100,100014892),(100000947,100000100,100014893),(100000947,100000100,100014895),(100000947,100000100,100014896),(100000947,100000100,100014897),(100000947,100000100,100014898),(100000947,100000100,100014899),(100000947,100000100,100014905),(100000947,100000100,100014906),(100000947,100000100,100014909),(100000947,100000100,100014911),(100000947,100000100,100014912),(100000947,100000100,100014913),(100000947,100000100,100014914),(100000947,100000100,100014915),(100000947,100000100,100014916),(100000947,100000100,100014917),(100000947,100000100,100014918),(100000947,100000100,100014923),(100000947,100000100,100014925),(100000947,100000100,100014927),(100000947,100000100,100014928),(100000947,100000100,100014929),(100000947,100000100,100014930),(100000947,100000100,100014931),(100000947,100000100,100014932),(100000947,100000100,100014933),(100000947,100000100,100014934),(100000947,100000100,100014935),(100000947,100000100,100014936),(100000947,100000100,100014937),(100000947,100000100,100014938),(100000947,100000100,100014939),(100000947,100000100,100014940),(100000947,100000100,100014941),(100000947,100000100,100014942),(100000947,100000100,100014947),(100000947,100000100,100014948),(100000947,100000100,100014952),(100000947,100000100,100014953),(100000947,100000100,100014954),(100000947,100000100,100014955),(100000947,100000100,100014956),(100000947,100000100,100014957),(100000947,100000100,100014963),(100000947,100000100,100014966),(100000947,100000100,100014967),(100000947,100000100,100014970),(100000947,100000100,100014973),(100000947,100000100,100014976),(100000947,100000100,100014978),(100000947,100000100,100014979),(100000947,100000100,100014980),(100000947,100000100,100014981),(100000947,100000100,100014982),(100000947,100000100,100014985),(100000947,100000100,100014987),(100000947,100000100,100014988),(100000947,100000100,100014989),(100000947,100000100,100014991),(100000947,100000100,100014992),(100000947,100000100,100014993),(100000947,100000100,100014994),(100000947,100000100,100014995),(100000947,100000100,100014996),(100000947,100000100,100014997),(100000947,100000100,100014998),(100000947,100000100,100014999),(100000947,100000100,100015000),(100000947,100000100,100015001),(100000947,100000100,100015007),(100000947,100000100,100015008),(100000947,100000100,100015009),(100000947,100000100,100015010),(100000947,100000100,100015011),(100000947,100000100,100015012),(100000947,100000100,100015014),(100000947,100000100,100015015),(100000947,100000100,100015016),(100000947,100000100,100015017),(100000947,100000100,100015018),(100000947,100000100,100015019),(100000947,100000100,100015020),(100000947,100000100,100015021),(100000947,100000100,100015022),(100000947,100000100,100015023),(100000947,100000100,100015045),(100000947,100000100,100015046),(100000947,100000100,100015047),(100000947,100000100,100015054),(100000947,100000100,100015055),(100000947,100000100,100015056),(100000947,100000100,100015060),(100000947,100000100,100015061),(100000947,100000100,100015062),(100000947,100000100,100015066),(100000947,100000100,100015067),(100000947,100000100,100015068),(100000947,100000100,100015070),(100000947,100000100,100015071),(100000947,100000100,100015072),(100000947,100000100,100015073),(100000947,100000100,100015074),(100000947,100000100,100015075),(100000947,100000100,100015076),(100000947,100000100,100015077),(100000947,100000100,100015078),(100000947,100000100,100015079),(100000947,100000100,100015080),(100000947,100000100,100015081),(100000947,100000100,100015084),(100000947,100000100,100015087),(100000947,100000100,100015088),(100000947,100000100,100015091),(100000947,100000100,100015092),(100000947,100000100,100015098),(100000947,100000100,100015099),(100000947,100000100,100015100),(100000947,100000100,100015104),(100000947,100000100,100015105),(100000947,100000100,100015106),(100000947,100000100,100015110),(100000947,100000100,100015111),(100000947,100000100,100015112),(100000947,100000100,100015113),(100000947,100000100,100015121),(100000947,100000100,100015122),(100000947,100000100,100015126),(100000947,100000100,100015127),(100000947,100000100,100015128),(100000947,100000100,100015132),(100000947,100000100,100015136),(100000947,100000100,100015141),(100000947,100000100,100015142),(100000947,100000100,100015143),(100000947,100000100,100015144),(100000947,100000100,100015145),(100000947,100000100,100015146),(100000947,100000100,100015147),(100000947,100000100,100015148),(100000947,100000100,100015149),(100000947,100000100,100015150),(100000947,100000100,100015151),(100000947,100000100,100015152),(100000947,100000100,100015153),(100000947,100000100,100015154),(100000947,100000100,100015155),(100000947,100000100,100015156),(100000947,100000100,100015157),(100000947,100000100,100015158),(100000947,100000100,100015159),(100000947,100000100,100015161),(100000947,100000100,100015162),(100000947,100000100,100015163),(100000947,100000100,100015164),(100000947,100000100,100015165),(100000947,100000100,100015166),(100000947,100000100,100015170),(100000947,100000100,100015172),(100000947,100000100,100015218),(100000947,100000100,100015219),(100000947,100000100,100015222),(100000947,100000100,100015223),(100000947,100000100,100015228),(100000947,100000100,100015230),(100000947,100000100,100015231),(100000947,100000100,100015232),(100000947,100000100,100015233),(100000947,100000100,100015234),(100000947,100000100,100015248),(100000947,100000100,100015249),(100000947,100000100,100015252),(100000947,100000100,100015253),(100000947,100000100,100015254),(100000947,100000100,100015267),(100000947,100000100,100015268),(100000947,100000100,100015269),(100000947,100000100,100015271),(100000947,100000100,100015276),(100000947,100000100,100015277),(100000947,100000100,100015278),(100000947,100000100,100015279),(100000947,100000100,100015280),(100000947,100000100,100015281),(100000947,100000100,100015282),(100000947,100000100,100015288),(100000947,100000100,100015289),(100000947,100000100,100015291),(100000947,100000100,100015296),(100000947,100000100,100015297),(100000947,100000100,100015301),(100000947,100000100,100015302),(100000947,100000100,100015303),(100000947,100000100,100015307),(100000947,100000100,100015308),(100000947,100000100,100015309),(100000947,100000100,100015318),(100000947,100000100,100015319),(100000947,100000100,100015320),(100000947,100000100,100015321),(100000947,100000100,100015322),(100000947,100000100,100015323),(100000947,100000100,100015324),(100000947,100000100,100015325),(100000947,100000100,100015326),(100000947,100000100,100015327),(100000947,100000100,100015328),(100000947,100000100,100015330),(100000947,100000100,100015331),(100000947,100000100,100015332),(100000947,100000100,100015333),(100000947,100000100,100015334),(100000947,100000100,100015335),(100000947,100000100,100015336),(100000947,100000100,100015339),(100000947,100000100,100015340),(100000947,100000100,100015341),(100000947,100000100,100015344),(100000947,100000100,100015347),(100000947,100000100,100015348),(100000947,100000100,100015352),(100000947,100000100,100015357),(100000947,100000100,100015358),(100000947,100000100,100015359),(100000947,100000100,100015372),(100000947,100000100,100015373),(100000947,100000100,100015374),(100000947,100000100,100015377),(100000947,100000100,100015378),(100000947,100000100,100015379),(100000947,100000100,100015381),(100000947,100000100,100015382),(100000947,100000100,100015390),(100000947,100000100,100015391),(100000947,100000100,100015394),(100000947,100000100,100015395),(100000947,100000100,100015396),(100000947,100000100,100015397),(100000947,100000100,100015400),(100000947,100000100,100015401),(100000947,100000100,100015402),(100000947,100000100,100015403),(100000947,100000100,100015404),(100000947,100000100,100015405),(100000947,100000100,100015406),(100000947,100000100,100015407),(100000947,100000100,100015408),(100000947,100000100,100015410),(100000947,100000100,100015411),(100000947,100000100,100015412),(100000947,100000100,100015417),(100000947,100000100,100015418),(100000947,100000100,100015419),(100000947,100000100,100015420),(100000947,100000100,100015421),(100000947,100000100,100015422),(100000947,100000100,100015425),(100000947,100000100,100015426),(100000947,100000100,100015430),(100000947,100000100,100015431),(100000947,100000100,100015432),(100000947,100000100,100015433),(100000947,100000100,100015443),(100000947,100000100,100015444),(100000947,100000100,100015446),(100000947,100000100,100015447),(100000947,100000100,100015448),(100000947,100000100,100015449),(100000947,100000100,100015450),(100000947,100000100,100015460),(100000947,100000100,100015461),(100000947,100000100,100015462),(100000947,100000100,100015463),(100000947,100000100,100015464),(100000947,100000100,100015465),(100000947,100000100,100015466),(100000947,100000100,100015467),(100000947,100000100,100015468),(100000947,100000100,100015469),(100000947,100000100,100015470),(100000947,100000100,100015471),(100000947,100000100,100015472),(100000947,100000100,100015473),(100000947,100000100,100015481),(100000947,100000100,100015482),(100000947,100000100,100015483),(100000947,100000100,100015484),(100000947,100000100,100015490),(100000947,100000100,100015491),(100000947,100000100,100015492),(100000947,100000100,100015495),(100000947,100000100,100015496),(100000947,100000100,100015497),(100000947,100000100,100015498),(100000947,100000100,100015499),(100000947,100000100,100015500),(100000947,100000100,100015501),(100000947,100000100,100015502),(100000947,100000100,100015503),(100000947,100000100,100015504),(100000947,100000100,100015505),(100000947,100000100,100015506),(100000947,100000100,100015507),(100000947,100000100,100015508),(100000947,100000100,100015509),(100000947,100000100,100015510),(100000947,100000100,100015512),(100000947,100000100,100015513),(100000947,100000100,100015516),(100000947,100000100,100015517),(100000947,100000100,100015522),(100000947,100000100,100015523),(100000947,100000100,100015528),(100000947,100000100,100015529),(100000947,100000100,100015530),(100000947,100000100,100015531),(100000947,100000100,100015532),(100000947,100000100,100015533),(100000947,100000100,100015534),(100000947,100000100,100015538),(100000947,100000100,100015539),(100000947,100000100,100015541),(100000947,100000100,100015544),(100000947,100000100,100015545),(100000947,100000100,100015546),(100000949,100000100,100015453),(100000949,100000100,100015454),(100000949,100000100,100015455); +/*!40000 ALTER TABLE `rel_perfil_recurso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rel_regra_auditoria_recurso` +-- + +DROP TABLE IF EXISTS `rel_regra_auditoria_recurso`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `rel_regra_auditoria_recurso` ( + `id_recurso` int(11) NOT NULL, + `id_sistema` int(11) NOT NULL, + `id_regra_auditoria` int(11) NOT NULL, + PRIMARY KEY (`id_sistema`,`id_recurso`,`id_regra_auditoria`), + KEY `fk_auditoria_recurso_recurso` (`id_recurso`,`id_sistema`), + KEY `fk_rel_auditoria_recurso_audit` (`id_regra_auditoria`), + CONSTRAINT `fk_auditoria_recurso_recurso` FOREIGN KEY (`id_sistema`, `id_recurso`) REFERENCES `recurso` (`id_sistema`, `id_recurso`), + CONSTRAINT `fk_rel_auditoria_recurso_audit` FOREIGN KEY (`id_regra_auditoria`) REFERENCES `regra_auditoria` (`id_regra_auditoria`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rel_regra_auditoria_recurso` +-- + +LOCK TABLES `rel_regra_auditoria_recurso` WRITE; +/*!40000 ALTER TABLE `rel_regra_auditoria_recurso` DISABLE KEYS */; +INSERT INTO `rel_regra_auditoria_recurso` VALUES (100014301,100000099,1),(100014304,100000099,1),(100014305,100000099,1),(100014306,100000099,1),(100014307,100000099,1),(100014310,100000099,1),(100014311,100000099,1),(100014312,100000099,1),(100014315,100000099,1),(100014316,100000099,1),(100014317,100000099,1),(100014324,100000099,1),(100014326,100000099,1),(100014327,100000099,1),(100014330,100000099,1),(100014331,100000099,1),(100014332,100000099,1),(100014333,100000099,1),(100014336,100000099,1),(100014337,100000099,1),(100014338,100000099,1),(100014339,100000099,1),(100014341,100000099,1),(100014342,100000099,1),(100014343,100000099,1),(100014344,100000099,1),(100014347,100000099,1),(100014348,100000099,1),(100014349,100000099,1),(100014350,100000099,1),(100014352,100000099,1),(100014353,100000099,1),(100014356,100000099,1),(100014357,100000099,1),(100014358,100000099,1),(100014359,100000099,1),(100014362,100000099,1),(100014363,100000099,1),(100014364,100000099,1),(100014365,100000099,1),(100014366,100000099,1),(100014368,100000099,1),(100014369,100000099,1),(100014371,100000099,1),(100014372,100000099,1),(100014373,100000099,1),(100014374,100000099,1),(100014376,100000099,1),(100014377,100000099,1),(100014378,100000099,1),(100014379,100000099,1),(100014383,100000099,1),(100014384,100000099,1),(100014385,100000099,1),(100014386,100000099,1),(100014393,100000099,1),(100014394,100000099,1),(100014395,100000099,1),(100014396,100000099,1),(100014407,100000099,1),(100014408,100000099,1),(100014409,100000099,1),(100014410,100000099,1),(100014412,100000099,1),(100014414,100000099,1),(100015173,100000099,1),(100015174,100000099,1),(100015175,100000099,1),(100015187,100000099,1),(100015200,100000099,1),(100015201,100000099,1),(100015204,100000099,1),(100015205,100000099,1),(100015206,100000099,1),(100015363,100000099,1),(100015364,100000099,1),(100015365,100000099,1),(100015570,100000099,1),(100015571,100000099,1),(100015572,100000099,1),(100015582,100000099,1),(100014435,100000100,2),(100014436,100000100,2),(100014440,100000100,2),(100014441,100000100,2),(100014442,100000100,2),(100014446,100000100,2),(100014447,100000100,2),(100014448,100000100,2),(100014449,100000100,2),(100014453,100000100,2),(100014454,100000100,2),(100014455,100000100,2),(100014464,100000100,2),(100014465,100000100,2),(100014469,100000100,2),(100014470,100000100,2),(100014471,100000100,2),(100014472,100000100,2),(100014473,100000100,2),(100014477,100000100,2),(100014478,100000100,2),(100014479,100000100,2),(100014480,100000100,2),(100014481,100000100,2),(100014482,100000100,2),(100014486,100000100,2),(100014487,100000100,2),(100014488,100000100,2),(100014489,100000100,2),(100014490,100000100,2),(100014494,100000100,2),(100014495,100000100,2),(100014496,100000100,2),(100014500,100000100,2),(100014508,100000100,2),(100014509,100000100,2),(100014513,100000100,2),(100014514,100000100,2),(100014515,100000100,2),(100014516,100000100,2),(100014517,100000100,2),(100014521,100000100,2),(100014522,100000100,2),(100014523,100000100,2),(100014527,100000100,2),(100014528,100000100,2),(100014529,100000100,2),(100014536,100000100,2),(100014537,100000100,2),(100014541,100000100,2),(100014542,100000100,2),(100014543,100000100,2),(100014547,100000100,2),(100014548,100000100,2),(100014549,100000100,2),(100014565,100000100,2),(100014576,100000100,2),(100014577,100000100,2),(100014578,100000100,2),(100014579,100000100,2),(100014583,100000100,2),(100014584,100000100,2),(100014585,100000100,2),(100014586,100000100,2),(100014587,100000100,2),(100014591,100000100,2),(100014592,100000100,2),(100014593,100000100,2),(100014594,100000100,2),(100014595,100000100,2),(100014599,100000100,2),(100014600,100000100,2),(100014601,100000100,2),(100014602,100000100,2),(100014603,100000100,2),(100014607,100000100,2),(100014608,100000100,2),(100014609,100000100,2),(100014610,100000100,2),(100014611,100000100,2),(100014615,100000100,2),(100014616,100000100,2),(100014617,100000100,2),(100014623,100000100,2),(100014624,100000100,2),(100014628,100000100,2),(100014646,100000100,2),(100014647,100000100,2),(100014651,100000100,2),(100014652,100000100,2),(100014653,100000100,2),(100014658,100000100,2),(100014669,100000100,2),(100014670,100000100,2),(100014674,100000100,2),(100014702,100000100,2),(100014703,100000100,2),(100014709,100000100,2),(100014710,100000100,2),(100014711,100000100,2),(100014712,100000100,2),(100014719,100000100,2),(100014736,100000100,2),(100014743,100000100,2),(100014744,100000100,2),(100014748,100000100,2),(100014752,100000100,2),(100014753,100000100,2),(100014756,100000100,2),(100014760,100000100,2),(100014761,100000100,2),(100014763,100000100,2),(100014764,100000100,2),(100014765,100000100,2),(100014766,100000100,2),(100014770,100000100,2),(100014771,100000100,2),(100014772,100000100,2),(100014774,100000100,2),(100014775,100000100,2),(100014778,100000100,2),(100014779,100000100,2),(100014780,100000100,2),(100014792,100000100,2),(100014793,100000100,2),(100014797,100000100,2),(100014828,100000100,2),(100014843,100000100,2),(100014850,100000100,2),(100014851,100000100,2),(100014854,100000100,2),(100014855,100000100,2),(100014858,100000100,2),(100014859,100000100,2),(100014860,100000100,2),(100014863,100000100,2),(100014864,100000100,2),(100014865,100000100,2),(100014868,100000100,2),(100014869,100000100,2),(100014872,100000100,2),(100014876,100000100,2),(100014877,100000100,2),(100014880,100000100,2),(100014892,100000100,2),(100014895,100000100,2),(100014896,100000100,2),(100014899,100000100,2),(100014900,100000100,2),(100014901,100000100,2),(100014904,100000100,2),(100014907,100000100,2),(100014908,100000100,2),(100014910,100000100,2),(100014912,100000100,2),(100014913,100000100,2),(100014931,100000100,2),(100014932,100000100,2),(100014935,100000100,2),(100014936,100000100,2),(100014937,100000100,2),(100014940,100000100,2),(100014947,100000100,2),(100014951,100000100,2),(100014952,100000100,2),(100014953,100000100,2),(100014957,100000100,2),(100014964,100000100,2),(100014965,100000100,2),(100014968,100000100,2),(100014984,100000100,2),(100014986,100000100,2),(100015024,100000100,2),(100015025,100000100,2),(100015027,100000100,2),(100015029,100000100,2),(100015030,100000100,2),(100015031,100000100,2),(100015032,100000100,2),(100015035,100000100,2),(100015043,100000100,2),(100015044,100000100,2),(100015048,100000100,2),(100015049,100000100,2),(100015050,100000100,2),(100015051,100000100,2),(100015052,100000100,2),(100015053,100000100,2),(100015057,100000100,2),(100015058,100000100,2),(100015059,100000100,2),(100015063,100000100,2),(100015083,100000100,2),(100015085,100000100,2),(100015089,100000100,2),(100015090,100000100,2),(100015093,100000100,2),(100015094,100000100,2),(100015095,100000100,2),(100015096,100000100,2),(100015097,100000100,2),(100015101,100000100,2),(100015110,100000100,2),(100015111,100000100,2),(100015114,100000100,2),(100015115,100000100,2),(100015120,100000100,2),(100015123,100000100,2),(100015137,100000100,2),(100015145,100000100,2),(100015149,100000100,2),(100015150,100000100,2),(100015152,100000100,2),(100015154,100000100,2),(100015155,100000100,2),(100015157,100000100,2),(100015161,100000100,2),(100015162,100000100,2),(100015164,100000100,2),(100015171,100000100,2),(100015218,100000100,2),(100015235,100000100,2),(100015271,100000100,2),(100015272,100000100,2),(100015273,100000100,2),(100015274,100000100,2),(100015275,100000100,2),(100015285,100000100,2),(100015286,100000100,2),(100015287,100000100,2),(100015290,100000100,2),(100015292,100000100,2),(100015293,100000100,2),(100015294,100000100,2),(100015295,100000100,2),(100015298,100000100,2),(100015299,100000100,2),(100015300,100000100,2),(100015304,100000100,2),(100015305,100000100,2),(100015306,100000100,2),(100015337,100000100,2),(100015338,100000100,2),(100015345,100000100,2),(100015346,100000100,2),(100015349,100000100,2),(100015350,100000100,2),(100015351,100000100,2),(100015352,100000100,2),(100015353,100000100,2),(100015354,100000100,2),(100015355,100000100,2),(100015356,100000100,2),(100015360,100000100,2),(100015361,100000100,2),(100015362,100000100,2),(100015375,100000100,2),(100015380,100000100,2),(100015383,100000100,2),(100015384,100000100,2),(100015385,100000100,2),(100015386,100000100,2),(100015392,100000100,2),(100015393,100000100,2),(100015394,100000100,2),(100015396,100000100,2),(100015397,100000100,2),(100015400,100000100,2),(100015401,100000100,2),(100015404,100000100,2),(100015409,100000100,2),(100015413,100000100,2),(100015414,100000100,2),(100015415,100000100,2),(100015416,100000100,2),(100015423,100000100,2),(100015424,100000100,2),(100015427,100000100,2),(100015428,100000100,2),(100015429,100000100,2),(100015453,100000100,2),(100015454,100000100,2),(100015455,100000100,2),(100015474,100000100,2),(100015475,100000100,2),(100015476,100000100,2),(100015477,100000100,2),(100015478,100000100,2),(100015480,100000100,2),(100015482,100000100,2),(100015485,100000100,2),(100015486,100000100,2),(100015487,100000100,2),(100015488,100000100,2),(100015489,100000100,2),(100015494,100000100,2),(100015496,100000100,2),(100015497,100000100,2),(100015499,100000100,2),(100015500,100000100,2),(100015503,100000100,2),(100015504,100000100,2),(100015505,100000100,2),(100015510,100000100,2),(100015524,100000100,2),(100015525,100000100,2),(100015526,100000100,2),(100015527,100000100,2),(100015530,100000100,2),(100015531,100000100,2),(100015535,100000100,2),(100015536,100000100,2),(100015537,100000100,2),(100015544,100000100,2),(100015549,100000100,2),(100015614,100000100,2),(100015615,100000100,2),(100015616,100000100,2),(100015617,100000100,2),(100015618,100000100,2),(100015619,100000100,2),(100015620,100000100,2),(100015637,100000100,2),(100015638,100000100,2),(100015639,100000100,2),(100015642,100000100,2),(100015643,100000100,2),(100015646,100000100,2),(100015684,100000100,2),(100015685,100000100,2),(100015686,100000100,2),(100015687,100000100,2),(100015688,100000100,2),(100015689,100000100,2),(100015690,100000100,2),(100015703,100000100,2),(100015704,100000100,2),(100015753,100000100,2),(100015754,100000100,2),(100015756,100000100,2),(100015757,100000100,2),(100015759,100000100,2),(100015762,100000100,2),(100015763,100000100,2),(100015765,100000100,2),(100015767,100000100,2),(100015768,100000100,2),(100015793,100000100,2),(100015211,100000100,3),(100015212,100000100,3),(100015213,100000100,3),(100015214,100000100,3),(100015215,100000100,3),(100015216,100000100,3),(100015217,100000100,3),(100015219,100000100,4),(100014675,100000100,5),(100014802,100000100,5); +/*!40000 ALTER TABLE `rel_regra_auditoria_recurso` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_infra_auditoria` +-- + +DROP TABLE IF EXISTS `seq_infra_auditoria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_infra_auditoria` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=534 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_infra_auditoria` +-- + +LOCK TABLES `seq_infra_auditoria` WRITE; +/*!40000 ALTER TABLE `seq_infra_auditoria` DISABLE KEYS */; +INSERT INTO `seq_infra_auditoria` VALUES (279,'0'),(280,'0'),(281,'0'),(282,'0'),(283,'0'),(284,'0'),(285,'0'),(286,'0'),(287,'0'),(288,'0'),(289,'0'),(290,'0'),(291,'0'),(292,'0'),(293,'0'),(294,'0'),(295,'0'),(296,'0'),(297,'0'),(298,'0'),(299,'0'),(300,'0'),(301,'0'),(302,'0'),(303,'0'),(304,'0'),(305,'0'),(306,'0'),(307,'0'),(308,'0'),(309,'0'),(310,'0'),(311,'0'),(312,'0'),(313,'0'),(314,'0'),(315,'0'),(316,'0'),(317,'0'),(318,'0'),(319,'0'),(320,'0'),(321,'0'),(322,'0'),(323,'0'),(324,'0'),(325,'0'),(326,'0'),(327,'0'),(328,'0'),(329,'0'),(330,'0'),(331,'0'),(332,'0'),(333,'0'),(334,'0'),(335,'0'),(336,'0'),(337,'0'),(338,'0'),(339,'0'),(340,'0'),(341,'0'),(342,'0'),(343,'0'),(344,'0'),(345,'0'),(346,'0'),(347,'0'),(348,'0'),(349,'0'),(350,'0'),(351,'0'),(352,'0'),(353,'0'),(354,'0'),(355,'0'),(356,'0'),(357,'0'),(358,'0'),(359,'0'),(360,'0'),(361,'0'),(362,'0'),(363,'0'),(364,'0'),(365,'0'),(366,'0'),(367,'0'),(368,'0'),(369,'0'),(370,'0'),(371,'0'),(372,'0'),(373,'0'),(374,'0'),(375,'0'),(376,'0'),(377,'0'),(378,'0'),(379,'0'),(380,'0'),(381,'0'),(382,'0'),(383,'0'),(384,'0'),(385,'0'),(386,'0'),(387,'0'),(388,'0'),(389,'0'),(390,'0'),(391,'0'),(392,'0'),(393,'0'),(394,'0'),(395,'0'),(396,'0'),(397,'0'),(398,'0'),(399,'0'),(400,'0'),(401,'0'),(402,'0'),(403,'0'),(404,'0'),(405,'0'),(406,'0'),(407,'0'),(408,'0'),(409,'0'),(410,'0'),(411,'0'),(412,'0'),(413,'0'),(414,'0'),(415,'0'),(416,'0'),(417,'0'),(418,'0'),(419,'0'),(420,'0'),(421,'0'),(422,'0'),(423,'0'),(424,'0'),(425,'0'),(426,'0'),(427,'0'),(428,'0'),(429,'0'),(430,'0'),(431,'0'),(432,'0'),(433,'0'),(434,'0'),(435,'0'),(436,'0'),(437,'0'),(438,'0'),(439,'0'),(440,'0'),(441,'0'),(442,'0'),(443,'0'),(444,'0'),(445,'0'),(446,'0'),(447,'0'),(448,'0'),(449,'0'),(450,'0'),(451,'0'),(452,'0'),(453,'0'),(454,'0'),(455,'0'),(456,'0'),(457,'0'),(458,'0'),(459,'0'),(460,'0'),(461,'0'),(462,'0'),(463,'0'),(464,'0'),(465,'0'),(466,'0'),(467,'0'),(468,'0'),(469,'0'),(470,'0'),(471,'0'),(472,'0'),(473,'0'),(474,'0'),(475,'0'),(476,'0'),(477,'0'),(478,'0'),(479,'0'),(480,'0'),(481,'0'),(482,'0'),(483,'0'),(484,'0'),(485,'0'),(486,'0'),(487,'0'),(488,'0'),(489,'0'),(490,'0'),(491,'0'),(492,'0'),(493,'0'),(494,'0'),(495,'0'),(496,'0'),(497,'0'),(498,'0'),(499,'0'),(500,'0'),(501,'0'),(502,'0'),(503,'0'),(504,'0'),(505,'0'),(506,'0'),(507,'0'),(508,'0'),(509,'0'),(510,'0'),(511,'0'),(512,'0'),(513,'0'),(514,'0'),(515,'0'),(516,'0'),(517,'0'),(518,'0'),(519,'0'),(520,'0'),(521,'0'),(522,'0'),(523,'0'),(524,'0'),(525,'0'),(526,'0'),(527,'0'),(528,'0'),(529,'0'),(530,'0'),(531,'0'),(532,'0'),(533,'0'); +/*!40000 ALTER TABLE `seq_infra_auditoria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_infra_log` +-- + +DROP TABLE IF EXISTS `seq_infra_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_infra_log` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_infra_log` +-- + +LOCK TABLES `seq_infra_log` WRITE; +/*!40000 ALTER TABLE `seq_infra_log` DISABLE KEYS */; +INSERT INTO `seq_infra_log` VALUES (2,'0'); +/*!40000 ALTER TABLE `seq_infra_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `seq_usuario_historico` +-- + +DROP TABLE IF EXISTS `seq_usuario_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `seq_usuario_historico` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `campo` char(1) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `seq_usuario_historico` +-- + +LOCK TABLES `seq_usuario_historico` WRITE; +/*!40000 ALTER TABLE `seq_usuario_historico` DISABLE KEYS */; +/*!40000 ALTER TABLE `seq_usuario_historico` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `servidor_autenticacao` +-- + +DROP TABLE IF EXISTS `servidor_autenticacao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `servidor_autenticacao` ( + `id_servidor_autenticacao` int(11) NOT NULL, + `nome` varchar(50) NOT NULL, + `sta_tipo` varchar(10) NOT NULL, + `endereco` varchar(100) NOT NULL, + `porta` int(11) NOT NULL, + `sufixo` varchar(50) DEFAULT NULL, + `usuario_pesquisa` varchar(100) DEFAULT NULL, + `senha_pesquisa` varchar(100) DEFAULT NULL, + `contexto_pesquisa` varchar(100) DEFAULT NULL, + `atributo_filtro_pesquisa` varchar(100) DEFAULT NULL, + `atributo_retorno_pesquisa` varchar(100) DEFAULT NULL, + `versao` int(11) NOT NULL, + PRIMARY KEY (`id_servidor_autenticacao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `servidor_autenticacao` +-- + +LOCK TABLES `servidor_autenticacao` WRITE; +/*!40000 ALTER TABLE `servidor_autenticacao` DISABLE KEYS */; +INSERT INTO `servidor_autenticacao` VALUES (1,'Exemplo_Conexao_AD_1','AD','hostnamedoservidor.dominio.gov.br',389,'@dominio.gov.br','sei_sip_ldap_ad@dominio.gov.br',NULL,'DC=xxx,DC=yyy,DC=zzz','userPrincipalName','distinguishedName',3),(2,'Exemplo_Conexao_AD_2','AD','hostnamedoservidor.dominio.gov.br',389,'@dominio.gov.br','sei_sip_ldap_ad@dominio.gov.br',NULL,'DC=xxx,DC=yyy,DC=zzz','userPrincipalName','distinguishedName',3); +/*!40000 ALTER TABLE `servidor_autenticacao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sistema` +-- + +DROP TABLE IF EXISTS `sistema`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `sistema` ( + `id_sistema` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `id_hierarquia` int(11) NOT NULL, + `sigla` varchar(15) NOT NULL, + `descricao` varchar(200) DEFAULT NULL, + `pagina_inicial` varchar(255) DEFAULT NULL, + `sin_ativo` char(1) NOT NULL, + `web_service` varchar(255) DEFAULT NULL, + `logo` longtext, + `sta_2_fatores` char(1) NOT NULL, + `esquema_login` varchar(50) DEFAULT NULL, + `servicos_liberados` varchar(200) DEFAULT NULL, + `chave_acesso` varchar(60) DEFAULT NULL, + `crc` char(8) DEFAULT NULL, + PRIMARY KEY (`id_sistema`), + UNIQUE KEY `ak_sistema_sigla_orgao` (`sigla`,`id_orgao`), + UNIQUE KEY `i03_sistema` (`id_sistema`,`sin_ativo`), + KEY `fk_sistema_hierarquia` (`id_hierarquia`), + KEY `fk_sistema_orgao` (`id_orgao`), + CONSTRAINT `fk_sistema_hierarquia` FOREIGN KEY (`id_hierarquia`) REFERENCES `hierarquia` (`id_hierarquia`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_sistema_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sistema` +-- + +LOCK TABLES `sistema` WRITE; +/*!40000 ALTER TABLE `sistema` DISABLE KEYS */; +INSERT INTO `sistema` VALUES (100000099,0,100000018,'SIP','Sistema de Permissões','http://localhost:8000/sip','S',NULL,'iVBORw0KGgoAAAANSUhEUgAAAJYAAADICAYAAAAKhRhlAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2MkNDRTkzMEY0RjJFMjExOEZDREM0OEY5REVERTIyMiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozOTM0MUE4N0YzMTExMUUyODIyNUE2M0UxNkU5MEY4MCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozOTM0MUE4NkYzMTExMUUyODIyNUE2M0UxNkU5MEY4MCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJGM0EzNkE5RkNGMkUyMTE5MzEwQzJEQTM3N0RGMkFCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjYyQ0NFOTMwRjRGMkUyMTE4RkNEQzQ4RjlERURFMjIyIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+gSCchQAALU9JREFUeNrsfQl8HOWV56vq+1KrW7cs2ZYsZBsf2GCIHUyAsBBIMpDMzmYGkoXNzoTZHBy/3c1vh9n9JTshYQI7E7LJkJ0JkyxLZoDEDAmE4TQ2BmLHN74v2ZKt+2j1fXdX7XtfVbVLpWpJ5lJL/l7y/Vq4r+qqf/3f/73vfe8TZFkGbtw+aBM4sLhxYHHjwOLGgcXPAjcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhx48DixoHFjQOLGzcOLG4cWNw4sLhxqwhgvfjiizA0NARWq5Wf7Y/Acrkc3HjjjdDW1ja7B0LA+jDHqlWr+NX+iO3pp5/+0K/rdONioBHB8Ahl/vs935sz+PuiM+s8BZJgAiqz8V4BZgSQ2QDDo8yBNXcZyThE3aOo++9yILsQUBmBJOkezf6GMqDjwKpwMIkmw6J7tJgATJzGXc4EVHoQFXWPRcO/SYbXz2uQWecRmCy6YS3zaDEATjABiDwDcMkGRtKAZFEfrTMEnDxfQVbRwKqvr2dAGhkZARMwGYGkDVuZRw1celayWywWr9vtDvj9/mocgZqamtqqqiq30+m04XMWURQBH+g9hXA4HMX/dvp8Phc+ytqgKB8joWwikRgZGxsbGR8fHwmFQqN43MOFQiGKz+dVMFkNANOzWcllLlu2TL7jjjsgn8+DICiHa/ZIxyZJEjzyyCOQTCY5sGZqeJG0PJvedVkMINKG3WRooNLe57LZbLUIntbm5ua2hoYGGi0I4BoEkwPBJLhcLvB6vYB/swunAouNYrEI2WyW5eRoaM/TsNvtpQuNryvmcrl4NBrt7+3tPd7V1XX4+PHjR44ePXoSwTmMvymj+x0FI8jwtVBbWytfd911kMlkGIj0gyyVSpW+7yc/+QkH1oUYnTQDU1kNIHKow2l4tKuvt+PJr0ZGWtTS0rJ8wYIFnY2NjYuCwaAPgQQejwfwOTYcDocCFnojgki5fBI7BlkuglS0MDqh19DFJcBLCDQZn5dEOtYi2CwK2PA1FvzMagRs9fLly1fcdNNN/xbZR0JQ9XZ3dx/cv3//O7t27fr94cOHTyKjRVRAifqf/vDDD8NLL/2rnM/mQCZ2wm+32h3s8+nY77zzTgZ+fD9U4uzJXNBYZqByqcOte3Rrz+OFDyLrdLS2tq5CZlqOF7gxEAiI1dXVoAGqBCS8KIyJkAFiBQQQfZ14nh0YG1lt+FoEDP4tIICYIFKvZREPjQFRpIsvgMVqAavNiiATwYFAs9ps7LtsDodY31C/CI9pETLRHyDDJPr7+w/u3r37tXfeeWfz9u3b9yPLZbTf29vXJydzeSgUJfYv9N3R0BjkcznGqF/84hdL7MU11nvPSQmq67CprEQg8uHw6h696K6WIIjWdHZ2rkR314TuREB2AgIUXQy6wBa8GIVCHlKJBETQfYQSaQilshDN5CAii+Dy+yGA4LMjIKyiBWw2AVBRQcDugWq7BdKRMIwkM+i/6GrbQEIW8bgc4EJXaEEg2RGsPocTvHYRsghCwO+ypXJgw/fYUY458HVOdLdOt9uLx/nxSy+99OOop/7i7Nmzvz9w4MALmzdv/i2O0/RZT/z2VVjY1o7AL4A/UAXf/eY34ec//JuSxtK7Rg6s98dYGlsRkKpwVOPwq+AKIKj+PTJSU3t7O3R0dACKbAYmEdkkl8nC8PAwDIbCcHY8Cn14oYeLAmTsLnChS2G6CcFUg+AqZBEMBZmxjwMZIyHj6wQrpEQPpO0+GMtbmXtCdc9GAd+TLRDy0V0JMmTwPRnZDm6HG2we/AxkMAF/gSjlQc6mIZNC3RSPI2htmp5zIsCuu+GGG67buHHjki1btnwjn8sKA73noP2SpQxYE8JSpEsS9jQvSI+qZODAeg/A0qI/u46xCFgBdRDA3JFI5Cy6ribUMoCinAlcDACgq7sbTgyMQE9GggHCqAOxibrK63FBFV5cAoeFRLgsQRjfE0eB7kA2ImBh2Agigm4oFgdnyM7AYBMJJSLk2fvwedQ5ySy6QPxvAmgMQRxKphBQNnDicCO4Mc4Ev8sJHmQeN35uHTJaIToOo4MDTPjT5w4MDBQfe+yxTZq2zBWLchrddA5dtAPjSuYWVWBpop7cONdY7y93ZTGwlkdlqmoVXD482REK+zEKc4yOjrJI6dSJE/DyW+9ALIV3/VUbEY6IR9HKwJTHC5hAUDjwwrgIFKSJQJgUhYk46JLmmQZDXYXgsTMtJrODUlyT4p5kQWMVQEBghCjnIY3fE0MWHE1kkB3t0FrthaZgI2QTMSovKUWYR44c2fbcc8/9XnX5xRGkwV50ozl8b9RZgHhBKrlBAiIBksR7JbpDcY4wlmDiEjXm8qiu0Y+gsqfT6Vgc3QyG+YB/Q19fH4WGIBTSGKMnFASQYFfvctsF3F0loM1wBkgDG7vw+P8CMmIco7wsAmQsGoPIyDB7joIJivDeeuutX2cpn6HeUFmUaKmiDGka6JpzOmbSUiAEyEq0SgeWPiMtmOSytJSDFhl6EolEmu5ijLiU6A+FssdJ/IIfEwnNel7bga4z4HGCgFpLzucYOCjdgXiKobbarv6eEjAtSpAKKjYnAEufT+PAev8AM4p6fYLUQclJZC6JsvXkKgKBALhQ4wjo5iAWQQdToPLG2fkR+LUOmwWq8HhQwVPyC6x4jAQsvBGOYVTYq9407ADt+DpNP4kG5iRAMb1ns3HGep+gKleaAvppHhS+EjJWgdwhXRS/38/cjN2OwELXiKJk1n62hIfsxgjRbRNBQsZirpgEPh5fd3f3IYzyUuoNI/ubFsiLL12FEWrWBKAymwEgV08ivhKjQnEOgco44SuVAxyG4AUKxWmQO7TZFJcBhRzLK8EsaV0iSicxDeUeikXFNaqJWgw4Tut+FzAlN4UoV2YEZKjUNQtzBVgaiPSTtwWYPM/GXoveUKL8Dg2a+6PMOQl45otYyD57UZTDKqKvQ1DQVAwCh9w1ASgUCp3T/+aONWtlB7pIM+Bogp9yYPT7uMZ6fwDTM1bBMCZVCNAF0bSIaLVMcEizesLxmChnxrIVqggnYODNkNez8Mdu/gP2XDlG0m6cSk2QziWNJYF5cZ1ZpSa7KKRflAsjqP6FrqZl9k86pSBAyXkR+NVjLblyQRTlhUsvZaCRy5ArMR0lR+k13BV+sNFhWXFB1QWkXchNUOqBBiU3gSJDtgxt9nRJDl2xqE4fMc+M4CBWDdKkpkqnjZcsg6b2diiiRjSPLmX2myo1hzVXgFWuRl00eQ0xgAXvfpuWdKTISQEWekyHk00cgzx7riObL7JDxYNkPyCngqeDJjdVxI90nYTR/n6WiiiXGdFcZKVOQotzAFT6nFW50mMt3UBuxYHD2tjYyFwhzRdSaM5chrdKYa3Z+jH4K5Kki1ATuT1e5uYoXUDgWrNmzRXo3ijRS5POwuanngCb01XWFVZyZUOlA0soAyh9QlT7W6sSFdH9ecm10EpgAlQ8GoVEMsUK8qA6qKSxZWGWTrYAqXwBYpkcuP1+VmZDx0jgb29vv+Kaa65ZogYn4is/+4mw5/WXoSoQrGgAzTVgCbrj00/faHOEWqWoQwcwK14AJ4bgvpqaGli8eDFEEVQ0xhMJwNgdwB88X6E3GwIRf1UeNdZwLAEOt4dqslhtGB0j3hD+L33pS3+kAQtvBPEHX7lD2PrMP4PT5cbX2sAiiBxYHyBTlaZrYGLlqFY96lBfI7rd7iC5QVrWT8KdKhxC4QjE40mAYD2+2j2rwBLVmGMokYYsEqg/UMM0VCQSYZUYn/nMZ/509erVS1QRLxbyeeFH9/6p+Ldf+49wfM8+BkLNDZKb11e5cmBNDyYzQOmrGLThUf+d2MuKgKry+/21tLIH9Qq7WMPDQzCA4CoK+HFNLayGatZ/KAIhks7CIILdX1ePOsqJrjDJboLq6urmb33rW9/UglvNxe94fpN433VXCq/+v58KWg6LJtnJ5dM8IwdWeVYSYeLKG21hhFsHpCrD0MBFNe5udH+LHA6HSCtbiK3oxPf1D8DIaAigvhnfUa1Eg/Lsn/Ac6r3u8SgULDaoaWhCfpIZsKhA8dOf/vRX7r///v8AypKxkquXZclayOWY1kRdJt51113CnXfeKfzoRz+quBU62l0xW1GecQm8fp2gTaenjAV9NPwquBwIqqpgMLgMweS++uqrYenSpaxtUu+5c3C85ywUHfj2BYsUtpIrg5yp7n4kkYGz4Th0NDRCIhKGdCIOg4ODlPgUv/3tbz+Kgr7w05/+9FfqedBPZ7FkMJp88uRJCQdMl9eb74xVLsrTAKSvCq1SwUMgosRhjTqC6r/Razzo/lqRqdaiC6nCiAoIWCSEu8+cgQNHjkIsngZouwR5zzer2srMCshSp8YiEM4VoWFxO1gddsZYAwMDhBrv97///b9/6KGHvoUsXK2+RWNxLVjRp1kutP/EvHOFZmsE9ZWgPh2gCEi1uhFUn/OjtmhDLXV1W1vbumXLlrlvvfVW2LhxIwvbT5/ugu179kDPELrAxZ34SXXKzSxX1kmnDEIkm4ejeJw5mwMa8AYgzRRCl0jgyuVyjq9//ev/bcuWLb/+8pe//CcIsCqVlfSyQd8q4KJ3hXpx7tBFe05d1OdS70yPyl41eNKbkZk66urqlqJIb8FhoZTCJZdcwtYKxmIxOH3qJLy5/fdw8uwgQGs7QF0jgFDZ0x6DyQzYhsdhVWMt1Ld1wGjPaQiHQiy/RUWK+PvWPPzww3+P4Hr35Zdf/vXWrVu3HTly5FQikQhRfb/uOgqV5A6ts8hWeg1lHNUej+eTnZ2dNbW1tdV4tzZi9FPvdDodFGbTOkHKrFMRH61Apgtx/MRJ2LxzF/QSUxGoaurVCecK7rGhQqE/lgarOA5L64NQ194J4709kE4mWEYeAcSWsXV0dKy599571yDAUsPDw6d6enoOo2jvw+fi99133+PUM+JiZSzjwlOHLurz66M9FOQBPGE3IKjqbrrpJjbXx0SGw6GsKqYcDi2BwjB9YGgYdh06Am8cOQEsOdSCoKryV5BYn0HiFP/Xi3oQbxHoCFZBNYIrOToE2XAIErEo/s4U2J1OrSjQ3dzcfBkNtTo2+cADD/wSP2akkljro3aFogmwjOsDq5DiPXi3pru7u9nsPwKMPTKjpVSRCPQNj8KhM92wo6sHUqEofhLiM4iAsjsvKEbKq9Q528RFNpLMQqYYgVa/FwINLWDzByGD4JKScQYuagMgqAsoqNSGJEAoFBrGcxWpNJ01W4xl1Wkrr06wa6kED7JUkZiKEp3kCpLxOPQNDMHuoyfgUDQJiWiCFu4hKhCjNQ1UoKRzfUIZt4PP5XNsQYWErJfFQ8nKNkhihEaRgU83Qa3NzylFpzKySbGUKqAmIcShdlEAu0Vdm8Gy4MoXSbSQlMqGqXyY6q0kgWk9AT9HFiQ2tWMxJDW1I47nC9AViUMwm4M6twscDa2Uggcpk2QLMOyFHBQyafXYZNKWAynKsCo3rXQxAquceHcaIsJqFVigAYtKlU6cOgUHDh6CPXv3YYy4CAeBSVmRjLfvNL4Gr3w6BVVeN/zhlWvhE2svg9pANQNPOl+Es8MjsLurGw72D1OukrFiFi9ea5UXFgZ84ENmcKAropou0SKCDz/H63LDaDIF3aNh9vpcNgNWfK4Z3+NyWPA1Vey4ZNSAAh6jB9/vcqluHG8AWl8YzhQgj8cmGiid5svH0nmI5STwOKzgw5vG5fFDfW090nkeBrtOsrYB9FlDQ0P9qMNyFzuwACYumbcasuwawLxayS1llelvSnqGx0Osq4tMiyIEYzM+M3BJyqocBMknl7XD3/zX+2DtyhVw4sQJ2PvuuxANhxFgfvjqLZ+GPxP/Dfy7v/4RnBkLg1iUoIhATGfjKJ5DEERw3fFHfwgrV1/GPjWCgvqVvYfZUnxWtooMmEfSyGVT4BpDoOSz4K4LwJ984QtQV1/PmCuTTrObY6C3G1qam2EpHkcWsXAEg413RyJQNNEMEoIunitCspAFF94AfioDyqbZnCFN5ZA7pOZuklKbLF6srrBcolQ/J6hVLriQ5tmJotyUVacrBHQpMp5oxkJly0lU0JHbi0dhZV0V/O39X4M1eDH/6u/+AR7b9BzEEFSWXAo8eLHu7T4Ld/+nr0IG3RArqwELq/A8OzoKRwd7wZdPQTI8Dn/9ve+BF9lr28Hj8Pi2nciAXnA6lIZrVJSXzWVg75kzEOk/B28lo6zvw59/9avsOH/wT7+Ct3+/A9L4OdZ8Bq5avRLuvede2LCwGVnOA692D0FBNqlgFCZOTxAzUiSs9ekaHBzsrdRUymx+t37SeUKHPm15E2Wj6cI51Y4w5EbYMi55mtU2VIqMEZUQH4drl1/CJqZ/+9YO+J/PvwKj3gBkmxZCBh/DVju8fuw09JzrVXkPtRL1RfBWs5ZGFH3mkJkGhwYhijqPjFoeOSlCo6X7stKozen1gb++EbyBIOqhNGSR8fr6+xnrEvNY0HX72peB4A+wbPtLW96EB7/7XebqF1V7YU19ddmFE+y4WI8sYus8+04NWAMDA8NQgVUqH+UByWUe9dqrVOEg03JmNGIsMg1YbMUNlY9MV15MrJaIoGArQEtTE/unPV1nlKjRiR63KgBCQzNYvH44l8hCV/8QE+alg6VlWvha0WZnR8UWP6gXXtY1/9AOn3SUFV/rQO0l2hw68a8cZ7ChCdpXXQbta64EZ7AWBHzdvoMHYdubb7LnOwKozawEVPObxUpBACKK3K62AINAi4wVqsTM+0eNdLPe6PrJ1RLgCFc4qJcnSzUQsJQl5VYSNfjqwtRfg+IYFTjYhFLLSbh0oVY6IzGXZ3N5wIEhfRKjwSff2gnjFM4LE9WaLEIpAivVmRuIxQgy8qaS+h6JIkFJiVTtThc0LmqDxrYlIFgdrD3RwUOH2O/zOmxszaFkyJNo32WjjoHUzETtLkM3GWrPBGrPEGesyYDSrwc0LjylNgwSZZ5peoPEKnXLs2mLIcjVldNYkhoJUkSGD+f6+lge6PPXfhy+sA4FeC5PHYiQlWzIWFVgdbhg39AopCl9McXNf95VzTwHKciKcNIAY0emqq5rBBv+HkpL0FRUEYMTmpQuTvGxFHFSYxNyhaD0OaV6+XgoFIpU2nTObDKW2eLTSWCjRZwUERKwWNYZBbLDquaqCvlp0rAiyx1lEFwnMRrbh1EgtX/88b1fgTvXX46Eh0xILED5L7xILos47aHLF7gwVGbtkqQJTEd60cF6SSiJXL+/ijX/iKazrL1RuRZJrNmb0pG51MkZI+YIMlbccG4vWvFuxlJFmLiiWevBUCQ3RitZtKkcm7aquVCYOvBEnUOd+xIotAeHR+DZZ5+l0BzqAwH4h//yNXjwtlvAg8AqSPKULCXqUmETxbUwI2CZ9VeQihLTXnaMKFetXMWYtyeSYGsO5TLrvWxsEYjEwK0BKx6njt/RzMUeFZbTVhqoJjXTp64xdIdSjZXWTtGm7XtYyE39bcREKMyLghWGkkl453e/gyeffBJGQyEG0v9x1x/Dk39+F7R4PZAsFqcFCs3nSSpApBkSQ0lj0XJ/WV1Mkc9BIhrG2CINGy6/HK7++AYIxRNwbDxWdjWOUIoIC0wv2tSmaxgx9+PNl6lEV/hR57Gm6h4zCWBojLG0XJbWmYW1ZGTAmoJtKC3hq8IrmYVINAR94xF47rnnUPcX4Y9vvx2aMFK89Zr1sKAuCP/5H5+CE/i8daoMPgOJdN6lzeCnMqaS1HJoBEYR3XdscBAig32wbmkH3PH520BCZt16ZhBSeRmsZb6eUiDkCmXKs+HnCWq/h/Hx8TE6RzyPNRlUxuYeEwQ8njQmpEjA0x1KrMVSDlRjRSdZnuJrCG+08pkK/TDyG07loGc0BJv+5V/gscceg2PHjrFV0lcs64Qf3v0lWODzslaOU80KSe9VY+H/qPRYCI9BdXIcrutcDNdvWA8hwQ7PHz8Hg+l8KQ4RzXJY+I82QWEsBjSVsQYGBkbU81Zx29aJswiqchFhSWNRuoEeKYlIpjCWRTnTpVyWUP7bCIBuDyv4kwK1MJgrskUML732Gvzw0Udh9+7dDLRrOzvgLz5/i+qK5Cn1EsDMJuQEWXsPMHeYCI1CamSQtezOuKvhuOyEAymAuCQqN8pUbkVtsFtUAxa6ueizkbH6KzGHNVvivRxrTdq0iIBFRsxCbMFyWWyXCBu+MsfSCdN+E4HF5VVW6tQ2w5gswrlYgpUv//jHP4a9e/dCDoODz34M9U5bK2RpnvADSjeUXCG+ntIMSQRUONgEmcZWsNQ0gs3lmhLMJVeIbpT6x0tqZxktOdrf3z90wfmPeQ4sCSZvt2YEmKwBS+tvwLLvWmRIZFbU5vamCEC1OUWnW6mIqG+BmOiAwUQaDqA7JEHf29/PloxtWLZkimkVVWMhS860hSkT/KrW8gVrob51EdQ2LQCPz886zszUSF9RDquoy2HR/XbmzJnhShTus515N+ayimYuksQpVTiQgGddkCmXRREfAWu63lAiXjyn4/x/U1PZGtRcDQsgIdphNJ2FfQcOMJdI1lJTA5YpXBtI0oxbMyoiURcV0gQ63hAEEeECWzzaLQKr5ZLU1kXEWMjiGBSGK67Ar5JcoVnrxxK4kKnyxBTkDpkrpL1obOrdnsuafwO1g8Tnmqu98N8/c+P5G5oeqMtwdQ1IOKiHOu2nc7a7W8kRUeQnTJE6UAE2fbpBmKj61fezLPx7IBc7q+sqMMYiYFHaBXVnqK+vT591v+gz7wBTt33Ug0smYFEuKxQKMXdF4CLGoklhUDsPTwYWfkQ6CTa8GOsuaQO71wNKBZ/mW2wgerwgWWwsQepCJiQAnBsdK6OvlP4IWpQ3E1eoLPESWO7r/TSgpaoGp4VSDXnGmJbzOawBHEmoUKsUjUVgypuJeLQcMRZGQOxOZXsLsk0nLQqwzGrcCFi5DN7VYWQtH9y6otPUbdIFX9TaAhs+dhWEonHYduSU0tFYF9UJkrrxod2m9AtVxbOp+yNWkxWxTrKOpm7YSaYmHoJ4weWdkqqv7AisYlZpu63VpaFw78YbLsvFu7krNDLWJHBRLkvbEIAuNC0gIGBZSS9lU2p7bXnyV+CFyIwOw6GDB+ChP7sTNizvUCoiqINeIgbWdAKuXrEU7vnKV2DZ0k548vU3YW/fALuQJdhg1EkMReU0fn+1mgUXwIO6ragykaTbOIO5SapPp+kajFwDfj+b26NMucNuVaeFJu96OdWpIlBRDkvKZlSyVbrMHD9+/CQY+q5ezJl3gMnVDRqociqw9OBiSVKajI7FYg4S8LSwgtwh7RFIxXQEIBbxGb8BGUpM5uHpp5+G5Z2XwK/+8n7Ysu8gnOkfABnfs8Dnhs6FLVBNc4cvboafvr0bQ3qxJIuK+SzY5AI0+Txsv0LSOTt37AALPrmyuQ6uaG2AZIY2TiooKQoEYZ7q3gs5CLrs4LMHYDwchrffehPWX3kVLK+pgmg6Q51r2d44MwWX2yqCiJ9NlaOg1rkXCgVp//79xypVX80GsGQTcBV1gNKPkqjPZDJZBJWDtohjW5igJvK4nBCmUJ42XqKGanrBjNqJJqDT2QQc6B+Cb/7Vd+GT11wNK5ctg3ULaiGPrnJodBxe2b0f9g+HYP94gl0wh5oCIJGcTSWhEb++uaWZbZpJidW+N9+C7SfPwBVr18LKujooCBY4NjLOnpNpp4jIOPiQtqqamiCFwcapoRF8z3Y4PBCCy1atgg5ksJzFCl2xLORn4BeJKWknCyGfAwmBzjbaRLaORqMDR44cOQNK6ViRM9bklEPR4AbNWEvCiDBLLpB28mptbWUroD3UOB8BVExEFRdn0e0pQ1FjoBbZzANjyDpjI1HY8ZtXwGN7g+ke2ls5jyyXQPBZqD7KZlfWqMtaagFdEGq4sbyAQ8L3VIOALom2nRtJ5OH47oPg9fnBRcPpYBPEdMCUY0u4qkB0+theh5RRLyAQzoIdRk73g68mA26vj7lJYZoyHXKxTvxcJ34OrSukOU6b086AdeLEiWNdXV3DnLHMwVXUAUoDVVYdOT24KBlIOgsFK7satByMIkSX28mmZCCDbsKrW3ZKtUsuZbNLLfqX8d8SCIwEgY7yYDYH6h4MBlhF6cTrIiJALBQgWKtZNQXL9ltEFjBY2a6q+G9MzIuKbqL1hfh9DrdL2fOQCWyr8h4ctFkmfY7dZp9Rpv28G7QqGxdihCuB0tudhDu6wZ0oEdKqN+Uaq0xUqIErawBWTn2OBDxt45cLhUJObfdUn9cLfo8XEnEEVmxc6YhszCVRgpQiOJMx1fwcVXYS+4jayiD1kQBFTESgIcDIgqBLRyjgoZp8mhkggGmpAfYe2olVtMw4WiI36LEr+/8UM2n2XporpX2Ctm3b9jsdqCoSWOIsMpYeWDkdY2VMWIt280pSNempU6eYzgrW1IAfhTVVlUJ4TEmWmtYzTbVp2BQpTllxidqQdEV7glpfVfoGQZ3Akc3H+VyWPKNEOblBqn8nNwjJGMu4azuq9vb2HkVgHVb1lcSBZZ4kLRr0VUY39OCiGuUkURd1sKN8zoIFC6AKI8Sgn2quMDqMhWA+mKSmNKrQ1dpoRQ4Ci0yroN26desrkQhGCaqR9iRZwIFVnrE0tkqrQwMYAxaCKZNMJlNUQnP69GloaWmBGozMglU+tssDjA6yoj6Ygz3RJzIlRoK0TpEW6abjGA3m2O8jtkLWjj/99NMvwPnl9NIyjHSb1OVtHFiTo0JNY2mgSunApTFXIYZGd/O7777LBDKLEPGOran246uSAOPD5/XVHDWKJXwOq8pW0ZJoJ1Z65513Xtm7d+8R9bqxPN/69etlvtm4OWvpgZVRQUUjqQMXAxZGh0mMAlOUhT9+/DjbJKC+sRFqEVhWJ7qDoT58V2KaUprKNLkUCVpYMtaZjICAmpICBXKDmUwm9/Of//xJXX6PAerKK6/k28qZMJbmDnMGYCXVoYFMA1c+QhOAaFTqQie0s7MTamproaU2AAJVMg/0KGXLc9AlUnmMi7RVNgUWdIOUxiBQEWOhYP9XHDvVSJ4By+/3y4sWLSpt9MSBNdkdFnXiXQNWQh2aW8xqrBWNRmO0cmfXrl1MxBNz1QSDEAgGAKKjAMO9UKp7nyNsZWXpBRtYpSJ4E2G8MDKrlCVQoQKIPvrooz/GyFK/BlOmLtEk3gtTLoW7+IClT5Tqo8K0Dlhx9TGpA1ceQRVGgBUOHjzINgpYvnw5NCPAFtTWKCUw/chaodE5o7WoBIhyVuTBq5LjCK48W2WkLXnbtGnTP6KuPKTXVjSuv/56me8JPXWCqajTWSkdqLSR1DEXVTukUWeNkyvE8JslIWn/HNJbCxvqlAUXPSfwneGK2OZkOnMTqPA4q9Ix8BYyJVDROHTo0N5HHnnkZ+q1Kk3OowuU161bR5FiRW44XgmMpU876HUWgSumG3E9uKjvJrqIBNVpbd68mWXjV6xYAQ319bCwsR4stO6w6yh+SrxiW3ITn7ptFrZYwptJQk0+yUBFLEVRLzJz/MEHH/xeKpUKgWG1+I033gi0b5DSM6zymNlaAcDSwEWMZVGBRQylNWLTesBr+8qUNi8Kh8MjTqfTfurUKfvOnTthw4YNbDk+7aZaQK3SNzAM0kn0IJeuUfbSqZDzzwr46EdZleklVzYNDVJCmUJSp4/od6Cu+l876YcpBJDRgIWgk2+77TaZyrUr1awVcAxmrKXpLCdM3J+wtDchKD20qIXkcGtra/OOHTssVF26evVqJmZlVsOOcmtwBKRjBwFWrKF93FRwlWst+dH8XEIJlehI1FAunYJWIYVuz6rsFW1VNsd86qmn/u8vfvGLfzaCij6AcloULWptNCvRFVYKsLRR0In4JJzf/NK4m6rWw1REnRVHAU/gakK9JVARIIFL272erH9oFKQj+xBcawGCtbOWimDFffjdDpuV3UWedBLaLVlwsUoKG9NZVMz46quvvvyDH/zgUV20rNWnqW23ZFnrkVWp4t1aIcehZy1NxE9oHVkGWAwhyFARBJelpaWl4ZVXXoGbb76ZtYZUOt8pCyF6h5G5Du9Ft7iWLV6l6gGL/NH+QvpOF4KKKk4D6QR0OmVwI/MIaj8K6pWFN8c730HDGyYJE6s8tGiQvZbYmZbDUQ6rEvcrtFbQsegz8TmY2FnZasZWoNvVHk8wLYeiOcSG1157jd3Ja9euVfo9WI6yToA9AyNQOLALYPlqKC5cAlbR+pFsIMB6hlqUhabpTA7qCym41GthW/KyeU5QdlndsmXL9oceeugv8UYJ6W4wrcKjxOwELFaPhoOL9+lBBQYhr298a9zP0GwrNVkDF7rFemQugQTw5ZdfrnQDPHSIdQTsGRyG9OH9VJYKYucKsFHe60NW9VQcSD1Kk7EotIl5WB7wIKhcDFSkkWhp29tvv73jkUceIVCNqjdWWucGJ9T8UHHj3XffzUBFNxBNcXFgTc9YmunBJRoAZbaVGjvpCK6xc+fOScRc6FZEugi0lyGBixKqJHrPIbjGuw6j+I2BZeVasNXUg/QhpCSUvZuRFQt5yIXHYaVHhI6aarA5XSz6o6iONr/cvHnzG48//vhDKqiyOlAVdOel5Lgpf7dnz56Kzs1ZK+x49OAq6F0dTN70US4TALiRBUK9vb15BFfzrl27rJTr+tSnPsU2yiRwuQhcqLkGhgcgRu2FVlwGvsUdINs+uNNhYaXMAkTDUajKJmBdfRUsqA2Aze5k9e60VS/NGiCzPrtp06b/jWCJ6HJ4WaNghzmz5VRlAstMb+mBpc8tmuXCSsvKaIkUMlehsbGx6cyZM65f/vKXDFzr169XFmOcOAFV6I56RkYhtmc722mrdsUacFQHWOT2XlMS1JuBSphz6OLSCJ4lVgmuaK1nW+FRtSu5vsG+Qaopyz7//POPowt8Wo2AjaAyts4EDqwPRm9JUySsjSxl7FyjNRSRBgYG8sFgsBHdkp/6kBJrke6qq6uj6RKMrNxsJ7HhruMwOD4GdauvgJpF7RgqXLikp9U6tKlAOBoFJ7rZj9X5YGnLAnC6PVomHXp6emiVzdAzzzzz6NmzZ9/SpVY0cGm6as6CqtIZywguoYyuMms3OaEHBLrCXqrjIt315ptviugm4YYbboBPfOITcPToUfB3dUHV4BD0joZg+HdbITc2DI2rrgBPIKBbMDF1wpMWUuSLEkTHh2CxpQhXtTVBY10t6iknYylkTUAgUbnPzt/85jd/l81mT6nspJ+qykGFduibL8AyA1cezNsgletaox9uFPUjeGHTDQ0NzDXSpk8ELEpJ0G6thw8fhipvr8Jexw5CNjQKLes+DoFFbVPmiaysrRCyEQYJzkQM1iNLrVy0mO0YRpl0WmRLC0C6u7vT27Zte2bfvn3PYiQX1oFKYyoz9ydzYH344CqYPGfWA0K/mlq/0sdNCxTRNWa8Xm89AqyGUhK02eb1118P1157LRw5cgS8CAIfstfA2Cic2fIyNK6+HFrWrGN75RhZyoGAoi+Pj4dgoVCAjR1NsKCxnnXvo8TlGfwsAhUGDAffeOONJ+Lx+AGd64uDoUJ2voBqLgDLDFxyGWAVDYDK6YClPVLSqohusR9D/QQyVQNeeBftGr9x40bGXlQxQNrL5+mDvtExGNyzAzJjI7Bo/TUQaG5lKQQtjZDOZtnyrI/V+ODyJYtZ4xBqsEYRHwEKtVQcXe+zx44dewlZKqQCSWMpPaiKusz6nAfVXAFWOc011S4X+nWKWQPAaEdXF7EXhvspn8/H2OvVV18VaPUPMRcNco0eBEf/yAgMnuuGo+FxWLLhGliIkaPVboXxWAya5Bxc194MS1qa2Upomjzuwfd0oWZ7991392/evPmfEMBHVQBpFbGa6zNGf/MGVHMJWGbgksu4QzPWMq6y9mrshe6pP5VKxZuamhoRWIy9qPyG2Isix8PEXq4BOIvsdeyNl5iLa7lkOVwe9MA1nZ1QWxNElrIylqINNk+ePBlDLbUJ/34dPz9sYKmUIfLTdy+E+QKquQYsI7iMFahFmLwA1ri6Wr+cbAJ79fX1pVF71aJ7rEU9JFJagJjrGhT4lFQNIODGYglInjsNN1+/Aa7o7AC3x4ORYBF6kKHI9e3cuXP31q1bn0LwndKxlD6VoNdTxfnGUnMZWMa7WjJxJUaXqGerzFTshdorj2I+QeyFkaN7eHiY5b2uuuoqtiEnTQvRVrwdbW1gczggFo+zxbOooWLoSn+lslRsGpaaVyJ9PgELTAS8mZAvGLRVFiYu4Teyl0dlrzyyVwK1V11zc3PD66+/zvJen/3sZ6ENAUVzjeqWuQxUe/bsOfzCCy88gVrquPp5xtVFORPXJ89nUM1lYJkx14WI+XIAo0cqhbbRcnYEzkhra2s7MpKPNNQdd9zBFm0Q0JCd8q+99trz6P6ew4hvXP0cs4gvr8uks+NbuHAhRZ/UrZC52UpcvnUxA2sm7FUw0V1mmkv7m9wiNdWi+RwLXvBx1FrnEASdyFJLn3jiCbjllltoZczwpk2bfobMtl2Xl0ro3F7WoKWYnqJa9W984xvy7bffXup19bnPfY5l5Tmw5g57GbPyZtGi0UWmVJeoLdqgKuAsaq0u1F/Hkb1ufvHFF5HAjv0fdH3dOtdnxlJ6gS5deeWV8gMPPMBWbms7bdhstvnqCecNsKYT9nr2ypeJGjXmIcZyaMBSX5NOJpOnT548+TYCrRfHmE6g61dq53XuV19HJdME9He+8x1W065VfNIjzR9yYM0dcGkrKeQy7GUEWEaXHtCApe4RzF7DQKfWTBl7S5RjqQkCnfp6XUxmnce/TWMvutCiTkCb9ZbP6oClLTXTZp71LZZSMHFVdtYQ8cnzPY3AgTU5oSqUYS/9kjMNVDY43+NT37AkaxJJFmEOV3pyYH1wkSOA+VSQBh5tNZCgY7wCmE9qT9q8k0Pq4gJWOfYqt55R1DGWUZcVyrAUB9VFCiyzyLFoiBotMHHRhmk9vSGlwQHFgWXqGgVDesK4cEOeZnDjwJqSuc7vBmC+P41c5pEbB9aMhL0wDQi5cWC9bybjVqnAuueee1g1wHyeF6sko/JoqsCYbRMqtb8St7ltHFjcOLC4cWBx48DiwOLGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWNA4sbBxY3bhxY3DiwuHFgcePGgcWtAuz/CzAAFckWXF3yFlsAAAAASUVORK5CYII=','P','dsgov',NULL,'$2a$12$T/98yfGrv2xhenld0R.Ceu0u2zh0XXMC22ibfJ1Lc6P8/t7Ov1b0K','d27791b8'),(100000100,0,100000018,'SEI','Sistema Eletrônico de Informações','http://localhost:8000/sei/inicializar.php','S','http://localhost:8000/sei/controlador_ws.php?servico=sip','iVBORw0KGgoAAAANSUhEUgAAAH0AAABQCAYAAAA0snrNAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOJgAADiYBou8l/AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAA/ZSURBVHic7Z17dFRVlsa/faoqVbdCJEDABg0IlYCPRdMivlEbVGzbtXyNukad1qEdRSDhYetiZtppq1udpmFGMVUFKzp2jzPto3FGbXucNS20sW211YHxrUBVBRWlVaSBYOpWkrrnmz8SIo88qs69VYma3x9kUXX32V+yq+49d5999hUMMSDcs+648VDtV4A4mcAY0aCIfOxAXhpW0f7w9ads/aRX26cnvwDhaSZ+RfNCMZc9hAlr18L38fDaqFa4UYCqHg+ibBefbqifnVohAh78ttugKxPDIcz4RdNRoe0jah6jwq29BhwAhOOoZXlsfe2/r10Ln9c6hoJeQlpygYRALsz3eAJXfzxy8gqvdQwFvUTE1tWcB+CaQu0ILrjntxGjU3lvDAW9RGhR8wH4CzYkQhC50UstQ0EvAcvXTRouwJnmI8isaNO3C//A9MJQ0EtA2Ke/RXKEqb0IjjisbdtRXukZCnoJ0DpQ4caegKiAHueVnqGglwAtZZ+6sRfAsTp00is9Q0EvAeXDQ68KsM14AMGmG857/2Ov9AwFvQTMm7Gxg8B64wGIdT1l5kwZCnqJYE6tgmBvwXbgp+3Kv8pLLUNBLxFLzt/8hlDdDkAXYJajRvTms99930stQ0EvIYvO3bwSgjsBtPV7MJEh8PdLz0ut8VrHUNBLzOJzkj9SVFdA5EWgx+u0BtgEyIVLzk2uLIYGz7I8Q+RP/ZzNTwJ4Mv672jM1fTPB3FjQp0X4J8fHpiWzUy8X0/9Q0AeQurOTzwF4rtR+h07vX0OGgv415Gtzei9LbDlGwTddkccSqCYwWohKCHwi2EPILpK7RLiJGq9aZerVXfMiewZadzFwF/SGZNCCb5oIp1NxIsgjhGo0hWWAKAB7INgDjRYqfizEW1T69ez82q0Q8SzD1CNRquDo1Dk+4i8JuQDEGIDd02Xp/gcgAYCd/6VABMh2UFvx9PMCPKK0/o/PF9XucCPHiiUvp8g5JraKfCpTX/ukG//7U3jQ799UEcr4rhDIJRCcDehQ198MgIDdseQXPwTY97JoBSuR3iux9B+p+Bsq339l5098z+0v0s1d2ywr0H4DJF0PSsTFJ0sBPJPAmY6SVVYsda9SvjtbF040zIGrUwW8wcxWPgFQ+qBbazYfAcf/d7B5LQTDXPqtoHAOiDniODErntpIQUN2R9sjiB7XbjpoKJG+Wtj2UwDVLvUdTBkEdZp6biiW+mn28MhyXCGOxz5KRv8TuejbZeFYMgrHlwK4EHAd8J44QYgHrFHB93D/poLXnsOxTeNC8dRTQv4S3gd8P1gugjusT9NPhxvfG1s8P8Wlz6AHE6kaqyq4gSK3AQgVXY1gL647uqBFCasheQrh3yDAd4slqwdmsz23sSy29egS+vSMXoNuJdIzFfEKgKmlkyPrCjk6HE9eBCVNEJT+WycY6xPnd8F70rUl9+2SHoNuJdIzQfwPAOO6LhMEOu+gW4nkZYQ8ilKcgXpnnPJxfUXj5t43LgxCDgl6KN48AeRjAMtLrCUXDKhn8zkw1NB8Bii/BBAorqS8GN+R8/0byC/NFrEDgx6lEuiHAIweAC0v55MMse5JjxelHwcQLIGmvBDi/HC8ed5A68iXA4IeHp26EYCnuynyhZLH9Tza5IePDwEY5dLdDgBNEHlUBOsBuC5SoHD5YXdtG+l2nFLwxX36Xdss6rZbMUAnKdHst4bMGl29GMTphi5sgP+qoVa11UW2HPxm8J50rVKYD+ECmJ1FhncE25YBWGaor2R0f9NDgexVbmbBArwDYpnS6lv+gDParqsRu9xnqZz6BrU6U4QLATwCoKdy4D32zm19riFbDckjQUQN5aUV5WS7rnZBTwEHgLbFkaRdH7kJ0GcB2G7khagPxzZ5Vp9eLLq/6SIy13AMkvgHu2z3Csyb0XHAO3MnZluBLIBPAPwBwGpEqUKj02cp4loCVwIoA/AsorNyfTkRn4qSNEgMyWtlyj97z4IJu/I52q6b/LLVkDwZSv4XwDcKdGZp5b8OwO0FyywhCgC6rkWnmAwgxB3Z+po7Dwl4b0RFZxfWNGXqav4aPmcSgH+m4Im+TIKrm6eQvNZA3g5CLs434PuwF9V+SOJqAAWnWoW4drDP5P0AkAtmTwfFZPP7zkxZeLmpc3v+lI8A3NzfcaL1Uhjt+JT52fpJRpO0bH3NM1Yi/TDIvyrQNBKKbZ2Z7TyzDUoUAJDqWDNzeRHzxmW8FHQwlXdvrRTgewamz9v1kf9041tprEDPxYt9Isq51I3fYtMZdOFRJsYC7WqNOR+yAeciAOFC7RR5h1vfrfWRNwFsLNxSXGxLLj4KAIQ8zMhaZLynanpyAVxiYPZR6+E15tuIDvDP/zYwm4aGpNnftAR03bKJUa0cibOsRKp4S5krXy8HMKdwQz7q1Xq3pvzewMxX7pMBSXLlQ+fpHWgxtA8IeT+ib5d5qKkbKzzsPABWoXZCNHmlQfzOZhM7DRznlQav6Tq9w3jvMyHnhkeFflOe2FroPW3/aM4yMQv4yjybOds3Tt6OzlxDYVAmeqXBa7omcvoVN4NQOEfTeSMUS16HaJN3FbYK0wysdhR6X94nnQWcnxdqRuEkzzR4jB8Asp999KJVVb0L7tbPR4vIv1hV1bcglv6JvfODtf1l2fqEFCTSJgUce0INaaOq077EFGohxOAOOqKzcognHwBkiQdjToHwQauqejliqYZQmdxnUj9uNTRXw4dKA/81olhQBU6RGLQrbt2zdsK3CibXrt6phmBlWwc/sOKpFYUuREiglGVaRaHURSh50x30bN2k9wX4J68dEDgMwC0U/9ZQLHVvvhM+TQ5EIYeXWIhyUG4bO0BUJrD7JwD+WCRfZSK4XlOnwrFktL/bPNEyvEg6SoWg/I2CbzdLwYGfxHkzOuBzLocHlSS9w3KK3GaNDr4UbEhGej1K8GUPOg7zjRw0JV37c8jpx54/5SMNmQM3LbDygTheKdkQjiV77IosMEwNDyJagi3Gu3WKSY/XnLa6yBZongbgzSL7r6TI46FY+pACDsrgnQjljd/uv7fMANDrRMNeVPuhHQifIuAviq1BhPdZifSV+78olKIu2ZaAjrwLS0pM37PLeeMymbra7wt4MYAPiqjDB/KBcEPy+H0vCHTBWbDBhXw40Ap6I69bikxd7a9tu/VYikTFfHGmPwJU8gAakkEAIKXgRnuDCrKYXxJX5J8nv2Vaaxb4cUX83bgjgaUkboT7+vODmWqJLLaBFSJoMdlbTuBtpWBST+cpTo67B1pDbxS8OLK37pidAG5F4/Z/DOcy3yNxE4DJnikSLELjhrudDrVVFdRccZ+5hDMLIgbVLl8fzFfE5o3LZIBGRHmfVZW+CJBlAE/2QNMRVm7EZXD4gtlzingkGpJBLKodlDNnj3hIhGZJNB/S7pdBo6Jt4HGQT1jx1GUQ9TOAbteSv2svmvSIlWhuNdhIGQiLmpoBNrjUMGhZPGdLwo29d7lhEdr1tY/a9udTQTzsaizyrM51bG4yMlfweGn1q4X3CwK3TGu162uuAhBzMUr1sDWpMQCeNbImr+z/oK8vRVsFsj/bdhOA/3MxxBgtfNrQ9pvBePO5Lnx/pSle88DorBwTqZgQRhm9HDmqLex/zmp1bBgURyo4K9G44cTBmhXzGmtN6hLRvBhUYynYC0FStcvdrUsmHfKg3qKu92qH5rV3ORXA3IlZCH5rNoBMszqGD+qNhF4QTiRvC8dTe+DgMVKuIXguyEuhuUz79Z/CseTGsvu2HLO/TVGDHvD5/2xqq/zcBQCaarW5AlkWjqU9fXrhoCHa5LdiW14mJdpVqNITQpHpvja8Hlqd6k5YFbeyw+Hhpqbayf0ZANoWTlxvOosHAApXhxOpO9C4YTD0p/EMq2r88xB1Un5Hq4A4/Hl4dep8YL+gBxuSkfJE6jteCtOizzM0/Tx7+JTO3LUIRVzdCQiJH4Y6Kl+1EumZLsbpkdDqLZOseHpJUer+e8GKb7ml4ESYiKLDBxGl6p7IKR8u1MRdVjz1AoSr7B0fPuGmhHnYmtQYx+l/G3LPAvHq/tuSMv4994U7KusIHNOXWd9D4jiQz1nx1Auk/Dyrso9i4XEFr+RZiVQ1NE6DwqkgZkNjKkBo6A8APGaqrzDkb83MZER4ZPrHX8zetZzd1W/mdFBOt6qqP0Q89SuhPJKpm7SxkK7NwYZkxHHwGAy7VInmMwe8MG9GhxNvXqygTW/huocGMFOEMy0G1yCeekvAN0h5h+AuAVrEpzJ0dFiUVJKwBBxFIAJKBIIaEFUQHLqBWesTUYKgV9z93qk55IzLq+lTl3cGvXFDAB2HPPX3SAA/oPAHViL9CWKpZ0TkDyTfsMk3saj2gCXWivi7ozT9M6jU5SSvhnlTPzpaPXjwi211k9ZZ8dRaAFcYjnswQQAnEHICBJCuTzw1AZHu7Q3c13mpn94SomSGR7r6pD3gXOZqIkY93g8AVnvlSRD01Yj3cAiuJHglBLBEgHgqC2IXBDkAlTmgovMb4LKNO/Fc2+JIj3vrbM3rw0qmujnNFwsSM0BKsfvYK8FYl89iDHbtZZOzDYxDXd2oqoE+PzCF8sNe31lU26KZuwDATg/9eUVlsKG5pthOBHD7tIkO1TWQSdC9R/Aru77mhb4OydYfvZXkZUDhj7AsNkrhxOJ74WturIVsUWjcHvZoHdwtqWC7L69ESra+9llFOR2m/d6KheiiBz2zY9v9II1Ty1TqeVXe3noGBr7P6meKcunupRPzLjFqrY+8qQVnkXirmMIKowSTueisXFeHbgPEYbv/ZqWV2cNkPOQTRZnd1dSnINoW1qSyZbund923DoaNBdM93Z/fC3ZF1TUQFnx5E6XvzS6d0KxAzC6GsLwgfg9HTjIJeDfzZnTYdZGficJpIEz6w3iIMFQ14Yiiu5k7Yrcf8h1C8t5lLKLXZxbULgAA1dWtsdTPH9sNwc32zshse3HEk1LhzIKajXZ9zbchcgaIp2DQ7dGQDgDPEHKdbXWMzdaZNSsslL0La16kU/ZNQFJ9H8mchm9VZuHk7voCAYDhq98f0a47/gbg9wEp5nNJdgNsDLSHVrTcVG28ApcPw9akxmiHlxPyF+hsgerVDtJ2gK+B8gqUNNmOXn9woqonrFj6LgiXmjgU4vZMfc2Peh179ZarQLVQwCnUEobQEchOiDRlKrgM19Qc0IT5kDyT1dB8kijnAkLOB3ACXK7ECdBC4FkQD9nDfL/G3IleNj7Ij8YNAatt5PHw6ZNA1AKYAMgEgCPRmWPY94GwAeQAtADyGaB3CPCppjSLMCkayQzwzpe90rbv5GLi7WEhBqaLyAmkTEFnImaCdPamsdC5jqvR2YhnrwCfE2wGpFnALVDyUqYq8tqX+RlmX0X+H1gDzFihXYRQAAAAAElFTkSuQmCC','P','dsgov','1,2,3,4,5,6','$2a$12$YVuLyrSARKqEn.o.mq/seuYwTpELiGoiewQ5xVdagakEDKpku4XuW','7babf862'); +/*!40000 ALTER TABLE `sistema` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tipo_permissao` +-- + +DROP TABLE IF EXISTS `tipo_permissao`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `tipo_permissao` ( + `id_tipo_permissao` int(11) NOT NULL, + `descricao` varchar(50) NOT NULL, + PRIMARY KEY (`id_tipo_permissao`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tipo_permissao` +-- + +LOCK TABLES `tipo_permissao` WRITE; +/*!40000 ALTER TABLE `tipo_permissao` DISABLE KEYS */; +INSERT INTO `tipo_permissao` VALUES (1,'Não Delegável'),(2,'Delegável'),(3,'Delegável uma vez'); +/*!40000 ALTER TABLE `tipo_permissao` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unidade` +-- + +DROP TABLE IF EXISTS `unidade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `unidade` ( + `id_unidade` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `sigla` varchar(30) NOT NULL, + `descricao` varchar(250) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `sin_global` char(1) NOT NULL, + `id_origem` varchar(50) DEFAULT NULL, + PRIMARY KEY (`id_unidade`), + UNIQUE KEY `ak_unidade_sigla_orgao` (`sigla`,`id_orgao`,`sin_ativo`), + UNIQUE KEY `i02_unidade` (`id_unidade`,`sin_ativo`), + KEY `fk_unidade_orgao` (`id_orgao`), + CONSTRAINT `fk_unidade_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unidade` +-- + +LOCK TABLES `unidade` WRITE; +/*!40000 ALTER TABLE `unidade` DISABLE KEYS */; +INSERT INTO `unidade` VALUES (110000000,0,'*','Unidade Global','S','S',NULL),(110000001,0,'TESTE','Unidade de Teste 1','S','N',NULL),(110000002,0,'TESTE_1_1','Unidade de Testes 1.1','S','N',NULL),(110000003,0,'TESTE_1_2','Unidade de Testes 1.2','S','N',NULL),(110000004,0,'Un-2022-06-10-14-34-29','Unidade 2022-06-1014-34-29','S','N',NULL),(110000005,0,'Un-2022-06-10-14-34-37','Unidade 2022-06-1014-34-37','S','N',NULL),(110000006,0,'Un-2022-06-10-14-34-45','Unidade 2022-06-1014-34-45','S','N',NULL),(110000007,0,'Un-2022-06-10-14-34-52','Unidade 2022-06-1014-34-52','S','N',NULL),(110000008,0,'Un-2022-06-10-14-34-58','Unidade 2022-06-1014-34-58','S','N',NULL),(110000009,0,'Un-2022-06-10-14-35-4','Unidade 2022-06-1014-35-4','S','N',NULL),(110000010,0,'Un-2022-06-10-14-35-11','Unidade 2022-06-1014-35-11','S','N',NULL),(110000011,0,'Un-2022-06-10-14-35-17','Unidade 2022-06-1014-35-17','S','N',NULL),(110000012,0,'Un-2022-06-10-14-35-25','Unidade 2022-06-1014-35-25','S','N',NULL),(110000013,0,'Un-2022-06-10-14-35-31','Unidade 2022-06-1014-35-31','S','N',NULL),(110000014,0,'Un-2022-06-10-14-35-37','Unidade 2022-06-1014-35-37','S','N',NULL),(110000015,0,'Un-2022-06-10-14-35-45','Unidade 2022-06-1014-35-45','S','N',NULL),(110000016,0,'Un-2022-06-10-14-35-51','Unidade 2022-06-1014-35-51','S','N',NULL),(110000017,0,'Un-2022-06-10-14-35-57','Unidade 2022-06-1014-35-57','S','N',NULL),(110000018,0,'Un-2022-06-10-14-36-4','Unidade 2022-06-1014-36-4','S','N',NULL),(110000019,0,'Un-2022-06-10-14-36-10','Unidade 2022-06-1014-36-10','S','N',NULL),(110000020,0,'Un-2022-06-10-14-36-17','Unidade 2022-06-1014-36-17','S','N',NULL),(110000021,0,'Un-2022-06-10-14-36-25','Unidade 2022-06-1014-36-25','S','N',NULL),(110000022,0,'Un-2022-06-10-14-36-30','Unidade 2022-06-1014-36-30','S','N',NULL),(110000023,0,'Un-2022-06-10-14-36-37','Unidade 2022-06-1014-36-37','S','N',NULL),(110000024,0,'Un-2022-06-10-14-36-43','Unidade 2022-06-1014-36-43','S','N',NULL),(110000025,0,'Un-2022-06-10-14-36-50','Unidade 2022-06-1014-36-50','S','N',NULL),(110000026,0,'Un-2022-06-10-14-36-55','Unidade 2022-06-1014-36-55','S','N',NULL),(110000027,0,'Un-2022-06-10-14-37-1','Unidade 2022-06-1014-37-1','S','N',NULL),(110000028,0,'Un-2022-06-10-14-37-8','Unidade 2022-06-1014-37-8','S','N',NULL),(110000029,0,'Un-2022-06-10-14-37-13','Unidade 2022-06-1014-37-13','S','N',NULL),(110000030,0,'Un-2022-06-10-14-37-18','Unidade 2022-06-1014-37-18','S','N',NULL),(110000031,0,'Un-2022-06-10-14-37-24','Unidade 2022-06-1014-37-24','S','N',NULL),(110000032,0,'Un-2022-06-10-14-37-29','Unidade 2022-06-1014-37-29','S','N',NULL),(110000033,0,'Un-2022-06-10-14-37-36','Unidade 2022-06-1014-37-36','S','N',NULL),(110000034,0,'Un-2022-06-10-14-37-42','Unidade 2022-06-1014-37-42','S','N',NULL),(110000035,0,'Un-2022-06-10-14-37-47','Unidade 2022-06-1014-37-47','S','N',NULL),(110000036,0,'Un-2022-06-10-14-37-52','Unidade 2022-06-1014-37-52','S','N',NULL),(110000037,0,'Un-2022-06-10-14-37-57','Unidade 2022-06-1014-37-57','S','N',NULL),(110000038,0,'Un-2022-06-10-14-38-2','Unidade 2022-06-1014-38-2','S','N',NULL),(110000039,0,'Un-2022-06-10-14-38-8','Unidade 2022-06-1014-38-8','S','N',NULL),(110000040,0,'Un-2022-06-10-14-38-13','Unidade 2022-06-1014-38-13','S','N',NULL),(110000041,0,'Un-2022-06-10-14-38-18','Unidade 2022-06-1014-38-18','S','N',NULL),(110000042,0,'Un-2022-06-10-14-38-24','Unidade 2022-06-1014-38-24','S','N',NULL),(110000043,0,'Un-2022-06-10-14-38-29','Unidade 2022-06-1014-38-29','S','N',NULL); +/*!40000 ALTER TABLE `unidade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `usuario` +-- + +DROP TABLE IF EXISTS `usuario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `usuario` ( + `id_usuario` int(11) NOT NULL, + `id_orgao` int(11) NOT NULL, + `sigla` varchar(100) NOT NULL, + `nome` varchar(100) NOT NULL, + `sin_ativo` char(1) NOT NULL, + `id_origem` varchar(50) DEFAULT NULL, + `cpf` bigint(20) DEFAULT NULL, + `nome_registro_civil` varchar(100) NOT NULL, + `nome_social` varchar(100) DEFAULT NULL, + `email` varchar(100) DEFAULT NULL, + `sin_bloqueado` char(1) NOT NULL, + PRIMARY KEY (`id_usuario`), + UNIQUE KEY `ak_usuario_sigla_orgao` (`sigla`,`id_orgao`,`sin_ativo`), + UNIQUE KEY `i02_usuario` (`id_usuario`,`sin_ativo`), + KEY `fk_usuario_orgao` (`id_orgao`), + KEY `i03_usuario` (`id_origem`), + KEY `i04_usuario` (`cpf`), + KEY `i05_usuario` (`id_usuario`,`id_orgao`,`id_origem`), + KEY `i06_usuario` (`id_usuario`,`id_orgao`,`cpf`), + CONSTRAINT `fk_usuario_orgao` FOREIGN KEY (`id_orgao`) REFERENCES `orgao` (`id_orgao`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `usuario` +-- + +LOCK TABLES `usuario` WRITE; +/*!40000 ALTER TABLE `usuario` DISABLE KEYS */; +INSERT INTO `usuario` VALUES (1,0,'SIP','Sistema de Permissões','S',NULL,NULL,'Sistema de Permissões',NULL,NULL,'N'),(100000001,0,'teste','Usuário de Testes','S',NULL,NULL,'Usuário de Testes',NULL,NULL,'N'),(100000002,0,'usuario3','Usuario de Teste 3','S',NULL,NULL,'Usuario de Teste 3',NULL,NULL,'N'),(100000003,0,'usuario4','Usuario de Teste 4','S',NULL,NULL,'Usuario de Teste 4',NULL,NULL,'N'),(100000004,0,'usuario1','Usuario de Teste 1','S',NULL,NULL,'Usuario de Teste 1',NULL,NULL,'N'),(100000005,0,'usuario5','Usuario de Teste 5','S',NULL,NULL,'Usuario de Teste 5',NULL,NULL,'N'),(100000006,0,'usuario2','Usuario de Teste 2','S',NULL,NULL,'Usuario de Teste 2',NULL,NULL,'N'),(100000007,0,'usuario6','Usuario de Teste 6','S',NULL,NULL,'Usuario de Teste 6',NULL,NULL,'N'),(100000008,0,'usuario7','Usuario de Teste 7','S',NULL,NULL,'Usuario de Teste 7',NULL,NULL,'N'),(100000009,0,'usuario8','Usuario de Teste 8','S',NULL,NULL,'Usuario de Teste 8',NULL,NULL,'N'),(100000010,0,'usuario9','Usuario de Teste 9','S',NULL,NULL,'Usuario de Teste 9',NULL,NULL,'N'),(100000011,0,'usuario10','Usuario de Teste 10','S',NULL,NULL,'Usuario de Teste 10',NULL,NULL,'N'),(100000012,0,'usuario11','Usuario de Teste 11','S',NULL,NULL,'Usuario de Teste 11',NULL,NULL,'N'),(100000013,0,'usuario12','Usuario de Teste 12','S',NULL,NULL,'Usuario de Teste 12',NULL,NULL,'N'),(100000014,0,'usuario13','Usuario de Teste 13','S',NULL,NULL,'Usuario de Teste 13',NULL,NULL,'N'),(100000015,0,'usuario14','Usuario de Teste 14','S',NULL,NULL,'Usuario de Teste 14',NULL,NULL,'N'),(100000016,0,'usuario15','Usuario de Teste 15','S',NULL,NULL,'Usuario de Teste 15',NULL,NULL,'N'),(100000017,0,'usuario16','Usuario de Teste 16','S',NULL,NULL,'Usuario de Teste 16',NULL,NULL,'N'),(100000018,0,'usuario17','Usuario de Teste 17','S',NULL,NULL,'Usuario de Teste 17',NULL,NULL,'N'),(100000019,0,'usuario18','Usuario de Teste 18','S',NULL,NULL,'Usuario de Teste 18',NULL,NULL,'N'),(100000020,0,'usuario19','Usuario de Teste 19','S',NULL,NULL,'Usuario de Teste 19',NULL,NULL,'N'),(100000021,0,'usuario20','Usuario de Teste 20','S',NULL,NULL,'Usuario de Teste 20',NULL,NULL,'N'),(100000022,0,'usuario21','Usuario de Teste 21','S',NULL,NULL,'Usuario de Teste 21',NULL,NULL,'N'),(100000023,0,'usuario22','Usuario de Teste 22','S',NULL,NULL,'Usuario de Teste 22',NULL,NULL,'N'),(100000024,0,'usuario23','Usuario de Teste 23','S',NULL,NULL,'Usuario de Teste 23',NULL,NULL,'N'),(100000025,0,'usuario24','Usuario de Teste 24','S',NULL,NULL,'Usuario de Teste 24',NULL,NULL,'N'),(100000026,0,'usuario25','Usuario de Teste 25','S',NULL,NULL,'Usuario de Teste 25',NULL,NULL,'N'),(100000027,0,'usuario26','Usuario de Teste 26','S',NULL,NULL,'Usuario de Teste 26',NULL,NULL,'N'),(100000028,0,'usuario27','Usuario de Teste 27','S',NULL,NULL,'Usuario de Teste 27',NULL,NULL,'N'),(100000029,0,'usuario28','Usuario de Teste 28','S',NULL,NULL,'Usuario de Teste 28',NULL,NULL,'N'),(100000030,0,'usuario29','Usuario de Teste 29','S',NULL,NULL,'Usuario de Teste 29',NULL,NULL,'N'),(100000031,0,'usuario30','Usuario de Teste 30','S',NULL,NULL,'Usuario de Teste 30',NULL,NULL,'N'),(100000032,0,'usuario31','Usuario de Teste 31','S',NULL,NULL,'Usuario de Teste 31',NULL,NULL,'N'),(100000033,0,'usuario32','Usuario de Teste 32','S',NULL,NULL,'Usuario de Teste 32',NULL,NULL,'N'),(100000034,0,'usuario33','Usuario de Teste 33','S',NULL,NULL,'Usuario de Teste 33',NULL,NULL,'N'),(100000035,0,'usuario34','Usuario de Teste 34','S',NULL,NULL,'Usuario de Teste 34',NULL,NULL,'N'),(100000036,0,'usuario35','Usuario de Teste 35','S',NULL,NULL,'Usuario de Teste 35',NULL,NULL,'N'),(100000037,0,'usuario36','Usuario de Teste 36','S',NULL,NULL,'Usuario de Teste 36',NULL,NULL,'N'),(100000038,0,'usuario37','Usuario de Teste 37','S',NULL,NULL,'Usuario de Teste 37',NULL,NULL,'N'),(100000039,0,'usuario38','Usuario de Teste 38','S',NULL,NULL,'Usuario de Teste 38',NULL,NULL,'N'),(100000040,0,'usuario39','Usuario de Teste 39','S',NULL,NULL,'Usuario de Teste 39',NULL,NULL,'N'),(100000041,0,'usuario40','Usuario de Teste 40','S',NULL,NULL,'Usuario de Teste 40',NULL,NULL,'N'),(100000042,0,'usuario41','Usuario de Teste 41','S',NULL,NULL,'Usuario de Teste 41',NULL,NULL,'N'),(100000043,0,'usuario42','Usuario de Teste 42','S',NULL,NULL,'Usuario de Teste 42',NULL,NULL,'N'),(100000044,0,'usuario43','Usuario de Teste 43','S',NULL,NULL,'Usuario de Teste 43',NULL,NULL,'N'),(100000045,0,'usuario44','Usuario de Teste 44','S',NULL,NULL,'Usuario de Teste 44',NULL,NULL,'N'),(100000046,0,'usuario45','Usuario de Teste 45','S',NULL,NULL,'Usuario de Teste 45',NULL,NULL,'N'),(100000047,0,'usuario46','Usuario de Teste 46','S',NULL,NULL,'Usuario de Teste 46',NULL,NULL,'N'),(100000048,0,'usuario47','Usuario de Teste 47','S',NULL,NULL,'Usuario de Teste 47',NULL,NULL,'N'),(100000049,0,'usuario48','Usuario de Teste 48','S',NULL,NULL,'Usuario de Teste 48',NULL,NULL,'N'),(100000050,0,'usuario49','Usuario de Teste 49','S',NULL,NULL,'Usuario de Teste 49',NULL,NULL,'N'),(100000051,0,'usuario50','Usuario de Teste 50','S',NULL,NULL,'Usuario de Teste 50',NULL,NULL,'N'),(100000052,0,'usuario51','Usuario de Teste 51','S',NULL,NULL,'Usuario de Teste 51',NULL,NULL,'N'),(100000053,0,'usuario52','Usuario de Teste 52','S',NULL,NULL,'Usuario de Teste 52',NULL,NULL,'N'); +/*!40000 ALTER TABLE `usuario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `usuario_historico` +-- + +DROP TABLE IF EXISTS `usuario_historico`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `usuario_historico` ( + `id_usuario_historico` int(11) NOT NULL, + `id_codigo_acesso` varchar(26) DEFAULT NULL, + `id_usuario` int(11) NOT NULL, + `id_usuario_operacao` int(11) NOT NULL, + `dth_operacao` datetime NOT NULL, + `sta_operacao` char(1) NOT NULL, + `motivo` varchar(4000) DEFAULT NULL, + PRIMARY KEY (`id_usuario_historico`), + KEY `fk_usuario_historico_usuario` (`id_usuario`), + KEY `fk_usuario_historico_usu_oper` (`id_usuario_operacao`), + KEY `fk_usuario_historico_cod_acess` (`id_codigo_acesso`), + CONSTRAINT `fk_usuario_historico_cod_acess` FOREIGN KEY (`id_codigo_acesso`) REFERENCES `codigo_acesso` (`id_codigo_acesso`), + CONSTRAINT `fk_usuario_historico_usu_oper` FOREIGN KEY (`id_usuario_operacao`) REFERENCES `usuario` (`id_usuario`), + CONSTRAINT `fk_usuario_historico_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuario` (`id_usuario`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `usuario_historico` +-- + +LOCK TABLES `usuario_historico` WRITE; +/*!40000 ALTER TABLE `usuario_historico` DISABLE KEYS */; +/*!40000 ALTER TABLE `usuario_historico` 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 2024-05-10 2:29:47